The Art of Brian Muramatsu
Untrack Generated Change Logs Sun May 18 21:14:51 2008 -0700 Oops, these files were accidentally checked in when the repository was restructured. ruby/gallery/public/change_log/log/0.log | 142 - ruby/gallery/public/change_log/log/1.log | 139 - ruby/gallery/public/change_log/log/10.log | 178 - ruby/gallery/public/change_log/log/11.log | 126 - ruby/gallery/public/change_log/log/12.log | 202 - ruby/gallery/public/change_log/log/13.log | 102 - ruby/gallery/public/change_log/log/14.log | 137 - ruby/gallery/public/change_log/log/15.log | 266 - ruby/gallery/public/change_log/log/16.log | 153 - ruby/gallery/public/change_log/log/17.log | 217 - ruby/gallery/public/change_log/log/18.log | 144 - ruby/gallery/public/change_log/log/19.log | 184 - ruby/gallery/public/change_log/log/2.log | 209 - ruby/gallery/public/change_log/log/20.log | 157 - ruby/gallery/public/change_log/log/21.log | 101 - ruby/gallery/public/change_log/log/22.log | 130 - ruby/gallery/public/change_log/log/23.log | 253 - ruby/gallery/public/change_log/log/24.log | 153 - ruby/gallery/public/change_log/log/25.log | 157 - ruby/gallery/public/change_log/log/26.log | 128 - ruby/gallery/public/change_log/log/27.log | 145 - ruby/gallery/public/change_log/log/28.log | 109 - ruby/gallery/public/change_log/log/29.log | 149 - ruby/gallery/public/change_log/log/3.log | 914 --- ruby/gallery/public/change_log/log/30.log | 256 - ruby/gallery/public/change_log/log/31.log | 248 - ruby/gallery/public/change_log/log/32.log | 186 - ruby/gallery/public/change_log/log/33.log | 8632 ----------------------------- ruby/gallery/public/change_log/log/4.log | 120 - ruby/gallery/public/change_log/log/5.log | 136 - ruby/gallery/public/change_log/log/6.log | 150 - ruby/gallery/public/change_log/log/7.log | 622 --- ruby/gallery/public/change_log/log/8.log | 1030 ---- ruby/gallery/public/change_log/log/9.log | 184 - 34 files changed, 0 insertions(+), 16159 deletions(-)
Partial Exhibit Page Caching Sun May 18 21:13:10 2008 -0700 Cache the first exhibit page that the visitor encounters after clicking on a link from the gallery page. Subsequent XHR requests won't be cached yet. Modify the controller to invalidate pages when ratings occur and change the sweeper to invalidate all user pages when that user adjusts their galleries. Finally, update the Rakefile task with a rule to prune the cached pages when the server requires a restart to load template changes. ruby/gallery/app/controllers/exhibit_controller.rb | 29 ++++++++++++++---- ruby/gallery/app/models/admin_sweeper.rb | 15 +++++++++- ruby/gallery/lib/tasks/cache.rake | 30 +++++++++++++++++++- 3 files changed, 65 insertions(+), 9 deletions(-)
Make Style Classes Per User Sun May 18 18:59:22 2008 -0700 Each gallery used to have its own style class which seemed inconsistent with how the gallery page presented recently updated exhibits. Two different exhibits by the same user could show up as different colors which could throw off the visitor thinking they are by two different users. .../app/controllers/admin/gallery_controller.rb | 2 +- .../controllers/admin/preferences_controller.rb | 14 ++++++++++- ruby/gallery/app/helpers/exhibit_helper.rb | 4 +- ruby/gallery/app/models/admin_sweeper.rb | 24 ++++++++++++++++++++ ruby/gallery/app/models/gallery.rb | 4 --- ruby/gallery/app/models/gallery_sweeper.rb | 21 ----------------- ruby/gallery/app/models/user.rb | 17 +++++++++++++- .../app/views/admin/gallery/edit_gallery.rhtml | 5 ---- .../app/views/admin/preferences/index.rhtml | 13 ++++++++++ ruby/gallery/app/views/exhibit/_gallery.rhtml | 2 +- ruby/gallery/app/views/gallery/_exhibit.rhtml | 4 +- ruby/gallery/config/environments/development.rb | 2 +- .../db/migrate/050_add_user_style_class_column.rb | 19 +++++++++++++++ .../db/migrate/051_remove_gallery_style_column.rb | 19 +++++++++++++++ ruby/gallery/db/schema.rb | 4 +- ruby/gallery/test/fixtures/galleries.yml | 3 -- .../functional/admin/gallery_controller_test.rb | 1 - ruby/gallery/test/unit/gallery_test.rb | 13 ---------- ruby/gallery/test/unit/user_test.rb | 15 ++++++++++-- 19 files changed, 125 insertions(+), 61 deletions(-)
Spruce Up Error 404 + 505 Pages Sun May 18 18:02:59 2008 -0700ruby/gallery/public/404.html | 43 +++++++------------ ruby/gallery/public/500.html | 44 +++++++------------- ruby/gallery/public/common/blend/404.blend | Bin 0 -> 119712 bytes ruby/gallery/public/common/blend/500.blend | Bin 0 -> 119592 bytes .../common/blend/uncompressed_404_background.jpg | Bin 0 -> 350195 bytes .../common/blend/uncompressed_500_background.jpg | Bin 0 -> 323692 bytes ruby/gallery/public/common/xcf/2008/404.xcf | Bin 0 -> 1460648 bytes ruby/gallery/public/common/xcf/2008/500.xcf | Bin 0 -> 1413592 bytes ruby/gallery/public/images/common/404.jpg | Bin 0 -> 50071 bytes ruby/gallery/public/images/common/500.jpg | Bin 0 -> 36515 bytes ruby/gallery/public/stylesheets/error.css | 7 +++ 11 files changed, 37 insertions(+), 57 deletions(-)
Reorganize Git Repository + Various Fixes Wed May 14 00:29:15 2008 -0700 Move the root of the git repository up a couple directories from the gallery application's root directory so that other projects of different types can be added to the repository. Fix up the database migrations to be able to drop the entire database and apply all the migrations without exceptions. Finally redirect to the main gallery page if the change log has no logs to show. .gitignore | 8 +- README | 182 - Rakefile | 10 - app/controllers/admin/dashboard_controller.rb | 98 - app/controllers/admin/gallery_controller.rb | 324 - app/controllers/admin/preferences_controller.rb | 23 - app/controllers/application.rb | 59 - app/controllers/change_log_controller.rb | 63 - app/controllers/exhibit_controller.rb | 173 - app/controllers/gallery_controller.rb | 62 - app/controllers/login_controller.rb | 18 - app/controllers/reboot_controller.rb | 5 - app/controllers/rss_controller.rb | 23 - app/helpers/admin/dashboard_helper.rb | 30 - app/helpers/admin/gallery_helper.rb | 45 - app/helpers/admin/preferences_helper.rb | 2 - app/helpers/application_helper.rb | 116 - app/helpers/change_log_helper.rb | 45 - app/helpers/exhibit_helper.rb | 153 - app/helpers/gallery_helper.rb | 19 - app/helpers/legacy_helper.rb | 2 - app/helpers/login_helper.rb | 2 - app/helpers/reboot_helper.rb | 2 - app/helpers/rss_helper.rb | 25 - app/helpers/validation_helper.rb | 19 - app/models/author.rb | 11 - app/models/display_thumbnail.rb | 20 - app/models/exhibit.rb | 59 - app/models/exhibit_showing.rb | 18 - app/models/gallery.rb | 64 - app/models/gallery_showing.rb | 15 - app/models/gallery_sweeper.rb | 21 - app/models/grid_piece.rb | 5 - app/models/image_piece.rb | 38 - app/models/piece.rb | 78 - app/models/piece_showing.rb | 20 - app/models/rating.rb | 15 - app/models/thumbnail.rb | 15 - app/models/user.rb | 133 - app/models/writing_piece.rb | 2 - app/views/admin/dashboard/_rating.rhtml | 7 - app/views/admin/dashboard/index.rhtml | 58 - app/views/admin/gallery/_exhibit_showing.rhtml | 11 - app/views/admin/gallery/_gallery_showing.rhtml | 9 - app/views/admin/gallery/_piece_showing.rhtml | 11 - app/views/admin/gallery/add_exhibit.rhtml | 1 - app/views/admin/gallery/edit_exhibit.rhtml | 47 - app/views/admin/gallery/edit_gallery.rhtml | 49 - app/views/admin/gallery/edit_piece.rhtml | 75 - app/views/admin/gallery/index.rhtml | 10 - app/views/admin/gallery/move_exhibit.rhtml | 11 - app/views/admin/gallery/move_piece.rhtml | 11 - app/views/admin/preferences/index.rhtml | 21 - app/views/change_log/page.rhtml | 28 - app/views/exhibit/_author.rhtml | 1 - app/views/exhibit/_comment.rhtml | 3 - app/views/exhibit/_comment_form.rhtml | 35 - app/views/exhibit/_gallery.rhtml | 24 - app/views/exhibit/_gridpiece.rhtml | 16 - app/views/exhibit/_imagepiece.rhtml | 9 - app/views/exhibit/_rating.rhtml | 105 - app/views/exhibit/_thumbnail.rhtml | 31 - app/views/exhibit/_writingpiece.rhtml | 1 - app/views/exhibit/comment_xhr.rjs | 15 - app/views/exhibit/exhibit_xhr.rjs | 36 - app/views/exhibit/index.rhtml | 78 - app/views/exhibit/piece_xhr.rjs | 29 - app/views/exhibit/rate_xhr.rjs | 9 - app/views/gallery/_exhibit.rhtml | 42 - app/views/gallery/_exhibit_help.rhtml | 8 - app/views/gallery/_gallery_help.rhtml | 2 - app/views/gallery/help.rjs | 6 - app/views/gallery/index.rhtml | 41 - app/views/layouts/admin.rhtml | 14 - app/views/login/login.rhtml | 25 - app/views/reboot/index.rhtml | 13 - app/views/rss/exhibits.rxml | 26 - app/views/shared/_footer.rhtml | 15 - app/views/shared/_preload.rhtml | 3 - app/views/shared/_user_select.rhtml | 9 - config/boot.rb | 109 - config/database.yml-sample | 38 - config/environment.rb | 60 - config/environments/development.rb | 18 - config/environments/production.rb | 20 - config/environments/test.rb | 19 - config/routes.rb | 48 - db/migrate/001_create_exhibits.rb | 12 - db/migrate/002_add_exhibit_data.rb | 23 - db/migrate/003_create_pieces.rb | 11 - db/migrate/004_add_piece_data.rb | 17 - db/migrate/005_create_piece_showings.rb | 16 - db/migrate/006_add_piece_showings_data.rb | 28 - db/migrate/007_create_image_pieces.rb | 14 - db/migrate/008_add_image_piece_data.rb | 33 - db/migrate/009_create_ratings.rb | 19 - db/migrate/010_create_comments.rb | 24 - db/migrate/011_create_authors.rb | 11 - db/migrate/012_add_authors_data.rb | 17 - db/migrate/013_join_authors_pieces.rb | 15 - db/migrate/014_add_authors_pieces_data.rb | 32 - db/migrate/015_create_thumbnails.rb | 15 - db/migrate/016_add_thumbnail_data.rb | 31 - db/migrate/017_create_grid_pieces.rb | 16 - db/migrate/018_add_grid_piece_data.rb | 52 - db/migrate/019_add_piece_background_column.rb | 20 - db/migrate/020_create_galleries.rb | 14 - db/migrate/021_add_gallery_data.rb | 27 - db/migrate/022_create_exhibit_showings.rb | 17 - db/migrate/023_add_exhibit_showings_data.rb | 34 - db/migrate/024_add_piece_yaml_column.rb | 11 - db/migrate/025_add_piece_yaml_data.rb | 72 - .../026_add_piece_ratable_commentable_columns.rb | 40 - db/migrate/027_add_photo_exhibit_data.rb | 49 - db/migrate/028_add_photo_piece_data.rb | 79 - db/migrate/029_add_writing_exhibit_data.rb | 28 - db/migrate/030_create_writing_pieces.rb | 11 - db/migrate/031_add_writing_piece_data.rb | 44 - db/migrate/032_compose_thumbnails.rb | 45 - db/migrate/033_add_exhibit_url_column.rb | 50 - db/migrate/034_create_users.rb | 24 - db/migrate/035_create_gallery_showings.rb | 25 - db/migrate/036_add_piece_url_column.rb | 31 - db/migrate/037_add_gallery_url_column.rb | 27 - db/migrate/038_add_along_photo_piece_data.rb | 24 - db/migrate/039_add_password_salt_columns.rb | 23 - db/migrate/040_add_bridge_photo_piece_data.rb | 24 - db/migrate/041_remove_gallery_order_hint_column.rb | 19 - db/migrate/042_reverse_exhibit_order_hints.rb | 25 - db/migrate/043_add_created_updated_on_columns.rb | 47 - .../044_add_piece_showings_visible_column.rb | 19 - db/migrate/045_compose_authors.rb | 46 - db/migrate/046_rename_styles.rb | 27 - db/migrate/047_add_user_admin_column.rb | 17 - db/migrate/048_drop_comments.rb | 11 - db/migrate/049_drop_piece_commentable_column.rb | 13 - db/migrate/dev_data/galleries.yml | 51 - db/migrate/dev_data/writing_pieces.yml | 219 - db/migrate/helpers/add_photo_piece_data_helper.rb | 97 - .../helpers/legacy_author_migration_helper.rb | 22 - db/migrate/helpers/legacy_exhibit_helper.rb | 36 - .../helpers/legacy_thumbnail_migration_helper.rb | 22 - db/migrate/lib/piece_data.rb | 209 - db/migrate/models/legacy_author.rb | 21 - db/migrate/models/legacy_thumbnail.rb | 4 - db/schema.rb | 136 - doc/README_FOR_APP | 2 - lib/change_log_dumper.rb | 62 - lib/change_log_rss_dumper.rb | 45 - lib/image_creator.rb | 136 - lib/javascript_tag.rb | 16 - lib/legacy.rb | 9 - lib/style.rb | 5 - lib/tasks/cache.rake | 92 - lib/tasks/change_log.rake | 23 - lib/thumbnail_creator.rb | 53 - public/.htaccess | 40 - public/404.html | 30 - public/500.html | 30 - public/change_log/xcf/header.xcf | Bin 7165953 -> 0 bytes public/common/xcf/2007/footer.xcf | Bin 1844227 -> 0 bytes public/common/xcf/2008/footer.xcf | Bin 1543129 -> 0 bytes public/common/xcf/site_logo.xcf | Bin 7864 -> 0 bytes public/common/xcf/site_menu_bg_blend.xcf | Bin 30852 -> 0 bytes public/common/xcf/star_outline.xcf | Bin 8993 -> 0 bytes public/dispatch.cgi | 10 - public/dispatch.fcgi | 24 - public/dispatch.rb | 10 - public/exhibit/xcf/menu_background.xcf | Bin 130683 -> 0 bytes public/exhibits/2002/images/1.jpg | Bin 89525 -> 0 bytes public/exhibits/2002/images/2.jpg | Bin 91576 -> 0 bytes public/exhibits/2002/images/3.jpg | Bin 100126 -> 0 bytes public/exhibits/2002/images/4.jpg | Bin 87339 -> 0 bytes public/exhibits/2002/images/5.jpg | Bin 109822 -> 0 bytes public/exhibits/2002/thumbnails/color/1.jpg | Bin 2994 -> 0 bytes public/exhibits/2002/thumbnails/color/2.jpg | Bin 3305 -> 0 bytes public/exhibits/2002/thumbnails/color/3.jpg | Bin 3344 -> 0 bytes public/exhibits/2002/thumbnails/color/4.jpg | Bin 3102 -> 0 bytes public/exhibits/2002/thumbnails/color/5.jpg | Bin 2919 -> 0 bytes public/exhibits/2002/thumbnails/grayscale/1.jpg | Bin 2013 -> 0 bytes public/exhibits/2002/thumbnails/grayscale/2.jpg | Bin 2291 -> 0 bytes public/exhibits/2002/thumbnails/grayscale/3.jpg | Bin 2072 -> 0 bytes public/exhibits/2002/thumbnails/grayscale/4.jpg | Bin 2106 -> 0 bytes public/exhibits/2002/thumbnails/grayscale/5.jpg | Bin 2307 -> 0 bytes public/exhibits/compart/images/1.jpg | Bin 42568 -> 0 bytes public/exhibits/compart/images/2.jpg | Bin 160328 -> 0 bytes public/exhibits/compart/images/3.jpg | Bin 142218 -> 0 bytes public/exhibits/compart/images/4.jpg | Bin 86813 -> 0 bytes public/exhibits/compart/thumbnails/color/1.jpg | Bin 6369 -> 0 bytes public/exhibits/compart/thumbnails/color/2.jpg | Bin 7325 -> 0 bytes public/exhibits/compart/thumbnails/color/3.jpg | Bin 6556 -> 0 bytes public/exhibits/compart/thumbnails/color/4.jpg | Bin 2153 -> 0 bytes public/exhibits/compart/thumbnails/grayscale/1.jpg | Bin 5741 -> 0 bytes public/exhibits/compart/thumbnails/grayscale/2.jpg | Bin 3239 -> 0 bytes public/exhibits/compart/thumbnails/grayscale/3.jpg | Bin 3170 -> 0 bytes public/exhibits/compart/thumbnails/grayscale/4.jpg | Bin 1828 -> 0 bytes public/exhibits/create-thumbnails.sh | 44 - public/exhibits/dynamics/compart/compart.conf | 54 - public/exhibits/dynamics/compart/images/1.jpg | Bin 23669 -> 0 bytes public/exhibits/dynamics/compart/images/10.jpg | Bin 20649 -> 0 bytes public/exhibits/dynamics/compart/images/2.jpg | Bin 26935 -> 0 bytes public/exhibits/dynamics/compart/images/3.jpg | Bin 17504 -> 0 bytes public/exhibits/dynamics/compart/images/4.jpg | Bin 17637 -> 0 bytes public/exhibits/dynamics/compart/images/5.jpg | Bin 31998 -> 0 bytes public/exhibits/dynamics/compart/images/6.jpg | Bin 23949 -> 0 bytes public/exhibits/dynamics/compart/images/7.jpg | Bin 24667 -> 0 bytes public/exhibits/dynamics/compart/images/8.jpg | Bin 20531 -> 0 bytes public/exhibits/dynamics/compart/images/9.jpg | Bin 24390 -> 0 bytes .../dynamics/compart/thumbnails/color/1.jpg | Bin 1389 -> 0 bytes .../dynamics/compart/thumbnails/color/10.jpg | Bin 1491 -> 0 bytes .../dynamics/compart/thumbnails/color/2.jpg | Bin 1650 -> 0 bytes .../dynamics/compart/thumbnails/color/3.jpg | Bin 1300 -> 0 bytes .../dynamics/compart/thumbnails/color/4.jpg | Bin 1047 -> 0 bytes .../dynamics/compart/thumbnails/color/5.jpg | Bin 1599 -> 0 bytes .../dynamics/compart/thumbnails/color/6.jpg | Bin 1761 -> 0 bytes .../dynamics/compart/thumbnails/color/7.jpg | Bin 1644 -> 0 bytes .../dynamics/compart/thumbnails/color/8.jpg | Bin 1134 -> 0 bytes .../dynamics/compart/thumbnails/color/9.jpg | Bin 1488 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/1.jpg | Bin 1157 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/10.jpg | Bin 1165 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/2.jpg | Bin 1222 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/3.jpg | Bin 1006 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/4.jpg | Bin 884 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/5.jpg | Bin 1351 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/6.jpg | Bin 1458 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/7.jpg | Bin 1264 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/8.jpg | Bin 929 -> 0 bytes .../dynamics/compart/thumbnails/grayscale/9.jpg | Bin 1331 -> 0 bytes public/exhibits/dynamics/compart/yaml/1.yml | 2 - public/exhibits/dynamics/compart/yaml/10.yml | 2 - public/exhibits/dynamics/compart/yaml/2.yml | 2 - public/exhibits/dynamics/compart/yaml/3.yml | 2 - public/exhibits/dynamics/compart/yaml/4.yml | 2 - public/exhibits/dynamics/compart/yaml/5.yml | 2 - public/exhibits/dynamics/compart/yaml/6.yml | 2 - public/exhibits/dynamics/compart/yaml/7.yml | 2 - public/exhibits/dynamics/compart/yaml/8.yml | 2 - public/exhibits/dynamics/compart/yaml/9.yml | 2 - public/exhibits/dynamics/create_yaml.sh | 13 - public/exhibits/dynamics/vacation/images/1.jpg | Bin 62746 -> 0 bytes public/exhibits/dynamics/vacation/images/10.jpg | Bin 53042 -> 0 bytes public/exhibits/dynamics/vacation/images/2.jpg | Bin 43540 -> 0 bytes public/exhibits/dynamics/vacation/images/3.jpg | Bin 54564 -> 0 bytes public/exhibits/dynamics/vacation/images/4.jpg | Bin 66606 -> 0 bytes public/exhibits/dynamics/vacation/images/5.jpg | Bin 77396 -> 0 bytes public/exhibits/dynamics/vacation/images/6.jpg | Bin 50144 -> 0 bytes public/exhibits/dynamics/vacation/images/7.jpg | Bin 35306 -> 0 bytes public/exhibits/dynamics/vacation/images/8.jpg | Bin 58258 -> 0 bytes public/exhibits/dynamics/vacation/images/9.jpg | Bin 48825 -> 0 bytes .../dynamics/vacation/thumbnails/color/1.jpg | Bin 1857 -> 0 bytes .../dynamics/vacation/thumbnails/color/10.jpg | Bin 1898 -> 0 bytes .../dynamics/vacation/thumbnails/color/2.jpg | Bin 1693 -> 0 bytes .../dynamics/vacation/thumbnails/color/3.jpg | Bin 1967 -> 0 bytes .../dynamics/vacation/thumbnails/color/4.jpg | Bin 2109 -> 0 bytes .../dynamics/vacation/thumbnails/color/5.jpg | Bin 1780 -> 0 bytes .../dynamics/vacation/thumbnails/color/6.jpg | Bin 1771 -> 0 bytes .../dynamics/vacation/thumbnails/color/7.jpg | Bin 1538 -> 0 bytes .../dynamics/vacation/thumbnails/color/8.jpg | Bin 1717 -> 0 bytes .../dynamics/vacation/thumbnails/color/9.jpg | Bin 1754 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/1.jpg | Bin 1602 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/10.jpg | Bin 1624 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/2.jpg | Bin 1389 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/3.jpg | Bin 1734 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/4.jpg | Bin 1687 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/5.jpg | Bin 1551 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/6.jpg | Bin 1507 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/7.jpg | Bin 1345 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/8.jpg | Bin 1501 -> 0 bytes .../dynamics/vacation/thumbnails/grayscale/9.jpg | Bin 1511 -> 0 bytes public/exhibits/dynamics/vacation/vacation.conf | 53 - public/exhibits/dynamics/vacation/yaml/1.yml | 2 - public/exhibits/dynamics/vacation/yaml/10.yml | 2 - public/exhibits/dynamics/vacation/yaml/2.yml | 2 - public/exhibits/dynamics/vacation/yaml/3.yml | 2 - public/exhibits/dynamics/vacation/yaml/4.yml | 2 - public/exhibits/dynamics/vacation/yaml/5.yml | 2 - public/exhibits/dynamics/vacation/yaml/6.yml | 2 - public/exhibits/dynamics/vacation/yaml/7.yml | 2 - public/exhibits/dynamics/vacation/yaml/8.yml | 2 - public/exhibits/dynamics/vacation/yaml/9.yml | 2 - public/exhibits/gradients/images/1.jpg | Bin 29577 -> 0 bytes public/exhibits/gradients/images/2.jpg | Bin 31394 -> 0 bytes public/exhibits/gradients/images/3.jpg | Bin 43552 -> 0 bytes public/exhibits/gradients/images/4.jpg | Bin 28809 -> 0 bytes public/exhibits/gradients/images/5.jpg | Bin 77847 -> 0 bytes public/exhibits/gradients/thumbnails/color/1.jpg | Bin 1774 -> 0 bytes public/exhibits/gradients/thumbnails/color/2.jpg | Bin 1809 -> 0 bytes public/exhibits/gradients/thumbnails/color/3.jpg | Bin 2040 -> 0 bytes public/exhibits/gradients/thumbnails/color/4.jpg | Bin 1692 -> 0 bytes public/exhibits/gradients/thumbnails/color/5.jpg | Bin 1990 -> 0 bytes .../exhibits/gradients/thumbnails/grayscale/1.jpg | Bin 1395 -> 0 bytes .../exhibits/gradients/thumbnails/grayscale/2.jpg | Bin 1438 -> 0 bytes .../exhibits/gradients/thumbnails/grayscale/3.jpg | Bin 1670 -> 0 bytes .../exhibits/gradients/thumbnails/grayscale/4.jpg | Bin 1362 -> 0 bytes .../exhibits/gradients/thumbnails/grayscale/5.jpg | Bin 1986 -> 0 bytes public/exhibits/photos/2004-12-18/hike001.jpg | Bin 66767 -> 0 bytes public/exhibits/photos/2004-12-18/hike002.jpg | Bin 138638 -> 0 bytes public/exhibits/photos/2004-12-18/hike003.jpg | Bin 66431 -> 0 bytes public/exhibits/photos/2004-12-18/hike004.jpg | Bin 96455 -> 0 bytes public/exhibits/photos/2004-12-18/hike005.jpg | Bin 23255 -> 0 bytes public/exhibits/photos/2004-12-18/hike006.jpg | Bin 116878 -> 0 bytes public/exhibits/photos/2004-12-18/hike007.jpg | Bin 65751 -> 0 bytes public/exhibits/photos/2004-12-18/hike008.jpg | Bin 32628 -> 0 bytes public/exhibits/photos/2004-12-18/hike009.jpg | Bin 113499 -> 0 bytes public/exhibits/photos/2004-12-18/hike010.jpg | Bin 44575 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike001.jpg | Bin 2299 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike002.jpg | Bin 2543 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike003.jpg | Bin 2113 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike004.jpg | Bin 2281 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike005.jpg | Bin 1684 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike006.jpg | Bin 2280 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike007.jpg | Bin 2334 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike008.jpg | Bin 1561 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike009.jpg | Bin 2695 -> 0 bytes .../photos/2004-12-18/thumbnails/color/hike010.jpg | Bin 1685 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike001.jpg | Bin 1930 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike002.jpg | Bin 2293 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike003.jpg | Bin 1723 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike004.jpg | Bin 1915 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike005.jpg | Bin 1353 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike006.jpg | Bin 1960 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike007.jpg | Bin 1925 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike008.jpg | Bin 1246 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike009.jpg | Bin 2365 -> 0 bytes .../2004-12-18/thumbnails/grayscale/hike010.jpg | Bin 1371 -> 0 bytes public/exhibits/photos/2004-12-21/blowhole001.jpg | Bin 99637 -> 0 bytes public/exhibits/photos/2004-12-21/blowhole002.jpg | Bin 49683 -> 0 bytes public/exhibits/photos/2004-12-21/blowhole003.jpg | Bin 39587 -> 0 bytes public/exhibits/photos/2004-12-21/blowhole004.jpg | Bin 41809 -> 0 bytes public/exhibits/photos/2004-12-21/blowhole005.jpg | Bin 89454 -> 0 bytes public/exhibits/photos/2004-12-21/building.jpg | Bin 301531 -> 0 bytes public/exhibits/photos/2004-12-21/hotel001.jpg | Bin 57283 -> 0 bytes public/exhibits/photos/2004-12-21/hotel002.jpg | Bin 79079 -> 0 bytes public/exhibits/photos/2004-12-21/hotel003.jpg | Bin 43986 -> 0 bytes public/exhibits/photos/2004-12-21/road-rail.jpg | Bin 289280 -> 0 bytes .../2004-12-21/thumbnails/color/blowhole001.jpg | Bin 2452 -> 0 bytes .../2004-12-21/thumbnails/color/blowhole002.jpg | Bin 1914 -> 0 bytes .../2004-12-21/thumbnails/color/blowhole003.jpg | Bin 2026 -> 0 bytes .../2004-12-21/thumbnails/color/blowhole004.jpg | Bin 2015 -> 0 bytes .../2004-12-21/thumbnails/color/blowhole005.jpg | Bin 2513 -> 0 bytes .../2004-12-21/thumbnails/color/building.jpg | Bin 22788 -> 0 bytes .../2004-12-21/thumbnails/color/hotel001.jpg | Bin 2424 -> 0 bytes .../2004-12-21/thumbnails/color/hotel002.jpg | Bin 2138 -> 0 bytes .../2004-12-21/thumbnails/color/hotel003.jpg | Bin 2174 -> 0 bytes .../2004-12-21/thumbnails/color/road-rail.jpg | Bin 22336 -> 0 bytes .../thumbnails/grayscale/blowhole001.jpg | Bin 2218 -> 0 bytes .../thumbnails/grayscale/blowhole002.jpg | Bin 1644 -> 0 bytes .../thumbnails/grayscale/blowhole003.jpg | Bin 1777 -> 0 bytes .../thumbnails/grayscale/blowhole004.jpg | Bin 1757 -> 0 bytes .../thumbnails/grayscale/blowhole005.jpg | Bin 2251 -> 0 bytes .../2004-12-21/thumbnails/grayscale/building.jpg | Bin 22419 -> 0 bytes .../2004-12-21/thumbnails/grayscale/hotel001.jpg | Bin 2143 -> 0 bytes .../2004-12-21/thumbnails/grayscale/hotel002.jpg | Bin 1841 -> 0 bytes .../2004-12-21/thumbnails/grayscale/hotel003.jpg | Bin 1940 -> 0 bytes .../2004-12-21/thumbnails/grayscale/road-rail.jpg | Bin 22023 -> 0 bytes public/exhibits/photos/2004-12-23/church.jpg | Bin 16748 -> 0 bytes public/exhibits/photos/2004-12-23/crooked-tree.jpg | Bin 50913 -> 0 bytes public/exhibits/photos/2004-12-23/door-hinge.jpg | Bin 35370 -> 0 bytes public/exhibits/photos/2004-12-23/hand-rail.jpg | Bin 73098 -> 0 bytes public/exhibits/photos/2004-12-23/iao-needle.jpg | Bin 29757 -> 0 bytes public/exhibits/photos/2004-12-23/palm-tree.jpg | Bin 53253 -> 0 bytes .../photos/2004-12-23/thumbnails/color/church.jpg | Bin 1575 -> 0 bytes .../2004-12-23/thumbnails/color/crooked-tree.jpg | Bin 2161 -> 0 bytes .../2004-12-23/thumbnails/color/door-hinge.jpg | Bin 2146 -> 0 bytes .../2004-12-23/thumbnails/color/hand-rail.jpg | Bin 2940 -> 0 bytes .../2004-12-23/thumbnails/color/iao-needle.jpg | Bin 1732 -> 0 bytes .../2004-12-23/thumbnails/color/palm-tree.jpg | Bin 2017 -> 0 bytes .../2004-12-23/thumbnails/color/triangle-roof.jpg | Bin 2599 -> 0 bytes .../2004-12-23/thumbnails/color/westin-chapel.jpg | Bin 2428 -> 0 bytes .../2004-12-23/thumbnails/color/westin-trees.jpg | Bin 3019 -> 0 bytes .../photos/2004-12-23/thumbnails/color/westin.jpg | Bin 2529 -> 0 bytes .../2004-12-23/thumbnails/grayscale/church.jpg | Bin 1246 -> 0 bytes .../thumbnails/grayscale/crooked-tree.jpg | Bin 1768 -> 0 bytes .../2004-12-23/thumbnails/grayscale/door-hinge.jpg | Bin 1795 -> 0 bytes .../2004-12-23/thumbnails/grayscale/hand-rail.jpg | Bin 2455 -> 0 bytes .../2004-12-23/thumbnails/grayscale/iao-needle.jpg | Bin 1403 -> 0 bytes .../2004-12-23/thumbnails/grayscale/palm-tree.jpg | Bin 1614 -> 0 bytes .../thumbnails/grayscale/triangle-roof.jpg | Bin 2143 -> 0 bytes .../thumbnails/grayscale/westin-chapel.jpg | Bin 1965 -> 0 bytes .../thumbnails/grayscale/westin-trees.jpg | Bin 2511 -> 0 bytes .../2004-12-23/thumbnails/grayscale/westin.jpg | Bin 2110 -> 0 bytes .../exhibits/photos/2004-12-23/triangle-roof.jpg | Bin 96234 -> 0 bytes .../exhibits/photos/2004-12-23/westin-chapel.jpg | Bin 61373 -> 0 bytes public/exhibits/photos/2004-12-23/westin-trees.jpg | Bin 99545 -> 0 bytes public/exhibits/photos/2004-12-23/westin.jpg | Bin 87195 -> 0 bytes public/exhibits/photos/2004-12-24/curb.jpg | Bin 70828 -> 0 bytes .../photos/2004-12-24/decorated-bridge.jpg | Bin 75904 -> 0 bytes public/exhibits/photos/2004-12-24/island-view.jpg | Bin 78240 -> 0 bytes public/exhibits/photos/2004-12-24/light-post.jpg | Bin 55233 -> 0 bytes public/exhibits/photos/2004-12-24/rusty-bridge.jpg | Bin 69992 -> 0 bytes public/exhibits/photos/2004-12-24/sushi-lamp.jpg | Bin 37597 -> 0 bytes public/exhibits/photos/2004-12-24/sushi-marlin.jpg | Bin 49638 -> 0 bytes .../photos/2004-12-24/thumbnails/color/curb.jpg | Bin 2082 -> 0 bytes .../thumbnails/color/decorated-bridge.jpg | Bin 2455 -> 0 bytes .../2004-12-24/thumbnails/color/island-view.jpg | Bin 2354 -> 0 bytes .../2004-12-24/thumbnails/color/light-post.jpg | Bin 2104 -> 0 bytes .../2004-12-24/thumbnails/color/rusty-bridge.jpg | Bin 2310 -> 0 bytes .../2004-12-24/thumbnails/color/sushi-lamp.jpg | Bin 2069 -> 0 bytes .../2004-12-24/thumbnails/color/sushi-marlin.jpg | Bin 2406 -> 0 bytes .../2004-12-24/thumbnails/grayscale/curb.jpg | Bin 1681 -> 0 bytes .../thumbnails/grayscale/decorated-bridge.jpg | Bin 2073 -> 0 bytes .../thumbnails/grayscale/island-view.jpg | Bin 1942 -> 0 bytes .../2004-12-24/thumbnails/grayscale/light-post.jpg | Bin 1756 -> 0 bytes .../thumbnails/grayscale/rusty-bridge.jpg | Bin 1908 -> 0 bytes .../2004-12-24/thumbnails/grayscale/sushi-lamp.jpg | Bin 1639 -> 0 bytes .../thumbnails/grayscale/sushi-marlin.jpg | Bin 2064 -> 0 bytes public/exhibits/photos/2005-01-15/arch001.jpg | Bin 39479 -> 0 bytes public/exhibits/photos/2005-01-15/arch003.jpg | Bin 27172 -> 0 bytes public/exhibits/photos/2005-01-15/arch004.jpg | Bin 49306 -> 0 bytes public/exhibits/photos/2005-01-15/arch006.jpg | Bin 13607 -> 0 bytes public/exhibits/photos/2005-01-15/arch008.jpg | Bin 21622 -> 0 bytes public/exhibits/photos/2005-01-15/arch013.jpg | Bin 15134 -> 0 bytes public/exhibits/photos/2005-01-15/arch014.jpg | Bin 14982 -> 0 bytes public/exhibits/photos/2005-01-15/arch015.jpg | Bin 27029 -> 0 bytes public/exhibits/photos/2005-01-15/arch016.jpg | Bin 37167 -> 0 bytes public/exhibits/photos/2005-01-15/arch017.jpg | Bin 61139 -> 0 bytes public/exhibits/photos/2005-01-15/arch018.jpg | Bin 32366 -> 0 bytes public/exhibits/photos/2005-01-15/arch022.jpg | Bin 31748 -> 0 bytes public/exhibits/photos/2005-01-15/arch023.jpg | Bin 33109 -> 0 bytes public/exhibits/photos/2005-01-15/arch025.jpg | Bin 47513 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch001.jpg | Bin 2438 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch003.jpg | Bin 1660 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch004.jpg | Bin 2040 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch006.jpg | Bin 1975 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch008.jpg | Bin 1967 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch013.jpg | Bin 1735 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch014.jpg | Bin 2021 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch015.jpg | Bin 2313 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch016.jpg | Bin 2518 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch017.jpg | Bin 3031 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch018.jpg | Bin 2540 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch022.jpg | Bin 4720 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch023.jpg | Bin 2337 -> 0 bytes .../photos/2005-01-15/thumbnails/color/arch025.jpg | Bin 2642 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch001.jpg | Bin 2116 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch003.jpg | Bin 1315 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch004.jpg | Bin 1735 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch006.jpg | Bin 1644 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch008.jpg | Bin 1649 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch013.jpg | Bin 1510 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch014.jpg | Bin 1639 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch015.jpg | Bin 2023 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch016.jpg | Bin 2207 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch017.jpg | Bin 2769 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch018.jpg | Bin 2183 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch022.jpg | Bin 2831 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch023.jpg | Bin 2009 -> 0 bytes .../2005-01-15/thumbnails/grayscale/arch025.jpg | Bin 2278 -> 0 bytes public/exhibits/photos/2005-01-23/dunes001.jpg | Bin 70105 -> 0 bytes public/exhibits/photos/2005-01-23/dunes002.jpg | Bin 64833 -> 0 bytes public/exhibits/photos/2005-01-23/dunes003.jpg | Bin 69768 -> 0 bytes public/exhibits/photos/2005-01-23/dunes004.jpg | Bin 68026 -> 0 bytes public/exhibits/photos/2005-01-23/dunes005.jpg | Bin 80771 -> 0 bytes public/exhibits/photos/2005-01-23/dunes006.jpg | Bin 51628 -> 0 bytes public/exhibits/photos/2005-01-23/dunes007.jpg | Bin 42829 -> 0 bytes public/exhibits/photos/2005-01-23/dunes008.jpg | Bin 57421 -> 0 bytes public/exhibits/photos/2005-01-23/dunes009.jpg | Bin 67632 -> 0 bytes public/exhibits/photos/2005-01-23/dunes010.jpg | Bin 68363 -> 0 bytes public/exhibits/photos/2005-01-23/dunes011.jpg | Bin 31804 -> 0 bytes public/exhibits/photos/2005-01-23/dunes012.jpg | Bin 62002 -> 0 bytes public/exhibits/photos/2005-01-23/dunes013.jpg | Bin 46421 -> 0 bytes public/exhibits/photos/2005-01-23/dunes014.jpg | Bin 89475 -> 0 bytes public/exhibits/photos/2005-01-23/dunes015.jpg | Bin 84107 -> 0 bytes public/exhibits/photos/2005-01-23/dunes016.jpg | Bin 36685 -> 0 bytes public/exhibits/photos/2005-01-23/dunes017.jpg | Bin 25136 -> 0 bytes public/exhibits/photos/2005-01-23/dunes018.jpg | Bin 44485 -> 0 bytes public/exhibits/photos/2005-01-23/dunes019.jpg | Bin 67414 -> 0 bytes .../2005-01-23/thumbnails/color/dunes001.jpg | Bin 2645 -> 0 bytes .../2005-01-23/thumbnails/color/dunes002.jpg | Bin 1948 -> 0 bytes .../2005-01-23/thumbnails/color/dunes003.jpg | Bin 1942 -> 0 bytes .../2005-01-23/thumbnails/color/dunes004.jpg | Bin 3033 -> 0 bytes .../2005-01-23/thumbnails/color/dunes005.jpg | Bin 3370 -> 0 bytes .../2005-01-23/thumbnails/color/dunes006.jpg | Bin 1820 -> 0 bytes .../2005-01-23/thumbnails/color/dunes007.jpg | Bin 1737 -> 0 bytes .../2005-01-23/thumbnails/color/dunes008.jpg | Bin 1877 -> 0 bytes .../2005-01-23/thumbnails/color/dunes009.jpg | Bin 2253 -> 0 bytes .../2005-01-23/thumbnails/color/dunes010.jpg | Bin 1711 -> 0 bytes .../2005-01-23/thumbnails/color/dunes011.jpg | Bin 1569 -> 0 bytes .../2005-01-23/thumbnails/color/dunes012.jpg | Bin 2320 -> 0 bytes .../2005-01-23/thumbnails/color/dunes013.jpg | Bin 1911 -> 0 bytes .../2005-01-23/thumbnails/color/dunes014.jpg | Bin 2412 -> 0 bytes .../2005-01-23/thumbnails/color/dunes015.jpg | Bin 2764 -> 0 bytes .../2005-01-23/thumbnails/color/dunes016.jpg | Bin 1428 -> 0 bytes .../2005-01-23/thumbnails/color/dunes017.jpg | Bin 1433 -> 0 bytes .../2005-01-23/thumbnails/color/dunes018.jpg | Bin 1691 -> 0 bytes .../2005-01-23/thumbnails/color/dunes019.jpg | Bin 2313 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes001.jpg | Bin 2335 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes002.jpg | Bin 1637 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes003.jpg | Bin 1625 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes004.jpg | Bin 2664 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes005.jpg | Bin 3124 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes006.jpg | Bin 1609 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes007.jpg | Bin 1464 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes008.jpg | Bin 1573 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes009.jpg | Bin 1992 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes010.jpg | Bin 1479 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes011.jpg | Bin 1287 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes012.jpg | Bin 2076 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes013.jpg | Bin 1573 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes014.jpg | Bin 2091 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes015.jpg | Bin 2368 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes016.jpg | Bin 1172 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes017.jpg | Bin 1199 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes018.jpg | Bin 1494 -> 0 bytes .../2005-01-23/thumbnails/grayscale/dunes019.jpg | Bin 2002 -> 0 bytes public/exhibits/photos/2005-01-30/route6a001.jpg | Bin 33754 -> 0 bytes public/exhibits/photos/2005-01-30/route6a002.jpg | Bin 66572 -> 0 bytes public/exhibits/photos/2005-01-30/route6a003.jpg | Bin 45372 -> 0 bytes public/exhibits/photos/2005-01-30/route6a004.jpg | Bin 58297 -> 0 bytes public/exhibits/photos/2005-01-30/route6a005.jpg | Bin 42033 -> 0 bytes public/exhibits/photos/2005-01-30/route6a006.jpg | Bin 55987 -> 0 bytes public/exhibits/photos/2005-01-30/route6a007.jpg | Bin 54887 -> 0 bytes public/exhibits/photos/2005-01-30/route6a008.jpg | Bin 55126 -> 0 bytes public/exhibits/photos/2005-01-30/route6a009.jpg | Bin 46098 -> 0 bytes public/exhibits/photos/2005-01-30/route6a010.jpg | Bin 39859 -> 0 bytes public/exhibits/photos/2005-01-30/route6a011.jpg | Bin 46592 -> 0 bytes public/exhibits/photos/2005-01-30/route6a012.jpg | Bin 71011 -> 0 bytes public/exhibits/photos/2005-01-30/route6a013.jpg | Bin 49739 -> 0 bytes public/exhibits/photos/2005-01-30/route6a014.jpg | Bin 36875 -> 0 bytes public/exhibits/photos/2005-01-30/route6a015.jpg | Bin 51703 -> 0 bytes public/exhibits/photos/2005-01-30/route6a016.jpg | Bin 51981 -> 0 bytes .../2005-01-30/thumbnails/color/route6a001.jpg | Bin 2042 -> 0 bytes .../2005-01-30/thumbnails/color/route6a002.jpg | Bin 2177 -> 0 bytes .../2005-01-30/thumbnails/color/route6a003.jpg | Bin 2544 -> 0 bytes .../2005-01-30/thumbnails/color/route6a004.jpg | Bin 2477 -> 0 bytes .../2005-01-30/thumbnails/color/route6a005.jpg | Bin 2146 -> 0 bytes .../2005-01-30/thumbnails/color/route6a006.jpg | Bin 2420 -> 0 bytes .../2005-01-30/thumbnails/color/route6a007.jpg | Bin 2173 -> 0 bytes .../2005-01-30/thumbnails/color/route6a008.jpg | Bin 1891 -> 0 bytes .../2005-01-30/thumbnails/color/route6a009.jpg | Bin 2208 -> 0 bytes .../2005-01-30/thumbnails/color/route6a010.jpg | Bin 2052 -> 0 bytes .../2005-01-30/thumbnails/color/route6a011.jpg | Bin 2629 -> 0 bytes .../2005-01-30/thumbnails/color/route6a012.jpg | Bin 2379 -> 0 bytes .../2005-01-30/thumbnails/color/route6a013.jpg | Bin 2334 -> 0 bytes .../2005-01-30/thumbnails/color/route6a014.jpg | Bin 2101 -> 0 bytes .../2005-01-30/thumbnails/color/route6a015.jpg | Bin 2431 -> 0 bytes .../2005-01-30/thumbnails/color/route6a016.jpg | Bin 1781 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a001.jpg | Bin 1571 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a002.jpg | Bin 1895 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a003.jpg | Bin 2052 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a004.jpg | Bin 2052 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a005.jpg | Bin 1772 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a006.jpg | Bin 2040 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a007.jpg | Bin 1829 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a008.jpg | Bin 1569 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a009.jpg | Bin 1747 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a010.jpg | Bin 1700 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a011.jpg | Bin 2264 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a012.jpg | Bin 1923 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a013.jpg | Bin 1798 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a014.jpg | Bin 1703 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a015.jpg | Bin 2127 -> 0 bytes .../2005-01-30/thumbnails/grayscale/route6a016.jpg | Bin 1458 -> 0 bytes public/exhibits/photos/2005-02-06/bishop001.jpg | Bin 77331 -> 0 bytes public/exhibits/photos/2005-02-06/bishop002.jpg | Bin 78172 -> 0 bytes public/exhibits/photos/2005-02-06/bishop003.jpg | Bin 114090 -> 0 bytes public/exhibits/photos/2005-02-06/bishop004.jpg | Bin 129932 -> 0 bytes public/exhibits/photos/2005-02-06/bishop005.jpg | Bin 103518 -> 0 bytes public/exhibits/photos/2005-02-06/bishop006.jpg | Bin 128755 -> 0 bytes public/exhibits/photos/2005-02-06/bishop007.jpg | Bin 78067 -> 0 bytes public/exhibits/photos/2005-02-06/bishop008.jpg | Bin 93065 -> 0 bytes public/exhibits/photos/2005-02-06/bishop009.jpg | Bin 114659 -> 0 bytes public/exhibits/photos/2005-02-06/bishop010.jpg | Bin 64858 -> 0 bytes public/exhibits/photos/2005-02-06/bishop011.jpg | Bin 110734 -> 0 bytes public/exhibits/photos/2005-02-06/bishop012.jpg | Bin 83136 -> 0 bytes public/exhibits/photos/2005-02-06/bishop013.jpg | Bin 88165 -> 0 bytes public/exhibits/photos/2005-02-06/bishop014.jpg | Bin 78054 -> 0 bytes public/exhibits/photos/2005-02-06/bishop015.jpg | Bin 81992 -> 0 bytes public/exhibits/photos/2005-02-06/bishop016.jpg | Bin 96456 -> 0 bytes public/exhibits/photos/2005-02-06/bishop017.jpg | Bin 81987 -> 0 bytes public/exhibits/photos/2005-02-06/bishop018.jpg | Bin 97713 -> 0 bytes public/exhibits/photos/2005-02-06/bishop019.jpg | Bin 116562 -> 0 bytes public/exhibits/photos/2005-02-06/bishop020.jpg | Bin 61795 -> 0 bytes public/exhibits/photos/2005-02-06/bishop021.jpg | Bin 14013 -> 0 bytes .../2005-02-06/thumbnails/color/bishop001.jpg | Bin 2295 -> 0 bytes .../2005-02-06/thumbnails/color/bishop002.jpg | Bin 2316 -> 0 bytes .../2005-02-06/thumbnails/color/bishop003.jpg | Bin 2713 -> 0 bytes .../2005-02-06/thumbnails/color/bishop004.jpg | Bin 2906 -> 0 bytes .../2005-02-06/thumbnails/color/bishop005.jpg | Bin 2643 -> 0 bytes .../2005-02-06/thumbnails/color/bishop006.jpg | Bin 2963 -> 0 bytes .../2005-02-06/thumbnails/color/bishop007.jpg | Bin 2811 -> 0 bytes .../2005-02-06/thumbnails/color/bishop008.jpg | Bin 2556 -> 0 bytes .../2005-02-06/thumbnails/color/bishop009.jpg | Bin 2597 -> 0 bytes .../2005-02-06/thumbnails/color/bishop010.jpg | Bin 2164 -> 0 bytes .../2005-02-06/thumbnails/color/bishop011.jpg | Bin 2655 -> 0 bytes .../2005-02-06/thumbnails/color/bishop012.jpg | Bin 2278 -> 0 bytes .../2005-02-06/thumbnails/color/bishop013.jpg | Bin 2534 -> 0 bytes .../2005-02-06/thumbnails/color/bishop014.jpg | Bin 2201 -> 0 bytes .../2005-02-06/thumbnails/color/bishop015.jpg | Bin 2354 -> 0 bytes .../2005-02-06/thumbnails/color/bishop016.jpg | Bin 2417 -> 0 bytes .../2005-02-06/thumbnails/color/bishop017.jpg | Bin 2318 -> 0 bytes .../2005-02-06/thumbnails/color/bishop018.jpg | Bin 2400 -> 0 bytes .../2005-02-06/thumbnails/color/bishop019.jpg | Bin 2760 -> 0 bytes .../2005-02-06/thumbnails/color/bishop020.jpg | Bin 2122 -> 0 bytes .../2005-02-06/thumbnails/color/bishop021.jpg | Bin 1125 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop001.jpg | Bin 1960 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop002.jpg | Bin 1900 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop003.jpg | Bin 2392 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop004.jpg | Bin 2644 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop005.jpg | Bin 2310 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop006.jpg | Bin 2665 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop007.jpg | Bin 2420 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop008.jpg | Bin 2088 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop009.jpg | Bin 2359 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop010.jpg | Bin 1884 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop011.jpg | Bin 2228 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop012.jpg | Bin 1887 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop013.jpg | Bin 2120 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop014.jpg | Bin 1891 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop015.jpg | Bin 1923 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop016.jpg | Bin 2085 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop017.jpg | Bin 1895 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop018.jpg | Bin 2072 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop019.jpg | Bin 2470 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop020.jpg | Bin 1785 -> 0 bytes .../2005-02-06/thumbnails/grayscale/bishop021.jpg | Bin 868 -> 0 bytes public/exhibits/photos/2005-02-12/mission001.jpg | Bin 40423 -> 0 bytes public/exhibits/photos/2005-02-12/mission002.jpg | Bin 30279 -> 0 bytes public/exhibits/photos/2005-02-12/mission003.jpg | Bin 24152 -> 0 bytes public/exhibits/photos/2005-02-12/mission004.jpg | Bin 44973 -> 0 bytes public/exhibits/photos/2005-02-12/mission005.jpg | Bin 47997 -> 0 bytes public/exhibits/photos/2005-02-12/mission006.jpg | Bin 45461 -> 0 bytes public/exhibits/photos/2005-02-12/mission007.jpg | Bin 41512 -> 0 bytes public/exhibits/photos/2005-02-12/mission008.jpg | Bin 53670 -> 0 bytes public/exhibits/photos/2005-02-12/mission010.jpg | Bin 52250 -> 0 bytes public/exhibits/photos/2005-02-12/mission011.jpg | Bin 58389 -> 0 bytes public/exhibits/photos/2005-02-12/mission012.jpg | Bin 60107 -> 0 bytes public/exhibits/photos/2005-02-12/mission013.jpg | Bin 80537 -> 0 bytes public/exhibits/photos/2005-02-12/mission014.jpg | Bin 60163 -> 0 bytes public/exhibits/photos/2005-02-12/mission015.jpg | Bin 60260 -> 0 bytes public/exhibits/photos/2005-02-12/mission016.jpg | Bin 52144 -> 0 bytes public/exhibits/photos/2005-02-12/mission017.jpg | Bin 66425 -> 0 bytes public/exhibits/photos/2005-02-12/mission018.jpg | Bin 119852 -> 0 bytes public/exhibits/photos/2005-02-12/mission019.jpg | Bin 65989 -> 0 bytes public/exhibits/photos/2005-02-12/mission020.jpg | Bin 29685 -> 0 bytes public/exhibits/photos/2005-02-12/mission021.jpg | Bin 33449 -> 0 bytes public/exhibits/photos/2005-02-12/mission022.jpg | Bin 51378 -> 0 bytes .../2005-02-12/thumbnails/color/mission001.jpg | Bin 1871 -> 0 bytes .../2005-02-12/thumbnails/color/mission002.jpg | Bin 1827 -> 0 bytes .../2005-02-12/thumbnails/color/mission003.jpg | Bin 1664 -> 0 bytes .../2005-02-12/thumbnails/color/mission004.jpg | Bin 2060 -> 0 bytes .../2005-02-12/thumbnails/color/mission005.jpg | Bin 2102 -> 0 bytes .../2005-02-12/thumbnails/color/mission006.jpg | Bin 1882 -> 0 bytes .../2005-02-12/thumbnails/color/mission007.jpg | Bin 2049 -> 0 bytes .../2005-02-12/thumbnails/color/mission008.jpg | Bin 2703 -> 0 bytes .../2005-02-12/thumbnails/color/mission010.jpg | Bin 2335 -> 0 bytes .../2005-02-12/thumbnails/color/mission011.jpg | Bin 2870 -> 0 bytes .../2005-02-12/thumbnails/color/mission012.jpg | Bin 2887 -> 0 bytes .../2005-02-12/thumbnails/color/mission013.jpg | Bin 2588 -> 0 bytes .../2005-02-12/thumbnails/color/mission014.jpg | Bin 2223 -> 0 bytes .../2005-02-12/thumbnails/color/mission015.jpg | Bin 2158 -> 0 bytes .../2005-02-12/thumbnails/color/mission016.jpg | Bin 2502 -> 0 bytes .../2005-02-12/thumbnails/color/mission017.jpg | Bin 2198 -> 0 bytes .../2005-02-12/thumbnails/color/mission018.jpg | Bin 3161 -> 0 bytes .../2005-02-12/thumbnails/color/mission019.jpg | Bin 2452 -> 0 bytes .../2005-02-12/thumbnails/color/mission020.jpg | Bin 1900 -> 0 bytes .../2005-02-12/thumbnails/color/mission021.jpg | Bin 2178 -> 0 bytes .../2005-02-12/thumbnails/color/mission022.jpg | Bin 2326 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission001.jpg | Bin 1659 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission002.jpg | Bin 1599 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission003.jpg | Bin 1437 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission004.jpg | Bin 1822 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission005.jpg | Bin 1715 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission006.jpg | Bin 1655 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission007.jpg | Bin 1745 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission008.jpg | Bin 2381 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission010.jpg | Bin 1989 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission011.jpg | Bin 2319 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission012.jpg | Bin 2420 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission013.jpg | Bin 2283 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission014.jpg | Bin 1911 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission015.jpg | Bin 1717 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission016.jpg | Bin 2087 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission017.jpg | Bin 1970 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission018.jpg | Bin 2781 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission019.jpg | Bin 2180 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission020.jpg | Bin 1414 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission021.jpg | Bin 1933 -> 0 bytes .../2005-02-12/thumbnails/grayscale/mission022.jpg | Bin 1932 -> 0 bytes public/exhibits/photos/2005-03-05/flower001.jpg | Bin 79647 -> 0 bytes public/exhibits/photos/2005-03-05/flower002.jpg | Bin 78122 -> 0 bytes public/exhibits/photos/2005-03-05/flower003.jpg | Bin 57715 -> 0 bytes public/exhibits/photos/2005-03-05/flower004.jpg | Bin 111552 -> 0 bytes public/exhibits/photos/2005-03-05/flower005.jpg | Bin 86818 -> 0 bytes public/exhibits/photos/2005-03-05/flower006.jpg | Bin 99611 -> 0 bytes public/exhibits/photos/2005-03-05/flower007.jpg | Bin 77444 -> 0 bytes public/exhibits/photos/2005-03-05/flower008.jpg | Bin 76372 -> 0 bytes public/exhibits/photos/2005-03-05/flower009.jpg | Bin 126929 -> 0 bytes public/exhibits/photos/2005-03-05/flower011.jpg | Bin 69591 -> 0 bytes public/exhibits/photos/2005-03-05/flower012.jpg | Bin 69887 -> 0 bytes public/exhibits/photos/2005-03-05/flower013.jpg | Bin 91835 -> 0 bytes public/exhibits/photos/2005-03-05/flower014.jpg | Bin 91337 -> 0 bytes public/exhibits/photos/2005-03-05/flower015.jpg | Bin 77947 -> 0 bytes public/exhibits/photos/2005-03-05/flower016.jpg | Bin 88112 -> 0 bytes public/exhibits/photos/2005-03-05/flower017.jpg | Bin 96292 -> 0 bytes public/exhibits/photos/2005-03-05/flower018.jpg | Bin 87525 -> 0 bytes public/exhibits/photos/2005-03-05/flower019.jpg | Bin 75625 -> 0 bytes public/exhibits/photos/2005-03-05/flower020.jpg | Bin 77378 -> 0 bytes public/exhibits/photos/2005-03-05/flower021.jpg | Bin 87466 -> 0 bytes .../2005-03-05/thumbnails/color/flower001.jpg | Bin 3120 -> 0 bytes .../2005-03-05/thumbnails/color/flower002.jpg | Bin 3044 -> 0 bytes .../2005-03-05/thumbnails/color/flower003.jpg | Bin 2245 -> 0 bytes .../2005-03-05/thumbnails/color/flower004.jpg | Bin 3083 -> 0 bytes .../2005-03-05/thumbnails/color/flower005.jpg | Bin 2480 -> 0 bytes .../2005-03-05/thumbnails/color/flower006.jpg | Bin 2886 -> 0 bytes .../2005-03-05/thumbnails/color/flower007.jpg | Bin 2976 -> 0 bytes .../2005-03-05/thumbnails/color/flower008.jpg | Bin 2207 -> 0 bytes .../2005-03-05/thumbnails/color/flower009.jpg | Bin 2684 -> 0 bytes .../2005-03-05/thumbnails/color/flower011.jpg | Bin 2529 -> 0 bytes .../2005-03-05/thumbnails/color/flower012.jpg | Bin 2677 -> 0 bytes .../2005-03-05/thumbnails/color/flower013.jpg | Bin 2548 -> 0 bytes .../2005-03-05/thumbnails/color/flower014.jpg | Bin 3096 -> 0 bytes .../2005-03-05/thumbnails/color/flower015.jpg | Bin 2851 -> 0 bytes .../2005-03-05/thumbnails/color/flower016.jpg | Bin 2524 -> 0 bytes .../2005-03-05/thumbnails/color/flower017.jpg | Bin 2985 -> 0 bytes .../2005-03-05/thumbnails/color/flower018.jpg | Bin 2945 -> 0 bytes .../2005-03-05/thumbnails/color/flower019.jpg | Bin 2739 -> 0 bytes .../2005-03-05/thumbnails/color/flower020.jpg | Bin 3008 -> 0 bytes .../2005-03-05/thumbnails/color/flower021.jpg | Bin 3017 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower001.jpg | Bin 2623 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower002.jpg | Bin 2555 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower003.jpg | Bin 1921 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower004.jpg | Bin 2778 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower005.jpg | Bin 2020 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower006.jpg | Bin 2532 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower007.jpg | Bin 2588 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower008.jpg | Bin 1973 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower009.jpg | Bin 2358 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower011.jpg | Bin 2263 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower012.jpg | Bin 2394 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower013.jpg | Bin 2250 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower014.jpg | Bin 2841 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower015.jpg | Bin 2535 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower016.jpg | Bin 2197 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower017.jpg | Bin 2586 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower018.jpg | Bin 2593 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower019.jpg | Bin 2338 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower020.jpg | Bin 2670 -> 0 bytes .../2005-03-05/thumbnails/grayscale/flower021.jpg | Bin 2590 -> 0 bytes public/exhibits/photos/2005-03-20/p0001023.jpg | Bin 126890 -> 0 bytes public/exhibits/photos/2005-03-20/p0001026.jpg | Bin 100595 -> 0 bytes public/exhibits/photos/2005-03-20/p0001027.jpg | Bin 106609 -> 0 bytes public/exhibits/photos/2005-03-20/p0001028.jpg | Bin 89616 -> 0 bytes public/exhibits/photos/2005-03-20/p0001029.jpg | Bin 91495 -> 0 bytes public/exhibits/photos/2005-03-20/p0001033.jpg | Bin 57384 -> 0 bytes public/exhibits/photos/2005-03-20/p0001035.jpg | Bin 72792 -> 0 bytes public/exhibits/photos/2005-03-20/p0001037.jpg | Bin 76635 -> 0 bytes public/exhibits/photos/2005-03-20/p0001038.jpg | Bin 63704 -> 0 bytes public/exhibits/photos/2005-03-20/p0001040.jpg | Bin 84037 -> 0 bytes public/exhibits/photos/2005-03-20/p0001041.jpg | Bin 74406 -> 0 bytes public/exhibits/photos/2005-03-20/p0001043.jpg | Bin 42526 -> 0 bytes public/exhibits/photos/2005-03-20/p0001044.jpg | Bin 67490 -> 0 bytes public/exhibits/photos/2005-03-20/p0001048.jpg | Bin 67527 -> 0 bytes public/exhibits/photos/2005-03-20/p0001049.jpg | Bin 61631 -> 0 bytes public/exhibits/photos/2005-03-20/p0001050.jpg | Bin 33340 -> 0 bytes public/exhibits/photos/2005-03-20/p0001052.jpg | Bin 108364 -> 0 bytes public/exhibits/photos/2005-03-20/p0001053.jpg | Bin 102389 -> 0 bytes public/exhibits/photos/2005-03-20/p0001057.jpg | Bin 28440 -> 0 bytes public/exhibits/photos/2005-03-20/p0001058.jpg | Bin 65971 -> 0 bytes public/exhibits/photos/2005-03-20/p0001059.jpg | Bin 104759 -> 0 bytes .../2005-03-20/thumbnails/color/p0001023.jpg | Bin 4782 -> 0 bytes .../2005-03-20/thumbnails/color/p0001026.jpg | Bin 4009 -> 0 bytes .../2005-03-20/thumbnails/color/p0001027.jpg | Bin 3960 -> 0 bytes .../2005-03-20/thumbnails/color/p0001028.jpg | Bin 4039 -> 0 bytes .../2005-03-20/thumbnails/color/p0001029.jpg | Bin 3937 -> 0 bytes .../2005-03-20/thumbnails/color/p0001033.jpg | Bin 3684 -> 0 bytes .../2005-03-20/thumbnails/color/p0001035.jpg | Bin 3894 -> 0 bytes .../2005-03-20/thumbnails/color/p0001037.jpg | Bin 4116 -> 0 bytes .../2005-03-20/thumbnails/color/p0001038.jpg | Bin 3943 -> 0 bytes .../2005-03-20/thumbnails/color/p0001040.jpg | Bin 4112 -> 0 bytes .../2005-03-20/thumbnails/color/p0001041.jpg | Bin 3771 -> 0 bytes .../2005-03-20/thumbnails/color/p0001043.jpg | Bin 3656 -> 0 bytes .../2005-03-20/thumbnails/color/p0001044.jpg | Bin 3899 -> 0 bytes .../2005-03-20/thumbnails/color/p0001048.jpg | Bin 3523 -> 0 bytes .../2005-03-20/thumbnails/color/p0001049.jpg | Bin 3479 -> 0 bytes .../2005-03-20/thumbnails/color/p0001050.jpg | Bin 3395 -> 0 bytes .../2005-03-20/thumbnails/color/p0001052.jpg | Bin 3834 -> 0 bytes .../2005-03-20/thumbnails/color/p0001053.jpg | Bin 4429 -> 0 bytes .../2005-03-20/thumbnails/color/p0001057.jpg | Bin 3824 -> 0 bytes .../2005-03-20/thumbnails/color/p0001058.jpg | Bin 4316 -> 0 bytes .../2005-03-20/thumbnails/color/p0001059.jpg | Bin 4201 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001023.jpg | Bin 4377 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001026.jpg | Bin 3840 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001027.jpg | Bin 3660 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001028.jpg | Bin 3809 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001029.jpg | Bin 3687 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001033.jpg | Bin 3412 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001035.jpg | Bin 3523 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001037.jpg | Bin 3834 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001038.jpg | Bin 3624 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001040.jpg | Bin 3807 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001041.jpg | Bin 3508 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001043.jpg | Bin 3344 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001044.jpg | Bin 3589 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001048.jpg | Bin 3264 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001049.jpg | Bin 3219 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001050.jpg | Bin 2924 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001052.jpg | Bin 3561 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001053.jpg | Bin 4158 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001057.jpg | Bin 3604 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001058.jpg | Bin 3967 -> 0 bytes .../2005-03-20/thumbnails/grayscale/p0001059.jpg | Bin 3895 -> 0 bytes public/exhibits/photos/2005-03-24/p0001060.jpg | Bin 71556 -> 0 bytes public/exhibits/photos/2005-03-24/p0001061.jpg | Bin 167623 -> 0 bytes public/exhibits/photos/2005-03-24/p0001062.jpg | Bin 153024 -> 0 bytes public/exhibits/photos/2005-03-24/p0001064.jpg | Bin 98746 -> 0 bytes public/exhibits/photos/2005-03-24/p0001065.jpg | Bin 123327 -> 0 bytes public/exhibits/photos/2005-03-24/p0001069.jpg | Bin 144807 -> 0 bytes public/exhibits/photos/2005-03-24/p0001071.jpg | Bin 64065 -> 0 bytes public/exhibits/photos/2005-03-24/p0001076.jpg | Bin 117361 -> 0 bytes .../2005-03-24/thumbnails/color/p0001060.jpg | Bin 3616 -> 0 bytes .../2005-03-24/thumbnails/color/p0001061.jpg | Bin 3922 -> 0 bytes .../2005-03-24/thumbnails/color/p0001062.jpg | Bin 3659 -> 0 bytes .../2005-03-24/thumbnails/color/p0001064.jpg | Bin 3727 -> 0 bytes .../2005-03-24/thumbnails/color/p0001065.jpg | Bin 3698 -> 0 bytes .../2005-03-24/thumbnails/color/p0001069.jpg | Bin 3645 -> 0 bytes .../2005-03-24/thumbnails/color/p0001071.jpg | Bin 3660 -> 0 bytes .../2005-03-24/thumbnails/color/p0001076.jpg | Bin 3807 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001060.jpg | Bin 3291 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001061.jpg | Bin 3574 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001062.jpg | Bin 3223 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001064.jpg | Bin 3464 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001065.jpg | Bin 3405 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001069.jpg | Bin 3313 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001071.jpg | Bin 3358 -> 0 bytes .../2005-03-24/thumbnails/grayscale/p0001076.jpg | Bin 3529 -> 0 bytes public/exhibits/photos/2005-04-17/p0000989.jpg | Bin 83490 -> 0 bytes public/exhibits/photos/2005-04-17/p0001077.jpg | Bin 55395 -> 0 bytes public/exhibits/photos/2005-04-17/p0001082.jpg | Bin 91169 -> 0 bytes public/exhibits/photos/2005-04-17/p0001084.jpg | Bin 110630 -> 0 bytes public/exhibits/photos/2005-04-17/p0001085.jpg | Bin 130116 -> 0 bytes public/exhibits/photos/2005-04-17/p0001088.jpg | Bin 107391 -> 0 bytes public/exhibits/photos/2005-04-17/p0001089.jpg | Bin 54727 -> 0 bytes public/exhibits/photos/2005-04-17/p0001090.jpg | Bin 64427 -> 0 bytes public/exhibits/photos/2005-04-17/p0001091.jpg | Bin 90650 -> 0 bytes public/exhibits/photos/2005-04-17/p0001092.jpg | Bin 90653 -> 0 bytes public/exhibits/photos/2005-04-17/p0001094.jpg | Bin 87714 -> 0 bytes public/exhibits/photos/2005-04-17/p0001095.jpg | Bin 112221 -> 0 bytes public/exhibits/photos/2005-04-17/p0001096.jpg | Bin 65346 -> 0 bytes public/exhibits/photos/2005-04-17/p0001097.jpg | Bin 31431 -> 0 bytes public/exhibits/photos/2005-04-17/p0001098.jpg | Bin 67830 -> 0 bytes public/exhibits/photos/2005-04-17/p0001099.jpg | Bin 71153 -> 0 bytes public/exhibits/photos/2005-04-17/p0001101.jpg | Bin 56176 -> 0 bytes public/exhibits/photos/2005-04-17/p0001103.jpg | Bin 59056 -> 0 bytes public/exhibits/photos/2005-04-17/p0001104.jpg | Bin 123364 -> 0 bytes public/exhibits/photos/2005-04-17/p0001106.jpg | Bin 58699 -> 0 bytes public/exhibits/photos/2005-04-17/p0001107.jpg | Bin 75906 -> 0 bytes public/exhibits/photos/2005-04-17/p0001108.jpg | Bin 77057 -> 0 bytes public/exhibits/photos/2005-04-17/p0001109.jpg | Bin 67729 -> 0 bytes public/exhibits/photos/2005-04-17/p0001110.jpg | Bin 60112 -> 0 bytes public/exhibits/photos/2005-04-17/p0001113.jpg | Bin 64563 -> 0 bytes public/exhibits/photos/2005-04-17/p0001115.jpg | Bin 81557 -> 0 bytes public/exhibits/photos/2005-04-17/p0001116.jpg | Bin 26838 -> 0 bytes public/exhibits/photos/2005-04-17/p0001119.jpg | Bin 88305 -> 0 bytes public/exhibits/photos/2005-04-17/p0001121.jpg | Bin 35204 -> 0 bytes public/exhibits/photos/2005-04-17/p0001124.jpg | Bin 108942 -> 0 bytes public/exhibits/photos/2005-04-17/p0001126.jpg | Bin 124108 -> 0 bytes public/exhibits/photos/2005-04-17/p0001128.jpg | Bin 99840 -> 0 bytes public/exhibits/photos/2005-04-17/p0001129.jpg | Bin 62042 -> 0 bytes .../2005-04-17/thumbnails/color/p0000989.jpg | Bin 4061 -> 0 bytes .../2005-04-17/thumbnails/color/p0001077.jpg | Bin 3598 -> 0 bytes .../2005-04-17/thumbnails/color/p0001082.jpg | Bin 4644 -> 0 bytes .../2005-04-17/thumbnails/color/p0001084.jpg | Bin 4251 -> 0 bytes .../2005-04-17/thumbnails/color/p0001085.jpg | Bin 3953 -> 0 bytes .../2005-04-17/thumbnails/color/p0001088.jpg | Bin 4098 -> 0 bytes .../2005-04-17/thumbnails/color/p0001089.jpg | Bin 3693 -> 0 bytes .../2005-04-17/thumbnails/color/p0001090.jpg | Bin 3733 -> 0 bytes .../2005-04-17/thumbnails/color/p0001091.jpg | Bin 4234 -> 0 bytes .../2005-04-17/thumbnails/color/p0001092.jpg | Bin 4305 -> 0 bytes .../2005-04-17/thumbnails/color/p0001094.jpg | Bin 4149 -> 0 bytes .../2005-04-17/thumbnails/color/p0001095.jpg | Bin 4573 -> 0 bytes .../2005-04-17/thumbnails/color/p0001096.jpg | Bin 3484 -> 0 bytes .../2005-04-17/thumbnails/color/p0001097.jpg | Bin 3411 -> 0 bytes .../2005-04-17/thumbnails/color/p0001098.jpg | Bin 3746 -> 0 bytes .../2005-04-17/thumbnails/color/p0001099.jpg | Bin 4275 -> 0 bytes .../2005-04-17/thumbnails/color/p0001101.jpg | Bin 3468 -> 0 bytes .../2005-04-17/thumbnails/color/p0001103.jpg | Bin 3513 -> 0 bytes .../2005-04-17/thumbnails/color/p0001104.jpg | Bin 4069 -> 0 bytes .../2005-04-17/thumbnails/color/p0001106.jpg | Bin 4115 -> 0 bytes .../2005-04-17/thumbnails/color/p0001107.jpg | Bin 4087 -> 0 bytes .../2005-04-17/thumbnails/color/p0001108.jpg | Bin 4245 -> 0 bytes .../2005-04-17/thumbnails/color/p0001109.jpg | Bin 3870 -> 0 bytes .../2005-04-17/thumbnails/color/p0001110.jpg | Bin 4088 -> 0 bytes .../2005-04-17/thumbnails/color/p0001113.jpg | Bin 4204 -> 0 bytes .../2005-04-17/thumbnails/color/p0001115.jpg | Bin 3625 -> 0 bytes .../2005-04-17/thumbnails/color/p0001116.jpg | Bin 3331 -> 0 bytes .../2005-04-17/thumbnails/color/p0001119.jpg | Bin 4224 -> 0 bytes .../2005-04-17/thumbnails/color/p0001121.jpg | Bin 3359 -> 0 bytes .../2005-04-17/thumbnails/color/p0001124.jpg | Bin 3921 -> 0 bytes .../2005-04-17/thumbnails/color/p0001126.jpg | Bin 4495 -> 0 bytes .../2005-04-17/thumbnails/color/p0001128.jpg | Bin 3938 -> 0 bytes .../2005-04-17/thumbnails/color/p0001129.jpg | Bin 3771 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0000989.jpg | Bin 3718 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001077.jpg | Bin 3283 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001082.jpg | Bin 4345 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001084.jpg | Bin 3919 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001085.jpg | Bin 3751 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001088.jpg | Bin 3885 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001089.jpg | Bin 3351 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001090.jpg | Bin 3441 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001091.jpg | Bin 3968 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001092.jpg | Bin 3962 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001094.jpg | Bin 3878 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001095.jpg | Bin 4202 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001096.jpg | Bin 3179 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001097.jpg | Bin 3174 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001098.jpg | Bin 3501 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001099.jpg | Bin 3941 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001101.jpg | Bin 3260 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001103.jpg | Bin 3243 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001104.jpg | Bin 3824 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001106.jpg | Bin 3663 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001107.jpg | Bin 3734 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001108.jpg | Bin 3789 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001109.jpg | Bin 3606 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001110.jpg | Bin 3794 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001113.jpg | Bin 3935 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001115.jpg | Bin 3387 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001116.jpg | Bin 2975 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001119.jpg | Bin 3935 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001121.jpg | Bin 3144 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001124.jpg | Bin 3677 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001126.jpg | Bin 4259 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001128.jpg | Bin 3708 -> 0 bytes .../2005-04-17/thumbnails/grayscale/p0001129.jpg | Bin 3503 -> 0 bytes public/exhibits/photos/2005-07-02/p0001132.jpg | Bin 27817 -> 0 bytes public/exhibits/photos/2005-07-02/p0001136.jpg | Bin 60647 -> 0 bytes public/exhibits/photos/2005-07-02/p0001137.jpg | Bin 63848 -> 0 bytes public/exhibits/photos/2005-07-02/p0001138.jpg | Bin 56558 -> 0 bytes public/exhibits/photos/2005-07-02/p0001144.jpg | Bin 51440 -> 0 bytes public/exhibits/photos/2005-07-02/p0001145.jpg | Bin 96334 -> 0 bytes public/exhibits/photos/2005-07-02/p0001147.jpg | Bin 116507 -> 0 bytes public/exhibits/photos/2005-07-02/p0001149.jpg | Bin 70607 -> 0 bytes public/exhibits/photos/2005-07-02/p0001155.jpg | Bin 101509 -> 0 bytes public/exhibits/photos/2005-07-02/p0001158.jpg | Bin 37533 -> 0 bytes public/exhibits/photos/2005-07-02/p0001160.jpg | Bin 62981 -> 0 bytes public/exhibits/photos/2005-07-02/p0001162.jpg | Bin 68786 -> 0 bytes public/exhibits/photos/2005-07-02/p0001164.jpg | Bin 29198 -> 0 bytes public/exhibits/photos/2005-07-02/p0001169.jpg | Bin 134241 -> 0 bytes public/exhibits/photos/2005-07-02/p0001171.jpg | Bin 62091 -> 0 bytes public/exhibits/photos/2005-07-02/p0001173.jpg | Bin 30279 -> 0 bytes .../2005-07-02/thumbnails/color/p0001132.jpg | Bin 3345 -> 0 bytes .../2005-07-02/thumbnails/color/p0001136.jpg | Bin 3488 -> 0 bytes .../2005-07-02/thumbnails/color/p0001137.jpg | Bin 3653 -> 0 bytes .../2005-07-02/thumbnails/color/p0001138.jpg | Bin 3718 -> 0 bytes .../2005-07-02/thumbnails/color/p0001144.jpg | Bin 3702 -> 0 bytes .../2005-07-02/thumbnails/color/p0001145.jpg | Bin 4309 -> 0 bytes .../2005-07-02/thumbnails/color/p0001147.jpg | Bin 3800 -> 0 bytes .../2005-07-02/thumbnails/color/p0001149.jpg | Bin 3719 -> 0 bytes .../2005-07-02/thumbnails/color/p0001155.jpg | Bin 4413 -> 0 bytes .../2005-07-02/thumbnails/color/p0001158.jpg | Bin 3566 -> 0 bytes .../2005-07-02/thumbnails/color/p0001160.jpg | Bin 3813 -> 0 bytes .../2005-07-02/thumbnails/color/p0001162.jpg | Bin 3746 -> 0 bytes .../2005-07-02/thumbnails/color/p0001164.jpg | Bin 3554 -> 0 bytes .../2005-07-02/thumbnails/color/p0001169.jpg | Bin 4274 -> 0 bytes .../2005-07-02/thumbnails/color/p0001171.jpg | Bin 3252 -> 0 bytes .../2005-07-02/thumbnails/color/p0001173.jpg | Bin 3639 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001132.jpg | Bin 3076 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001136.jpg | Bin 3214 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001137.jpg | Bin 3372 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001138.jpg | Bin 3452 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001144.jpg | Bin 3353 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001145.jpg | Bin 4063 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001147.jpg | Bin 3437 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001149.jpg | Bin 3412 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001155.jpg | Bin 4081 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001158.jpg | Bin 3230 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001160.jpg | Bin 3497 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001162.jpg | Bin 3449 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001164.jpg | Bin 3336 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001169.jpg | Bin 4009 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001171.jpg | Bin 2990 -> 0 bytes .../2005-07-02/thumbnails/grayscale/p0001173.jpg | Bin 3413 -> 0 bytes public/exhibits/photos/2005-07-03/p0001174.jpg | Bin 38002 -> 0 bytes public/exhibits/photos/2005-07-03/p0001175.jpg | Bin 64685 -> 0 bytes public/exhibits/photos/2005-07-03/p0001176.jpg | Bin 48997 -> 0 bytes public/exhibits/photos/2005-07-03/p0001178.jpg | Bin 27661 -> 0 bytes public/exhibits/photos/2005-07-03/p0001179.jpg | Bin 106509 -> 0 bytes public/exhibits/photos/2005-07-03/p0001180.jpg | Bin 99472 -> 0 bytes public/exhibits/photos/2005-07-03/p0001181.jpg | Bin 85262 -> 0 bytes public/exhibits/photos/2005-07-03/p0001182.jpg | Bin 29898 -> 0 bytes public/exhibits/photos/2005-07-03/p0001183.jpg | Bin 58761 -> 0 bytes public/exhibits/photos/2005-07-03/p0001185.jpg | Bin 101981 -> 0 bytes public/exhibits/photos/2005-07-03/p0001186.jpg | Bin 57277 -> 0 bytes public/exhibits/photos/2005-07-03/p0001187.jpg | Bin 65001 -> 0 bytes public/exhibits/photos/2005-07-03/p0001188.jpg | Bin 40501 -> 0 bytes public/exhibits/photos/2005-07-03/p0001191.jpg | Bin 39505 -> 0 bytes public/exhibits/photos/2005-07-03/p0001192.jpg | Bin 50508 -> 0 bytes public/exhibits/photos/2005-07-03/p0001193.jpg | Bin 53822 -> 0 bytes public/exhibits/photos/2005-07-03/p0001194.jpg | Bin 62506 -> 0 bytes public/exhibits/photos/2005-07-03/p0001195.jpg | Bin 61923 -> 0 bytes public/exhibits/photos/2005-07-03/p0001198.jpg | Bin 55075 -> 0 bytes public/exhibits/photos/2005-07-03/p0001202.jpg | Bin 56064 -> 0 bytes public/exhibits/photos/2005-07-03/p0001204.jpg | Bin 69895 -> 0 bytes public/exhibits/photos/2005-07-03/p0001207.jpg | Bin 30422 -> 0 bytes public/exhibits/photos/2005-07-03/p0001208.jpg | Bin 53709 -> 0 bytes public/exhibits/photos/2005-07-03/p0001210.jpg | Bin 82450 -> 0 bytes public/exhibits/photos/2005-07-03/p0001211.jpg | Bin 60550 -> 0 bytes public/exhibits/photos/2005-07-03/p0001212.jpg | Bin 81474 -> 0 bytes public/exhibits/photos/2005-07-03/p0001213.jpg | Bin 81061 -> 0 bytes .../2005-07-03/thumbnails/color/p0001174.jpg | Bin 3795 -> 0 bytes .../2005-07-03/thumbnails/color/p0001175.jpg | Bin 3960 -> 0 bytes .../2005-07-03/thumbnails/color/p0001176.jpg | Bin 3940 -> 0 bytes .../2005-07-03/thumbnails/color/p0001178.jpg | Bin 3591 -> 0 bytes .../2005-07-03/thumbnails/color/p0001179.jpg | Bin 4156 -> 0 bytes .../2005-07-03/thumbnails/color/p0001180.jpg | Bin 3713 -> 0 bytes .../2005-07-03/thumbnails/color/p0001181.jpg | Bin 3414 -> 0 bytes .../2005-07-03/thumbnails/color/p0001182.jpg | Bin 3628 -> 0 bytes .../2005-07-03/thumbnails/color/p0001183.jpg | Bin 3734 -> 0 bytes .../2005-07-03/thumbnails/color/p0001185.jpg | Bin 3811 -> 0 bytes .../2005-07-03/thumbnails/color/p0001186.jpg | Bin 3952 -> 0 bytes .../2005-07-03/thumbnails/color/p0001187.jpg | Bin 3781 -> 0 bytes .../2005-07-03/thumbnails/color/p0001188.jpg | Bin 3707 -> 0 bytes .../2005-07-03/thumbnails/color/p0001191.jpg | Bin 3637 -> 0 bytes .../2005-07-03/thumbnails/color/p0001192.jpg | Bin 3977 -> 0 bytes .../2005-07-03/thumbnails/color/p0001193.jpg | Bin 3793 -> 0 bytes .../2005-07-03/thumbnails/color/p0001194.jpg | Bin 4318 -> 0 bytes .../2005-07-03/thumbnails/color/p0001195.jpg | Bin 3945 -> 0 bytes .../2005-07-03/thumbnails/color/p0001198.jpg | Bin 3589 -> 0 bytes .../2005-07-03/thumbnails/color/p0001202.jpg | Bin 3604 -> 0 bytes .../2005-07-03/thumbnails/color/p0001204.jpg | Bin 3616 -> 0 bytes .../2005-07-03/thumbnails/color/p0001207.jpg | Bin 3365 -> 0 bytes .../2005-07-03/thumbnails/color/p0001208.jpg | Bin 3939 -> 0 bytes .../2005-07-03/thumbnails/color/p0001210.jpg | Bin 3660 -> 0 bytes .../2005-07-03/thumbnails/color/p0001211.jpg | Bin 3754 -> 0 bytes .../2005-07-03/thumbnails/color/p0001212.jpg | Bin 3614 -> 0 bytes .../2005-07-03/thumbnails/color/p0001213.jpg | Bin 3576 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001174.jpg | Bin 3595 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001175.jpg | Bin 3708 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001176.jpg | Bin 3714 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001178.jpg | Bin 3319 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001179.jpg | Bin 3839 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001180.jpg | Bin 3476 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001181.jpg | Bin 3155 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001182.jpg | Bin 3411 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001183.jpg | Bin 3484 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001185.jpg | Bin 3547 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001186.jpg | Bin 3656 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001187.jpg | Bin 3540 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001188.jpg | Bin 3474 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001191.jpg | Bin 3305 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001192.jpg | Bin 3757 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001193.jpg | Bin 3574 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001194.jpg | Bin 3884 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001195.jpg | Bin 3586 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001198.jpg | Bin 3382 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001202.jpg | Bin 3391 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001204.jpg | Bin 3293 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001207.jpg | Bin 3151 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001208.jpg | Bin 3602 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001210.jpg | Bin 3441 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001211.jpg | Bin 3500 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001212.jpg | Bin 3334 -> 0 bytes .../2005-07-03/thumbnails/grayscale/p0001213.jpg | Bin 3336 -> 0 bytes public/exhibits/photos/2005-07-10/p0001273.jpg | Bin 59630 -> 0 bytes public/exhibits/photos/2005-07-10/p0001276.jpg | Bin 72340 -> 0 bytes public/exhibits/photos/2005-07-10/p0001277.jpg | Bin 53407 -> 0 bytes public/exhibits/photos/2005-07-10/p0001278.jpg | Bin 26139 -> 0 bytes public/exhibits/photos/2005-07-10/p0001281.jpg | Bin 81071 -> 0 bytes public/exhibits/photos/2005-07-10/p0001283.jpg | Bin 126768 -> 0 bytes public/exhibits/photos/2005-07-10/p0001284.jpg | Bin 66290 -> 0 bytes public/exhibits/photos/2005-07-10/p0001285.jpg | Bin 87223 -> 0 bytes public/exhibits/photos/2005-07-10/p0001286.jpg | Bin 65209 -> 0 bytes public/exhibits/photos/2005-07-10/p0001289.jpg | Bin 83573 -> 0 bytes public/exhibits/photos/2005-07-10/p0001290.jpg | Bin 76764 -> 0 bytes public/exhibits/photos/2005-07-10/p0001291.jpg | Bin 53444 -> 0 bytes public/exhibits/photos/2005-07-10/p0001293.jpg | Bin 83814 -> 0 bytes public/exhibits/photos/2005-07-10/p0001295.jpg | Bin 77570 -> 0 bytes public/exhibits/photos/2005-07-10/p0001297.jpg | Bin 103154 -> 0 bytes public/exhibits/photos/2005-07-10/p0001300.jpg | Bin 49850 -> 0 bytes public/exhibits/photos/2005-07-10/p0001302.jpg | Bin 44691 -> 0 bytes public/exhibits/photos/2005-07-10/p0001303.jpg | Bin 92741 -> 0 bytes public/exhibits/photos/2005-07-10/p0001306.jpg | Bin 60618 -> 0 bytes public/exhibits/photos/2005-07-10/p0001308.jpg | Bin 46673 -> 0 bytes public/exhibits/photos/2005-07-10/p0001310.jpg | Bin 101178 -> 0 bytes public/exhibits/photos/2005-07-10/p0001311.jpg | Bin 59110 -> 0 bytes public/exhibits/photos/2005-07-10/p0001312.jpg | Bin 107417 -> 0 bytes .../2005-07-10/thumbnails/color/p0001273.jpg | Bin 3848 -> 0 bytes .../2005-07-10/thumbnails/color/p0001276.jpg | Bin 3959 -> 0 bytes .../2005-07-10/thumbnails/color/p0001277.jpg | Bin 3534 -> 0 bytes .../2005-07-10/thumbnails/color/p0001278.jpg | Bin 3147 -> 0 bytes .../2005-07-10/thumbnails/color/p0001281.jpg | Bin 4148 -> 0 bytes .../2005-07-10/thumbnails/color/p0001283.jpg | Bin 3868 -> 0 bytes .../2005-07-10/thumbnails/color/p0001284.jpg | Bin 4102 -> 0 bytes .../2005-07-10/thumbnails/color/p0001285.jpg | Bin 4402 -> 0 bytes .../2005-07-10/thumbnails/color/p0001286.jpg | Bin 3911 -> 0 bytes .../2005-07-10/thumbnails/color/p0001289.jpg | Bin 4052 -> 0 bytes .../2005-07-10/thumbnails/color/p0001290.jpg | Bin 3352 -> 0 bytes .../2005-07-10/thumbnails/color/p0001291.jpg | Bin 3619 -> 0 bytes .../2005-07-10/thumbnails/color/p0001293.jpg | Bin 4332 -> 0 bytes .../2005-07-10/thumbnails/color/p0001295.jpg | Bin 3970 -> 0 bytes .../2005-07-10/thumbnails/color/p0001297.jpg | Bin 4214 -> 0 bytes .../2005-07-10/thumbnails/color/p0001300.jpg | Bin 4069 -> 0 bytes .../2005-07-10/thumbnails/color/p0001302.jpg | Bin 3821 -> 0 bytes .../2005-07-10/thumbnails/color/p0001303.jpg | Bin 4269 -> 0 bytes .../2005-07-10/thumbnails/color/p0001306.jpg | Bin 4168 -> 0 bytes .../2005-07-10/thumbnails/color/p0001308.jpg | Bin 3948 -> 0 bytes .../2005-07-10/thumbnails/color/p0001310.jpg | Bin 4229 -> 0 bytes .../2005-07-10/thumbnails/color/p0001311.jpg | Bin 4261 -> 0 bytes .../2005-07-10/thumbnails/color/p0001312.jpg | Bin 3625 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001273.jpg | Bin 3522 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001276.jpg | Bin 3680 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001277.jpg | Bin 3304 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001278.jpg | Bin 2844 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001281.jpg | Bin 3862 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001283.jpg | Bin 3578 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001284.jpg | Bin 3856 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001285.jpg | Bin 4023 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001286.jpg | Bin 3593 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001289.jpg | Bin 3755 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001290.jpg | Bin 3091 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001291.jpg | Bin 3408 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001293.jpg | Bin 4000 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001295.jpg | Bin 3661 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001297.jpg | Bin 3914 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001300.jpg | Bin 3788 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001302.jpg | Bin 3514 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001303.jpg | Bin 4038 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001306.jpg | Bin 3897 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001308.jpg | Bin 3708 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001310.jpg | Bin 3926 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001311.jpg | Bin 3874 -> 0 bytes .../2005-07-10/thumbnails/grayscale/p0001312.jpg | Bin 3357 -> 0 bytes public/exhibits/photos/2005-10-23-2/p0001431.jpg | Bin 92125 -> 0 bytes public/exhibits/photos/2005-10-23-2/p0001433.jpg | Bin 119591 -> 0 bytes public/exhibits/photos/2005-10-23-2/p0001435.jpg | Bin 105927 -> 0 bytes public/exhibits/photos/2005-10-23-2/p0001436.jpg | Bin 124467