commit - /dev/null
commit + 1ddd2d4e7b91df2f799f6bd76dd633e74b673a28
blob - /dev/null
blob + 36d16929ed3b07076721fcc5d23989d6ccd13ac9 (mode 644)
--- /dev/null
+++ 10.Practical.Reference.Tricks/directory_tree_by_queue.pl
+use Data::Printer;
+
+my $ds = {};
+my @queue = ( [ '/etc', $ds ] );
+
+while( my $tuple = shift @queue ) {
+ opendir my $dh, $tuple->[0] or do { warn "Skipping $tuple->[0]: $!\n"; next };
+ foreach my $file ( grep { ! /\A\.\.?\z/ } readdir $dh ) {
+ next if -l $file;
+ unless( -d "$tuple->[0]/$file" ) {
+ $tuple->[1]{$file} = undef;
+ next;
+ }
+ push @queue, [ "$tuple->[0]/$file", $tuple->[1]{$file} = {} ];
+ }
+ }
+
+p $ds;
blob - /dev/null
blob + c02e3edf82deca2850910ab9742a6128abe87773 (mode 644)
Binary files /dev/null and 19.Making.Animals.With.Moose/Animal-0.01.tar.gz differ
blob - /dev/null
blob + f57db269fe912365fd83f260317d4e27b2c397fc (mode 644)
--- /dev/null
+++ 4.Introduction.To.References/check_items_for_all.pl
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+my @skipper = qw(blue_shirt hat jacket preserver sunscreen);
+my @professor = qw(sunscreen water_bottle slide_rule batteries radio);
+my @gilligan = qw(red_shirt hat lucky_socks water_bottle);
+
+my %all = (
+ Gilligan => \@gilligan,
+ Skipper => \@skipper,
+ Professor => \@professor,
+);
+
+check_items_for_all(\%all);
+
+sub check_items_for_all {
+ die "You need to fill in check_items_for_all";
+}
blob - /dev/null
blob + c7798b185d36eea82aff495712e7cc74a6c5f3b7 (mode 644)
--- /dev/null
+++ 4.Introduction.To.References/check_required_items.pl
+sub check_required_items {
+ my $who = shift;
+ my $items = shift;
+
+ my %whose_items = map { $_, 1 } @$items;
+
+ my @required = qw(preserver sunscreen water_bottle jacket);
+ my @missing = ( );
+
+ for my $item (@required) {
+ unless ( $whose_items{$item} ) { # not found in list?
+ print "$who is missing $item.\n";
+ push @missing, $item; }
+ }
+
+ if (@missing) {
+ print "Adding @missing to @$items for $who.\n";
+ push @$items, @missing;
+ }
+}
blob - /dev/null
blob + 7bfb9cf937a826bfd511f5737c8a74496861c36f (mode 644)
--- /dev/null
+++ 4.Introduction.To.References/crew_location.pl
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+my %gilligan_info = (
+ name => 'Gilligan',
+ hat => 'White',
+ shirt => 'Red',
+ position => 'First Mate',
+);
+my %skipper_info = (
+ name => 'Skipper',
+ hat => 'Black',
+ shirt => 'Blue',
+ position => 'Captain',
+);
+
+my @crew = (\%gilligan_info, \%skipper_info);
+
+my $format = "%-15s %-7s %-7s %-15s\n";
+printf $format, qw(Name Shirt Hat Position);
+
+foreach my $crewmember (@crew) {
+ printf $format,
+ $crewmember->{'name'},
+ $crewmember->{'shirt'},
+ $crewmember->{'hat'},
+ $crewmember->{'position'};
+}
blob - /dev/null
blob + 169c3439c9763b38b0d1785b8c56ad13bb905e44 (mode 644)
--- /dev/null
+++ 5.References.And.Scoping/coconet.dat
+professor.hut skipper.crew.hut 8655
+ginger.girl.hut laser3.copyroom.hut 6404
+skipper.crew.hut fileserver.copyroom.hut 8534
+gilligan.crew.hut skipper.crew.hut 1004
+laser3.copyroom.hut ginger.girl.hut 4366
+maryann.girl.hut professor.hut 8454
+skipper.crew.hut professor.hut 7475
+gilligan.crew.hut maryann.girl.hut 8128
+gilligan.crew.hut maryann.girl.hut 5277
+gilligan.crew.hut fileserver.copyroom.hut 6117
+skipper.crew.hut professor.hut 5101
+gilligan.crew.hut gilligan.crew.hut 9973
+ginger.girl.hut fileserver.copyroom.hut 1448
+skipper.crew.hut gilligan.crew.hut 2146
+fileserver.copyroom.hut gilligan.crew.hut 9568
+maryann.girl.hut laser3.copyroom.hut 8024
+fileserver.copyroom.hut laser3.copyroom.hut 9574
+gilligan.crew.hut professor.hut 1630
+professor.hut skipper.crew.hut 1861
+ginger.girl.hut gilligan.crew.hut 2462
+gilligan.crew.hut skipper.crew.hut 9976
+maryann.girl.hut maryann.girl.hut 5337
+ginger.girl.hut fileserver.copyroom.hut 9562
+professor.hut professor.hut 9573
+laser3.copyroom.hut skipper.crew.hut 7057
+ginger.girl.hut laser3.copyroom.hut 3316
+laser3.copyroom.hut fileserver.copyroom.hut 6607
+laser3.copyroom.hut skipper.crew.hut 996
+professor.hut gilligan.crew.hut 4003
+laser3.copyroom.hut maryann.girl.hut 401
+laser3.copyroom.hut professor.hut 3350
+gilligan.crew.hut gilligan.crew.hut 1551
+professor.hut professor.hut 3308
+professor.hut skipper.crew.hut 9422
+gilligan.crew.hut ginger.girl.hut 3233
+fileserver.copyroom.hut gilligan.crew.hut 4754
+fileserver.copyroom.hut skipper.crew.hut 7825
+professor.hut ginger.girl.hut 9704
+skipper.crew.hut ginger.girl.hut 1691
+skipper.crew.hut laser3.copyroom.hut 3072
+ginger.girl.hut gilligan.crew.hut 2293
+ginger.girl.hut skipper.crew.hut 123
+fileserver.copyroom.hut laser3.copyroom.hut 1552
+skipper.crew.hut ginger.girl.hut 7570
+fileserver.copyroom.hut ginger.girl.hut 9607
+fileserver.copyroom.hut gilligan.crew.hut 8957
+laser3.copyroom.hut fileserver.copyroom.hut 7392
+gilligan.crew.hut skipper.crew.hut 8298
+laser3.copyroom.hut maryann.girl.hut 6599
+skipper.crew.hut skipper.crew.hut 413
+fileserver.copyroom.hut ginger.girl.hut 790
+fileserver.copyroom.hut gilligan.crew.hut 209
+skipper.crew.hut fileserver.copyroom.hut 9847
+gilligan.crew.hut professor.hut 7315
+fileserver.copyroom.hut ginger.girl.hut 4199
+gilligan.crew.hut ginger.girl.hut 7463
+gilligan.crew.hut professor.hut 7311
+professor.hut fileserver.copyroom.hut 5223
+laser3.copyroom.hut skipper.crew.hut 4462
+fileserver.copyroom.hut maryann.girl.hut 2632
+skipper.crew.hut professor.hut 7734
+laser3.copyroom.hut ginger.girl.hut 8550
+fileserver.copyroom.hut laser3.copyroom.hut 7717
+ginger.girl.hut skipper.crew.hut 3031
+professor.hut skipper.crew.hut 8133
+skipper.crew.hut skipper.crew.hut 9218
+laser3.copyroom.hut laser3.copyroom.hut 6379
+laser3.copyroom.hut gilligan.crew.hut 8468
+laser3.copyroom.hut maryann.girl.hut 3935
+laser3.copyroom.hut ginger.girl.hut 2212
+skipper.crew.hut laser3.copyroom.hut 611
+skipper.crew.hut maryann.girl.hut 8078
+fileserver.copyroom.hut maryann.girl.hut 4863
+laser3.copyroom.hut laser3.copyroom.hut 6233
+ginger.girl.hut ginger.girl.hut 1836
+ginger.girl.hut ginger.girl.hut 6331
+gilligan.crew.hut professor.hut 8446
+maryann.girl.hut gilligan.crew.hut 6670
+maryann.girl.hut gilligan.crew.hut 3451
+fileserver.copyroom.hut ginger.girl.hut 3080
+maryann.girl.hut skipper.crew.hut 7569
+ginger.girl.hut ginger.girl.hut 9253
+professor.hut fileserver.copyroom.hut 4453
+ginger.girl.hut professor.hut 991
+skipper.crew.hut laser3.copyroom.hut 6969
+laser3.copyroom.hut skipper.crew.hut 7307
+maryann.girl.hut skipper.crew.hut 8867
+ginger.girl.hut fileserver.copyroom.hut 7421
+maryann.girl.hut gilligan.crew.hut 8708
+ginger.girl.hut maryann.girl.hut 1238
+fileserver.copyroom.hut laser3.copyroom.hut 7809
+skipper.crew.hut gilligan.crew.hut 1720
+professor.hut gilligan.crew.hut 8778
+maryann.girl.hut professor.hut 3041
+fileserver.copyroom.hut professor.hut 147
+skipper.crew.hut gilligan.crew.hut 2937
+gilligan.crew.hut ginger.girl.hut 6048
+laser3.copyroom.hut gilligan.crew.hut 9906
+gilligan.crew.hut fileserver.copyroom.hut 1824
+professor.hut ginger.girl.hut 5375
+ginger.girl.hut ginger.girl.hut 3222
+gilligan.crew.hut professor.hut 2595
+maryann.girl.hut fileserver.copyroom.hut 6117
+skipper.crew.hut fileserver.copyroom.hut 8790
+fileserver.copyroom.hut laser3.copyroom.hut 4500
+laser3.copyroom.hut laser3.copyroom.hut 5847
+gilligan.crew.hut gilligan.crew.hut 6876
+skipper.crew.hut gilligan.crew.hut 7961
+fileserver.copyroom.hut ginger.girl.hut 894
+laser3.copyroom.hut ginger.girl.hut 8706
+laser3.copyroom.hut professor.hut 1969
+maryann.girl.hut professor.hut 9838
+skipper.crew.hut gilligan.crew.hut 5974
+maryann.girl.hut maryann.girl.hut 3048
+professor.hut maryann.girl.hut 3826
+professor.hut professor.hut 532
+maryann.girl.hut fileserver.copyroom.hut 9054
+ginger.girl.hut skipper.crew.hut 3586
+skipper.crew.hut professor.hut 783
+gilligan.crew.hut maryann.girl.hut 4555
+fileserver.copyroom.hut fileserver.copyroom.hut 1016
+maryann.girl.hut maryann.girl.hut 4030
+skipper.crew.hut ginger.girl.hut 5528
+maryann.girl.hut professor.hut 3360
+skipper.crew.hut maryann.girl.hut 9160
+ginger.girl.hut fileserver.copyroom.hut 2594
+skipper.crew.hut maryann.girl.hut 2694
+professor.hut gilligan.crew.hut 3267
+ginger.girl.hut skipper.crew.hut 316
+ginger.girl.hut ginger.girl.hut 8381
+professor.hut laser3.copyroom.hut 4994
+ginger.girl.hut gilligan.crew.hut 6274
+fileserver.copyroom.hut ginger.girl.hut 7279
+gilligan.crew.hut ginger.girl.hut 5089
+gilligan.crew.hut ginger.girl.hut 8113
+maryann.girl.hut gilligan.crew.hut 3246
+professor.hut fileserver.copyroom.hut 8241
+gilligan.crew.hut fileserver.copyroom.hut 3475
+maryann.girl.hut fileserver.copyroom.hut 7118
+maryann.girl.hut skipper.crew.hut 3026
+professor.hut maryann.girl.hut 5791
+maryann.girl.hut professor.hut 1924
+gilligan.crew.hut gilligan.crew.hut 7988
+professor.hut ginger.girl.hut 3802
+fileserver.copyroom.hut professor.hut 4230
+fileserver.copyroom.hut fileserver.copyroom.hut 9611
+fileserver.copyroom.hut gilligan.crew.hut 4843
+professor.hut maryann.girl.hut 3381
+professor.hut fileserver.copyroom.hut 7120
+fileserver.copyroom.hut maryann.girl.hut 7961
+fileserver.copyroom.hut professor.hut 7922
+skipper.crew.hut ginger.girl.hut 2139
+skipper.crew.hut maryann.girl.hut 1334
+laser3.copyroom.hut fileserver.copyroom.hut 8698
+laser3.copyroom.hut gilligan.crew.hut 6812
+fileserver.copyroom.hut laser3.copyroom.hut 8473
+maryann.girl.hut fileserver.copyroom.hut 7206
+laser3.copyroom.hut fileserver.copyroom.hut 5327
+skipper.crew.hut maryann.girl.hut 3920
+maryann.girl.hut maryann.girl.hut 9240
+fileserver.copyroom.hut fileserver.copyroom.hut 4252
+laser3.copyroom.hut gilligan.crew.hut 5931
+ginger.girl.hut professor.hut 1817
+laser3.copyroom.hut fileserver.copyroom.hut 2676
+professor.hut ginger.girl.hut 8139
+gilligan.crew.hut maryann.girl.hut 8938
+gilligan.crew.hut laser3.copyroom.hut 5745
+professor.hut fileserver.copyroom.hut 4526
+gilligan.crew.hut professor.hut 2001
+skipper.crew.hut laser3.copyroom.hut 7655
+professor.hut fileserver.copyroom.hut 5952
+maryann.girl.hut professor.hut 8947
+maryann.girl.hut skipper.crew.hut 5754
+fileserver.copyroom.hut fileserver.copyroom.hut 37
+ginger.girl.hut gilligan.crew.hut 9182
+gilligan.crew.hut gilligan.crew.hut 8425
+fileserver.copyroom.hut maryann.girl.hut 2854
+laser3.copyroom.hut ginger.girl.hut 5828
+maryann.girl.hut professor.hut 1018
+fileserver.copyroom.hut gilligan.crew.hut 4195
+professor.hut gilligan.crew.hut 9036
+gilligan.crew.hut maryann.girl.hut 6158
+skipper.crew.hut professor.hut 1108
+maryann.girl.hut skipper.crew.hut 3334
+laser3.copyroom.hut ginger.girl.hut 1294
+fileserver.copyroom.hut professor.hut 108
+fileserver.copyroom.hut gilligan.crew.hut 7660
+professor.hut skipper.crew.hut 6813
+laser3.copyroom.hut professor.hut 3948
+professor.hut professor.hut 7036
+gilligan.crew.hut professor.hut 958
+maryann.girl.hut skipper.crew.hut 5714
+gilligan.crew.hut ginger.girl.hut 8623
+ginger.girl.hut gilligan.crew.hut 2683
+professor.hut maryann.girl.hut 3780
+skipper.crew.hut fileserver.copyroom.hut 9980
+professor.hut maryann.girl.hut 4733
+gilligan.crew.hut fileserver.copyroom.hut 5514
+gilligan.crew.hut laser3.copyroom.hut 9123
+ginger.girl.hut professor.hut 5295
+skipper.crew.hut laser3.copyroom.hut 365
+gilligan.crew.hut professor.hut 8460
+maryann.girl.hut fileserver.copyroom.hut 8034
+laser3.copyroom.hut maryann.girl.hut 1779
+professor.hut laser3.copyroom.hut 863
+ginger.girl.hut skipper.crew.hut 502
+gilligan.crew.hut professor.hut 6928
+skipper.crew.hut maryann.girl.hut 1505
+professor.hut laser3.copyroom.hut 4842
+fileserver.copyroom.hut fileserver.copyroom.hut 4167
+fileserver.copyroom.hut skipper.crew.hut 9690
+skipper.crew.hut laser3.copyroom.hut 6563
+fileserver.copyroom.hut ginger.girl.hut 7626
+fileserver.copyroom.hut skipper.crew.hut 5422
+fileserver.copyroom.hut ginger.girl.hut 4125
+skipper.crew.hut ginger.girl.hut 2319
+fileserver.copyroom.hut gilligan.crew.hut 8198
+skipper.crew.hut professor.hut 4335
+gilligan.crew.hut skipper.crew.hut 9759
+skipper.crew.hut gilligan.crew.hut 1274
+skipper.crew.hut maryann.girl.hut 2843
+gilligan.crew.hut gilligan.crew.hut 449
+professor.hut ginger.girl.hut 8340
+maryann.girl.hut fileserver.copyroom.hut 6764
+skipper.crew.hut maryann.girl.hut 1749
+skipper.crew.hut maryann.girl.hut 9923
+maryann.girl.hut fileserver.copyroom.hut 4127
+fileserver.copyroom.hut maryann.girl.hut 5696
+laser3.copyroom.hut ginger.girl.hut 1404
+maryann.girl.hut maryann.girl.hut 159
+gilligan.crew.hut maryann.girl.hut 6559
+ginger.girl.hut fileserver.copyroom.hut 9274
+maryann.girl.hut skipper.crew.hut 7830
+skipper.crew.hut fileserver.copyroom.hut 6616
+gilligan.crew.hut laser3.copyroom.hut 7475
+skipper.crew.hut laser3.copyroom.hut 6788
+ginger.girl.hut skipper.crew.hut 3166
+gilligan.crew.hut fileserver.copyroom.hut 9895
+laser3.copyroom.hut professor.hut 1637
+laser3.copyroom.hut professor.hut 1974
+laser3.copyroom.hut maryann.girl.hut 240
+fileserver.copyroom.hut skipper.crew.hut 4533
+ginger.girl.hut gilligan.crew.hut 6917
+gilligan.crew.hut maryann.girl.hut 4370
+skipper.crew.hut ginger.girl.hut 8351
+maryann.girl.hut maryann.girl.hut 4351
+ginger.girl.hut skipper.crew.hut 6826
+fileserver.copyroom.hut skipper.crew.hut 9840
+professor.hut skipper.crew.hut 5109
+skipper.crew.hut professor.hut 9202
+fileserver.copyroom.hut gilligan.crew.hut 6742
+skipper.crew.hut laser3.copyroom.hut 8474
+gilligan.crew.hut fileserver.copyroom.hut 7815
+ginger.girl.hut maryann.girl.hut 464
+ginger.girl.hut skipper.crew.hut 8580
+ginger.girl.hut skipper.crew.hut 3433
+maryann.girl.hut skipper.crew.hut 7295
+maryann.girl.hut maryann.girl.hut 5246
+professor.hut ginger.girl.hut 183
+fileserver.copyroom.hut gilligan.crew.hut 7700
+skipper.crew.hut fileserver.copyroom.hut 3500
+maryann.girl.hut maryann.girl.hut 3758
+professor.hut professor.hut 2305
+gilligan.crew.hut ginger.girl.hut 4618
+laser3.copyroom.hut skipper.crew.hut 6487
+laser3.copyroom.hut professor.hut 9217
+gilligan.crew.hut maryann.girl.hut 922
+ginger.girl.hut professor.hut 2811
+gilligan.crew.hut maryann.girl.hut 7007
+maryann.girl.hut laser3.copyroom.hut 2752
+professor.hut skipper.crew.hut 7340
+fileserver.copyroom.hut gilligan.crew.hut 2349
+fileserver.copyroom.hut ginger.girl.hut 5905
+maryann.girl.hut maryann.girl.hut 6480
+gilligan.crew.hut professor.hut 5984
+ginger.girl.hut gilligan.crew.hut 699
+gilligan.crew.hut skipper.crew.hut 1564
+skipper.crew.hut gilligan.crew.hut 9956
+skipper.crew.hut ginger.girl.hut 6252
+skipper.crew.hut professor.hut 8175
+maryann.girl.hut gilligan.crew.hut 4886
+laser3.copyroom.hut laser3.copyroom.hut 8919
+ginger.girl.hut gilligan.crew.hut 2837
+ginger.girl.hut fileserver.copyroom.hut 644
+maryann.girl.hut ginger.girl.hut 4620
+maryann.girl.hut gilligan.crew.hut 353
+maryann.girl.hut ginger.girl.hut 9514
+fileserver.copyroom.hut maryann.girl.hut 4635
+gilligan.crew.hut maryann.girl.hut 4756
+professor.hut professor.hut 5572
+laser3.copyroom.hut professor.hut 6813
+fileserver.copyroom.hut professor.hut 7532
+fileserver.copyroom.hut fileserver.copyroom.hut 5033
+ginger.girl.hut ginger.girl.hut 9036
+professor.hut ginger.girl.hut 9803
+skipper.crew.hut maryann.girl.hut 4209
+skipper.crew.hut laser3.copyroom.hut 5157
+professor.hut skipper.crew.hut 7044
+professor.hut gilligan.crew.hut 517
+skipper.crew.hut laser3.copyroom.hut 5402
+gilligan.crew.hut gilligan.crew.hut 175
+gilligan.crew.hut fileserver.copyroom.hut 8894
+fileserver.copyroom.hut laser3.copyroom.hut 532
+skipper.crew.hut laser3.copyroom.hut 1852
+maryann.girl.hut skipper.crew.hut 5469
+laser3.copyroom.hut ginger.girl.hut 6776
+gilligan.crew.hut maryann.girl.hut 4562
+maryann.girl.hut fileserver.copyroom.hut 9272
+professor.hut gilligan.crew.hut 4326
+skipper.crew.hut fileserver.copyroom.hut 6945
+gilligan.crew.hut professor.hut 765
+professor.hut ginger.girl.hut 504
+fileserver.copyroom.hut fileserver.copyroom.hut 3155
+laser3.copyroom.hut skipper.crew.hut 7833
+ginger.girl.hut skipper.crew.hut 8892
+ginger.girl.hut ginger.girl.hut 3791
+fileserver.copyroom.hut professor.hut 522
+fileserver.copyroom.hut maryann.girl.hut 3953
+ginger.girl.hut ginger.girl.hut 3402
+fileserver.copyroom.hut gilligan.crew.hut 6231
+ginger.girl.hut skipper.crew.hut 7643
+gilligan.crew.hut professor.hut 3007
+maryann.girl.hut ginger.girl.hut 6016
+laser3.copyroom.hut laser3.copyroom.hut 3733
+laser3.copyroom.hut gilligan.crew.hut 3415
+fileserver.copyroom.hut professor.hut 6578
+ginger.girl.hut fileserver.copyroom.hut 5443
+maryann.girl.hut laser3.copyroom.hut 7866
+maryann.girl.hut ginger.girl.hut 4959
+fileserver.copyroom.hut laser3.copyroom.hut 8483
+ginger.girl.hut gilligan.crew.hut 1746
+professor.hut ginger.girl.hut 3779
+skipper.crew.hut maryann.girl.hut 868
+fileserver.copyroom.hut fileserver.copyroom.hut 4229
+maryann.girl.hut ginger.girl.hut 8276
+professor.hut gilligan.crew.hut 5185
+professor.hut gilligan.crew.hut 4496
+fileserver.copyroom.hut gilligan.crew.hut 7310
+skipper.crew.hut skipper.crew.hut 5487
+fileserver.copyroom.hut maryann.girl.hut 3430
+professor.hut gilligan.crew.hut 6800
+maryann.girl.hut skipper.crew.hut 4238
+fileserver.copyroom.hut maryann.girl.hut 2178
+fileserver.copyroom.hut skipper.crew.hut 9705
+maryann.girl.hut skipper.crew.hut 5241
+maryann.girl.hut ginger.girl.hut 8265
+laser3.copyroom.hut fileserver.copyroom.hut 787
+laser3.copyroom.hut laser3.copyroom.hut 7164
+gilligan.crew.hut laser3.copyroom.hut 7304
+professor.hut gilligan.crew.hut 8824
+fileserver.copyroom.hut ginger.girl.hut 2778
+ginger.girl.hut gilligan.crew.hut 3266
+fileserver.copyroom.hut fileserver.copyroom.hut 4361
+gilligan.crew.hut fileserver.copyroom.hut 8558
+gilligan.crew.hut maryann.girl.hut 7648
+maryann.girl.hut professor.hut 216
+skipper.crew.hut gilligan.crew.hut 6252
+professor.hut maryann.girl.hut 5586
+laser3.copyroom.hut laser3.copyroom.hut 7829
+professor.hut ginger.girl.hut 1465
+laser3.copyroom.hut laser3.copyroom.hut 6339
+fileserver.copyroom.hut skipper.crew.hut 5047
+skipper.crew.hut professor.hut 1158
+ginger.girl.hut laser3.copyroom.hut 6546
+laser3.copyroom.hut professor.hut 5482
+fileserver.copyroom.hut gilligan.crew.hut 20
+laser3.copyroom.hut gilligan.crew.hut 563
+fileserver.copyroom.hut ginger.girl.hut 1976
+professor.hut professor.hut 5828
+maryann.girl.hut laser3.copyroom.hut 8364
+professor.hut ginger.girl.hut 6177
+skipper.crew.hut fileserver.copyroom.hut 7655
+laser3.copyroom.hut maryann.girl.hut 8209
+maryann.girl.hut professor.hut 3701
+laser3.copyroom.hut professor.hut 903
+laser3.copyroom.hut ginger.girl.hut 1554
+ginger.girl.hut maryann.girl.hut 2029
+skipper.crew.hut fileserver.copyroom.hut 7466
+gilligan.crew.hut maryann.girl.hut 5224
+laser3.copyroom.hut ginger.girl.hut 8993
+professor.hut maryann.girl.hut 2583
+maryann.girl.hut skipper.crew.hut 5391
+fileserver.copyroom.hut laser3.copyroom.hut 8071
+laser3.copyroom.hut skipper.crew.hut 371
+skipper.crew.hut maryann.girl.hut 6782
+laser3.copyroom.hut laser3.copyroom.hut 8700
+laser3.copyroom.hut laser3.copyroom.hut 6279
+laser3.copyroom.hut skipper.crew.hut 4684
+ginger.girl.hut maryann.girl.hut 5224
+ginger.girl.hut ginger.girl.hut 4351
+maryann.girl.hut skipper.crew.hut 7546
+laser3.copyroom.hut ginger.girl.hut 7978
+skipper.crew.hut laser3.copyroom.hut 2533
+gilligan.crew.hut gilligan.crew.hut 3497
+fileserver.copyroom.hut ginger.girl.hut 8981
+skipper.crew.hut ginger.girl.hut 1214
+laser3.copyroom.hut skipper.crew.hut 2222
+professor.hut laser3.copyroom.hut 5647
+professor.hut skipper.crew.hut 1931
+gilligan.crew.hut maryann.girl.hut 1889
+maryann.girl.hut gilligan.crew.hut 137
+fileserver.copyroom.hut ginger.girl.hut 2225
+skipper.crew.hut ginger.girl.hut 1681
+maryann.girl.hut maryann.girl.hut 6625
+ginger.girl.hut fileserver.copyroom.hut 7374
+skipper.crew.hut maryann.girl.hut 6116
+laser3.copyroom.hut laser3.copyroom.hut 9101
+laser3.copyroom.hut fileserver.copyroom.hut 7343
+laser3.copyroom.hut maryann.girl.hut 9786
+gilligan.crew.hut gilligan.crew.hut 8655
+ginger.girl.hut gilligan.crew.hut 7908
+gilligan.crew.hut gilligan.crew.hut 3537
+professor.hut gilligan.crew.hut 4458
+fileserver.copyroom.hut gilligan.crew.hut 7057
+fileserver.copyroom.hut fileserver.copyroom.hut 1976
+maryann.girl.hut ginger.girl.hut 5327
+professor.hut laser3.copyroom.hut 1515
+fileserver.copyroom.hut skipper.crew.hut 9792
+laser3.copyroom.hut gilligan.crew.hut 9185
+skipper.crew.hut skipper.crew.hut 2083
+gilligan.crew.hut ginger.girl.hut 2019
+fileserver.copyroom.hut fileserver.copyroom.hut 5458
+gilligan.crew.hut maryann.girl.hut 2448
+gilligan.crew.hut ginger.girl.hut 5418
+maryann.girl.hut laser3.copyroom.hut 4478
+fileserver.copyroom.hut ginger.girl.hut 9569
+fileserver.copyroom.hut laser3.copyroom.hut 1613
+professor.hut skipper.crew.hut 2507
+maryann.girl.hut fileserver.copyroom.hut 5526
+gilligan.crew.hut skipper.crew.hut 9828
+gilligan.crew.hut ginger.girl.hut 7340
+fileserver.copyroom.hut gilligan.crew.hut 396
+maryann.girl.hut skipper.crew.hut 6665
+professor.hut skipper.crew.hut 2155
+maryann.girl.hut laser3.copyroom.hut 6362
+gilligan.crew.hut skipper.crew.hut 6814
+fileserver.copyroom.hut laser3.copyroom.hut 2811
+laser3.copyroom.hut maryann.girl.hut 9370
+skipper.crew.hut skipper.crew.hut 6841
+maryann.girl.hut skipper.crew.hut 916
+maryann.girl.hut ginger.girl.hut 8912
+laser3.copyroom.hut ginger.girl.hut 1180
+maryann.girl.hut professor.hut 9100
+fileserver.copyroom.hut professor.hut 4399
+gilligan.crew.hut professor.hut 4473
+fileserver.copyroom.hut skipper.crew.hut 6300
+laser3.copyroom.hut skipper.crew.hut 5581
+gilligan.crew.hut gilligan.crew.hut 795
+skipper.crew.hut professor.hut 8873
+professor.hut skipper.crew.hut 5343
+professor.hut maryann.girl.hut 472
+laser3.copyroom.hut maryann.girl.hut 8089
+maryann.girl.hut fileserver.copyroom.hut 1352
+gilligan.crew.hut laser3.copyroom.hut 715
+skipper.crew.hut laser3.copyroom.hut 3441
+ginger.girl.hut ginger.girl.hut 6708
+fileserver.copyroom.hut laser3.copyroom.hut 2170
+laser3.copyroom.hut ginger.girl.hut 8297
+laser3.copyroom.hut professor.hut 8995
+maryann.girl.hut laser3.copyroom.hut 4455
+professor.hut ginger.girl.hut 6316
+maryann.girl.hut gilligan.crew.hut 5331
+ginger.girl.hut fileserver.copyroom.hut 7307
+skipper.crew.hut skipper.crew.hut 213
+ginger.girl.hut skipper.crew.hut 9160
+fileserver.copyroom.hut skipper.crew.hut 1710
+skipper.crew.hut ginger.girl.hut 9209
+maryann.girl.hut ginger.girl.hut 5628
+fileserver.copyroom.hut skipper.crew.hut 7405
+professor.hut fileserver.copyroom.hut 3874
+gilligan.crew.hut laser3.copyroom.hut 6269
+laser3.copyroom.hut gilligan.crew.hut 5111
+professor.hut maryann.girl.hut 6652
+maryann.girl.hut gilligan.crew.hut 4759
+maryann.girl.hut gilligan.crew.hut 1564
+skipper.crew.hut skipper.crew.hut 9149
+gilligan.crew.hut professor.hut 3899
+maryann.girl.hut skipper.crew.hut 1736
+professor.hut gilligan.crew.hut 1257
+skipper.crew.hut professor.hut 9210
+gilligan.crew.hut gilligan.crew.hut 4526
+maryann.girl.hut skipper.crew.hut 1140
+professor.hut ginger.girl.hut 6330
+ginger.girl.hut skipper.crew.hut 7646
+gilligan.crew.hut fileserver.copyroom.hut 6044
+professor.hut gilligan.crew.hut 814
+professor.hut gilligan.crew.hut 5781
+fileserver.copyroom.hut gilligan.crew.hut 6460
+ginger.girl.hut gilligan.crew.hut 7468
+maryann.girl.hut maryann.girl.hut 5939
+skipper.crew.hut ginger.girl.hut 1869
+ginger.girl.hut maryann.girl.hut 1284
+ginger.girl.hut gilligan.crew.hut 3068
+gilligan.crew.hut maryann.girl.hut 2150
+maryann.girl.hut skipper.crew.hut 7298
+laser3.copyroom.hut fileserver.copyroom.hut 3397
+ginger.girl.hut professor.hut 2011
+laser3.copyroom.hut gilligan.crew.hut 9413
+fileserver.copyroom.hut laser3.copyroom.hut 7787
+skipper.crew.hut ginger.girl.hut 3080
+skipper.crew.hut gilligan.crew.hut 2655
+fileserver.copyroom.hut laser3.copyroom.hut 208
+skipper.crew.hut ginger.girl.hut 8781
+professor.hut gilligan.crew.hut 2623
+fileserver.copyroom.hut ginger.girl.hut 8743
+gilligan.crew.hut ginger.girl.hut 2839
+fileserver.copyroom.hut laser3.copyroom.hut 5886
+skipper.crew.hut skipper.crew.hut 226
+maryann.girl.hut skipper.crew.hut 8340
+fileserver.copyroom.hut ginger.girl.hut 1169
+gilligan.crew.hut maryann.girl.hut 7304
+professor.hut ginger.girl.hut 5838
+professor.hut skipper.crew.hut 8864
+maryann.girl.hut laser3.copyroom.hut 3212
+fileserver.copyroom.hut fileserver.copyroom.hut 6421
+laser3.copyroom.hut maryann.girl.hut 3533
+skipper.crew.hut maryann.girl.hut 9176
+maryann.girl.hut gilligan.crew.hut 4707
+professor.hut professor.hut 877
+skipper.crew.hut ginger.girl.hut 9660
+skipper.crew.hut fileserver.copyroom.hut 3337
+professor.hut laser3.copyroom.hut 8511
+skipper.crew.hut skipper.crew.hut 3923
+professor.hut maryann.girl.hut 2084
+professor.hut skipper.crew.hut 8697
+fileserver.copyroom.hut professor.hut 4167
+ginger.girl.hut skipper.crew.hut 6375
+professor.hut skipper.crew.hut 9118
+ginger.girl.hut professor.hut 1573
+gilligan.crew.hut ginger.girl.hut 3774
+laser3.copyroom.hut gilligan.crew.hut 5817
+maryann.girl.hut ginger.girl.hut 1007
+ginger.girl.hut ginger.girl.hut 7483
+fileserver.copyroom.hut ginger.girl.hut 3993
+maryann.girl.hut professor.hut 205
+maryann.girl.hut fileserver.copyroom.hut 6277
+gilligan.crew.hut maryann.girl.hut 5009
+professor.hut gilligan.crew.hut 51
+professor.hut laser3.copyroom.hut 8187
+fileserver.copyroom.hut skipper.crew.hut 7129
+skipper.crew.hut skipper.crew.hut 5656
+ginger.girl.hut professor.hut 5610
+maryann.girl.hut gilligan.crew.hut 9353
+gilligan.crew.hut gilligan.crew.hut 4997
+gilligan.crew.hut gilligan.crew.hut 9043
+maryann.girl.hut fileserver.copyroom.hut 3661
+skipper.crew.hut professor.hut 6404
+fileserver.copyroom.hut fileserver.copyroom.hut 9972
+professor.hut maryann.girl.hut 8312
+laser3.copyroom.hut skipper.crew.hut 3724
+ginger.girl.hut laser3.copyroom.hut 3605
+ginger.girl.hut maryann.girl.hut 7283
+fileserver.copyroom.hut professor.hut 4549
+ginger.girl.hut professor.hut 1912
+professor.hut maryann.girl.hut 3811
+laser3.copyroom.hut professor.hut 4275
+skipper.crew.hut laser3.copyroom.hut 8272
+gilligan.crew.hut fileserver.copyroom.hut 4287
+gilligan.crew.hut fileserver.copyroom.hut 107
+ginger.girl.hut laser3.copyroom.hut 2081
+gilligan.crew.hut fileserver.copyroom.hut 7691
+gilligan.crew.hut maryann.girl.hut 3668
+laser3.copyroom.hut maryann.girl.hut 9387
+maryann.girl.hut skipper.crew.hut 4821
+skipper.crew.hut ginger.girl.hut 6621
+skipper.crew.hut laser3.copyroom.hut 2990
+fileserver.copyroom.hut professor.hut 8995
+fileserver.copyroom.hut skipper.crew.hut 3716
+gilligan.crew.hut ginger.girl.hut 3902
+skipper.crew.hut skipper.crew.hut 8762
+fileserver.copyroom.hut fileserver.copyroom.hut 5208
+fileserver.copyroom.hut skipper.crew.hut 4904
+gilligan.crew.hut professor.hut 2210
+gilligan.crew.hut professor.hut 9277
+ginger.girl.hut gilligan.crew.hut 3531
+professor.hut professor.hut 4444
+skipper.crew.hut maryann.girl.hut 8731
+maryann.girl.hut gilligan.crew.hut 9331
+ginger.girl.hut fileserver.copyroom.hut 6588
+ginger.girl.hut laser3.copyroom.hut 6279
+maryann.girl.hut maryann.girl.hut 6793
+professor.hut skipper.crew.hut 5403
+laser3.copyroom.hut skipper.crew.hut 124
+ginger.girl.hut ginger.girl.hut 3810
+skipper.crew.hut gilligan.crew.hut 4812
+fileserver.copyroom.hut gilligan.crew.hut 8657
+fileserver.copyroom.hut skipper.crew.hut 2058
+fileserver.copyroom.hut laser3.copyroom.hut 861
+laser3.copyroom.hut ginger.girl.hut 2545
+gilligan.crew.hut skipper.crew.hut 3051
+professor.hut skipper.crew.hut 2734
+gilligan.crew.hut laser3.copyroom.hut 6623
+ginger.girl.hut professor.hut 421
+fileserver.copyroom.hut gilligan.crew.hut 9057
+skipper.crew.hut ginger.girl.hut 6800
+ginger.girl.hut maryann.girl.hut 2804
+ginger.girl.hut fileserver.copyroom.hut 3565
+laser3.copyroom.hut ginger.girl.hut 1422
+professor.hut ginger.girl.hut 2428
+ginger.girl.hut skipper.crew.hut 1505
+ginger.girl.hut skipper.crew.hut 990
+professor.hut gilligan.crew.hut 9736
+ginger.girl.hut fileserver.copyroom.hut 1786
+laser3.copyroom.hut laser3.copyroom.hut 3910
+laser3.copyroom.hut skipper.crew.hut 2432
+maryann.girl.hut ginger.girl.hut 568
+ginger.girl.hut skipper.crew.hut 6373
+maryann.girl.hut maryann.girl.hut 2925
+gilligan.crew.hut maryann.girl.hut 551
+professor.hut skipper.crew.hut 8339
+skipper.crew.hut skipper.crew.hut 1718
+professor.hut gilligan.crew.hut 5550
+professor.hut fileserver.copyroom.hut 7102
+ginger.girl.hut gilligan.crew.hut 2054
+laser3.copyroom.hut ginger.girl.hut 1206
+fileserver.copyroom.hut professor.hut 1658
+professor.hut laser3.copyroom.hut 5362
+skipper.crew.hut skipper.crew.hut 6214
+skipper.crew.hut skipper.crew.hut 7854
+fileserver.copyroom.hut ginger.girl.hut 6464
+maryann.girl.hut laser3.copyroom.hut 2297
+fileserver.copyroom.hut ginger.girl.hut 5721
+skipper.crew.hut ginger.girl.hut 3589
+gilligan.crew.hut skipper.crew.hut 1467
+laser3.copyroom.hut ginger.girl.hut 6940
+fileserver.copyroom.hut gilligan.crew.hut 7072
+laser3.copyroom.hut fileserver.copyroom.hut 7052
+laser3.copyroom.hut laser3.copyroom.hut 7938
+fileserver.copyroom.hut gilligan.crew.hut 3095
+professor.hut professor.hut 6525
+gilligan.crew.hut fileserver.copyroom.hut 5808
+fileserver.copyroom.hut skipper.crew.hut 3647
+ginger.girl.hut ginger.girl.hut 6385
+skipper.crew.hut laser3.copyroom.hut 1891
+maryann.girl.hut ginger.girl.hut 5709
+professor.hut skipper.crew.hut 5884
+laser3.copyroom.hut maryann.girl.hut 6701
+laser3.copyroom.hut professor.hut 9016
+fileserver.copyroom.hut fileserver.copyroom.hut 6508
+maryann.girl.hut skipper.crew.hut 5886
+fileserver.copyroom.hut gilligan.crew.hut 6216
+laser3.copyroom.hut professor.hut 9450
+professor.hut skipper.crew.hut 6896
+professor.hut maryann.girl.hut 3388
+professor.hut professor.hut 1296
+ginger.girl.hut skipper.crew.hut 9053
+gilligan.crew.hut ginger.girl.hut 6070
+professor.hut laser3.copyroom.hut 7539
+professor.hut maryann.girl.hut 9986
+fileserver.copyroom.hut fileserver.copyroom.hut 1933
+ginger.girl.hut ginger.girl.hut 723
+fileserver.copyroom.hut skipper.crew.hut 7162
+fileserver.copyroom.hut gilligan.crew.hut 8513
+gilligan.crew.hut laser3.copyroom.hut 2846
+ginger.girl.hut gilligan.crew.hut 2778
+gilligan.crew.hut fileserver.copyroom.hut 143
+maryann.girl.hut professor.hut 3657
+maryann.girl.hut professor.hut 8438
+maryann.girl.hut maryann.girl.hut 1944
+skipper.crew.hut professor.hut 7277
+gilligan.crew.hut maryann.girl.hut 8375
+skipper.crew.hut skipper.crew.hut 2331
+fileserver.copyroom.hut fileserver.copyroom.hut 9683
+professor.hut ginger.girl.hut 9514
+laser3.copyroom.hut laser3.copyroom.hut 6122
+maryann.girl.hut professor.hut 6162
+maryann.girl.hut laser3.copyroom.hut 4953
+laser3.copyroom.hut gilligan.crew.hut 1288
+maryann.girl.hut maryann.girl.hut 2558
+fileserver.copyroom.hut ginger.girl.hut 3215
+fileserver.copyroom.hut professor.hut 3085
+ginger.girl.hut maryann.girl.hut 4353
+ginger.girl.hut skipper.crew.hut 9361
+ginger.girl.hut laser3.copyroom.hut 9312
+gilligan.crew.hut maryann.girl.hut 4636
+fileserver.copyroom.hut ginger.girl.hut 1667
+professor.hut fileserver.copyroom.hut 3513
+skipper.crew.hut professor.hut 7851
+ginger.girl.hut maryann.girl.hut 1726
+skipper.crew.hut maryann.girl.hut 5711
+professor.hut ginger.girl.hut 1501
+laser3.copyroom.hut fileserver.copyroom.hut 9590
+gilligan.crew.hut ginger.girl.hut 2076
+ginger.girl.hut skipper.crew.hut 9103
+skipper.crew.hut gilligan.crew.hut 3372
+professor.hut professor.hut 9306
+professor.hut maryann.girl.hut 1123
+fileserver.copyroom.hut professor.hut 2075
+laser3.copyroom.hut fileserver.copyroom.hut 8518
+ginger.girl.hut maryann.girl.hut 9258
+professor.hut gilligan.crew.hut 6824
+professor.hut fileserver.copyroom.hut 3860
+gilligan.crew.hut laser3.copyroom.hut 7613
+gilligan.crew.hut skipper.crew.hut 5666
+skipper.crew.hut laser3.copyroom.hut 64
+ginger.girl.hut maryann.girl.hut 6189
+professor.hut fileserver.copyroom.hut 2480
+laser3.copyroom.hut gilligan.crew.hut 8461
+gilligan.crew.hut professor.hut 2305
+fileserver.copyroom.hut fileserver.copyroom.hut 2949
+ginger.girl.hut fileserver.copyroom.hut 4225
+gilligan.crew.hut ginger.girl.hut 4725
+gilligan.crew.hut maryann.girl.hut 5973
+fileserver.copyroom.hut professor.hut 1977
+fileserver.copyroom.hut fileserver.copyroom.hut 6069
+professor.hut skipper.crew.hut 2530
+ginger.girl.hut skipper.crew.hut 8044
+fileserver.copyroom.hut fileserver.copyroom.hut 2341
+professor.hut fileserver.copyroom.hut 9544
+skipper.crew.hut gilligan.crew.hut 8724
+laser3.copyroom.hut gilligan.crew.hut 2824
+maryann.girl.hut fileserver.copyroom.hut 3164
+laser3.copyroom.hut fileserver.copyroom.hut 4668
+maryann.girl.hut professor.hut 2517
+laser3.copyroom.hut gilligan.crew.hut 1654
+fileserver.copyroom.hut fileserver.copyroom.hut 914
+ginger.girl.hut maryann.girl.hut 7056
+fileserver.copyroom.hut maryann.girl.hut 6826
+gilligan.crew.hut professor.hut 9355
+ginger.girl.hut gilligan.crew.hut 9329
+fileserver.copyroom.hut fileserver.copyroom.hut 8504
+laser3.copyroom.hut gilligan.crew.hut 3143
+ginger.girl.hut maryann.girl.hut 4969
+skipper.crew.hut skipper.crew.hut 6155
+gilligan.crew.hut maryann.girl.hut 5298
+fileserver.copyroom.hut fileserver.copyroom.hut 9385
+professor.hut laser3.copyroom.hut 6659
+laser3.copyroom.hut laser3.copyroom.hut 228
+professor.hut professor.hut 8250
+fileserver.copyroom.hut fileserver.copyroom.hut 6745
+gilligan.crew.hut gilligan.crew.hut 2366
+ginger.girl.hut laser3.copyroom.hut 984
+skipper.crew.hut professor.hut 5457
+professor.hut professor.hut 2952
+laser3.copyroom.hut skipper.crew.hut 2707
+professor.hut professor.hut 5233
+professor.hut maryann.girl.hut 8096
+skipper.crew.hut skipper.crew.hut 9607
+ginger.girl.hut maryann.girl.hut 5145
+laser3.copyroom.hut professor.hut 6281
+laser3.copyroom.hut professor.hut 8480
+fileserver.copyroom.hut gilligan.crew.hut 8236
+maryann.girl.hut professor.hut 7015
+professor.hut maryann.girl.hut 1705
+ginger.girl.hut ginger.girl.hut 563
+gilligan.crew.hut fileserver.copyroom.hut 8347
+skipper.crew.hut laser3.copyroom.hut 3845
+laser3.copyroom.hut gilligan.crew.hut 4899
+professor.hut skipper.crew.hut 5384
+fileserver.copyroom.hut laser3.copyroom.hut 4976
+gilligan.crew.hut skipper.crew.hut 1566
+professor.hut skipper.crew.hut 4026
+gilligan.crew.hut professor.hut 7326
+ginger.girl.hut fileserver.copyroom.hut 8696
+gilligan.crew.hut ginger.girl.hut 589
+gilligan.crew.hut fileserver.copyroom.hut 50
+ginger.girl.hut fileserver.copyroom.hut 3007
+laser3.copyroom.hut maryann.girl.hut 7827
+skipper.crew.hut professor.hut 4106
+fileserver.copyroom.hut fileserver.copyroom.hut 3833
+laser3.copyroom.hut laser3.copyroom.hut 9947
+gilligan.crew.hut maryann.girl.hut 7174
+ginger.girl.hut ginger.girl.hut 5939
+fileserver.copyroom.hut maryann.girl.hut 4022
+maryann.girl.hut gilligan.crew.hut 705
+fileserver.copyroom.hut professor.hut 6008
+maryann.girl.hut ginger.girl.hut 7195
+maryann.girl.hut skipper.crew.hut 1795
+gilligan.crew.hut maryann.girl.hut 3786
+maryann.girl.hut gilligan.crew.hut 7723
+ginger.girl.hut skipper.crew.hut 9327
+professor.hut professor.hut 2165
+maryann.girl.hut fileserver.copyroom.hut 1430
+maryann.girl.hut laser3.copyroom.hut 6438
+maryann.girl.hut professor.hut 814
+maryann.girl.hut skipper.crew.hut 1964
+skipper.crew.hut laser3.copyroom.hut 7384
+maryann.girl.hut professor.hut 356
+maryann.girl.hut laser3.copyroom.hut 8887
+skipper.crew.hut professor.hut 2027
+laser3.copyroom.hut ginger.girl.hut 3265
+laser3.copyroom.hut gilligan.crew.hut 5634
+maryann.girl.hut maryann.girl.hut 7928
+skipper.crew.hut professor.hut 1417
+laser3.copyroom.hut ginger.girl.hut 8319
+fileserver.copyroom.hut maryann.girl.hut 7349
+skipper.crew.hut gilligan.crew.hut 5474
+professor.hut fileserver.copyroom.hut 8381
+fileserver.copyroom.hut ginger.girl.hut 4777
+professor.hut fileserver.copyroom.hut 9501
+skipper.crew.hut ginger.girl.hut 1221
+ginger.girl.hut professor.hut 436
+fileserver.copyroom.hut laser3.copyroom.hut 4968
+laser3.copyroom.hut fileserver.copyroom.hut 4387
+gilligan.crew.hut maryann.girl.hut 6796
+laser3.copyroom.hut maryann.girl.hut 1705
+fileserver.copyroom.hut gilligan.crew.hut 9602
+skipper.crew.hut professor.hut 2545
+professor.hut ginger.girl.hut 5190
+skipper.crew.hut laser3.copyroom.hut 2069
+gilligan.crew.hut professor.hut 1686
+gilligan.crew.hut professor.hut 9374
+laser3.copyroom.hut gilligan.crew.hut 927
+maryann.girl.hut professor.hut 394
+laser3.copyroom.hut professor.hut 2302
+gilligan.crew.hut skipper.crew.hut 8790
+professor.hut professor.hut 979
+professor.hut laser3.copyroom.hut 4317
+gilligan.crew.hut professor.hut 2706
+skipper.crew.hut fileserver.copyroom.hut 400
+professor.hut gilligan.crew.hut 3955
+maryann.girl.hut professor.hut 5702
+professor.hut gilligan.crew.hut 8964
+maryann.girl.hut gilligan.crew.hut 5943
+gilligan.crew.hut maryann.girl.hut 1657
+gilligan.crew.hut maryann.girl.hut 3627
+fileserver.copyroom.hut ginger.girl.hut 7522
+skipper.crew.hut maryann.girl.hut 6548
+gilligan.crew.hut professor.hut 4267
+gilligan.crew.hut gilligan.crew.hut 2996
+ginger.girl.hut maryann.girl.hut 2054
+maryann.girl.hut laser3.copyroom.hut 1996
+gilligan.crew.hut ginger.girl.hut 3248
+fileserver.copyroom.hut ginger.girl.hut 4699
+laser3.copyroom.hut skipper.crew.hut 7695
+professor.hut ginger.girl.hut 864
+laser3.copyroom.hut ginger.girl.hut 5837
+professor.hut fileserver.copyroom.hut 3483
+fileserver.copyroom.hut professor.hut 9776
+laser3.copyroom.hut skipper.crew.hut 9566
+professor.hut laser3.copyroom.hut 1508
+professor.hut laser3.copyroom.hut 8891
+laser3.copyroom.hut skipper.crew.hut 1853
+professor.hut maryann.girl.hut 3857
+fileserver.copyroom.hut gilligan.crew.hut 4951
+skipper.crew.hut skipper.crew.hut 7055
+fileserver.copyroom.hut professor.hut 5660
+skipper.crew.hut ginger.girl.hut 7808
+laser3.copyroom.hut fileserver.copyroom.hut 6387
+gilligan.crew.hut professor.hut 1711
+skipper.crew.hut fileserver.copyroom.hut 2183
+maryann.girl.hut fileserver.copyroom.hut 8465
+skipper.crew.hut maryann.girl.hut 9129
+professor.hut ginger.girl.hut 9334
+maryann.girl.hut skipper.crew.hut 4204
+professor.hut ginger.girl.hut 4727
+ginger.girl.hut skipper.crew.hut 5242
+maryann.girl.hut maryann.girl.hut 9060
+gilligan.crew.hut maryann.girl.hut 1962
+professor.hut gilligan.crew.hut 3295
+ginger.girl.hut ginger.girl.hut 3377
+fileserver.copyroom.hut ginger.girl.hut 4363
+professor.hut laser3.copyroom.hut 3209
+professor.hut laser3.copyroom.hut 4115
+maryann.girl.hut fileserver.copyroom.hut 2127
+skipper.crew.hut professor.hut 1937
+ginger.girl.hut skipper.crew.hut 9545
+ginger.girl.hut gilligan.crew.hut 398
+maryann.girl.hut skipper.crew.hut 7615
+maryann.girl.hut maryann.girl.hut 8702
+maryann.girl.hut ginger.girl.hut 2971
+skipper.crew.hut ginger.girl.hut 1210
+gilligan.crew.hut gilligan.crew.hut 4011
+professor.hut maryann.girl.hut 390
+fileserver.copyroom.hut laser3.copyroom.hut 9858
+maryann.girl.hut laser3.copyroom.hut 6614
+ginger.girl.hut fileserver.copyroom.hut 9921
+skipper.crew.hut skipper.crew.hut 2923
+professor.hut professor.hut 6655
+skipper.crew.hut fileserver.copyroom.hut 9443
+maryann.girl.hut laser3.copyroom.hut 5430
+fileserver.copyroom.hut laser3.copyroom.hut 9421
+laser3.copyroom.hut skipper.crew.hut 9696
+laser3.copyroom.hut gilligan.crew.hut 3813
+gilligan.crew.hut laser3.copyroom.hut 3250
+professor.hut maryann.girl.hut 2687
+maryann.girl.hut fileserver.copyroom.hut 5068
+ginger.girl.hut fileserver.copyroom.hut 7399
+fileserver.copyroom.hut professor.hut 933
+gilligan.crew.hut laser3.copyroom.hut 2467
+gilligan.crew.hut laser3.copyroom.hut 8132
+professor.hut ginger.girl.hut 3033
+gilligan.crew.hut professor.hut 8513
+gilligan.crew.hut fileserver.copyroom.hut 3712
+gilligan.crew.hut gilligan.crew.hut 2622
+gilligan.crew.hut professor.hut 246
+laser3.copyroom.hut laser3.copyroom.hut 9752
+fileserver.copyroom.hut professor.hut 1936
+laser3.copyroom.hut fileserver.copyroom.hut 7962
+maryann.girl.hut fileserver.copyroom.hut 668
+ginger.girl.hut skipper.crew.hut 4266
+gilligan.crew.hut gilligan.crew.hut 2973
+fileserver.copyroom.hut gilligan.crew.hut 9501
+professor.hut ginger.girl.hut 3519
+laser3.copyroom.hut gilligan.crew.hut 9349
+professor.hut professor.hut 1014
+professor.hut gilligan.crew.hut 8483
+skipper.crew.hut maryann.girl.hut 1416
+maryann.girl.hut ginger.girl.hut 2857
+maryann.girl.hut ginger.girl.hut 2495
+skipper.crew.hut maryann.girl.hut 8016
+gilligan.crew.hut professor.hut 9178
+gilligan.crew.hut maryann.girl.hut 3908
+laser3.copyroom.hut professor.hut 6700
+maryann.girl.hut gilligan.crew.hut 3939
+maryann.girl.hut professor.hut 2723
+gilligan.crew.hut professor.hut 4647
+professor.hut maryann.girl.hut 2025
+maryann.girl.hut maryann.girl.hut 8741
+professor.hut maryann.girl.hut 4332
+professor.hut laser3.copyroom.hut 481
+skipper.crew.hut maryann.girl.hut 679
+laser3.copyroom.hut ginger.girl.hut 5659
+laser3.copyroom.hut gilligan.crew.hut 8891
+laser3.copyroom.hut gilligan.crew.hut 5863
+skipper.crew.hut laser3.copyroom.hut 2721
+laser3.copyroom.hut fileserver.copyroom.hut 4342
+maryann.girl.hut skipper.crew.hut 1944
+gilligan.crew.hut ginger.girl.hut 9259
+skipper.crew.hut maryann.girl.hut 2205
+ginger.girl.hut professor.hut 9355
+fileserver.copyroom.hut ginger.girl.hut 9912
+skipper.crew.hut fileserver.copyroom.hut 1799
+professor.hut gilligan.crew.hut 5835
+skipper.crew.hut fileserver.copyroom.hut 6012
+ginger.girl.hut maryann.girl.hut 180
+fileserver.copyroom.hut maryann.girl.hut 5454
+ginger.girl.hut gilligan.crew.hut 5717
+professor.hut skipper.crew.hut 2120
+professor.hut maryann.girl.hut 414
+laser3.copyroom.hut ginger.girl.hut 5395
+professor.hut skipper.crew.hut 8075
+maryann.girl.hut gilligan.crew.hut 9121
+fileserver.copyroom.hut ginger.girl.hut 2863
+fileserver.copyroom.hut gilligan.crew.hut 8436
+professor.hut gilligan.crew.hut 5363
+skipper.crew.hut fileserver.copyroom.hut 6463
+professor.hut skipper.crew.hut 7849
+fileserver.copyroom.hut fileserver.copyroom.hut 1762
+ginger.girl.hut fileserver.copyroom.hut 9041
+ginger.girl.hut gilligan.crew.hut 1060
+fileserver.copyroom.hut fileserver.copyroom.hut 7718
+fileserver.copyroom.hut ginger.girl.hut 9141
+laser3.copyroom.hut fileserver.copyroom.hut 9006
+ginger.girl.hut skipper.crew.hut 1172
+skipper.crew.hut ginger.girl.hut 6276
+gilligan.crew.hut skipper.crew.hut 1902
+fileserver.copyroom.hut gilligan.crew.hut 5736
+maryann.girl.hut gilligan.crew.hut 5313
+professor.hut skipper.crew.hut 1754
+laser3.copyroom.hut laser3.copyroom.hut 9301
+gilligan.crew.hut maryann.girl.hut 5627
+professor.hut professor.hut 987
+fileserver.copyroom.hut professor.hut 2700
+skipper.crew.hut gilligan.crew.hut 3789
+skipper.crew.hut laser3.copyroom.hut 4707
+gilligan.crew.hut laser3.copyroom.hut 1575
+professor.hut maryann.girl.hut 4236
+gilligan.crew.hut laser3.copyroom.hut 5797
+laser3.copyroom.hut maryann.girl.hut 2320
+laser3.copyroom.hut laser3.copyroom.hut 8857
+professor.hut gilligan.crew.hut 7025
+skipper.crew.hut ginger.girl.hut 6034
+professor.hut laser3.copyroom.hut 3884
+ginger.girl.hut maryann.girl.hut 2133
+fileserver.copyroom.hut skipper.crew.hut 7263
+maryann.girl.hut professor.hut 359
+gilligan.crew.hut professor.hut 274
+gilligan.crew.hut maryann.girl.hut 6151
+maryann.girl.hut professor.hut 4164
+gilligan.crew.hut maryann.girl.hut 8644
+ginger.girl.hut fileserver.copyroom.hut 3581
+laser3.copyroom.hut laser3.copyroom.hut 9886
+ginger.girl.hut gilligan.crew.hut 1896
+professor.hut maryann.girl.hut 8932
+skipper.crew.hut skipper.crew.hut 3298
+professor.hut laser3.copyroom.hut 7366
+skipper.crew.hut gilligan.crew.hut 7818
+professor.hut gilligan.crew.hut 6825
+maryann.girl.hut ginger.girl.hut 9534
+skipper.crew.hut skipper.crew.hut 3172
+fileserver.copyroom.hut fileserver.copyroom.hut 4250
+fileserver.copyroom.hut laser3.copyroom.hut 6344
+ginger.girl.hut skipper.crew.hut 7535
+skipper.crew.hut maryann.girl.hut 6801
+ginger.girl.hut ginger.girl.hut 9811
+skipper.crew.hut fileserver.copyroom.hut 7436
+laser3.copyroom.hut skipper.crew.hut 128
+laser3.copyroom.hut gilligan.crew.hut 7095
+professor.hut fileserver.copyroom.hut 788
+fileserver.copyroom.hut professor.hut 400
+fileserver.copyroom.hut laser3.copyroom.hut 7024
+gilligan.crew.hut professor.hut 5261
+ginger.girl.hut professor.hut 6681
+fileserver.copyroom.hut professor.hut 3516
+ginger.girl.hut gilligan.crew.hut 5222
+professor.hut skipper.crew.hut 207
+maryann.girl.hut gilligan.crew.hut 5346
+ginger.girl.hut fileserver.copyroom.hut 5170
+skipper.crew.hut maryann.girl.hut 6745
+gilligan.crew.hut ginger.girl.hut 5153
+professor.hut professor.hut 6514
+ginger.girl.hut fileserver.copyroom.hut 337
+fileserver.copyroom.hut gilligan.crew.hut 5150
+gilligan.crew.hut ginger.girl.hut 9300
+professor.hut ginger.girl.hut 2157
+fileserver.copyroom.hut professor.hut 6150
+maryann.girl.hut ginger.girl.hut 2669
+fileserver.copyroom.hut gilligan.crew.hut 2258
+gilligan.crew.hut skipper.crew.hut 3669
+skipper.crew.hut gilligan.crew.hut 6627
+laser3.copyroom.hut skipper.crew.hut 5625
+fileserver.copyroom.hut laser3.copyroom.hut 3615
+ginger.girl.hut laser3.copyroom.hut 9308
+skipper.crew.hut maryann.girl.hut 9971
+laser3.copyroom.hut ginger.girl.hut 7194
+ginger.girl.hut fileserver.copyroom.hut 2195
+gilligan.crew.hut professor.hut 7214
+maryann.girl.hut ginger.girl.hut 7019
+skipper.crew.hut professor.hut 7286
+ginger.girl.hut fileserver.copyroom.hut 3038
+laser3.copyroom.hut skipper.crew.hut 5658
+professor.hut ginger.girl.hut 8608
+laser3.copyroom.hut laser3.copyroom.hut 8096
+skipper.crew.hut maryann.girl.hut 8864
+maryann.girl.hut fileserver.copyroom.hut 429
+ginger.girl.hut fileserver.copyroom.hut 6341
+ginger.girl.hut maryann.girl.hut 7657
+fileserver.copyroom.hut maryann.girl.hut 2770
+ginger.girl.hut professor.hut 1286
+maryann.girl.hut laser3.copyroom.hut 2441
+professor.hut fileserver.copyroom.hut 9860
+professor.hut ginger.girl.hut 1250
+professor.hut professor.hut 3773
+skipper.crew.hut laser3.copyroom.hut 3142
+professor.hut professor.hut 8213
+fileserver.copyroom.hut gilligan.crew.hut 9618
+ginger.girl.hut professor.hut 7033
+gilligan.crew.hut professor.hut 8148
+gilligan.crew.hut laser3.copyroom.hut 7889
+gilligan.crew.hut ginger.girl.hut 3638
+gilligan.crew.hut fileserver.copyroom.hut 2145
+fileserver.copyroom.hut maryann.girl.hut 8804
+laser3.copyroom.hut fileserver.copyroom.hut 90
+skipper.crew.hut laser3.copyroom.hut 2338
+fileserver.copyroom.hut ginger.girl.hut 2603
+laser3.copyroom.hut professor.hut 6181
+laser3.copyroom.hut professor.hut 8702
+professor.hut laser3.copyroom.hut 2744
+ginger.girl.hut skipper.crew.hut 9143
+ginger.girl.hut maryann.girl.hut 9729
+professor.hut laser3.copyroom.hut 8835
+professor.hut professor.hut 480
+maryann.girl.hut fileserver.copyroom.hut 5042
+ginger.girl.hut fileserver.copyroom.hut 8615
+ginger.girl.hut maryann.girl.hut 2712
+gilligan.crew.hut gilligan.crew.hut 3333
+professor.hut ginger.girl.hut 6372
+gilligan.crew.hut fileserver.copyroom.hut 3414
+maryann.girl.hut laser3.copyroom.hut 1268
+laser3.copyroom.hut ginger.girl.hut 2865
+fileserver.copyroom.hut maryann.girl.hut 201
+ginger.girl.hut maryann.girl.hut 1260
+fileserver.copyroom.hut maryann.girl.hut 700
+ginger.girl.hut skipper.crew.hut 1681
+maryann.girl.hut laser3.copyroom.hut 4598
+professor.hut gilligan.crew.hut 4768
+maryann.girl.hut gilligan.crew.hut 6281
+gilligan.crew.hut laser3.copyroom.hut 8225
+fileserver.copyroom.hut skipper.crew.hut 9053
+gilligan.crew.hut gilligan.crew.hut 4362
+ginger.girl.hut maryann.girl.hut 437
+skipper.crew.hut fileserver.copyroom.hut 3721
+professor.hut fileserver.copyroom.hut 5731
+ginger.girl.hut gilligan.crew.hut 6693
+professor.hut gilligan.crew.hut 5960
+maryann.girl.hut skipper.crew.hut 6544
+professor.hut professor.hut 8329
+professor.hut gilligan.crew.hut 3713
+skipper.crew.hut fileserver.copyroom.hut 6303
+gilligan.crew.hut ginger.girl.hut 1868
+laser3.copyroom.hut gilligan.crew.hut 280
+fileserver.copyroom.hut fileserver.copyroom.hut 8878
+ginger.girl.hut fileserver.copyroom.hut 4005
+gilligan.crew.hut professor.hut 479
+gilligan.crew.hut maryann.girl.hut 1127
+gilligan.crew.hut fileserver.copyroom.hut 8753
+ginger.girl.hut fileserver.copyroom.hut 1972
+maryann.girl.hut fileserver.copyroom.hut 1344
+professor.hut laser3.copyroom.hut 3979
+laser3.copyroom.hut professor.hut 824
+skipper.crew.hut skipper.crew.hut 4909
+laser3.copyroom.hut maryann.girl.hut 1578
+laser3.copyroom.hut fileserver.copyroom.hut 7616
+gilligan.crew.hut professor.hut 6173
+ginger.girl.hut ginger.girl.hut 4493
+ginger.girl.hut skipper.crew.hut 3399
+professor.hut maryann.girl.hut 9785
+ginger.girl.hut gilligan.crew.hut 9363
+professor.hut professor.hut 9792
+skipper.crew.hut laser3.copyroom.hut 6227
+laser3.copyroom.hut professor.hut 8981
+laser3.copyroom.hut fileserver.copyroom.hut 6608
+gilligan.crew.hut maryann.girl.hut 7216
+fileserver.copyroom.hut laser3.copyroom.hut 8989
+skipper.crew.hut skipper.crew.hut 7429
+ginger.girl.hut laser3.copyroom.hut 7440
+maryann.girl.hut laser3.copyroom.hut 3134
+skipper.crew.hut fileserver.copyroom.hut 1022
+fileserver.copyroom.hut maryann.girl.hut 9149
+maryann.girl.hut skipper.crew.hut 8362
+maryann.girl.hut professor.hut 9114
+ginger.girl.hut gilligan.crew.hut 2435
+ginger.girl.hut fileserver.copyroom.hut 2041
+skipper.crew.hut professor.hut 9505
+professor.hut skipper.crew.hut 8995
+laser3.copyroom.hut gilligan.crew.hut 6766
+skipper.crew.hut ginger.girl.hut 8697
+fileserver.copyroom.hut skipper.crew.hut 5535
+maryann.girl.hut professor.hut 9070
+skipper.crew.hut gilligan.crew.hut 146
+skipper.crew.hut gilligan.crew.hut 6227
+fileserver.copyroom.hut professor.hut 9754
+laser3.copyroom.hut ginger.girl.hut 5529
+ginger.girl.hut fileserver.copyroom.hut 4516
+ginger.girl.hut laser3.copyroom.hut 3645
+professor.hut maryann.girl.hut 8639
+maryann.girl.hut ginger.girl.hut 5672
+fileserver.copyroom.hut maryann.girl.hut 4784
+maryann.girl.hut skipper.crew.hut 6225
+professor.hut skipper.crew.hut 2426
+fileserver.copyroom.hut professor.hut 2772
+ginger.girl.hut gilligan.crew.hut 5933
+skipper.crew.hut laser3.copyroom.hut 8531
+professor.hut ginger.girl.hut 3625
+professor.hut maryann.girl.hut 5938
+ginger.girl.hut ginger.girl.hut 228
+ginger.girl.hut laser3.copyroom.hut 2461
+laser3.copyroom.hut professor.hut 8607
+skipper.crew.hut fileserver.copyroom.hut 836
+skipper.crew.hut ginger.girl.hut 3794
+skipper.crew.hut professor.hut 8374
+ginger.girl.hut professor.hut 319
+skipper.crew.hut professor.hut 267
+professor.hut gilligan.crew.hut 7328
+fileserver.copyroom.hut laser3.copyroom.hut 7952
+professor.hut fileserver.copyroom.hut 1350
+maryann.girl.hut ginger.girl.hut 3664
+gilligan.crew.hut maryann.girl.hut 6751
+laser3.copyroom.hut fileserver.copyroom.hut 7708
+gilligan.crew.hut ginger.girl.hut 3457
+maryann.girl.hut skipper.crew.hut 5639
+ginger.girl.hut laser3.copyroom.hut 4824
+gilligan.crew.hut ginger.girl.hut 4612
+gilligan.crew.hut maryann.girl.hut 532
+skipper.crew.hut laser3.copyroom.hut 7518
+professor.hut laser3.copyroom.hut 5375
+professor.hut laser3.copyroom.hut 6911
+maryann.girl.hut laser3.copyroom.hut 8988
+fileserver.copyroom.hut fileserver.copyroom.hut 4848
+gilligan.crew.hut professor.hut 3796
+professor.hut ginger.girl.hut 7472
+ginger.girl.hut ginger.girl.hut 609
+gilligan.crew.hut skipper.crew.hut 3293
+fileserver.copyroom.hut fileserver.copyroom.hut 4143
+fileserver.copyroom.hut ginger.girl.hut 6553
+gilligan.crew.hut skipper.crew.hut 4883
+ginger.girl.hut professor.hut 6170
+maryann.girl.hut ginger.girl.hut 7763
+professor.hut ginger.girl.hut 324
+skipper.crew.hut laser3.copyroom.hut 8408
+skipper.crew.hut professor.hut 7613
+gilligan.crew.hut ginger.girl.hut 6338
+ginger.girl.hut laser3.copyroom.hut 9365
+professor.hut ginger.girl.hut 9501
+skipper.crew.hut skipper.crew.hut 5465
+fileserver.copyroom.hut fileserver.copyroom.hut 3936
+laser3.copyroom.hut ginger.girl.hut 3144
+laser3.copyroom.hut skipper.crew.hut 4221
+fileserver.copyroom.hut gilligan.crew.hut 9499
+gilligan.crew.hut skipper.crew.hut 5858
+laser3.copyroom.hut skipper.crew.hut 6837
+maryann.girl.hut gilligan.crew.hut 1555
+skipper.crew.hut ginger.girl.hut 1246
+laser3.copyroom.hut gilligan.crew.hut 4255
+maryann.girl.hut fileserver.copyroom.hut 2000
+professor.hut fileserver.copyroom.hut 7802
+gilligan.crew.hut skipper.crew.hut 7102
+ginger.girl.hut ginger.girl.hut 1567
+gilligan.crew.hut professor.hut 3184
+laser3.copyroom.hut professor.hut 3892
+professor.hut fileserver.copyroom.hut 2698
+fileserver.copyroom.hut fileserver.copyroom.hut 7574
+fileserver.copyroom.hut fileserver.copyroom.hut 5895
+ginger.girl.hut gilligan.crew.hut 1389
+professor.hut fileserver.copyroom.hut 2714
+professor.hut professor.hut 6269
+fileserver.copyroom.hut fileserver.copyroom.hut 3701
+gilligan.crew.hut gilligan.crew.hut 8646
+ginger.girl.hut fileserver.copyroom.hut 1040
+laser3.copyroom.hut laser3.copyroom.hut 6889
+laser3.copyroom.hut skipper.crew.hut 2197
+maryann.girl.hut skipper.crew.hut 4575
+fileserver.copyroom.hut ginger.girl.hut 3866
+maryann.girl.hut maryann.girl.hut 3378
+professor.hut maryann.girl.hut 7161
+maryann.girl.hut ginger.girl.hut 3903
+gilligan.crew.hut gilligan.crew.hut 5950
+maryann.girl.hut skipper.crew.hut 7611
+skipper.crew.hut professor.hut 2935
+maryann.girl.hut skipper.crew.hut 739
+ginger.girl.hut laser3.copyroom.hut 3882
+professor.hut ginger.girl.hut 174
+fileserver.copyroom.hut laser3.copyroom.hut 3019
+skipper.crew.hut laser3.copyroom.hut 1730
+gilligan.crew.hut laser3.copyroom.hut 1066
+gilligan.crew.hut fileserver.copyroom.hut 4760
+skipper.crew.hut laser3.copyroom.hut 8335
+laser3.copyroom.hut laser3.copyroom.hut 1840
+laser3.copyroom.hut fileserver.copyroom.hut 6768
+professor.hut professor.hut 6918
+gilligan.crew.hut gilligan.crew.hut 3751
+skipper.crew.hut laser3.copyroom.hut 4338
+ginger.girl.hut professor.hut 5768
+ginger.girl.hut professor.hut 8478
+gilligan.crew.hut maryann.girl.hut 1447
+ginger.girl.hut professor.hut 7642
+professor.hut skipper.crew.hut 8720
+gilligan.crew.hut skipper.crew.hut 6269
+maryann.girl.hut professor.hut 581
+fileserver.copyroom.hut professor.hut 9293
+fileserver.copyroom.hut gilligan.crew.hut 4617
+maryann.girl.hut fileserver.copyroom.hut 8494
+skipper.crew.hut gilligan.crew.hut 8693
+ginger.girl.hut laser3.copyroom.hut 6865
+maryann.girl.hut professor.hut 1928
+fileserver.copyroom.hut gilligan.crew.hut 7239
+maryann.girl.hut fileserver.copyroom.hut 7333
+gilligan.crew.hut skipper.crew.hut 5954
+gilligan.crew.hut fileserver.copyroom.hut 890
+professor.hut laser3.copyroom.hut 9053
+fileserver.copyroom.hut laser3.copyroom.hut 5519
+ginger.girl.hut skipper.crew.hut 1466
+laser3.copyroom.hut ginger.girl.hut 5643
+laser3.copyroom.hut gilligan.crew.hut 2422
+laser3.copyroom.hut laser3.copyroom.hut 1948
+gilligan.crew.hut professor.hut 3815
+professor.hut gilligan.crew.hut 6709
+professor.hut professor.hut 6452
+laser3.copyroom.hut maryann.girl.hut 4195
+skipper.crew.hut skipper.crew.hut 996
+ginger.girl.hut ginger.girl.hut 4737
+skipper.crew.hut fileserver.copyroom.hut 6440
+professor.hut maryann.girl.hut 8508
+ginger.girl.hut laser3.copyroom.hut 9111
+maryann.girl.hut professor.hut 9186
+maryann.girl.hut gilligan.crew.hut 1586
+professor.hut gilligan.crew.hut 2029
+skipper.crew.hut skipper.crew.hut 2075
+professor.hut fileserver.copyroom.hut 7138
+gilligan.crew.hut ginger.girl.hut 7407
+laser3.copyroom.hut fileserver.copyroom.hut 4361
+gilligan.crew.hut laser3.copyroom.hut 8900
+fileserver.copyroom.hut professor.hut 9942
+laser3.copyroom.hut professor.hut 9879
+gilligan.crew.hut fileserver.copyroom.hut 2974
+fileserver.copyroom.hut ginger.girl.hut 8192
+laser3.copyroom.hut maryann.girl.hut 8675
+maryann.girl.hut ginger.girl.hut 1782
+laser3.copyroom.hut gilligan.crew.hut 7073
+ginger.girl.hut maryann.girl.hut 1874
+professor.hut professor.hut 4173
+ginger.girl.hut gilligan.crew.hut 649
+ginger.girl.hut fileserver.copyroom.hut 3759
+laser3.copyroom.hut fileserver.copyroom.hut 7421
+laser3.copyroom.hut fileserver.copyroom.hut 6902
+gilligan.crew.hut professor.hut 6249
+skipper.crew.hut professor.hut 4559
+ginger.girl.hut professor.hut 2412
+gilligan.crew.hut maryann.girl.hut 5217
+professor.hut ginger.girl.hut 7278
+maryann.girl.hut gilligan.crew.hut 7206
+maryann.girl.hut skipper.crew.hut 266
+professor.hut professor.hut 4471
+professor.hut gilligan.crew.hut 8171
+skipper.crew.hut skipper.crew.hut 8780
+fileserver.copyroom.hut gilligan.crew.hut 8789
+professor.hut fileserver.copyroom.hut 1294
+gilligan.crew.hut professor.hut 8622
+skipper.crew.hut maryann.girl.hut 453
+maryann.girl.hut skipper.crew.hut 6567
+ginger.girl.hut laser3.copyroom.hut 7552
+professor.hut skipper.crew.hut 8822
+gilligan.crew.hut skipper.crew.hut 8876
+laser3.copyroom.hut ginger.girl.hut 8073
+ginger.girl.hut professor.hut 2737
+laser3.copyroom.hut gilligan.crew.hut 776
+skipper.crew.hut fileserver.copyroom.hut 4208
+gilligan.crew.hut gilligan.crew.hut 9395
+gilligan.crew.hut fileserver.copyroom.hut 5680
+skipper.crew.hut ginger.girl.hut 904
+laser3.copyroom.hut skipper.crew.hut 3495
+fileserver.copyroom.hut laser3.copyroom.hut 9048
+skipper.crew.hut professor.hut 622
+fileserver.copyroom.hut gilligan.crew.hut 6759
+fileserver.copyroom.hut skipper.crew.hut 1076
+fileserver.copyroom.hut professor.hut 4971
+laser3.copyroom.hut laser3.copyroom.hut 6197
+maryann.girl.hut ginger.girl.hut 3844
+laser3.copyroom.hut gilligan.crew.hut 4492
+skipper.crew.hut gilligan.crew.hut 485
+skipper.crew.hut laser3.copyroom.hut 1222
+professor.hut professor.hut 9758
+skipper.crew.hut professor.hut 6297
+professor.hut ginger.girl.hut 1010
+laser3.copyroom.hut gilligan.crew.hut 9215
+fileserver.copyroom.hut skipper.crew.hut 7086
+professor.hut maryann.girl.hut 4874
+ginger.girl.hut skipper.crew.hut 5239
+professor.hut ginger.girl.hut 5192
+professor.hut laser3.copyroom.hut 3340
+fileserver.copyroom.hut laser3.copyroom.hut 3014
+fileserver.copyroom.hut gilligan.crew.hut 1371
+maryann.girl.hut gilligan.crew.hut 7700
+professor.hut ginger.girl.hut 2935
+professor.hut maryann.girl.hut 3195
+maryann.girl.hut gilligan.crew.hut 1046
+fileserver.copyroom.hut ginger.girl.hut 5766
+laser3.copyroom.hut professor.hut 9552
+maryann.girl.hut gilligan.crew.hut 6382
+ginger.girl.hut fileserver.copyroom.hut 2638
+maryann.girl.hut maryann.girl.hut 1901
+ginger.girl.hut professor.hut 6606
+skipper.crew.hut skipper.crew.hut 4178
+maryann.girl.hut fileserver.copyroom.hut 6406
+professor.hut gilligan.crew.hut 6618
+gilligan.crew.hut gilligan.crew.hut 2942
+professor.hut ginger.girl.hut 6447
+gilligan.crew.hut laser3.copyroom.hut 8108
+skipper.crew.hut ginger.girl.hut 7907
+maryann.girl.hut fileserver.copyroom.hut 1864
+professor.hut professor.hut 1525
+laser3.copyroom.hut laser3.copyroom.hut 4705
+laser3.copyroom.hut ginger.girl.hut 7269
+professor.hut maryann.girl.hut 5415
+gilligan.crew.hut maryann.girl.hut 8817
+gilligan.crew.hut ginger.girl.hut 6785
+professor.hut skipper.crew.hut 6591
+ginger.girl.hut laser3.copyroom.hut 6078
+laser3.copyroom.hut maryann.girl.hut 3345
+skipper.crew.hut skipper.crew.hut 1625
+skipper.crew.hut skipper.crew.hut 2194
+fileserver.copyroom.hut fileserver.copyroom.hut 3349
+laser3.copyroom.hut maryann.girl.hut 4657
+maryann.girl.hut ginger.girl.hut 9213
+maryann.girl.hut laser3.copyroom.hut 1669
+maryann.girl.hut laser3.copyroom.hut 8658
+professor.hut ginger.girl.hut 3673
+maryann.girl.hut fileserver.copyroom.hut 33
+ginger.girl.hut fileserver.copyroom.hut 8868
+ginger.girl.hut gilligan.crew.hut 4623
+maryann.girl.hut maryann.girl.hut 7465
+professor.hut maryann.girl.hut 8446
+ginger.girl.hut maryann.girl.hut 3917
+gilligan.crew.hut fileserver.copyroom.hut 1639
+ginger.girl.hut fileserver.copyroom.hut 4923
+laser3.copyroom.hut gilligan.crew.hut 2804
+professor.hut skipper.crew.hut 142
+gilligan.crew.hut maryann.girl.hut 9128
+professor.hut fileserver.copyroom.hut 3494
+maryann.girl.hut maryann.girl.hut 3112
+laser3.copyroom.hut fileserver.copyroom.hut 2958
+laser3.copyroom.hut skipper.crew.hut 691
+professor.hut laser3.copyroom.hut 5988
+gilligan.crew.hut fileserver.copyroom.hut 7558
+maryann.girl.hut laser3.copyroom.hut 7304
+skipper.crew.hut fileserver.copyroom.hut 1909
+skipper.crew.hut ginger.girl.hut 5501
+maryann.girl.hut skipper.crew.hut 327
+professor.hut gilligan.crew.hut 8216
+professor.hut skipper.crew.hut 9010
+laser3.copyroom.hut skipper.crew.hut 9001
+skipper.crew.hut fileserver.copyroom.hut 7923
+maryann.girl.hut ginger.girl.hut 2202
+skipper.crew.hut ginger.girl.hut 3385
+fileserver.copyroom.hut professor.hut 5750
+gilligan.crew.hut laser3.copyroom.hut 9265
+skipper.crew.hut gilligan.crew.hut 6867
+laser3.copyroom.hut maryann.girl.hut 5438
+ginger.girl.hut maryann.girl.hut 4477
+ginger.girl.hut laser3.copyroom.hut 3837
+laser3.copyroom.hut skipper.crew.hut 9650
+ginger.girl.hut ginger.girl.hut 6051
+ginger.girl.hut skipper.crew.hut 3923
+gilligan.crew.hut ginger.girl.hut 1369
+maryann.girl.hut laser3.copyroom.hut 8692
+professor.hut ginger.girl.hut 1712
+gilligan.crew.hut gilligan.crew.hut 9742
+skipper.crew.hut ginger.girl.hut 8421
+laser3.copyroom.hut professor.hut 5229
+ginger.girl.hut skipper.crew.hut 1740
+maryann.girl.hut maryann.girl.hut 8686
+maryann.girl.hut ginger.girl.hut 593
+ginger.girl.hut fileserver.copyroom.hut 5824
+gilligan.crew.hut skipper.crew.hut 2004
+fileserver.copyroom.hut fileserver.copyroom.hut 9150
+gilligan.crew.hut fileserver.copyroom.hut 1211
+skipper.crew.hut gilligan.crew.hut 8326
+ginger.girl.hut maryann.girl.hut 7856
+fileserver.copyroom.hut professor.hut 8278
+skipper.crew.hut gilligan.crew.hut 6653
+maryann.girl.hut gilligan.crew.hut 9369
+skipper.crew.hut maryann.girl.hut 837
+laser3.copyroom.hut gilligan.crew.hut 6631
+maryann.girl.hut skipper.crew.hut 6944
+gilligan.crew.hut fileserver.copyroom.hut 5991
+professor.hut gilligan.crew.hut 5027
+professor.hut maryann.girl.hut 5452
+maryann.girl.hut gilligan.crew.hut 6010
+professor.hut gilligan.crew.hut 4796
+fileserver.copyroom.hut gilligan.crew.hut 3111
+professor.hut skipper.crew.hut 1587
+laser3.copyroom.hut professor.hut 5721
+fileserver.copyroom.hut gilligan.crew.hut 9845
+laser3.copyroom.hut gilligan.crew.hut 2340
+gilligan.crew.hut professor.hut 5585
+laser3.copyroom.hut skipper.crew.hut 9281
+skipper.crew.hut maryann.girl.hut 3886
+laser3.copyroom.hut fileserver.copyroom.hut 2275
+professor.hut fileserver.copyroom.hut 8077
+gilligan.crew.hut fileserver.copyroom.hut 4160
+professor.hut skipper.crew.hut 5836
+ginger.girl.hut skipper.crew.hut 9756
+skipper.crew.hut professor.hut 3635
+skipper.crew.hut skipper.crew.hut 9918
+ginger.girl.hut gilligan.crew.hut 2813
+skipper.crew.hut maryann.girl.hut 9669
+professor.hut professor.hut 4587
+gilligan.crew.hut laser3.copyroom.hut 8132
+ginger.girl.hut fileserver.copyroom.hut 5199
+laser3.copyroom.hut skipper.crew.hut 351
+professor.hut professor.hut 5949
+ginger.girl.hut gilligan.crew.hut 7306
+maryann.girl.hut maryann.girl.hut 3694
+professor.hut fileserver.copyroom.hut 9794
+maryann.girl.hut laser3.copyroom.hut 7455
+ginger.girl.hut maryann.girl.hut 5862
+professor.hut ginger.girl.hut 4411
+laser3.copyroom.hut maryann.girl.hut 7857
+professor.hut fileserver.copyroom.hut 6692
+gilligan.crew.hut fileserver.copyroom.hut 7978
+professor.hut professor.hut 604
+fileserver.copyroom.hut gilligan.crew.hut 2584
+fileserver.copyroom.hut professor.hut 5274
+maryann.girl.hut laser3.copyroom.hut 5532
+maryann.girl.hut professor.hut 2336
+professor.hut maryann.girl.hut 7430
+ginger.girl.hut gilligan.crew.hut 5865
+ginger.girl.hut professor.hut 1313
+skipper.crew.hut skipper.crew.hut 703
+laser3.copyroom.hut professor.hut 4871
+fileserver.copyroom.hut skipper.crew.hut 4238
+maryann.girl.hut fileserver.copyroom.hut 4057
+professor.hut fileserver.copyroom.hut 4122
+gilligan.crew.hut professor.hut 9720
+laser3.copyroom.hut maryann.girl.hut 6496
+professor.hut skipper.crew.hut 1016
+professor.hut gilligan.crew.hut 6643
+professor.hut gilligan.crew.hut 8959
+maryann.girl.hut laser3.copyroom.hut 5521
+gilligan.crew.hut gilligan.crew.hut 3470
+maryann.girl.hut maryann.girl.hut 3637
+skipper.crew.hut fileserver.copyroom.hut 177
+fileserver.copyroom.hut fileserver.copyroom.hut 2696
+maryann.girl.hut laser3.copyroom.hut 724
+fileserver.copyroom.hut ginger.girl.hut 7941
+laser3.copyroom.hut ginger.girl.hut 6666
+professor.hut skipper.crew.hut 5306
+fileserver.copyroom.hut skipper.crew.hut 8258
+fileserver.copyroom.hut laser3.copyroom.hut 9496
+gilligan.crew.hut maryann.girl.hut 7071
+laser3.copyroom.hut skipper.crew.hut 7743
+skipper.crew.hut skipper.crew.hut 1375
+ginger.girl.hut professor.hut 6433
+laser3.copyroom.hut fileserver.copyroom.hut 2328
+ginger.girl.hut maryann.girl.hut 6059
+professor.hut laser3.copyroom.hut 1086
+ginger.girl.hut gilligan.crew.hut 3842
+maryann.girl.hut ginger.girl.hut 2884
+maryann.girl.hut professor.hut 2325
+ginger.girl.hut professor.hut 9417
+ginger.girl.hut laser3.copyroom.hut 4276
+ginger.girl.hut gilligan.crew.hut 8059
+ginger.girl.hut maryann.girl.hut 4073
+ginger.girl.hut maryann.girl.hut 5697
+fileserver.copyroom.hut laser3.copyroom.hut 8147
+skipper.crew.hut skipper.crew.hut 4694
+fileserver.copyroom.hut skipper.crew.hut 7468
+ginger.girl.hut laser3.copyroom.hut 8575
+fileserver.copyroom.hut maryann.girl.hut 2305
+gilligan.crew.hut gilligan.crew.hut 9080
+gilligan.crew.hut fileserver.copyroom.hut 3143
+gilligan.crew.hut fileserver.copyroom.hut 4197
+ginger.girl.hut maryann.girl.hut 6341
+laser3.copyroom.hut gilligan.crew.hut 9724
+maryann.girl.hut gilligan.crew.hut 4461
+gilligan.crew.hut professor.hut 3749
+fileserver.copyroom.hut maryann.girl.hut 1750
+skipper.crew.hut skipper.crew.hut 6114
+professor.hut skipper.crew.hut 7536
+skipper.crew.hut ginger.girl.hut 1658
+ginger.girl.hut gilligan.crew.hut 2501
+gilligan.crew.hut ginger.girl.hut 2528
+gilligan.crew.hut ginger.girl.hut 5397
+fileserver.copyroom.hut maryann.girl.hut 3591
+gilligan.crew.hut professor.hut 3555
+fileserver.copyroom.hut gilligan.crew.hut 5705
+maryann.girl.hut fileserver.copyroom.hut 9141
+gilligan.crew.hut ginger.girl.hut 3809
+laser3.copyroom.hut skipper.crew.hut 8267
+laser3.copyroom.hut skipper.crew.hut 267
+ginger.girl.hut ginger.girl.hut 2605
+gilligan.crew.hut fileserver.copyroom.hut 8562
+professor.hut gilligan.crew.hut 6595
+ginger.girl.hut laser3.copyroom.hut 7907
+maryann.girl.hut professor.hut 3864
+fileserver.copyroom.hut maryann.girl.hut 3643
+skipper.crew.hut gilligan.crew.hut 3983
+fileserver.copyroom.hut gilligan.crew.hut 2162
+professor.hut gilligan.crew.hut 3398
+laser3.copyroom.hut ginger.girl.hut 3612
+ginger.girl.hut professor.hut 9220
+skipper.crew.hut fileserver.copyroom.hut 4034
+skipper.crew.hut maryann.girl.hut 907
+maryann.girl.hut fileserver.copyroom.hut 9997
+professor.hut ginger.girl.hut 7314
+gilligan.crew.hut laser3.copyroom.hut 8585
+professor.hut skipper.crew.hut 8161
+maryann.girl.hut professor.hut 9264
+maryann.girl.hut maryann.girl.hut 7467
+ginger.girl.hut maryann.girl.hut 5082
+ginger.girl.hut skipper.crew.hut 5652
+fileserver.copyroom.hut laser3.copyroom.hut 5594
+ginger.girl.hut skipper.crew.hut 3834
+gilligan.crew.hut maryann.girl.hut 4251
+skipper.crew.hut skipper.crew.hut 4748
+maryann.girl.hut maryann.girl.hut 1590
+maryann.girl.hut skipper.crew.hut 8292
+laser3.copyroom.hut laser3.copyroom.hut 4100
+ginger.girl.hut gilligan.crew.hut 2311
+maryann.girl.hut professor.hut 3637
+gilligan.crew.hut maryann.girl.hut 5717
+professor.hut professor.hut 8730
+fileserver.copyroom.hut maryann.girl.hut 686
+maryann.girl.hut laser3.copyroom.hut 567
+professor.hut maryann.girl.hut 6970
+professor.hut skipper.crew.hut 3056
+fileserver.copyroom.hut professor.hut 6446
+fileserver.copyroom.hut ginger.girl.hut 864
+fileserver.copyroom.hut maryann.girl.hut 7234
+maryann.girl.hut fileserver.copyroom.hut 5873
+skipper.crew.hut gilligan.crew.hut 6486
+skipper.crew.hut ginger.girl.hut 7434
+skipper.crew.hut ginger.girl.hut 4682
+professor.hut maryann.girl.hut 6785
+professor.hut skipper.crew.hut 9798
+gilligan.crew.hut gilligan.crew.hut 926
+gilligan.crew.hut gilligan.crew.hut 9324
+skipper.crew.hut skipper.crew.hut 1860
+laser3.copyroom.hut maryann.girl.hut 8766
+gilligan.crew.hut fileserver.copyroom.hut 4968
+fileserver.copyroom.hut ginger.girl.hut 5007
+skipper.crew.hut laser3.copyroom.hut 3266
+professor.hut skipper.crew.hut 670
+maryann.girl.hut ginger.girl.hut 5163
+professor.hut fileserver.copyroom.hut 9922
+gilligan.crew.hut laser3.copyroom.hut 9364
+laser3.copyroom.hut maryann.girl.hut 569
+ginger.girl.hut skipper.crew.hut 181
+gilligan.crew.hut fileserver.copyroom.hut 6733
+laser3.copyroom.hut maryann.girl.hut 885
+skipper.crew.hut fileserver.copyroom.hut 2330
+skipper.crew.hut skipper.crew.hut 8175
+maryann.girl.hut skipper.crew.hut 2176
+gilligan.crew.hut maryann.girl.hut 2777
+maryann.girl.hut laser3.copyroom.hut 8523
+maryann.girl.hut maryann.girl.hut 6564
+gilligan.crew.hut professor.hut 5034
+laser3.copyroom.hut gilligan.crew.hut 9350
+professor.hut professor.hut 9557
+maryann.girl.hut skipper.crew.hut 3179
+skipper.crew.hut skipper.crew.hut 8979
+ginger.girl.hut skipper.crew.hut 6630
+ginger.girl.hut laser3.copyroom.hut 2089
+ginger.girl.hut maryann.girl.hut 2973
+laser3.copyroom.hut skipper.crew.hut 3591
+professor.hut professor.hut 1759
+laser3.copyroom.hut laser3.copyroom.hut 9587
+gilligan.crew.hut maryann.girl.hut 6819
+fileserver.copyroom.hut fileserver.copyroom.hut 9547
+skipper.crew.hut maryann.girl.hut 6155
+maryann.girl.hut fileserver.copyroom.hut 9224
+fileserver.copyroom.hut skipper.crew.hut 8277
+skipper.crew.hut gilligan.crew.hut 6750
+laser3.copyroom.hut maryann.girl.hut 665
+gilligan.crew.hut maryann.girl.hut 8210
+ginger.girl.hut laser3.copyroom.hut 5094
+ginger.girl.hut ginger.girl.hut 1973
+professor.hut laser3.copyroom.hut 5488
+fileserver.copyroom.hut fileserver.copyroom.hut 5292
+gilligan.crew.hut fileserver.copyroom.hut 5181
+skipper.crew.hut ginger.girl.hut 3234
+ginger.girl.hut gilligan.crew.hut 1196
+gilligan.crew.hut professor.hut 4796
+professor.hut professor.hut 1110
+ginger.girl.hut skipper.crew.hut 4851
+fileserver.copyroom.hut professor.hut 5237
+ginger.girl.hut maryann.girl.hut 8016
+professor.hut maryann.girl.hut 3089
+gilligan.crew.hut maryann.girl.hut 1290
+gilligan.crew.hut laser3.copyroom.hut 9043
+professor.hut ginger.girl.hut 1412
+professor.hut fileserver.copyroom.hut 1702
+ginger.girl.hut laser3.copyroom.hut 1121
+ginger.girl.hut ginger.girl.hut 7031
+fileserver.copyroom.hut gilligan.crew.hut 630
+gilligan.crew.hut maryann.girl.hut 8514
+gilligan.crew.hut laser3.copyroom.hut 9471
+fileserver.copyroom.hut laser3.copyroom.hut 658
+gilligan.crew.hut professor.hut 1050
+professor.hut skipper.crew.hut 3460
+gilligan.crew.hut fileserver.copyroom.hut 8363
+skipper.crew.hut gilligan.crew.hut 8267
+maryann.girl.hut fileserver.copyroom.hut 8237
+professor.hut fileserver.copyroom.hut 2360
+skipper.crew.hut ginger.girl.hut 7479
+professor.hut laser3.copyroom.hut 7185
+gilligan.crew.hut ginger.girl.hut 8298
+skipper.crew.hut fileserver.copyroom.hut 9332
+gilligan.crew.hut ginger.girl.hut 1669
+fileserver.copyroom.hut professor.hut 5570
+maryann.girl.hut ginger.girl.hut 8600
+professor.hut maryann.girl.hut 6447
+fileserver.copyroom.hut gilligan.crew.hut 7706
+maryann.girl.hut fileserver.copyroom.hut 2538
+gilligan.crew.hut ginger.girl.hut 2483
+fileserver.copyroom.hut skipper.crew.hut 4883
+fileserver.copyroom.hut gilligan.crew.hut 8177
+professor.hut skipper.crew.hut 429
+gilligan.crew.hut skipper.crew.hut 8340
+ginger.girl.hut gilligan.crew.hut 6819
+maryann.girl.hut gilligan.crew.hut 188
+ginger.girl.hut ginger.girl.hut 9574
+skipper.crew.hut fileserver.copyroom.hut 8504
+fileserver.copyroom.hut gilligan.crew.hut 8303
+maryann.girl.hut laser3.copyroom.hut 6157
+fileserver.copyroom.hut professor.hut 5146
+fileserver.copyroom.hut laser3.copyroom.hut 8607
+gilligan.crew.hut gilligan.crew.hut 8799
+fileserver.copyroom.hut laser3.copyroom.hut 1783
+skipper.crew.hut gilligan.crew.hut 6595
+professor.hut maryann.girl.hut 4175
+professor.hut skipper.crew.hut 510
+maryann.girl.hut gilligan.crew.hut 6322
+laser3.copyroom.hut fileserver.copyroom.hut 1576
+ginger.girl.hut skipper.crew.hut 887
+maryann.girl.hut gilligan.crew.hut 8316
+fileserver.copyroom.hut maryann.girl.hut 4359
+gilligan.crew.hut professor.hut 9333
+maryann.girl.hut ginger.girl.hut 4916
+fileserver.copyroom.hut professor.hut 1114
+laser3.copyroom.hut maryann.girl.hut 8756
+skipper.crew.hut ginger.girl.hut 9163
+professor.hut professor.hut 3600
+fileserver.copyroom.hut fileserver.copyroom.hut 5804
+laser3.copyroom.hut gilligan.crew.hut 6702
+laser3.copyroom.hut ginger.girl.hut 1200
+maryann.girl.hut gilligan.crew.hut 7150
+gilligan.crew.hut maryann.girl.hut 2624
+gilligan.crew.hut gilligan.crew.hut 5489
+laser3.copyroom.hut maryann.girl.hut 2515
+ginger.girl.hut professor.hut 3623
+laser3.copyroom.hut ginger.girl.hut 2924
+laser3.copyroom.hut laser3.copyroom.hut 748
+fileserver.copyroom.hut professor.hut 6906
+maryann.girl.hut skipper.crew.hut 633
+maryann.girl.hut fileserver.copyroom.hut 9069
+laser3.copyroom.hut maryann.girl.hut 6354
+ginger.girl.hut maryann.girl.hut 2145
+maryann.girl.hut laser3.copyroom.hut 3705
+professor.hut ginger.girl.hut 8512
+fileserver.copyroom.hut ginger.girl.hut 4526
+fileserver.copyroom.hut gilligan.crew.hut 1550
+laser3.copyroom.hut laser3.copyroom.hut 7334
+fileserver.copyroom.hut gilligan.crew.hut 6192
+ginger.girl.hut laser3.copyroom.hut 4269
+ginger.girl.hut professor.hut 5122
+maryann.girl.hut fileserver.copyroom.hut 7120
+ginger.girl.hut laser3.copyroom.hut 8468
+skipper.crew.hut maryann.girl.hut 1947
+professor.hut ginger.girl.hut 8966
+laser3.copyroom.hut gilligan.crew.hut 261
+skipper.crew.hut fileserver.copyroom.hut 8570
+maryann.girl.hut gilligan.crew.hut 5564
+professor.hut fileserver.copyroom.hut 5151
+fileserver.copyroom.hut fileserver.copyroom.hut 4620
+laser3.copyroom.hut maryann.girl.hut 4845
+maryann.girl.hut ginger.girl.hut 3278
+fileserver.copyroom.hut fileserver.copyroom.hut 9499
+maryann.girl.hut fileserver.copyroom.hut 9840
+gilligan.crew.hut professor.hut 4338
+professor.hut skipper.crew.hut 1358
+skipper.crew.hut gilligan.crew.hut 4062
+professor.hut fileserver.copyroom.hut 5976
+skipper.crew.hut maryann.girl.hut 2070
+maryann.girl.hut laser3.copyroom.hut 9723
+skipper.crew.hut fileserver.copyroom.hut 8449
+ginger.girl.hut professor.hut 8158
+laser3.copyroom.hut skipper.crew.hut 774
+fileserver.copyroom.hut skipper.crew.hut 7349
+maryann.girl.hut ginger.girl.hut 8870
+gilligan.crew.hut maryann.girl.hut 9004
+professor.hut skipper.crew.hut 3156
+maryann.girl.hut fileserver.copyroom.hut 1123
+gilligan.crew.hut skipper.crew.hut 2147
+gilligan.crew.hut professor.hut 2445
+ginger.girl.hut laser3.copyroom.hut 3732
+gilligan.crew.hut ginger.girl.hut 1639
+ginger.girl.hut skipper.crew.hut 386
+laser3.copyroom.hut maryann.girl.hut 3075
+maryann.girl.hut ginger.girl.hut 5806
+skipper.crew.hut fileserver.copyroom.hut 7254
+gilligan.crew.hut professor.hut 9116
+professor.hut laser3.copyroom.hut 8740
+professor.hut fileserver.copyroom.hut 821
+laser3.copyroom.hut gilligan.crew.hut 3428
+fileserver.copyroom.hut professor.hut 917
+laser3.copyroom.hut professor.hut 1592
+laser3.copyroom.hut maryann.girl.hut 7621
+gilligan.crew.hut professor.hut 658
+laser3.copyroom.hut laser3.copyroom.hut 8842
+maryann.girl.hut maryann.girl.hut 4641
+fileserver.copyroom.hut laser3.copyroom.hut 2350
+laser3.copyroom.hut laser3.copyroom.hut 9586
+skipper.crew.hut skipper.crew.hut 9786
+skipper.crew.hut gilligan.crew.hut 8879
+ginger.girl.hut ginger.girl.hut 1041
+gilligan.crew.hut laser3.copyroom.hut 2293
+skipper.crew.hut maryann.girl.hut 536
+ginger.girl.hut gilligan.crew.hut 6479
+gilligan.crew.hut gilligan.crew.hut 5363
+gilligan.crew.hut ginger.girl.hut 1154
+ginger.girl.hut skipper.crew.hut 6353
+laser3.copyroom.hut professor.hut 1300
+fileserver.copyroom.hut fileserver.copyroom.hut 2303
+laser3.copyroom.hut ginger.girl.hut 599
+ginger.girl.hut gilligan.crew.hut 8746
+laser3.copyroom.hut ginger.girl.hut 1097
+gilligan.crew.hut skipper.crew.hut 4560
+maryann.girl.hut gilligan.crew.hut 7909
+professor.hut professor.hut 761
+professor.hut laser3.copyroom.hut 269
+gilligan.crew.hut ginger.girl.hut 4551
+laser3.copyroom.hut ginger.girl.hut 9832
+skipper.crew.hut fileserver.copyroom.hut 1887
+gilligan.crew.hut laser3.copyroom.hut 5691
+laser3.copyroom.hut maryann.girl.hut 9584
+laser3.copyroom.hut professor.hut 6033
+laser3.copyroom.hut fileserver.copyroom.hut 2959
+laser3.copyroom.hut ginger.girl.hut 6042
+fileserver.copyroom.hut professor.hut 3214
+gilligan.crew.hut gilligan.crew.hut 4678
+maryann.girl.hut fileserver.copyroom.hut 3604
+laser3.copyroom.hut ginger.girl.hut 936
+laser3.copyroom.hut skipper.crew.hut 1012
+maryann.girl.hut skipper.crew.hut 1873
+ginger.girl.hut professor.hut 499
+professor.hut laser3.copyroom.hut 5908
+ginger.girl.hut fileserver.copyroom.hut 1999
+fileserver.copyroom.hut maryann.girl.hut 5306
+gilligan.crew.hut laser3.copyroom.hut 5485
+maryann.girl.hut laser3.copyroom.hut 2748
+fileserver.copyroom.hut laser3.copyroom.hut 7437
+skipper.crew.hut fileserver.copyroom.hut 3580
+professor.hut laser3.copyroom.hut 5277
+skipper.crew.hut fileserver.copyroom.hut 8514
+gilligan.crew.hut skipper.crew.hut 233
+laser3.copyroom.hut fileserver.copyroom.hut 49
+gilligan.crew.hut professor.hut 2868
+skipper.crew.hut fileserver.copyroom.hut 6661
+fileserver.copyroom.hut fileserver.copyroom.hut 3270
+professor.hut ginger.girl.hut 2224
+gilligan.crew.hut professor.hut 8717
+fileserver.copyroom.hut professor.hut 7629
+fileserver.copyroom.hut skipper.crew.hut 6860
+maryann.girl.hut maryann.girl.hut 1910
+gilligan.crew.hut fileserver.copyroom.hut 3421
+skipper.crew.hut fileserver.copyroom.hut 5825
+maryann.girl.hut skipper.crew.hut 1296
+professor.hut fileserver.copyroom.hut 4667
+gilligan.crew.hut laser3.copyroom.hut 3951
+ginger.girl.hut professor.hut 3681
+maryann.girl.hut professor.hut 3186
+ginger.girl.hut fileserver.copyroom.hut 20
+gilligan.crew.hut professor.hut 833
+ginger.girl.hut gilligan.crew.hut 9121
+skipper.crew.hut maryann.girl.hut 5666
+gilligan.crew.hut skipper.crew.hut 2143
+laser3.copyroom.hut maryann.girl.hut 2251
+gilligan.crew.hut ginger.girl.hut 9828
+ginger.girl.hut maryann.girl.hut 5381
+gilligan.crew.hut laser3.copyroom.hut 8057
+skipper.crew.hut fileserver.copyroom.hut 3224
+fileserver.copyroom.hut laser3.copyroom.hut 9796
+ginger.girl.hut fileserver.copyroom.hut 9750
+professor.hut ginger.girl.hut 1073
+skipper.crew.hut skipper.crew.hut 9385
+maryann.girl.hut ginger.girl.hut 1212
+fileserver.copyroom.hut skipper.crew.hut 8952
+gilligan.crew.hut skipper.crew.hut 8394
+skipper.crew.hut maryann.girl.hut 7923
+gilligan.crew.hut fileserver.copyroom.hut 7373
+maryann.girl.hut gilligan.crew.hut 9331
+maryann.girl.hut skipper.crew.hut 6174
+gilligan.crew.hut maryann.girl.hut 5668
+fileserver.copyroom.hut skipper.crew.hut 1379
+laser3.copyroom.hut maryann.girl.hut 657
+laser3.copyroom.hut maryann.girl.hut 3565
+skipper.crew.hut laser3.copyroom.hut 932
+skipper.crew.hut gilligan.crew.hut 6401
+ginger.girl.hut laser3.copyroom.hut 4731
+gilligan.crew.hut ginger.girl.hut 388
+skipper.crew.hut ginger.girl.hut 1247
+fileserver.copyroom.hut laser3.copyroom.hut 8601
+maryann.girl.hut fileserver.copyroom.hut 8915
+skipper.crew.hut skipper.crew.hut 5244
+laser3.copyroom.hut professor.hut 773
+professor.hut maryann.girl.hut 4805
+gilligan.crew.hut fileserver.copyroom.hut 5859
+gilligan.crew.hut gilligan.crew.hut 1534
+fileserver.copyroom.hut gilligan.crew.hut 5663
+professor.hut skipper.crew.hut 7025
+skipper.crew.hut professor.hut 1418
+professor.hut professor.hut 5599
+laser3.copyroom.hut ginger.girl.hut 2482
+professor.hut maryann.girl.hut 2299
+gilligan.crew.hut professor.hut 1708
+gilligan.crew.hut laser3.copyroom.hut 1967
+maryann.girl.hut maryann.girl.hut 7835
+maryann.girl.hut professor.hut 3223
+gilligan.crew.hut skipper.crew.hut 8596
+maryann.girl.hut ginger.girl.hut 6422
+skipper.crew.hut skipper.crew.hut 8273
+gilligan.crew.hut ginger.girl.hut 5397
+maryann.girl.hut laser3.copyroom.hut 568
+fileserver.copyroom.hut ginger.girl.hut 4751
+maryann.girl.hut maryann.girl.hut 9528
+skipper.crew.hut fileserver.copyroom.hut 7779
+ginger.girl.hut maryann.girl.hut 3601
+fileserver.copyroom.hut maryann.girl.hut 7935
+ginger.girl.hut ginger.girl.hut 6811
+gilligan.crew.hut fileserver.copyroom.hut 124
+professor.hut fileserver.copyroom.hut 9135
+maryann.girl.hut professor.hut 8111
+maryann.girl.hut gilligan.crew.hut 1834
+laser3.copyroom.hut professor.hut 4064
+fileserver.copyroom.hut professor.hut 3818
+ginger.girl.hut skipper.crew.hut 1595
+gilligan.crew.hut skipper.crew.hut 3201
+professor.hut professor.hut 6480
+maryann.girl.hut ginger.girl.hut 7825
+skipper.crew.hut professor.hut 9054
+professor.hut maryann.girl.hut 458
+fileserver.copyroom.hut skipper.crew.hut 2295
+fileserver.copyroom.hut ginger.girl.hut 5300
+laser3.copyroom.hut fileserver.copyroom.hut 9605
+maryann.girl.hut gilligan.crew.hut 6562
+skipper.crew.hut skipper.crew.hut 163
+ginger.girl.hut maryann.girl.hut 5885
+fileserver.copyroom.hut gilligan.crew.hut 7147
+professor.hut skipper.crew.hut 1493
+gilligan.crew.hut professor.hut 6361
+professor.hut laser3.copyroom.hut 216
+maryann.girl.hut skipper.crew.hut 8128
+laser3.copyroom.hut professor.hut 1608
+skipper.crew.hut gilligan.crew.hut 6860
+gilligan.crew.hut laser3.copyroom.hut 3386
+skipper.crew.hut gilligan.crew.hut 450
+laser3.copyroom.hut maryann.girl.hut 4966
+maryann.girl.hut maryann.girl.hut 3715
+ginger.girl.hut laser3.copyroom.hut 8186
+gilligan.crew.hut laser3.copyroom.hut 1465
+ginger.girl.hut laser3.copyroom.hut 4807
+skipper.crew.hut fileserver.copyroom.hut 2770
+professor.hut maryann.girl.hut 7866
+maryann.girl.hut maryann.girl.hut 7601
+maryann.girl.hut skipper.crew.hut 8725
+skipper.crew.hut fileserver.copyroom.hut 4904
+laser3.copyroom.hut laser3.copyroom.hut 5450
+fileserver.copyroom.hut professor.hut 611
+fileserver.copyroom.hut laser3.copyroom.hut 4596
+laser3.copyroom.hut maryann.girl.hut 1678
+skipper.crew.hut maryann.girl.hut 1220
+ginger.girl.hut laser3.copyroom.hut 2902
+gilligan.crew.hut ginger.girl.hut 190
+ginger.girl.hut ginger.girl.hut 8987
+gilligan.crew.hut maryann.girl.hut 963
+gilligan.crew.hut professor.hut 1757
+gilligan.crew.hut professor.hut 8672
+skipper.crew.hut professor.hut 4138
+gilligan.crew.hut laser3.copyroom.hut 7538
+gilligan.crew.hut skipper.crew.hut 5128
+fileserver.copyroom.hut ginger.girl.hut 8183
+gilligan.crew.hut maryann.girl.hut 4242
+laser3.copyroom.hut maryann.girl.hut 5944
+gilligan.crew.hut skipper.crew.hut 8333
+ginger.girl.hut professor.hut 9643
+professor.hut professor.hut 7869
+fileserver.copyroom.hut gilligan.crew.hut 4768
+professor.hut skipper.crew.hut 5557
+ginger.girl.hut laser3.copyroom.hut 1354
+professor.hut professor.hut 136
+gilligan.crew.hut maryann.girl.hut 2974
+gilligan.crew.hut fileserver.copyroom.hut 4200
+ginger.girl.hut laser3.copyroom.hut 3269
+laser3.copyroom.hut ginger.girl.hut 540
+fileserver.copyroom.hut laser3.copyroom.hut 2541
+fileserver.copyroom.hut maryann.girl.hut 6389
+professor.hut maryann.girl.hut 3803
+gilligan.crew.hut maryann.girl.hut 6520
+skipper.crew.hut maryann.girl.hut 2490
+ginger.girl.hut ginger.girl.hut 5515
+maryann.girl.hut professor.hut 1119
+maryann.girl.hut gilligan.crew.hut 6593
+gilligan.crew.hut skipper.crew.hut 5114
+gilligan.crew.hut gilligan.crew.hut 7446
+laser3.copyroom.hut laser3.copyroom.hut 2164
+maryann.girl.hut gilligan.crew.hut 9491
+skipper.crew.hut fileserver.copyroom.hut 8514
+skipper.crew.hut gilligan.crew.hut 4684
+fileserver.copyroom.hut skipper.crew.hut 1835
+ginger.girl.hut ginger.girl.hut 8661
+skipper.crew.hut laser3.copyroom.hut 2138
+fileserver.copyroom.hut professor.hut 6551
+ginger.girl.hut fileserver.copyroom.hut 1872
+ginger.girl.hut maryann.girl.hut 213
+ginger.girl.hut maryann.girl.hut 1550
+ginger.girl.hut gilligan.crew.hut 1597
+maryann.girl.hut maryann.girl.hut 2140
+laser3.copyroom.hut laser3.copyroom.hut 1498
+skipper.crew.hut laser3.copyroom.hut 1012
+laser3.copyroom.hut gilligan.crew.hut 7579
+professor.hut fileserver.copyroom.hut 3410
+ginger.girl.hut professor.hut 3349
+maryann.girl.hut ginger.girl.hut 4959
+skipper.crew.hut laser3.copyroom.hut 5109
+skipper.crew.hut gilligan.crew.hut 467
+skipper.crew.hut maryann.girl.hut 2136
+laser3.copyroom.hut gilligan.crew.hut 2694
+ginger.girl.hut laser3.copyroom.hut 9591
+skipper.crew.hut skipper.crew.hut 2108
+laser3.copyroom.hut laser3.copyroom.hut 5476
+gilligan.crew.hut professor.hut 1605
+gilligan.crew.hut maryann.girl.hut 1394
+skipper.crew.hut skipper.crew.hut 2418
+laser3.copyroom.hut maryann.girl.hut 4188
+laser3.copyroom.hut fileserver.copyroom.hut 8243
+fileserver.copyroom.hut skipper.crew.hut 877
+fileserver.copyroom.hut ginger.girl.hut 7550
+skipper.crew.hut skipper.crew.hut 1083
+laser3.copyroom.hut skipper.crew.hut 287
+maryann.girl.hut fileserver.copyroom.hut 5430
+laser3.copyroom.hut skipper.crew.hut 8366
+professor.hut maryann.girl.hut 6916
+skipper.crew.hut fileserver.copyroom.hut 5898
+ginger.girl.hut ginger.girl.hut 3084
+gilligan.crew.hut professor.hut 808
+maryann.girl.hut professor.hut 4372
+fileserver.copyroom.hut fileserver.copyroom.hut 6367
+laser3.copyroom.hut fileserver.copyroom.hut 7419
+gilligan.crew.hut maryann.girl.hut 9241
+ginger.girl.hut laser3.copyroom.hut 759
+ginger.girl.hut gilligan.crew.hut 8247
+ginger.girl.hut professor.hut 2858
+fileserver.copyroom.hut fileserver.copyroom.hut 9540
+ginger.girl.hut professor.hut 9164
+professor.hut laser3.copyroom.hut 8069
+ginger.girl.hut maryann.girl.hut 7456
+gilligan.crew.hut ginger.girl.hut 6976
+skipper.crew.hut fileserver.copyroom.hut 567
+gilligan.crew.hut skipper.crew.hut 5934
+laser3.copyroom.hut gilligan.crew.hut 1652
+ginger.girl.hut laser3.copyroom.hut 2566
+maryann.girl.hut fileserver.copyroom.hut 6703
+gilligan.crew.hut maryann.girl.hut 9205
+professor.hut gilligan.crew.hut 9173
+skipper.crew.hut ginger.girl.hut 1248
+maryann.girl.hut professor.hut 5773
+laser3.copyroom.hut ginger.girl.hut 8517
+fileserver.copyroom.hut laser3.copyroom.hut 8517
+skipper.crew.hut laser3.copyroom.hut 6701
+laser3.copyroom.hut ginger.girl.hut 2120
+fileserver.copyroom.hut ginger.girl.hut 537
+skipper.crew.hut ginger.girl.hut 6469
+ginger.girl.hut laser3.copyroom.hut 3920
+fileserver.copyroom.hut professor.hut 3135
+gilligan.crew.hut skipper.crew.hut 4321
+laser3.copyroom.hut fileserver.copyroom.hut 5752
+maryann.girl.hut maryann.girl.hut 9595
+skipper.crew.hut fileserver.copyroom.hut 4699
+laser3.copyroom.hut skipper.crew.hut 5616
+ginger.girl.hut gilligan.crew.hut 6728
+laser3.copyroom.hut ginger.girl.hut 7130
+laser3.copyroom.hut ginger.girl.hut 2541
+ginger.girl.hut ginger.girl.hut 9686
+laser3.copyroom.hut gilligan.crew.hut 3330
+fileserver.copyroom.hut professor.hut 2872
+maryann.girl.hut fileserver.copyroom.hut 4889
+skipper.crew.hut professor.hut 2791
+fileserver.copyroom.hut laser3.copyroom.hut 9204
+fileserver.copyroom.hut skipper.crew.hut 136
+ginger.girl.hut gilligan.crew.hut 9681
+maryann.girl.hut gilligan.crew.hut 3621
+gilligan.crew.hut professor.hut 4996
+fileserver.copyroom.hut gilligan.crew.hut 170
+maryann.girl.hut fileserver.copyroom.hut 2300
+maryann.girl.hut maryann.girl.hut 3073
+ginger.girl.hut professor.hut 8374
+maryann.girl.hut gilligan.crew.hut 3920
+gilligan.crew.hut skipper.crew.hut 1067
+gilligan.crew.hut maryann.girl.hut 6788
+laser3.copyroom.hut laser3.copyroom.hut 6795
+gilligan.crew.hut skipper.crew.hut 4654
+laser3.copyroom.hut maryann.girl.hut 3587
+fileserver.copyroom.hut skipper.crew.hut 3755
+fileserver.copyroom.hut laser3.copyroom.hut 9255
+professor.hut ginger.girl.hut 1106
+maryann.girl.hut laser3.copyroom.hut 7113
+maryann.girl.hut skipper.crew.hut 3745
+laser3.copyroom.hut ginger.girl.hut 7663
+skipper.crew.hut fileserver.copyroom.hut 223
+ginger.girl.hut laser3.copyroom.hut 7278
+maryann.girl.hut ginger.girl.hut 98
+skipper.crew.hut laser3.copyroom.hut 4666
+laser3.copyroom.hut ginger.girl.hut 2012
+gilligan.crew.hut professor.hut 7539
+maryann.girl.hut ginger.girl.hut 4653
+skipper.crew.hut ginger.girl.hut 1466
+fileserver.copyroom.hut laser3.copyroom.hut 9985
+maryann.girl.hut fileserver.copyroom.hut 4172
+laser3.copyroom.hut skipper.crew.hut 1940
+maryann.girl.hut professor.hut 3460
+skipper.crew.hut professor.hut 5579
+laser3.copyroom.hut gilligan.crew.hut 424
+laser3.copyroom.hut maryann.girl.hut 7043
+maryann.girl.hut laser3.copyroom.hut 597
+skipper.crew.hut ginger.girl.hut 4603
+gilligan.crew.hut gilligan.crew.hut 6937
+gilligan.crew.hut skipper.crew.hut 8880
+maryann.girl.hut maryann.girl.hut 3661
+ginger.girl.hut gilligan.crew.hut 6562
+professor.hut laser3.copyroom.hut 1724
+fileserver.copyroom.hut skipper.crew.hut 9876
+fileserver.copyroom.hut professor.hut 2886
+fileserver.copyroom.hut maryann.girl.hut 1841
+laser3.copyroom.hut skipper.crew.hut 992
+maryann.girl.hut maryann.girl.hut 6631
+maryann.girl.hut maryann.girl.hut 5312
+maryann.girl.hut maryann.girl.hut 7681
+maryann.girl.hut fileserver.copyroom.hut 5958
+gilligan.crew.hut professor.hut 907
+fileserver.copyroom.hut laser3.copyroom.hut 6165
+maryann.girl.hut maryann.girl.hut 7036
+gilligan.crew.hut professor.hut 634
+ginger.girl.hut laser3.copyroom.hut 8284
+gilligan.crew.hut professor.hut 4648
+gilligan.crew.hut skipper.crew.hut 7413
+skipper.crew.hut laser3.copyroom.hut 1138
+fileserver.copyroom.hut skipper.crew.hut 4360
+professor.hut professor.hut 8363
+ginger.girl.hut skipper.crew.hut 2335
+ginger.girl.hut ginger.girl.hut 9710
+ginger.girl.hut fileserver.copyroom.hut 7554
+skipper.crew.hut maryann.girl.hut 3961
+maryann.girl.hut laser3.copyroom.hut 826
+skipper.crew.hut skipper.crew.hut 1822
+skipper.crew.hut professor.hut 9100
+ginger.girl.hut gilligan.crew.hut 5457
+maryann.girl.hut maryann.girl.hut 301
+maryann.girl.hut maryann.girl.hut 4864
+laser3.copyroom.hut laser3.copyroom.hut 6587
+maryann.girl.hut maryann.girl.hut 183
+fileserver.copyroom.hut gilligan.crew.hut 2205
+skipper.crew.hut skipper.crew.hut 3351
+ginger.girl.hut fileserver.copyroom.hut 7847
+laser3.copyroom.hut laser3.copyroom.hut 5015
+gilligan.crew.hut ginger.girl.hut 4977
+fileserver.copyroom.hut fileserver.copyroom.hut 1617
+professor.hut professor.hut 8636
+professor.hut gilligan.crew.hut 9860
+maryann.girl.hut fileserver.copyroom.hut 4304
+professor.hut gilligan.crew.hut 8059
+ginger.girl.hut professor.hut 5502
+fileserver.copyroom.hut fileserver.copyroom.hut 9405
+gilligan.crew.hut professor.hut 646
+skipper.crew.hut gilligan.crew.hut 9157
+gilligan.crew.hut professor.hut 5773
+professor.hut gilligan.crew.hut 8728
+professor.hut skipper.crew.hut 9800
+fileserver.copyroom.hut skipper.crew.hut 301
+fileserver.copyroom.hut fileserver.copyroom.hut 9442
+skipper.crew.hut laser3.copyroom.hut 8
+skipper.crew.hut laser3.copyroom.hut 5377
+ginger.girl.hut ginger.girl.hut 8790
+ginger.girl.hut ginger.girl.hut 3921
+fileserver.copyroom.hut professor.hut 597
+ginger.girl.hut skipper.crew.hut 5961
+gilligan.crew.hut ginger.girl.hut 1696
+professor.hut ginger.girl.hut 6506
+gilligan.crew.hut maryann.girl.hut 2003
+ginger.girl.hut skipper.crew.hut 2972
+gilligan.crew.hut skipper.crew.hut 3513
+fileserver.copyroom.hut maryann.girl.hut 1723
+gilligan.crew.hut skipper.crew.hut 2699
+laser3.copyroom.hut professor.hut 3688
+professor.hut skipper.crew.hut 988
+maryann.girl.hut maryann.girl.hut 556
+fileserver.copyroom.hut ginger.girl.hut 8426
+fileserver.copyroom.hut laser3.copyroom.hut 3162
+laser3.copyroom.hut professor.hut 2122
+professor.hut fileserver.copyroom.hut 6246
+maryann.girl.hut fileserver.copyroom.hut 2989
+skipper.crew.hut laser3.copyroom.hut 6867
+maryann.girl.hut gilligan.crew.hut 4293
+maryann.girl.hut gilligan.crew.hut 761
+gilligan.crew.hut fileserver.copyroom.hut 2307
+gilligan.crew.hut fileserver.copyroom.hut 5799
+gilligan.crew.hut ginger.girl.hut 639
+skipper.crew.hut laser3.copyroom.hut 7143
+laser3.copyroom.hut laser3.copyroom.hut 9238
+skipper.crew.hut ginger.girl.hut 7516
+laser3.copyroom.hut professor.hut 1406
+maryann.girl.hut gilligan.crew.hut 4253
+laser3.copyroom.hut skipper.crew.hut 6699
+laser3.copyroom.hut maryann.girl.hut 380
+maryann.girl.hut maryann.girl.hut 6694
+fileserver.copyroom.hut laser3.copyroom.hut 1746
+fileserver.copyroom.hut gilligan.crew.hut 9972
+maryann.girl.hut gilligan.crew.hut 6363
+laser3.copyroom.hut fileserver.copyroom.hut 2098
+laser3.copyroom.hut professor.hut 7483
+gilligan.crew.hut ginger.girl.hut 4396
+gilligan.crew.hut gilligan.crew.hut 7552
+gilligan.crew.hut skipper.crew.hut 8710
+ginger.girl.hut fileserver.copyroom.hut 6552
+fileserver.copyroom.hut gilligan.crew.hut 3493
+gilligan.crew.hut skipper.crew.hut 7382
+professor.hut skipper.crew.hut 3078
+skipper.crew.hut skipper.crew.hut 8447
+skipper.crew.hut laser3.copyroom.hut 2013
+maryann.girl.hut fileserver.copyroom.hut 4166
+maryann.girl.hut skipper.crew.hut 1492
+ginger.girl.hut maryann.girl.hut 5795
+skipper.crew.hut maryann.girl.hut 3359
+professor.hut maryann.girl.hut 8393
+maryann.girl.hut gilligan.crew.hut 1443
+fileserver.copyroom.hut skipper.crew.hut 7030
+gilligan.crew.hut laser3.copyroom.hut 6966
+professor.hut maryann.girl.hut 8175
+maryann.girl.hut fileserver.copyroom.hut 2908
+fileserver.copyroom.hut professor.hut 5183
+skipper.crew.hut gilligan.crew.hut 6731
+ginger.girl.hut skipper.crew.hut 8051
+professor.hut professor.hut 4081
+professor.hut laser3.copyroom.hut 2917
+laser3.copyroom.hut gilligan.crew.hut 639
+professor.hut fileserver.copyroom.hut 3940
+skipper.crew.hut maryann.girl.hut 2954
+laser3.copyroom.hut maryann.girl.hut 8444
+maryann.girl.hut professor.hut 6006
+fileserver.copyroom.hut ginger.girl.hut 2519
+ginger.girl.hut maryann.girl.hut 4475
+ginger.girl.hut skipper.crew.hut 9975
+fileserver.copyroom.hut maryann.girl.hut 6754
+fileserver.copyroom.hut professor.hut 2609
+gilligan.crew.hut gilligan.crew.hut 6482
+professor.hut fileserver.copyroom.hut 6118
+ginger.girl.hut gilligan.crew.hut 4079
+laser3.copyroom.hut ginger.girl.hut 2738
+skipper.crew.hut ginger.girl.hut 8900
+laser3.copyroom.hut maryann.girl.hut 2604
+laser3.copyroom.hut laser3.copyroom.hut 613
+ginger.girl.hut maryann.girl.hut 5914
+ginger.girl.hut maryann.girl.hut 4345
+ginger.girl.hut gilligan.crew.hut 9963
+laser3.copyroom.hut maryann.girl.hut 9451
+professor.hut maryann.girl.hut 5507
+professor.hut ginger.girl.hut 2859
+gilligan.crew.hut fileserver.copyroom.hut 3360
+ginger.girl.hut maryann.girl.hut 2450
+fileserver.copyroom.hut gilligan.crew.hut 5147
+ginger.girl.hut fileserver.copyroom.hut 4561
+ginger.girl.hut skipper.crew.hut 2503
+laser3.copyroom.hut ginger.girl.hut 9198
+gilligan.crew.hut professor.hut 8610
+skipper.crew.hut fileserver.copyroom.hut 6004
+gilligan.crew.hut skipper.crew.hut 2138
+skipper.crew.hut skipper.crew.hut 6684
+professor.hut ginger.girl.hut 183
+ginger.girl.hut fileserver.copyroom.hut 5453
+skipper.crew.hut ginger.girl.hut 9564
+skipper.crew.hut ginger.girl.hut 5576
+skipper.crew.hut fileserver.copyroom.hut 1903
+skipper.crew.hut fileserver.copyroom.hut 9561
+skipper.crew.hut gilligan.crew.hut 5368
+laser3.copyroom.hut professor.hut 8293
+fileserver.copyroom.hut ginger.girl.hut 6195
+maryann.girl.hut professor.hut 6472
+professor.hut ginger.girl.hut 4175
+laser3.copyroom.hut maryann.girl.hut 5697
+ginger.girl.hut maryann.girl.hut 2649
+skipper.crew.hut fileserver.copyroom.hut 4492
+fileserver.copyroom.hut fileserver.copyroom.hut 9069
+ginger.girl.hut skipper.crew.hut 7971
+laser3.copyroom.hut ginger.girl.hut 8164
+laser3.copyroom.hut maryann.girl.hut 9587
+ginger.girl.hut maryann.girl.hut 2891
+gilligan.crew.hut fileserver.copyroom.hut 3350
+maryann.girl.hut laser3.copyroom.hut 4473
+gilligan.crew.hut laser3.copyroom.hut 1330
+gilligan.crew.hut laser3.copyroom.hut 2104
+maryann.girl.hut fileserver.copyroom.hut 9023
+ginger.girl.hut gilligan.crew.hut 5469
+fileserver.copyroom.hut gilligan.crew.hut 4803
+professor.hut skipper.crew.hut 533
+maryann.girl.hut maryann.girl.hut 7588
+laser3.copyroom.hut maryann.girl.hut 5026
+gilligan.crew.hut ginger.girl.hut 3685
+skipper.crew.hut maryann.girl.hut 5764
+skipper.crew.hut ginger.girl.hut 1262
+maryann.girl.hut professor.hut 670
+gilligan.crew.hut gilligan.crew.hut 7387
+fileserver.copyroom.hut laser3.copyroom.hut 6359
+ginger.girl.hut skipper.crew.hut 4197
+maryann.girl.hut ginger.girl.hut 7927
+skipper.crew.hut ginger.girl.hut 6994
+professor.hut maryann.girl.hut 2711
+skipper.crew.hut gilligan.crew.hut 373
+maryann.girl.hut fileserver.copyroom.hut 8135
+laser3.copyroom.hut professor.hut 1949
+gilligan.crew.hut gilligan.crew.hut 4001
+fileserver.copyroom.hut maryann.girl.hut 3594
+laser3.copyroom.hut gilligan.crew.hut 9642
+skipper.crew.hut maryann.girl.hut 2038
+laser3.copyroom.hut fileserver.copyroom.hut 2412
+laser3.copyroom.hut skipper.crew.hut 5362
+laser3.copyroom.hut maryann.girl.hut 9382
+gilligan.crew.hut professor.hut 9419
+ginger.girl.hut gilligan.crew.hut 8939
+laser3.copyroom.hut skipper.crew.hut 2068
+fileserver.copyroom.hut gilligan.crew.hut 1807
+professor.hut maryann.girl.hut 9194
+fileserver.copyroom.hut professor.hut 1520
+fileserver.copyroom.hut skipper.crew.hut 1777
+skipper.crew.hut maryann.girl.hut 2927
+gilligan.crew.hut laser3.copyroom.hut 7387
+fileserver.copyroom.hut skipper.crew.hut 902
+laser3.copyroom.hut ginger.girl.hut 2605
+laser3.copyroom.hut skipper.crew.hut 3973
+skipper.crew.hut maryann.girl.hut 4218
+skipper.crew.hut skipper.crew.hut 6121
+maryann.girl.hut maryann.girl.hut 4455
+ginger.girl.hut fileserver.copyroom.hut 6995
+ginger.girl.hut gilligan.crew.hut 2067
+ginger.girl.hut ginger.girl.hut 4467
+ginger.girl.hut ginger.girl.hut 6738
+fileserver.copyroom.hut maryann.girl.hut 958
+fileserver.copyroom.hut skipper.crew.hut 9661
+maryann.girl.hut ginger.girl.hut 8453
+ginger.girl.hut maryann.girl.hut 470
+maryann.girl.hut fileserver.copyroom.hut 3772
+skipper.crew.hut professor.hut 1425
+maryann.girl.hut maryann.girl.hut 9094
+laser3.copyroom.hut professor.hut 97
+fileserver.copyroom.hut skipper.crew.hut 2878
+ginger.girl.hut ginger.girl.hut 7742
+fileserver.copyroom.hut laser3.copyroom.hut 3558
+fileserver.copyroom.hut skipper.crew.hut 875
+maryann.girl.hut gilligan.crew.hut 3815
+gilligan.crew.hut laser3.copyroom.hut 3695
+fileserver.copyroom.hut ginger.girl.hut 65
+laser3.copyroom.hut laser3.copyroom.hut 1412
+maryann.girl.hut ginger.girl.hut 4456
+laser3.copyroom.hut skipper.crew.hut 670
+fileserver.copyroom.hut laser3.copyroom.hut 1386
+laser3.copyroom.hut professor.hut 8678
+skipper.crew.hut laser3.copyroom.hut 8922
+skipper.crew.hut professor.hut 3654
+professor.hut gilligan.crew.hut 4197
+maryann.girl.hut laser3.copyroom.hut 7806
+fileserver.copyroom.hut maryann.girl.hut 3510
+ginger.girl.hut maryann.girl.hut 3017
+gilligan.crew.hut gilligan.crew.hut 7088
+laser3.copyroom.hut ginger.girl.hut 242
+ginger.girl.hut ginger.girl.hut 1076
+maryann.girl.hut ginger.girl.hut 584
+fileserver.copyroom.hut maryann.girl.hut 8751
+laser3.copyroom.hut professor.hut 8181
+ginger.girl.hut ginger.girl.hut 6413
+skipper.crew.hut gilligan.crew.hut 7769
+laser3.copyroom.hut ginger.girl.hut 6684
+professor.hut fileserver.copyroom.hut 8050
+maryann.girl.hut ginger.girl.hut 4151
+laser3.copyroom.hut fileserver.copyroom.hut 6870
+ginger.girl.hut skipper.crew.hut 8747
+laser3.copyroom.hut maryann.girl.hut 1475
+professor.hut laser3.copyroom.hut 984
+professor.hut maryann.girl.hut 3172
+professor.hut skipper.crew.hut 6879
+skipper.crew.hut maryann.girl.hut 4373
+ginger.girl.hut maryann.girl.hut 3753
+maryann.girl.hut fileserver.copyroom.hut 4634
+skipper.crew.hut professor.hut 6848
+laser3.copyroom.hut maryann.girl.hut 7381
+maryann.girl.hut gilligan.crew.hut 4548
+maryann.girl.hut fileserver.copyroom.hut 1417
+maryann.girl.hut laser3.copyroom.hut 6619
+gilligan.crew.hut laser3.copyroom.hut 8033
+laser3.copyroom.hut skipper.crew.hut 9003
+ginger.girl.hut ginger.girl.hut 9674
+skipper.crew.hut fileserver.copyroom.hut 1113
+ginger.girl.hut fileserver.copyroom.hut 3974
+fileserver.copyroom.hut professor.hut 6945
+maryann.girl.hut professor.hut 2526
+laser3.copyroom.hut laser3.copyroom.hut 3940
+maryann.girl.hut fileserver.copyroom.hut 9911
+fileserver.copyroom.hut fileserver.copyroom.hut 8143
+professor.hut gilligan.crew.hut 7316
+fileserver.copyroom.hut laser3.copyroom.hut 9247
+professor.hut laser3.copyroom.hut 9418
+ginger.girl.hut professor.hut 4916
+skipper.crew.hut fileserver.copyroom.hut 7639
+skipper.crew.hut laser3.copyroom.hut 4882
+ginger.girl.hut laser3.copyroom.hut 7366
+fileserver.copyroom.hut maryann.girl.hut 7648
+gilligan.crew.hut ginger.girl.hut 3530
+maryann.girl.hut gilligan.crew.hut 3513
+professor.hut professor.hut 3589
+ginger.girl.hut skipper.crew.hut 5697
+laser3.copyroom.hut maryann.girl.hut 5084
+laser3.copyroom.hut professor.hut 1535
+gilligan.crew.hut laser3.copyroom.hut 3100
+laser3.copyroom.hut professor.hut 1989
+laser3.copyroom.hut skipper.crew.hut 6880
+ginger.girl.hut skipper.crew.hut 8136
+skipper.crew.hut ginger.girl.hut 109
+maryann.girl.hut ginger.girl.hut 3714
+skipper.crew.hut professor.hut 317
+professor.hut ginger.girl.hut 3902
+fileserver.copyroom.hut maryann.girl.hut 361
+skipper.crew.hut professor.hut 8345
+maryann.girl.hut ginger.girl.hut 2489
+ginger.girl.hut skipper.crew.hut 973
+laser3.copyroom.hut ginger.girl.hut 9798
+skipper.crew.hut skipper.crew.hut 5017
+ginger.girl.hut laser3.copyroom.hut 6903
+ginger.girl.hut ginger.girl.hut 4951
+laser3.copyroom.hut ginger.girl.hut 3628
+maryann.girl.hut laser3.copyroom.hut 7420
+professor.hut ginger.girl.hut 8293
+skipper.crew.hut ginger.girl.hut 3262
+ginger.girl.hut fileserver.copyroom.hut 3087
+maryann.girl.hut maryann.girl.hut 9531
+skipper.crew.hut ginger.girl.hut 235
+maryann.girl.hut ginger.girl.hut 174
+laser3.copyroom.hut gilligan.crew.hut 2167
+fileserver.copyroom.hut gilligan.crew.hut 8048
+maryann.girl.hut maryann.girl.hut 6347
+laser3.copyroom.hut laser3.copyroom.hut 5546
+fileserver.copyroom.hut skipper.crew.hut 1330
+skipper.crew.hut professor.hut 1333
+maryann.girl.hut ginger.girl.hut 8719
+gilligan.crew.hut gilligan.crew.hut 2076
+professor.hut professor.hut 2971
+skipper.crew.hut fileserver.copyroom.hut 9479
+fileserver.copyroom.hut gilligan.crew.hut 7918
+fileserver.copyroom.hut skipper.crew.hut 4328
+ginger.girl.hut fileserver.copyroom.hut 5346
+maryann.girl.hut ginger.girl.hut 1978
+maryann.girl.hut fileserver.copyroom.hut 8493
+professor.hut professor.hut 6322
+laser3.copyroom.hut professor.hut 9685
+ginger.girl.hut fileserver.copyroom.hut 1175
+laser3.copyroom.hut gilligan.crew.hut 460
+fileserver.copyroom.hut maryann.girl.hut 2647
+maryann.girl.hut fileserver.copyroom.hut 3820
+skipper.crew.hut skipper.crew.hut 1394
+ginger.girl.hut ginger.girl.hut 7682
+maryann.girl.hut professor.hut 9743
+gilligan.crew.hut maryann.girl.hut 5177
+gilligan.crew.hut laser3.copyroom.hut 5510
+ginger.girl.hut maryann.girl.hut 7410
+maryann.girl.hut gilligan.crew.hut 8597
+skipper.crew.hut maryann.girl.hut 4447
+maryann.girl.hut maryann.girl.hut 5062
+gilligan.crew.hut ginger.girl.hut 4412
+laser3.copyroom.hut laser3.copyroom.hut 1095
+gilligan.crew.hut skipper.crew.hut 7318
+gilligan.crew.hut ginger.girl.hut 4065
+skipper.crew.hut skipper.crew.hut 7978
+gilligan.crew.hut professor.hut 8830
+ginger.girl.hut laser3.copyroom.hut 6850
+fileserver.copyroom.hut professor.hut 5076
+ginger.girl.hut laser3.copyroom.hut 9582
+fileserver.copyroom.hut gilligan.crew.hut 3307
+maryann.girl.hut laser3.copyroom.hut 506
+ginger.girl.hut skipper.crew.hut 3190
+fileserver.copyroom.hut professor.hut 3836
+professor.hut skipper.crew.hut 9295
+gilligan.crew.hut ginger.girl.hut 8478
+gilligan.crew.hut skipper.crew.hut 6223
+laser3.copyroom.hut laser3.copyroom.hut 541
+maryann.girl.hut fileserver.copyroom.hut 1013
+laser3.copyroom.hut fileserver.copyroom.hut 9236
+professor.hut maryann.girl.hut 9140
+laser3.copyroom.hut skipper.crew.hut 2714
+gilligan.crew.hut laser3.copyroom.hut 2839
+skipper.crew.hut ginger.girl.hut 2694
+ginger.girl.hut fileserver.copyroom.hut 6502
+skipper.crew.hut ginger.girl.hut 5417
+fileserver.copyroom.hut skipper.crew.hut 9409
+ginger.girl.hut laser3.copyroom.hut 4861
+skipper.crew.hut ginger.girl.hut 7459
+professor.hut ginger.girl.hut 5495
+professor.hut maryann.girl.hut 2904
+maryann.girl.hut laser3.copyroom.hut 2290
+maryann.girl.hut gilligan.crew.hut 4428
+professor.hut maryann.girl.hut 9890
+fileserver.copyroom.hut fileserver.copyroom.hut 9869
+laser3.copyroom.hut ginger.girl.hut 2336
+ginger.girl.hut professor.hut 5308
+ginger.girl.hut ginger.girl.hut 3421
+gilligan.crew.hut fileserver.copyroom.hut 4286
+skipper.crew.hut ginger.girl.hut 1575
+maryann.girl.hut maryann.girl.hut 3083
+professor.hut laser3.copyroom.hut 8691
+gilligan.crew.hut maryann.girl.hut 4402
+skipper.crew.hut laser3.copyroom.hut 447
+professor.hut maryann.girl.hut 9146
+maryann.girl.hut maryann.girl.hut 5446
+ginger.girl.hut fileserver.copyroom.hut 5921
+maryann.girl.hut laser3.copyroom.hut 6084
+laser3.copyroom.hut skipper.crew.hut 3216
+fileserver.copyroom.hut laser3.copyroom.hut 2999
+gilligan.crew.hut skipper.crew.hut 4808
+fileserver.copyroom.hut ginger.girl.hut 6572
+professor.hut gilligan.crew.hut 3617
+gilligan.crew.hut gilligan.crew.hut 2690
+laser3.copyroom.hut fileserver.copyroom.hut 6765
+laser3.copyroom.hut maryann.girl.hut 716
+gilligan.crew.hut maryann.girl.hut 4666
+fileserver.copyroom.hut maryann.girl.hut 2290
+skipper.crew.hut gilligan.crew.hut 3379
+ginger.girl.hut ginger.girl.hut 5569
+ginger.girl.hut skipper.crew.hut 534
+professor.hut maryann.girl.hut 7225
+gilligan.crew.hut professor.hut 4178
+gilligan.crew.hut gilligan.crew.hut 4897
+gilligan.crew.hut ginger.girl.hut 7100
+professor.hut gilligan.crew.hut 4964
+skipper.crew.hut skipper.crew.hut 180
+professor.hut gilligan.crew.hut 1841
+laser3.copyroom.hut laser3.copyroom.hut 9693
+gilligan.crew.hut ginger.girl.hut 6235
+gilligan.crew.hut skipper.crew.hut 4767
+maryann.girl.hut skipper.crew.hut 7019
+gilligan.crew.hut professor.hut 7413
+maryann.girl.hut professor.hut 6310
+skipper.crew.hut laser3.copyroom.hut 7283
+professor.hut maryann.girl.hut 4026
+maryann.girl.hut skipper.crew.hut 5674
+skipper.crew.hut laser3.copyroom.hut 9747
+gilligan.crew.hut gilligan.crew.hut 296
+professor.hut laser3.copyroom.hut 36
+fileserver.copyroom.hut gilligan.crew.hut 2215
+ginger.girl.hut professor.hut 5039
+fileserver.copyroom.hut fileserver.copyroom.hut 2895
+maryann.girl.hut laser3.copyroom.hut 3106
+laser3.copyroom.hut fileserver.copyroom.hut 6979
+gilligan.crew.hut fileserver.copyroom.hut 790
+ginger.girl.hut laser3.copyroom.hut 6210
+maryann.girl.hut ginger.girl.hut 5653
+gilligan.crew.hut skipper.crew.hut 9571
+skipper.crew.hut professor.hut 710
+professor.hut maryann.girl.hut 8052
+laser3.copyroom.hut skipper.crew.hut 7001
+skipper.crew.hut ginger.girl.hut 5683
+maryann.girl.hut fileserver.copyroom.hut 892
+gilligan.crew.hut fileserver.copyroom.hut 7379
+gilligan.crew.hut gilligan.crew.hut 6030
+laser3.copyroom.hut skipper.crew.hut 4618
+laser3.copyroom.hut skipper.crew.hut 3927
+skipper.crew.hut fileserver.copyroom.hut 5468
+laser3.copyroom.hut laser3.copyroom.hut 7920
+gilligan.crew.hut gilligan.crew.hut 7303
+laser3.copyroom.hut professor.hut 1369
+ginger.girl.hut fileserver.copyroom.hut 4932
+skipper.crew.hut fileserver.copyroom.hut 9372
+skipper.crew.hut skipper.crew.hut 8778
+fileserver.copyroom.hut gilligan.crew.hut 9149
+ginger.girl.hut skipper.crew.hut 4253
+fileserver.copyroom.hut professor.hut 2902
+skipper.crew.hut laser3.copyroom.hut 1836
+maryann.girl.hut maryann.girl.hut 1749
+professor.hut laser3.copyroom.hut 9518
+fileserver.copyroom.hut skipper.crew.hut 9133
+fileserver.copyroom.hut skipper.crew.hut 2140
+professor.hut skipper.crew.hut 6383
+maryann.girl.hut maryann.girl.hut 5490
+maryann.girl.hut maryann.girl.hut 3058
+laser3.copyroom.hut professor.hut 7796
+ginger.girl.hut professor.hut 1131
+ginger.girl.hut fileserver.copyroom.hut 9974
+professor.hut ginger.girl.hut 5857
+fileserver.copyroom.hut fileserver.copyroom.hut 3051
+fileserver.copyroom.hut laser3.copyroom.hut 2878
+fileserver.copyroom.hut gilligan.crew.hut 2184
+laser3.copyroom.hut fileserver.copyroom.hut 3065
+skipper.crew.hut professor.hut 1694
+gilligan.crew.hut professor.hut 6031
+ginger.girl.hut professor.hut 2190
+skipper.crew.hut professor.hut 5959
+professor.hut laser3.copyroom.hut 8173
+skipper.crew.hut professor.hut 9234
+maryann.girl.hut ginger.girl.hut 2720
+fileserver.copyroom.hut fileserver.copyroom.hut 9406
+laser3.copyroom.hut laser3.copyroom.hut 5685
+skipper.crew.hut professor.hut 9587
+professor.hut laser3.copyroom.hut 1003
+fileserver.copyroom.hut skipper.crew.hut 2889
+skipper.crew.hut gilligan.crew.hut 111
+laser3.copyroom.hut gilligan.crew.hut 6052
+fileserver.copyroom.hut laser3.copyroom.hut 9885
+laser3.copyroom.hut ginger.girl.hut 3763
+laser3.copyroom.hut maryann.girl.hut 6065
+laser3.copyroom.hut laser3.copyroom.hut 1641
+laser3.copyroom.hut fileserver.copyroom.hut 8152
+skipper.crew.hut ginger.girl.hut 3276
+maryann.girl.hut laser3.copyroom.hut 8317
+gilligan.crew.hut gilligan.crew.hut 7451
+ginger.girl.hut gilligan.crew.hut 7508
+laser3.copyroom.hut gilligan.crew.hut 6813
+skipper.crew.hut professor.hut 4984
+gilligan.crew.hut professor.hut 7397
+gilligan.crew.hut gilligan.crew.hut 1692
+skipper.crew.hut professor.hut 3669
+maryann.girl.hut skipper.crew.hut 2188
+gilligan.crew.hut professor.hut 6334
+maryann.girl.hut professor.hut 4034
+fileserver.copyroom.hut skipper.crew.hut 7435
+laser3.copyroom.hut maryann.girl.hut 7055
+professor.hut maryann.girl.hut 3884
+skipper.crew.hut gilligan.crew.hut 6902
+skipper.crew.hut ginger.girl.hut 2537
+professor.hut maryann.girl.hut 3257
+professor.hut ginger.girl.hut 3377
+maryann.girl.hut gilligan.crew.hut 6776
+laser3.copyroom.hut laser3.copyroom.hut 3068
+fileserver.copyroom.hut ginger.girl.hut 1603
+ginger.girl.hut laser3.copyroom.hut 8497
+skipper.crew.hut fileserver.copyroom.hut 5409
+skipper.crew.hut fileserver.copyroom.hut 7064
+gilligan.crew.hut ginger.girl.hut 5955
+fileserver.copyroom.hut gilligan.crew.hut 7151
+fileserver.copyroom.hut skipper.crew.hut 2178
+ginger.girl.hut skipper.crew.hut 8588
+laser3.copyroom.hut skipper.crew.hut 9993
+ginger.girl.hut fileserver.copyroom.hut 2316
+ginger.girl.hut maryann.girl.hut 8301
+maryann.girl.hut fileserver.copyroom.hut 5187
+ginger.girl.hut professor.hut 3789
+gilligan.crew.hut maryann.girl.hut 6730
+ginger.girl.hut fileserver.copyroom.hut 6246
+fileserver.copyroom.hut ginger.girl.hut 3692
+fileserver.copyroom.hut skipper.crew.hut 5905
+professor.hut skipper.crew.hut 2795
+fileserver.copyroom.hut laser3.copyroom.hut 44
+professor.hut laser3.copyroom.hut 115
+ginger.girl.hut ginger.girl.hut 9740
+maryann.girl.hut gilligan.crew.hut 478
+skipper.crew.hut gilligan.crew.hut 5269
+fileserver.copyroom.hut laser3.copyroom.hut 2270
+laser3.copyroom.hut professor.hut 4500
+ginger.girl.hut professor.hut 5729
+gilligan.crew.hut maryann.girl.hut 3438
+laser3.copyroom.hut professor.hut 7309
+professor.hut skipper.crew.hut 6388
+fileserver.copyroom.hut gilligan.crew.hut 5503
+ginger.girl.hut maryann.girl.hut 142
+skipper.crew.hut gilligan.crew.hut 1720
+maryann.girl.hut fileserver.copyroom.hut 4228
+fileserver.copyroom.hut ginger.girl.hut 5183
+ginger.girl.hut gilligan.crew.hut 1306
+maryann.girl.hut maryann.girl.hut 2589
+ginger.girl.hut ginger.girl.hut 2670
+professor.hut skipper.crew.hut 1504
+ginger.girl.hut gilligan.crew.hut 7958
+ginger.girl.hut ginger.girl.hut 5578
+professor.hut maryann.girl.hut 2471
+gilligan.crew.hut skipper.crew.hut 2247
+fileserver.copyroom.hut maryann.girl.hut 8326
+fileserver.copyroom.hut gilligan.crew.hut 4660
+skipper.crew.hut fileserver.copyroom.hut 203
+professor.hut skipper.crew.hut 374
+maryann.girl.hut skipper.crew.hut 2074
+skipper.crew.hut laser3.copyroom.hut 9147
+laser3.copyroom.hut ginger.girl.hut 3401
+fileserver.copyroom.hut fileserver.copyroom.hut 9109
+ginger.girl.hut maryann.girl.hut 6341
+professor.hut maryann.girl.hut 5885
+skipper.crew.hut laser3.copyroom.hut 2884
+gilligan.crew.hut laser3.copyroom.hut 9068
+gilligan.crew.hut laser3.copyroom.hut 6619
+gilligan.crew.hut maryann.girl.hut 5100
+maryann.girl.hut laser3.copyroom.hut 3255
+professor.hut ginger.girl.hut 4052
+laser3.copyroom.hut fileserver.copyroom.hut 8511
+fileserver.copyroom.hut laser3.copyroom.hut 1656
+ginger.girl.hut skipper.crew.hut 8906
+laser3.copyroom.hut fileserver.copyroom.hut 7745
+professor.hut skipper.crew.hut 3307
+laser3.copyroom.hut skipper.crew.hut 4239
+professor.hut professor.hut 4776
+professor.hut fileserver.copyroom.hut 5437
+gilligan.crew.hut skipper.crew.hut 1984
+skipper.crew.hut fileserver.copyroom.hut 1110
+gilligan.crew.hut gilligan.crew.hut 4470
+gilligan.crew.hut professor.hut 8205
+skipper.crew.hut skipper.crew.hut 7547
+professor.hut professor.hut 5747
+professor.hut skipper.crew.hut 8790
+gilligan.crew.hut fileserver.copyroom.hut 8708
+professor.hut fileserver.copyroom.hut 5188
+skipper.crew.hut professor.hut 353
+ginger.girl.hut laser3.copyroom.hut 3260
+professor.hut maryann.girl.hut 9027
+fileserver.copyroom.hut ginger.girl.hut 7136
+professor.hut professor.hut 1358
+maryann.girl.hut professor.hut 6788
+skipper.crew.hut ginger.girl.hut 9859
+ginger.girl.hut professor.hut 4503
+maryann.girl.hut skipper.crew.hut 3607
+ginger.girl.hut professor.hut 5282
+maryann.girl.hut maryann.girl.hut 3698
+fileserver.copyroom.hut skipper.crew.hut 306
+laser3.copyroom.hut fileserver.copyroom.hut 8880
+ginger.girl.hut gilligan.crew.hut 3983
+professor.hut maryann.girl.hut 1579
+fileserver.copyroom.hut fileserver.copyroom.hut 5903
+fileserver.copyroom.hut laser3.copyroom.hut 7987
+fileserver.copyroom.hut professor.hut 2834
+professor.hut ginger.girl.hut 6287
+fileserver.copyroom.hut ginger.girl.hut 571
+gilligan.crew.hut professor.hut 2504
+maryann.girl.hut ginger.girl.hut 7594
+ginger.girl.hut ginger.girl.hut 4586
+gilligan.crew.hut professor.hut 158
+maryann.girl.hut gilligan.crew.hut 3767
+laser3.copyroom.hut fileserver.copyroom.hut 266
+laser3.copyroom.hut gilligan.crew.hut 5974
+professor.hut skipper.crew.hut 3684
+professor.hut gilligan.crew.hut 182
+fileserver.copyroom.hut maryann.girl.hut 94
+maryann.girl.hut skipper.crew.hut 6355
+skipper.crew.hut fileserver.copyroom.hut 5427
+maryann.girl.hut fileserver.copyroom.hut 4123
+laser3.copyroom.hut gilligan.crew.hut 7740
+gilligan.crew.hut laser3.copyroom.hut 6876
+laser3.copyroom.hut professor.hut 7051
+skipper.crew.hut ginger.girl.hut 2250
+ginger.girl.hut gilligan.crew.hut 1780
+gilligan.crew.hut gilligan.crew.hut 2561
+gilligan.crew.hut professor.hut 8413
+fileserver.copyroom.hut maryann.girl.hut 6405
+maryann.girl.hut gilligan.crew.hut 7466
+fileserver.copyroom.hut skipper.crew.hut 3245
+maryann.girl.hut laser3.copyroom.hut 4211
+laser3.copyroom.hut maryann.girl.hut 197
+skipper.crew.hut skipper.crew.hut 1415
+skipper.crew.hut maryann.girl.hut 3146
+gilligan.crew.hut laser3.copyroom.hut 4893
+professor.hut skipper.crew.hut 965
+fileserver.copyroom.hut gilligan.crew.hut 3812
+professor.hut laser3.copyroom.hut 2152
+professor.hut laser3.copyroom.hut 6382
+gilligan.crew.hut professor.hut 238
+professor.hut professor.hut 7689
+maryann.girl.hut laser3.copyroom.hut 4939
+laser3.copyroom.hut ginger.girl.hut 2141
+ginger.girl.hut laser3.copyroom.hut 3522
+professor.hut professor.hut 6340
+maryann.girl.hut maryann.girl.hut 6221
+gilligan.crew.hut laser3.copyroom.hut 9707
+maryann.girl.hut maryann.girl.hut 2959
+ginger.girl.hut skipper.crew.hut 7991
+gilligan.crew.hut skipper.crew.hut 6158
+maryann.girl.hut maryann.girl.hut 9775
+fileserver.copyroom.hut professor.hut 2894
+laser3.copyroom.hut fileserver.copyroom.hut 7100
+professor.hut professor.hut 7925
+gilligan.crew.hut professor.hut 632
+maryann.girl.hut professor.hut 7928
+fileserver.copyroom.hut fileserver.copyroom.hut 4371
+professor.hut fileserver.copyroom.hut 5084
+fileserver.copyroom.hut maryann.girl.hut 1654
+gilligan.crew.hut laser3.copyroom.hut 7750
+laser3.copyroom.hut skipper.crew.hut 544
+fileserver.copyroom.hut gilligan.crew.hut 4302
+ginger.girl.hut skipper.crew.hut 2816
+laser3.copyroom.hut ginger.girl.hut 653
+laser3.copyroom.hut gilligan.crew.hut 9687
+ginger.girl.hut gilligan.crew.hut 5437
+maryann.girl.hut skipper.crew.hut 9806
+gilligan.crew.hut gilligan.crew.hut 3769
+professor.hut ginger.girl.hut 6104
+maryann.girl.hut gilligan.crew.hut 6721
+fileserver.copyroom.hut ginger.girl.hut 7175
+ginger.girl.hut professor.hut 8775
+maryann.girl.hut professor.hut 9699
+ginger.girl.hut fileserver.copyroom.hut 4811
+professor.hut fileserver.copyroom.hut 1894
+ginger.girl.hut maryann.girl.hut 6281
+laser3.copyroom.hut fileserver.copyroom.hut 9835
+gilligan.crew.hut gilligan.crew.hut 4586
+professor.hut gilligan.crew.hut 1992
+laser3.copyroom.hut fileserver.copyroom.hut 4731
+fileserver.copyroom.hut maryann.girl.hut 9353
+maryann.girl.hut fileserver.copyroom.hut 9675
+gilligan.crew.hut maryann.girl.hut 6401
+ginger.girl.hut laser3.copyroom.hut 3069
+ginger.girl.hut professor.hut 2632
+ginger.girl.hut ginger.girl.hut 4505
+maryann.girl.hut skipper.crew.hut 2605
+skipper.crew.hut laser3.copyroom.hut 3516
+gilligan.crew.hut ginger.girl.hut 3653
+skipper.crew.hut ginger.girl.hut 1119
+ginger.girl.hut gilligan.crew.hut 4629
+ginger.girl.hut gilligan.crew.hut 7599
+laser3.copyroom.hut skipper.crew.hut 8228
+professor.hut laser3.copyroom.hut 7578
+gilligan.crew.hut ginger.girl.hut 9894
+laser3.copyroom.hut ginger.girl.hut 6407
+laser3.copyroom.hut ginger.girl.hut 5363
+gilligan.crew.hut maryann.girl.hut 9561
+maryann.girl.hut gilligan.crew.hut 5698
+professor.hut skipper.crew.hut 4403
+gilligan.crew.hut gilligan.crew.hut 4672
+skipper.crew.hut professor.hut 6971
+fileserver.copyroom.hut laser3.copyroom.hut 3728
+ginger.girl.hut fileserver.copyroom.hut 4738
+ginger.girl.hut gilligan.crew.hut 3315
+fileserver.copyroom.hut professor.hut 4169
+maryann.girl.hut skipper.crew.hut 9969
+fileserver.copyroom.hut laser3.copyroom.hut 5799
+professor.hut laser3.copyroom.hut 8069
+fileserver.copyroom.hut laser3.copyroom.hut 5959
+skipper.crew.hut professor.hut 1649
+maryann.girl.hut ginger.girl.hut 1976
+skipper.crew.hut ginger.girl.hut 6319
+fileserver.copyroom.hut professor.hut 3687
+professor.hut skipper.crew.hut 7782
+maryann.girl.hut gilligan.crew.hut 2478
+maryann.girl.hut professor.hut 7205
+skipper.crew.hut skipper.crew.hut 3002
+laser3.copyroom.hut professor.hut 4341
+ginger.girl.hut fileserver.copyroom.hut 7421
+laser3.copyroom.hut skipper.crew.hut 8586
+professor.hut gilligan.crew.hut 9735
+fileserver.copyroom.hut fileserver.copyroom.hut 4069
+ginger.girl.hut professor.hut 9822
+gilligan.crew.hut ginger.girl.hut 2174
+skipper.crew.hut ginger.girl.hut 5284
+skipper.crew.hut laser3.copyroom.hut 7957
+skipper.crew.hut maryann.girl.hut 875
+professor.hut ginger.girl.hut 3160
+fileserver.copyroom.hut professor.hut 1484
+ginger.girl.hut skipper.crew.hut 5180
+ginger.girl.hut skipper.crew.hut 7038
+fileserver.copyroom.hut gilligan.crew.hut 9320
+gilligan.crew.hut laser3.copyroom.hut 5448
+maryann.girl.hut fileserver.copyroom.hut 9017
+gilligan.crew.hut maryann.girl.hut 4624
+professor.hut ginger.girl.hut 148
+fileserver.copyroom.hut ginger.girl.hut 1871
+laser3.copyroom.hut maryann.girl.hut 2326
+skipper.crew.hut laser3.copyroom.hut 7381
+laser3.copyroom.hut maryann.girl.hut 8662
+maryann.girl.hut fileserver.copyroom.hut 7975
+maryann.girl.hut maryann.girl.hut 475
+professor.hut professor.hut 6912
+fileserver.copyroom.hut ginger.girl.hut 6490
+gilligan.crew.hut fileserver.copyroom.hut 187
+professor.hut professor.hut 6224
+fileserver.copyroom.hut skipper.crew.hut 4868
+laser3.copyroom.hut maryann.girl.hut 8566
+laser3.copyroom.hut gilligan.crew.hut 1811
+fileserver.copyroom.hut laser3.copyroom.hut 7591
+fileserver.copyroom.hut professor.hut 0
+maryann.girl.hut maryann.girl.hut 3709
+fileserver.copyroom.hut fileserver.copyroom.hut 4051
+ginger.girl.hut fileserver.copyroom.hut 9920
+ginger.girl.hut laser3.copyroom.hut 5919
+professor.hut laser3.copyroom.hut 5657
+ginger.girl.hut skipper.crew.hut 4486
+ginger.girl.hut laser3.copyroom.hut 9469
+professor.hut maryann.girl.hut 5609
+ginger.girl.hut laser3.copyroom.hut 9363
+maryann.girl.hut maryann.girl.hut 5320
+fileserver.copyroom.hut laser3.copyroom.hut 1361
+fileserver.copyroom.hut skipper.crew.hut 3391
+maryann.girl.hut maryann.girl.hut 5910
+fileserver.copyroom.hut gilligan.crew.hut 9964
+professor.hut skipper.crew.hut 6581
+laser3.copyroom.hut ginger.girl.hut 1315
+skipper.crew.hut ginger.girl.hut 7033
+maryann.girl.hut gilligan.crew.hut 9504
+laser3.copyroom.hut ginger.girl.hut 4038
+ginger.girl.hut gilligan.crew.hut 5364
+maryann.girl.hut maryann.girl.hut 5489
+fileserver.copyroom.hut ginger.girl.hut 7984
+professor.hut laser3.copyroom.hut 6168
+ginger.girl.hut ginger.girl.hut 3071
+professor.hut ginger.girl.hut 8320
+skipper.crew.hut professor.hut 6705
+skipper.crew.hut skipper.crew.hut 2993
+fileserver.copyroom.hut fileserver.copyroom.hut 1927
+professor.hut gilligan.crew.hut 7217
+fileserver.copyroom.hut maryann.girl.hut 6528
+fileserver.copyroom.hut fileserver.copyroom.hut 6231
+fileserver.copyroom.hut ginger.girl.hut 1653
+ginger.girl.hut ginger.girl.hut 8799
+gilligan.crew.hut ginger.girl.hut 4000
+fileserver.copyroom.hut ginger.girl.hut 4607
+gilligan.crew.hut professor.hut 25
+gilligan.crew.hut maryann.girl.hut 552
+laser3.copyroom.hut gilligan.crew.hut 1444
+fileserver.copyroom.hut skipper.crew.hut 4808
+gilligan.crew.hut professor.hut 4324
+maryann.girl.hut gilligan.crew.hut 7941
+maryann.girl.hut professor.hut 4460
+gilligan.crew.hut gilligan.crew.hut 1938
+maryann.girl.hut fileserver.copyroom.hut 9156
+fileserver.copyroom.hut ginger.girl.hut 9648
+professor.hut ginger.girl.hut 8014
+maryann.girl.hut ginger.girl.hut 4402
+professor.hut ginger.girl.hut 7493
+maryann.girl.hut maryann.girl.hut 793
+laser3.copyroom.hut skipper.crew.hut 6827
+skipper.crew.hut gilligan.crew.hut 2877
+laser3.copyroom.hut skipper.crew.hut 9396
+fileserver.copyroom.hut ginger.girl.hut 5457
+skipper.crew.hut laser3.copyroom.hut 8498
+gilligan.crew.hut professor.hut 1797
+maryann.girl.hut skipper.crew.hut 1541
+maryann.girl.hut maryann.girl.hut 6697
+ginger.girl.hut fileserver.copyroom.hut 2006
+laser3.copyroom.hut maryann.girl.hut 6099
+fileserver.copyroom.hut gilligan.crew.hut 7855
+ginger.girl.hut skipper.crew.hut 3863
+laser3.copyroom.hut ginger.girl.hut 7353
+maryann.girl.hut fileserver.copyroom.hut 1019
+fileserver.copyroom.hut skipper.crew.hut 5320
+skipper.crew.hut maryann.girl.hut 7475
+maryann.girl.hut laser3.copyroom.hut 8197
+skipper.crew.hut gilligan.crew.hut 9692
+skipper.crew.hut fileserver.copyroom.hut 207
+fileserver.copyroom.hut fileserver.copyroom.hut 2644
+fileserver.copyroom.hut professor.hut 1920
+maryann.girl.hut gilligan.crew.hut 1992
+professor.hut laser3.copyroom.hut 5099
+ginger.girl.hut fileserver.copyroom.hut 4353
+professor.hut laser3.copyroom.hut 5563
+gilligan.crew.hut skipper.crew.hut 9414
+skipper.crew.hut fileserver.copyroom.hut 454
+laser3.copyroom.hut maryann.girl.hut 5443
+maryann.girl.hut professor.hut 928
+maryann.girl.hut fileserver.copyroom.hut 9282
+ginger.girl.hut maryann.girl.hut 974
+maryann.girl.hut gilligan.crew.hut 9431
+maryann.girl.hut gilligan.crew.hut 3822
+laser3.copyroom.hut ginger.girl.hut 7782
+maryann.girl.hut ginger.girl.hut 4498
+laser3.copyroom.hut professor.hut 1089
+fileserver.copyroom.hut gilligan.crew.hut 6116
+laser3.copyroom.hut gilligan.crew.hut 4526
+skipper.crew.hut gilligan.crew.hut 2874
+skipper.crew.hut gilligan.crew.hut 3728
+laser3.copyroom.hut laser3.copyroom.hut 2121
+maryann.girl.hut laser3.copyroom.hut 1699
+professor.hut maryann.girl.hut 1465
+maryann.girl.hut professor.hut 1422
+professor.hut fileserver.copyroom.hut 3730
+laser3.copyroom.hut gilligan.crew.hut 2353
+professor.hut professor.hut 8396
+ginger.girl.hut laser3.copyroom.hut 9742
+maryann.girl.hut laser3.copyroom.hut 9912
+gilligan.crew.hut laser3.copyroom.hut 4909
+professor.hut laser3.copyroom.hut 1045
+ginger.girl.hut maryann.girl.hut 256
+laser3.copyroom.hut maryann.girl.hut 2467
+gilligan.crew.hut professor.hut 3159
+laser3.copyroom.hut gilligan.crew.hut 5739
+fileserver.copyroom.hut laser3.copyroom.hut 2053
+ginger.girl.hut gilligan.crew.hut 394
+laser3.copyroom.hut ginger.girl.hut 2441
+professor.hut gilligan.crew.hut 5342
+gilligan.crew.hut fileserver.copyroom.hut 327
+fileserver.copyroom.hut gilligan.crew.hut 2747
+laser3.copyroom.hut skipper.crew.hut 6733
+laser3.copyroom.hut fileserver.copyroom.hut 6957
+professor.hut professor.hut 4784
+fileserver.copyroom.hut skipper.crew.hut 4329
+professor.hut professor.hut 7212
+gilligan.crew.hut skipper.crew.hut 9919
+fileserver.copyroom.hut fileserver.copyroom.hut 3946
+laser3.copyroom.hut skipper.crew.hut 8925
+skipper.crew.hut fileserver.copyroom.hut 8605
+ginger.girl.hut skipper.crew.hut 9651
+fileserver.copyroom.hut fileserver.copyroom.hut 9718
+skipper.crew.hut laser3.copyroom.hut 1738
+ginger.girl.hut skipper.crew.hut 4144
+gilligan.crew.hut ginger.girl.hut 829
+maryann.girl.hut professor.hut 6621
+maryann.girl.hut ginger.girl.hut 1213
+fileserver.copyroom.hut professor.hut 6037
+skipper.crew.hut ginger.girl.hut 9061
+laser3.copyroom.hut ginger.girl.hut 3492
+skipper.crew.hut skipper.crew.hut 2138
+maryann.girl.hut laser3.copyroom.hut 4578
+ginger.girl.hut gilligan.crew.hut 2506
+gilligan.crew.hut ginger.girl.hut 1194
+fileserver.copyroom.hut maryann.girl.hut 7691
+professor.hut skipper.crew.hut 2808
+laser3.copyroom.hut skipper.crew.hut 7301
+ginger.girl.hut fileserver.copyroom.hut 6687
+professor.hut professor.hut 519
+gilligan.crew.hut maryann.girl.hut 3311
+fileserver.copyroom.hut professor.hut 5346
+ginger.girl.hut maryann.girl.hut 2958
+professor.hut professor.hut 8824
+skipper.crew.hut maryann.girl.hut 1377
+maryann.girl.hut laser3.copyroom.hut 2182
+fileserver.copyroom.hut maryann.girl.hut 1609
+ginger.girl.hut professor.hut 6303
+laser3.copyroom.hut fileserver.copyroom.hut 2379
+gilligan.crew.hut laser3.copyroom.hut 1776
+skipper.crew.hut laser3.copyroom.hut 3852
+fileserver.copyroom.hut maryann.girl.hut 7378
+ginger.girl.hut gilligan.crew.hut 7611
+laser3.copyroom.hut gilligan.crew.hut 4719
+professor.hut gilligan.crew.hut 9333
+fileserver.copyroom.hut skipper.crew.hut 5948
+fileserver.copyroom.hut gilligan.crew.hut 9647
+professor.hut maryann.girl.hut 5464
+ginger.girl.hut fileserver.copyroom.hut 6142
+laser3.copyroom.hut gilligan.crew.hut 5552
+laser3.copyroom.hut laser3.copyroom.hut 7065
+fileserver.copyroom.hut skipper.crew.hut 2026
+gilligan.crew.hut skipper.crew.hut 9937
+gilligan.crew.hut skipper.crew.hut 6767
+laser3.copyroom.hut fileserver.copyroom.hut 6411
+maryann.girl.hut ginger.girl.hut 109
+professor.hut laser3.copyroom.hut 3018
+professor.hut gilligan.crew.hut 8495
+gilligan.crew.hut gilligan.crew.hut 2796
+skipper.crew.hut laser3.copyroom.hut 787
+fileserver.copyroom.hut skipper.crew.hut 2990
+skipper.crew.hut fileserver.copyroom.hut 9842
+gilligan.crew.hut laser3.copyroom.hut 6565
+maryann.girl.hut professor.hut 2041
+ginger.girl.hut maryann.girl.hut 5184
+gilligan.crew.hut professor.hut 9153
+laser3.copyroom.hut professor.hut 2851
+ginger.girl.hut skipper.crew.hut 6005
+laser3.copyroom.hut gilligan.crew.hut 8122
+professor.hut professor.hut 3659
+laser3.copyroom.hut professor.hut 368
+professor.hut skipper.crew.hut 4491
+fileserver.copyroom.hut skipper.crew.hut 8952
+maryann.girl.hut skipper.crew.hut 3646
+gilligan.crew.hut gilligan.crew.hut 947
+gilligan.crew.hut ginger.girl.hut 85
+skipper.crew.hut laser3.copyroom.hut 7975
+skipper.crew.hut laser3.copyroom.hut 7333
+professor.hut skipper.crew.hut 8592
+maryann.girl.hut maryann.girl.hut 1050
+laser3.copyroom.hut ginger.girl.hut 2361
+laser3.copyroom.hut fileserver.copyroom.hut 9013
+laser3.copyroom.hut skipper.crew.hut 6399
+laser3.copyroom.hut gilligan.crew.hut 8682
+maryann.girl.hut skipper.crew.hut 7994
+skipper.crew.hut professor.hut 2865
+fileserver.copyroom.hut laser3.copyroom.hut 7693
+ginger.girl.hut skipper.crew.hut 1372
+professor.hut laser3.copyroom.hut 1630
+maryann.girl.hut skipper.crew.hut 6293
+laser3.copyroom.hut laser3.copyroom.hut 9093
+skipper.crew.hut gilligan.crew.hut 1992
+professor.hut skipper.crew.hut 9373
+laser3.copyroom.hut maryann.girl.hut 9999
+laser3.copyroom.hut fileserver.copyroom.hut 3744
+laser3.copyroom.hut professor.hut 3671
+gilligan.crew.hut skipper.crew.hut 680
+gilligan.crew.hut professor.hut 1424
+laser3.copyroom.hut maryann.girl.hut 2219
+professor.hut skipper.crew.hut 3390
+gilligan.crew.hut ginger.girl.hut 2981
+gilligan.crew.hut skipper.crew.hut 4722
+fileserver.copyroom.hut gilligan.crew.hut 2134
+ginger.girl.hut gilligan.crew.hut 6004
+laser3.copyroom.hut professor.hut 1585
+fileserver.copyroom.hut ginger.girl.hut 4452
+ginger.girl.hut skipper.crew.hut 9604
+ginger.girl.hut maryann.girl.hut 1481
+fileserver.copyroom.hut maryann.girl.hut 3340
+professor.hut maryann.girl.hut 3414
+gilligan.crew.hut professor.hut 1476
+maryann.girl.hut maryann.girl.hut 1695
+professor.hut professor.hut 3635
+gilligan.crew.hut ginger.girl.hut 3921
+fileserver.copyroom.hut skipper.crew.hut 5763
+gilligan.crew.hut fileserver.copyroom.hut 6682
+fileserver.copyroom.hut professor.hut 2621
+skipper.crew.hut skipper.crew.hut 9047
+fileserver.copyroom.hut skipper.crew.hut 3848
+laser3.copyroom.hut gilligan.crew.hut 3553
+professor.hut gilligan.crew.hut 3183
+maryann.girl.hut skipper.crew.hut 8205
+professor.hut fileserver.copyroom.hut 5292
+fileserver.copyroom.hut maryann.girl.hut 9529
+ginger.girl.hut ginger.girl.hut 5211
+gilligan.crew.hut ginger.girl.hut 3611
+ginger.girl.hut maryann.girl.hut 9271
+ginger.girl.hut maryann.girl.hut 6799
+skipper.crew.hut laser3.copyroom.hut 5659
+gilligan.crew.hut maryann.girl.hut 8803
+maryann.girl.hut maryann.girl.hut 3894
+fileserver.copyroom.hut professor.hut 4812
+ginger.girl.hut fileserver.copyroom.hut 3711
+skipper.crew.hut maryann.girl.hut 2280
+professor.hut ginger.girl.hut 385
+gilligan.crew.hut laser3.copyroom.hut 1790
+maryann.girl.hut professor.hut 4978
+professor.hut professor.hut 2373
+skipper.crew.hut professor.hut 6177
+fileserver.copyroom.hut fileserver.copyroom.hut 3586
+ginger.girl.hut laser3.copyroom.hut 7178
+laser3.copyroom.hut professor.hut 9447
+professor.hut maryann.girl.hut 3477
+gilligan.crew.hut laser3.copyroom.hut 4735
+skipper.crew.hut professor.hut 4176
+gilligan.crew.hut skipper.crew.hut 8429
+laser3.copyroom.hut ginger.girl.hut 5443
+professor.hut professor.hut 3917
+maryann.girl.hut maryann.girl.hut 2085
+professor.hut ginger.girl.hut 4953
+gilligan.crew.hut fileserver.copyroom.hut 4390
+ginger.girl.hut ginger.girl.hut 7680
+laser3.copyroom.hut gilligan.crew.hut 4309
+professor.hut gilligan.crew.hut 8230
+professor.hut skipper.crew.hut 7885
+ginger.girl.hut skipper.crew.hut 1010
+professor.hut maryann.girl.hut 5819
+laser3.copyroom.hut fileserver.copyroom.hut 371
+skipper.crew.hut gilligan.crew.hut 2460
+professor.hut skipper.crew.hut 8008
+fileserver.copyroom.hut gilligan.crew.hut 6644
+gilligan.crew.hut professor.hut 7443
+ginger.girl.hut maryann.girl.hut 8065
+professor.hut laser3.copyroom.hut 8072
+gilligan.crew.hut skipper.crew.hut 1579
+gilligan.crew.hut ginger.girl.hut 240
+fileserver.copyroom.hut gilligan.crew.hut 2354
+professor.hut gilligan.crew.hut 2652
+ginger.girl.hut fileserver.copyroom.hut 5760
+gilligan.crew.hut gilligan.crew.hut 627
+maryann.girl.hut gilligan.crew.hut 4138
+skipper.crew.hut ginger.girl.hut 920
+fileserver.copyroom.hut gilligan.crew.hut 2242
+fileserver.copyroom.hut maryann.girl.hut 1569
+fileserver.copyroom.hut skipper.crew.hut 2665
+maryann.girl.hut maryann.girl.hut 3074
+ginger.girl.hut fileserver.copyroom.hut 8489
+professor.hut ginger.girl.hut 9512
+ginger.girl.hut laser3.copyroom.hut 97
+ginger.girl.hut ginger.girl.hut 1920
+fileserver.copyroom.hut fileserver.copyroom.hut 9183
+gilligan.crew.hut professor.hut 6834
+gilligan.crew.hut skipper.crew.hut 1257
+ginger.girl.hut laser3.copyroom.hut 3872
+fileserver.copyroom.hut skipper.crew.hut 5669
+professor.hut ginger.girl.hut 9387
+ginger.girl.hut professor.hut 8288
+fileserver.copyroom.hut professor.hut 2388
+skipper.crew.hut gilligan.crew.hut 130
+maryann.girl.hut fileserver.copyroom.hut 1001
+maryann.girl.hut professor.hut 671
+skipper.crew.hut fileserver.copyroom.hut 633
+professor.hut skipper.crew.hut 325
+professor.hut maryann.girl.hut 8718
+ginger.girl.hut maryann.girl.hut 8639
+professor.hut fileserver.copyroom.hut 7029
+maryann.girl.hut gilligan.crew.hut 7911
+maryann.girl.hut ginger.girl.hut 1880
+laser3.copyroom.hut professor.hut 2438
+fileserver.copyroom.hut professor.hut 1314
+ginger.girl.hut professor.hut 7295
+maryann.girl.hut ginger.girl.hut 6335
+professor.hut maryann.girl.hut 1372
+professor.hut maryann.girl.hut 9393
+fileserver.copyroom.hut maryann.girl.hut 9441
+professor.hut gilligan.crew.hut 5299
+maryann.girl.hut gilligan.crew.hut 6833
+laser3.copyroom.hut gilligan.crew.hut 61
+laser3.copyroom.hut ginger.girl.hut 5376
+fileserver.copyroom.hut professor.hut 8198
+gilligan.crew.hut fileserver.copyroom.hut 7566
+skipper.crew.hut laser3.copyroom.hut 3679
+maryann.girl.hut professor.hut 1414
+maryann.girl.hut ginger.girl.hut 2225
+gilligan.crew.hut laser3.copyroom.hut 4520
+ginger.girl.hut gilligan.crew.hut 2941
+skipper.crew.hut ginger.girl.hut 3824
+fileserver.copyroom.hut gilligan.crew.hut 1845
+maryann.girl.hut maryann.girl.hut 6628
+laser3.copyroom.hut gilligan.crew.hut 5476
+fileserver.copyroom.hut skipper.crew.hut 6065
+laser3.copyroom.hut maryann.girl.hut 4045
+maryann.girl.hut professor.hut 8581
+gilligan.crew.hut maryann.girl.hut 1535
+maryann.girl.hut ginger.girl.hut 469
+laser3.copyroom.hut ginger.girl.hut 1182
+maryann.girl.hut maryann.girl.hut 1678
+laser3.copyroom.hut laser3.copyroom.hut 2246
+laser3.copyroom.hut laser3.copyroom.hut 6856
+skipper.crew.hut skipper.crew.hut 4707
+skipper.crew.hut maryann.girl.hut 9736
+gilligan.crew.hut ginger.girl.hut 2793
+professor.hut ginger.girl.hut 8841
+professor.hut gilligan.crew.hut 7252
+laser3.copyroom.hut ginger.girl.hut 2961
+fileserver.copyroom.hut maryann.girl.hut 3525
+laser3.copyroom.hut skipper.crew.hut 180
+fileserver.copyroom.hut gilligan.crew.hut 4389
+maryann.girl.hut laser3.copyroom.hut 3975
+professor.hut maryann.girl.hut 1911
+maryann.girl.hut maryann.girl.hut 6521
+professor.hut gilligan.crew.hut 2009
+laser3.copyroom.hut skipper.crew.hut 5702
+fileserver.copyroom.hut ginger.girl.hut 865
+laser3.copyroom.hut maryann.girl.hut 5082
+maryann.girl.hut maryann.girl.hut 8736
+ginger.girl.hut skipper.crew.hut 487
+professor.hut ginger.girl.hut 9292
+fileserver.copyroom.hut laser3.copyroom.hut 6425
+fileserver.copyroom.hut maryann.girl.hut 2017
+gilligan.crew.hut fileserver.copyroom.hut 2287
+skipper.crew.hut fileserver.copyroom.hut 8614
+fileserver.copyroom.hut gilligan.crew.hut 8602
+ginger.girl.hut ginger.girl.hut 529
+skipper.crew.hut professor.hut 8601
+skipper.crew.hut laser3.copyroom.hut 2910
+maryann.girl.hut professor.hut 6913
+maryann.girl.hut professor.hut 7263
+professor.hut skipper.crew.hut 9358
+fileserver.copyroom.hut laser3.copyroom.hut 8552
+laser3.copyroom.hut ginger.girl.hut 9593
+skipper.crew.hut laser3.copyroom.hut 6915
+skipper.crew.hut maryann.girl.hut 5464
+fileserver.copyroom.hut gilligan.crew.hut 3567
+skipper.crew.hut maryann.girl.hut 5520
+ginger.girl.hut ginger.girl.hut 6987
+gilligan.crew.hut laser3.copyroom.hut 8241
+laser3.copyroom.hut laser3.copyroom.hut 4328
+gilligan.crew.hut laser3.copyroom.hut 8898
+professor.hut fileserver.copyroom.hut 5026
+skipper.crew.hut professor.hut 1385
+skipper.crew.hut maryann.girl.hut 2658
+fileserver.copyroom.hut gilligan.crew.hut 4635
+maryann.girl.hut maryann.girl.hut 9641
+gilligan.crew.hut maryann.girl.hut 2196
+professor.hut professor.hut 5470
+skipper.crew.hut fileserver.copyroom.hut 8358
+skipper.crew.hut fileserver.copyroom.hut 1928
+professor.hut laser3.copyroom.hut 7181
+maryann.girl.hut skipper.crew.hut 106
+professor.hut laser3.copyroom.hut 5720
+ginger.girl.hut maryann.girl.hut 7643
+laser3.copyroom.hut laser3.copyroom.hut 6203
+skipper.crew.hut gilligan.crew.hut 5511
+fileserver.copyroom.hut gilligan.crew.hut 5531
+skipper.crew.hut gilligan.crew.hut 1456
+gilligan.crew.hut maryann.girl.hut 7421
+gilligan.crew.hut professor.hut 4146
+maryann.girl.hut laser3.copyroom.hut 1624
+gilligan.crew.hut maryann.girl.hut 9668
+skipper.crew.hut professor.hut 4424
+professor.hut gilligan.crew.hut 4509
+maryann.girl.hut ginger.girl.hut 4987
+ginger.girl.hut laser3.copyroom.hut 448
+laser3.copyroom.hut professor.hut 5246
+ginger.girl.hut professor.hut 4533
+ginger.girl.hut laser3.copyroom.hut 4120
+ginger.girl.hut laser3.copyroom.hut 3686
+fileserver.copyroom.hut ginger.girl.hut 7098
+professor.hut professor.hut 2852
+laser3.copyroom.hut skipper.crew.hut 808
+professor.hut ginger.girl.hut 386
+skipper.crew.hut gilligan.crew.hut 8394
+skipper.crew.hut gilligan.crew.hut 6656
+ginger.girl.hut professor.hut 6174
+gilligan.crew.hut laser3.copyroom.hut 2868
+maryann.girl.hut laser3.copyroom.hut 2420
+maryann.girl.hut skipper.crew.hut 867
+professor.hut maryann.girl.hut 8280
+ginger.girl.hut laser3.copyroom.hut 7305
+professor.hut skipper.crew.hut 2204
+fileserver.copyroom.hut fileserver.copyroom.hut 5820
+fileserver.copyroom.hut ginger.girl.hut 5390
+skipper.crew.hut skipper.crew.hut 3836
+gilligan.crew.hut skipper.crew.hut 9933
+gilligan.crew.hut ginger.girl.hut 7250
+laser3.copyroom.hut ginger.girl.hut 5917
+gilligan.crew.hut ginger.girl.hut 3167
+fileserver.copyroom.hut professor.hut 3686
+maryann.girl.hut ginger.girl.hut 8712
+maryann.girl.hut gilligan.crew.hut 6826
+skipper.crew.hut maryann.girl.hut 2532
+ginger.girl.hut laser3.copyroom.hut 162
+fileserver.copyroom.hut ginger.girl.hut 8807
+fileserver.copyroom.hut laser3.copyroom.hut 1688
+professor.hut maryann.girl.hut 5656
+laser3.copyroom.hut gilligan.crew.hut 1299
+ginger.girl.hut professor.hut 2745
+gilligan.crew.hut maryann.girl.hut 9705
+gilligan.crew.hut skipper.crew.hut 7205
+professor.hut gilligan.crew.hut 540
+gilligan.crew.hut skipper.crew.hut 4392
+maryann.girl.hut fileserver.copyroom.hut 9818
+laser3.copyroom.hut laser3.copyroom.hut 541
+professor.hut professor.hut 7742
+gilligan.crew.hut ginger.girl.hut 3610
+laser3.copyroom.hut professor.hut 3635
+laser3.copyroom.hut gilligan.crew.hut 669
+skipper.crew.hut gilligan.crew.hut 270
+ginger.girl.hut ginger.girl.hut 7277
+laser3.copyroom.hut laser3.copyroom.hut 6697
+professor.hut professor.hut 1397
+fileserver.copyroom.hut gilligan.crew.hut 7981
+fileserver.copyroom.hut gilligan.crew.hut 6883
+gilligan.crew.hut fileserver.copyroom.hut 5696
+fileserver.copyroom.hut laser3.copyroom.hut 5118
+laser3.copyroom.hut maryann.girl.hut 6468
+professor.hut gilligan.crew.hut 2451
+professor.hut ginger.girl.hut 6251
+maryann.girl.hut ginger.girl.hut 5545
+fileserver.copyroom.hut fileserver.copyroom.hut 1806
+laser3.copyroom.hut professor.hut 1083
+laser3.copyroom.hut professor.hut 205
+gilligan.crew.hut skipper.crew.hut 2285
+ginger.girl.hut fileserver.copyroom.hut 873
+gilligan.crew.hut gilligan.crew.hut 8562
+professor.hut gilligan.crew.hut 6673
+skipper.crew.hut laser3.copyroom.hut 2563
+maryann.girl.hut skipper.crew.hut 9495
+laser3.copyroom.hut ginger.girl.hut 6953
+ginger.girl.hut skipper.crew.hut 8055
+skipper.crew.hut gilligan.crew.hut 9748
+laser3.copyroom.hut laser3.copyroom.hut 512
+professor.hut maryann.girl.hut 8367
+professor.hut ginger.girl.hut 1662
+skipper.crew.hut fileserver.copyroom.hut 2714
+skipper.crew.hut maryann.girl.hut 578
+skipper.crew.hut skipper.crew.hut 1152
+professor.hut fileserver.copyroom.hut 2409
+maryann.girl.hut ginger.girl.hut 586
+gilligan.crew.hut fileserver.copyroom.hut 7024
+maryann.girl.hut professor.hut 6655
+laser3.copyroom.hut gilligan.crew.hut 168
+laser3.copyroom.hut professor.hut 6954
+laser3.copyroom.hut gilligan.crew.hut 9393
+gilligan.crew.hut gilligan.crew.hut 1815
+fileserver.copyroom.hut laser3.copyroom.hut 1953
+gilligan.crew.hut skipper.crew.hut 8424
+gilligan.crew.hut maryann.girl.hut 7808
+professor.hut maryann.girl.hut 605
+gilligan.crew.hut gilligan.crew.hut 9292
+skipper.crew.hut fileserver.copyroom.hut 8072
+ginger.girl.hut skipper.crew.hut 6906
+skipper.crew.hut fileserver.copyroom.hut 8716
+fileserver.copyroom.hut laser3.copyroom.hut 2170
+gilligan.crew.hut skipper.crew.hut 3240
+laser3.copyroom.hut skipper.crew.hut 7856
+maryann.girl.hut skipper.crew.hut 4530
+professor.hut maryann.girl.hut 5240
+fileserver.copyroom.hut gilligan.crew.hut 3732
+fileserver.copyroom.hut fileserver.copyroom.hut 6304
+fileserver.copyroom.hut professor.hut 1922
+fileserver.copyroom.hut professor.hut 8920
+gilligan.crew.hut ginger.girl.hut 4990
+professor.hut ginger.girl.hut 3981
+laser3.copyroom.hut professor.hut 8853
+maryann.girl.hut laser3.copyroom.hut 7218
+laser3.copyroom.hut ginger.girl.hut 6892
+skipper.crew.hut laser3.copyroom.hut 93
+fileserver.copyroom.hut professor.hut 9952
+fileserver.copyroom.hut skipper.crew.hut 7217
+gilligan.crew.hut fileserver.copyroom.hut 2302
+ginger.girl.hut skipper.crew.hut 3204
+professor.hut fileserver.copyroom.hut 1984
+ginger.girl.hut gilligan.crew.hut 8791
+gilligan.crew.hut professor.hut 7231
+maryann.girl.hut maryann.girl.hut 8787
+laser3.copyroom.hut ginger.girl.hut 1543
+gilligan.crew.hut gilligan.crew.hut 1320
+gilligan.crew.hut ginger.girl.hut 2082
+laser3.copyroom.hut professor.hut 4296
+maryann.girl.hut professor.hut 3565
+gilligan.crew.hut professor.hut 617
+fileserver.copyroom.hut fileserver.copyroom.hut 8742
+gilligan.crew.hut fileserver.copyroom.hut 5892
+maryann.girl.hut professor.hut 4052
+laser3.copyroom.hut fileserver.copyroom.hut 204
+professor.hut gilligan.crew.hut 2922
+ginger.girl.hut maryann.girl.hut 5900
+fileserver.copyroom.hut laser3.copyroom.hut 8241
+professor.hut fileserver.copyroom.hut 7442
+gilligan.crew.hut gilligan.crew.hut 3724
+gilligan.crew.hut fileserver.copyroom.hut 625
+ginger.girl.hut gilligan.crew.hut 6542
+fileserver.copyroom.hut maryann.girl.hut 5098
+fileserver.copyroom.hut professor.hut 672
+gilligan.crew.hut laser3.copyroom.hut 6268
+fileserver.copyroom.hut skipper.crew.hut 789
+skipper.crew.hut laser3.copyroom.hut 1022
+maryann.girl.hut professor.hut 1781
+laser3.copyroom.hut gilligan.crew.hut 8793
+professor.hut gilligan.crew.hut 6376
+laser3.copyroom.hut skipper.crew.hut 3106
+ginger.girl.hut laser3.copyroom.hut 8457
+fileserver.copyroom.hut fileserver.copyroom.hut 8445
+skipper.crew.hut laser3.copyroom.hut 5991
+fileserver.copyroom.hut gilligan.crew.hut 8994
+maryann.girl.hut gilligan.crew.hut 4382
+ginger.girl.hut fileserver.copyroom.hut 3371
+ginger.girl.hut skipper.crew.hut 5037
+maryann.girl.hut skipper.crew.hut 2912
+fileserver.copyroom.hut maryann.girl.hut 5777
+laser3.copyroom.hut professor.hut 709
+ginger.girl.hut laser3.copyroom.hut 210
+professor.hut maryann.girl.hut 7854
+skipper.crew.hut gilligan.crew.hut 819
+gilligan.crew.hut maryann.girl.hut 9670
+professor.hut skipper.crew.hut 1565
+skipper.crew.hut laser3.copyroom.hut 5267
+professor.hut maryann.girl.hut 2107
+ginger.girl.hut ginger.girl.hut 5283
+ginger.girl.hut fileserver.copyroom.hut 6041
+skipper.crew.hut laser3.copyroom.hut 5965
+fileserver.copyroom.hut ginger.girl.hut 176
+professor.hut gilligan.crew.hut 5497
+gilligan.crew.hut maryann.girl.hut 732
+maryann.girl.hut fileserver.copyroom.hut 2333
+fileserver.copyroom.hut skipper.crew.hut 9671
+professor.hut gilligan.crew.hut 8647
+laser3.copyroom.hut ginger.girl.hut 6840
+laser3.copyroom.hut laser3.copyroom.hut 9983
+laser3.copyroom.hut skipper.crew.hut 6121
+skipper.crew.hut fileserver.copyroom.hut 4395
+professor.hut skipper.crew.hut 7670
+laser3.copyroom.hut maryann.girl.hut 6024
+maryann.girl.hut gilligan.crew.hut 7678
+gilligan.crew.hut skipper.crew.hut 4373
+maryann.girl.hut laser3.copyroom.hut 4270
+laser3.copyroom.hut maryann.girl.hut 5258
+skipper.crew.hut professor.hut 6957
+maryann.girl.hut ginger.girl.hut 9988
+maryann.girl.hut skipper.crew.hut 1229
+gilligan.crew.hut maryann.girl.hut 6234
+ginger.girl.hut maryann.girl.hut 6484
+fileserver.copyroom.hut gilligan.crew.hut 4108
+laser3.copyroom.hut gilligan.crew.hut 9268
+gilligan.crew.hut laser3.copyroom.hut 7618
+fileserver.copyroom.hut maryann.girl.hut 2451
+fileserver.copyroom.hut maryann.girl.hut 1482
+ginger.girl.hut maryann.girl.hut 4849
+professor.hut gilligan.crew.hut 5282
+professor.hut fileserver.copyroom.hut 4605
+gilligan.crew.hut maryann.girl.hut 4281
+skipper.crew.hut gilligan.crew.hut 5049
+fileserver.copyroom.hut maryann.girl.hut 456
+gilligan.crew.hut fileserver.copyroom.hut 1463
+skipper.crew.hut laser3.copyroom.hut 4690
+maryann.girl.hut laser3.copyroom.hut 6129
+laser3.copyroom.hut gilligan.crew.hut 5032
+professor.hut ginger.girl.hut 4553
+ginger.girl.hut skipper.crew.hut 5195
+gilligan.crew.hut laser3.copyroom.hut 9930
+gilligan.crew.hut skipper.crew.hut 7281
+laser3.copyroom.hut laser3.copyroom.hut 349
+skipper.crew.hut laser3.copyroom.hut 9364
+skipper.crew.hut professor.hut 4695
+maryann.girl.hut gilligan.crew.hut 7958
+laser3.copyroom.hut professor.hut 4844
+professor.hut laser3.copyroom.hut 5494
+maryann.girl.hut maryann.girl.hut 7824
+fileserver.copyroom.hut skipper.crew.hut 5792
+maryann.girl.hut fileserver.copyroom.hut 1490
+gilligan.crew.hut laser3.copyroom.hut 2284
+laser3.copyroom.hut fileserver.copyroom.hut 2219
+professor.hut gilligan.crew.hut 2930
+gilligan.crew.hut fileserver.copyroom.hut 5383
+laser3.copyroom.hut fileserver.copyroom.hut 8443
+ginger.girl.hut gilligan.crew.hut 5298
+skipper.crew.hut fileserver.copyroom.hut 5138
+fileserver.copyroom.hut gilligan.crew.hut 4133
+ginger.girl.hut fileserver.copyroom.hut 6382
+professor.hut gilligan.crew.hut 8739
+ginger.girl.hut fileserver.copyroom.hut 682
+gilligan.crew.hut professor.hut 1751
+gilligan.crew.hut maryann.girl.hut 7178
+ginger.girl.hut maryann.girl.hut 6030
+laser3.copyroom.hut professor.hut 3294
+skipper.crew.hut maryann.girl.hut 5971
+skipper.crew.hut ginger.girl.hut 9186
+professor.hut laser3.copyroom.hut 5562
+maryann.girl.hut fileserver.copyroom.hut 2801
+laser3.copyroom.hut maryann.girl.hut 599
+skipper.crew.hut fileserver.copyroom.hut 3903
+fileserver.copyroom.hut ginger.girl.hut 6435
+ginger.girl.hut gilligan.crew.hut 6476
+professor.hut maryann.girl.hut 3615
+skipper.crew.hut ginger.girl.hut 9074
+professor.hut skipper.crew.hut 7194
+skipper.crew.hut laser3.copyroom.hut 1649
+gilligan.crew.hut laser3.copyroom.hut 3571
+gilligan.crew.hut fileserver.copyroom.hut 3082
+laser3.copyroom.hut maryann.girl.hut 18
+maryann.girl.hut skipper.crew.hut 7153
+ginger.girl.hut ginger.girl.hut 3204
+skipper.crew.hut professor.hut 5243
+maryann.girl.hut gilligan.crew.hut 2775
+laser3.copyroom.hut laser3.copyroom.hut 6863
+fileserver.copyroom.hut maryann.girl.hut 746
+skipper.crew.hut ginger.girl.hut 917
+gilligan.crew.hut gilligan.crew.hut 2845
+skipper.crew.hut skipper.crew.hut 1581
+maryann.girl.hut skipper.crew.hut 9026
+professor.hut fileserver.copyroom.hut 6845
+fileserver.copyroom.hut maryann.girl.hut 1481
+ginger.girl.hut ginger.girl.hut 7037
+professor.hut laser3.copyroom.hut 6640
+maryann.girl.hut professor.hut 2796
+ginger.girl.hut gilligan.crew.hut 8181
+skipper.crew.hut skipper.crew.hut 1808
+fileserver.copyroom.hut laser3.copyroom.hut 7972
+maryann.girl.hut ginger.girl.hut 8534
+professor.hut maryann.girl.hut 6324
+ginger.girl.hut maryann.girl.hut 2806
+skipper.crew.hut ginger.girl.hut 2304
+gilligan.crew.hut maryann.girl.hut 7046
+professor.hut skipper.crew.hut 5040
+laser3.copyroom.hut professor.hut 803
+maryann.girl.hut gilligan.crew.hut 1146
+maryann.girl.hut fileserver.copyroom.hut 3613
+professor.hut professor.hut 6605
+laser3.copyroom.hut skipper.crew.hut 9870
+professor.hut professor.hut 5934
+gilligan.crew.hut laser3.copyroom.hut 7088
+maryann.girl.hut ginger.girl.hut 2947
+laser3.copyroom.hut laser3.copyroom.hut 2808
+laser3.copyroom.hut laser3.copyroom.hut 802
+ginger.girl.hut laser3.copyroom.hut 2120
+laser3.copyroom.hut professor.hut 1120
+fileserver.copyroom.hut ginger.girl.hut 7499
+professor.hut skipper.crew.hut 1801
+skipper.crew.hut laser3.copyroom.hut 5110
+ginger.girl.hut skipper.crew.hut 3757
+maryann.girl.hut fileserver.copyroom.hut 4073
+maryann.girl.hut maryann.girl.hut 1121
+laser3.copyroom.hut fileserver.copyroom.hut 9507
+fileserver.copyroom.hut professor.hut 1930
+professor.hut fileserver.copyroom.hut 9741
+fileserver.copyroom.hut laser3.copyroom.hut 3075
+professor.hut gilligan.crew.hut 8517
+fileserver.copyroom.hut ginger.girl.hut 831
+professor.hut laser3.copyroom.hut 1935
+ginger.girl.hut professor.hut 5094
+gilligan.crew.hut laser3.copyroom.hut 2096
+skipper.crew.hut gilligan.crew.hut 2228
+professor.hut ginger.girl.hut 2948
+fileserver.copyroom.hut skipper.crew.hut 8359
+maryann.girl.hut professor.hut 5806
+skipper.crew.hut professor.hut 6263
+laser3.copyroom.hut gilligan.crew.hut 2659
+fileserver.copyroom.hut gilligan.crew.hut 6969
+fileserver.copyroom.hut maryann.girl.hut 8211
+maryann.girl.hut gilligan.crew.hut 1403
+professor.hut fileserver.copyroom.hut 4281
+gilligan.crew.hut gilligan.crew.hut 4402
+ginger.girl.hut maryann.girl.hut 1042
+fileserver.copyroom.hut gilligan.crew.hut 8217
+ginger.girl.hut maryann.girl.hut 645
+fileserver.copyroom.hut professor.hut 372
+maryann.girl.hut skipper.crew.hut 8745
+skipper.crew.hut gilligan.crew.hut 6006
+fileserver.copyroom.hut fileserver.copyroom.hut 1628
+gilligan.crew.hut laser3.copyroom.hut 8579
+laser3.copyroom.hut fileserver.copyroom.hut 5858
+laser3.copyroom.hut laser3.copyroom.hut 2662
+laser3.copyroom.hut gilligan.crew.hut 3411
+laser3.copyroom.hut ginger.girl.hut 6261
+skipper.crew.hut gilligan.crew.hut 8036
+maryann.girl.hut ginger.girl.hut 6794
+professor.hut fileserver.copyroom.hut 5779
+fileserver.copyroom.hut fileserver.copyroom.hut 4249
+ginger.girl.hut maryann.girl.hut 4828
+skipper.crew.hut ginger.girl.hut 7055
+ginger.girl.hut skipper.crew.hut 8329
+skipper.crew.hut fileserver.copyroom.hut 2399
+skipper.crew.hut skipper.crew.hut 5171
+laser3.copyroom.hut maryann.girl.hut 9451
+professor.hut gilligan.crew.hut 866
+laser3.copyroom.hut maryann.girl.hut 103
+maryann.girl.hut fileserver.copyroom.hut 4161
+ginger.girl.hut maryann.girl.hut 7644
+skipper.crew.hut maryann.girl.hut 8296
+gilligan.crew.hut skipper.crew.hut 6975
+skipper.crew.hut ginger.girl.hut 7305
+professor.hut fileserver.copyroom.hut 9989
+fileserver.copyroom.hut laser3.copyroom.hut 8852
+gilligan.crew.hut ginger.girl.hut 1010
+fileserver.copyroom.hut gilligan.crew.hut 4975
+ginger.girl.hut laser3.copyroom.hut 7146
+laser3.copyroom.hut laser3.copyroom.hut 4428
+professor.hut laser3.copyroom.hut 3386
+ginger.girl.hut ginger.girl.hut 214
+ginger.girl.hut professor.hut 5086
+laser3.copyroom.hut skipper.crew.hut 8394
+maryann.girl.hut professor.hut 2730
+gilligan.crew.hut ginger.girl.hut 891
+skipper.crew.hut gilligan.crew.hut 5609
+skipper.crew.hut ginger.girl.hut 4474
+professor.hut fileserver.copyroom.hut 1008
+maryann.girl.hut fileserver.copyroom.hut 7141
+ginger.girl.hut laser3.copyroom.hut 2914
+fileserver.copyroom.hut skipper.crew.hut 7556
+professor.hut professor.hut 6153
+ginger.girl.hut fileserver.copyroom.hut 5364
+gilligan.crew.hut laser3.copyroom.hut 4203
+fileserver.copyroom.hut laser3.copyroom.hut 5917
+skipper.crew.hut ginger.girl.hut 8059
+fileserver.copyroom.hut fileserver.copyroom.hut 5003
+gilligan.crew.hut laser3.copyroom.hut 1170
+ginger.girl.hut laser3.copyroom.hut 3751
+skipper.crew.hut professor.hut 8460
+ginger.girl.hut fileserver.copyroom.hut 7021
+fileserver.copyroom.hut professor.hut 9588
+gilligan.crew.hut professor.hut 2701
+professor.hut skipper.crew.hut 7344
+professor.hut laser3.copyroom.hut 7239
+fileserver.copyroom.hut fileserver.copyroom.hut 6117
+maryann.girl.hut gilligan.crew.hut 2852
+skipper.crew.hut professor.hut 8754
+professor.hut professor.hut 1343
+fileserver.copyroom.hut professor.hut 5367
+skipper.crew.hut laser3.copyroom.hut 4195
+skipper.crew.hut professor.hut 3802
+gilligan.crew.hut ginger.girl.hut 4969
+gilligan.crew.hut fileserver.copyroom.hut 9557
+ginger.girl.hut maryann.girl.hut 2651
+professor.hut professor.hut 4318
+gilligan.crew.hut maryann.girl.hut 4229
+laser3.copyroom.hut professor.hut 6883
+maryann.girl.hut fileserver.copyroom.hut 4329
+laser3.copyroom.hut professor.hut 4367
+ginger.girl.hut professor.hut 2711
+fileserver.copyroom.hut ginger.girl.hut 9588
+fileserver.copyroom.hut ginger.girl.hut 3802
+professor.hut laser3.copyroom.hut 708
+ginger.girl.hut fileserver.copyroom.hut 7461
+ginger.girl.hut maryann.girl.hut 6342
+professor.hut gilligan.crew.hut 7889
+professor.hut fileserver.copyroom.hut 5637
+skipper.crew.hut maryann.girl.hut 1671
+professor.hut laser3.copyroom.hut 5984
+maryann.girl.hut laser3.copyroom.hut 3991
+gilligan.crew.hut skipper.crew.hut 4344
+maryann.girl.hut maryann.girl.hut 7632
+laser3.copyroom.hut fileserver.copyroom.hut 6887
+maryann.girl.hut professor.hut 9674
+skipper.crew.hut ginger.girl.hut 3316
+laser3.copyroom.hut ginger.girl.hut 2591
+professor.hut laser3.copyroom.hut 1857
+skipper.crew.hut skipper.crew.hut 8417
+professor.hut laser3.copyroom.hut 209
+professor.hut fileserver.copyroom.hut 8957
+fileserver.copyroom.hut ginger.girl.hut 6858
+fileserver.copyroom.hut ginger.girl.hut 606
+maryann.girl.hut fileserver.copyroom.hut 9272
+professor.hut ginger.girl.hut 1250
+laser3.copyroom.hut ginger.girl.hut 114
+laser3.copyroom.hut laser3.copyroom.hut 1636
+maryann.girl.hut gilligan.crew.hut 9594
+skipper.crew.hut ginger.girl.hut 6335
+laser3.copyroom.hut skipper.crew.hut 8969
+laser3.copyroom.hut ginger.girl.hut 3030
+fileserver.copyroom.hut professor.hut 7363
+professor.hut maryann.girl.hut 3083
+ginger.girl.hut skipper.crew.hut 5926
+skipper.crew.hut ginger.girl.hut 2544
+professor.hut gilligan.crew.hut 3625
+laser3.copyroom.hut fileserver.copyroom.hut 8221
+ginger.girl.hut laser3.copyroom.hut 3611
+professor.hut skipper.crew.hut 5150
+gilligan.crew.hut laser3.copyroom.hut 7965
+maryann.girl.hut laser3.copyroom.hut 8864
+professor.hut gilligan.crew.hut 5130
+ginger.girl.hut ginger.girl.hut 5626
+ginger.girl.hut laser3.copyroom.hut 7545
+ginger.girl.hut maryann.girl.hut 9231
+ginger.girl.hut gilligan.crew.hut 897
+professor.hut maryann.girl.hut 2100
+laser3.copyroom.hut skipper.crew.hut 3319
+ginger.girl.hut gilligan.crew.hut 1137
+laser3.copyroom.hut ginger.girl.hut 3099
+maryann.girl.hut gilligan.crew.hut 7682
+gilligan.crew.hut laser3.copyroom.hut 8383
+maryann.girl.hut laser3.copyroom.hut 9930
+fileserver.copyroom.hut gilligan.crew.hut 2381
+skipper.crew.hut ginger.girl.hut 8233
+gilligan.crew.hut skipper.crew.hut 1444
+maryann.girl.hut maryann.girl.hut 935
+skipper.crew.hut gilligan.crew.hut 9177
+skipper.crew.hut skipper.crew.hut 9965
+fileserver.copyroom.hut maryann.girl.hut 4743
+gilligan.crew.hut laser3.copyroom.hut 6028
+laser3.copyroom.hut skipper.crew.hut 692
+professor.hut skipper.crew.hut 2115
+maryann.girl.hut laser3.copyroom.hut 5458
+maryann.girl.hut fileserver.copyroom.hut 6449
+laser3.copyroom.hut gilligan.crew.hut 8250
+gilligan.crew.hut skipper.crew.hut 1150
+ginger.girl.hut maryann.girl.hut 1990
+laser3.copyroom.hut ginger.girl.hut 1080
+skipper.crew.hut professor.hut 3495
+maryann.girl.hut ginger.girl.hut 2201
+professor.hut ginger.girl.hut 7626
+maryann.girl.hut laser3.copyroom.hut 9537
+maryann.girl.hut professor.hut 3481
+ginger.girl.hut ginger.girl.hut 6629
+professor.hut gilligan.crew.hut 9091
+skipper.crew.hut gilligan.crew.hut 5961
+ginger.girl.hut professor.hut 7376
+ginger.girl.hut fileserver.copyroom.hut 7421
+fileserver.copyroom.hut laser3.copyroom.hut 3439
+ginger.girl.hut skipper.crew.hut 2450
+gilligan.crew.hut gilligan.crew.hut 2597
+skipper.crew.hut skipper.crew.hut 4481
+skipper.crew.hut professor.hut 4787
+skipper.crew.hut fileserver.copyroom.hut 4618
+maryann.girl.hut gilligan.crew.hut 7328
+laser3.copyroom.hut skipper.crew.hut 2794
+laser3.copyroom.hut gilligan.crew.hut 374
+fileserver.copyroom.hut professor.hut 5768
+gilligan.crew.hut fileserver.copyroom.hut 4413
+laser3.copyroom.hut skipper.crew.hut 7948
+fileserver.copyroom.hut gilligan.crew.hut 611
+skipper.crew.hut gilligan.crew.hut 9148
+fileserver.copyroom.hut professor.hut 8515
+ginger.girl.hut skipper.crew.hut 5797
+skipper.crew.hut maryann.girl.hut 8836
+fileserver.copyroom.hut maryann.girl.hut 9395
+fileserver.copyroom.hut gilligan.crew.hut 2531
+maryann.girl.hut maryann.girl.hut 8447
+ginger.girl.hut skipper.crew.hut 6579
+professor.hut ginger.girl.hut 7883
+gilligan.crew.hut fileserver.copyroom.hut 9004
+gilligan.crew.hut fileserver.copyroom.hut 4476
+skipper.crew.hut laser3.copyroom.hut 9039
+professor.hut skipper.crew.hut 1448
+gilligan.crew.hut fileserver.copyroom.hut 9340
+fileserver.copyroom.hut professor.hut 2008
+skipper.crew.hut skipper.crew.hut 2086
+fileserver.copyroom.hut skipper.crew.hut 8047
+professor.hut gilligan.crew.hut 5000
+laser3.copyroom.hut gilligan.crew.hut 3294
+gilligan.crew.hut skipper.crew.hut 7254
+ginger.girl.hut ginger.girl.hut 5122
+maryann.girl.hut professor.hut 5550
+gilligan.crew.hut skipper.crew.hut 5627
+laser3.copyroom.hut skipper.crew.hut 9737
+ginger.girl.hut professor.hut 9580
+gilligan.crew.hut ginger.girl.hut 3994
+gilligan.crew.hut maryann.girl.hut 7337
+laser3.copyroom.hut gilligan.crew.hut 8030
+maryann.girl.hut maryann.girl.hut 959
+professor.hut professor.hut 8545
+ginger.girl.hut ginger.girl.hut 8224
+fileserver.copyroom.hut ginger.girl.hut 3406
+ginger.girl.hut gilligan.crew.hut 8988
+gilligan.crew.hut skipper.crew.hut 6003
+professor.hut gilligan.crew.hut 9849
+fileserver.copyroom.hut ginger.girl.hut 5528
+skipper.crew.hut ginger.girl.hut 1568
+fileserver.copyroom.hut skipper.crew.hut 6866
+ginger.girl.hut skipper.crew.hut 3896
+maryann.girl.hut professor.hut 3898
+professor.hut ginger.girl.hut 1473
+fileserver.copyroom.hut maryann.girl.hut 8777
+gilligan.crew.hut fileserver.copyroom.hut 2120
+professor.hut laser3.copyroom.hut 7142
+laser3.copyroom.hut professor.hut 7585
+laser3.copyroom.hut laser3.copyroom.hut 8021
+skipper.crew.hut fileserver.copyroom.hut 2726
+skipper.crew.hut ginger.girl.hut 6026
+maryann.girl.hut fileserver.copyroom.hut 6223
+maryann.girl.hut laser3.copyroom.hut 9522
+fileserver.copyroom.hut ginger.girl.hut 8458
+professor.hut fileserver.copyroom.hut 6007
+gilligan.crew.hut gilligan.crew.hut 7634
+laser3.copyroom.hut skipper.crew.hut 2724
+maryann.girl.hut laser3.copyroom.hut 6752
+professor.hut ginger.girl.hut 9883
+professor.hut laser3.copyroom.hut 3542
+maryann.girl.hut maryann.girl.hut 3255
+professor.hut professor.hut 2365
+fileserver.copyroom.hut ginger.girl.hut 5907
+ginger.girl.hut fileserver.copyroom.hut 1175
+laser3.copyroom.hut professor.hut 457
+skipper.crew.hut professor.hut 5716
+laser3.copyroom.hut gilligan.crew.hut 6375
+gilligan.crew.hut gilligan.crew.hut 3475
+maryann.girl.hut laser3.copyroom.hut 6452
+laser3.copyroom.hut maryann.girl.hut 3187
+gilligan.crew.hut skipper.crew.hut 2392
+laser3.copyroom.hut laser3.copyroom.hut 1480
+professor.hut professor.hut 8996
+laser3.copyroom.hut gilligan.crew.hut 8858
+ginger.girl.hut gilligan.crew.hut 2945
+gilligan.crew.hut fileserver.copyroom.hut 3781
+professor.hut fileserver.copyroom.hut 4092
+laser3.copyroom.hut maryann.girl.hut 5217
+laser3.copyroom.hut maryann.girl.hut 7682
+maryann.girl.hut ginger.girl.hut 6466
+laser3.copyroom.hut maryann.girl.hut 4212
+laser3.copyroom.hut fileserver.copyroom.hut 5439
+gilligan.crew.hut maryann.girl.hut 9590
+ginger.girl.hut ginger.girl.hut 425
+laser3.copyroom.hut laser3.copyroom.hut 8617
+fileserver.copyroom.hut laser3.copyroom.hut 3779
+fileserver.copyroom.hut professor.hut 4144
+ginger.girl.hut skipper.crew.hut 7842
+fileserver.copyroom.hut skipper.crew.hut 6110
+ginger.girl.hut fileserver.copyroom.hut 7725
+professor.hut ginger.girl.hut 7963
+fileserver.copyroom.hut fileserver.copyroom.hut 6370
+laser3.copyroom.hut gilligan.crew.hut 663
+professor.hut maryann.girl.hut 4909
+fileserver.copyroom.hut maryann.girl.hut 1740
+skipper.crew.hut ginger.girl.hut 3910
+skipper.crew.hut maryann.girl.hut 2577
+ginger.girl.hut fileserver.copyroom.hut 5910
+ginger.girl.hut ginger.girl.hut 7458
+skipper.crew.hut fileserver.copyroom.hut 4117
+fileserver.copyroom.hut skipper.crew.hut 3680
+professor.hut ginger.girl.hut 7147
+fileserver.copyroom.hut ginger.girl.hut 8942
+ginger.girl.hut laser3.copyroom.hut 8445
+laser3.copyroom.hut gilligan.crew.hut 3855
+laser3.copyroom.hut ginger.girl.hut 4908
+laser3.copyroom.hut skipper.crew.hut 1708
+skipper.crew.hut maryann.girl.hut 4427
+professor.hut professor.hut 7792
+laser3.copyroom.hut professor.hut 5452
+laser3.copyroom.hut fileserver.copyroom.hut 4097
+fileserver.copyroom.hut maryann.girl.hut 7329
+professor.hut skipper.crew.hut 8141
+gilligan.crew.hut ginger.girl.hut 8062
+ginger.girl.hut professor.hut 6906
+ginger.girl.hut skipper.crew.hut 7732
+fileserver.copyroom.hut ginger.girl.hut 2377
+skipper.crew.hut gilligan.crew.hut 8508
+laser3.copyroom.hut ginger.girl.hut 5187
+gilligan.crew.hut laser3.copyroom.hut 6111
+laser3.copyroom.hut ginger.girl.hut 2126
+maryann.girl.hut ginger.girl.hut 2633
+ginger.girl.hut ginger.girl.hut 9784
+laser3.copyroom.hut ginger.girl.hut 6046
+fileserver.copyroom.hut professor.hut 1955
+fileserver.copyroom.hut professor.hut 1545
+ginger.girl.hut fileserver.copyroom.hut 312
+maryann.girl.hut ginger.girl.hut 5243
+skipper.crew.hut gilligan.crew.hut 9557
+fileserver.copyroom.hut laser3.copyroom.hut 6447
+professor.hut ginger.girl.hut 7925
+laser3.copyroom.hut professor.hut 1695
+laser3.copyroom.hut maryann.girl.hut 5984
+laser3.copyroom.hut gilligan.crew.hut 7457
+ginger.girl.hut laser3.copyroom.hut 9037
+skipper.crew.hut skipper.crew.hut 5644
+gilligan.crew.hut skipper.crew.hut 6168
+maryann.girl.hut maryann.girl.hut 4239
+professor.hut professor.hut 8380
+maryann.girl.hut gilligan.crew.hut 4832
+skipper.crew.hut skipper.crew.hut 129
+laser3.copyroom.hut professor.hut 9235
+maryann.girl.hut fileserver.copyroom.hut 6012
+laser3.copyroom.hut gilligan.crew.hut 5203
+maryann.girl.hut gilligan.crew.hut 516
+gilligan.crew.hut fileserver.copyroom.hut 6148
+fileserver.copyroom.hut fileserver.copyroom.hut 2297
+fileserver.copyroom.hut maryann.girl.hut 4574
+ginger.girl.hut skipper.crew.hut 4472
+gilligan.crew.hut fileserver.copyroom.hut 6721
+professor.hut laser3.copyroom.hut 2977
+professor.hut ginger.girl.hut 7070
+gilligan.crew.hut professor.hut 7354
+laser3.copyroom.hut maryann.girl.hut 9342
+skipper.crew.hut laser3.copyroom.hut 3428
+gilligan.crew.hut fileserver.copyroom.hut 8658
+laser3.copyroom.hut professor.hut 2974
+gilligan.crew.hut fileserver.copyroom.hut 355
+maryann.girl.hut fileserver.copyroom.hut 3377
+maryann.girl.hut professor.hut 2968
+fileserver.copyroom.hut ginger.girl.hut 3238
+skipper.crew.hut fileserver.copyroom.hut 7044
+skipper.crew.hut professor.hut 6975
+professor.hut professor.hut 3732
+fileserver.copyroom.hut maryann.girl.hut 8257
+maryann.girl.hut ginger.girl.hut 3905
+professor.hut ginger.girl.hut 5410
+gilligan.crew.hut professor.hut 9331
+skipper.crew.hut laser3.copyroom.hut 3082
+fileserver.copyroom.hut ginger.girl.hut 7122
+maryann.girl.hut professor.hut 2306
+fileserver.copyroom.hut fileserver.copyroom.hut 2831
+fileserver.copyroom.hut maryann.girl.hut 6514
+fileserver.copyroom.hut gilligan.crew.hut 7252
+gilligan.crew.hut skipper.crew.hut 4329
+fileserver.copyroom.hut maryann.girl.hut 858
+fileserver.copyroom.hut professor.hut 1268
+professor.hut skipper.crew.hut 5088
+skipper.crew.hut ginger.girl.hut 8504
+professor.hut professor.hut 8196
+professor.hut professor.hut 8982
+maryann.girl.hut ginger.girl.hut 8962
+maryann.girl.hut professor.hut 3255
+ginger.girl.hut laser3.copyroom.hut 5008
+laser3.copyroom.hut laser3.copyroom.hut 1816
+ginger.girl.hut maryann.girl.hut 3617
+laser3.copyroom.hut fileserver.copyroom.hut 5687
+ginger.girl.hut maryann.girl.hut 6397
+professor.hut laser3.copyroom.hut 9009
+maryann.girl.hut maryann.girl.hut 6837
+maryann.girl.hut professor.hut 3671
+skipper.crew.hut gilligan.crew.hut 2120
+ginger.girl.hut professor.hut 8910
+ginger.girl.hut ginger.girl.hut 2728
+professor.hut fileserver.copyroom.hut 7329
+professor.hut maryann.girl.hut 8701
+fileserver.copyroom.hut ginger.girl.hut 7275
+maryann.girl.hut maryann.girl.hut 2701
+gilligan.crew.hut maryann.girl.hut 2057
+gilligan.crew.hut maryann.girl.hut 9164
+gilligan.crew.hut laser3.copyroom.hut 1841
+ginger.girl.hut skipper.crew.hut 1444
+skipper.crew.hut laser3.copyroom.hut 9657
+fileserver.copyroom.hut laser3.copyroom.hut 2796
+fileserver.copyroom.hut ginger.girl.hut 2191
+laser3.copyroom.hut maryann.girl.hut 5478
+ginger.girl.hut ginger.girl.hut 7914
+laser3.copyroom.hut maryann.girl.hut 646
+skipper.crew.hut laser3.copyroom.hut 7071
+fileserver.copyroom.hut professor.hut 3138
+laser3.copyroom.hut ginger.girl.hut 3381
+gilligan.crew.hut maryann.girl.hut 2371
+fileserver.copyroom.hut professor.hut 7884
+fileserver.copyroom.hut ginger.girl.hut 4075
+professor.hut maryann.girl.hut 595
+professor.hut skipper.crew.hut 7897
+laser3.copyroom.hut laser3.copyroom.hut 4791
+skipper.crew.hut gilligan.crew.hut 2822
+skipper.crew.hut ginger.girl.hut 725
+laser3.copyroom.hut professor.hut 8556
+laser3.copyroom.hut ginger.girl.hut 8544
+skipper.crew.hut maryann.girl.hut 8758
+laser3.copyroom.hut fileserver.copyroom.hut 8033
+maryann.girl.hut gilligan.crew.hut 7875
+laser3.copyroom.hut skipper.crew.hut 7852
+professor.hut fileserver.copyroom.hut 5395
+skipper.crew.hut ginger.girl.hut 6785
+ginger.girl.hut gilligan.crew.hut 2000
+professor.hut professor.hut 5147
+fileserver.copyroom.hut professor.hut 6538
+fileserver.copyroom.hut fileserver.copyroom.hut 9474
+ginger.girl.hut maryann.girl.hut 4674
+ginger.girl.hut ginger.girl.hut 7490
+ginger.girl.hut gilligan.crew.hut 9314
+fileserver.copyroom.hut skipper.crew.hut 8827
+skipper.crew.hut professor.hut 6272
+ginger.girl.hut professor.hut 8815
+fileserver.copyroom.hut maryann.girl.hut 2625
+laser3.copyroom.hut fileserver.copyroom.hut 6899
+maryann.girl.hut ginger.girl.hut 1217
+ginger.girl.hut professor.hut 2659
+skipper.crew.hut gilligan.crew.hut 257
+laser3.copyroom.hut laser3.copyroom.hut 71
+laser3.copyroom.hut laser3.copyroom.hut 2386
+ginger.girl.hut gilligan.crew.hut 4208
+gilligan.crew.hut gilligan.crew.hut 6241
+gilligan.crew.hut skipper.crew.hut 5703
+laser3.copyroom.hut professor.hut 5054
+ginger.girl.hut fileserver.copyroom.hut 8173
+professor.hut laser3.copyroom.hut 4182
+gilligan.crew.hut gilligan.crew.hut 5962
+professor.hut professor.hut 544
+ginger.girl.hut gilligan.crew.hut 6423
+ginger.girl.hut professor.hut 4953
+skipper.crew.hut laser3.copyroom.hut 4627
+professor.hut ginger.girl.hut 836
+gilligan.crew.hut skipper.crew.hut 1169
+gilligan.crew.hut fileserver.copyroom.hut 8686
+professor.hut ginger.girl.hut 756
+ginger.girl.hut skipper.crew.hut 8689
+laser3.copyroom.hut ginger.girl.hut 5921
+laser3.copyroom.hut skipper.crew.hut 7341
+professor.hut professor.hut 7747
+skipper.crew.hut professor.hut 2863
+gilligan.crew.hut laser3.copyroom.hut 5633
+gilligan.crew.hut ginger.girl.hut 5740
+fileserver.copyroom.hut fileserver.copyroom.hut 557
+gilligan.crew.hut ginger.girl.hut 8115
+gilligan.crew.hut ginger.girl.hut 7954
+maryann.girl.hut ginger.girl.hut 9039
+skipper.crew.hut professor.hut 7576
+ginger.girl.hut professor.hut 4121
+skipper.crew.hut professor.hut 928
+maryann.girl.hut skipper.crew.hut 7770
+ginger.girl.hut fileserver.copyroom.hut 5655
+maryann.girl.hut maryann.girl.hut 4270
+laser3.copyroom.hut fileserver.copyroom.hut 5858
+gilligan.crew.hut laser3.copyroom.hut 2197
+professor.hut gilligan.crew.hut 8046
+gilligan.crew.hut gilligan.crew.hut 3427
+ginger.girl.hut maryann.girl.hut 2361
+professor.hut laser3.copyroom.hut 2625
+skipper.crew.hut skipper.crew.hut 192
+laser3.copyroom.hut gilligan.crew.hut 5902
+maryann.girl.hut maryann.girl.hut 1428
+skipper.crew.hut fileserver.copyroom.hut 3065
+maryann.girl.hut fileserver.copyroom.hut 9260
+fileserver.copyroom.hut ginger.girl.hut 9698
+ginger.girl.hut professor.hut 9913
+gilligan.crew.hut ginger.girl.hut 1187
+ginger.girl.hut fileserver.copyroom.hut 790
+ginger.girl.hut maryann.girl.hut 7971
+gilligan.crew.hut gilligan.crew.hut 366
+maryann.girl.hut fileserver.copyroom.hut 6721
+skipper.crew.hut professor.hut 2490
+ginger.girl.hut fileserver.copyroom.hut 1936
+professor.hut fileserver.copyroom.hut 5217
+gilligan.crew.hut skipper.crew.hut 4372
+fileserver.copyroom.hut skipper.crew.hut 7792
+gilligan.crew.hut maryann.girl.hut 3139
+ginger.girl.hut laser3.copyroom.hut 6496
+professor.hut professor.hut 2037
+fileserver.copyroom.hut laser3.copyroom.hut 3890
+professor.hut maryann.girl.hut 5292
+laser3.copyroom.hut skipper.crew.hut 6831
+laser3.copyroom.hut gilligan.crew.hut 3857
+ginger.girl.hut professor.hut 3280
+fileserver.copyroom.hut professor.hut 3294
+gilligan.crew.hut laser3.copyroom.hut 5093
+laser3.copyroom.hut fileserver.copyroom.hut 3664
+maryann.girl.hut gilligan.crew.hut 8850
+ginger.girl.hut skipper.crew.hut 7524
+maryann.girl.hut ginger.girl.hut 9697
+fileserver.copyroom.hut ginger.girl.hut 3186
+skipper.crew.hut maryann.girl.hut 8919
+professor.hut skipper.crew.hut 6335
+gilligan.crew.hut professor.hut 3275
+fileserver.copyroom.hut maryann.girl.hut 1238
+laser3.copyroom.hut maryann.girl.hut 5808
+maryann.girl.hut ginger.girl.hut 6304
+professor.hut fileserver.copyroom.hut 6497
+skipper.crew.hut gilligan.crew.hut 2945
+professor.hut professor.hut 4053
+ginger.girl.hut laser3.copyroom.hut 4447
+ginger.girl.hut professor.hut 3911
+gilligan.crew.hut maryann.girl.hut 9114
+gilligan.crew.hut ginger.girl.hut 8643
+ginger.girl.hut laser3.copyroom.hut 6169
+fileserver.copyroom.hut gilligan.crew.hut 6359
+fileserver.copyroom.hut laser3.copyroom.hut 5326
+skipper.crew.hut gilligan.crew.hut 255
+ginger.girl.hut ginger.girl.hut 8271
+laser3.copyroom.hut skipper.crew.hut 8976
+laser3.copyroom.hut laser3.copyroom.hut 2703
+fileserver.copyroom.hut ginger.girl.hut 543
+maryann.girl.hut skipper.crew.hut 4417
+laser3.copyroom.hut gilligan.crew.hut 57
+fileserver.copyroom.hut professor.hut 9846
+professor.hut skipper.crew.hut 2766
+gilligan.crew.hut professor.hut 6716
+ginger.girl.hut gilligan.crew.hut 8677
+fileserver.copyroom.hut gilligan.crew.hut 9961
+gilligan.crew.hut ginger.girl.hut 9442
+maryann.girl.hut fileserver.copyroom.hut 7968
+laser3.copyroom.hut laser3.copyroom.hut 435
+professor.hut maryann.girl.hut 2984
+gilligan.crew.hut maryann.girl.hut 1925
+gilligan.crew.hut ginger.girl.hut 4738
+skipper.crew.hut maryann.girl.hut 4020
+skipper.crew.hut skipper.crew.hut 8753
+ginger.girl.hut professor.hut 5740
+skipper.crew.hut maryann.girl.hut 8077
+professor.hut gilligan.crew.hut 2394
+professor.hut professor.hut 309
+skipper.crew.hut ginger.girl.hut 8799
+skipper.crew.hut professor.hut 1117
+maryann.girl.hut ginger.girl.hut 2748
+skipper.crew.hut laser3.copyroom.hut 2627
+skipper.crew.hut fileserver.copyroom.hut 7109
+gilligan.crew.hut laser3.copyroom.hut 6906
+gilligan.crew.hut skipper.crew.hut 8219
+maryann.girl.hut professor.hut 66
+gilligan.crew.hut fileserver.copyroom.hut 8751
+ginger.girl.hut gilligan.crew.hut 5218
+skipper.crew.hut maryann.girl.hut 1815
+gilligan.crew.hut laser3.copyroom.hut 9109
+skipper.crew.hut gilligan.crew.hut 2694
+gilligan.crew.hut laser3.copyroom.hut 9186
+fileserver.copyroom.hut ginger.girl.hut 1502
+professor.hut gilligan.crew.hut 2347
+professor.hut fileserver.copyroom.hut 4681
+ginger.girl.hut skipper.crew.hut 5797
+maryann.girl.hut professor.hut 3688
+ginger.girl.hut gilligan.crew.hut 5816
+ginger.girl.hut professor.hut 9945
+professor.hut laser3.copyroom.hut 3684
+maryann.girl.hut gilligan.crew.hut 6255
+fileserver.copyroom.hut maryann.girl.hut 7770
+fileserver.copyroom.hut maryann.girl.hut 8067
+maryann.girl.hut gilligan.crew.hut 6246
+laser3.copyroom.hut skipper.crew.hut 8877
+professor.hut gilligan.crew.hut 601
+maryann.girl.hut professor.hut 1744
+maryann.girl.hut professor.hut 2834
+ginger.girl.hut skipper.crew.hut 7131
+gilligan.crew.hut ginger.girl.hut 4087
+ginger.girl.hut ginger.girl.hut 818
+skipper.crew.hut ginger.girl.hut 9143
+fileserver.copyroom.hut laser3.copyroom.hut 3100
+laser3.copyroom.hut professor.hut 2566
+fileserver.copyroom.hut skipper.crew.hut 9257
+skipper.crew.hut professor.hut 4691
+fileserver.copyroom.hut maryann.girl.hut 1901
+skipper.crew.hut maryann.girl.hut 8362
+skipper.crew.hut gilligan.crew.hut 4206
+laser3.copyroom.hut fileserver.copyroom.hut 8633
+skipper.crew.hut fileserver.copyroom.hut 4472
+ginger.girl.hut ginger.girl.hut 1003
+maryann.girl.hut fileserver.copyroom.hut 7258
+fileserver.copyroom.hut ginger.girl.hut 9422
+ginger.girl.hut laser3.copyroom.hut 8530
+professor.hut professor.hut 6191
+gilligan.crew.hut ginger.girl.hut 2902
+skipper.crew.hut maryann.girl.hut 2059
+ginger.girl.hut ginger.girl.hut 3996
+ginger.girl.hut laser3.copyroom.hut 9374
+gilligan.crew.hut maryann.girl.hut 3323
+laser3.copyroom.hut skipper.crew.hut 2726
+ginger.girl.hut fileserver.copyroom.hut 6312
+ginger.girl.hut skipper.crew.hut 8044
+skipper.crew.hut professor.hut 2290
+fileserver.copyroom.hut laser3.copyroom.hut 2281
+laser3.copyroom.hut skipper.crew.hut 1460
+gilligan.crew.hut laser3.copyroom.hut 1016
+laser3.copyroom.hut gilligan.crew.hut 456
+professor.hut laser3.copyroom.hut 988
+ginger.girl.hut professor.hut 3563
+maryann.girl.hut professor.hut 6025
+ginger.girl.hut skipper.crew.hut 5849
+maryann.girl.hut ginger.girl.hut 9370
+fileserver.copyroom.hut laser3.copyroom.hut 8657
+ginger.girl.hut gilligan.crew.hut 2670
+professor.hut gilligan.crew.hut 4261
+skipper.crew.hut skipper.crew.hut 7529
+skipper.crew.hut ginger.girl.hut 3399
+maryann.girl.hut professor.hut 2320
+skipper.crew.hut laser3.copyroom.hut 6417
+gilligan.crew.hut gilligan.crew.hut 4796
+gilligan.crew.hut professor.hut 2516
+professor.hut skipper.crew.hut 924
+maryann.girl.hut professor.hut 813
+skipper.crew.hut professor.hut 6101
+skipper.crew.hut fileserver.copyroom.hut 4022
+laser3.copyroom.hut gilligan.crew.hut 3193
+laser3.copyroom.hut professor.hut 648
+maryann.girl.hut maryann.girl.hut 2818
+maryann.girl.hut fileserver.copyroom.hut 2399
+maryann.girl.hut laser3.copyroom.hut 5404
+fileserver.copyroom.hut skipper.crew.hut 9779
+professor.hut skipper.crew.hut 6729
+ginger.girl.hut fileserver.copyroom.hut 826
+professor.hut skipper.crew.hut 9746
+laser3.copyroom.hut gilligan.crew.hut 9881
+gilligan.crew.hut laser3.copyroom.hut 2607
+maryann.girl.hut ginger.girl.hut 8424
+fileserver.copyroom.hut skipper.crew.hut 940
+gilligan.crew.hut ginger.girl.hut 9287
+fileserver.copyroom.hut professor.hut 130
+gilligan.crew.hut laser3.copyroom.hut 4443
+skipper.crew.hut laser3.copyroom.hut 8609
+skipper.crew.hut gilligan.crew.hut 2983
+laser3.copyroom.hut gilligan.crew.hut 606
+skipper.crew.hut laser3.copyroom.hut 1171
+fileserver.copyroom.hut fileserver.copyroom.hut 9037
+laser3.copyroom.hut gilligan.crew.hut 4307
+professor.hut fileserver.copyroom.hut 285
+fileserver.copyroom.hut gilligan.crew.hut 1584
+gilligan.crew.hut maryann.girl.hut 2480
+maryann.girl.hut laser3.copyroom.hut 7540
+professor.hut laser3.copyroom.hut 5803
+ginger.girl.hut laser3.copyroom.hut 7600
+ginger.girl.hut laser3.copyroom.hut 6774
+fileserver.copyroom.hut professor.hut 9104
+gilligan.crew.hut maryann.girl.hut 249
+professor.hut professor.hut 4212
+skipper.crew.hut maryann.girl.hut 1741
+fileserver.copyroom.hut skipper.crew.hut 4990
+ginger.girl.hut skipper.crew.hut 961
+ginger.girl.hut fileserver.copyroom.hut 3430
+skipper.crew.hut gilligan.crew.hut 8691
+professor.hut professor.hut 6506
+professor.hut gilligan.crew.hut 4000
+fileserver.copyroom.hut professor.hut 7214
+fileserver.copyroom.hut gilligan.crew.hut 4511
+skipper.crew.hut ginger.girl.hut 2937
+ginger.girl.hut gilligan.crew.hut 401
+professor.hut professor.hut 8537
+skipper.crew.hut skipper.crew.hut 4440
+gilligan.crew.hut gilligan.crew.hut 2358
+skipper.crew.hut gilligan.crew.hut 6994
+gilligan.crew.hut ginger.girl.hut 5284
+professor.hut laser3.copyroom.hut 3182
+ginger.girl.hut laser3.copyroom.hut 4032
+ginger.girl.hut skipper.crew.hut 9657
+professor.hut gilligan.crew.hut 9213
+professor.hut maryann.girl.hut 1744
+ginger.girl.hut maryann.girl.hut 2636
+professor.hut skipper.crew.hut 213
+fileserver.copyroom.hut professor.hut 6224
+maryann.girl.hut gilligan.crew.hut 983
+fileserver.copyroom.hut professor.hut 5305
+laser3.copyroom.hut skipper.crew.hut 4257
+professor.hut laser3.copyroom.hut 9361
+fileserver.copyroom.hut maryann.girl.hut 829
+fileserver.copyroom.hut maryann.girl.hut 3152
+professor.hut ginger.girl.hut 6722
+fileserver.copyroom.hut fileserver.copyroom.hut 313
+laser3.copyroom.hut fileserver.copyroom.hut 2197
+maryann.girl.hut laser3.copyroom.hut 4837
+laser3.copyroom.hut fileserver.copyroom.hut 3988
+laser3.copyroom.hut skipper.crew.hut 1825
+skipper.crew.hut fileserver.copyroom.hut 2634
+ginger.girl.hut skipper.crew.hut 7787
+professor.hut skipper.crew.hut 6233
+skipper.crew.hut gilligan.crew.hut 3753
+laser3.copyroom.hut skipper.crew.hut 4500
+professor.hut gilligan.crew.hut 4066
+laser3.copyroom.hut ginger.girl.hut 5322
+ginger.girl.hut maryann.girl.hut 1151
+fileserver.copyroom.hut professor.hut 9069
+skipper.crew.hut gilligan.crew.hut 531
+gilligan.crew.hut laser3.copyroom.hut 1802
+ginger.girl.hut maryann.girl.hut 8497
+professor.hut fileserver.copyroom.hut 1386
+laser3.copyroom.hut fileserver.copyroom.hut 3884
+professor.hut gilligan.crew.hut 8121
+ginger.girl.hut maryann.girl.hut 104
+maryann.girl.hut professor.hut 9159
+fileserver.copyroom.hut laser3.copyroom.hut 9451
+maryann.girl.hut professor.hut 3619
+gilligan.crew.hut skipper.crew.hut 1048
+professor.hut laser3.copyroom.hut 6814
+laser3.copyroom.hut gilligan.crew.hut 947
+gilligan.crew.hut skipper.crew.hut 3471
+professor.hut professor.hut 4231
+skipper.crew.hut laser3.copyroom.hut 200
+laser3.copyroom.hut gilligan.crew.hut 6956
+professor.hut professor.hut 7872
+laser3.copyroom.hut gilligan.crew.hut 8939
+gilligan.crew.hut skipper.crew.hut 3124
+fileserver.copyroom.hut laser3.copyroom.hut 7399
+ginger.girl.hut ginger.girl.hut 7312
+skipper.crew.hut gilligan.crew.hut 1651
+maryann.girl.hut skipper.crew.hut 8031
+laser3.copyroom.hut maryann.girl.hut 447
+professor.hut gilligan.crew.hut 3872
+skipper.crew.hut fileserver.copyroom.hut 5790
+ginger.girl.hut laser3.copyroom.hut 6799
+ginger.girl.hut laser3.copyroom.hut 2315
+professor.hut ginger.girl.hut 9595
+fileserver.copyroom.hut maryann.girl.hut 9096
+skipper.crew.hut ginger.girl.hut 5176
+ginger.girl.hut gilligan.crew.hut 541
+fileserver.copyroom.hut professor.hut 1
+laser3.copyroom.hut maryann.girl.hut 3836
+skipper.crew.hut ginger.girl.hut 4919
+gilligan.crew.hut ginger.girl.hut 6823
+laser3.copyroom.hut gilligan.crew.hut 940
+laser3.copyroom.hut professor.hut 9999
+professor.hut professor.hut 9962
+professor.hut maryann.girl.hut 667
+fileserver.copyroom.hut laser3.copyroom.hut 8655
+professor.hut gilligan.crew.hut 6848
+maryann.girl.hut maryann.girl.hut 8104
+skipper.crew.hut professor.hut 6875
+maryann.girl.hut laser3.copyroom.hut 8182
+fileserver.copyroom.hut professor.hut 6156
+professor.hut maryann.girl.hut 3737
+laser3.copyroom.hut ginger.girl.hut 1813
+gilligan.crew.hut professor.hut 2094
+gilligan.crew.hut fileserver.copyroom.hut 6301
+gilligan.crew.hut skipper.crew.hut 3333
+maryann.girl.hut ginger.girl.hut 8129
+ginger.girl.hut professor.hut 6811
+fileserver.copyroom.hut skipper.crew.hut 1106
+skipper.crew.hut gilligan.crew.hut 7066
+maryann.girl.hut gilligan.crew.hut 9659
+fileserver.copyroom.hut fileserver.copyroom.hut 5089
+ginger.girl.hut fileserver.copyroom.hut 9489
+maryann.girl.hut fileserver.copyroom.hut 2386
+laser3.copyroom.hut ginger.girl.hut 6319
+fileserver.copyroom.hut maryann.girl.hut 2098
+ginger.girl.hut professor.hut 985
+skipper.crew.hut professor.hut 9151
+professor.hut fileserver.copyroom.hut 8234
+skipper.crew.hut fileserver.copyroom.hut 6370
+fileserver.copyroom.hut professor.hut 113
+skipper.crew.hut gilligan.crew.hut 8623
+maryann.girl.hut laser3.copyroom.hut 3840
+fileserver.copyroom.hut fileserver.copyroom.hut 1710
+maryann.girl.hut gilligan.crew.hut 7142
+gilligan.crew.hut professor.hut 7840
+gilligan.crew.hut professor.hut 4518
+professor.hut professor.hut 9247
+skipper.crew.hut skipper.crew.hut 9620
+professor.hut ginger.girl.hut 6518
+ginger.girl.hut gilligan.crew.hut 9063
+ginger.girl.hut gilligan.crew.hut 764
+fileserver.copyroom.hut maryann.girl.hut 4238
+laser3.copyroom.hut professor.hut 374
+maryann.girl.hut maryann.girl.hut 2219
+gilligan.crew.hut maryann.girl.hut 2254
+ginger.girl.hut fileserver.copyroom.hut 1210
+ginger.girl.hut ginger.girl.hut 4746
+maryann.girl.hut fileserver.copyroom.hut 9138
+laser3.copyroom.hut gilligan.crew.hut 5644
+maryann.girl.hut ginger.girl.hut 7974
+ginger.girl.hut skipper.crew.hut 7489
+professor.hut laser3.copyroom.hut 98
+gilligan.crew.hut gilligan.crew.hut 3406
+laser3.copyroom.hut maryann.girl.hut 8111
+laser3.copyroom.hut skipper.crew.hut 4675
+maryann.girl.hut professor.hut 9684
+skipper.crew.hut maryann.girl.hut 5460
+ginger.girl.hut maryann.girl.hut 7936
+laser3.copyroom.hut ginger.girl.hut 5627
+skipper.crew.hut professor.hut 904
+ginger.girl.hut maryann.girl.hut 6519
+skipper.crew.hut skipper.crew.hut 3221
+gilligan.crew.hut maryann.girl.hut 1876
+fileserver.copyroom.hut gilligan.crew.hut 5905
+professor.hut gilligan.crew.hut 9749
+laser3.copyroom.hut ginger.girl.hut 3284
+maryann.girl.hut laser3.copyroom.hut 3898
+skipper.crew.hut maryann.girl.hut 1013
+gilligan.crew.hut professor.hut 5156
+maryann.girl.hut fileserver.copyroom.hut 8741
+maryann.girl.hut ginger.girl.hut 8698
+laser3.copyroom.hut gilligan.crew.hut 9167
+laser3.copyroom.hut skipper.crew.hut 7954
+ginger.girl.hut maryann.girl.hut 2282
+gilligan.crew.hut laser3.copyroom.hut 3931
+skipper.crew.hut laser3.copyroom.hut 8391
+gilligan.crew.hut gilligan.crew.hut 9005
+fileserver.copyroom.hut professor.hut 1853
+maryann.girl.hut skipper.crew.hut 1084
+laser3.copyroom.hut skipper.crew.hut 1087
+professor.hut ginger.girl.hut 321
+professor.hut gilligan.crew.hut 757
+skipper.crew.hut maryann.girl.hut 1987
+skipper.crew.hut maryann.girl.hut 7448
+skipper.crew.hut maryann.girl.hut 8950
+ginger.girl.hut laser3.copyroom.hut 5844
+maryann.girl.hut skipper.crew.hut 2622
+gilligan.crew.hut ginger.girl.hut 3591
+laser3.copyroom.hut fileserver.copyroom.hut 1166
+ginger.girl.hut fileserver.copyroom.hut 9702
+fileserver.copyroom.hut professor.hut 3620
+fileserver.copyroom.hut laser3.copyroom.hut 3733
+professor.hut ginger.girl.hut 768
+laser3.copyroom.hut ginger.girl.hut 5426
+skipper.crew.hut ginger.girl.hut 3321
+ginger.girl.hut fileserver.copyroom.hut 8229
+laser3.copyroom.hut fileserver.copyroom.hut 3922
+skipper.crew.hut skipper.crew.hut 8260
+professor.hut professor.hut 1754
+professor.hut professor.hut 9243
+ginger.girl.hut skipper.crew.hut 3173
+skipper.crew.hut ginger.girl.hut 190
+professor.hut skipper.crew.hut 9787
+gilligan.crew.hut professor.hut 1366
+ginger.girl.hut professor.hut 3090
+laser3.copyroom.hut laser3.copyroom.hut 5268
+maryann.girl.hut gilligan.crew.hut 9346
+fileserver.copyroom.hut skipper.crew.hut 377
+skipper.crew.hut fileserver.copyroom.hut 3978
+maryann.girl.hut maryann.girl.hut 1369
+laser3.copyroom.hut fileserver.copyroom.hut 7372
+gilligan.crew.hut skipper.crew.hut 3560
+laser3.copyroom.hut laser3.copyroom.hut 1036
+gilligan.crew.hut skipper.crew.hut 453
+maryann.girl.hut gilligan.crew.hut 7757
+laser3.copyroom.hut laser3.copyroom.hut 5264
+skipper.crew.hut ginger.girl.hut 8334
+gilligan.crew.hut maryann.girl.hut 4165
+gilligan.crew.hut maryann.girl.hut 3408
+gilligan.crew.hut maryann.girl.hut 1630
+skipper.crew.hut ginger.girl.hut 7669
+fileserver.copyroom.hut gilligan.crew.hut 5221
+laser3.copyroom.hut gilligan.crew.hut 1617
+maryann.girl.hut maryann.girl.hut 5329
+fileserver.copyroom.hut ginger.girl.hut 5410
+laser3.copyroom.hut laser3.copyroom.hut 971
+ginger.girl.hut skipper.crew.hut 3903
+maryann.girl.hut professor.hut 494
+skipper.crew.hut ginger.girl.hut 8224
+laser3.copyroom.hut laser3.copyroom.hut 2739
+fileserver.copyroom.hut professor.hut 328
+fileserver.copyroom.hut fileserver.copyroom.hut 7541
+fileserver.copyroom.hut maryann.girl.hut 4442
+ginger.girl.hut ginger.girl.hut 9806
+laser3.copyroom.hut laser3.copyroom.hut 4020
+gilligan.crew.hut skipper.crew.hut 8939
+gilligan.crew.hut professor.hut 8848
+laser3.copyroom.hut skipper.crew.hut 7725
+maryann.girl.hut laser3.copyroom.hut 5367
+maryann.girl.hut fileserver.copyroom.hut 8771
+laser3.copyroom.hut maryann.girl.hut 7865
+ginger.girl.hut professor.hut 7211
+professor.hut laser3.copyroom.hut 5270
+professor.hut fileserver.copyroom.hut 8907
+maryann.girl.hut gilligan.crew.hut 1249
+professor.hut laser3.copyroom.hut 8016
+gilligan.crew.hut professor.hut 1271
+maryann.girl.hut skipper.crew.hut 2176
+fileserver.copyroom.hut skipper.crew.hut 8178
+ginger.girl.hut maryann.girl.hut 5739
+gilligan.crew.hut fileserver.copyroom.hut 9688
+skipper.crew.hut ginger.girl.hut 1856
+ginger.girl.hut skipper.crew.hut 6509
+gilligan.crew.hut fileserver.copyroom.hut 2578
+ginger.girl.hut laser3.copyroom.hut 6610
+ginger.girl.hut fileserver.copyroom.hut 7371
+laser3.copyroom.hut gilligan.crew.hut 6353
+ginger.girl.hut fileserver.copyroom.hut 2947
+fileserver.copyroom.hut fileserver.copyroom.hut 3233
+maryann.girl.hut gilligan.crew.hut 8064
+ginger.girl.hut maryann.girl.hut 4121
+ginger.girl.hut laser3.copyroom.hut 4129
+maryann.girl.hut professor.hut 9336
+ginger.girl.hut fileserver.copyroom.hut 1495
+ginger.girl.hut skipper.crew.hut 2923
+gilligan.crew.hut professor.hut 1582
+ginger.girl.hut laser3.copyroom.hut 7381
+fileserver.copyroom.hut maryann.girl.hut 5557
+professor.hut gilligan.crew.hut 5494
+skipper.crew.hut skipper.crew.hut 9027
+professor.hut fileserver.copyroom.hut 8677
+skipper.crew.hut maryann.girl.hut 7036
+professor.hut ginger.girl.hut 8377
+professor.hut ginger.girl.hut 9293
+gilligan.crew.hut laser3.copyroom.hut 9215
+professor.hut fileserver.copyroom.hut 4565
+ginger.girl.hut skipper.crew.hut 1534
+laser3.copyroom.hut skipper.crew.hut 2470
+laser3.copyroom.hut laser3.copyroom.hut 3234
+laser3.copyroom.hut ginger.girl.hut 4459
+laser3.copyroom.hut ginger.girl.hut 7256
+maryann.girl.hut maryann.girl.hut 862
+gilligan.crew.hut laser3.copyroom.hut 6412
+professor.hut fileserver.copyroom.hut 1078
+maryann.girl.hut skipper.crew.hut 1444
+laser3.copyroom.hut maryann.girl.hut 3381
+laser3.copyroom.hut professor.hut 2073
+gilligan.crew.hut fileserver.copyroom.hut 3348
+professor.hut maryann.girl.hut 151
+maryann.girl.hut ginger.girl.hut 6466
+fileserver.copyroom.hut professor.hut 4269
+fileserver.copyroom.hut fileserver.copyroom.hut 9168
+fileserver.copyroom.hut ginger.girl.hut 4648
+ginger.girl.hut fileserver.copyroom.hut 652
+fileserver.copyroom.hut maryann.girl.hut 2467
+professor.hut skipper.crew.hut 4808
+ginger.girl.hut skipper.crew.hut 9979
+gilligan.crew.hut gilligan.crew.hut 6004
+gilligan.crew.hut maryann.girl.hut 7338
+gilligan.crew.hut professor.hut 6309
+skipper.crew.hut gilligan.crew.hut 9639
+skipper.crew.hut ginger.girl.hut 602
+ginger.girl.hut fileserver.copyroom.hut 4474
+maryann.girl.hut maryann.girl.hut 418
+fileserver.copyroom.hut skipper.crew.hut 3090
+laser3.copyroom.hut ginger.girl.hut 1931
+professor.hut professor.hut 8390
+gilligan.crew.hut gilligan.crew.hut 8864
+ginger.girl.hut gilligan.crew.hut 2681
+maryann.girl.hut maryann.girl.hut 4685
+professor.hut gilligan.crew.hut 8745
+skipper.crew.hut maryann.girl.hut 8940
+laser3.copyroom.hut skipper.crew.hut 2282
+maryann.girl.hut maryann.girl.hut 1444
+laser3.copyroom.hut maryann.girl.hut 2220
+skipper.crew.hut fileserver.copyroom.hut 6369
+skipper.crew.hut laser3.copyroom.hut 5583
+fileserver.copyroom.hut maryann.girl.hut 6549
+ginger.girl.hut maryann.girl.hut 9886
+gilligan.crew.hut maryann.girl.hut 1409
+maryann.girl.hut maryann.girl.hut 7410
+gilligan.crew.hut ginger.girl.hut 3122
+laser3.copyroom.hut fileserver.copyroom.hut 1322
+professor.hut maryann.girl.hut 3068
+ginger.girl.hut laser3.copyroom.hut 5268
+laser3.copyroom.hut laser3.copyroom.hut 8582
+professor.hut skipper.crew.hut 3268
+maryann.girl.hut ginger.girl.hut 8014
+maryann.girl.hut laser3.copyroom.hut 108
+skipper.crew.hut gilligan.crew.hut 3424
+skipper.crew.hut maryann.girl.hut 4643
+professor.hut maryann.girl.hut 3453
+laser3.copyroom.hut professor.hut 8506
+fileserver.copyroom.hut gilligan.crew.hut 53
+skipper.crew.hut maryann.girl.hut 8491
+skipper.crew.hut laser3.copyroom.hut 6470
+laser3.copyroom.hut fileserver.copyroom.hut 2169
+laser3.copyroom.hut gilligan.crew.hut 4573
+skipper.crew.hut professor.hut 9514
+ginger.girl.hut gilligan.crew.hut 5295
+fileserver.copyroom.hut fileserver.copyroom.hut 3057
+laser3.copyroom.hut gilligan.crew.hut 1829
+gilligan.crew.hut maryann.girl.hut 7644
+laser3.copyroom.hut professor.hut 1267
+fileserver.copyroom.hut skipper.crew.hut 2328
+maryann.girl.hut gilligan.crew.hut 7525
+skipper.crew.hut fileserver.copyroom.hut 397
+skipper.crew.hut maryann.girl.hut 8805
+fileserver.copyroom.hut skipper.crew.hut 1532
+gilligan.crew.hut skipper.crew.hut 6517
+maryann.girl.hut professor.hut 1203
+ginger.girl.hut ginger.girl.hut 6309
+laser3.copyroom.hut fileserver.copyroom.hut 3586
+laser3.copyroom.hut laser3.copyroom.hut 1737
+laser3.copyroom.hut skipper.crew.hut 6372
+skipper.crew.hut gilligan.crew.hut 4191
+laser3.copyroom.hut ginger.girl.hut 6486
+ginger.girl.hut ginger.girl.hut 7645
+fileserver.copyroom.hut laser3.copyroom.hut 8713
+fileserver.copyroom.hut skipper.crew.hut 43
+professor.hut laser3.copyroom.hut 2794
+maryann.girl.hut ginger.girl.hut 7477
+ginger.girl.hut laser3.copyroom.hut 2203
+maryann.girl.hut gilligan.crew.hut 1892
+gilligan.crew.hut skipper.crew.hut 4699
+ginger.girl.hut ginger.girl.hut 7195
+skipper.crew.hut skipper.crew.hut 5460
+fileserver.copyroom.hut fileserver.copyroom.hut 2174
+gilligan.crew.hut fileserver.copyroom.hut 5980
+skipper.crew.hut gilligan.crew.hut 6315
+gilligan.crew.hut gilligan.crew.hut 5448
+gilligan.crew.hut ginger.girl.hut 270
+ginger.girl.hut skipper.crew.hut 5223
+maryann.girl.hut skipper.crew.hut 7468
+skipper.crew.hut gilligan.crew.hut 59
+laser3.copyroom.hut laser3.copyroom.hut 4523
+fileserver.copyroom.hut gilligan.crew.hut 6867
+ginger.girl.hut fileserver.copyroom.hut 1335
+maryann.girl.hut skipper.crew.hut 4410
+fileserver.copyroom.hut maryann.girl.hut 4433
+laser3.copyroom.hut laser3.copyroom.hut 9545
+skipper.crew.hut skipper.crew.hut 857
+fileserver.copyroom.hut professor.hut 1268
+fileserver.copyroom.hut laser3.copyroom.hut 5454
+skipper.crew.hut laser3.copyroom.hut 2156
+fileserver.copyroom.hut skipper.crew.hut 397
+laser3.copyroom.hut professor.hut 8720
+gilligan.crew.hut fileserver.copyroom.hut 7251
+laser3.copyroom.hut ginger.girl.hut 3216
+laser3.copyroom.hut fileserver.copyroom.hut 9585
+gilligan.crew.hut laser3.copyroom.hut 5473
+fileserver.copyroom.hut skipper.crew.hut 7641
+gilligan.crew.hut maryann.girl.hut 5499
+laser3.copyroom.hut ginger.girl.hut 3530
+ginger.girl.hut gilligan.crew.hut 6024
+fileserver.copyroom.hut ginger.girl.hut 9377
+maryann.girl.hut laser3.copyroom.hut 6487
+laser3.copyroom.hut maryann.girl.hut 7002
+professor.hut professor.hut 9029
+maryann.girl.hut ginger.girl.hut 2666
+gilligan.crew.hut maryann.girl.hut 2582
+maryann.girl.hut skipper.crew.hut 9207
+maryann.girl.hut skipper.crew.hut 4622
+maryann.girl.hut maryann.girl.hut 9342
+gilligan.crew.hut ginger.girl.hut 6813
+professor.hut maryann.girl.hut 2347
+ginger.girl.hut fileserver.copyroom.hut 2150
+fileserver.copyroom.hut gilligan.crew.hut 3195
+maryann.girl.hut gilligan.crew.hut 2460
+laser3.copyroom.hut professor.hut 3892
+professor.hut ginger.girl.hut 3008
+maryann.girl.hut fileserver.copyroom.hut 7457
+fileserver.copyroom.hut professor.hut 8681
+laser3.copyroom.hut laser3.copyroom.hut 2305
+skipper.crew.hut gilligan.crew.hut 3172
+laser3.copyroom.hut gilligan.crew.hut 4054
+laser3.copyroom.hut skipper.crew.hut 5182
+professor.hut fileserver.copyroom.hut 4780
+laser3.copyroom.hut gilligan.crew.hut 2946
+ginger.girl.hut maryann.girl.hut 8339
+skipper.crew.hut fileserver.copyroom.hut 5921
+gilligan.crew.hut laser3.copyroom.hut 4893
+maryann.girl.hut fileserver.copyroom.hut 3883
+fileserver.copyroom.hut gilligan.crew.hut 7632
+laser3.copyroom.hut skipper.crew.hut 2790
+professor.hut fileserver.copyroom.hut 7174
+ginger.girl.hut laser3.copyroom.hut 3220
+laser3.copyroom.hut maryann.girl.hut 6437
+gilligan.crew.hut ginger.girl.hut 8593
+maryann.girl.hut maryann.girl.hut 4475
+ginger.girl.hut professor.hut 8113
+maryann.girl.hut gilligan.crew.hut 6557
+gilligan.crew.hut laser3.copyroom.hut 100
+professor.hut skipper.crew.hut 5349
+skipper.crew.hut gilligan.crew.hut 6290
+gilligan.crew.hut laser3.copyroom.hut 6919
+fileserver.copyroom.hut fileserver.copyroom.hut 664
+laser3.copyroom.hut maryann.girl.hut 818
+maryann.girl.hut professor.hut 7044
+ginger.girl.hut professor.hut 7497
+skipper.crew.hut fileserver.copyroom.hut 3070
+gilligan.crew.hut gilligan.crew.hut 9138
+laser3.copyroom.hut laser3.copyroom.hut 9898
+skipper.crew.hut skipper.crew.hut 662
+maryann.girl.hut ginger.girl.hut 5976
+fileserver.copyroom.hut laser3.copyroom.hut 211
+ginger.girl.hut professor.hut 5561
+fileserver.copyroom.hut maryann.girl.hut 4372
+fileserver.copyroom.hut gilligan.crew.hut 6248
+ginger.girl.hut fileserver.copyroom.hut 7772
+laser3.copyroom.hut ginger.girl.hut 192
+gilligan.crew.hut skipper.crew.hut 6988
+ginger.girl.hut professor.hut 8491
+maryann.girl.hut fileserver.copyroom.hut 2701
+fileserver.copyroom.hut fileserver.copyroom.hut 4600
+ginger.girl.hut gilligan.crew.hut 7050
+laser3.copyroom.hut skipper.crew.hut 6591
+fileserver.copyroom.hut fileserver.copyroom.hut 7761
+ginger.girl.hut skipper.crew.hut 2101
+skipper.crew.hut professor.hut 1040
+fileserver.copyroom.hut maryann.girl.hut 8485
+professor.hut professor.hut 6421
+ginger.girl.hut skipper.crew.hut 4702
+fileserver.copyroom.hut professor.hut 2868
+gilligan.crew.hut fileserver.copyroom.hut 8988
+fileserver.copyroom.hut professor.hut 2778
+maryann.girl.hut laser3.copyroom.hut 6590
+professor.hut gilligan.crew.hut 4443
+maryann.girl.hut professor.hut 9210
+professor.hut gilligan.crew.hut 7946
+laser3.copyroom.hut fileserver.copyroom.hut 5969
+laser3.copyroom.hut skipper.crew.hut 3035
+professor.hut gilligan.crew.hut 9007
+laser3.copyroom.hut gilligan.crew.hut 615
+gilligan.crew.hut ginger.girl.hut 2982
+ginger.girl.hut laser3.copyroom.hut 8058
+ginger.girl.hut maryann.girl.hut 8612
+skipper.crew.hut skipper.crew.hut 6400
+ginger.girl.hut professor.hut 9281
+fileserver.copyroom.hut professor.hut 4081
+fileserver.copyroom.hut ginger.girl.hut 786
+maryann.girl.hut skipper.crew.hut 5367
+laser3.copyroom.hut professor.hut 7771
+gilligan.crew.hut gilligan.crew.hut 4227
+professor.hut gilligan.crew.hut 7895
+fileserver.copyroom.hut fileserver.copyroom.hut 8838
+professor.hut ginger.girl.hut 2958
+maryann.girl.hut skipper.crew.hut 6098
+ginger.girl.hut laser3.copyroom.hut 2571
+maryann.girl.hut fileserver.copyroom.hut 1968
+gilligan.crew.hut laser3.copyroom.hut 9320
+professor.hut laser3.copyroom.hut 2968
+laser3.copyroom.hut maryann.girl.hut 3184
+professor.hut laser3.copyroom.hut 5138
+ginger.girl.hut professor.hut 8104
+ginger.girl.hut gilligan.crew.hut 4550
+laser3.copyroom.hut laser3.copyroom.hut 9164
+gilligan.crew.hut laser3.copyroom.hut 5137
+laser3.copyroom.hut gilligan.crew.hut 441
+skipper.crew.hut fileserver.copyroom.hut 2045
+professor.hut skipper.crew.hut 8133
+fileserver.copyroom.hut ginger.girl.hut 2272
+gilligan.crew.hut ginger.girl.hut 4582
+skipper.crew.hut gilligan.crew.hut 836
+professor.hut gilligan.crew.hut 9511
+ginger.girl.hut laser3.copyroom.hut 5678
+professor.hut skipper.crew.hut 8175
+skipper.crew.hut professor.hut 4746
+professor.hut maryann.girl.hut 4105
+ginger.girl.hut skipper.crew.hut 440
+laser3.copyroom.hut maryann.girl.hut 7981
+professor.hut laser3.copyroom.hut 8712
+professor.hut fileserver.copyroom.hut 8786
+gilligan.crew.hut skipper.crew.hut 3866
+professor.hut fileserver.copyroom.hut 2087
+maryann.girl.hut maryann.girl.hut 1593
+fileserver.copyroom.hut maryann.girl.hut 580
+fileserver.copyroom.hut maryann.girl.hut 7056
+professor.hut laser3.copyroom.hut 6020
+maryann.girl.hut gilligan.crew.hut 8983
+maryann.girl.hut gilligan.crew.hut 7670
+maryann.girl.hut maryann.girl.hut 2410
+ginger.girl.hut maryann.girl.hut 9101
+ginger.girl.hut maryann.girl.hut 2937
+professor.hut professor.hut 1577
+laser3.copyroom.hut maryann.girl.hut 9032
+laser3.copyroom.hut fileserver.copyroom.hut 642
+ginger.girl.hut laser3.copyroom.hut 3622
+laser3.copyroom.hut gilligan.crew.hut 7036
+maryann.girl.hut gilligan.crew.hut 144
+skipper.crew.hut gilligan.crew.hut 4249
+maryann.girl.hut fileserver.copyroom.hut 8685
+skipper.crew.hut gilligan.crew.hut 4267
+skipper.crew.hut professor.hut 9243
+skipper.crew.hut maryann.girl.hut 9490
+maryann.girl.hut professor.hut 2717
+gilligan.crew.hut fileserver.copyroom.hut 3962
+fileserver.copyroom.hut maryann.girl.hut 2253
+laser3.copyroom.hut maryann.girl.hut 2785
+fileserver.copyroom.hut gilligan.crew.hut 9025
+laser3.copyroom.hut fileserver.copyroom.hut 3494
+laser3.copyroom.hut gilligan.crew.hut 9341
+skipper.crew.hut professor.hut 7644
+professor.hut professor.hut 3218
+maryann.girl.hut skipper.crew.hut 4882
+maryann.girl.hut fileserver.copyroom.hut 3356
+laser3.copyroom.hut professor.hut 9882
+ginger.girl.hut maryann.girl.hut 6136
+ginger.girl.hut skipper.crew.hut 639
+professor.hut skipper.crew.hut 8408
+skipper.crew.hut gilligan.crew.hut 7320
+maryann.girl.hut skipper.crew.hut 7583
+fileserver.copyroom.hut gilligan.crew.hut 3751
+gilligan.crew.hut gilligan.crew.hut 6285
+professor.hut laser3.copyroom.hut 9531
+fileserver.copyroom.hut laser3.copyroom.hut 1423
+ginger.girl.hut ginger.girl.hut 7231
+laser3.copyroom.hut maryann.girl.hut 5128
+fileserver.copyroom.hut laser3.copyroom.hut 9789
+laser3.copyroom.hut maryann.girl.hut 2898
+professor.hut skipper.crew.hut 7410
+maryann.girl.hut laser3.copyroom.hut 1837
+skipper.crew.hut maryann.girl.hut 4435
+fileserver.copyroom.hut fileserver.copyroom.hut 5764
+ginger.girl.hut ginger.girl.hut 2767
+ginger.girl.hut fileserver.copyroom.hut 301
+skipper.crew.hut gilligan.crew.hut 9972
+fileserver.copyroom.hut skipper.crew.hut 7017
+laser3.copyroom.hut ginger.girl.hut 6730
+maryann.girl.hut skipper.crew.hut 3126
+professor.hut skipper.crew.hut 3472
+laser3.copyroom.hut skipper.crew.hut 1710
+fileserver.copyroom.hut maryann.girl.hut 2536
+fileserver.copyroom.hut professor.hut 6646
+skipper.crew.hut fileserver.copyroom.hut 83
+fileserver.copyroom.hut professor.hut 7625
+ginger.girl.hut ginger.girl.hut 825
+gilligan.crew.hut skipper.crew.hut 2480
+gilligan.crew.hut professor.hut 2802
+maryann.girl.hut skipper.crew.hut 6393
+gilligan.crew.hut fileserver.copyroom.hut 4721
+fileserver.copyroom.hut fileserver.copyroom.hut 3807
+maryann.girl.hut skipper.crew.hut 4311
+ginger.girl.hut professor.hut 2979
+laser3.copyroom.hut maryann.girl.hut 2388
+laser3.copyroom.hut ginger.girl.hut 9065
+laser3.copyroom.hut maryann.girl.hut 923
+maryann.girl.hut professor.hut 2232
+professor.hut gilligan.crew.hut 6726
+maryann.girl.hut laser3.copyroom.hut 8510
+professor.hut professor.hut 1756
+professor.hut maryann.girl.hut 9322
+skipper.crew.hut gilligan.crew.hut 5277
+fileserver.copyroom.hut laser3.copyroom.hut 1621
+fileserver.copyroom.hut ginger.girl.hut 6793
+fileserver.copyroom.hut maryann.girl.hut 9208
+ginger.girl.hut maryann.girl.hut 8528
+gilligan.crew.hut maryann.girl.hut 2645
+ginger.girl.hut maryann.girl.hut 9887
+gilligan.crew.hut skipper.crew.hut 9669
+ginger.girl.hut maryann.girl.hut 650
+laser3.copyroom.hut fileserver.copyroom.hut 2777
+ginger.girl.hut maryann.girl.hut 3764
+maryann.girl.hut skipper.crew.hut 7685
+skipper.crew.hut skipper.crew.hut 5918
+ginger.girl.hut maryann.girl.hut 5956
+fileserver.copyroom.hut gilligan.crew.hut 5366
+skipper.crew.hut laser3.copyroom.hut 1793
+maryann.girl.hut ginger.girl.hut 5342
+laser3.copyroom.hut professor.hut 9500
+skipper.crew.hut skipper.crew.hut 279
+gilligan.crew.hut laser3.copyroom.hut 4338
+professor.hut maryann.girl.hut 8716
+fileserver.copyroom.hut ginger.girl.hut 4733
+fileserver.copyroom.hut ginger.girl.hut 3493
+ginger.girl.hut professor.hut 9831
+ginger.girl.hut skipper.crew.hut 5783
+skipper.crew.hut laser3.copyroom.hut 8221
+skipper.crew.hut ginger.girl.hut 1251
+professor.hut maryann.girl.hut 5789
+professor.hut professor.hut 8486
+skipper.crew.hut skipper.crew.hut 3668
+fileserver.copyroom.hut gilligan.crew.hut 1515
+ginger.girl.hut skipper.crew.hut 3905
+laser3.copyroom.hut gilligan.crew.hut 2488
+fileserver.copyroom.hut maryann.girl.hut 3095
+fileserver.copyroom.hut skipper.crew.hut 1651
+professor.hut professor.hut 5036
+skipper.crew.hut maryann.girl.hut 6870
+fileserver.copyroom.hut ginger.girl.hut 4647
+gilligan.crew.hut ginger.girl.hut 4789
+skipper.crew.hut maryann.girl.hut 5633
+gilligan.crew.hut maryann.girl.hut 4135
+gilligan.crew.hut ginger.girl.hut 1749
+laser3.copyroom.hut laser3.copyroom.hut 6161
+fileserver.copyroom.hut professor.hut 4682
+fileserver.copyroom.hut fileserver.copyroom.hut 9468
+fileserver.copyroom.hut laser3.copyroom.hut 3856
+skipper.crew.hut gilligan.crew.hut 8192
+ginger.girl.hut gilligan.crew.hut 4281
+gilligan.crew.hut fileserver.copyroom.hut 6372
+laser3.copyroom.hut ginger.girl.hut 4648
+maryann.girl.hut fileserver.copyroom.hut 5742
+fileserver.copyroom.hut gilligan.crew.hut 8311
+skipper.crew.hut skipper.crew.hut 1186
+gilligan.crew.hut ginger.girl.hut 7111
+laser3.copyroom.hut skipper.crew.hut 8252
+fileserver.copyroom.hut professor.hut 8610
+laser3.copyroom.hut ginger.girl.hut 8823
+ginger.girl.hut gilligan.crew.hut 1989
+fileserver.copyroom.hut ginger.girl.hut 3657
+professor.hut professor.hut 7149
+maryann.girl.hut fileserver.copyroom.hut 7126
+maryann.girl.hut gilligan.crew.hut 2761
+fileserver.copyroom.hut fileserver.copyroom.hut 4278
+laser3.copyroom.hut ginger.girl.hut 3255
+professor.hut skipper.crew.hut 4303
+maryann.girl.hut laser3.copyroom.hut 5672
+skipper.crew.hut gilligan.crew.hut 9868
+skipper.crew.hut professor.hut 3400
+professor.hut gilligan.crew.hut 8473
+maryann.girl.hut professor.hut 1939
+ginger.girl.hut professor.hut 9231
+maryann.girl.hut maryann.girl.hut 5674
+skipper.crew.hut skipper.crew.hut 6922
+maryann.girl.hut ginger.girl.hut 3561
+gilligan.crew.hut fileserver.copyroom.hut 3791
+skipper.crew.hut fileserver.copyroom.hut 4285
+gilligan.crew.hut laser3.copyroom.hut 5376
+professor.hut gilligan.crew.hut 7264
+professor.hut skipper.crew.hut 3220
+skipper.crew.hut maryann.girl.hut 303
+skipper.crew.hut maryann.girl.hut 688
+gilligan.crew.hut laser3.copyroom.hut 8761
+professor.hut ginger.girl.hut 1135
+gilligan.crew.hut maryann.girl.hut 1922
+ginger.girl.hut gilligan.crew.hut 8558
+fileserver.copyroom.hut gilligan.crew.hut 3359
+gilligan.crew.hut maryann.girl.hut 4383
+ginger.girl.hut ginger.girl.hut 674
+maryann.girl.hut maryann.girl.hut 7266
+gilligan.crew.hut ginger.girl.hut 8173
+professor.hut ginger.girl.hut 1020
+laser3.copyroom.hut gilligan.crew.hut 3745
+professor.hut professor.hut 8298
+gilligan.crew.hut maryann.girl.hut 5792
+gilligan.crew.hut skipper.crew.hut 3416
+maryann.girl.hut fileserver.copyroom.hut 7725
+fileserver.copyroom.hut gilligan.crew.hut 835
+gilligan.crew.hut ginger.girl.hut 1986
+professor.hut skipper.crew.hut 4645
+ginger.girl.hut skipper.crew.hut 6106
+ginger.girl.hut gilligan.crew.hut 3575
+ginger.girl.hut skipper.crew.hut 9163
+professor.hut laser3.copyroom.hut 9258
+skipper.crew.hut professor.hut 3497
+professor.hut maryann.girl.hut 9444
+laser3.copyroom.hut maryann.girl.hut 9155
+skipper.crew.hut professor.hut 6651
+skipper.crew.hut laser3.copyroom.hut 158
+fileserver.copyroom.hut gilligan.crew.hut 5426
+laser3.copyroom.hut laser3.copyroom.hut 183
+laser3.copyroom.hut laser3.copyroom.hut 4326
+professor.hut maryann.girl.hut 3796
+gilligan.crew.hut professor.hut 5901
+professor.hut maryann.girl.hut 3209
+maryann.girl.hut gilligan.crew.hut 4774
+maryann.girl.hut fileserver.copyroom.hut 3935
+professor.hut gilligan.crew.hut 7073
+ginger.girl.hut ginger.girl.hut 7588
+laser3.copyroom.hut professor.hut 8312
+maryann.girl.hut gilligan.crew.hut 1210
+maryann.girl.hut laser3.copyroom.hut 7055
+skipper.crew.hut skipper.crew.hut 7990
+laser3.copyroom.hut skipper.crew.hut 2607
+fileserver.copyroom.hut laser3.copyroom.hut 7855
+fileserver.copyroom.hut gilligan.crew.hut 9052
+laser3.copyroom.hut ginger.girl.hut 7702
+ginger.girl.hut skipper.crew.hut 9823
+fileserver.copyroom.hut laser3.copyroom.hut 1144
+fileserver.copyroom.hut professor.hut 8367
+ginger.girl.hut skipper.crew.hut 4090
+laser3.copyroom.hut professor.hut 4152
+professor.hut professor.hut 2603
+skipper.crew.hut skipper.crew.hut 428
+gilligan.crew.hut fileserver.copyroom.hut 2382
+fileserver.copyroom.hut laser3.copyroom.hut 5112
+laser3.copyroom.hut gilligan.crew.hut 8228
+laser3.copyroom.hut gilligan.crew.hut 846
+ginger.girl.hut skipper.crew.hut 3886
+gilligan.crew.hut fileserver.copyroom.hut 7410
+laser3.copyroom.hut fileserver.copyroom.hut 8507
+laser3.copyroom.hut professor.hut 7231
+ginger.girl.hut maryann.girl.hut 4881
+skipper.crew.hut skipper.crew.hut 2826
+laser3.copyroom.hut maryann.girl.hut 8584
+skipper.crew.hut gilligan.crew.hut 9845
+skipper.crew.hut professor.hut 6116
+gilligan.crew.hut fileserver.copyroom.hut 7503
+gilligan.crew.hut skipper.crew.hut 4121
+gilligan.crew.hut skipper.crew.hut 6498
+skipper.crew.hut skipper.crew.hut 8972
+maryann.girl.hut gilligan.crew.hut 3018
+professor.hut maryann.girl.hut 5009
+gilligan.crew.hut fileserver.copyroom.hut 9774
+professor.hut professor.hut 9954
+professor.hut maryann.girl.hut 7786
+skipper.crew.hut ginger.girl.hut 8799
+maryann.girl.hut laser3.copyroom.hut 8706
+skipper.crew.hut laser3.copyroom.hut 7372
+professor.hut maryann.girl.hut 7725
+fileserver.copyroom.hut skipper.crew.hut 7162
+fileserver.copyroom.hut ginger.girl.hut 5558
+professor.hut professor.hut 3442
+skipper.crew.hut ginger.girl.hut 9986
+ginger.girl.hut gilligan.crew.hut 9462
+gilligan.crew.hut fileserver.copyroom.hut 3007
+ginger.girl.hut ginger.girl.hut 7160
+laser3.copyroom.hut skipper.crew.hut 9113
+skipper.crew.hut professor.hut 7251
+skipper.crew.hut professor.hut 624
+skipper.crew.hut laser3.copyroom.hut 2045
+skipper.crew.hut professor.hut 1784
+professor.hut maryann.girl.hut 5760
+laser3.copyroom.hut maryann.girl.hut 8480
+maryann.girl.hut professor.hut 2474
+professor.hut maryann.girl.hut 9626
+skipper.crew.hut fileserver.copyroom.hut 3644
+laser3.copyroom.hut fileserver.copyroom.hut 2350
+laser3.copyroom.hut laser3.copyroom.hut 9860
+fileserver.copyroom.hut gilligan.crew.hut 2191
+fileserver.copyroom.hut gilligan.crew.hut 98
+fileserver.copyroom.hut skipper.crew.hut 589
+maryann.girl.hut professor.hut 8288
+laser3.copyroom.hut skipper.crew.hut 6641
+maryann.girl.hut laser3.copyroom.hut 109
+gilligan.crew.hut professor.hut 9229
+fileserver.copyroom.hut maryann.girl.hut 8794
+skipper.crew.hut skipper.crew.hut 1812
+laser3.copyroom.hut gilligan.crew.hut 9857
+fileserver.copyroom.hut maryann.girl.hut 5213
+maryann.girl.hut maryann.girl.hut 3542
+laser3.copyroom.hut maryann.girl.hut 1938
+professor.hut ginger.girl.hut 7193
+gilligan.crew.hut laser3.copyroom.hut 9526
+ginger.girl.hut professor.hut 9682
+professor.hut laser3.copyroom.hut 6438
+gilligan.crew.hut laser3.copyroom.hut 8314
+professor.hut ginger.girl.hut 2982
+gilligan.crew.hut maryann.girl.hut 7298
+laser3.copyroom.hut professor.hut 3750
+gilligan.crew.hut fileserver.copyroom.hut 4396
+skipper.crew.hut gilligan.crew.hut 8904
+maryann.girl.hut professor.hut 3933
+skipper.crew.hut skipper.crew.hut 8484
+maryann.girl.hut ginger.girl.hut 8480
+gilligan.crew.hut maryann.girl.hut 4191
+skipper.crew.hut skipper.crew.hut 7926
+gilligan.crew.hut ginger.girl.hut 6329
+maryann.girl.hut ginger.girl.hut 7479
+ginger.girl.hut ginger.girl.hut 4394
+fileserver.copyroom.hut skipper.crew.hut 4872
+laser3.copyroom.hut fileserver.copyroom.hut 1529
+skipper.crew.hut ginger.girl.hut 138
+fileserver.copyroom.hut gilligan.crew.hut 9313
+fileserver.copyroom.hut gilligan.crew.hut 2607
+ginger.girl.hut professor.hut 8791
+gilligan.crew.hut maryann.girl.hut 4282
+skipper.crew.hut laser3.copyroom.hut 4167
+fileserver.copyroom.hut laser3.copyroom.hut 4421
+fileserver.copyroom.hut gilligan.crew.hut 8683
+professor.hut ginger.girl.hut 4925
+ginger.girl.hut skipper.crew.hut 2048
+maryann.girl.hut fileserver.copyroom.hut 2646
+laser3.copyroom.hut maryann.girl.hut 1567
+laser3.copyroom.hut professor.hut 4959
+fileserver.copyroom.hut ginger.girl.hut 6818
+fileserver.copyroom.hut ginger.girl.hut 3194
+professor.hut professor.hut 5590
+professor.hut skipper.crew.hut 7284
+skipper.crew.hut maryann.girl.hut 945
+ginger.girl.hut skipper.crew.hut 9244
+maryann.girl.hut fileserver.copyroom.hut 4962
+fileserver.copyroom.hut ginger.girl.hut 8474
+laser3.copyroom.hut professor.hut 344
+ginger.girl.hut ginger.girl.hut 458
+maryann.girl.hut fileserver.copyroom.hut 3731
+skipper.crew.hut skipper.crew.hut 503
+fileserver.copyroom.hut maryann.girl.hut 1971
+professor.hut laser3.copyroom.hut 4467
+skipper.crew.hut skipper.crew.hut 283
+ginger.girl.hut laser3.copyroom.hut 6582
+skipper.crew.hut professor.hut 9635
+fileserver.copyroom.hut professor.hut 4718
+ginger.girl.hut professor.hut 9168
+professor.hut ginger.girl.hut 6955
+gilligan.crew.hut ginger.girl.hut 7837
+laser3.copyroom.hut maryann.girl.hut 3161
+laser3.copyroom.hut fileserver.copyroom.hut 9557
+skipper.crew.hut skipper.crew.hut 9368
+fileserver.copyroom.hut fileserver.copyroom.hut 2125
+fileserver.copyroom.hut professor.hut 5920
+gilligan.crew.hut gilligan.crew.hut 6068
+skipper.crew.hut ginger.girl.hut 9884
+fileserver.copyroom.hut maryann.girl.hut 596
+professor.hut skipper.crew.hut 3558
+skipper.crew.hut fileserver.copyroom.hut 5156
+professor.hut skipper.crew.hut 2636
+laser3.copyroom.hut gilligan.crew.hut 4262
+laser3.copyroom.hut professor.hut 6459
+gilligan.crew.hut gilligan.crew.hut 3223
+professor.hut professor.hut 883
+maryann.girl.hut laser3.copyroom.hut 1895
+fileserver.copyroom.hut laser3.copyroom.hut 7162
+fileserver.copyroom.hut ginger.girl.hut 5611
+skipper.crew.hut skipper.crew.hut 7170
+ginger.girl.hut fileserver.copyroom.hut 6682
+laser3.copyroom.hut ginger.girl.hut 285
+laser3.copyroom.hut gilligan.crew.hut 5342
+professor.hut maryann.girl.hut 2299
+gilligan.crew.hut professor.hut 288
+gilligan.crew.hut fileserver.copyroom.hut 2419
+professor.hut ginger.girl.hut 8574
+professor.hut fileserver.copyroom.hut 3012
+maryann.girl.hut gilligan.crew.hut 3334
+maryann.girl.hut gilligan.crew.hut 7473
+skipper.crew.hut fileserver.copyroom.hut 9158
+skipper.crew.hut gilligan.crew.hut 7470
+professor.hut gilligan.crew.hut 7258
+maryann.girl.hut professor.hut 1369
+gilligan.crew.hut maryann.girl.hut 6197
+laser3.copyroom.hut gilligan.crew.hut 8472
+skipper.crew.hut professor.hut 9412
+professor.hut professor.hut 5596
+ginger.girl.hut gilligan.crew.hut 7301
+fileserver.copyroom.hut laser3.copyroom.hut 3706
+skipper.crew.hut skipper.crew.hut 3051
+skipper.crew.hut ginger.girl.hut 4251
+maryann.girl.hut fileserver.copyroom.hut 2271
+laser3.copyroom.hut gilligan.crew.hut 3599
+ginger.girl.hut fileserver.copyroom.hut 4704
+laser3.copyroom.hut professor.hut 9202
+professor.hut professor.hut 553
+professor.hut ginger.girl.hut 3394
+laser3.copyroom.hut ginger.girl.hut 9984
+ginger.girl.hut laser3.copyroom.hut 3662
+maryann.girl.hut fileserver.copyroom.hut 4157
+fileserver.copyroom.hut fileserver.copyroom.hut 1285
+laser3.copyroom.hut gilligan.crew.hut 2907
+fileserver.copyroom.hut laser3.copyroom.hut 4519
+gilligan.crew.hut ginger.girl.hut 1389
+fileserver.copyroom.hut ginger.girl.hut 7562
+skipper.crew.hut maryann.girl.hut 4740
+laser3.copyroom.hut laser3.copyroom.hut 7444
+fileserver.copyroom.hut gilligan.crew.hut 5967
+skipper.crew.hut gilligan.crew.hut 6067
+maryann.girl.hut laser3.copyroom.hut 3651
+ginger.girl.hut laser3.copyroom.hut 8382
+professor.hut maryann.girl.hut 8723
+skipper.crew.hut laser3.copyroom.hut 3554
+laser3.copyroom.hut skipper.crew.hut 2107
+fileserver.copyroom.hut laser3.copyroom.hut 8023
+professor.hut gilligan.crew.hut 2541
+laser3.copyroom.hut laser3.copyroom.hut 1005
+fileserver.copyroom.hut skipper.crew.hut 2227
+gilligan.crew.hut fileserver.copyroom.hut 8050
+maryann.girl.hut maryann.girl.hut 5450
+skipper.crew.hut gilligan.crew.hut 4280
+gilligan.crew.hut skipper.crew.hut 820
+professor.hut maryann.girl.hut 5377
+fileserver.copyroom.hut maryann.girl.hut 6548
+gilligan.crew.hut fileserver.copyroom.hut 6776
+ginger.girl.hut ginger.girl.hut 2619
+laser3.copyroom.hut laser3.copyroom.hut 2317
+laser3.copyroom.hut fileserver.copyroom.hut 6784
+maryann.girl.hut professor.hut 718
+laser3.copyroom.hut fileserver.copyroom.hut 7513
+fileserver.copyroom.hut ginger.girl.hut 1201
+ginger.girl.hut maryann.girl.hut 3523
+professor.hut professor.hut 4327
+maryann.girl.hut professor.hut 2066
+maryann.girl.hut laser3.copyroom.hut 3925
+maryann.girl.hut fileserver.copyroom.hut 8424
+fileserver.copyroom.hut skipper.crew.hut 2030
+fileserver.copyroom.hut skipper.crew.hut 7349
+maryann.girl.hut skipper.crew.hut 3194
+gilligan.crew.hut skipper.crew.hut 1788
+ginger.girl.hut ginger.girl.hut 3056
+skipper.crew.hut maryann.girl.hut 333
+professor.hut professor.hut 8813
+maryann.girl.hut skipper.crew.hut 9344
+fileserver.copyroom.hut gilligan.crew.hut 8739
+fileserver.copyroom.hut skipper.crew.hut 9602
+fileserver.copyroom.hut skipper.crew.hut 649
+professor.hut maryann.girl.hut 6073
+fileserver.copyroom.hut professor.hut 575
+gilligan.crew.hut professor.hut 3903
+fileserver.copyroom.hut laser3.copyroom.hut 9292
+maryann.girl.hut ginger.girl.hut 4454
+laser3.copyroom.hut laser3.copyroom.hut 3968
+maryann.girl.hut laser3.copyroom.hut 3437
+gilligan.crew.hut professor.hut 5750
+professor.hut fileserver.copyroom.hut 5165
+laser3.copyroom.hut maryann.girl.hut 7595
+maryann.girl.hut skipper.crew.hut 4619
+skipper.crew.hut maryann.girl.hut 5595
+laser3.copyroom.hut fileserver.copyroom.hut 7484
+maryann.girl.hut laser3.copyroom.hut 5710
+fileserver.copyroom.hut ginger.girl.hut 3197
+fileserver.copyroom.hut ginger.girl.hut 9141
+skipper.crew.hut maryann.girl.hut 5156
+laser3.copyroom.hut ginger.girl.hut 2457
+maryann.girl.hut skipper.crew.hut 3704
+gilligan.crew.hut laser3.copyroom.hut 3690
+ginger.girl.hut skipper.crew.hut 4279
+skipper.crew.hut fileserver.copyroom.hut 9527
+ginger.girl.hut ginger.girl.hut 3846
+fileserver.copyroom.hut laser3.copyroom.hut 3389
+skipper.crew.hut fileserver.copyroom.hut 756
+ginger.girl.hut maryann.girl.hut 4179
+ginger.girl.hut maryann.girl.hut 5778
+ginger.girl.hut skipper.crew.hut 6495
+laser3.copyroom.hut laser3.copyroom.hut 1174
+fileserver.copyroom.hut laser3.copyroom.hut 5919
+laser3.copyroom.hut professor.hut 5661
+fileserver.copyroom.hut professor.hut 4019
+fileserver.copyroom.hut maryann.girl.hut 7723
+skipper.crew.hut laser3.copyroom.hut 734
+maryann.girl.hut ginger.girl.hut 3291
+skipper.crew.hut laser3.copyroom.hut 903
+ginger.girl.hut skipper.crew.hut 2331
+skipper.crew.hut maryann.girl.hut 9887
+gilligan.crew.hut ginger.girl.hut 2984
+fileserver.copyroom.hut professor.hut 4754
+laser3.copyroom.hut maryann.girl.hut 9776
+skipper.crew.hut fileserver.copyroom.hut 535
+maryann.girl.hut professor.hut 9830
+maryann.girl.hut maryann.girl.hut 4226
+skipper.crew.hut fileserver.copyroom.hut 3773
+ginger.girl.hut gilligan.crew.hut 1982
+laser3.copyroom.hut ginger.girl.hut 4678
+professor.hut laser3.copyroom.hut 1478
+laser3.copyroom.hut laser3.copyroom.hut 3288
+skipper.crew.hut gilligan.crew.hut 9786
+professor.hut professor.hut 935
+fileserver.copyroom.hut skipper.crew.hut 729
+skipper.crew.hut ginger.girl.hut 429
+gilligan.crew.hut ginger.girl.hut 232
+professor.hut professor.hut 3974
+fileserver.copyroom.hut professor.hut 8296
+gilligan.crew.hut fileserver.copyroom.hut 2754
+gilligan.crew.hut maryann.girl.hut 6502
+ginger.girl.hut gilligan.crew.hut 3485
+maryann.girl.hut ginger.girl.hut 2046
+laser3.copyroom.hut gilligan.crew.hut 5760
+laser3.copyroom.hut laser3.copyroom.hut 1013
+maryann.girl.hut gilligan.crew.hut 2670
+professor.hut gilligan.crew.hut 8840
+maryann.girl.hut ginger.girl.hut 9341
+professor.hut skipper.crew.hut 3579
+gilligan.crew.hut fileserver.copyroom.hut 9274
+laser3.copyroom.hut gilligan.crew.hut 4229
+ginger.girl.hut ginger.girl.hut 1456
+ginger.girl.hut fileserver.copyroom.hut 3920
+laser3.copyroom.hut professor.hut 9021
+ginger.girl.hut maryann.girl.hut 6660
+laser3.copyroom.hut ginger.girl.hut 3882
+laser3.copyroom.hut fileserver.copyroom.hut 8286
+laser3.copyroom.hut ginger.girl.hut 5161
+ginger.girl.hut professor.hut 9105
+professor.hut ginger.girl.hut 7342
+laser3.copyroom.hut maryann.girl.hut 1193
+laser3.copyroom.hut maryann.girl.hut 299
+ginger.girl.hut fileserver.copyroom.hut 229
+skipper.crew.hut maryann.girl.hut 4387
+gilligan.crew.hut ginger.girl.hut 4021
+professor.hut gilligan.crew.hut 1148
+fileserver.copyroom.hut gilligan.crew.hut 8516
+gilligan.crew.hut maryann.girl.hut 8937
+professor.hut laser3.copyroom.hut 6177
+laser3.copyroom.hut gilligan.crew.hut 9794
+gilligan.crew.hut laser3.copyroom.hut 636
+maryann.girl.hut laser3.copyroom.hut 6557
+skipper.crew.hut gilligan.crew.hut 2038
+fileserver.copyroom.hut laser3.copyroom.hut 8888
+gilligan.crew.hut ginger.girl.hut 6798
+gilligan.crew.hut ginger.girl.hut 2098
+ginger.girl.hut ginger.girl.hut 7620
+ginger.girl.hut gilligan.crew.hut 4017
+fileserver.copyroom.hut skipper.crew.hut 3594
+ginger.girl.hut ginger.girl.hut 3876
+professor.hut laser3.copyroom.hut 6194
+gilligan.crew.hut ginger.girl.hut 6413
+fileserver.copyroom.hut maryann.girl.hut 9613
+professor.hut professor.hut 907
+maryann.girl.hut ginger.girl.hut 7443
+fileserver.copyroom.hut maryann.girl.hut 9019
+skipper.crew.hut ginger.girl.hut 1853
+laser3.copyroom.hut gilligan.crew.hut 1647
+gilligan.crew.hut fileserver.copyroom.hut 2496
+ginger.girl.hut ginger.girl.hut 450
+professor.hut professor.hut 5914
+fileserver.copyroom.hut maryann.girl.hut 6289
+professor.hut fileserver.copyroom.hut 8800
+skipper.crew.hut maryann.girl.hut 5139
+gilligan.crew.hut gilligan.crew.hut 9488
+maryann.girl.hut skipper.crew.hut 6804
+fileserver.copyroom.hut fileserver.copyroom.hut 7465
+gilligan.crew.hut professor.hut 5349
+maryann.girl.hut skipper.crew.hut 4470
+professor.hut laser3.copyroom.hut 8959
+fileserver.copyroom.hut maryann.girl.hut 8967
+laser3.copyroom.hut gilligan.crew.hut 7005
+maryann.girl.hut laser3.copyroom.hut 5890
+laser3.copyroom.hut professor.hut 2490
+laser3.copyroom.hut skipper.crew.hut 4929
+professor.hut skipper.crew.hut 7569
+skipper.crew.hut fileserver.copyroom.hut 6896
+laser3.copyroom.hut fileserver.copyroom.hut 1003
+skipper.crew.hut ginger.girl.hut 7636
+skipper.crew.hut ginger.girl.hut 374
+fileserver.copyroom.hut professor.hut 4555
+professor.hut professor.hut 3246
+laser3.copyroom.hut professor.hut 9956
+skipper.crew.hut ginger.girl.hut 6726
+skipper.crew.hut fileserver.copyroom.hut 5667
+professor.hut maryann.girl.hut 5888
+ginger.girl.hut maryann.girl.hut 5794
+maryann.girl.hut ginger.girl.hut 9309
+laser3.copyroom.hut laser3.copyroom.hut 9984
+gilligan.crew.hut ginger.girl.hut 3165
+laser3.copyroom.hut laser3.copyroom.hut 1135
+fileserver.copyroom.hut maryann.girl.hut 8500
+laser3.copyroom.hut fileserver.copyroom.hut 8003
+laser3.copyroom.hut gilligan.crew.hut 6769
+gilligan.crew.hut laser3.copyroom.hut 3303
+skipper.crew.hut maryann.girl.hut 6303
+maryann.girl.hut laser3.copyroom.hut 5141
+professor.hut skipper.crew.hut 5617
+skipper.crew.hut maryann.girl.hut 8371
+gilligan.crew.hut maryann.girl.hut 1125
+skipper.crew.hut professor.hut 4870
+laser3.copyroom.hut skipper.crew.hut 7819
+ginger.girl.hut laser3.copyroom.hut 4735
+maryann.girl.hut fileserver.copyroom.hut 4260
+fileserver.copyroom.hut professor.hut 2029
+gilligan.crew.hut fileserver.copyroom.hut 9044
+professor.hut skipper.crew.hut 2726
+ginger.girl.hut skipper.crew.hut 5854
+gilligan.crew.hut gilligan.crew.hut 8699
+professor.hut laser3.copyroom.hut 2794
+gilligan.crew.hut fileserver.copyroom.hut 2856
+skipper.crew.hut laser3.copyroom.hut 2742
+professor.hut ginger.girl.hut 8959
+maryann.girl.hut skipper.crew.hut 8904
+ginger.girl.hut maryann.girl.hut 7682
+ginger.girl.hut professor.hut 2599
+gilligan.crew.hut laser3.copyroom.hut 3592
+fileserver.copyroom.hut laser3.copyroom.hut 9215
+gilligan.crew.hut skipper.crew.hut 7459
+professor.hut professor.hut 1533
+ginger.girl.hut gilligan.crew.hut 24
+gilligan.crew.hut maryann.girl.hut 1164
+gilligan.crew.hut ginger.girl.hut 7448
+maryann.girl.hut skipper.crew.hut 4987
+professor.hut professor.hut 8052
+ginger.girl.hut professor.hut 5472
+laser3.copyroom.hut fileserver.copyroom.hut 3953
+maryann.girl.hut laser3.copyroom.hut 2468
+laser3.copyroom.hut ginger.girl.hut 5248
+laser3.copyroom.hut laser3.copyroom.hut 7672
+skipper.crew.hut maryann.girl.hut 7640
+skipper.crew.hut skipper.crew.hut 4252
+professor.hut fileserver.copyroom.hut 2314
+professor.hut fileserver.copyroom.hut 1667
+laser3.copyroom.hut ginger.girl.hut 1312
+skipper.crew.hut ginger.girl.hut 5506
+skipper.crew.hut ginger.girl.hut 3660
+ginger.girl.hut skipper.crew.hut 8428
+skipper.crew.hut professor.hut 6776
+gilligan.crew.hut gilligan.crew.hut 8798
+laser3.copyroom.hut fileserver.copyroom.hut 465
+gilligan.crew.hut skipper.crew.hut 3309
+laser3.copyroom.hut gilligan.crew.hut 2552
+gilligan.crew.hut skipper.crew.hut 7254
+fileserver.copyroom.hut skipper.crew.hut 6344
+skipper.crew.hut maryann.girl.hut 98
+maryann.girl.hut maryann.girl.hut 3636
+skipper.crew.hut fileserver.copyroom.hut 5835
+professor.hut professor.hut 1521
+skipper.crew.hut gilligan.crew.hut 9875
+gilligan.crew.hut gilligan.crew.hut 2984
+skipper.crew.hut fileserver.copyroom.hut 9600
+maryann.girl.hut gilligan.crew.hut 2239
+skipper.crew.hut laser3.copyroom.hut 4165
+fileserver.copyroom.hut maryann.girl.hut 5520
+gilligan.crew.hut skipper.crew.hut 3263
+fileserver.copyroom.hut fileserver.copyroom.hut 3531
+fileserver.copyroom.hut professor.hut 7919
+fileserver.copyroom.hut ginger.girl.hut 1947
+maryann.girl.hut skipper.crew.hut 2690
+laser3.copyroom.hut professor.hut 6094
+laser3.copyroom.hut laser3.copyroom.hut 1814
+ginger.girl.hut gilligan.crew.hut 5878
+maryann.girl.hut gilligan.crew.hut 3932
+laser3.copyroom.hut laser3.copyroom.hut 709
+gilligan.crew.hut skipper.crew.hut 691
+ginger.girl.hut skipper.crew.hut 2636
+skipper.crew.hut gilligan.crew.hut 314
+ginger.girl.hut skipper.crew.hut 5575
+fileserver.copyroom.hut maryann.girl.hut 6075
+maryann.girl.hut gilligan.crew.hut 6705
+laser3.copyroom.hut fileserver.copyroom.hut 548
+maryann.girl.hut laser3.copyroom.hut 5327
+fileserver.copyroom.hut professor.hut 3235
+fileserver.copyroom.hut maryann.girl.hut 2023
+professor.hut maryann.girl.hut 6734
+skipper.crew.hut fileserver.copyroom.hut 3055
+maryann.girl.hut laser3.copyroom.hut 4831
+professor.hut laser3.copyroom.hut 1384
+laser3.copyroom.hut professor.hut 7830
+gilligan.crew.hut professor.hut 3913
+ginger.girl.hut maryann.girl.hut 3657
+laser3.copyroom.hut gilligan.crew.hut 8618
+laser3.copyroom.hut gilligan.crew.hut 2163
+skipper.crew.hut fileserver.copyroom.hut 7082
+fileserver.copyroom.hut gilligan.crew.hut 1078
+skipper.crew.hut fileserver.copyroom.hut 7433
+skipper.crew.hut professor.hut 9032
+fileserver.copyroom.hut skipper.crew.hut 941
+ginger.girl.hut ginger.girl.hut 7579
+maryann.girl.hut fileserver.copyroom.hut 86
+maryann.girl.hut laser3.copyroom.hut 9469
+gilligan.crew.hut ginger.girl.hut 8891
+maryann.girl.hut ginger.girl.hut 9318
+gilligan.crew.hut maryann.girl.hut 5800
+professor.hut maryann.girl.hut 6658
+laser3.copyroom.hut ginger.girl.hut 2816
+laser3.copyroom.hut professor.hut 3908
+gilligan.crew.hut fileserver.copyroom.hut 5376
+laser3.copyroom.hut professor.hut 7235
+laser3.copyroom.hut ginger.girl.hut 722
+skipper.crew.hut gilligan.crew.hut 9088
+professor.hut skipper.crew.hut 4008
+maryann.girl.hut fileserver.copyroom.hut 2083
+professor.hut ginger.girl.hut 551
+ginger.girl.hut ginger.girl.hut 5757
+maryann.girl.hut skipper.crew.hut 7131
+gilligan.crew.hut maryann.girl.hut 4015
+skipper.crew.hut fileserver.copyroom.hut 4909
+fileserver.copyroom.hut maryann.girl.hut 8509
+ginger.girl.hut maryann.girl.hut 4498
+laser3.copyroom.hut fileserver.copyroom.hut 5880
+skipper.crew.hut laser3.copyroom.hut 986
+professor.hut gilligan.crew.hut 852
+professor.hut laser3.copyroom.hut 9682
+maryann.girl.hut professor.hut 5584
+laser3.copyroom.hut gilligan.crew.hut 5986
+ginger.girl.hut fileserver.copyroom.hut 2247
+professor.hut laser3.copyroom.hut 7032
+maryann.girl.hut professor.hut 9913
+ginger.girl.hut fileserver.copyroom.hut 3845
+maryann.girl.hut gilligan.crew.hut 802
+professor.hut professor.hut 5929
+ginger.girl.hut ginger.girl.hut 1068
+maryann.girl.hut fileserver.copyroom.hut 2158
+gilligan.crew.hut gilligan.crew.hut 9513
+gilligan.crew.hut gilligan.crew.hut 4989
+skipper.crew.hut fileserver.copyroom.hut 3722
+gilligan.crew.hut ginger.girl.hut 5314
+laser3.copyroom.hut skipper.crew.hut 8526
+fileserver.copyroom.hut skipper.crew.hut 2792
+fileserver.copyroom.hut fileserver.copyroom.hut 5147
+maryann.girl.hut fileserver.copyroom.hut 7593
+ginger.girl.hut professor.hut 8629
+skipper.crew.hut gilligan.crew.hut 9738
+skipper.crew.hut maryann.girl.hut 1353
+gilligan.crew.hut maryann.girl.hut 8096
+skipper.crew.hut ginger.girl.hut 7533
+skipper.crew.hut ginger.girl.hut 9798
+fileserver.copyroom.hut gilligan.crew.hut 2013
+ginger.girl.hut maryann.girl.hut 3025
+skipper.crew.hut professor.hut 5294
+skipper.crew.hut laser3.copyroom.hut 5113
+gilligan.crew.hut fileserver.copyroom.hut 632
+skipper.crew.hut maryann.girl.hut 3178
+professor.hut laser3.copyroom.hut 6021
+skipper.crew.hut laser3.copyroom.hut 8659
+gilligan.crew.hut fileserver.copyroom.hut 2426
+ginger.girl.hut ginger.girl.hut 9089
+gilligan.crew.hut gilligan.crew.hut 1943
+laser3.copyroom.hut skipper.crew.hut 5288
+professor.hut skipper.crew.hut 4889
+gilligan.crew.hut ginger.girl.hut 9696
+gilligan.crew.hut skipper.crew.hut 2576
+professor.hut laser3.copyroom.hut 3404
+gilligan.crew.hut laser3.copyroom.hut 8092
+gilligan.crew.hut fileserver.copyroom.hut 4755
+maryann.girl.hut maryann.girl.hut 5604
+ginger.girl.hut laser3.copyroom.hut 4006
+gilligan.crew.hut gilligan.crew.hut 7346
+professor.hut skipper.crew.hut 6421
+gilligan.crew.hut laser3.copyroom.hut 8874
+professor.hut skipper.crew.hut 813
+ginger.girl.hut laser3.copyroom.hut 7621
+ginger.girl.hut professor.hut 2019
+maryann.girl.hut gilligan.crew.hut 1261
+gilligan.crew.hut professor.hut 1292
+maryann.girl.hut ginger.girl.hut 783
+skipper.crew.hut maryann.girl.hut 1450
+maryann.girl.hut laser3.copyroom.hut 7982
+fileserver.copyroom.hut fileserver.copyroom.hut 9497
+gilligan.crew.hut gilligan.crew.hut 5562
+maryann.girl.hut ginger.girl.hut 7822
+professor.hut skipper.crew.hut 7138
+maryann.girl.hut fileserver.copyroom.hut 5342
+skipper.crew.hut maryann.girl.hut 9655
+laser3.copyroom.hut laser3.copyroom.hut 5663
+gilligan.crew.hut fileserver.copyroom.hut 4838
+fileserver.copyroom.hut fileserver.copyroom.hut 3019
+fileserver.copyroom.hut maryann.girl.hut 441
+professor.hut fileserver.copyroom.hut 4858
+gilligan.crew.hut skipper.crew.hut 7294
+laser3.copyroom.hut skipper.crew.hut 2267
+gilligan.crew.hut gilligan.crew.hut 8630
+skipper.crew.hut fileserver.copyroom.hut 442
+gilligan.crew.hut professor.hut 8107
+gilligan.crew.hut maryann.girl.hut 7907
+professor.hut ginger.girl.hut 9330
+ginger.girl.hut ginger.girl.hut 4588
+skipper.crew.hut fileserver.copyroom.hut 5683
+skipper.crew.hut maryann.girl.hut 4844
+laser3.copyroom.hut maryann.girl.hut 451
+laser3.copyroom.hut gilligan.crew.hut 1041
+laser3.copyroom.hut skipper.crew.hut 9903
+professor.hut fileserver.copyroom.hut 1350
+gilligan.crew.hut gilligan.crew.hut 5292
+ginger.girl.hut professor.hut 8378
+professor.hut fileserver.copyroom.hut 4228
+laser3.copyroom.hut skipper.crew.hut 3309
+skipper.crew.hut professor.hut 7170
+maryann.girl.hut professor.hut 3765
+professor.hut skipper.crew.hut 1897
+professor.hut maryann.girl.hut 5708
+professor.hut laser3.copyroom.hut 5
+laser3.copyroom.hut maryann.girl.hut 6175
+fileserver.copyroom.hut fileserver.copyroom.hut 5532
+fileserver.copyroom.hut gilligan.crew.hut 6533
+maryann.girl.hut laser3.copyroom.hut 2148
+laser3.copyroom.hut ginger.girl.hut 7891
+maryann.girl.hut maryann.girl.hut 3001
+skipper.crew.hut gilligan.crew.hut 7764
+laser3.copyroom.hut laser3.copyroom.hut 7068
+fileserver.copyroom.hut ginger.girl.hut 6633
+professor.hut ginger.girl.hut 8668
+gilligan.crew.hut laser3.copyroom.hut 693
+fileserver.copyroom.hut maryann.girl.hut 5708
+professor.hut maryann.girl.hut 1933
+fileserver.copyroom.hut professor.hut 5214
+fileserver.copyroom.hut fileserver.copyroom.hut 9876
+ginger.girl.hut ginger.girl.hut 1844
+fileserver.copyroom.hut skipper.crew.hut 7975
+laser3.copyroom.hut professor.hut 3945
+maryann.girl.hut ginger.girl.hut 4748
+laser3.copyroom.hut gilligan.crew.hut 5055
+ginger.girl.hut ginger.girl.hut 8460
+professor.hut fileserver.copyroom.hut 255
+ginger.girl.hut professor.hut 7831
+fileserver.copyroom.hut gilligan.crew.hut 1235
+maryann.girl.hut gilligan.crew.hut 5230
+maryann.girl.hut professor.hut 9684
+skipper.crew.hut skipper.crew.hut 7660
+fileserver.copyroom.hut fileserver.copyroom.hut 8962
+laser3.copyroom.hut maryann.girl.hut 2273
+gilligan.crew.hut fileserver.copyroom.hut 378
+skipper.crew.hut ginger.girl.hut 6353
+fileserver.copyroom.hut fileserver.copyroom.hut 1540
+laser3.copyroom.hut ginger.girl.hut 6741
+professor.hut skipper.crew.hut 928
+ginger.girl.hut ginger.girl.hut 1382
+laser3.copyroom.hut skipper.crew.hut 9789
+gilligan.crew.hut maryann.girl.hut 3180
+laser3.copyroom.hut skipper.crew.hut 2209
+ginger.girl.hut professor.hut 7703
+skipper.crew.hut fileserver.copyroom.hut 4442
+skipper.crew.hut skipper.crew.hut 1089
+professor.hut gilligan.crew.hut 6503
+skipper.crew.hut laser3.copyroom.hut 6123
+laser3.copyroom.hut fileserver.copyroom.hut 9690
+professor.hut maryann.girl.hut 7102
+maryann.girl.hut professor.hut 2545
+professor.hut laser3.copyroom.hut 1838
+skipper.crew.hut maryann.girl.hut 323
+fileserver.copyroom.hut professor.hut 4674
+gilligan.crew.hut fileserver.copyroom.hut 7090
+gilligan.crew.hut laser3.copyroom.hut 373
+skipper.crew.hut ginger.girl.hut 4313
+skipper.crew.hut skipper.crew.hut 7572
+maryann.girl.hut gilligan.crew.hut 9904
+laser3.copyroom.hut laser3.copyroom.hut 7962
+laser3.copyroom.hut gilligan.crew.hut 4352
+laser3.copyroom.hut professor.hut 347
+laser3.copyroom.hut gilligan.crew.hut 2866
+ginger.girl.hut skipper.crew.hut 7544
+professor.hut fileserver.copyroom.hut 5918
+maryann.girl.hut fileserver.copyroom.hut 3997
+maryann.girl.hut laser3.copyroom.hut 5087
+skipper.crew.hut laser3.copyroom.hut 7211
+skipper.crew.hut laser3.copyroom.hut 4330
+gilligan.crew.hut ginger.girl.hut 8445
+maryann.girl.hut laser3.copyroom.hut 4876
+fileserver.copyroom.hut ginger.girl.hut 3899
+ginger.girl.hut gilligan.crew.hut 8700
+professor.hut gilligan.crew.hut 3333
+ginger.girl.hut professor.hut 8220
+laser3.copyroom.hut ginger.girl.hut 4451
+fileserver.copyroom.hut gilligan.crew.hut 9911
+gilligan.crew.hut skipper.crew.hut 3604
+skipper.crew.hut ginger.girl.hut 9570
+fileserver.copyroom.hut laser3.copyroom.hut 8714
+skipper.crew.hut gilligan.crew.hut 2115
+ginger.girl.hut gilligan.crew.hut 7953
+fileserver.copyroom.hut gilligan.crew.hut 8618
+professor.hut maryann.girl.hut 3936
+skipper.crew.hut laser3.copyroom.hut 699
+ginger.girl.hut fileserver.copyroom.hut 3579
+laser3.copyroom.hut fileserver.copyroom.hut 925
+maryann.girl.hut fileserver.copyroom.hut 7303
+gilligan.crew.hut laser3.copyroom.hut 3176
+professor.hut ginger.girl.hut 4651
+laser3.copyroom.hut laser3.copyroom.hut 7372
+laser3.copyroom.hut ginger.girl.hut 8715
+maryann.girl.hut ginger.girl.hut 5767
+laser3.copyroom.hut ginger.girl.hut 175
+ginger.girl.hut gilligan.crew.hut 9215
+professor.hut skipper.crew.hut 685
+fileserver.copyroom.hut fileserver.copyroom.hut 6148
+professor.hut gilligan.crew.hut 7751
+laser3.copyroom.hut maryann.girl.hut 815
+skipper.crew.hut gilligan.crew.hut 7307
+fileserver.copyroom.hut maryann.girl.hut 9366
+professor.hut skipper.crew.hut 7130
+fileserver.copyroom.hut laser3.copyroom.hut 9844
+skipper.crew.hut gilligan.crew.hut 2221
+maryann.girl.hut maryann.girl.hut 7565
+professor.hut professor.hut 3312
+laser3.copyroom.hut professor.hut 5967
+gilligan.crew.hut fileserver.copyroom.hut 3158
+fileserver.copyroom.hut skipper.crew.hut 7051
+gilligan.crew.hut skipper.crew.hut 5546
+professor.hut fileserver.copyroom.hut 9696
+maryann.girl.hut professor.hut 1595
+skipper.crew.hut laser3.copyroom.hut 6351
+skipper.crew.hut ginger.girl.hut 1321
+professor.hut professor.hut 6677
+fileserver.copyroom.hut maryann.girl.hut 2930
+gilligan.crew.hut skipper.crew.hut 3007
+fileserver.copyroom.hut laser3.copyroom.hut 4077
+skipper.crew.hut professor.hut 2163
+skipper.crew.hut maryann.girl.hut 9913
+fileserver.copyroom.hut ginger.girl.hut 2694
+ginger.girl.hut skipper.crew.hut 8658
+fileserver.copyroom.hut fileserver.copyroom.hut 1506
+maryann.girl.hut skipper.crew.hut 8545
+fileserver.copyroom.hut professor.hut 3223
+maryann.girl.hut ginger.girl.hut 8696
+professor.hut laser3.copyroom.hut 5438
+ginger.girl.hut maryann.girl.hut 6628
+gilligan.crew.hut skipper.crew.hut 5543
+maryann.girl.hut skipper.crew.hut 7422
+fileserver.copyroom.hut maryann.girl.hut 1381
+professor.hut maryann.girl.hut 5274
+skipper.crew.hut skipper.crew.hut 91
+laser3.copyroom.hut gilligan.crew.hut 5374
+ginger.girl.hut skipper.crew.hut 1740
+fileserver.copyroom.hut skipper.crew.hut 9284
+skipper.crew.hut fileserver.copyroom.hut 6862
+gilligan.crew.hut maryann.girl.hut 933
+gilligan.crew.hut maryann.girl.hut 6752
+laser3.copyroom.hut skipper.crew.hut 3960
+gilligan.crew.hut skipper.crew.hut 2205
+skipper.crew.hut ginger.girl.hut 8476
+ginger.girl.hut fileserver.copyroom.hut 7924
+gilligan.crew.hut laser3.copyroom.hut 846
+laser3.copyroom.hut fileserver.copyroom.hut 1341
+professor.hut professor.hut 3431
+fileserver.copyroom.hut maryann.girl.hut 371
+fileserver.copyroom.hut fileserver.copyroom.hut 9681
+laser3.copyroom.hut skipper.crew.hut 8516
+gilligan.crew.hut maryann.girl.hut 8074
+professor.hut fileserver.copyroom.hut 410
+ginger.girl.hut skipper.crew.hut 6592
+professor.hut fileserver.copyroom.hut 2946
+laser3.copyroom.hut maryann.girl.hut 9091
+laser3.copyroom.hut laser3.copyroom.hut 2834
+gilligan.crew.hut gilligan.crew.hut 1832
+skipper.crew.hut ginger.girl.hut 8499
+skipper.crew.hut laser3.copyroom.hut 716
+maryann.girl.hut skipper.crew.hut 9517
+gilligan.crew.hut professor.hut 3145
+skipper.crew.hut skipper.crew.hut 4583
+fileserver.copyroom.hut gilligan.crew.hut 1551
+maryann.girl.hut skipper.crew.hut 3841
+fileserver.copyroom.hut fileserver.copyroom.hut 1699
+gilligan.crew.hut professor.hut 9774
+gilligan.crew.hut maryann.girl.hut 470
+skipper.crew.hut ginger.girl.hut 122
+maryann.girl.hut ginger.girl.hut 6336
+skipper.crew.hut laser3.copyroom.hut 4240
+skipper.crew.hut fileserver.copyroom.hut 6611
+ginger.girl.hut fileserver.copyroom.hut 2511
+gilligan.crew.hut laser3.copyroom.hut 3161
+fileserver.copyroom.hut laser3.copyroom.hut 1517
+ginger.girl.hut maryann.girl.hut 257
+gilligan.crew.hut ginger.girl.hut 7118
+skipper.crew.hut maryann.girl.hut 2069
+skipper.crew.hut gilligan.crew.hut 227
+maryann.girl.hut gilligan.crew.hut 8245
+ginger.girl.hut maryann.girl.hut 5251
+skipper.crew.hut gilligan.crew.hut 98
+gilligan.crew.hut ginger.girl.hut 6114
+professor.hut professor.hut 7675
+ginger.girl.hut ginger.girl.hut 5359
+gilligan.crew.hut professor.hut 5309
+skipper.crew.hut maryann.girl.hut 9606
+fileserver.copyroom.hut laser3.copyroom.hut 1370
+ginger.girl.hut skipper.crew.hut 9483
+gilligan.crew.hut fileserver.copyroom.hut 546
+ginger.girl.hut ginger.girl.hut 2819
+professor.hut maryann.girl.hut 4557
+ginger.girl.hut laser3.copyroom.hut 4666
+fileserver.copyroom.hut fileserver.copyroom.hut 6728
+ginger.girl.hut gilligan.crew.hut 7527
+fileserver.copyroom.hut maryann.girl.hut 4195
+laser3.copyroom.hut gilligan.crew.hut 6027
+professor.hut gilligan.crew.hut 2441
+skipper.crew.hut skipper.crew.hut 5658
+skipper.crew.hut fileserver.copyroom.hut 5567
+fileserver.copyroom.hut professor.hut 1111
+skipper.crew.hut professor.hut 4315
+professor.hut fileserver.copyroom.hut 1025
+maryann.girl.hut fileserver.copyroom.hut 8143
+gilligan.crew.hut laser3.copyroom.hut 2142
+skipper.crew.hut fileserver.copyroom.hut 9140
+laser3.copyroom.hut ginger.girl.hut 3479
+gilligan.crew.hut maryann.girl.hut 8087
+ginger.girl.hut laser3.copyroom.hut 6020
+maryann.girl.hut laser3.copyroom.hut 8565
+maryann.girl.hut skipper.crew.hut 8856
+skipper.crew.hut maryann.girl.hut 4595
+ginger.girl.hut skipper.crew.hut 1094
+skipper.crew.hut professor.hut 4578
+gilligan.crew.hut fileserver.copyroom.hut 2945
+professor.hut ginger.girl.hut 3541
+skipper.crew.hut fileserver.copyroom.hut 4165
+ginger.girl.hut maryann.girl.hut 4537
+skipper.crew.hut skipper.crew.hut 9140
+skipper.crew.hut maryann.girl.hut 4763
+professor.hut skipper.crew.hut 2677
+laser3.copyroom.hut skipper.crew.hut 8147
+gilligan.crew.hut maryann.girl.hut 5283
+professor.hut skipper.crew.hut 9166
+laser3.copyroom.hut laser3.copyroom.hut 2230
+laser3.copyroom.hut laser3.copyroom.hut 2199
+skipper.crew.hut fileserver.copyroom.hut 8987
+fileserver.copyroom.hut fileserver.copyroom.hut 2083
+fileserver.copyroom.hut maryann.girl.hut 2395
+fileserver.copyroom.hut laser3.copyroom.hut 7926
+fileserver.copyroom.hut laser3.copyroom.hut 4845
+fileserver.copyroom.hut ginger.girl.hut 8981
+skipper.crew.hut gilligan.crew.hut 7997
+maryann.girl.hut laser3.copyroom.hut 8062
+fileserver.copyroom.hut maryann.girl.hut 4859
+ginger.girl.hut fileserver.copyroom.hut 5523
+maryann.girl.hut fileserver.copyroom.hut 4912
+professor.hut skipper.crew.hut 7982
+maryann.girl.hut professor.hut 1983
+laser3.copyroom.hut ginger.girl.hut 3438
+professor.hut laser3.copyroom.hut 9741
+fileserver.copyroom.hut ginger.girl.hut 6116
+skipper.crew.hut maryann.girl.hut 9175
+laser3.copyroom.hut skipper.crew.hut 7109
+professor.hut gilligan.crew.hut 35
+gilligan.crew.hut fileserver.copyroom.hut 910
+maryann.girl.hut fileserver.copyroom.hut 4315
+professor.hut professor.hut 8900
+maryann.girl.hut maryann.girl.hut 4030
+professor.hut maryann.girl.hut 4525
+laser3.copyroom.hut ginger.girl.hut 7635
+professor.hut fileserver.copyroom.hut 7848
+ginger.girl.hut fileserver.copyroom.hut 6797
+fileserver.copyroom.hut skipper.crew.hut 704
+laser3.copyroom.hut laser3.copyroom.hut 9296
+skipper.crew.hut ginger.girl.hut 646
+gilligan.crew.hut fileserver.copyroom.hut 8530
+gilligan.crew.hut professor.hut 6411
+maryann.girl.hut laser3.copyroom.hut 2887
+professor.hut professor.hut 3058
+laser3.copyroom.hut gilligan.crew.hut 3205
+fileserver.copyroom.hut skipper.crew.hut 3418
+ginger.girl.hut maryann.girl.hut 6958
+professor.hut fileserver.copyroom.hut 6662
+professor.hut maryann.girl.hut 4538
+professor.hut laser3.copyroom.hut 8403
+professor.hut laser3.copyroom.hut 3470
+fileserver.copyroom.hut fileserver.copyroom.hut 809
+professor.hut professor.hut 5928
+fileserver.copyroom.hut skipper.crew.hut 3842
+skipper.crew.hut professor.hut 4886
+maryann.girl.hut professor.hut 3915
+laser3.copyroom.hut professor.hut 1713
+maryann.girl.hut professor.hut 9363
+laser3.copyroom.hut skipper.crew.hut 2499
+ginger.girl.hut maryann.girl.hut 5919
+gilligan.crew.hut ginger.girl.hut 5534
+maryann.girl.hut ginger.girl.hut 5661
+ginger.girl.hut ginger.girl.hut 7843
+laser3.copyroom.hut laser3.copyroom.hut 4227
+laser3.copyroom.hut ginger.girl.hut 4969
+maryann.girl.hut maryann.girl.hut 3920
+gilligan.crew.hut fileserver.copyroom.hut 8265
+maryann.girl.hut professor.hut 6524
+laser3.copyroom.hut fileserver.copyroom.hut 9015
+maryann.girl.hut professor.hut 241
+maryann.girl.hut fileserver.copyroom.hut 2012
+laser3.copyroom.hut skipper.crew.hut 3188
+fileserver.copyroom.hut professor.hut 652
+professor.hut laser3.copyroom.hut 1054
+gilligan.crew.hut professor.hut 8804
+professor.hut laser3.copyroom.hut 811
+maryann.girl.hut laser3.copyroom.hut 2014
+laser3.copyroom.hut gilligan.crew.hut 5270
+skipper.crew.hut maryann.girl.hut 8547
+fileserver.copyroom.hut fileserver.copyroom.hut 2836
+ginger.girl.hut maryann.girl.hut 5954
+professor.hut ginger.girl.hut 7070
+ginger.girl.hut maryann.girl.hut 4578
+laser3.copyroom.hut ginger.girl.hut 8013
+skipper.crew.hut maryann.girl.hut 8681
+skipper.crew.hut professor.hut 9025
+skipper.crew.hut skipper.crew.hut 3078
+laser3.copyroom.hut fileserver.copyroom.hut 7025
+gilligan.crew.hut fileserver.copyroom.hut 2067
+fileserver.copyroom.hut gilligan.crew.hut 4789
+professor.hut gilligan.crew.hut 7672
+professor.hut gilligan.crew.hut 169
+maryann.girl.hut fileserver.copyroom.hut 7151
+professor.hut maryann.girl.hut 9039
+laser3.copyroom.hut laser3.copyroom.hut 6881
+laser3.copyroom.hut ginger.girl.hut 7585
+professor.hut gilligan.crew.hut 7785
+maryann.girl.hut skipper.crew.hut 6747
+maryann.girl.hut professor.hut 2384
+fileserver.copyroom.hut professor.hut 9545
+gilligan.crew.hut maryann.girl.hut 3499
+gilligan.crew.hut skipper.crew.hut 5316
+ginger.girl.hut fileserver.copyroom.hut 1778
+laser3.copyroom.hut professor.hut 9426
+fileserver.copyroom.hut maryann.girl.hut 6189
+laser3.copyroom.hut professor.hut 9563
+laser3.copyroom.hut professor.hut 688
+fileserver.copyroom.hut maryann.girl.hut 901
+maryann.girl.hut fileserver.copyroom.hut 6488
+gilligan.crew.hut maryann.girl.hut 8144
+gilligan.crew.hut professor.hut 4261
+professor.hut gilligan.crew.hut 3798
+maryann.girl.hut ginger.girl.hut 2623
+ginger.girl.hut ginger.girl.hut 9478
+gilligan.crew.hut professor.hut 6931
+skipper.crew.hut gilligan.crew.hut 8046
+fileserver.copyroom.hut skipper.crew.hut 9661
+laser3.copyroom.hut ginger.girl.hut 8806
+fileserver.copyroom.hut laser3.copyroom.hut 5058
+laser3.copyroom.hut ginger.girl.hut 862
+ginger.girl.hut gilligan.crew.hut 7476
+maryann.girl.hut ginger.girl.hut 5302
+skipper.crew.hut ginger.girl.hut 9106
+fileserver.copyroom.hut professor.hut 303
+fileserver.copyroom.hut laser3.copyroom.hut 6148
+laser3.copyroom.hut skipper.crew.hut 8231
+skipper.crew.hut skipper.crew.hut 8184
+skipper.crew.hut maryann.girl.hut 5635
+skipper.crew.hut ginger.girl.hut 2229
+professor.hut maryann.girl.hut 4736
+maryann.girl.hut professor.hut 9256
+professor.hut laser3.copyroom.hut 6611
+laser3.copyroom.hut gilligan.crew.hut 5185
+ginger.girl.hut maryann.girl.hut 3818
+ginger.girl.hut laser3.copyroom.hut 8595
+ginger.girl.hut maryann.girl.hut 5203
+fileserver.copyroom.hut ginger.girl.hut 1915
+gilligan.crew.hut ginger.girl.hut 3131
+maryann.girl.hut gilligan.crew.hut 2967
+fileserver.copyroom.hut laser3.copyroom.hut 3065
+skipper.crew.hut ginger.girl.hut 7543
+gilligan.crew.hut professor.hut 8221
+professor.hut gilligan.crew.hut 9773
+ginger.girl.hut gilligan.crew.hut 9879
+maryann.girl.hut fileserver.copyroom.hut 1463
+ginger.girl.hut laser3.copyroom.hut 354
+ginger.girl.hut gilligan.crew.hut 7477
+maryann.girl.hut fileserver.copyroom.hut 3689
+ginger.girl.hut gilligan.crew.hut 41
+maryann.girl.hut skipper.crew.hut 5962
+professor.hut fileserver.copyroom.hut 2021
+fileserver.copyroom.hut professor.hut 6704
+professor.hut gilligan.crew.hut 7429
+skipper.crew.hut skipper.crew.hut 1418
+gilligan.crew.hut skipper.crew.hut 9699
+professor.hut laser3.copyroom.hut 4143
+laser3.copyroom.hut fileserver.copyroom.hut 6909
+maryann.girl.hut gilligan.crew.hut 4217
+professor.hut fileserver.copyroom.hut 8843
+gilligan.crew.hut skipper.crew.hut 304
+gilligan.crew.hut skipper.crew.hut 359
+skipper.crew.hut gilligan.crew.hut 9998
+maryann.girl.hut ginger.girl.hut 9416
+professor.hut ginger.girl.hut 3980
+gilligan.crew.hut professor.hut 8123
+skipper.crew.hut gilligan.crew.hut 2999
+skipper.crew.hut skipper.crew.hut 2580
+gilligan.crew.hut laser3.copyroom.hut 3752
+ginger.girl.hut maryann.girl.hut 6417
+maryann.girl.hut laser3.copyroom.hut 814
+ginger.girl.hut ginger.girl.hut 9042
+laser3.copyroom.hut professor.hut 4821
+gilligan.crew.hut gilligan.crew.hut 1797
+professor.hut professor.hut 7369
+skipper.crew.hut skipper.crew.hut 1466
+maryann.girl.hut gilligan.crew.hut 577
+maryann.girl.hut skipper.crew.hut 14
+ginger.girl.hut laser3.copyroom.hut 7218
+maryann.girl.hut ginger.girl.hut 9666
+ginger.girl.hut ginger.girl.hut 9611
+maryann.girl.hut professor.hut 9431
+fileserver.copyroom.hut professor.hut 46
+gilligan.crew.hut professor.hut 8451
+maryann.girl.hut professor.hut 8529
+laser3.copyroom.hut skipper.crew.hut 1955
+skipper.crew.hut gilligan.crew.hut 4052
+fileserver.copyroom.hut maryann.girl.hut 3644
+fileserver.copyroom.hut maryann.girl.hut 1762
+maryann.girl.hut maryann.girl.hut 9183
+fileserver.copyroom.hut skipper.crew.hut 7062
+ginger.girl.hut skipper.crew.hut 7473
+professor.hut gilligan.crew.hut 6119
+gilligan.crew.hut maryann.girl.hut 96
+ginger.girl.hut gilligan.crew.hut 3058
+maryann.girl.hut ginger.girl.hut 6666
+maryann.girl.hut laser3.copyroom.hut 2636
+professor.hut skipper.crew.hut 3393
+fileserver.copyroom.hut ginger.girl.hut 1724
+ginger.girl.hut skipper.crew.hut 5435
+fileserver.copyroom.hut ginger.girl.hut 4292
+ginger.girl.hut laser3.copyroom.hut 1664
+maryann.girl.hut skipper.crew.hut 8745
+fileserver.copyroom.hut ginger.girl.hut 7149
+skipper.crew.hut laser3.copyroom.hut 1351
+fileserver.copyroom.hut fileserver.copyroom.hut 2345
+skipper.crew.hut gilligan.crew.hut 3306
+skipper.crew.hut gilligan.crew.hut 7875
+laser3.copyroom.hut skipper.crew.hut 7842
+gilligan.crew.hut fileserver.copyroom.hut 8218
+maryann.girl.hut gilligan.crew.hut 6712
+gilligan.crew.hut fileserver.copyroom.hut 7885
+skipper.crew.hut laser3.copyroom.hut 2423
+professor.hut laser3.copyroom.hut 6702
+ginger.girl.hut gilligan.crew.hut 6374
+skipper.crew.hut ginger.girl.hut 3220
+professor.hut ginger.girl.hut 4437
+ginger.girl.hut laser3.copyroom.hut 5795
+gilligan.crew.hut maryann.girl.hut 3903
+laser3.copyroom.hut professor.hut 4117
+skipper.crew.hut ginger.girl.hut 4139
+laser3.copyroom.hut professor.hut 6142
+gilligan.crew.hut gilligan.crew.hut 4684
+laser3.copyroom.hut skipper.crew.hut 4656
+skipper.crew.hut fileserver.copyroom.hut 3210
+laser3.copyroom.hut laser3.copyroom.hut 3974
+fileserver.copyroom.hut professor.hut 1237
+laser3.copyroom.hut maryann.girl.hut 3698
+ginger.girl.hut professor.hut 3981
+maryann.girl.hut maryann.girl.hut 1585
+ginger.girl.hut skipper.crew.hut 9956
+gilligan.crew.hut gilligan.crew.hut 9933
+gilligan.crew.hut laser3.copyroom.hut 32
+gilligan.crew.hut fileserver.copyroom.hut 8526
+ginger.girl.hut fileserver.copyroom.hut 3450
+laser3.copyroom.hut maryann.girl.hut 8620
+skipper.crew.hut maryann.girl.hut 6685
+maryann.girl.hut maryann.girl.hut 2861
+fileserver.copyroom.hut skipper.crew.hut 728
+laser3.copyroom.hut fileserver.copyroom.hut 7889
+gilligan.crew.hut gilligan.crew.hut 2539
+skipper.crew.hut maryann.girl.hut 2890
+laser3.copyroom.hut skipper.crew.hut 8786
+laser3.copyroom.hut professor.hut 3028
+professor.hut professor.hut 5773
+gilligan.crew.hut fileserver.copyroom.hut 2884
+ginger.girl.hut skipper.crew.hut 9746
+fileserver.copyroom.hut professor.hut 6198
+ginger.girl.hut fileserver.copyroom.hut 4996
+gilligan.crew.hut ginger.girl.hut 4017
+professor.hut ginger.girl.hut 2442
+skipper.crew.hut ginger.girl.hut 843
+laser3.copyroom.hut gilligan.crew.hut 609
+fileserver.copyroom.hut fileserver.copyroom.hut 3265
+gilligan.crew.hut skipper.crew.hut 98
+laser3.copyroom.hut ginger.girl.hut 7654
+laser3.copyroom.hut skipper.crew.hut 971
+ginger.girl.hut professor.hut 8082
+skipper.crew.hut fileserver.copyroom.hut 2386
+maryann.girl.hut professor.hut 6359
+ginger.girl.hut gilligan.crew.hut 8082
+ginger.girl.hut fileserver.copyroom.hut 4861
+gilligan.crew.hut maryann.girl.hut 458
+ginger.girl.hut fileserver.copyroom.hut 2399
+professor.hut fileserver.copyroom.hut 602
+skipper.crew.hut laser3.copyroom.hut 1234
+maryann.girl.hut gilligan.crew.hut 4262
+gilligan.crew.hut professor.hut 3518
+laser3.copyroom.hut professor.hut 1160
+laser3.copyroom.hut gilligan.crew.hut 7
+professor.hut gilligan.crew.hut 8416
+gilligan.crew.hut professor.hut 706
+maryann.girl.hut fileserver.copyroom.hut 9061
+laser3.copyroom.hut laser3.copyroom.hut 9882
+laser3.copyroom.hut ginger.girl.hut 3728
+gilligan.crew.hut skipper.crew.hut 4194
+ginger.girl.hut ginger.girl.hut 5477
+skipper.crew.hut fileserver.copyroom.hut 1127
+skipper.crew.hut ginger.girl.hut 7891
+professor.hut ginger.girl.hut 5369
+ginger.girl.hut professor.hut 3493
+skipper.crew.hut skipper.crew.hut 4072
+gilligan.crew.hut laser3.copyroom.hut 9509
+skipper.crew.hut fileserver.copyroom.hut 2553
+fileserver.copyroom.hut skipper.crew.hut 96
+skipper.crew.hut gilligan.crew.hut 3038
+professor.hut maryann.girl.hut 2138
+skipper.crew.hut skipper.crew.hut 4360
+maryann.girl.hut maryann.girl.hut 7384
+skipper.crew.hut gilligan.crew.hut 6208
+ginger.girl.hut maryann.girl.hut 8971
+ginger.girl.hut fileserver.copyroom.hut 1541
+ginger.girl.hut maryann.girl.hut 9439
+fileserver.copyroom.hut maryann.girl.hut 3576
+laser3.copyroom.hut fileserver.copyroom.hut 7735
+fileserver.copyroom.hut ginger.girl.hut 3210
+skipper.crew.hut fileserver.copyroom.hut 3880
+professor.hut skipper.crew.hut 5793
+gilligan.crew.hut maryann.girl.hut 9840
+laser3.copyroom.hut skipper.crew.hut 8656
+gilligan.crew.hut ginger.girl.hut 186
+skipper.crew.hut skipper.crew.hut 9178
+professor.hut fileserver.copyroom.hut 7322
+professor.hut laser3.copyroom.hut 2551
+ginger.girl.hut professor.hut 3120
+skipper.crew.hut fileserver.copyroom.hut 8954
+ginger.girl.hut professor.hut 7056
+fileserver.copyroom.hut maryann.girl.hut 1526
+fileserver.copyroom.hut ginger.girl.hut 9692
+professor.hut laser3.copyroom.hut 8744
+laser3.copyroom.hut skipper.crew.hut 9642
+fileserver.copyroom.hut ginger.girl.hut 9456
+maryann.girl.hut fileserver.copyroom.hut 3105
+ginger.girl.hut gilligan.crew.hut 9307
+fileserver.copyroom.hut laser3.copyroom.hut 2500
+gilligan.crew.hut professor.hut 9321
+maryann.girl.hut maryann.girl.hut 1142
+skipper.crew.hut fileserver.copyroom.hut 479
+gilligan.crew.hut fileserver.copyroom.hut 4656
+fileserver.copyroom.hut maryann.girl.hut 1528
+fileserver.copyroom.hut fileserver.copyroom.hut 9017
+maryann.girl.hut professor.hut 4173
+ginger.girl.hut professor.hut 7511
+fileserver.copyroom.hut professor.hut 3707
+skipper.crew.hut maryann.girl.hut 5307
+gilligan.crew.hut fileserver.copyroom.hut 2475
+professor.hut maryann.girl.hut 9186
+skipper.crew.hut maryann.girl.hut 295
+fileserver.copyroom.hut gilligan.crew.hut 2251
+professor.hut laser3.copyroom.hut 7328
+skipper.crew.hut laser3.copyroom.hut 3782
+professor.hut laser3.copyroom.hut 2997
+skipper.crew.hut gilligan.crew.hut 9281
+ginger.girl.hut laser3.copyroom.hut 8551
+skipper.crew.hut ginger.girl.hut 4628
+ginger.girl.hut skipper.crew.hut 5151
+professor.hut fileserver.copyroom.hut 7691
+skipper.crew.hut professor.hut 6323
+laser3.copyroom.hut professor.hut 7253
+ginger.girl.hut gilligan.crew.hut 5176
+laser3.copyroom.hut professor.hut 9124
+skipper.crew.hut gilligan.crew.hut 6308
+laser3.copyroom.hut gilligan.crew.hut 2829
+maryann.girl.hut laser3.copyroom.hut 1051
+ginger.girl.hut gilligan.crew.hut 5979
+professor.hut laser3.copyroom.hut 8908
+ginger.girl.hut professor.hut 2164
+ginger.girl.hut laser3.copyroom.hut 9778
+skipper.crew.hut professor.hut 5718
+ginger.girl.hut gilligan.crew.hut 4476
+gilligan.crew.hut fileserver.copyroom.hut 9191
+fileserver.copyroom.hut gilligan.crew.hut 2244
+maryann.girl.hut gilligan.crew.hut 6671
+ginger.girl.hut fileserver.copyroom.hut 9359
+maryann.girl.hut skipper.crew.hut 8364
+professor.hut ginger.girl.hut 5049
+professor.hut skipper.crew.hut 1549
+fileserver.copyroom.hut maryann.girl.hut 1461
+maryann.girl.hut fileserver.copyroom.hut 3498
+laser3.copyroom.hut fileserver.copyroom.hut 649
+skipper.crew.hut gilligan.crew.hut 8267
+maryann.girl.hut laser3.copyroom.hut 1390
+ginger.girl.hut ginger.girl.hut 4353
+skipper.crew.hut ginger.girl.hut 5448
+fileserver.copyroom.hut skipper.crew.hut 410
+professor.hut skipper.crew.hut 6472
+laser3.copyroom.hut fileserver.copyroom.hut 8788
+professor.hut skipper.crew.hut 964
+professor.hut fileserver.copyroom.hut 2125
+fileserver.copyroom.hut gilligan.crew.hut 9925
+fileserver.copyroom.hut ginger.girl.hut 1353
+laser3.copyroom.hut professor.hut 5403
+skipper.crew.hut skipper.crew.hut 2283
+laser3.copyroom.hut professor.hut 8836
+fileserver.copyroom.hut maryann.girl.hut 6912
+gilligan.crew.hut professor.hut 5258
+maryann.girl.hut skipper.crew.hut 9233
+maryann.girl.hut laser3.copyroom.hut 9301
+gilligan.crew.hut ginger.girl.hut 9999
+gilligan.crew.hut maryann.girl.hut 8221
+professor.hut ginger.girl.hut 1830
+gilligan.crew.hut fileserver.copyroom.hut 9955
+gilligan.crew.hut gilligan.crew.hut 6126
+fileserver.copyroom.hut laser3.copyroom.hut 7662
+laser3.copyroom.hut gilligan.crew.hut 1706
+ginger.girl.hut skipper.crew.hut 443
+laser3.copyroom.hut skipper.crew.hut 870
+laser3.copyroom.hut professor.hut 4279
+fileserver.copyroom.hut professor.hut 1034
+professor.hut professor.hut 5928
+fileserver.copyroom.hut ginger.girl.hut 1255
+fileserver.copyroom.hut professor.hut 4847
+maryann.girl.hut maryann.girl.hut 4729
+gilligan.crew.hut fileserver.copyroom.hut 4195
+gilligan.crew.hut ginger.girl.hut 3299
+fileserver.copyroom.hut laser3.copyroom.hut 17
+laser3.copyroom.hut professor.hut 4608
+maryann.girl.hut laser3.copyroom.hut 7144
+professor.hut ginger.girl.hut 536
+ginger.girl.hut ginger.girl.hut 170
+laser3.copyroom.hut skipper.crew.hut 9427
+ginger.girl.hut maryann.girl.hut 2357
+laser3.copyroom.hut ginger.girl.hut 3390
+gilligan.crew.hut fileserver.copyroom.hut 8807
+professor.hut laser3.copyroom.hut 769
+maryann.girl.hut fileserver.copyroom.hut 4034
+ginger.girl.hut laser3.copyroom.hut 5327
+skipper.crew.hut laser3.copyroom.hut 8836
+gilligan.crew.hut skipper.crew.hut 2866
+maryann.girl.hut ginger.girl.hut 1992
+skipper.crew.hut maryann.girl.hut 2249
+gilligan.crew.hut maryann.girl.hut 6590
+professor.hut fileserver.copyroom.hut 9910
+maryann.girl.hut fileserver.copyroom.hut 5858
+fileserver.copyroom.hut fileserver.copyroom.hut 9313
+fileserver.copyroom.hut gilligan.crew.hut 8003
+gilligan.crew.hut professor.hut 8022
+professor.hut gilligan.crew.hut 2309
+ginger.girl.hut fileserver.copyroom.hut 8841
+fileserver.copyroom.hut gilligan.crew.hut 9057
+professor.hut maryann.girl.hut 9565
+ginger.girl.hut maryann.girl.hut 1673
+laser3.copyroom.hut skipper.crew.hut 2781
+laser3.copyroom.hut maryann.girl.hut 9577
+gilligan.crew.hut maryann.girl.hut 4178
+skipper.crew.hut skipper.crew.hut 6813
+gilligan.crew.hut fileserver.copyroom.hut 8777
+laser3.copyroom.hut professor.hut 3371
+laser3.copyroom.hut laser3.copyroom.hut 5890
+fileserver.copyroom.hut laser3.copyroom.hut 9653
+gilligan.crew.hut professor.hut 4881
+professor.hut skipper.crew.hut 4418
+gilligan.crew.hut skipper.crew.hut 6694
+laser3.copyroom.hut professor.hut 6525
+maryann.girl.hut fileserver.copyroom.hut 680
+maryann.girl.hut laser3.copyroom.hut 5696
+professor.hut laser3.copyroom.hut 9600
+maryann.girl.hut maryann.girl.hut 2610
+ginger.girl.hut maryann.girl.hut 2568
+fileserver.copyroom.hut gilligan.crew.hut 4861
+professor.hut skipper.crew.hut 4579
+professor.hut fileserver.copyroom.hut 2854
+professor.hut professor.hut 5504
+skipper.crew.hut laser3.copyroom.hut 6340
+laser3.copyroom.hut maryann.girl.hut 7998
+ginger.girl.hut skipper.crew.hut 3951
+laser3.copyroom.hut skipper.crew.hut 9174
+laser3.copyroom.hut maryann.girl.hut 7800
+ginger.girl.hut ginger.girl.hut 4705
+ginger.girl.hut gilligan.crew.hut 1173
+professor.hut laser3.copyroom.hut 1402
+skipper.crew.hut maryann.girl.hut 7040
+ginger.girl.hut gilligan.crew.hut 4356
+laser3.copyroom.hut gilligan.crew.hut 9369
+skipper.crew.hut maryann.girl.hut 8206
+ginger.girl.hut gilligan.crew.hut 3169
+gilligan.crew.hut professor.hut 2805
+gilligan.crew.hut maryann.girl.hut 8306
+skipper.crew.hut gilligan.crew.hut 7375
+professor.hut laser3.copyroom.hut 9771
+fileserver.copyroom.hut professor.hut 1455
+laser3.copyroom.hut laser3.copyroom.hut 5303
+ginger.girl.hut ginger.girl.hut 9073
+laser3.copyroom.hut professor.hut 2332
+fileserver.copyroom.hut professor.hut 3719
+maryann.girl.hut skipper.crew.hut 8984
+laser3.copyroom.hut laser3.copyroom.hut 2975
+fileserver.copyroom.hut fileserver.copyroom.hut 3580
+skipper.crew.hut gilligan.crew.hut 7578
+gilligan.crew.hut skipper.crew.hut 5665
+skipper.crew.hut professor.hut 991
+fileserver.copyroom.hut fileserver.copyroom.hut 7881
+skipper.crew.hut ginger.girl.hut 6521
+skipper.crew.hut fileserver.copyroom.hut 7860
+professor.hut maryann.girl.hut 8898
+skipper.crew.hut ginger.girl.hut 5190
+skipper.crew.hut gilligan.crew.hut 712
+skipper.crew.hut skipper.crew.hut 3445
+skipper.crew.hut maryann.girl.hut 9289
+ginger.girl.hut laser3.copyroom.hut 409
+ginger.girl.hut maryann.girl.hut 4340
+gilligan.crew.hut ginger.girl.hut 4891
+gilligan.crew.hut ginger.girl.hut 4194
+fileserver.copyroom.hut skipper.crew.hut 578
+skipper.crew.hut ginger.girl.hut 43
+skipper.crew.hut fileserver.copyroom.hut 3615
+gilligan.crew.hut gilligan.crew.hut 4760
+gilligan.crew.hut laser3.copyroom.hut 9139
+professor.hut skipper.crew.hut 3769
+ginger.girl.hut professor.hut 2805
+ginger.girl.hut maryann.girl.hut 241
+professor.hut skipper.crew.hut 8380
+skipper.crew.hut professor.hut 3173
+skipper.crew.hut skipper.crew.hut 8276
+ginger.girl.hut laser3.copyroom.hut 1546
+ginger.girl.hut gilligan.crew.hut 1770
+maryann.girl.hut gilligan.crew.hut 4764
+gilligan.crew.hut fileserver.copyroom.hut 5971
+fileserver.copyroom.hut laser3.copyroom.hut 9451
+ginger.girl.hut professor.hut 1808
+fileserver.copyroom.hut skipper.crew.hut 2699
+gilligan.crew.hut gilligan.crew.hut 4154
+skipper.crew.hut skipper.crew.hut 2343
+professor.hut laser3.copyroom.hut 4595
+professor.hut maryann.girl.hut 8936
+skipper.crew.hut skipper.crew.hut 258
+maryann.girl.hut ginger.girl.hut 7915
+skipper.crew.hut maryann.girl.hut 3758
+professor.hut ginger.girl.hut 7010
+fileserver.copyroom.hut professor.hut 6439
+maryann.girl.hut skipper.crew.hut 1442
+ginger.girl.hut gilligan.crew.hut 6777
+professor.hut professor.hut 1987
+maryann.girl.hut maryann.girl.hut 3465
+laser3.copyroom.hut laser3.copyroom.hut 5908
+maryann.girl.hut professor.hut 36
+skipper.crew.hut maryann.girl.hut 7232
+fileserver.copyroom.hut fileserver.copyroom.hut 1550
+maryann.girl.hut professor.hut 6291
+maryann.girl.hut skipper.crew.hut 2739
+ginger.girl.hut professor.hut 4932
+ginger.girl.hut professor.hut 5536
+laser3.copyroom.hut gilligan.crew.hut 8309
+fileserver.copyroom.hut fileserver.copyroom.hut 7974
+professor.hut gilligan.crew.hut 5364
+ginger.girl.hut ginger.girl.hut 4610
+ginger.girl.hut skipper.crew.hut 6840
+professor.hut gilligan.crew.hut 3850
+maryann.girl.hut fileserver.copyroom.hut 8487
+maryann.girl.hut gilligan.crew.hut 7136
+maryann.girl.hut professor.hut 8560
+gilligan.crew.hut maryann.girl.hut 2325
+skipper.crew.hut fileserver.copyroom.hut 7595
+professor.hut maryann.girl.hut 5405
+fileserver.copyroom.hut gilligan.crew.hut 9026
+professor.hut skipper.crew.hut 5027
+gilligan.crew.hut professor.hut 5735
+laser3.copyroom.hut fileserver.copyroom.hut 4197
+ginger.girl.hut laser3.copyroom.hut 4790
+professor.hut ginger.girl.hut 7071
+professor.hut ginger.girl.hut 1736
+ginger.girl.hut laser3.copyroom.hut 9188
+maryann.girl.hut fileserver.copyroom.hut 4168
+skipper.crew.hut fileserver.copyroom.hut 3465
+professor.hut fileserver.copyroom.hut 9819
+skipper.crew.hut fileserver.copyroom.hut 4752
+maryann.girl.hut professor.hut 5195
+laser3.copyroom.hut professor.hut 745
+gilligan.crew.hut ginger.girl.hut 8591
+fileserver.copyroom.hut skipper.crew.hut 6048
+ginger.girl.hut ginger.girl.hut 13
+ginger.girl.hut laser3.copyroom.hut 5516
+fileserver.copyroom.hut gilligan.crew.hut 6013
+fileserver.copyroom.hut fileserver.copyroom.hut 2788
+laser3.copyroom.hut skipper.crew.hut 1633
+gilligan.crew.hut gilligan.crew.hut 4015
+ginger.girl.hut ginger.girl.hut 3872
+skipper.crew.hut skipper.crew.hut 4500
+skipper.crew.hut skipper.crew.hut 1496
+fileserver.copyroom.hut professor.hut 3726
+professor.hut professor.hut 1043
+laser3.copyroom.hut laser3.copyroom.hut 1966
+ginger.girl.hut professor.hut 5726
+maryann.girl.hut maryann.girl.hut 1577
+gilligan.crew.hut fileserver.copyroom.hut 19
+laser3.copyroom.hut gilligan.crew.hut 1725
+maryann.girl.hut maryann.girl.hut 76
+laser3.copyroom.hut skipper.crew.hut 9215
+ginger.girl.hut professor.hut 6975
+maryann.girl.hut laser3.copyroom.hut 9793
+fileserver.copyroom.hut gilligan.crew.hut 514
+professor.hut ginger.girl.hut 5970
+skipper.crew.hut maryann.girl.hut 5959
+fileserver.copyroom.hut maryann.girl.hut 4186
+ginger.girl.hut ginger.girl.hut 9749
+gilligan.crew.hut skipper.crew.hut 4931
+maryann.girl.hut skipper.crew.hut 2426
+fileserver.copyroom.hut fileserver.copyroom.hut 355
+fileserver.copyroom.hut professor.hut 2906
+gilligan.crew.hut laser3.copyroom.hut 8596
+fileserver.copyroom.hut professor.hut 7480
+ginger.girl.hut laser3.copyroom.hut 8470
+skipper.crew.hut maryann.girl.hut 5480
+maryann.girl.hut ginger.girl.hut 2874
+fileserver.copyroom.hut gilligan.crew.hut 147
+maryann.girl.hut ginger.girl.hut 835
+professor.hut ginger.girl.hut 7810
+gilligan.crew.hut maryann.girl.hut 3119
+fileserver.copyroom.hut laser3.copyroom.hut 1416
+laser3.copyroom.hut fileserver.copyroom.hut 2916
+skipper.crew.hut laser3.copyroom.hut 5930
+fileserver.copyroom.hut ginger.girl.hut 3124
+laser3.copyroom.hut professor.hut 7340
+laser3.copyroom.hut ginger.girl.hut 3908
+gilligan.crew.hut professor.hut 3896
+skipper.crew.hut skipper.crew.hut 8530
+professor.hut ginger.girl.hut 3369
+laser3.copyroom.hut skipper.crew.hut 6066
+professor.hut gilligan.crew.hut 6880
+gilligan.crew.hut maryann.girl.hut 4404
+maryann.girl.hut laser3.copyroom.hut 3253
+laser3.copyroom.hut ginger.girl.hut 4640
+fileserver.copyroom.hut professor.hut 3444
+skipper.crew.hut laser3.copyroom.hut 3389
+maryann.girl.hut ginger.girl.hut 1102
+skipper.crew.hut maryann.girl.hut 8068
+professor.hut ginger.girl.hut 4714
+laser3.copyroom.hut maryann.girl.hut 5070
+skipper.crew.hut laser3.copyroom.hut 7784
+maryann.girl.hut maryann.girl.hut 6721
+gilligan.crew.hut fileserver.copyroom.hut 4699
+maryann.girl.hut professor.hut 9255
+ginger.girl.hut maryann.girl.hut 4117
+maryann.girl.hut maryann.girl.hut 5995
+professor.hut ginger.girl.hut 783
+fileserver.copyroom.hut skipper.crew.hut 9654
+gilligan.crew.hut fileserver.copyroom.hut 4865
+skipper.crew.hut laser3.copyroom.hut 8789
+fileserver.copyroom.hut skipper.crew.hut 4522
+gilligan.crew.hut maryann.girl.hut 9906
+maryann.girl.hut skipper.crew.hut 4238
+fileserver.copyroom.hut gilligan.crew.hut 3544
+ginger.girl.hut skipper.crew.hut 7286
+fileserver.copyroom.hut laser3.copyroom.hut 9636
+skipper.crew.hut maryann.girl.hut 5469
+fileserver.copyroom.hut fileserver.copyroom.hut 7185
+maryann.girl.hut skipper.crew.hut 1941
+gilligan.crew.hut laser3.copyroom.hut 3842
+skipper.crew.hut laser3.copyroom.hut 2249
+maryann.girl.hut ginger.girl.hut 9765
+fileserver.copyroom.hut maryann.girl.hut 3608
+professor.hut skipper.crew.hut 7750
+gilligan.crew.hut fileserver.copyroom.hut 7021
+maryann.girl.hut skipper.crew.hut 6776
+maryann.girl.hut maryann.girl.hut 9506
+maryann.girl.hut professor.hut 519
+professor.hut professor.hut 1851
+professor.hut maryann.girl.hut 341
+gilligan.crew.hut maryann.girl.hut 8792
+skipper.crew.hut laser3.copyroom.hut 3013
+maryann.girl.hut laser3.copyroom.hut 8886
+gilligan.crew.hut skipper.crew.hut 6429
+skipper.crew.hut fileserver.copyroom.hut 8990
+laser3.copyroom.hut ginger.girl.hut 6021
+gilligan.crew.hut gilligan.crew.hut 4285
+gilligan.crew.hut maryann.girl.hut 8523
+ginger.girl.hut laser3.copyroom.hut 981
+ginger.girl.hut gilligan.crew.hut 8707
+skipper.crew.hut laser3.copyroom.hut 7482
+skipper.crew.hut fileserver.copyroom.hut 412
+laser3.copyroom.hut professor.hut 1161
+professor.hut skipper.crew.hut 1228
+ginger.girl.hut professor.hut 5040
+fileserver.copyroom.hut skipper.crew.hut 1050
+gilligan.crew.hut skipper.crew.hut 8258
+skipper.crew.hut skipper.crew.hut 7773
+skipper.crew.hut laser3.copyroom.hut 9291
+maryann.girl.hut laser3.copyroom.hut 1306
+laser3.copyroom.hut fileserver.copyroom.hut 5912
+skipper.crew.hut maryann.girl.hut 5154
+fileserver.copyroom.hut skipper.crew.hut 8073
+gilligan.crew.hut skipper.crew.hut 7350
+skipper.crew.hut gilligan.crew.hut 7381
+skipper.crew.hut fileserver.copyroom.hut 9527
+laser3.copyroom.hut laser3.copyroom.hut 5802
+maryann.girl.hut laser3.copyroom.hut 4079
+ginger.girl.hut ginger.girl.hut 9013
+laser3.copyroom.hut gilligan.crew.hut 7854
+maryann.girl.hut gilligan.crew.hut 2871
+professor.hut fileserver.copyroom.hut 7923
+ginger.girl.hut professor.hut 7358
+professor.hut maryann.girl.hut 8182
+laser3.copyroom.hut maryann.girl.hut 1037
+maryann.girl.hut ginger.girl.hut 4673
+laser3.copyroom.hut fileserver.copyroom.hut 5254
+laser3.copyroom.hut skipper.crew.hut 1310
+professor.hut skipper.crew.hut 5578
+maryann.girl.hut professor.hut 135
+maryann.girl.hut skipper.crew.hut 3746
+laser3.copyroom.hut laser3.copyroom.hut 7489
+fileserver.copyroom.hut professor.hut 9906
+skipper.crew.hut professor.hut 9867
+laser3.copyroom.hut ginger.girl.hut 4575
+maryann.girl.hut skipper.crew.hut 2783
+fileserver.copyroom.hut maryann.girl.hut 7209
+ginger.girl.hut gilligan.crew.hut 6653
+professor.hut skipper.crew.hut 6895
+gilligan.crew.hut gilligan.crew.hut 6774
+maryann.girl.hut fileserver.copyroom.hut 4186
+ginger.girl.hut skipper.crew.hut 8272
+maryann.girl.hut laser3.copyroom.hut 8142
+maryann.girl.hut fileserver.copyroom.hut 3515
+fileserver.copyroom.hut skipper.crew.hut 9704
+maryann.girl.hut gilligan.crew.hut 3424
+ginger.girl.hut laser3.copyroom.hut 3162
+skipper.crew.hut professor.hut 1849
+ginger.girl.hut maryann.girl.hut 2336
+professor.hut gilligan.crew.hut 5121
+laser3.copyroom.hut skipper.crew.hut 5069
+fileserver.copyroom.hut professor.hut 6123
+ginger.girl.hut skipper.crew.hut 4289
+fileserver.copyroom.hut gilligan.crew.hut 515
+maryann.girl.hut professor.hut 2348
+skipper.crew.hut skipper.crew.hut 9603
+skipper.crew.hut ginger.girl.hut 9816
+laser3.copyroom.hut maryann.girl.hut 5942
+ginger.girl.hut ginger.girl.hut 7687
+maryann.girl.hut professor.hut 6776
+ginger.girl.hut fileserver.copyroom.hut 6188
+laser3.copyroom.hut professor.hut 145
+fileserver.copyroom.hut ginger.girl.hut 7251
+maryann.girl.hut gilligan.crew.hut 7655
+fileserver.copyroom.hut professor.hut 7860
+ginger.girl.hut maryann.girl.hut 6411
+maryann.girl.hut gilligan.crew.hut 3895
+maryann.girl.hut ginger.girl.hut 3112
+professor.hut laser3.copyroom.hut 5327
+professor.hut skipper.crew.hut 2032
+professor.hut laser3.copyroom.hut 2381
+skipper.crew.hut maryann.girl.hut 174
+laser3.copyroom.hut maryann.girl.hut 975
+maryann.girl.hut gilligan.crew.hut 7481
+skipper.crew.hut maryann.girl.hut 9203
+laser3.copyroom.hut laser3.copyroom.hut 5950
+laser3.copyroom.hut maryann.girl.hut 4133
+laser3.copyroom.hut fileserver.copyroom.hut 6612
+ginger.girl.hut skipper.crew.hut 8374
+gilligan.crew.hut gilligan.crew.hut 7893
+skipper.crew.hut maryann.girl.hut 6623
+skipper.crew.hut laser3.copyroom.hut 6460
+gilligan.crew.hut skipper.crew.hut 8585
+maryann.girl.hut laser3.copyroom.hut 2103
+gilligan.crew.hut laser3.copyroom.hut 984
+maryann.girl.hut skipper.crew.hut 1785
+fileserver.copyroom.hut professor.hut 6650
+gilligan.crew.hut laser3.copyroom.hut 4479
+laser3.copyroom.hut fileserver.copyroom.hut 4696
+maryann.girl.hut fileserver.copyroom.hut 5894
+fileserver.copyroom.hut ginger.girl.hut 9207
+gilligan.crew.hut gilligan.crew.hut 7063
+maryann.girl.hut maryann.girl.hut 1226
+skipper.crew.hut laser3.copyroom.hut 8698
+maryann.girl.hut skipper.crew.hut 5270
+skipper.crew.hut skipper.crew.hut 2668
+ginger.girl.hut gilligan.crew.hut 9507
+maryann.girl.hut ginger.girl.hut 3043
+gilligan.crew.hut maryann.girl.hut 9481
+ginger.girl.hut maryann.girl.hut 9977
+laser3.copyroom.hut gilligan.crew.hut 6979
+gilligan.crew.hut professor.hut 6547
+ginger.girl.hut laser3.copyroom.hut 1794
+gilligan.crew.hut gilligan.crew.hut 2129
+ginger.girl.hut fileserver.copyroom.hut 3001
+gilligan.crew.hut professor.hut 3324
+fileserver.copyroom.hut professor.hut 7715
+professor.hut gilligan.crew.hut 9146
+fileserver.copyroom.hut fileserver.copyroom.hut 2199
+maryann.girl.hut laser3.copyroom.hut 5582
+gilligan.crew.hut skipper.crew.hut 2241
+laser3.copyroom.hut gilligan.crew.hut 6636
+maryann.girl.hut ginger.girl.hut 4895
+ginger.girl.hut ginger.girl.hut 1385
+gilligan.crew.hut ginger.girl.hut 4894
+skipper.crew.hut professor.hut 4310
+ginger.girl.hut gilligan.crew.hut 658
+fileserver.copyroom.hut maryann.girl.hut 1371
+professor.hut fileserver.copyroom.hut 6975
+maryann.girl.hut laser3.copyroom.hut 1018
+fileserver.copyroom.hut professor.hut 3338
+professor.hut fileserver.copyroom.hut 3428
+ginger.girl.hut professor.hut 816
+maryann.girl.hut ginger.girl.hut 2188
+skipper.crew.hut professor.hut 1589
+professor.hut laser3.copyroom.hut 1960
+gilligan.crew.hut fileserver.copyroom.hut 4511
+laser3.copyroom.hut maryann.girl.hut 8403
+gilligan.crew.hut fileserver.copyroom.hut 8507
+gilligan.crew.hut laser3.copyroom.hut 4086
+laser3.copyroom.hut ginger.girl.hut 960
+ginger.girl.hut skipper.crew.hut 4125
+fileserver.copyroom.hut gilligan.crew.hut 838
+professor.hut fileserver.copyroom.hut 2779
+gilligan.crew.hut ginger.girl.hut 2831
+maryann.girl.hut skipper.crew.hut 5499
+laser3.copyroom.hut skipper.crew.hut 1368
+skipper.crew.hut maryann.girl.hut 476
+gilligan.crew.hut ginger.girl.hut 3007
+skipper.crew.hut maryann.girl.hut 9283
+fileserver.copyroom.hut skipper.crew.hut 4346
+gilligan.crew.hut professor.hut 2135
+professor.hut professor.hut 4862
+laser3.copyroom.hut fileserver.copyroom.hut 8089
+ginger.girl.hut skipper.crew.hut 495
+laser3.copyroom.hut ginger.girl.hut 5092
+gilligan.crew.hut maryann.girl.hut 6967
+professor.hut laser3.copyroom.hut 3583
+ginger.girl.hut maryann.girl.hut 5696
+gilligan.crew.hut fileserver.copyroom.hut 2714
+maryann.girl.hut maryann.girl.hut 205
+maryann.girl.hut gilligan.crew.hut 521
+gilligan.crew.hut maryann.girl.hut 1537
+professor.hut maryann.girl.hut 7946
+maryann.girl.hut laser3.copyroom.hut 1309
+laser3.copyroom.hut skipper.crew.hut 3561
+professor.hut laser3.copyroom.hut 357
+ginger.girl.hut professor.hut 1862
+laser3.copyroom.hut maryann.girl.hut 9178
+fileserver.copyroom.hut professor.hut 1777
+gilligan.crew.hut ginger.girl.hut 6474
+ginger.girl.hut laser3.copyroom.hut 6726
+ginger.girl.hut gilligan.crew.hut 9367
+maryann.girl.hut maryann.girl.hut 5429
+laser3.copyroom.hut fileserver.copyroom.hut 6053
+maryann.girl.hut fileserver.copyroom.hut 5392
+ginger.girl.hut fileserver.copyroom.hut 7528
+laser3.copyroom.hut fileserver.copyroom.hut 6691
+skipper.crew.hut maryann.girl.hut 3358
+skipper.crew.hut gilligan.crew.hut 1885
+laser3.copyroom.hut skipper.crew.hut 5623
+skipper.crew.hut maryann.girl.hut 2991
+professor.hut gilligan.crew.hut 1420
+gilligan.crew.hut maryann.girl.hut 6368
+laser3.copyroom.hut gilligan.crew.hut 1007
+fileserver.copyroom.hut skipper.crew.hut 4056
+professor.hut skipper.crew.hut 1668
+professor.hut fileserver.copyroom.hut 1324
+fileserver.copyroom.hut gilligan.crew.hut 233
+ginger.girl.hut professor.hut 3543
+ginger.girl.hut skipper.crew.hut 3816
+professor.hut skipper.crew.hut 1702
+maryann.girl.hut ginger.girl.hut 8213
+ginger.girl.hut professor.hut 3727
+maryann.girl.hut gilligan.crew.hut 3842
+skipper.crew.hut fileserver.copyroom.hut 6817
+laser3.copyroom.hut skipper.crew.hut 2340
+ginger.girl.hut maryann.girl.hut 8634
+laser3.copyroom.hut professor.hut 1741
+fileserver.copyroom.hut skipper.crew.hut 5426
+professor.hut fileserver.copyroom.hut 7756
+professor.hut laser3.copyroom.hut 2370
+maryann.girl.hut maryann.girl.hut 9852
+skipper.crew.hut fileserver.copyroom.hut 1483
+professor.hut professor.hut 8392
+professor.hut maryann.girl.hut 6421
+laser3.copyroom.hut skipper.crew.hut 7913
+gilligan.crew.hut laser3.copyroom.hut 8315
+gilligan.crew.hut ginger.girl.hut 1936
+maryann.girl.hut laser3.copyroom.hut 2254
+ginger.girl.hut gilligan.crew.hut 8998
+ginger.girl.hut professor.hut 4458
+professor.hut professor.hut 692
+laser3.copyroom.hut skipper.crew.hut 4444
+ginger.girl.hut laser3.copyroom.hut 5504
+professor.hut professor.hut 8902
+gilligan.crew.hut fileserver.copyroom.hut 3643
+skipper.crew.hut fileserver.copyroom.hut 9383
+professor.hut maryann.girl.hut 1271
+gilligan.crew.hut maryann.girl.hut 5443
+fileserver.copyroom.hut fileserver.copyroom.hut 3992
+skipper.crew.hut maryann.girl.hut 5935
+ginger.girl.hut gilligan.crew.hut 2509
+skipper.crew.hut gilligan.crew.hut 1134
+gilligan.crew.hut maryann.girl.hut 6163
+professor.hut fileserver.copyroom.hut 6413
+maryann.girl.hut laser3.copyroom.hut 9835
+laser3.copyroom.hut ginger.girl.hut 8032
+ginger.girl.hut skipper.crew.hut 3830
+maryann.girl.hut gilligan.crew.hut 9187
+gilligan.crew.hut maryann.girl.hut 7559
+gilligan.crew.hut professor.hut 8652
+gilligan.crew.hut professor.hut 7019
+ginger.girl.hut gilligan.crew.hut 2065
+professor.hut fileserver.copyroom.hut 6209
+ginger.girl.hut laser3.copyroom.hut 6641
+fileserver.copyroom.hut professor.hut 9720
+maryann.girl.hut laser3.copyroom.hut 8196
+fileserver.copyroom.hut professor.hut 4811
+gilligan.crew.hut gilligan.crew.hut 5247
+fileserver.copyroom.hut professor.hut 6791
+ginger.girl.hut maryann.girl.hut 2238
+gilligan.crew.hut skipper.crew.hut 801
+maryann.girl.hut gilligan.crew.hut 7436
+maryann.girl.hut gilligan.crew.hut 9134
+fileserver.copyroom.hut maryann.girl.hut 3583
+fileserver.copyroom.hut fileserver.copyroom.hut 5796
+gilligan.crew.hut ginger.girl.hut 5186
+laser3.copyroom.hut laser3.copyroom.hut 2179
+gilligan.crew.hut laser3.copyroom.hut 8726
+laser3.copyroom.hut fileserver.copyroom.hut 3396
+gilligan.crew.hut fileserver.copyroom.hut 8948
+professor.hut maryann.girl.hut 4443
+skipper.crew.hut maryann.girl.hut 5858
+skipper.crew.hut maryann.girl.hut 2271
+laser3.copyroom.hut fileserver.copyroom.hut 6017
+fileserver.copyroom.hut professor.hut 9285
+laser3.copyroom.hut professor.hut 9261
+fileserver.copyroom.hut ginger.girl.hut 1077
+laser3.copyroom.hut gilligan.crew.hut 3053
+ginger.girl.hut fileserver.copyroom.hut 4733
+skipper.crew.hut fileserver.copyroom.hut 8240
+fileserver.copyroom.hut gilligan.crew.hut 6255
+ginger.girl.hut laser3.copyroom.hut 9983
+laser3.copyroom.hut maryann.girl.hut 8274
+gilligan.crew.hut professor.hut 7689
+laser3.copyroom.hut gilligan.crew.hut 4934
+fileserver.copyroom.hut gilligan.crew.hut 1613
+maryann.girl.hut fileserver.copyroom.hut 7484
+gilligan.crew.hut skipper.crew.hut 3709
+fileserver.copyroom.hut fileserver.copyroom.hut 1487
+professor.hut maryann.girl.hut 8477
+skipper.crew.hut maryann.girl.hut 4149
+skipper.crew.hut maryann.girl.hut 5311
+maryann.girl.hut gilligan.crew.hut 1667
+maryann.girl.hut ginger.girl.hut 8467
+skipper.crew.hut ginger.girl.hut 1734
+skipper.crew.hut fileserver.copyroom.hut 475
+ginger.girl.hut skipper.crew.hut 4520
+laser3.copyroom.hut fileserver.copyroom.hut 6866
+professor.hut fileserver.copyroom.hut 449
+ginger.girl.hut fileserver.copyroom.hut 3826
+maryann.girl.hut professor.hut 1904
+gilligan.crew.hut ginger.girl.hut 447
+gilligan.crew.hut laser3.copyroom.hut 4303
+professor.hut gilligan.crew.hut 1871
+maryann.girl.hut ginger.girl.hut 3613
+professor.hut laser3.copyroom.hut 4663
+skipper.crew.hut professor.hut 3130
+professor.hut skipper.crew.hut 6968
+ginger.girl.hut ginger.girl.hut 3711
+gilligan.crew.hut maryann.girl.hut 4863
+fileserver.copyroom.hut fileserver.copyroom.hut 4156
+professor.hut gilligan.crew.hut 606
+laser3.copyroom.hut ginger.girl.hut 9461
+skipper.crew.hut professor.hut 8333
+laser3.copyroom.hut maryann.girl.hut 822
+maryann.girl.hut ginger.girl.hut 1667
+fileserver.copyroom.hut gilligan.crew.hut 7361
+professor.hut gilligan.crew.hut 4257
+ginger.girl.hut skipper.crew.hut 6807
+maryann.girl.hut professor.hut 3453
+ginger.girl.hut maryann.girl.hut 3569
+laser3.copyroom.hut fileserver.copyroom.hut 1031
+laser3.copyroom.hut maryann.girl.hut 5002
+ginger.girl.hut ginger.girl.hut 624
+maryann.girl.hut gilligan.crew.hut 5945
+skipper.crew.hut gilligan.crew.hut 2381
+laser3.copyroom.hut professor.hut 1053
+skipper.crew.hut ginger.girl.hut 801
+gilligan.crew.hut ginger.girl.hut 7877
+gilligan.crew.hut skipper.crew.hut 5232
+maryann.girl.hut gilligan.crew.hut 9414
+fileserver.copyroom.hut maryann.girl.hut 6285
+gilligan.crew.hut maryann.girl.hut 5875
+maryann.girl.hut ginger.girl.hut 8067
+maryann.girl.hut laser3.copyroom.hut 4032
+fileserver.copyroom.hut professor.hut 5990
+gilligan.crew.hut fileserver.copyroom.hut 2875
+maryann.girl.hut maryann.girl.hut 627
+skipper.crew.hut fileserver.copyroom.hut 2298
+laser3.copyroom.hut fileserver.copyroom.hut 1627
+skipper.crew.hut professor.hut 1742
+fileserver.copyroom.hut skipper.crew.hut 6205
+skipper.crew.hut gilligan.crew.hut 7825
+skipper.crew.hut professor.hut 2070
+gilligan.crew.hut maryann.girl.hut 1090
+fileserver.copyroom.hut fileserver.copyroom.hut 695
+professor.hut ginger.girl.hut 7655
+laser3.copyroom.hut fileserver.copyroom.hut 5679
+maryann.girl.hut laser3.copyroom.hut 1301
+professor.hut professor.hut 7135
+fileserver.copyroom.hut ginger.girl.hut 1456
+skipper.crew.hut laser3.copyroom.hut 8511
+professor.hut laser3.copyroom.hut 8396
+maryann.girl.hut laser3.copyroom.hut 7131
+ginger.girl.hut gilligan.crew.hut 2872
+skipper.crew.hut fileserver.copyroom.hut 1450
+fileserver.copyroom.hut maryann.girl.hut 8666
+gilligan.crew.hut fileserver.copyroom.hut 7648
+maryann.girl.hut fileserver.copyroom.hut 6203
+gilligan.crew.hut maryann.girl.hut 7482
+gilligan.crew.hut laser3.copyroom.hut 7045
+ginger.girl.hut skipper.crew.hut 1723
+gilligan.crew.hut maryann.girl.hut 9587
+ginger.girl.hut fileserver.copyroom.hut 857
+gilligan.crew.hut laser3.copyroom.hut 6974
+professor.hut maryann.girl.hut 8307
+ginger.girl.hut gilligan.crew.hut 9658
+skipper.crew.hut maryann.girl.hut 8558
+fileserver.copyroom.hut laser3.copyroom.hut 1816
+laser3.copyroom.hut maryann.girl.hut 449
+professor.hut laser3.copyroom.hut 2640
+fileserver.copyroom.hut fileserver.copyroom.hut 5363
+laser3.copyroom.hut skipper.crew.hut 5966
+ginger.girl.hut ginger.girl.hut 3021
+professor.hut professor.hut 4906
+gilligan.crew.hut fileserver.copyroom.hut 2204
+ginger.girl.hut ginger.girl.hut 3979
+maryann.girl.hut ginger.girl.hut 4309
+fileserver.copyroom.hut fileserver.copyroom.hut 8368
+maryann.girl.hut professor.hut 2330
+maryann.girl.hut fileserver.copyroom.hut 4984
+ginger.girl.hut professor.hut 7715
+skipper.crew.hut skipper.crew.hut 5593
+professor.hut laser3.copyroom.hut 6004
+laser3.copyroom.hut professor.hut 7135
+maryann.girl.hut skipper.crew.hut 5980
+ginger.girl.hut gilligan.crew.hut 8378
+gilligan.crew.hut professor.hut 5564
+maryann.girl.hut fileserver.copyroom.hut 7936
+professor.hut fileserver.copyroom.hut 5543
+professor.hut ginger.girl.hut 5461
+laser3.copyroom.hut ginger.girl.hut 3433
+skipper.crew.hut gilligan.crew.hut 4202
+fileserver.copyroom.hut fileserver.copyroom.hut 517
+ginger.girl.hut laser3.copyroom.hut 8199
+professor.hut laser3.copyroom.hut 4242
+ginger.girl.hut maryann.girl.hut 3729
+skipper.crew.hut skipper.crew.hut 6349
+fileserver.copyroom.hut maryann.girl.hut 2203
+fileserver.copyroom.hut gilligan.crew.hut 3006
+fileserver.copyroom.hut professor.hut 6003
+maryann.girl.hut gilligan.crew.hut 2226
+fileserver.copyroom.hut ginger.girl.hut 1945
+fileserver.copyroom.hut skipper.crew.hut 7220
+professor.hut ginger.girl.hut 3577
+laser3.copyroom.hut laser3.copyroom.hut 8085
+professor.hut fileserver.copyroom.hut 173
+laser3.copyroom.hut skipper.crew.hut 5818
+professor.hut fileserver.copyroom.hut 9057
+ginger.girl.hut ginger.girl.hut 8404
+skipper.crew.hut fileserver.copyroom.hut 4308
+professor.hut ginger.girl.hut 9822
+ginger.girl.hut maryann.girl.hut 5422
+maryann.girl.hut professor.hut 7528
+skipper.crew.hut gilligan.crew.hut 4625
+professor.hut professor.hut 1913
+ginger.girl.hut ginger.girl.hut 3187
+skipper.crew.hut professor.hut 3872
+fileserver.copyroom.hut ginger.girl.hut 9784
+laser3.copyroom.hut professor.hut 7395
+ginger.girl.hut professor.hut 5491
+professor.hut laser3.copyroom.hut 6998
+professor.hut skipper.crew.hut 1745
+skipper.crew.hut professor.hut 455
+professor.hut maryann.girl.hut 8599
+professor.hut gilligan.crew.hut 8181
+maryann.girl.hut laser3.copyroom.hut 6074
+gilligan.crew.hut laser3.copyroom.hut 4393
+laser3.copyroom.hut gilligan.crew.hut 7722
+fileserver.copyroom.hut gilligan.crew.hut 2796
+professor.hut ginger.girl.hut 3716
+gilligan.crew.hut laser3.copyroom.hut 5494
+professor.hut fileserver.copyroom.hut 6983
+laser3.copyroom.hut maryann.girl.hut 4
+professor.hut skipper.crew.hut 4095
+fileserver.copyroom.hut gilligan.crew.hut 9312
+gilligan.crew.hut laser3.copyroom.hut 3428
+laser3.copyroom.hut gilligan.crew.hut 9827
+fileserver.copyroom.hut gilligan.crew.hut 6534
+professor.hut skipper.crew.hut 8036
+professor.hut gilligan.crew.hut 2066
+gilligan.crew.hut professor.hut 517
+maryann.girl.hut gilligan.crew.hut 946
+ginger.girl.hut professor.hut 4637
+ginger.girl.hut skipper.crew.hut 6184
+fileserver.copyroom.hut maryann.girl.hut 5255
+ginger.girl.hut laser3.copyroom.hut 162
+laser3.copyroom.hut fileserver.copyroom.hut 6286
+laser3.copyroom.hut gilligan.crew.hut 1875
+skipper.crew.hut skipper.crew.hut 9606
+gilligan.crew.hut gilligan.crew.hut 4517
+professor.hut maryann.girl.hut 6924
+laser3.copyroom.hut gilligan.crew.hut 423
+professor.hut ginger.girl.hut 2153
+professor.hut laser3.copyroom.hut 5938
+gilligan.crew.hut ginger.girl.hut 9251
+ginger.girl.hut professor.hut 7673
+skipper.crew.hut skipper.crew.hut 5391
+gilligan.crew.hut gilligan.crew.hut 9243
+maryann.girl.hut maryann.girl.hut 5326
+ginger.girl.hut laser3.copyroom.hut 6696
+maryann.girl.hut gilligan.crew.hut 1873
+professor.hut professor.hut 4897
+fileserver.copyroom.hut maryann.girl.hut 4433
+professor.hut laser3.copyroom.hut 3244
+fileserver.copyroom.hut fileserver.copyroom.hut 8979
+gilligan.crew.hut professor.hut 1705
+gilligan.crew.hut ginger.girl.hut 7233
+maryann.girl.hut fileserver.copyroom.hut 1959
+fileserver.copyroom.hut laser3.copyroom.hut 1362
+gilligan.crew.hut gilligan.crew.hut 2905
+fileserver.copyroom.hut maryann.girl.hut 8010
+ginger.girl.hut ginger.girl.hut 2812
+skipper.crew.hut professor.hut 2370
+ginger.girl.hut fileserver.copyroom.hut 2473
+professor.hut ginger.girl.hut 7233
+maryann.girl.hut ginger.girl.hut 9584
+ginger.girl.hut laser3.copyroom.hut 8775
+skipper.crew.hut fileserver.copyroom.hut 4074
+laser3.copyroom.hut gilligan.crew.hut 5827
+skipper.crew.hut fileserver.copyroom.hut 6432
+ginger.girl.hut laser3.copyroom.hut 8240
+fileserver.copyroom.hut skipper.crew.hut 6668
+skipper.crew.hut fileserver.copyroom.hut 349
+skipper.crew.hut professor.hut 1062
+maryann.girl.hut ginger.girl.hut 7602
+fileserver.copyroom.hut maryann.girl.hut 3061
+skipper.crew.hut laser3.copyroom.hut 5587
+professor.hut professor.hut 8188
+fileserver.copyroom.hut professor.hut 5733
+skipper.crew.hut fileserver.copyroom.hut 278
+ginger.girl.hut maryann.girl.hut 2438
+maryann.girl.hut maryann.girl.hut 9575
+skipper.crew.hut fileserver.copyroom.hut 6059
+ginger.girl.hut professor.hut 9337
+skipper.crew.hut skipper.crew.hut 4894
+professor.hut gilligan.crew.hut 4970
+professor.hut professor.hut 6538
+maryann.girl.hut maryann.girl.hut 2227
+fileserver.copyroom.hut laser3.copyroom.hut 9718
+gilligan.crew.hut skipper.crew.hut 4792
+maryann.girl.hut maryann.girl.hut 4703
+fileserver.copyroom.hut maryann.girl.hut 2437
+fileserver.copyroom.hut ginger.girl.hut 6266
+fileserver.copyroom.hut gilligan.crew.hut 1959
+ginger.girl.hut laser3.copyroom.hut 328
+skipper.crew.hut maryann.girl.hut 3624
+ginger.girl.hut maryann.girl.hut 5733
+fileserver.copyroom.hut ginger.girl.hut 8282
+maryann.girl.hut maryann.girl.hut 1144
+gilligan.crew.hut skipper.crew.hut 6641
+fileserver.copyroom.hut laser3.copyroom.hut 8871
+maryann.girl.hut laser3.copyroom.hut 5269
+professor.hut laser3.copyroom.hut 8152
+ginger.girl.hut ginger.girl.hut 5466
+skipper.crew.hut laser3.copyroom.hut 7504
+gilligan.crew.hut laser3.copyroom.hut 26
+gilligan.crew.hut laser3.copyroom.hut 6335
+gilligan.crew.hut fileserver.copyroom.hut 6303
+skipper.crew.hut skipper.crew.hut 7574
+skipper.crew.hut fileserver.copyroom.hut 2430
+gilligan.crew.hut ginger.girl.hut 6560
+fileserver.copyroom.hut maryann.girl.hut 4357
+professor.hut gilligan.crew.hut 3337
+gilligan.crew.hut maryann.girl.hut 8402
+gilligan.crew.hut fileserver.copyroom.hut 2178
+maryann.girl.hut laser3.copyroom.hut 9342
+skipper.crew.hut skipper.crew.hut 2894
+fileserver.copyroom.hut fileserver.copyroom.hut 7581
+maryann.girl.hut ginger.girl.hut 4101
+laser3.copyroom.hut laser3.copyroom.hut 2545
+ginger.girl.hut laser3.copyroom.hut 2571
+ginger.girl.hut gilligan.crew.hut 8987
+fileserver.copyroom.hut professor.hut 5179
+maryann.girl.hut laser3.copyroom.hut 6090
+skipper.crew.hut ginger.girl.hut 686
+professor.hut skipper.crew.hut 360
+skipper.crew.hut professor.hut 5420
+laser3.copyroom.hut maryann.girl.hut 3734
+ginger.girl.hut ginger.girl.hut 2640
+gilligan.crew.hut professor.hut 1302
+ginger.girl.hut laser3.copyroom.hut 5534
+skipper.crew.hut fileserver.copyroom.hut 3823
+gilligan.crew.hut professor.hut 7741
+gilligan.crew.hut skipper.crew.hut 5537
+ginger.girl.hut maryann.girl.hut 6426
+skipper.crew.hut ginger.girl.hut 9733
+professor.hut laser3.copyroom.hut 1034
+skipper.crew.hut skipper.crew.hut 7436
+ginger.girl.hut laser3.copyroom.hut 5375
+ginger.girl.hut skipper.crew.hut 3895
+laser3.copyroom.hut maryann.girl.hut 9092
+professor.hut gilligan.crew.hut 4428
+fileserver.copyroom.hut ginger.girl.hut 6931
+fileserver.copyroom.hut fileserver.copyroom.hut 5055
+laser3.copyroom.hut gilligan.crew.hut 9176
+maryann.girl.hut professor.hut 2180
+gilligan.crew.hut skipper.crew.hut 3919
+skipper.crew.hut laser3.copyroom.hut 8377
+ginger.girl.hut laser3.copyroom.hut 4570
+maryann.girl.hut professor.hut 9061
+professor.hut professor.hut 4794
+ginger.girl.hut laser3.copyroom.hut 7039
+skipper.crew.hut maryann.girl.hut 1840
+laser3.copyroom.hut professor.hut 962
+fileserver.copyroom.hut skipper.crew.hut 1039
+ginger.girl.hut professor.hut 6565
+ginger.girl.hut ginger.girl.hut 6113
+laser3.copyroom.hut fileserver.copyroom.hut 5928
+laser3.copyroom.hut professor.hut 7937
+ginger.girl.hut gilligan.crew.hut 8009
+professor.hut skipper.crew.hut 9546
+professor.hut laser3.copyroom.hut 9463
+ginger.girl.hut professor.hut 4104
+fileserver.copyroom.hut skipper.crew.hut 8612
+fileserver.copyroom.hut maryann.girl.hut 3480
+maryann.girl.hut maryann.girl.hut 7975
+laser3.copyroom.hut gilligan.crew.hut 7558
+fileserver.copyroom.hut skipper.crew.hut 3305
+professor.hut gilligan.crew.hut 2331
+skipper.crew.hut professor.hut 7296
+professor.hut gilligan.crew.hut 6105
+maryann.girl.hut ginger.girl.hut 3844
+laser3.copyroom.hut skipper.crew.hut 4340
+skipper.crew.hut fileserver.copyroom.hut 1224
+fileserver.copyroom.hut skipper.crew.hut 7611
+fileserver.copyroom.hut gilligan.crew.hut 4853
+ginger.girl.hut gilligan.crew.hut 1495
+gilligan.crew.hut gilligan.crew.hut 7643
+professor.hut maryann.girl.hut 5819
+maryann.girl.hut fileserver.copyroom.hut 5095
+skipper.crew.hut maryann.girl.hut 5234
+maryann.girl.hut skipper.crew.hut 6081
+professor.hut professor.hut 1943
+professor.hut gilligan.crew.hut 4123
+maryann.girl.hut fileserver.copyroom.hut 1262
+fileserver.copyroom.hut professor.hut 5081
+maryann.girl.hut maryann.girl.hut 3264
+ginger.girl.hut ginger.girl.hut 7584
+fileserver.copyroom.hut maryann.girl.hut 2601
+ginger.girl.hut professor.hut 3047
+maryann.girl.hut maryann.girl.hut 1593
+ginger.girl.hut laser3.copyroom.hut 1035
+gilligan.crew.hut ginger.girl.hut 4856
+ginger.girl.hut ginger.girl.hut 5220
+gilligan.crew.hut gilligan.crew.hut 5823
+gilligan.crew.hut laser3.copyroom.hut 1499
+professor.hut gilligan.crew.hut 7980
+gilligan.crew.hut maryann.girl.hut 8051
+professor.hut gilligan.crew.hut 482
+fileserver.copyroom.hut gilligan.crew.hut 6445
+fileserver.copyroom.hut professor.hut 9227
+gilligan.crew.hut fileserver.copyroom.hut 2029
+skipper.crew.hut professor.hut 2301
+laser3.copyroom.hut maryann.girl.hut 1511
+professor.hut ginger.girl.hut 8524
+ginger.girl.hut laser3.copyroom.hut 4171
+professor.hut gilligan.crew.hut 8152
+ginger.girl.hut ginger.girl.hut 5390
+ginger.girl.hut laser3.copyroom.hut 9574
+skipper.crew.hut maryann.girl.hut 1927
+skipper.crew.hut laser3.copyroom.hut 3677
+ginger.girl.hut professor.hut 3980
+laser3.copyroom.hut professor.hut 3309
+skipper.crew.hut maryann.girl.hut 3903
+professor.hut gilligan.crew.hut 3379
+maryann.girl.hut fileserver.copyroom.hut 6265
+professor.hut maryann.girl.hut 8954
+professor.hut maryann.girl.hut 7896
+professor.hut laser3.copyroom.hut 559
+maryann.girl.hut fileserver.copyroom.hut 3524
+gilligan.crew.hut gilligan.crew.hut 7291
+maryann.girl.hut professor.hut 9522
+laser3.copyroom.hut ginger.girl.hut 2265
+maryann.girl.hut gilligan.crew.hut 7509
+skipper.crew.hut fileserver.copyroom.hut 9517
+gilligan.crew.hut professor.hut 1929
+skipper.crew.hut laser3.copyroom.hut 8240
+gilligan.crew.hut laser3.copyroom.hut 5037
+ginger.girl.hut fileserver.copyroom.hut 8480
+ginger.girl.hut maryann.girl.hut 8388
+ginger.girl.hut maryann.girl.hut 8916
+professor.hut ginger.girl.hut 8218
+maryann.girl.hut ginger.girl.hut 441
+professor.hut ginger.girl.hut 189
+gilligan.crew.hut fileserver.copyroom.hut 851
+maryann.girl.hut gilligan.crew.hut 5048
+maryann.girl.hut laser3.copyroom.hut 9673
+maryann.girl.hut fileserver.copyroom.hut 5286
+professor.hut ginger.girl.hut 6032
+professor.hut ginger.girl.hut 2424
+skipper.crew.hut laser3.copyroom.hut 3289
+skipper.crew.hut laser3.copyroom.hut 2165
+ginger.girl.hut ginger.girl.hut 6420
+maryann.girl.hut professor.hut 7586
+skipper.crew.hut fileserver.copyroom.hut 4152
+maryann.girl.hut skipper.crew.hut 5080
+ginger.girl.hut gilligan.crew.hut 6577
+skipper.crew.hut ginger.girl.hut 8484
+skipper.crew.hut fileserver.copyroom.hut 8371
+skipper.crew.hut laser3.copyroom.hut 3068
+gilligan.crew.hut maryann.girl.hut 4553
+laser3.copyroom.hut professor.hut 4398
+fileserver.copyroom.hut laser3.copyroom.hut 4918
+professor.hut professor.hut 6064
+gilligan.crew.hut gilligan.crew.hut 6292
+professor.hut fileserver.copyroom.hut 5193
+maryann.girl.hut professor.hut 5755
+gilligan.crew.hut fileserver.copyroom.hut 7515
+professor.hut skipper.crew.hut 8191
+professor.hut gilligan.crew.hut 7505
+maryann.girl.hut skipper.crew.hut 9458
+professor.hut maryann.girl.hut 7480
+skipper.crew.hut maryann.girl.hut 29
+professor.hut fileserver.copyroom.hut 4851
+maryann.girl.hut maryann.girl.hut 1794
+fileserver.copyroom.hut fileserver.copyroom.hut 2328
+professor.hut laser3.copyroom.hut 175
+ginger.girl.hut laser3.copyroom.hut 3678
+gilligan.crew.hut gilligan.crew.hut 6593
+gilligan.crew.hut gilligan.crew.hut 3625
+ginger.girl.hut skipper.crew.hut 2874
+gilligan.crew.hut laser3.copyroom.hut 534
+fileserver.copyroom.hut laser3.copyroom.hut 6481
+skipper.crew.hut laser3.copyroom.hut 6985
+maryann.girl.hut gilligan.crew.hut 4414
+ginger.girl.hut laser3.copyroom.hut 5376
+fileserver.copyroom.hut laser3.copyroom.hut 8755
+maryann.girl.hut fileserver.copyroom.hut 1940
+gilligan.crew.hut ginger.girl.hut 9602
+maryann.girl.hut laser3.copyroom.hut 315
+professor.hut gilligan.crew.hut 8516
+skipper.crew.hut gilligan.crew.hut 1939
+professor.hut laser3.copyroom.hut 185
+professor.hut gilligan.crew.hut 1189
+skipper.crew.hut skipper.crew.hut 1957
+skipper.crew.hut laser3.copyroom.hut 3320
+professor.hut laser3.copyroom.hut 3354
+gilligan.crew.hut gilligan.crew.hut 5101
+skipper.crew.hut professor.hut 3820
+gilligan.crew.hut fileserver.copyroom.hut 7561
+fileserver.copyroom.hut fileserver.copyroom.hut 6466
+fileserver.copyroom.hut fileserver.copyroom.hut 678
+gilligan.crew.hut skipper.crew.hut 6896
+laser3.copyroom.hut professor.hut 9700
+maryann.girl.hut professor.hut 6428
+professor.hut ginger.girl.hut 9069
+laser3.copyroom.hut gilligan.crew.hut 9168
+ginger.girl.hut professor.hut 30
+professor.hut professor.hut 1334
+gilligan.crew.hut ginger.girl.hut 3837
+professor.hut ginger.girl.hut 7950
+skipper.crew.hut gilligan.crew.hut 6707
+laser3.copyroom.hut maryann.girl.hut 2732
+professor.hut ginger.girl.hut 2537
+laser3.copyroom.hut skipper.crew.hut 5827
+laser3.copyroom.hut skipper.crew.hut 4939
+laser3.copyroom.hut skipper.crew.hut 9221
+professor.hut ginger.girl.hut 4168
+maryann.girl.hut gilligan.crew.hut 2334
+skipper.crew.hut maryann.girl.hut 7864
+skipper.crew.hut laser3.copyroom.hut 2881
+gilligan.crew.hut gilligan.crew.hut 6265
+ginger.girl.hut ginger.girl.hut 8411
+laser3.copyroom.hut maryann.girl.hut 4777
+skipper.crew.hut professor.hut 6294
+maryann.girl.hut gilligan.crew.hut 6545
+professor.hut laser3.copyroom.hut 9396
+fileserver.copyroom.hut laser3.copyroom.hut 1439
+professor.hut ginger.girl.hut 8921
+professor.hut skipper.crew.hut 3909
+gilligan.crew.hut laser3.copyroom.hut 1742
+fileserver.copyroom.hut skipper.crew.hut 2805
+fileserver.copyroom.hut maryann.girl.hut 1400
+maryann.girl.hut fileserver.copyroom.hut 6692
+ginger.girl.hut laser3.copyroom.hut 9936
+fileserver.copyroom.hut ginger.girl.hut 1594
+ginger.girl.hut professor.hut 6466
+gilligan.crew.hut professor.hut 5405
+skipper.crew.hut skipper.crew.hut 3234
+gilligan.crew.hut laser3.copyroom.hut 3110
+fileserver.copyroom.hut gilligan.crew.hut 6843
+maryann.girl.hut fileserver.copyroom.hut 8154
+skipper.crew.hut skipper.crew.hut 7487
+gilligan.crew.hut maryann.girl.hut 1977
+maryann.girl.hut professor.hut 7446
+professor.hut professor.hut 8643
+ginger.girl.hut skipper.crew.hut 226
+maryann.girl.hut professor.hut 4827
+fileserver.copyroom.hut fileserver.copyroom.hut 9798
+gilligan.crew.hut ginger.girl.hut 5174
+skipper.crew.hut laser3.copyroom.hut 7794
+maryann.girl.hut skipper.crew.hut 2349
+fileserver.copyroom.hut maryann.girl.hut 6802
+skipper.crew.hut laser3.copyroom.hut 9730
+skipper.crew.hut gilligan.crew.hut 822
+gilligan.crew.hut fileserver.copyroom.hut 7676
+maryann.girl.hut fileserver.copyroom.hut 1400
+laser3.copyroom.hut fileserver.copyroom.hut 5807
+gilligan.crew.hut gilligan.crew.hut 9149
+ginger.girl.hut gilligan.crew.hut 7177
+laser3.copyroom.hut maryann.girl.hut 1262
+professor.hut skipper.crew.hut 3590
+laser3.copyroom.hut fileserver.copyroom.hut 3088
+professor.hut laser3.copyroom.hut 6062
+fileserver.copyroom.hut ginger.girl.hut 6435
+laser3.copyroom.hut skipper.crew.hut 9016
+gilligan.crew.hut skipper.crew.hut 4913
+professor.hut professor.hut 9463
+laser3.copyroom.hut fileserver.copyroom.hut 7867
+professor.hut ginger.girl.hut 6484
+laser3.copyroom.hut gilligan.crew.hut 932
+skipper.crew.hut laser3.copyroom.hut 9978
+ginger.girl.hut fileserver.copyroom.hut 2170
+skipper.crew.hut laser3.copyroom.hut 2299
+ginger.girl.hut professor.hut 373
+laser3.copyroom.hut professor.hut 3304
+maryann.girl.hut skipper.crew.hut 4068
+professor.hut professor.hut 323
+maryann.girl.hut fileserver.copyroom.hut 5686
+skipper.crew.hut ginger.girl.hut 2947
+ginger.girl.hut laser3.copyroom.hut 141
+laser3.copyroom.hut laser3.copyroom.hut 2655
+professor.hut fileserver.copyroom.hut 9083
+fileserver.copyroom.hut laser3.copyroom.hut 4862
+skipper.crew.hut laser3.copyroom.hut 120
+gilligan.crew.hut laser3.copyroom.hut 5399
+fileserver.copyroom.hut maryann.girl.hut 252
+fileserver.copyroom.hut ginger.girl.hut 131
+skipper.crew.hut professor.hut 9675
+professor.hut fileserver.copyroom.hut 3406
+laser3.copyroom.hut maryann.girl.hut 9090
+maryann.girl.hut professor.hut 3540
+gilligan.crew.hut gilligan.crew.hut 8040
+laser3.copyroom.hut skipper.crew.hut 3284
+skipper.crew.hut ginger.girl.hut 7734
+maryann.girl.hut gilligan.crew.hut 3548
+ginger.girl.hut maryann.girl.hut 6601
+gilligan.crew.hut skipper.crew.hut 2525
+skipper.crew.hut fileserver.copyroom.hut 6777
+fileserver.copyroom.hut skipper.crew.hut 3239
+professor.hut fileserver.copyroom.hut 9679
+skipper.crew.hut professor.hut 5293
+professor.hut laser3.copyroom.hut 8710
+maryann.girl.hut fileserver.copyroom.hut 6160
+skipper.crew.hut skipper.crew.hut 4940
+skipper.crew.hut professor.hut 4666
+professor.hut gilligan.crew.hut 5686
+fileserver.copyroom.hut professor.hut 7520
+fileserver.copyroom.hut laser3.copyroom.hut 9360
+fileserver.copyroom.hut ginger.girl.hut 3917
+ginger.girl.hut ginger.girl.hut 720
+professor.hut fileserver.copyroom.hut 2259
+maryann.girl.hut skipper.crew.hut 3382
+professor.hut laser3.copyroom.hut 9158
+ginger.girl.hut skipper.crew.hut 9427
+gilligan.crew.hut laser3.copyroom.hut 2479
+skipper.crew.hut maryann.girl.hut 4191
+maryann.girl.hut laser3.copyroom.hut 5130
+gilligan.crew.hut maryann.girl.hut 174
+professor.hut ginger.girl.hut 8266
+maryann.girl.hut professor.hut 2119
+fileserver.copyroom.hut laser3.copyroom.hut 9605
+professor.hut ginger.girl.hut 1734
+fileserver.copyroom.hut skipper.crew.hut 6971
+maryann.girl.hut ginger.girl.hut 7461
+maryann.girl.hut ginger.girl.hut 8378
+skipper.crew.hut fileserver.copyroom.hut 639
+fileserver.copyroom.hut laser3.copyroom.hut 5623
+ginger.girl.hut laser3.copyroom.hut 8966
+fileserver.copyroom.hut fileserver.copyroom.hut 7670
+fileserver.copyroom.hut professor.hut 2888
+ginger.girl.hut maryann.girl.hut 1645
+skipper.crew.hut skipper.crew.hut 7537
+professor.hut fileserver.copyroom.hut 8418
+ginger.girl.hut laser3.copyroom.hut 2523
+skipper.crew.hut skipper.crew.hut 5995
+maryann.girl.hut skipper.crew.hut 6824
+maryann.girl.hut professor.hut 3920
+gilligan.crew.hut professor.hut 32
+laser3.copyroom.hut gilligan.crew.hut 5998
+fileserver.copyroom.hut laser3.copyroom.hut 6360
+laser3.copyroom.hut gilligan.crew.hut 8960
+fileserver.copyroom.hut skipper.crew.hut 7259
+ginger.girl.hut fileserver.copyroom.hut 8456
+skipper.crew.hut fileserver.copyroom.hut 7320
+skipper.crew.hut laser3.copyroom.hut 2372
+ginger.girl.hut gilligan.crew.hut 9447
+ginger.girl.hut laser3.copyroom.hut 6324
+maryann.girl.hut skipper.crew.hut 8030
+professor.hut ginger.girl.hut 2307
+laser3.copyroom.hut skipper.crew.hut 4539
+maryann.girl.hut professor.hut 8736
+ginger.girl.hut skipper.crew.hut 7928
+laser3.copyroom.hut fileserver.copyroom.hut 2585
+gilligan.crew.hut skipper.crew.hut 1539
+fileserver.copyroom.hut ginger.girl.hut 7069
+skipper.crew.hut laser3.copyroom.hut 9007
+maryann.girl.hut professor.hut 1834
+professor.hut maryann.girl.hut 3631
+maryann.girl.hut fileserver.copyroom.hut 1951
+skipper.crew.hut fileserver.copyroom.hut 2012
+laser3.copyroom.hut ginger.girl.hut 3756
+maryann.girl.hut gilligan.crew.hut 4203
+laser3.copyroom.hut fileserver.copyroom.hut 3647
+skipper.crew.hut gilligan.crew.hut 7253
+professor.hut maryann.girl.hut 5262
+skipper.crew.hut skipper.crew.hut 9587
+professor.hut gilligan.crew.hut 2484
+ginger.girl.hut maryann.girl.hut 3132
+fileserver.copyroom.hut ginger.girl.hut 9390
+maryann.girl.hut professor.hut 7286
+fileserver.copyroom.hut skipper.crew.hut 6270
+ginger.girl.hut ginger.girl.hut 8021
+professor.hut professor.hut 6238
+skipper.crew.hut professor.hut 2055
+ginger.girl.hut fileserver.copyroom.hut 7953
+professor.hut skipper.crew.hut 6409
+professor.hut ginger.girl.hut 8579
+maryann.girl.hut ginger.girl.hut 158
+skipper.crew.hut ginger.girl.hut 1782
+gilligan.crew.hut maryann.girl.hut 9179
+ginger.girl.hut maryann.girl.hut 9668
+ginger.girl.hut ginger.girl.hut 8535
+maryann.girl.hut laser3.copyroom.hut 8286
+ginger.girl.hut maryann.girl.hut 1050
+laser3.copyroom.hut skipper.crew.hut 899
+gilligan.crew.hut laser3.copyroom.hut 5849
+skipper.crew.hut laser3.copyroom.hut 3855
+ginger.girl.hut gilligan.crew.hut 8731
+laser3.copyroom.hut ginger.girl.hut 2722
+professor.hut maryann.girl.hut 5199
+maryann.girl.hut fileserver.copyroom.hut 6068
+gilligan.crew.hut skipper.crew.hut 8971
+maryann.girl.hut maryann.girl.hut 6317
+laser3.copyroom.hut skipper.crew.hut 8845
+laser3.copyroom.hut professor.hut 1195
+professor.hut professor.hut 1727
+maryann.girl.hut fileserver.copyroom.hut 8240
+laser3.copyroom.hut maryann.girl.hut 6892
+gilligan.crew.hut maryann.girl.hut 313
+skipper.crew.hut professor.hut 5097
+fileserver.copyroom.hut laser3.copyroom.hut 9316
+skipper.crew.hut skipper.crew.hut 9479
+ginger.girl.hut maryann.girl.hut 8683
+fileserver.copyroom.hut ginger.girl.hut 2916
+ginger.girl.hut laser3.copyroom.hut 568
+laser3.copyroom.hut laser3.copyroom.hut 3610
+professor.hut maryann.girl.hut 2797
+professor.hut skipper.crew.hut 5179
+fileserver.copyroom.hut professor.hut 7700
+maryann.girl.hut professor.hut 5853
+laser3.copyroom.hut gilligan.crew.hut 7513
+maryann.girl.hut skipper.crew.hut 5405
+laser3.copyroom.hut professor.hut 5610
+skipper.crew.hut gilligan.crew.hut 3601
+ginger.girl.hut skipper.crew.hut 3977
+laser3.copyroom.hut fileserver.copyroom.hut 6951
+fileserver.copyroom.hut gilligan.crew.hut 1262
+skipper.crew.hut ginger.girl.hut 4463
+gilligan.crew.hut ginger.girl.hut 7565
+skipper.crew.hut gilligan.crew.hut 4126
+fileserver.copyroom.hut ginger.girl.hut 7000
+laser3.copyroom.hut skipper.crew.hut 3292
+skipper.crew.hut professor.hut 4371
+ginger.girl.hut maryann.girl.hut 97
+laser3.copyroom.hut fileserver.copyroom.hut 3594
+ginger.girl.hut fileserver.copyroom.hut 3049
+gilligan.crew.hut skipper.crew.hut 8250
+maryann.girl.hut skipper.crew.hut 6175
+skipper.crew.hut ginger.girl.hut 8946
+ginger.girl.hut ginger.girl.hut 1473
+professor.hut professor.hut 7031
+skipper.crew.hut professor.hut 9857
+professor.hut fileserver.copyroom.hut 1942
+fileserver.copyroom.hut fileserver.copyroom.hut 3810
+professor.hut professor.hut 3094
+ginger.girl.hut maryann.girl.hut 8018
+ginger.girl.hut fileserver.copyroom.hut 3309
+gilligan.crew.hut maryann.girl.hut 9601
+fileserver.copyroom.hut laser3.copyroom.hut 7473
+professor.hut skipper.crew.hut 8115
+laser3.copyroom.hut professor.hut 4956
+gilligan.crew.hut maryann.girl.hut 1870
+gilligan.crew.hut skipper.crew.hut 8249
+ginger.girl.hut professor.hut 2212
+ginger.girl.hut professor.hut 3978
+ginger.girl.hut fileserver.copyroom.hut 1702
+laser3.copyroom.hut laser3.copyroom.hut 9074
+professor.hut ginger.girl.hut 4559
+laser3.copyroom.hut ginger.girl.hut 6701
+laser3.copyroom.hut ginger.girl.hut 2844
+gilligan.crew.hut maryann.girl.hut 6000
+laser3.copyroom.hut laser3.copyroom.hut 3562
+fileserver.copyroom.hut gilligan.crew.hut 5502
+fileserver.copyroom.hut laser3.copyroom.hut 6128
+skipper.crew.hut professor.hut 4514
+laser3.copyroom.hut maryann.girl.hut 8885
+gilligan.crew.hut maryann.girl.hut 7115
+gilligan.crew.hut professor.hut 4494
+skipper.crew.hut laser3.copyroom.hut 1103
+skipper.crew.hut maryann.girl.hut 6677
+ginger.girl.hut fileserver.copyroom.hut 5303
+skipper.crew.hut gilligan.crew.hut 7437
+skipper.crew.hut ginger.girl.hut 7400
+professor.hut professor.hut 3124
+professor.hut ginger.girl.hut 4467
+laser3.copyroom.hut skipper.crew.hut 793
+maryann.girl.hut laser3.copyroom.hut 603
+fileserver.copyroom.hut maryann.girl.hut 3551
+maryann.girl.hut professor.hut 9594
+maryann.girl.hut skipper.crew.hut 9818
+laser3.copyroom.hut gilligan.crew.hut 2648
+laser3.copyroom.hut laser3.copyroom.hut 970
+ginger.girl.hut skipper.crew.hut 4117
+skipper.crew.hut skipper.crew.hut 2238
+fileserver.copyroom.hut laser3.copyroom.hut 6385
+laser3.copyroom.hut maryann.girl.hut 1178
+laser3.copyroom.hut ginger.girl.hut 2322
+skipper.crew.hut maryann.girl.hut 3862
+ginger.girl.hut maryann.girl.hut 9604
+laser3.copyroom.hut laser3.copyroom.hut 8421
+skipper.crew.hut professor.hut 56
+maryann.girl.hut fileserver.copyroom.hut 3955
+laser3.copyroom.hut gilligan.crew.hut 4396
+skipper.crew.hut skipper.crew.hut 5294
+gilligan.crew.hut gilligan.crew.hut 4166
+maryann.girl.hut fileserver.copyroom.hut 6008
+laser3.copyroom.hut laser3.copyroom.hut 8222
+maryann.girl.hut ginger.girl.hut 7240
+gilligan.crew.hut fileserver.copyroom.hut 1375
+ginger.girl.hut ginger.girl.hut 3020
+laser3.copyroom.hut gilligan.crew.hut 4985
+skipper.crew.hut laser3.copyroom.hut 7049
+fileserver.copyroom.hut laser3.copyroom.hut 4688
+laser3.copyroom.hut professor.hut 4751
+professor.hut ginger.girl.hut 5904
+fileserver.copyroom.hut skipper.crew.hut 9563
+maryann.girl.hut skipper.crew.hut 4849
+maryann.girl.hut maryann.girl.hut 8534
+professor.hut maryann.girl.hut 5330
+laser3.copyroom.hut laser3.copyroom.hut 4901
+fileserver.copyroom.hut gilligan.crew.hut 5294
+gilligan.crew.hut skipper.crew.hut 9609
+ginger.girl.hut laser3.copyroom.hut 806
+gilligan.crew.hut skipper.crew.hut 8531
+fileserver.copyroom.hut gilligan.crew.hut 7365
+ginger.girl.hut gilligan.crew.hut 2211
+professor.hut laser3.copyroom.hut 7351
+fileserver.copyroom.hut skipper.crew.hut 4108
+fileserver.copyroom.hut professor.hut 3632
+maryann.girl.hut gilligan.crew.hut 7956
+maryann.girl.hut fileserver.copyroom.hut 6569
+fileserver.copyroom.hut professor.hut 6039
+professor.hut gilligan.crew.hut 7827
+ginger.girl.hut ginger.girl.hut 3728
+skipper.crew.hut fileserver.copyroom.hut 2848
+skipper.crew.hut professor.hut 1044
+ginger.girl.hut laser3.copyroom.hut 1482
+ginger.girl.hut maryann.girl.hut 1142
+gilligan.crew.hut fileserver.copyroom.hut 3521
+maryann.girl.hut laser3.copyroom.hut 4588
+gilligan.crew.hut professor.hut 7619
+laser3.copyroom.hut gilligan.crew.hut 3725
+professor.hut skipper.crew.hut 1958
+laser3.copyroom.hut fileserver.copyroom.hut 9032
+professor.hut ginger.girl.hut 8025
+professor.hut fileserver.copyroom.hut 4787
+gilligan.crew.hut skipper.crew.hut 2425
+ginger.girl.hut ginger.girl.hut 5853
+fileserver.copyroom.hut gilligan.crew.hut 1450
+laser3.copyroom.hut skipper.crew.hut 8149
+maryann.girl.hut skipper.crew.hut 1224
+laser3.copyroom.hut ginger.girl.hut 6613
+maryann.girl.hut professor.hut 8702
+professor.hut maryann.girl.hut 8831
+laser3.copyroom.hut professor.hut 8813
+maryann.girl.hut gilligan.crew.hut 3828
+professor.hut skipper.crew.hut 6746
+gilligan.crew.hut skipper.crew.hut 679
+laser3.copyroom.hut fileserver.copyroom.hut 3781
+gilligan.crew.hut professor.hut 8009
+fileserver.copyroom.hut ginger.girl.hut 6555
+skipper.crew.hut fileserver.copyroom.hut 755
+skipper.crew.hut laser3.copyroom.hut 8831
+ginger.girl.hut professor.hut 5411
+professor.hut skipper.crew.hut 9381
+ginger.girl.hut ginger.girl.hut 5173
+fileserver.copyroom.hut ginger.girl.hut 6263
+ginger.girl.hut ginger.girl.hut 9145
+professor.hut laser3.copyroom.hut 8168
+skipper.crew.hut ginger.girl.hut 477
+laser3.copyroom.hut professor.hut 1376
+professor.hut maryann.girl.hut 5929
+laser3.copyroom.hut laser3.copyroom.hut 6728
+maryann.girl.hut skipper.crew.hut 7447
+ginger.girl.hut skipper.crew.hut 5107
+maryann.girl.hut ginger.girl.hut 802
+skipper.crew.hut fileserver.copyroom.hut 9871
+gilligan.crew.hut ginger.girl.hut 7621
+skipper.crew.hut laser3.copyroom.hut 6081
+skipper.crew.hut maryann.girl.hut 1450
+gilligan.crew.hut gilligan.crew.hut 5543
+maryann.girl.hut professor.hut 5301
+laser3.copyroom.hut laser3.copyroom.hut 8915
+gilligan.crew.hut fileserver.copyroom.hut 3444
+professor.hut professor.hut 1953
+skipper.crew.hut skipper.crew.hut 1310
+fileserver.copyroom.hut fileserver.copyroom.hut 2389
+gilligan.crew.hut maryann.girl.hut 3786
+ginger.girl.hut gilligan.crew.hut 2236
+maryann.girl.hut gilligan.crew.hut 7468
+laser3.copyroom.hut fileserver.copyroom.hut 3467
+maryann.girl.hut professor.hut 5887
+professor.hut laser3.copyroom.hut 9083
+professor.hut fileserver.copyroom.hut 9233
+maryann.girl.hut laser3.copyroom.hut 1654
+laser3.copyroom.hut skipper.crew.hut 7769
+ginger.girl.hut maryann.girl.hut 6502
+skipper.crew.hut ginger.girl.hut 6109
+gilligan.crew.hut professor.hut 1857
+skipper.crew.hut gilligan.crew.hut 2267
+ginger.girl.hut fileserver.copyroom.hut 4075
+gilligan.crew.hut fileserver.copyroom.hut 6540
+laser3.copyroom.hut gilligan.crew.hut 1751
+laser3.copyroom.hut gilligan.crew.hut 3841
+fileserver.copyroom.hut skipper.crew.hut 6202
+maryann.girl.hut gilligan.crew.hut 3623
+maryann.girl.hut ginger.girl.hut 4009
+laser3.copyroom.hut professor.hut 8802
+fileserver.copyroom.hut maryann.girl.hut 9461
+professor.hut ginger.girl.hut 6094
+laser3.copyroom.hut ginger.girl.hut 2229
+gilligan.crew.hut ginger.girl.hut 2044
+laser3.copyroom.hut skipper.crew.hut 1667
+laser3.copyroom.hut ginger.girl.hut 2886
+gilligan.crew.hut fileserver.copyroom.hut 7604
+maryann.girl.hut maryann.girl.hut 3499
+laser3.copyroom.hut gilligan.crew.hut 7160
+professor.hut ginger.girl.hut 9811
+gilligan.crew.hut maryann.girl.hut 7497
+fileserver.copyroom.hut ginger.girl.hut 6325
+maryann.girl.hut skipper.crew.hut 1398
+professor.hut laser3.copyroom.hut 521
+ginger.girl.hut maryann.girl.hut 6105
+professor.hut laser3.copyroom.hut 8363
+gilligan.crew.hut professor.hut 720
+ginger.girl.hut professor.hut 6133
+gilligan.crew.hut maryann.girl.hut 5920
+gilligan.crew.hut skipper.crew.hut 502
+maryann.girl.hut fileserver.copyroom.hut 8301
+skipper.crew.hut professor.hut 5536
+ginger.girl.hut gilligan.crew.hut 9192
+professor.hut skipper.crew.hut 4700
+ginger.girl.hut fileserver.copyroom.hut 7312
+fileserver.copyroom.hut laser3.copyroom.hut 1280
+maryann.girl.hut laser3.copyroom.hut 4072
+fileserver.copyroom.hut maryann.girl.hut 9427
+skipper.crew.hut fileserver.copyroom.hut 6250
+skipper.crew.hut fileserver.copyroom.hut 541
+professor.hut skipper.crew.hut 6501
+gilligan.crew.hut maryann.girl.hut 7892
+gilligan.crew.hut gilligan.crew.hut 7743
+fileserver.copyroom.hut laser3.copyroom.hut 1632
+maryann.girl.hut skipper.crew.hut 7632
+ginger.girl.hut gilligan.crew.hut 711
+skipper.crew.hut skipper.crew.hut 834
+gilligan.crew.hut laser3.copyroom.hut 9838
+maryann.girl.hut gilligan.crew.hut 6998
+skipper.crew.hut skipper.crew.hut 8424
+professor.hut gilligan.crew.hut 2286
+professor.hut skipper.crew.hut 1513
+laser3.copyroom.hut professor.hut 3642
+professor.hut laser3.copyroom.hut 3908
+skipper.crew.hut professor.hut 5649
+ginger.girl.hut fileserver.copyroom.hut 7955
+maryann.girl.hut gilligan.crew.hut 3824
+gilligan.crew.hut gilligan.crew.hut 1107
+laser3.copyroom.hut ginger.girl.hut 8123
+skipper.crew.hut professor.hut 4783
+maryann.girl.hut maryann.girl.hut 2997
+gilligan.crew.hut professor.hut 5285
+ginger.girl.hut fileserver.copyroom.hut 6470
+gilligan.crew.hut skipper.crew.hut 3638
+professor.hut fileserver.copyroom.hut 7749
+laser3.copyroom.hut professor.hut 4218
+fileserver.copyroom.hut professor.hut 607
+skipper.crew.hut skipper.crew.hut 9928
+gilligan.crew.hut maryann.girl.hut 7119
+skipper.crew.hut fileserver.copyroom.hut 7206
+laser3.copyroom.hut skipper.crew.hut 9978
+ginger.girl.hut maryann.girl.hut 7967
+laser3.copyroom.hut laser3.copyroom.hut 1729
+laser3.copyroom.hut ginger.girl.hut 4821
+ginger.girl.hut ginger.girl.hut 5381
+ginger.girl.hut laser3.copyroom.hut 6817
+fileserver.copyroom.hut laser3.copyroom.hut 8790
+professor.hut fileserver.copyroom.hut 1758
+professor.hut laser3.copyroom.hut 1583
+skipper.crew.hut professor.hut 1076
+laser3.copyroom.hut gilligan.crew.hut 4271
+maryann.girl.hut ginger.girl.hut 5682
+ginger.girl.hut professor.hut 1732
+professor.hut fileserver.copyroom.hut 8989
+professor.hut maryann.girl.hut 4089
+maryann.girl.hut professor.hut 8525
+fileserver.copyroom.hut skipper.crew.hut 8120
+laser3.copyroom.hut professor.hut 13
+laser3.copyroom.hut maryann.girl.hut 514
+ginger.girl.hut ginger.girl.hut 3098
+gilligan.crew.hut laser3.copyroom.hut 9226
+maryann.girl.hut laser3.copyroom.hut 8182
+laser3.copyroom.hut maryann.girl.hut 280
+professor.hut skipper.crew.hut 6400
+laser3.copyroom.hut ginger.girl.hut 5891
+professor.hut maryann.girl.hut 416
+maryann.girl.hut laser3.copyroom.hut 7039
+laser3.copyroom.hut laser3.copyroom.hut 3509
+maryann.girl.hut professor.hut 9884
+laser3.copyroom.hut ginger.girl.hut 7855
+professor.hut maryann.girl.hut 3316
+professor.hut fileserver.copyroom.hut 8954
+gilligan.crew.hut ginger.girl.hut 2675
+maryann.girl.hut fileserver.copyroom.hut 7153
+gilligan.crew.hut ginger.girl.hut 9492
+maryann.girl.hut ginger.girl.hut 18
+fileserver.copyroom.hut fileserver.copyroom.hut 6740
+laser3.copyroom.hut skipper.crew.hut 9724
+fileserver.copyroom.hut ginger.girl.hut 8433
+professor.hut professor.hut 2268
+maryann.girl.hut gilligan.crew.hut 3896
+ginger.girl.hut skipper.crew.hut 3579
+professor.hut gilligan.crew.hut 1076
+gilligan.crew.hut maryann.girl.hut 7888
+fileserver.copyroom.hut maryann.girl.hut 6666
+laser3.copyroom.hut laser3.copyroom.hut 1705
+maryann.girl.hut maryann.girl.hut 7994
+skipper.crew.hut maryann.girl.hut 3132
+professor.hut fileserver.copyroom.hut 8128
+fileserver.copyroom.hut professor.hut 5888
+laser3.copyroom.hut professor.hut 4932
+ginger.girl.hut gilligan.crew.hut 697
+laser3.copyroom.hut maryann.girl.hut 832
+fileserver.copyroom.hut gilligan.crew.hut 7331
+fileserver.copyroom.hut fileserver.copyroom.hut 2393
+gilligan.crew.hut laser3.copyroom.hut 4245
+skipper.crew.hut laser3.copyroom.hut 5599
+ginger.girl.hut skipper.crew.hut 7957
+maryann.girl.hut maryann.girl.hut 4259
+maryann.girl.hut fileserver.copyroom.hut 6175
+fileserver.copyroom.hut professor.hut 79
+laser3.copyroom.hut laser3.copyroom.hut 5445
+maryann.girl.hut skipper.crew.hut 2448
+skipper.crew.hut skipper.crew.hut 1481
+skipper.crew.hut skipper.crew.hut 5215
+fileserver.copyroom.hut laser3.copyroom.hut 3240
+maryann.girl.hut fileserver.copyroom.hut 871
+maryann.girl.hut professor.hut 2707
+laser3.copyroom.hut fileserver.copyroom.hut 4846
+laser3.copyroom.hut fileserver.copyroom.hut 5009
+laser3.copyroom.hut skipper.crew.hut 5185
+skipper.crew.hut ginger.girl.hut 6341
+skipper.crew.hut ginger.girl.hut 955
+gilligan.crew.hut professor.hut 3594
+fileserver.copyroom.hut ginger.girl.hut 5591
+laser3.copyroom.hut maryann.girl.hut 4226
+ginger.girl.hut skipper.crew.hut 63
+ginger.girl.hut maryann.girl.hut 3011
+ginger.girl.hut fileserver.copyroom.hut 9442
+laser3.copyroom.hut ginger.girl.hut 4531
+skipper.crew.hut fileserver.copyroom.hut 7237
+fileserver.copyroom.hut maryann.girl.hut 436
+maryann.girl.hut gilligan.crew.hut 2605
+ginger.girl.hut laser3.copyroom.hut 2549
+skipper.crew.hut ginger.girl.hut 4685
+ginger.girl.hut laser3.copyroom.hut 3833
+laser3.copyroom.hut ginger.girl.hut 3055
+ginger.girl.hut gilligan.crew.hut 9052
+fileserver.copyroom.hut ginger.girl.hut 5090
+fileserver.copyroom.hut laser3.copyroom.hut 1332
+maryann.girl.hut gilligan.crew.hut 4482
+maryann.girl.hut fileserver.copyroom.hut 2302
+laser3.copyroom.hut gilligan.crew.hut 3168
+ginger.girl.hut professor.hut 5972
+fileserver.copyroom.hut laser3.copyroom.hut 9785
+professor.hut maryann.girl.hut 3364
+laser3.copyroom.hut laser3.copyroom.hut 6541
+professor.hut skipper.crew.hut 5026
+skipper.crew.hut fileserver.copyroom.hut 5152
+professor.hut skipper.crew.hut 4333
+fileserver.copyroom.hut maryann.girl.hut 2317
+laser3.copyroom.hut laser3.copyroom.hut 6760
+maryann.girl.hut skipper.crew.hut 1383
+ginger.girl.hut professor.hut 7019
+gilligan.crew.hut maryann.girl.hut 3753
+skipper.crew.hut professor.hut 9981
+gilligan.crew.hut fileserver.copyroom.hut 4606
+fileserver.copyroom.hut professor.hut 8926
+professor.hut gilligan.crew.hut 1483
+maryann.girl.hut ginger.girl.hut 7653
+gilligan.crew.hut laser3.copyroom.hut 8413
+professor.hut ginger.girl.hut 2695
+professor.hut skipper.crew.hut 1935
+ginger.girl.hut ginger.girl.hut 5770
+skipper.crew.hut professor.hut 1518
+skipper.crew.hut fileserver.copyroom.hut 294
+ginger.girl.hut fileserver.copyroom.hut 7026
+maryann.girl.hut maryann.girl.hut 1741
+fileserver.copyroom.hut maryann.girl.hut 2607
+ginger.girl.hut fileserver.copyroom.hut 9788
+skipper.crew.hut professor.hut 991
+professor.hut maryann.girl.hut 3134
+laser3.copyroom.hut fileserver.copyroom.hut 8384
+gilligan.crew.hut skipper.crew.hut 8605
+professor.hut fileserver.copyroom.hut 3433
+fileserver.copyroom.hut professor.hut 1484
+professor.hut professor.hut 3623
+ginger.girl.hut skipper.crew.hut 5619
+professor.hut laser3.copyroom.hut 264
+skipper.crew.hut gilligan.crew.hut 7134
+gilligan.crew.hut professor.hut 8032
+fileserver.copyroom.hut ginger.girl.hut 5320
+ginger.girl.hut gilligan.crew.hut 3284
+ginger.girl.hut gilligan.crew.hut 8105
+gilligan.crew.hut maryann.girl.hut 4066
+skipper.crew.hut ginger.girl.hut 923
+maryann.girl.hut fileserver.copyroom.hut 3564
+skipper.crew.hut professor.hut 8683
+skipper.crew.hut maryann.girl.hut 645
+gilligan.crew.hut skipper.crew.hut 1815
+gilligan.crew.hut gilligan.crew.hut 6569
+maryann.girl.hut fileserver.copyroom.hut 4787
+skipper.crew.hut gilligan.crew.hut 8648
+skipper.crew.hut ginger.girl.hut 1542
+ginger.girl.hut skipper.crew.hut 7898
+laser3.copyroom.hut fileserver.copyroom.hut 2734
+maryann.girl.hut fileserver.copyroom.hut 6595
+skipper.crew.hut skipper.crew.hut 111
+gilligan.crew.hut fileserver.copyroom.hut 6609
+gilligan.crew.hut professor.hut 3673
+skipper.crew.hut laser3.copyroom.hut 6214
+laser3.copyroom.hut ginger.girl.hut 3260
+gilligan.crew.hut laser3.copyroom.hut 9065
+gilligan.crew.hut skipper.crew.hut 6640
+gilligan.crew.hut gilligan.crew.hut 2521
+ginger.girl.hut maryann.girl.hut 8135
+ginger.girl.hut laser3.copyroom.hut 4953
+maryann.girl.hut professor.hut 1704
+fileserver.copyroom.hut gilligan.crew.hut 7236
+maryann.girl.hut maryann.girl.hut 1321
+maryann.girl.hut professor.hut 362
+laser3.copyroom.hut laser3.copyroom.hut 9552
+fileserver.copyroom.hut laser3.copyroom.hut 6117
+maryann.girl.hut skipper.crew.hut 144
+skipper.crew.hut professor.hut 1271
+skipper.crew.hut fileserver.copyroom.hut 2570
+laser3.copyroom.hut gilligan.crew.hut 4125
+laser3.copyroom.hut laser3.copyroom.hut 571
+laser3.copyroom.hut skipper.crew.hut 7254
+ginger.girl.hut fileserver.copyroom.hut 3340
+fileserver.copyroom.hut laser3.copyroom.hut 9134
+skipper.crew.hut laser3.copyroom.hut 5942
+professor.hut ginger.girl.hut 6278
+fileserver.copyroom.hut maryann.girl.hut 1500
+gilligan.crew.hut fileserver.copyroom.hut 7437
+skipper.crew.hut skipper.crew.hut 6146
+gilligan.crew.hut ginger.girl.hut 867
+maryann.girl.hut gilligan.crew.hut 7269
+fileserver.copyroom.hut maryann.girl.hut 7964
+maryann.girl.hut gilligan.crew.hut 73
+skipper.crew.hut laser3.copyroom.hut 6213
+ginger.girl.hut ginger.girl.hut 6177
+laser3.copyroom.hut professor.hut 7714
+ginger.girl.hut laser3.copyroom.hut 8407
+skipper.crew.hut maryann.girl.hut 6588
+laser3.copyroom.hut professor.hut 2614
+gilligan.crew.hut skipper.crew.hut 7128
+laser3.copyroom.hut maryann.girl.hut 4562
+professor.hut fileserver.copyroom.hut 6315
+fileserver.copyroom.hut laser3.copyroom.hut 921
+skipper.crew.hut maryann.girl.hut 247
+skipper.crew.hut ginger.girl.hut 9166
+gilligan.crew.hut professor.hut 972
+laser3.copyroom.hut fileserver.copyroom.hut 9556
+fileserver.copyroom.hut laser3.copyroom.hut 2712
+gilligan.crew.hut skipper.crew.hut 5723
+laser3.copyroom.hut ginger.girl.hut 8068
+ginger.girl.hut laser3.copyroom.hut 2210
+maryann.girl.hut gilligan.crew.hut 8619
+ginger.girl.hut professor.hut 9401
+gilligan.crew.hut ginger.girl.hut 451
+fileserver.copyroom.hut fileserver.copyroom.hut 7023
+professor.hut fileserver.copyroom.hut 600
+fileserver.copyroom.hut maryann.girl.hut 7267
+professor.hut ginger.girl.hut 828
+laser3.copyroom.hut skipper.crew.hut 1843
+gilligan.crew.hut fileserver.copyroom.hut 2321
+ginger.girl.hut laser3.copyroom.hut 1405
+laser3.copyroom.hut ginger.girl.hut 9120
+skipper.crew.hut maryann.girl.hut 6646
+maryann.girl.hut skipper.crew.hut 8014
+laser3.copyroom.hut gilligan.crew.hut 8324
+skipper.crew.hut laser3.copyroom.hut 2614
+maryann.girl.hut maryann.girl.hut 9359
+gilligan.crew.hut fileserver.copyroom.hut 4148
+fileserver.copyroom.hut maryann.girl.hut 797
+gilligan.crew.hut professor.hut 61
+professor.hut professor.hut 4733
+maryann.girl.hut gilligan.crew.hut 6477
+professor.hut maryann.girl.hut 6031
+gilligan.crew.hut laser3.copyroom.hut 7555
+professor.hut gilligan.crew.hut 7908
+professor.hut professor.hut 4407
+professor.hut fileserver.copyroom.hut 5981
+ginger.girl.hut maryann.girl.hut 5297
+skipper.crew.hut ginger.girl.hut 1027
+ginger.girl.hut skipper.crew.hut 9892
+fileserver.copyroom.hut ginger.girl.hut 8131
+fileserver.copyroom.hut professor.hut 8567
+skipper.crew.hut maryann.girl.hut 7481
+maryann.girl.hut fileserver.copyroom.hut 1256
+maryann.girl.hut maryann.girl.hut 4485
+laser3.copyroom.hut professor.hut 3562
+fileserver.copyroom.hut ginger.girl.hut 113
+laser3.copyroom.hut gilligan.crew.hut 2916
+ginger.girl.hut skipper.crew.hut 1427
+gilligan.crew.hut professor.hut 3385
+maryann.girl.hut gilligan.crew.hut 6367
+maryann.girl.hut skipper.crew.hut 9702
+skipper.crew.hut laser3.copyroom.hut 7144
+gilligan.crew.hut professor.hut 2549
+ginger.girl.hut skipper.crew.hut 600
+gilligan.crew.hut laser3.copyroom.hut 2241
+skipper.crew.hut fileserver.copyroom.hut 7082
+ginger.girl.hut maryann.girl.hut 44
+fileserver.copyroom.hut fileserver.copyroom.hut 5766
+maryann.girl.hut laser3.copyroom.hut 5942
+ginger.girl.hut maryann.girl.hut 2310
+maryann.girl.hut gilligan.crew.hut 3281
+professor.hut skipper.crew.hut 8658
+laser3.copyroom.hut professor.hut 6754
+professor.hut laser3.copyroom.hut 3580
+ginger.girl.hut gilligan.crew.hut 4334
+laser3.copyroom.hut ginger.girl.hut 3834
+ginger.girl.hut ginger.girl.hut 8794
+laser3.copyroom.hut ginger.girl.hut 3179
+fileserver.copyroom.hut fileserver.copyroom.hut 8603
+professor.hut fileserver.copyroom.hut 6132
+fileserver.copyroom.hut fileserver.copyroom.hut 1873
+fileserver.copyroom.hut fileserver.copyroom.hut 2636
+skipper.crew.hut professor.hut 6588
+laser3.copyroom.hut maryann.girl.hut 3884
+ginger.girl.hut professor.hut 6034
+gilligan.crew.hut gilligan.crew.hut 1935
+skipper.crew.hut gilligan.crew.hut 5646
+maryann.girl.hut fileserver.copyroom.hut 9302
+skipper.crew.hut professor.hut 8582
+ginger.girl.hut maryann.girl.hut 2562
+gilligan.crew.hut fileserver.copyroom.hut 8464
+ginger.girl.hut skipper.crew.hut 7170
+ginger.girl.hut gilligan.crew.hut 377
+professor.hut maryann.girl.hut 4668
+gilligan.crew.hut maryann.girl.hut 3336
+gilligan.crew.hut maryann.girl.hut 2334
+skipper.crew.hut gilligan.crew.hut 8883
+gilligan.crew.hut gilligan.crew.hut 7454
+professor.hut professor.hut 2120
+fileserver.copyroom.hut laser3.copyroom.hut 3529
+gilligan.crew.hut fileserver.copyroom.hut 7759
+maryann.girl.hut ginger.girl.hut 1022
+skipper.crew.hut laser3.copyroom.hut 763
+gilligan.crew.hut gilligan.crew.hut 9727
+skipper.crew.hut gilligan.crew.hut 6491
+ginger.girl.hut skipper.crew.hut 9134
+maryann.girl.hut skipper.crew.hut 4324
+skipper.crew.hut professor.hut 3194
+laser3.copyroom.hut professor.hut 9421
+fileserver.copyroom.hut ginger.girl.hut 2162
+gilligan.crew.hut skipper.crew.hut 323
+ginger.girl.hut gilligan.crew.hut 4409
+gilligan.crew.hut skipper.crew.hut 4663
+professor.hut maryann.girl.hut 2049
+skipper.crew.hut gilligan.crew.hut 6667
+skipper.crew.hut maryann.girl.hut 357
+skipper.crew.hut professor.hut 9050
+gilligan.crew.hut gilligan.crew.hut 14
+ginger.girl.hut laser3.copyroom.hut 1133
+skipper.crew.hut professor.hut 2736
+maryann.girl.hut fileserver.copyroom.hut 2043
+skipper.crew.hut fileserver.copyroom.hut 9228
+maryann.girl.hut laser3.copyroom.hut 68
+laser3.copyroom.hut professor.hut 3452
+professor.hut ginger.girl.hut 6972
+maryann.girl.hut laser3.copyroom.hut 9763
+maryann.girl.hut professor.hut 3230
+ginger.girl.hut maryann.girl.hut 4408
+professor.hut professor.hut 2344
+professor.hut skipper.crew.hut 78
+gilligan.crew.hut skipper.crew.hut 7258
+fileserver.copyroom.hut professor.hut 8759
+ginger.girl.hut maryann.girl.hut 5013
+maryann.girl.hut maryann.girl.hut 6285
+professor.hut professor.hut 1513
+ginger.girl.hut fileserver.copyroom.hut 4288
+laser3.copyroom.hut laser3.copyroom.hut 4528
+gilligan.crew.hut maryann.girl.hut 8071
+professor.hut skipper.crew.hut 835
+skipper.crew.hut skipper.crew.hut 2735
+skipper.crew.hut maryann.girl.hut 8262
+maryann.girl.hut fileserver.copyroom.hut 3661
+skipper.crew.hut skipper.crew.hut 262
+professor.hut skipper.crew.hut 4216
+laser3.copyroom.hut maryann.girl.hut 7004
+professor.hut gilligan.crew.hut 8401
+laser3.copyroom.hut laser3.copyroom.hut 6833
+ginger.girl.hut laser3.copyroom.hut 4431
+maryann.girl.hut fileserver.copyroom.hut 3472
+maryann.girl.hut professor.hut 4934
+ginger.girl.hut ginger.girl.hut 4402
+maryann.girl.hut laser3.copyroom.hut 6282
+skipper.crew.hut professor.hut 2052
+gilligan.crew.hut skipper.crew.hut 2359
+skipper.crew.hut maryann.girl.hut 4541
+laser3.copyroom.hut fileserver.copyroom.hut 2573
+fileserver.copyroom.hut fileserver.copyroom.hut 8308
+skipper.crew.hut ginger.girl.hut 7132
+laser3.copyroom.hut professor.hut 2434
+skipper.crew.hut laser3.copyroom.hut 4517
+fileserver.copyroom.hut skipper.crew.hut 5405
+gilligan.crew.hut ginger.girl.hut 6580
+skipper.crew.hut gilligan.crew.hut 2552
+ginger.girl.hut gilligan.crew.hut 2211
+professor.hut skipper.crew.hut 1049
+professor.hut skipper.crew.hut 3996
+skipper.crew.hut laser3.copyroom.hut 8152
+gilligan.crew.hut gilligan.crew.hut 9661
+skipper.crew.hut ginger.girl.hut 519
+fileserver.copyroom.hut gilligan.crew.hut 1352
+ginger.girl.hut gilligan.crew.hut 8661
+ginger.girl.hut skipper.crew.hut 3403
+maryann.girl.hut skipper.crew.hut 6690
+ginger.girl.hut gilligan.crew.hut 6030
+fileserver.copyroom.hut laser3.copyroom.hut 3901
+fileserver.copyroom.hut gilligan.crew.hut 1574
+fileserver.copyroom.hut maryann.girl.hut 7608
+skipper.crew.hut laser3.copyroom.hut 2939
+maryann.girl.hut gilligan.crew.hut 7353
+gilligan.crew.hut ginger.girl.hut 9139
+fileserver.copyroom.hut maryann.girl.hut 2673
+fileserver.copyroom.hut ginger.girl.hut 4347
+laser3.copyroom.hut skipper.crew.hut 7200
+skipper.crew.hut professor.hut 5939
+skipper.crew.hut gilligan.crew.hut 4062
+professor.hut skipper.crew.hut 321
+gilligan.crew.hut fileserver.copyroom.hut 3160
+fileserver.copyroom.hut gilligan.crew.hut 1629
+gilligan.crew.hut professor.hut 5665
+professor.hut ginger.girl.hut 1292
+maryann.girl.hut laser3.copyroom.hut 5078
+skipper.crew.hut laser3.copyroom.hut 6145
+ginger.girl.hut gilligan.crew.hut 5229
+fileserver.copyroom.hut professor.hut 6858
+fileserver.copyroom.hut laser3.copyroom.hut 1140
+ginger.girl.hut professor.hut 5194
+maryann.girl.hut gilligan.crew.hut 9984
+ginger.girl.hut skipper.crew.hut 7068
+skipper.crew.hut ginger.girl.hut 6393
+ginger.girl.hut ginger.girl.hut 7732
+professor.hut professor.hut 2971
+skipper.crew.hut skipper.crew.hut 2225
+ginger.girl.hut laser3.copyroom.hut 7155
+professor.hut maryann.girl.hut 288
+skipper.crew.hut professor.hut 8329
+professor.hut laser3.copyroom.hut 7483
+gilligan.crew.hut maryann.girl.hut 1808
+fileserver.copyroom.hut skipper.crew.hut 1392
+maryann.girl.hut laser3.copyroom.hut 3676
+ginger.girl.hut laser3.copyroom.hut 9438
+ginger.girl.hut fileserver.copyroom.hut 461
+laser3.copyroom.hut ginger.girl.hut 6686
+ginger.girl.hut fileserver.copyroom.hut 6531
+ginger.girl.hut ginger.girl.hut 3546
+maryann.girl.hut fileserver.copyroom.hut 3926
+ginger.girl.hut professor.hut 1368
+gilligan.crew.hut maryann.girl.hut 7673
+fileserver.copyroom.hut fileserver.copyroom.hut 6019
+fileserver.copyroom.hut gilligan.crew.hut 9446
+skipper.crew.hut laser3.copyroom.hut 4522
+maryann.girl.hut laser3.copyroom.hut 5969
+ginger.girl.hut ginger.girl.hut 8902
+professor.hut skipper.crew.hut 6309
+laser3.copyroom.hut ginger.girl.hut 9102
+skipper.crew.hut ginger.girl.hut 8148
+skipper.crew.hut ginger.girl.hut 7179
+ginger.girl.hut laser3.copyroom.hut 8042
+professor.hut ginger.girl.hut 9744
+skipper.crew.hut laser3.copyroom.hut 216
+ginger.girl.hut maryann.girl.hut 6094
+maryann.girl.hut laser3.copyroom.hut 9865
+skipper.crew.hut laser3.copyroom.hut 7184
+laser3.copyroom.hut fileserver.copyroom.hut 9830
+ginger.girl.hut laser3.copyroom.hut 2501
+maryann.girl.hut ginger.girl.hut 5529
+maryann.girl.hut professor.hut 5580
+skipper.crew.hut skipper.crew.hut 6322
+gilligan.crew.hut maryann.girl.hut 7273
+professor.hut ginger.girl.hut 8146
+ginger.girl.hut professor.hut 6068
+ginger.girl.hut fileserver.copyroom.hut 5710
+gilligan.crew.hut laser3.copyroom.hut 5838
+maryann.girl.hut professor.hut 6055
+gilligan.crew.hut skipper.crew.hut 3876
+ginger.girl.hut skipper.crew.hut 5896
+skipper.crew.hut maryann.girl.hut 9343
+fileserver.copyroom.hut fileserver.copyroom.hut 9753
+gilligan.crew.hut fileserver.copyroom.hut 5569
+fileserver.copyroom.hut gilligan.crew.hut 4099
+maryann.girl.hut ginger.girl.hut 1083
+gilligan.crew.hut laser3.copyroom.hut 6203
+professor.hut fileserver.copyroom.hut 9550
+ginger.girl.hut skipper.crew.hut 6889
+maryann.girl.hut gilligan.crew.hut 7544
+maryann.girl.hut maryann.girl.hut 5973
+skipper.crew.hut laser3.copyroom.hut 4952
+ginger.girl.hut ginger.girl.hut 8247
+ginger.girl.hut ginger.girl.hut 4098
+maryann.girl.hut ginger.girl.hut 9471
+skipper.crew.hut laser3.copyroom.hut 8057
+professor.hut fileserver.copyroom.hut 3592
+ginger.girl.hut professor.hut 5205
+maryann.girl.hut fileserver.copyroom.hut 5297
+gilligan.crew.hut maryann.girl.hut 9361
+professor.hut professor.hut 6602
+laser3.copyroom.hut gilligan.crew.hut 3398
+ginger.girl.hut fileserver.copyroom.hut 5387
+skipper.crew.hut gilligan.crew.hut 9537
+maryann.girl.hut ginger.girl.hut 8
+maryann.girl.hut maryann.girl.hut 819
+maryann.girl.hut maryann.girl.hut 3282
+fileserver.copyroom.hut professor.hut 6483
+fileserver.copyroom.hut gilligan.crew.hut 3609
+fileserver.copyroom.hut professor.hut 9202
+ginger.girl.hut fileserver.copyroom.hut 8379
+maryann.girl.hut laser3.copyroom.hut 4299
+professor.hut laser3.copyroom.hut 214
+ginger.girl.hut skipper.crew.hut 6654
+skipper.crew.hut ginger.girl.hut 6613
+skipper.crew.hut fileserver.copyroom.hut 5677
+maryann.girl.hut ginger.girl.hut 8689
+gilligan.crew.hut skipper.crew.hut 2126
+professor.hut maryann.girl.hut 7283
+laser3.copyroom.hut fileserver.copyroom.hut 2498
+skipper.crew.hut ginger.girl.hut 8850
+laser3.copyroom.hut professor.hut 5945
+laser3.copyroom.hut skipper.crew.hut 3903
+gilligan.crew.hut maryann.girl.hut 2312
+gilligan.crew.hut gilligan.crew.hut 4731
+professor.hut maryann.girl.hut 9205
+fileserver.copyroom.hut maryann.girl.hut 629
+gilligan.crew.hut fileserver.copyroom.hut 6179
+skipper.crew.hut skipper.crew.hut 5246
+gilligan.crew.hut maryann.girl.hut 8125
+maryann.girl.hut maryann.girl.hut 3046
+professor.hut gilligan.crew.hut 2755
+skipper.crew.hut professor.hut 7010
+ginger.girl.hut professor.hut 5956
+fileserver.copyroom.hut laser3.copyroom.hut 5472
+gilligan.crew.hut skipper.crew.hut 4450
+maryann.girl.hut fileserver.copyroom.hut 6023
+laser3.copyroom.hut laser3.copyroom.hut 3778
+professor.hut laser3.copyroom.hut 5502
+laser3.copyroom.hut fileserver.copyroom.hut 367
+ginger.girl.hut ginger.girl.hut 9062
+laser3.copyroom.hut laser3.copyroom.hut 8987
+fileserver.copyroom.hut laser3.copyroom.hut 8676
+maryann.girl.hut fileserver.copyroom.hut 2269
+skipper.crew.hut skipper.crew.hut 3319
+skipper.crew.hut ginger.girl.hut 2777
+fileserver.copyroom.hut laser3.copyroom.hut 2025
+professor.hut maryann.girl.hut 9904
+professor.hut maryann.girl.hut 3482
+fileserver.copyroom.hut ginger.girl.hut 4063
+professor.hut ginger.girl.hut 9083
+laser3.copyroom.hut laser3.copyroom.hut 241
+gilligan.crew.hut professor.hut 8963
+skipper.crew.hut laser3.copyroom.hut 650
+laser3.copyroom.hut professor.hut 1806
+gilligan.crew.hut gilligan.crew.hut 7042
+laser3.copyroom.hut skipper.crew.hut 3082
+ginger.girl.hut skipper.crew.hut 9680
+gilligan.crew.hut professor.hut 6974
+laser3.copyroom.hut skipper.crew.hut 6947
+professor.hut ginger.girl.hut 9094
+ginger.girl.hut professor.hut 9420
+gilligan.crew.hut ginger.girl.hut 7979
+skipper.crew.hut maryann.girl.hut 1141
+laser3.copyroom.hut ginger.girl.hut 1194
+professor.hut professor.hut 6019
+professor.hut laser3.copyroom.hut 3650
+laser3.copyroom.hut gilligan.crew.hut 6629
+maryann.girl.hut ginger.girl.hut 8800
+skipper.crew.hut ginger.girl.hut 64
+skipper.crew.hut skipper.crew.hut 6821
+professor.hut skipper.crew.hut 3056
+ginger.girl.hut laser3.copyroom.hut 9224
+ginger.girl.hut fileserver.copyroom.hut 3647
+maryann.girl.hut gilligan.crew.hut 8818
+professor.hut professor.hut 3528
+professor.hut professor.hut 2392
+maryann.girl.hut professor.hut 4360
+laser3.copyroom.hut skipper.crew.hut 5779
+maryann.girl.hut ginger.girl.hut 5604
+fileserver.copyroom.hut fileserver.copyroom.hut 4797
+skipper.crew.hut professor.hut 5511
+maryann.girl.hut ginger.girl.hut 6759
+skipper.crew.hut ginger.girl.hut 9848
+fileserver.copyroom.hut ginger.girl.hut 1861
+ginger.girl.hut fileserver.copyroom.hut 4136
+laser3.copyroom.hut fileserver.copyroom.hut 6752
+professor.hut fileserver.copyroom.hut 2317
+laser3.copyroom.hut fileserver.copyroom.hut 5009
+professor.hut ginger.girl.hut 9678
+fileserver.copyroom.hut laser3.copyroom.hut 3963
+professor.hut laser3.copyroom.hut 7199
+professor.hut ginger.girl.hut 4001
+gilligan.crew.hut ginger.girl.hut 5943
+professor.hut maryann.girl.hut 5710
+maryann.girl.hut gilligan.crew.hut 331
+skipper.crew.hut gilligan.crew.hut 6451
+maryann.girl.hut fileserver.copyroom.hut 8795
+professor.hut professor.hut 1121
+skipper.crew.hut skipper.crew.hut 1389
+fileserver.copyroom.hut laser3.copyroom.hut 5502
+gilligan.crew.hut laser3.copyroom.hut 8809
+fileserver.copyroom.hut maryann.girl.hut 7904
+maryann.girl.hut skipper.crew.hut 5630
+skipper.crew.hut laser3.copyroom.hut 6683
+ginger.girl.hut fileserver.copyroom.hut 5541
+skipper.crew.hut maryann.girl.hut 919
+gilligan.crew.hut ginger.girl.hut 7702
+fileserver.copyroom.hut fileserver.copyroom.hut 5080
+fileserver.copyroom.hut maryann.girl.hut 2075
+maryann.girl.hut maryann.girl.hut 9472
+gilligan.crew.hut ginger.girl.hut 3476
+ginger.girl.hut maryann.girl.hut 868
+ginger.girl.hut gilligan.crew.hut 1253
+professor.hut fileserver.copyroom.hut 174
+skipper.crew.hut gilligan.crew.hut 8203
+professor.hut ginger.girl.hut 2454
+laser3.copyroom.hut fileserver.copyroom.hut 9369
+ginger.girl.hut gilligan.crew.hut 1269
+laser3.copyroom.hut fileserver.copyroom.hut 3579
+ginger.girl.hut ginger.girl.hut 2183
+gilligan.crew.hut laser3.copyroom.hut 7531
+fileserver.copyroom.hut laser3.copyroom.hut 274
+fileserver.copyroom.hut professor.hut 4233
+fileserver.copyroom.hut maryann.girl.hut 5606
+skipper.crew.hut fileserver.copyroom.hut 3478
+maryann.girl.hut ginger.girl.hut 9181
+professor.hut professor.hut 8570
+skipper.crew.hut fileserver.copyroom.hut 5512
+fileserver.copyroom.hut maryann.girl.hut 7978
+ginger.girl.hut fileserver.copyroom.hut 3846
+skipper.crew.hut skipper.crew.hut 6041
+ginger.girl.hut gilligan.crew.hut 348
+laser3.copyroom.hut fileserver.copyroom.hut 5271
+fileserver.copyroom.hut laser3.copyroom.hut 7078
+gilligan.crew.hut laser3.copyroom.hut 5429
+ginger.girl.hut ginger.girl.hut 714
+maryann.girl.hut gilligan.crew.hut 9180
+ginger.girl.hut maryann.girl.hut 7912
+laser3.copyroom.hut laser3.copyroom.hut 7519
+ginger.girl.hut ginger.girl.hut 9777
+maryann.girl.hut maryann.girl.hut 7976
+laser3.copyroom.hut professor.hut 3891
+maryann.girl.hut fileserver.copyroom.hut 2895
+fileserver.copyroom.hut laser3.copyroom.hut 4516
+gilligan.crew.hut gilligan.crew.hut 6771
+skipper.crew.hut skipper.crew.hut 4572
+ginger.girl.hut skipper.crew.hut 7129
+skipper.crew.hut gilligan.crew.hut 5605
+laser3.copyroom.hut laser3.copyroom.hut 5816
+maryann.girl.hut gilligan.crew.hut 5030
+professor.hut ginger.girl.hut 3371
+skipper.crew.hut laser3.copyroom.hut 8761
+gilligan.crew.hut fileserver.copyroom.hut 3767
+maryann.girl.hut ginger.girl.hut 9502
+ginger.girl.hut laser3.copyroom.hut 6528
+gilligan.crew.hut gilligan.crew.hut 8813
+skipper.crew.hut skipper.crew.hut 3567
+fileserver.copyroom.hut skipper.crew.hut 600
+skipper.crew.hut maryann.girl.hut 5561
+ginger.girl.hut fileserver.copyroom.hut 7356
+maryann.girl.hut fileserver.copyroom.hut 4446
+fileserver.copyroom.hut fileserver.copyroom.hut 6214
+professor.hut professor.hut 5903
+maryann.girl.hut laser3.copyroom.hut 3375
+skipper.crew.hut ginger.girl.hut 688
+laser3.copyroom.hut fileserver.copyroom.hut 8455
+professor.hut laser3.copyroom.hut 3958
+fileserver.copyroom.hut professor.hut 4825
+ginger.girl.hut laser3.copyroom.hut 7776
+professor.hut maryann.girl.hut 115
+laser3.copyroom.hut maryann.girl.hut 9782
+skipper.crew.hut skipper.crew.hut 4077
+ginger.girl.hut fileserver.copyroom.hut 560
+skipper.crew.hut ginger.girl.hut 9254
+skipper.crew.hut maryann.girl.hut 3383
+fileserver.copyroom.hut skipper.crew.hut 5859
+fileserver.copyroom.hut laser3.copyroom.hut 9857
+skipper.crew.hut laser3.copyroom.hut 972
+gilligan.crew.hut gilligan.crew.hut 9015
+maryann.girl.hut gilligan.crew.hut 7702
+ginger.girl.hut professor.hut 1888
+gilligan.crew.hut fileserver.copyroom.hut 3153
+fileserver.copyroom.hut ginger.girl.hut 1059
+skipper.crew.hut gilligan.crew.hut 7702
+ginger.girl.hut laser3.copyroom.hut 4956
+fileserver.copyroom.hut skipper.crew.hut 5339
+professor.hut laser3.copyroom.hut 3722
+laser3.copyroom.hut laser3.copyroom.hut 5949
+ginger.girl.hut professor.hut 5551
+gilligan.crew.hut gilligan.crew.hut 3732
+professor.hut laser3.copyroom.hut 5124
+fileserver.copyroom.hut professor.hut 5569
+ginger.girl.hut gilligan.crew.hut 9527
+ginger.girl.hut ginger.girl.hut 1925
+laser3.copyroom.hut skipper.crew.hut 8303
+ginger.girl.hut fileserver.copyroom.hut 8593
+professor.hut laser3.copyroom.hut 6074
+maryann.girl.hut maryann.girl.hut 4147
+maryann.girl.hut gilligan.crew.hut 7172
+skipper.crew.hut maryann.girl.hut 5594
+fileserver.copyroom.hut professor.hut 3124
+laser3.copyroom.hut ginger.girl.hut 2767
+professor.hut maryann.girl.hut 3100
+gilligan.crew.hut fileserver.copyroom.hut 6383
+maryann.girl.hut ginger.girl.hut 2518
+ginger.girl.hut ginger.girl.hut 3300
+professor.hut professor.hut 7208
+gilligan.crew.hut professor.hut 63
+skipper.crew.hut professor.hut 4288
+professor.hut ginger.girl.hut 1301
+skipper.crew.hut professor.hut 7962
+ginger.girl.hut fileserver.copyroom.hut 5165
+professor.hut skipper.crew.hut 8843
+fileserver.copyroom.hut gilligan.crew.hut 6094
+gilligan.crew.hut maryann.girl.hut 2433
+fileserver.copyroom.hut professor.hut 5872
+maryann.girl.hut professor.hut 8370
+maryann.girl.hut laser3.copyroom.hut 5216
+laser3.copyroom.hut ginger.girl.hut 845
+ginger.girl.hut ginger.girl.hut 5578
+fileserver.copyroom.hut maryann.girl.hut 8790
+ginger.girl.hut ginger.girl.hut 1538
+professor.hut laser3.copyroom.hut 6484
+ginger.girl.hut skipper.crew.hut 9235
+skipper.crew.hut skipper.crew.hut 7834
+maryann.girl.hut laser3.copyroom.hut 7107
+ginger.girl.hut gilligan.crew.hut 9602
+ginger.girl.hut laser3.copyroom.hut 6570
+skipper.crew.hut gilligan.crew.hut 4967
+skipper.crew.hut ginger.girl.hut 5593
+maryann.girl.hut maryann.girl.hut 3146
+professor.hut maryann.girl.hut 7786
+ginger.girl.hut ginger.girl.hut 3799
+gilligan.crew.hut laser3.copyroom.hut 9544
+professor.hut professor.hut 7377
+professor.hut professor.hut 5685
+ginger.girl.hut skipper.crew.hut 6187
+gilligan.crew.hut laser3.copyroom.hut 2224
+fileserver.copyroom.hut fileserver.copyroom.hut 8115
+laser3.copyroom.hut laser3.copyroom.hut 5131
+ginger.girl.hut laser3.copyroom.hut 570
+fileserver.copyroom.hut gilligan.crew.hut 3237
+laser3.copyroom.hut maryann.girl.hut 1427
+gilligan.crew.hut ginger.girl.hut 4850
+skipper.crew.hut ginger.girl.hut 1123
+professor.hut maryann.girl.hut 6143
+maryann.girl.hut fileserver.copyroom.hut 4191
+skipper.crew.hut ginger.girl.hut 2931
+gilligan.crew.hut ginger.girl.hut 2470
+fileserver.copyroom.hut laser3.copyroom.hut 7439
+maryann.girl.hut fileserver.copyroom.hut 1816
+skipper.crew.hut skipper.crew.hut 6990
+skipper.crew.hut fileserver.copyroom.hut 85
+gilligan.crew.hut gilligan.crew.hut 4165
+skipper.crew.hut laser3.copyroom.hut 9200
+skipper.crew.hut skipper.crew.hut 1372
+professor.hut fileserver.copyroom.hut 4674
+laser3.copyroom.hut laser3.copyroom.hut 653
+maryann.girl.hut laser3.copyroom.hut 221
+skipper.crew.hut ginger.girl.hut 6424
+laser3.copyroom.hut fileserver.copyroom.hut 115
+gilligan.crew.hut maryann.girl.hut 8978
+laser3.copyroom.hut professor.hut 2121
+maryann.girl.hut fileserver.copyroom.hut 769
+fileserver.copyroom.hut professor.hut 6674
+ginger.girl.hut fileserver.copyroom.hut 7046
+laser3.copyroom.hut gilligan.crew.hut 62
+gilligan.crew.hut skipper.crew.hut 4497
+maryann.girl.hut gilligan.crew.hut 1692
+maryann.girl.hut ginger.girl.hut 9475
+professor.hut skipper.crew.hut 1191
+gilligan.crew.hut gilligan.crew.hut 4729
+fileserver.copyroom.hut laser3.copyroom.hut 8757
+skipper.crew.hut skipper.crew.hut 9794
+maryann.girl.hut ginger.girl.hut 7379
+laser3.copyroom.hut skipper.crew.hut 1377
+ginger.girl.hut laser3.copyroom.hut 8143
+fileserver.copyroom.hut gilligan.crew.hut 5528
+maryann.girl.hut skipper.crew.hut 8306
+skipper.crew.hut ginger.girl.hut 9021
+fileserver.copyroom.hut maryann.girl.hut 8204
+ginger.girl.hut maryann.girl.hut 6788
+fileserver.copyroom.hut fileserver.copyroom.hut 7193
+ginger.girl.hut laser3.copyroom.hut 5343
+ginger.girl.hut fileserver.copyroom.hut 1299
+skipper.crew.hut professor.hut 2290
+skipper.crew.hut professor.hut 6716
+gilligan.crew.hut maryann.girl.hut 9903
+fileserver.copyroom.hut gilligan.crew.hut 3025
+skipper.crew.hut laser3.copyroom.hut 6790
+ginger.girl.hut laser3.copyroom.hut 2672
+maryann.girl.hut gilligan.crew.hut 2230
+skipper.crew.hut ginger.girl.hut 9112
+maryann.girl.hut gilligan.crew.hut 9760
+fileserver.copyroom.hut ginger.girl.hut 3942
+gilligan.crew.hut professor.hut 1217
+fileserver.copyroom.hut gilligan.crew.hut 6759
+fileserver.copyroom.hut gilligan.crew.hut 5267
+maryann.girl.hut professor.hut 4151
+maryann.girl.hut gilligan.crew.hut 9968
+maryann.girl.hut skipper.crew.hut 2788
+skipper.crew.hut laser3.copyroom.hut 7401
+skipper.crew.hut professor.hut 8866
+maryann.girl.hut skipper.crew.hut 1056
+gilligan.crew.hut maryann.girl.hut 8340
+laser3.copyroom.hut laser3.copyroom.hut 8627
+professor.hut maryann.girl.hut 1965
+skipper.crew.hut laser3.copyroom.hut 6372
+laser3.copyroom.hut ginger.girl.hut 2524
+ginger.girl.hut professor.hut 1112
+fileserver.copyroom.hut professor.hut 1277
+fileserver.copyroom.hut professor.hut 6233
+laser3.copyroom.hut maryann.girl.hut 6136
+gilligan.crew.hut fileserver.copyroom.hut 3596
+professor.hut laser3.copyroom.hut 1178
+professor.hut laser3.copyroom.hut 2480
+maryann.girl.hut professor.hut 2163
+ginger.girl.hut ginger.girl.hut 817
+fileserver.copyroom.hut fileserver.copyroom.hut 3558
+ginger.girl.hut ginger.girl.hut 6167
+ginger.girl.hut ginger.girl.hut 5082
+skipper.crew.hut gilligan.crew.hut 4870
+skipper.crew.hut maryann.girl.hut 7604
+fileserver.copyroom.hut fileserver.copyroom.hut 8839
+professor.hut ginger.girl.hut 3975
+laser3.copyroom.hut professor.hut 1297
+maryann.girl.hut skipper.crew.hut 7875
+skipper.crew.hut skipper.crew.hut 7093
+fileserver.copyroom.hut ginger.girl.hut 358
+gilligan.crew.hut skipper.crew.hut 9038
+professor.hut laser3.copyroom.hut 2952
+professor.hut skipper.crew.hut 8143
+fileserver.copyroom.hut ginger.girl.hut 5389
+laser3.copyroom.hut ginger.girl.hut 6736
+professor.hut professor.hut 8042
+laser3.copyroom.hut laser3.copyroom.hut 2746
+gilligan.crew.hut laser3.copyroom.hut 203
+skipper.crew.hut fileserver.copyroom.hut 6059
+fileserver.copyroom.hut fileserver.copyroom.hut 2675
+professor.hut maryann.girl.hut 4613
+maryann.girl.hut professor.hut 9767
+fileserver.copyroom.hut ginger.girl.hut 693
+professor.hut fileserver.copyroom.hut 3264
+gilligan.crew.hut professor.hut 8866
+maryann.girl.hut fileserver.copyroom.hut 4385
+skipper.crew.hut maryann.girl.hut 1313
+gilligan.crew.hut skipper.crew.hut 2893
+skipper.crew.hut gilligan.crew.hut 8401
+fileserver.copyroom.hut skipper.crew.hut 3290
+maryann.girl.hut fileserver.copyroom.hut 7919
+skipper.crew.hut professor.hut 1149
+maryann.girl.hut ginger.girl.hut 5974
+professor.hut gilligan.crew.hut 3377
+professor.hut skipper.crew.hut 1395
+ginger.girl.hut ginger.girl.hut 2850
+skipper.crew.hut skipper.crew.hut 2118
+maryann.girl.hut professor.hut 9675
+fileserver.copyroom.hut professor.hut 2573
+laser3.copyroom.hut laser3.copyroom.hut 9802
+laser3.copyroom.hut laser3.copyroom.hut 7937
+ginger.girl.hut gilligan.crew.hut 6552
+gilligan.crew.hut maryann.girl.hut 5448
+professor.hut gilligan.crew.hut 6603
+professor.hut professor.hut 6401
+laser3.copyroom.hut professor.hut 3807
+skipper.crew.hut laser3.copyroom.hut 8959
+maryann.girl.hut laser3.copyroom.hut 3357
+ginger.girl.hut fileserver.copyroom.hut 2821
+laser3.copyroom.hut fileserver.copyroom.hut 5649
+fileserver.copyroom.hut skipper.crew.hut 844
+fileserver.copyroom.hut fileserver.copyroom.hut 2028
+skipper.crew.hut laser3.copyroom.hut 2106
+gilligan.crew.hut laser3.copyroom.hut 4379
+skipper.crew.hut fileserver.copyroom.hut 5914
+maryann.girl.hut skipper.crew.hut 2097
+professor.hut laser3.copyroom.hut 7481
+professor.hut skipper.crew.hut 2394
+maryann.girl.hut professor.hut 7531
+professor.hut gilligan.crew.hut 6892
+skipper.crew.hut maryann.girl.hut 8403
+fileserver.copyroom.hut maryann.girl.hut 4371
+professor.hut skipper.crew.hut 4441
+laser3.copyroom.hut ginger.girl.hut 7268
+ginger.girl.hut professor.hut 8191
+ginger.girl.hut maryann.girl.hut 6465
+fileserver.copyroom.hut skipper.crew.hut 9257
+laser3.copyroom.hut laser3.copyroom.hut 488
+professor.hut professor.hut 8595
+fileserver.copyroom.hut maryann.girl.hut 6599
+fileserver.copyroom.hut fileserver.copyroom.hut 30
+gilligan.crew.hut maryann.girl.hut 1809
+maryann.girl.hut ginger.girl.hut 6427
+ginger.girl.hut gilligan.crew.hut 1995
+professor.hut fileserver.copyroom.hut 2239
+skipper.crew.hut fileserver.copyroom.hut 5354
+gilligan.crew.hut laser3.copyroom.hut 9049
+skipper.crew.hut laser3.copyroom.hut 9669
+ginger.girl.hut fileserver.copyroom.hut 6482
+laser3.copyroom.hut laser3.copyroom.hut 1581
+maryann.girl.hut professor.hut 1664
+gilligan.crew.hut maryann.girl.hut 7503
+laser3.copyroom.hut fileserver.copyroom.hut 2648
+fileserver.copyroom.hut maryann.girl.hut 6755
+ginger.girl.hut skipper.crew.hut 1058
+laser3.copyroom.hut gilligan.crew.hut 7439
+laser3.copyroom.hut professor.hut 6764
+ginger.girl.hut maryann.girl.hut 7184
+laser3.copyroom.hut laser3.copyroom.hut 1730
+laser3.copyroom.hut fileserver.copyroom.hut 5512
+gilligan.crew.hut skipper.crew.hut 3502
+fileserver.copyroom.hut maryann.girl.hut 7957
+laser3.copyroom.hut maryann.girl.hut 883
+maryann.girl.hut professor.hut 2580
+maryann.girl.hut gilligan.crew.hut 8644
+laser3.copyroom.hut maryann.girl.hut 4139
+ginger.girl.hut laser3.copyroom.hut 5869
+laser3.copyroom.hut maryann.girl.hut 4183
+skipper.crew.hut skipper.crew.hut 9217
+professor.hut maryann.girl.hut 6902
+ginger.girl.hut maryann.girl.hut 9524
+professor.hut professor.hut 1975
+maryann.girl.hut gilligan.crew.hut 8496
+maryann.girl.hut skipper.crew.hut 9145
+professor.hut ginger.girl.hut 6241
+laser3.copyroom.hut fileserver.copyroom.hut 4034
+maryann.girl.hut laser3.copyroom.hut 2182
+ginger.girl.hut gilligan.crew.hut 4602
+professor.hut skipper.crew.hut 1083
+skipper.crew.hut maryann.girl.hut 8545
+professor.hut maryann.girl.hut 5709
+ginger.girl.hut gilligan.crew.hut 2149
+skipper.crew.hut fileserver.copyroom.hut 55
+gilligan.crew.hut maryann.girl.hut 8275
+ginger.girl.hut maryann.girl.hut 265
+ginger.girl.hut maryann.girl.hut 7491
+maryann.girl.hut fileserver.copyroom.hut 6780
+fileserver.copyroom.hut ginger.girl.hut 612
+ginger.girl.hut ginger.girl.hut 2685
+gilligan.crew.hut professor.hut 8283
+professor.hut fileserver.copyroom.hut 6993
+ginger.girl.hut maryann.girl.hut 5400
+ginger.girl.hut fileserver.copyroom.hut 7119
+maryann.girl.hut skipper.crew.hut 5125
+fileserver.copyroom.hut maryann.girl.hut 809
+maryann.girl.hut laser3.copyroom.hut 6162
+professor.hut fileserver.copyroom.hut 1312
+skipper.crew.hut maryann.girl.hut 149
+fileserver.copyroom.hut laser3.copyroom.hut 4917
+maryann.girl.hut skipper.crew.hut 7481
+skipper.crew.hut laser3.copyroom.hut 8599
+ginger.girl.hut ginger.girl.hut 861
+fileserver.copyroom.hut maryann.girl.hut 4362
+gilligan.crew.hut ginger.girl.hut 5225
+maryann.girl.hut ginger.girl.hut 6219
+laser3.copyroom.hut maryann.girl.hut 9575
+skipper.crew.hut laser3.copyroom.hut 1201
+skipper.crew.hut ginger.girl.hut 7152
+gilligan.crew.hut maryann.girl.hut 8425
+fileserver.copyroom.hut maryann.girl.hut 6683
+professor.hut fileserver.copyroom.hut 5116
+maryann.girl.hut ginger.girl.hut 9257
+laser3.copyroom.hut fileserver.copyroom.hut 7929
+gilligan.crew.hut maryann.girl.hut 8818
+skipper.crew.hut laser3.copyroom.hut 7223
+ginger.girl.hut fileserver.copyroom.hut 407
+gilligan.crew.hut maryann.girl.hut 4550
+gilligan.crew.hut ginger.girl.hut 3984
+professor.hut ginger.girl.hut 1491
+ginger.girl.hut fileserver.copyroom.hut 1610
+professor.hut professor.hut 5281
+ginger.girl.hut maryann.girl.hut 4176
+maryann.girl.hut gilligan.crew.hut 9785
+gilligan.crew.hut skipper.crew.hut 1254
+professor.hut gilligan.crew.hut 4382
+professor.hut gilligan.crew.hut 9998
+professor.hut professor.hut 3849
+professor.hut gilligan.crew.hut 8225
+ginger.girl.hut maryann.girl.hut 6198
+gilligan.crew.hut gilligan.crew.hut 204
+maryann.girl.hut maryann.girl.hut 5304
+ginger.girl.hut skipper.crew.hut 7818
+ginger.girl.hut maryann.girl.hut 2221
+professor.hut ginger.girl.hut 4595
+fileserver.copyroom.hut fileserver.copyroom.hut 8662
+laser3.copyroom.hut laser3.copyroom.hut 2277
+maryann.girl.hut professor.hut 9004
+maryann.girl.hut professor.hut 109
+maryann.girl.hut maryann.girl.hut 710
+laser3.copyroom.hut laser3.copyroom.hut 7726
+professor.hut maryann.girl.hut 5821
+gilligan.crew.hut gilligan.crew.hut 4426
+gilligan.crew.hut skipper.crew.hut 6459
+laser3.copyroom.hut skipper.crew.hut 897
+fileserver.copyroom.hut skipper.crew.hut 3078
+fileserver.copyroom.hut professor.hut 7467
+ginger.girl.hut laser3.copyroom.hut 8954
+gilligan.crew.hut maryann.girl.hut 3572
+professor.hut professor.hut 1086
+ginger.girl.hut gilligan.crew.hut 800
+laser3.copyroom.hut professor.hut 44
+ginger.girl.hut fileserver.copyroom.hut 6092
+laser3.copyroom.hut maryann.girl.hut 7630
+maryann.girl.hut ginger.girl.hut 6206
+laser3.copyroom.hut professor.hut 6967
+skipper.crew.hut fileserver.copyroom.hut 6855
+laser3.copyroom.hut fileserver.copyroom.hut 4339
+maryann.girl.hut ginger.girl.hut 4290
+gilligan.crew.hut ginger.girl.hut 6164
+ginger.girl.hut laser3.copyroom.hut 5723
+maryann.girl.hut fileserver.copyroom.hut 834
+laser3.copyroom.hut maryann.girl.hut 9715
+professor.hut maryann.girl.hut 9806
+maryann.girl.hut skipper.crew.hut 1133
+fileserver.copyroom.hut professor.hut 547
+laser3.copyroom.hut ginger.girl.hut 2887
+fileserver.copyroom.hut professor.hut 1378
+maryann.girl.hut professor.hut 3812
+gilligan.crew.hut skipper.crew.hut 8443
+maryann.girl.hut fileserver.copyroom.hut 6113
+fileserver.copyroom.hut ginger.girl.hut 6476
+gilligan.crew.hut gilligan.crew.hut 2109
+ginger.girl.hut professor.hut 3231
+professor.hut gilligan.crew.hut 1464
+professor.hut ginger.girl.hut 1383
+maryann.girl.hut skipper.crew.hut 2529
+maryann.girl.hut ginger.girl.hut 1338
+professor.hut laser3.copyroom.hut 5022
+professor.hut gilligan.crew.hut 726
+maryann.girl.hut skipper.crew.hut 4062
+skipper.crew.hut fileserver.copyroom.hut 7577
+ginger.girl.hut ginger.girl.hut 8540
+maryann.girl.hut maryann.girl.hut 2562
+maryann.girl.hut skipper.crew.hut 1015
+fileserver.copyroom.hut laser3.copyroom.hut 5192
+maryann.girl.hut maryann.girl.hut 1715
+professor.hut ginger.girl.hut 3738
+gilligan.crew.hut professor.hut 8430
+laser3.copyroom.hut fileserver.copyroom.hut 2498
+fileserver.copyroom.hut fileserver.copyroom.hut 1645
+maryann.girl.hut ginger.girl.hut 4877
+professor.hut skipper.crew.hut 8635
+laser3.copyroom.hut fileserver.copyroom.hut 2682
+maryann.girl.hut gilligan.crew.hut 7215
+fileserver.copyroom.hut skipper.crew.hut 5292
+laser3.copyroom.hut gilligan.crew.hut 1385
+gilligan.crew.hut laser3.copyroom.hut 62
+gilligan.crew.hut skipper.crew.hut 5169
+skipper.crew.hut gilligan.crew.hut 6583
+ginger.girl.hut gilligan.crew.hut 2465
+laser3.copyroom.hut laser3.copyroom.hut 9260
+laser3.copyroom.hut gilligan.crew.hut 7808
+professor.hut professor.hut 5525
+gilligan.crew.hut ginger.girl.hut 3028
+maryann.girl.hut skipper.crew.hut 1801
+fileserver.copyroom.hut professor.hut 4298
+professor.hut maryann.girl.hut 3530
+laser3.copyroom.hut professor.hut 595
+skipper.crew.hut skipper.crew.hut 7595
+laser3.copyroom.hut ginger.girl.hut 4516
+maryann.girl.hut skipper.crew.hut 897
+gilligan.crew.hut skipper.crew.hut 1234
+maryann.girl.hut skipper.crew.hut 959
+professor.hut ginger.girl.hut 5572
+fileserver.copyroom.hut laser3.copyroom.hut 8994
+skipper.crew.hut professor.hut 4429
+fileserver.copyroom.hut fileserver.copyroom.hut 3324
+ginger.girl.hut ginger.girl.hut 2352
+skipper.crew.hut laser3.copyroom.hut 5418
+gilligan.crew.hut maryann.girl.hut 8342
+fileserver.copyroom.hut maryann.girl.hut 7725
+maryann.girl.hut professor.hut 8708
+gilligan.crew.hut laser3.copyroom.hut 4187
+ginger.girl.hut skipper.crew.hut 4341
+professor.hut fileserver.copyroom.hut 5647
+professor.hut laser3.copyroom.hut 616
+gilligan.crew.hut fileserver.copyroom.hut 1549
+laser3.copyroom.hut maryann.girl.hut 8663
+skipper.crew.hut ginger.girl.hut 884
+gilligan.crew.hut laser3.copyroom.hut 5629
+professor.hut gilligan.crew.hut 4606
+ginger.girl.hut skipper.crew.hut 3966
+gilligan.crew.hut laser3.copyroom.hut 740
+professor.hut laser3.copyroom.hut 9149
+gilligan.crew.hut laser3.copyroom.hut 4503
+skipper.crew.hut fileserver.copyroom.hut 9311
+ginger.girl.hut gilligan.crew.hut 4223
+fileserver.copyroom.hut gilligan.crew.hut 1126
+skipper.crew.hut skipper.crew.hut 3495
+gilligan.crew.hut ginger.girl.hut 9007
+fileserver.copyroom.hut skipper.crew.hut 3749
+skipper.crew.hut skipper.crew.hut 1287
+laser3.copyroom.hut gilligan.crew.hut 8913
+professor.hut ginger.girl.hut 6032
+gilligan.crew.hut ginger.girl.hut 9254
+gilligan.crew.hut professor.hut 5258
+laser3.copyroom.hut professor.hut 575
+ginger.girl.hut ginger.girl.hut 6718
+ginger.girl.hut maryann.girl.hut 6396
+fileserver.copyroom.hut ginger.girl.hut 2272
+maryann.girl.hut gilligan.crew.hut 8019
+gilligan.crew.hut maryann.girl.hut 9596
+gilligan.crew.hut professor.hut 7610
+maryann.girl.hut skipper.crew.hut 452
+fileserver.copyroom.hut fileserver.copyroom.hut 2161
+gilligan.crew.hut laser3.copyroom.hut 2190
+fileserver.copyroom.hut gilligan.crew.hut 1928
+maryann.girl.hut maryann.girl.hut 2090
+maryann.girl.hut ginger.girl.hut 2643
+maryann.girl.hut fileserver.copyroom.hut 6865
+professor.hut maryann.girl.hut 6593
+skipper.crew.hut gilligan.crew.hut 6319
+maryann.girl.hut ginger.girl.hut 7574
+professor.hut professor.hut 7225
+ginger.girl.hut ginger.girl.hut 7280
+professor.hut gilligan.crew.hut 4087
+gilligan.crew.hut maryann.girl.hut 271
+professor.hut professor.hut 3922
+professor.hut gilligan.crew.hut 9965
+ginger.girl.hut laser3.copyroom.hut 2424
+maryann.girl.hut gilligan.crew.hut 6573
+ginger.girl.hut skipper.crew.hut 6944
+professor.hut gilligan.crew.hut 3871
+gilligan.crew.hut maryann.girl.hut 5298
+laser3.copyroom.hut skipper.crew.hut 3574
+laser3.copyroom.hut skipper.crew.hut 6574
+professor.hut ginger.girl.hut 3130
+maryann.girl.hut professor.hut 3700
+professor.hut maryann.girl.hut 3210
+ginger.girl.hut maryann.girl.hut 8282
+fileserver.copyroom.hut ginger.girl.hut 3504
+laser3.copyroom.hut ginger.girl.hut 1208
+laser3.copyroom.hut professor.hut 2609
+gilligan.crew.hut professor.hut 6162
+laser3.copyroom.hut fileserver.copyroom.hut 7317
+ginger.girl.hut professor.hut 4770
+maryann.girl.hut ginger.girl.hut 3190
+skipper.crew.hut skipper.crew.hut 3266
+fileserver.copyroom.hut skipper.crew.hut 4236
+professor.hut maryann.girl.hut 6587
+fileserver.copyroom.hut laser3.copyroom.hut 5821
+ginger.girl.hut gilligan.crew.hut 5950
+professor.hut gilligan.crew.hut 1290
+fileserver.copyroom.hut professor.hut 8278
+ginger.girl.hut skipper.crew.hut 4383
+professor.hut maryann.girl.hut 8370
+laser3.copyroom.hut gilligan.crew.hut 3023
+fileserver.copyroom.hut maryann.girl.hut 5210
+maryann.girl.hut professor.hut 1782
+skipper.crew.hut professor.hut 5331
+skipper.crew.hut skipper.crew.hut 1480
+maryann.girl.hut laser3.copyroom.hut 8287
+professor.hut maryann.girl.hut 3666
+maryann.girl.hut fileserver.copyroom.hut 9342
+laser3.copyroom.hut fileserver.copyroom.hut 7216
+fileserver.copyroom.hut skipper.crew.hut 4603
+laser3.copyroom.hut laser3.copyroom.hut 6330
+gilligan.crew.hut maryann.girl.hut 5818
+fileserver.copyroom.hut laser3.copyroom.hut 2208
+laser3.copyroom.hut gilligan.crew.hut 2985
+fileserver.copyroom.hut laser3.copyroom.hut 7764
+gilligan.crew.hut gilligan.crew.hut 8672
+fileserver.copyroom.hut fileserver.copyroom.hut 5791
+gilligan.crew.hut professor.hut 7442
+fileserver.copyroom.hut ginger.girl.hut 8462
+maryann.girl.hut laser3.copyroom.hut 4128
+skipper.crew.hut laser3.copyroom.hut 6902
+maryann.girl.hut professor.hut 1312
+ginger.girl.hut gilligan.crew.hut 1099
+ginger.girl.hut laser3.copyroom.hut 350
+skipper.crew.hut fileserver.copyroom.hut 3351
+skipper.crew.hut gilligan.crew.hut 8987
+maryann.girl.hut fileserver.copyroom.hut 2957
+maryann.girl.hut professor.hut 3758
+skipper.crew.hut gilligan.crew.hut 8883
+maryann.girl.hut skipper.crew.hut 5661
+gilligan.crew.hut ginger.girl.hut 63
+laser3.copyroom.hut skipper.crew.hut 3719
+skipper.crew.hut ginger.girl.hut 5605
+professor.hut gilligan.crew.hut 9777
+laser3.copyroom.hut professor.hut 8255
+laser3.copyroom.hut laser3.copyroom.hut 7187
+ginger.girl.hut laser3.copyroom.hut 6394
+gilligan.crew.hut professor.hut 7529
+skipper.crew.hut fileserver.copyroom.hut 360
+laser3.copyroom.hut gilligan.crew.hut 5069
+fileserver.copyroom.hut gilligan.crew.hut 4083
+ginger.girl.hut professor.hut 4933
+laser3.copyroom.hut professor.hut 4612
+ginger.girl.hut ginger.girl.hut 6288
+gilligan.crew.hut professor.hut 1078
+fileserver.copyroom.hut maryann.girl.hut 4946
+professor.hut ginger.girl.hut 2275
+laser3.copyroom.hut professor.hut 2161
+maryann.girl.hut ginger.girl.hut 365
+professor.hut skipper.crew.hut 5639
+fileserver.copyroom.hut professor.hut 9994
+laser3.copyroom.hut maryann.girl.hut 8663
+laser3.copyroom.hut laser3.copyroom.hut 2114
+laser3.copyroom.hut gilligan.crew.hut 9597
+fileserver.copyroom.hut laser3.copyroom.hut 7928
+professor.hut gilligan.crew.hut 3076
+skipper.crew.hut gilligan.crew.hut 6038
+gilligan.crew.hut fileserver.copyroom.hut 4882
+maryann.girl.hut fileserver.copyroom.hut 9527
+ginger.girl.hut fileserver.copyroom.hut 2404
+professor.hut professor.hut 9600
+skipper.crew.hut gilligan.crew.hut 7873
+fileserver.copyroom.hut maryann.girl.hut 4579
+laser3.copyroom.hut professor.hut 6710
+skipper.crew.hut laser3.copyroom.hut 4002
+gilligan.crew.hut laser3.copyroom.hut 8123
+gilligan.crew.hut skipper.crew.hut 8628
+professor.hut professor.hut 1328
+gilligan.crew.hut ginger.girl.hut 665
+professor.hut maryann.girl.hut 3539
+professor.hut maryann.girl.hut 9154
+laser3.copyroom.hut professor.hut 7812
+maryann.girl.hut ginger.girl.hut 9535
+maryann.girl.hut laser3.copyroom.hut 424
+fileserver.copyroom.hut ginger.girl.hut 210
+ginger.girl.hut professor.hut 6881
+professor.hut gilligan.crew.hut 56
+gilligan.crew.hut gilligan.crew.hut 424
+professor.hut ginger.girl.hut 1073
+maryann.girl.hut professor.hut 4768
+professor.hut skipper.crew.hut 5819
+ginger.girl.hut gilligan.crew.hut 4579
+professor.hut laser3.copyroom.hut 2496
+laser3.copyroom.hut skipper.crew.hut 1806
+gilligan.crew.hut fileserver.copyroom.hut 3674
+gilligan.crew.hut skipper.crew.hut 1367
+skipper.crew.hut maryann.girl.hut 3382
+laser3.copyroom.hut laser3.copyroom.hut 3279
+gilligan.crew.hut professor.hut 8311
+gilligan.crew.hut gilligan.crew.hut 9996
+gilligan.crew.hut gilligan.crew.hut 6129
+laser3.copyroom.hut laser3.copyroom.hut 4234
+laser3.copyroom.hut laser3.copyroom.hut 8727
+professor.hut fileserver.copyroom.hut 4714
+maryann.girl.hut fileserver.copyroom.hut 6025
+laser3.copyroom.hut maryann.girl.hut 3764
+ginger.girl.hut gilligan.crew.hut 5472
+fileserver.copyroom.hut laser3.copyroom.hut 9455
+gilligan.crew.hut skipper.crew.hut 7312
+laser3.copyroom.hut fileserver.copyroom.hut 9102
+gilligan.crew.hut gilligan.crew.hut 7728
+gilligan.crew.hut fileserver.copyroom.hut 1896
+professor.hut maryann.girl.hut 9871
+ginger.girl.hut laser3.copyroom.hut 4646
+skipper.crew.hut laser3.copyroom.hut 9956
+skipper.crew.hut skipper.crew.hut 474
+laser3.copyroom.hut maryann.girl.hut 7689
+maryann.girl.hut maryann.girl.hut 6733
+fileserver.copyroom.hut ginger.girl.hut 5655
+laser3.copyroom.hut laser3.copyroom.hut 9045
+professor.hut laser3.copyroom.hut 5814
+gilligan.crew.hut fileserver.copyroom.hut 7725
+maryann.girl.hut fileserver.copyroom.hut 4354
+laser3.copyroom.hut maryann.girl.hut 9768
+maryann.girl.hut laser3.copyroom.hut 1647
+fileserver.copyroom.hut fileserver.copyroom.hut 6076
+laser3.copyroom.hut ginger.girl.hut 23
+fileserver.copyroom.hut fileserver.copyroom.hut 2208
+skipper.crew.hut ginger.girl.hut 9932
+ginger.girl.hut ginger.girl.hut 5545
+laser3.copyroom.hut maryann.girl.hut 9048
+fileserver.copyroom.hut fileserver.copyroom.hut 3228
+maryann.girl.hut fileserver.copyroom.hut 7547
+ginger.girl.hut gilligan.crew.hut 2365
+maryann.girl.hut skipper.crew.hut 2573
+fileserver.copyroom.hut gilligan.crew.hut 9529
+ginger.girl.hut ginger.girl.hut 3249
+ginger.girl.hut professor.hut 4104
+skipper.crew.hut laser3.copyroom.hut 6606
+skipper.crew.hut gilligan.crew.hut 25
+gilligan.crew.hut professor.hut 1224
+fileserver.copyroom.hut gilligan.crew.hut 6007
+ginger.girl.hut gilligan.crew.hut 8604
+professor.hut gilligan.crew.hut 4738
+maryann.girl.hut skipper.crew.hut 3217
+laser3.copyroom.hut skipper.crew.hut 7307
+maryann.girl.hut gilligan.crew.hut 7478
+fileserver.copyroom.hut ginger.girl.hut 7734
+maryann.girl.hut gilligan.crew.hut 7838
+maryann.girl.hut professor.hut 1164
+professor.hut fileserver.copyroom.hut 5792
+professor.hut laser3.copyroom.hut 4492
+maryann.girl.hut gilligan.crew.hut 3436
+fileserver.copyroom.hut professor.hut 2387
+gilligan.crew.hut fileserver.copyroom.hut 5506
+fileserver.copyroom.hut professor.hut 5925
+laser3.copyroom.hut professor.hut 1825
+laser3.copyroom.hut gilligan.crew.hut 8897
+professor.hut ginger.girl.hut 8552
+ginger.girl.hut fileserver.copyroom.hut 7424
+fileserver.copyroom.hut professor.hut 8592
+fileserver.copyroom.hut laser3.copyroom.hut 7951
+maryann.girl.hut laser3.copyroom.hut 8965
+maryann.girl.hut skipper.crew.hut 8337
+skipper.crew.hut professor.hut 4341
+professor.hut laser3.copyroom.hut 778
+laser3.copyroom.hut gilligan.crew.hut 6662
+gilligan.crew.hut maryann.girl.hut 5369
+skipper.crew.hut professor.hut 2883
+professor.hut maryann.girl.hut 8510
+fileserver.copyroom.hut skipper.crew.hut 3479
+skipper.crew.hut skipper.crew.hut 8692
+gilligan.crew.hut maryann.girl.hut 3116
+professor.hut skipper.crew.hut 4660
+gilligan.crew.hut fileserver.copyroom.hut 7997
+fileserver.copyroom.hut fileserver.copyroom.hut 6899
+skipper.crew.hut fileserver.copyroom.hut 2514
+fileserver.copyroom.hut skipper.crew.hut 1153
+fileserver.copyroom.hut ginger.girl.hut 7244
+gilligan.crew.hut professor.hut 2230
+ginger.girl.hut laser3.copyroom.hut 1165
+maryann.girl.hut ginger.girl.hut 4693
+professor.hut professor.hut 4721
+ginger.girl.hut skipper.crew.hut 302
+ginger.girl.hut fileserver.copyroom.hut 6017
+maryann.girl.hut fileserver.copyroom.hut 1591
+gilligan.crew.hut ginger.girl.hut 6467
+maryann.girl.hut fileserver.copyroom.hut 4362
+laser3.copyroom.hut gilligan.crew.hut 8200
+laser3.copyroom.hut maryann.girl.hut 2850
+ginger.girl.hut ginger.girl.hut 310
+ginger.girl.hut laser3.copyroom.hut 7175
+laser3.copyroom.hut skipper.crew.hut 354
+skipper.crew.hut fileserver.copyroom.hut 8005
+maryann.girl.hut laser3.copyroom.hut 9928
+ginger.girl.hut ginger.girl.hut 9259
+laser3.copyroom.hut maryann.girl.hut 1989
+skipper.crew.hut skipper.crew.hut 8999
+fileserver.copyroom.hut skipper.crew.hut 1153
+professor.hut skipper.crew.hut 9157
+laser3.copyroom.hut gilligan.crew.hut 5789
+laser3.copyroom.hut laser3.copyroom.hut 2028
+skipper.crew.hut laser3.copyroom.hut 5899
+laser3.copyroom.hut maryann.girl.hut 4864
+maryann.girl.hut skipper.crew.hut 6188
+maryann.girl.hut laser3.copyroom.hut 1076
+gilligan.crew.hut skipper.crew.hut 1360
+skipper.crew.hut gilligan.crew.hut 8789
+professor.hut skipper.crew.hut 8589
+ginger.girl.hut ginger.girl.hut 6823
+skipper.crew.hut skipper.crew.hut 2528
+professor.hut laser3.copyroom.hut 6619
+fileserver.copyroom.hut maryann.girl.hut 6428
+gilligan.crew.hut fileserver.copyroom.hut 6114
+gilligan.crew.hut gilligan.crew.hut 2680
+skipper.crew.hut maryann.girl.hut 1159
+fileserver.copyroom.hut gilligan.crew.hut 7557
+maryann.girl.hut gilligan.crew.hut 2457
+professor.hut gilligan.crew.hut 4014
+skipper.crew.hut ginger.girl.hut 239
+maryann.girl.hut ginger.girl.hut 7618
+maryann.girl.hut laser3.copyroom.hut 6741
+fileserver.copyroom.hut maryann.girl.hut 3182
+professor.hut professor.hut 5864
+ginger.girl.hut skipper.crew.hut 8289
+skipper.crew.hut gilligan.crew.hut 8774
+laser3.copyroom.hut maryann.girl.hut 9630
+fileserver.copyroom.hut gilligan.crew.hut 4048
+laser3.copyroom.hut professor.hut 2561
+fileserver.copyroom.hut gilligan.crew.hut 6336
+gilligan.crew.hut laser3.copyroom.hut 8482
+gilligan.crew.hut ginger.girl.hut 8866
+professor.hut professor.hut 7918
+laser3.copyroom.hut laser3.copyroom.hut 5618
+ginger.girl.hut maryann.girl.hut 762
+maryann.girl.hut gilligan.crew.hut 3818
+professor.hut professor.hut 4994
+fileserver.copyroom.hut laser3.copyroom.hut 9275
+professor.hut professor.hut 7943
+laser3.copyroom.hut laser3.copyroom.hut 1046
+ginger.girl.hut maryann.girl.hut 2838
+ginger.girl.hut maryann.girl.hut 9599
+skipper.crew.hut laser3.copyroom.hut 2714
+maryann.girl.hut skipper.crew.hut 7580
+maryann.girl.hut laser3.copyroom.hut 9202
+ginger.girl.hut ginger.girl.hut 655
+ginger.girl.hut professor.hut 5287
+fileserver.copyroom.hut gilligan.crew.hut 4695
+maryann.girl.hut professor.hut 2669
+skipper.crew.hut laser3.copyroom.hut 5635
+laser3.copyroom.hut professor.hut 3040
+gilligan.crew.hut ginger.girl.hut 4707
+laser3.copyroom.hut ginger.girl.hut 3278
+professor.hut maryann.girl.hut 2488
+laser3.copyroom.hut skipper.crew.hut 8553
+maryann.girl.hut professor.hut 790
+gilligan.crew.hut ginger.girl.hut 5312
+laser3.copyroom.hut skipper.crew.hut 215
+professor.hut maryann.girl.hut 6613
+fileserver.copyroom.hut skipper.crew.hut 2465
+maryann.girl.hut maryann.girl.hut 3934
+ginger.girl.hut skipper.crew.hut 694
+laser3.copyroom.hut ginger.girl.hut 8235
+ginger.girl.hut ginger.girl.hut 8697
+maryann.girl.hut gilligan.crew.hut 587
+skipper.crew.hut ginger.girl.hut 1748
+skipper.crew.hut fileserver.copyroom.hut 9503
+skipper.crew.hut ginger.girl.hut 4411
+ginger.girl.hut laser3.copyroom.hut 7631
+maryann.girl.hut fileserver.copyroom.hut 9206
+laser3.copyroom.hut ginger.girl.hut 4812
+skipper.crew.hut gilligan.crew.hut 5935
+fileserver.copyroom.hut professor.hut 3442
+professor.hut maryann.girl.hut 1449
+fileserver.copyroom.hut skipper.crew.hut 9109
+maryann.girl.hut maryann.girl.hut 8332
+gilligan.crew.hut maryann.girl.hut 5495
+professor.hut maryann.girl.hut 4199
+professor.hut professor.hut 7638
+maryann.girl.hut laser3.copyroom.hut 8806
+laser3.copyroom.hut skipper.crew.hut 2187
+ginger.girl.hut maryann.girl.hut 6001
+maryann.girl.hut maryann.girl.hut 6681
+professor.hut laser3.copyroom.hut 6931
+ginger.girl.hut professor.hut 8193
+gilligan.crew.hut gilligan.crew.hut 2834
+laser3.copyroom.hut laser3.copyroom.hut 6436
+gilligan.crew.hut skipper.crew.hut 5053
+gilligan.crew.hut laser3.copyroom.hut 2607
+fileserver.copyroom.hut maryann.girl.hut 697
+professor.hut maryann.girl.hut 639
+fileserver.copyroom.hut ginger.girl.hut 2182
+skipper.crew.hut maryann.girl.hut 1546
+skipper.crew.hut fileserver.copyroom.hut 6960
+ginger.girl.hut laser3.copyroom.hut 4248
+maryann.girl.hut ginger.girl.hut 7271
+fileserver.copyroom.hut skipper.crew.hut 5166
+gilligan.crew.hut laser3.copyroom.hut 8936
+skipper.crew.hut laser3.copyroom.hut 4658
+skipper.crew.hut ginger.girl.hut 4170
+maryann.girl.hut maryann.girl.hut 4229
+maryann.girl.hut professor.hut 2991
+fileserver.copyroom.hut laser3.copyroom.hut 6849
+gilligan.crew.hut laser3.copyroom.hut 512
+fileserver.copyroom.hut ginger.girl.hut 9756
+maryann.girl.hut laser3.copyroom.hut 775
+fileserver.copyroom.hut skipper.crew.hut 3628
+skipper.crew.hut fileserver.copyroom.hut 7293
+professor.hut professor.hut 5388
+fileserver.copyroom.hut ginger.girl.hut 4578
+gilligan.crew.hut gilligan.crew.hut 8153
+professor.hut fileserver.copyroom.hut 9469
+skipper.crew.hut professor.hut 683
+ginger.girl.hut skipper.crew.hut 9791
+ginger.girl.hut ginger.girl.hut 3050
+maryann.girl.hut gilligan.crew.hut 994
+ginger.girl.hut ginger.girl.hut 2438
+ginger.girl.hut ginger.girl.hut 4874
+fileserver.copyroom.hut ginger.girl.hut 4092
+gilligan.crew.hut ginger.girl.hut 9723
+gilligan.crew.hut maryann.girl.hut 3725
+professor.hut ginger.girl.hut 3722
+skipper.crew.hut skipper.crew.hut 3420
+professor.hut ginger.girl.hut 8635
+laser3.copyroom.hut maryann.girl.hut 7686
+fileserver.copyroom.hut gilligan.crew.hut 9956
+fileserver.copyroom.hut maryann.girl.hut 8926
+professor.hut maryann.girl.hut 3831
+skipper.crew.hut gilligan.crew.hut 7180
+maryann.girl.hut professor.hut 240
+professor.hut fileserver.copyroom.hut 516
+laser3.copyroom.hut professor.hut 6763
+ginger.girl.hut laser3.copyroom.hut 6716
+ginger.girl.hut laser3.copyroom.hut 4491
+professor.hut fileserver.copyroom.hut 7729
+gilligan.crew.hut laser3.copyroom.hut 6542
+ginger.girl.hut ginger.girl.hut 9855
+professor.hut fileserver.copyroom.hut 4856
+professor.hut skipper.crew.hut 5316
+maryann.girl.hut maryann.girl.hut 7863
+skipper.crew.hut gilligan.crew.hut 1730
+laser3.copyroom.hut ginger.girl.hut 4936
+maryann.girl.hut fileserver.copyroom.hut 7130
+gilligan.crew.hut fileserver.copyroom.hut 4071
+ginger.girl.hut fileserver.copyroom.hut 905
+ginger.girl.hut professor.hut 3191
+professor.hut professor.hut 3567
+ginger.girl.hut ginger.girl.hut 2691
+ginger.girl.hut fileserver.copyroom.hut 9200
+skipper.crew.hut fileserver.copyroom.hut 4410
+laser3.copyroom.hut fileserver.copyroom.hut 3111
+maryann.girl.hut laser3.copyroom.hut 259
+gilligan.crew.hut gilligan.crew.hut 9339
+gilligan.crew.hut gilligan.crew.hut 4833
+professor.hut laser3.copyroom.hut 4695
+gilligan.crew.hut fileserver.copyroom.hut 3497
+gilligan.crew.hut ginger.girl.hut 3331
+skipper.crew.hut ginger.girl.hut 6960
+maryann.girl.hut laser3.copyroom.hut 9802
+professor.hut gilligan.crew.hut 7445
+gilligan.crew.hut fileserver.copyroom.hut 4828
+maryann.girl.hut professor.hut 680
+laser3.copyroom.hut ginger.girl.hut 2882
+ginger.girl.hut laser3.copyroom.hut 6855
+maryann.girl.hut ginger.girl.hut 4880
+gilligan.crew.hut professor.hut 7190
+laser3.copyroom.hut ginger.girl.hut 6865
+laser3.copyroom.hut laser3.copyroom.hut 2176
+fileserver.copyroom.hut ginger.girl.hut 6253
+gilligan.crew.hut professor.hut 9985
+maryann.girl.hut fileserver.copyroom.hut 9727
+maryann.girl.hut maryann.girl.hut 4348
+fileserver.copyroom.hut fileserver.copyroom.hut 8859
+maryann.girl.hut ginger.girl.hut 4165
+fileserver.copyroom.hut maryann.girl.hut 5043
+fileserver.copyroom.hut maryann.girl.hut 5242
+gilligan.crew.hut laser3.copyroom.hut 125
+gilligan.crew.hut maryann.girl.hut 7359
+maryann.girl.hut gilligan.crew.hut 7902
+fileserver.copyroom.hut ginger.girl.hut 1196
+laser3.copyroom.hut maryann.girl.hut 4598
+laser3.copyroom.hut skipper.crew.hut 6115
+fileserver.copyroom.hut ginger.girl.hut 9980
+gilligan.crew.hut professor.hut 2191
+fileserver.copyroom.hut laser3.copyroom.hut 7663
+laser3.copyroom.hut gilligan.crew.hut 3729
+fileserver.copyroom.hut professor.hut 8656
+ginger.girl.hut ginger.girl.hut 6797
+gilligan.crew.hut professor.hut 7515
+fileserver.copyroom.hut ginger.girl.hut 4805
+laser3.copyroom.hut professor.hut 3310
+ginger.girl.hut fileserver.copyroom.hut 4220
+professor.hut maryann.girl.hut 6910
+ginger.girl.hut skipper.crew.hut 8625
+professor.hut professor.hut 2933
+gilligan.crew.hut ginger.girl.hut 7347
+gilligan.crew.hut professor.hut 3721
+maryann.girl.hut maryann.girl.hut 5404
+maryann.girl.hut fileserver.copyroom.hut 7346
+fileserver.copyroom.hut skipper.crew.hut 387
+professor.hut professor.hut 4777
+skipper.crew.hut laser3.copyroom.hut 4295
+laser3.copyroom.hut fileserver.copyroom.hut 6154
+maryann.girl.hut skipper.crew.hut 9008
+professor.hut ginger.girl.hut 6370
+skipper.crew.hut gilligan.crew.hut 9407
+gilligan.crew.hut ginger.girl.hut 5552
+skipper.crew.hut maryann.girl.hut 200
+gilligan.crew.hut ginger.girl.hut 3398
+laser3.copyroom.hut gilligan.crew.hut 4904
+fileserver.copyroom.hut professor.hut 500
+professor.hut ginger.girl.hut 620
+maryann.girl.hut gilligan.crew.hut 6311
+maryann.girl.hut fileserver.copyroom.hut 4529
+laser3.copyroom.hut fileserver.copyroom.hut 5128
+maryann.girl.hut professor.hut 1059
+fileserver.copyroom.hut gilligan.crew.hut 5538
+professor.hut ginger.girl.hut 6566
+gilligan.crew.hut gilligan.crew.hut 5732
+fileserver.copyroom.hut maryann.girl.hut 7654
+skipper.crew.hut maryann.girl.hut 9237
+fileserver.copyroom.hut fileserver.copyroom.hut 6543
+maryann.girl.hut gilligan.crew.hut 787
+ginger.girl.hut gilligan.crew.hut 7525
+ginger.girl.hut gilligan.crew.hut 5173
+laser3.copyroom.hut ginger.girl.hut 6108
+ginger.girl.hut fileserver.copyroom.hut 188
+laser3.copyroom.hut ginger.girl.hut 3997
+skipper.crew.hut laser3.copyroom.hut 7086
+fileserver.copyroom.hut gilligan.crew.hut 3803
+ginger.girl.hut maryann.girl.hut 9833
+professor.hut gilligan.crew.hut 9161
+ginger.girl.hut fileserver.copyroom.hut 1611
+laser3.copyroom.hut gilligan.crew.hut 8293
+laser3.copyroom.hut ginger.girl.hut 7710
+fileserver.copyroom.hut laser3.copyroom.hut 5248
+laser3.copyroom.hut laser3.copyroom.hut 2921
+fileserver.copyroom.hut maryann.girl.hut 5633
+maryann.girl.hut laser3.copyroom.hut 8248
+maryann.girl.hut laser3.copyroom.hut 600
+fileserver.copyroom.hut professor.hut 8745
+skipper.crew.hut maryann.girl.hut 2803
+professor.hut fileserver.copyroom.hut 3730
+skipper.crew.hut gilligan.crew.hut 6449
+professor.hut gilligan.crew.hut 5979
+maryann.girl.hut professor.hut 869
+maryann.girl.hut laser3.copyroom.hut 5437
+maryann.girl.hut fileserver.copyroom.hut 1611
+maryann.girl.hut gilligan.crew.hut 5181
+gilligan.crew.hut professor.hut 3459
+gilligan.crew.hut skipper.crew.hut 4721
+ginger.girl.hut professor.hut 8664
+laser3.copyroom.hut skipper.crew.hut 6913
+gilligan.crew.hut ginger.girl.hut 2675
+skipper.crew.hut ginger.girl.hut 1710
+skipper.crew.hut professor.hut 6219
+skipper.crew.hut ginger.girl.hut 6072
+ginger.girl.hut fileserver.copyroom.hut 3095
+professor.hut gilligan.crew.hut 9565
+professor.hut laser3.copyroom.hut 2427
+ginger.girl.hut gilligan.crew.hut 2599
+skipper.crew.hut ginger.girl.hut 260
+maryann.girl.hut fileserver.copyroom.hut 7444
+laser3.copyroom.hut ginger.girl.hut 8447
+ginger.girl.hut fileserver.copyroom.hut 3500
+gilligan.crew.hut maryann.girl.hut 8078
+fileserver.copyroom.hut gilligan.crew.hut 9263
+laser3.copyroom.hut laser3.copyroom.hut 1934
+professor.hut ginger.girl.hut 5074
+professor.hut laser3.copyroom.hut 7285
+gilligan.crew.hut gilligan.crew.hut 6123
+ginger.girl.hut fileserver.copyroom.hut 7894
+professor.hut skipper.crew.hut 9237
+skipper.crew.hut maryann.girl.hut 6769
+professor.hut maryann.girl.hut 2619
+ginger.girl.hut fileserver.copyroom.hut 1862
+ginger.girl.hut ginger.girl.hut 404
+skipper.crew.hut fileserver.copyroom.hut 659
+laser3.copyroom.hut maryann.girl.hut 5240
+fileserver.copyroom.hut maryann.girl.hut 1255
+laser3.copyroom.hut fileserver.copyroom.hut 1600
+gilligan.crew.hut fileserver.copyroom.hut 6175
+gilligan.crew.hut ginger.girl.hut 272
+skipper.crew.hut ginger.girl.hut 8905
+gilligan.crew.hut skipper.crew.hut 363
+professor.hut laser3.copyroom.hut 1965
+skipper.crew.hut professor.hut 9151
+professor.hut fileserver.copyroom.hut 5892
+fileserver.copyroom.hut skipper.crew.hut 6940
+maryann.girl.hut maryann.girl.hut 699
+professor.hut fileserver.copyroom.hut 7549
+fileserver.copyroom.hut gilligan.crew.hut 2504
+laser3.copyroom.hut skipper.crew.hut 2878
+professor.hut ginger.girl.hut 7017
+maryann.girl.hut fileserver.copyroom.hut 6612
+fileserver.copyroom.hut fileserver.copyroom.hut 8867
+skipper.crew.hut gilligan.crew.hut 6121
+laser3.copyroom.hut maryann.girl.hut 6259
+gilligan.crew.hut fileserver.copyroom.hut 8219
+maryann.girl.hut skipper.crew.hut 3844
+professor.hut maryann.girl.hut 6177
+ginger.girl.hut ginger.girl.hut 6990
+gilligan.crew.hut laser3.copyroom.hut 2762
+fileserver.copyroom.hut professor.hut 9198
+skipper.crew.hut professor.hut 7007
+professor.hut professor.hut 2058
+fileserver.copyroom.hut ginger.girl.hut 6193
+fileserver.copyroom.hut skipper.crew.hut 8937
+fileserver.copyroom.hut maryann.girl.hut 6535
+skipper.crew.hut laser3.copyroom.hut 7183
+laser3.copyroom.hut ginger.girl.hut 794
+skipper.crew.hut laser3.copyroom.hut 2770
+gilligan.crew.hut gilligan.crew.hut 5667
+ginger.girl.hut skipper.crew.hut 1023
+skipper.crew.hut fileserver.copyroom.hut 721
+maryann.girl.hut gilligan.crew.hut 579
+gilligan.crew.hut ginger.girl.hut 337
+ginger.girl.hut laser3.copyroom.hut 6807
+laser3.copyroom.hut gilligan.crew.hut 2457
+professor.hut skipper.crew.hut 8107
+laser3.copyroom.hut ginger.girl.hut 1576
+skipper.crew.hut ginger.girl.hut 8338
+professor.hut fileserver.copyroom.hut 2460
+gilligan.crew.hut skipper.crew.hut 5114
+maryann.girl.hut skipper.crew.hut 8038
+skipper.crew.hut fileserver.copyroom.hut 5173
+gilligan.crew.hut laser3.copyroom.hut 8919
+gilligan.crew.hut ginger.girl.hut 7183
+laser3.copyroom.hut laser3.copyroom.hut 5620
+skipper.crew.hut fileserver.copyroom.hut 5572
+gilligan.crew.hut ginger.girl.hut 3157
+gilligan.crew.hut fileserver.copyroom.hut 3253
+laser3.copyroom.hut professor.hut 292
+skipper.crew.hut professor.hut 6351
+maryann.girl.hut professor.hut 4272
+laser3.copyroom.hut skipper.crew.hut 8663
+skipper.crew.hut professor.hut 4161
+gilligan.crew.hut ginger.girl.hut 5725
+maryann.girl.hut ginger.girl.hut 421
+laser3.copyroom.hut laser3.copyroom.hut 9734
+professor.hut fileserver.copyroom.hut 5245
+fileserver.copyroom.hut laser3.copyroom.hut 5757
+gilligan.crew.hut professor.hut 3226
+gilligan.crew.hut professor.hut 1281
+professor.hut professor.hut 7862
+professor.hut professor.hut 1942
+fileserver.copyroom.hut skipper.crew.hut 1280
+fileserver.copyroom.hut gilligan.crew.hut 4291
+laser3.copyroom.hut fileserver.copyroom.hut 585
+gilligan.crew.hut maryann.girl.hut 8176
+skipper.crew.hut fileserver.copyroom.hut 2168
+maryann.girl.hut laser3.copyroom.hut 2652
+skipper.crew.hut maryann.girl.hut 246
+gilligan.crew.hut professor.hut 9834
+fileserver.copyroom.hut skipper.crew.hut 3820
+ginger.girl.hut gilligan.crew.hut 6313
+skipper.crew.hut gilligan.crew.hut 4490
+fileserver.copyroom.hut fileserver.copyroom.hut 7487
+skipper.crew.hut maryann.girl.hut 8907
+ginger.girl.hut maryann.girl.hut 3515
+laser3.copyroom.hut skipper.crew.hut 8303
+maryann.girl.hut maryann.girl.hut 182
+skipper.crew.hut professor.hut 5320
+gilligan.crew.hut professor.hut 7650
+fileserver.copyroom.hut fileserver.copyroom.hut 6146
+professor.hut laser3.copyroom.hut 3798
+skipper.crew.hut skipper.crew.hut 923
+gilligan.crew.hut laser3.copyroom.hut 9360
+laser3.copyroom.hut fileserver.copyroom.hut 5618
+gilligan.crew.hut maryann.girl.hut 5329
+professor.hut maryann.girl.hut 7762
+maryann.girl.hut gilligan.crew.hut 2268
+gilligan.crew.hut ginger.girl.hut 8893
+maryann.girl.hut laser3.copyroom.hut 3823
+fileserver.copyroom.hut skipper.crew.hut 4954
+professor.hut skipper.crew.hut 482
+maryann.girl.hut ginger.girl.hut 7678
+ginger.girl.hut ginger.girl.hut 8780
+gilligan.crew.hut ginger.girl.hut 7572
+skipper.crew.hut gilligan.crew.hut 7954
+skipper.crew.hut ginger.girl.hut 7457
+skipper.crew.hut professor.hut 5145
+professor.hut professor.hut 2147
+professor.hut skipper.crew.hut 7807
+professor.hut laser3.copyroom.hut 9096
+fileserver.copyroom.hut skipper.crew.hut 3467
+maryann.girl.hut gilligan.crew.hut 5823
+maryann.girl.hut ginger.girl.hut 3864
+fileserver.copyroom.hut gilligan.crew.hut 5021
+ginger.girl.hut skipper.crew.hut 4512
+gilligan.crew.hut fileserver.copyroom.hut 2866
+ginger.girl.hut ginger.girl.hut 5329
+laser3.copyroom.hut gilligan.crew.hut 3507
+laser3.copyroom.hut ginger.girl.hut 9692
+skipper.crew.hut ginger.girl.hut 7952
+skipper.crew.hut gilligan.crew.hut 8586
+maryann.girl.hut gilligan.crew.hut 6142
+maryann.girl.hut skipper.crew.hut 4519
+skipper.crew.hut professor.hut 3529
+professor.hut maryann.girl.hut 670
+skipper.crew.hut skipper.crew.hut 8852
+laser3.copyroom.hut ginger.girl.hut 9072
+skipper.crew.hut maryann.girl.hut 8306
+gilligan.crew.hut ginger.girl.hut 6356
+gilligan.crew.hut maryann.girl.hut 7680
+ginger.girl.hut laser3.copyroom.hut 1859
+professor.hut ginger.girl.hut 4595
+gilligan.crew.hut gilligan.crew.hut 3123
+fileserver.copyroom.hut fileserver.copyroom.hut 3689
+fileserver.copyroom.hut maryann.girl.hut 5771
+skipper.crew.hut gilligan.crew.hut 4525
+ginger.girl.hut ginger.girl.hut 4332
+fileserver.copyroom.hut fileserver.copyroom.hut 2053
+maryann.girl.hut fileserver.copyroom.hut 3966
+laser3.copyroom.hut skipper.crew.hut 3949
+gilligan.crew.hut fileserver.copyroom.hut 3605
+gilligan.crew.hut skipper.crew.hut 3986
+gilligan.crew.hut fileserver.copyroom.hut 967
+maryann.girl.hut laser3.copyroom.hut 9908
+maryann.girl.hut professor.hut 1154
+gilligan.crew.hut fileserver.copyroom.hut 5170
+maryann.girl.hut ginger.girl.hut 9040
+fileserver.copyroom.hut fileserver.copyroom.hut 3595
+ginger.girl.hut fileserver.copyroom.hut 3174
+ginger.girl.hut fileserver.copyroom.hut 4620
+gilligan.crew.hut fileserver.copyroom.hut 839
+professor.hut skipper.crew.hut 8488
+fileserver.copyroom.hut skipper.crew.hut 6660
+maryann.girl.hut laser3.copyroom.hut 5388
+fileserver.copyroom.hut skipper.crew.hut 7451
+maryann.girl.hut gilligan.crew.hut 9549
+gilligan.crew.hut laser3.copyroom.hut 6179
+professor.hut laser3.copyroom.hut 5556
+gilligan.crew.hut maryann.girl.hut 2397
+gilligan.crew.hut fileserver.copyroom.hut 7524
+professor.hut skipper.crew.hut 4357
+skipper.crew.hut laser3.copyroom.hut 9788
+ginger.girl.hut fileserver.copyroom.hut 114
+gilligan.crew.hut fileserver.copyroom.hut 5335
+maryann.girl.hut fileserver.copyroom.hut 753
+laser3.copyroom.hut laser3.copyroom.hut 9287
+ginger.girl.hut laser3.copyroom.hut 5206
+professor.hut skipper.crew.hut 5609
+gilligan.crew.hut fileserver.copyroom.hut 2215
+gilligan.crew.hut maryann.girl.hut 9904
+gilligan.crew.hut gilligan.crew.hut 1735
+ginger.girl.hut gilligan.crew.hut 8407
+maryann.girl.hut professor.hut 3116
+fileserver.copyroom.hut laser3.copyroom.hut 3726
+professor.hut professor.hut 451
+skipper.crew.hut skipper.crew.hut 1433
+gilligan.crew.hut fileserver.copyroom.hut 3492
+gilligan.crew.hut maryann.girl.hut 888
+professor.hut ginger.girl.hut 3868
+skipper.crew.hut skipper.crew.hut 6148
+professor.hut professor.hut 3178
+skipper.crew.hut ginger.girl.hut 3272
+skipper.crew.hut maryann.girl.hut 1888
+ginger.girl.hut professor.hut 8600
+professor.hut fileserver.copyroom.hut 7631
+professor.hut maryann.girl.hut 5783
+fileserver.copyroom.hut gilligan.crew.hut 4355
+skipper.crew.hut fileserver.copyroom.hut 3911
+ginger.girl.hut gilligan.crew.hut 7086
+skipper.crew.hut gilligan.crew.hut 216
+fileserver.copyroom.hut professor.hut 6021
+gilligan.crew.hut ginger.girl.hut 5618
+maryann.girl.hut professor.hut 1784
+professor.hut fileserver.copyroom.hut 314
+fileserver.copyroom.hut maryann.girl.hut 6159
+skipper.crew.hut maryann.girl.hut 1788
+ginger.girl.hut fileserver.copyroom.hut 7722
+ginger.girl.hut laser3.copyroom.hut 9073
+gilligan.crew.hut fileserver.copyroom.hut 1302
+gilligan.crew.hut maryann.girl.hut 7434
+professor.hut laser3.copyroom.hut 6223
+gilligan.crew.hut laser3.copyroom.hut 3194
+gilligan.crew.hut skipper.crew.hut 9611
+professor.hut fileserver.copyroom.hut 9454
+ginger.girl.hut ginger.girl.hut 6725
+gilligan.crew.hut laser3.copyroom.hut 7740
+maryann.girl.hut gilligan.crew.hut 8310
+fileserver.copyroom.hut fileserver.copyroom.hut 5447
+ginger.girl.hut maryann.girl.hut 1800
+fileserver.copyroom.hut gilligan.crew.hut 2491
+gilligan.crew.hut laser3.copyroom.hut 7889
+professor.hut laser3.copyroom.hut 9548
+fileserver.copyroom.hut professor.hut 1307
+professor.hut ginger.girl.hut 1694
+gilligan.crew.hut laser3.copyroom.hut 4723
+ginger.girl.hut fileserver.copyroom.hut 7086
+fileserver.copyroom.hut maryann.girl.hut 4670
+maryann.girl.hut laser3.copyroom.hut 127
+fileserver.copyroom.hut skipper.crew.hut 5945
+gilligan.crew.hut laser3.copyroom.hut 9576
+gilligan.crew.hut maryann.girl.hut 6115
+ginger.girl.hut maryann.girl.hut 601
+fileserver.copyroom.hut ginger.girl.hut 419
+skipper.crew.hut ginger.girl.hut 3471
+skipper.crew.hut gilligan.crew.hut 2807
+gilligan.crew.hut skipper.crew.hut 3993
+ginger.girl.hut gilligan.crew.hut 8266
+maryann.girl.hut skipper.crew.hut 325
+maryann.girl.hut skipper.crew.hut 4441
+skipper.crew.hut maryann.girl.hut 923
+fileserver.copyroom.hut ginger.girl.hut 9260
+professor.hut skipper.crew.hut 4691
+gilligan.crew.hut fileserver.copyroom.hut 249
+ginger.girl.hut professor.hut 523
+professor.hut professor.hut 621
+fileserver.copyroom.hut professor.hut 5162
+gilligan.crew.hut professor.hut 4427
+gilligan.crew.hut ginger.girl.hut 3134
+maryann.girl.hut professor.hut 5038
+professor.hut ginger.girl.hut 6569
+professor.hut maryann.girl.hut 8671
+laser3.copyroom.hut fileserver.copyroom.hut 9896
+gilligan.crew.hut fileserver.copyroom.hut 5502
+professor.hut professor.hut 9480
+professor.hut fileserver.copyroom.hut 4372
+skipper.crew.hut ginger.girl.hut 8231
+skipper.crew.hut gilligan.crew.hut 9634
+laser3.copyroom.hut ginger.girl.hut 620
+professor.hut skipper.crew.hut 1735
+laser3.copyroom.hut maryann.girl.hut 1284
+laser3.copyroom.hut gilligan.crew.hut 102
+skipper.crew.hut maryann.girl.hut 2812
+gilligan.crew.hut gilligan.crew.hut 6937
+professor.hut gilligan.crew.hut 5165
+skipper.crew.hut gilligan.crew.hut 1751
+professor.hut fileserver.copyroom.hut 196
+professor.hut professor.hut 5637
+skipper.crew.hut gilligan.crew.hut 6703
+fileserver.copyroom.hut gilligan.crew.hut 9596
+ginger.girl.hut gilligan.crew.hut 7879
+fileserver.copyroom.hut skipper.crew.hut 4895
+maryann.girl.hut skipper.crew.hut 8714
+professor.hut fileserver.copyroom.hut 4528
+ginger.girl.hut skipper.crew.hut 452
+gilligan.crew.hut skipper.crew.hut 9527
+professor.hut ginger.girl.hut 9205
+maryann.girl.hut skipper.crew.hut 7022
+fileserver.copyroom.hut maryann.girl.hut 1012
+skipper.crew.hut professor.hut 1128
+gilligan.crew.hut maryann.girl.hut 6179
+professor.hut skipper.crew.hut 6
+maryann.girl.hut skipper.crew.hut 7963
+maryann.girl.hut ginger.girl.hut 1827
+professor.hut ginger.girl.hut 4158
+laser3.copyroom.hut laser3.copyroom.hut 4339
+laser3.copyroom.hut fileserver.copyroom.hut 6963
+ginger.girl.hut laser3.copyroom.hut 2804
+ginger.girl.hut fileserver.copyroom.hut 1027
+maryann.girl.hut maryann.girl.hut 7789
+laser3.copyroom.hut ginger.girl.hut 7349
+laser3.copyroom.hut professor.hut 3094
+gilligan.crew.hut ginger.girl.hut 1373
+laser3.copyroom.hut gilligan.crew.hut 7148
+ginger.girl.hut fileserver.copyroom.hut 8204
+fileserver.copyroom.hut laser3.copyroom.hut 4097
+skipper.crew.hut professor.hut 2363
+laser3.copyroom.hut laser3.copyroom.hut 4234
+laser3.copyroom.hut gilligan.crew.hut 7296
+professor.hut skipper.crew.hut 2790
+maryann.girl.hut professor.hut 764
+skipper.crew.hut ginger.girl.hut 8216
+professor.hut fileserver.copyroom.hut 4233
+fileserver.copyroom.hut skipper.crew.hut 3421
+ginger.girl.hut professor.hut 712
+laser3.copyroom.hut fileserver.copyroom.hut 7247
+gilligan.crew.hut professor.hut 6814
+gilligan.crew.hut maryann.girl.hut 6341
+professor.hut laser3.copyroom.hut 5112
+maryann.girl.hut ginger.girl.hut 2241
+gilligan.crew.hut professor.hut 393
+professor.hut skipper.crew.hut 9952
+professor.hut professor.hut 3216
+ginger.girl.hut ginger.girl.hut 184
+maryann.girl.hut laser3.copyroom.hut 4422
+ginger.girl.hut ginger.girl.hut 9943
+laser3.copyroom.hut maryann.girl.hut 280
+laser3.copyroom.hut skipper.crew.hut 6315
+skipper.crew.hut professor.hut 7997
+professor.hut laser3.copyroom.hut 183
+skipper.crew.hut fileserver.copyroom.hut 4874
+professor.hut gilligan.crew.hut 6421
+laser3.copyroom.hut skipper.crew.hut 8335
+gilligan.crew.hut maryann.girl.hut 3960
+laser3.copyroom.hut laser3.copyroom.hut 6003
+gilligan.crew.hut maryann.girl.hut 7197
+fileserver.copyroom.hut gilligan.crew.hut 8390
+skipper.crew.hut gilligan.crew.hut 8453
+professor.hut fileserver.copyroom.hut 6889
+ginger.girl.hut skipper.crew.hut 3960
+laser3.copyroom.hut laser3.copyroom.hut 4414
+gilligan.crew.hut maryann.girl.hut 1235
+laser3.copyroom.hut laser3.copyroom.hut 9032
+gilligan.crew.hut ginger.girl.hut 7934
+ginger.girl.hut skipper.crew.hut 2774
+laser3.copyroom.hut laser3.copyroom.hut 5739
+fileserver.copyroom.hut skipper.crew.hut 8623
+fileserver.copyroom.hut maryann.girl.hut 6906
+gilligan.crew.hut skipper.crew.hut 899
+ginger.girl.hut professor.hut 4364
+professor.hut ginger.girl.hut 5050
+skipper.crew.hut laser3.copyroom.hut 2387
+laser3.copyroom.hut gilligan.crew.hut 7324
+gilligan.crew.hut maryann.girl.hut 8555
+ginger.girl.hut gilligan.crew.hut 5964
+laser3.copyroom.hut ginger.girl.hut 7807
+gilligan.crew.hut professor.hut 4546
+fileserver.copyroom.hut gilligan.crew.hut 5869
+professor.hut maryann.girl.hut 6325
+maryann.girl.hut skipper.crew.hut 6998
+skipper.crew.hut fileserver.copyroom.hut 9186
+gilligan.crew.hut professor.hut 4521
+ginger.girl.hut gilligan.crew.hut 6216
+fileserver.copyroom.hut gilligan.crew.hut 1689
+gilligan.crew.hut fileserver.copyroom.hut 1866
+maryann.girl.hut fileserver.copyroom.hut 7283
+skipper.crew.hut maryann.girl.hut 8546
+laser3.copyroom.hut ginger.girl.hut 4573
+maryann.girl.hut skipper.crew.hut 3524
+ginger.girl.hut ginger.girl.hut 3119
+laser3.copyroom.hut gilligan.crew.hut 7813
+fileserver.copyroom.hut fileserver.copyroom.hut 9161
+fileserver.copyroom.hut gilligan.crew.hut 1692
+gilligan.crew.hut gilligan.crew.hut 7427
+ginger.girl.hut professor.hut 2767
+professor.hut professor.hut 4955
+gilligan.crew.hut gilligan.crew.hut 4738
+ginger.girl.hut skipper.crew.hut 9244
+maryann.girl.hut laser3.copyroom.hut 2318
+fileserver.copyroom.hut fileserver.copyroom.hut 2182
+ginger.girl.hut maryann.girl.hut 1210
+laser3.copyroom.hut fileserver.copyroom.hut 6623
+professor.hut gilligan.crew.hut 6679
+skipper.crew.hut skipper.crew.hut 2323
+maryann.girl.hut skipper.crew.hut 6404
+laser3.copyroom.hut maryann.girl.hut 3451
+gilligan.crew.hut professor.hut 6252
+fileserver.copyroom.hut maryann.girl.hut 1984
+fileserver.copyroom.hut ginger.girl.hut 7023
+gilligan.crew.hut maryann.girl.hut 2222
+fileserver.copyroom.hut laser3.copyroom.hut 3811
+gilligan.crew.hut maryann.girl.hut 8299
+skipper.crew.hut laser3.copyroom.hut 4337
+fileserver.copyroom.hut fileserver.copyroom.hut 6308
+maryann.girl.hut skipper.crew.hut 1332
+ginger.girl.hut laser3.copyroom.hut 4248
+ginger.girl.hut laser3.copyroom.hut 5599
+laser3.copyroom.hut ginger.girl.hut 1651
+skipper.crew.hut gilligan.crew.hut 9453
+gilligan.crew.hut ginger.girl.hut 4296
+fileserver.copyroom.hut skipper.crew.hut 5460
+laser3.copyroom.hut skipper.crew.hut 4919
+ginger.girl.hut maryann.girl.hut 3645
+gilligan.crew.hut ginger.girl.hut 1916
+maryann.girl.hut ginger.girl.hut 3728
+ginger.girl.hut maryann.girl.hut 2221
+skipper.crew.hut ginger.girl.hut 8307
+skipper.crew.hut professor.hut 5353
+gilligan.crew.hut fileserver.copyroom.hut 1915
+laser3.copyroom.hut professor.hut 7550
+fileserver.copyroom.hut ginger.girl.hut 5206
+maryann.girl.hut ginger.girl.hut 978
+laser3.copyroom.hut fileserver.copyroom.hut 9326
+professor.hut gilligan.crew.hut 2110
+fileserver.copyroom.hut gilligan.crew.hut 966
+professor.hut gilligan.crew.hut 1321
+maryann.girl.hut gilligan.crew.hut 4988
+ginger.girl.hut ginger.girl.hut 7339
+fileserver.copyroom.hut fileserver.copyroom.hut 5156
+ginger.girl.hut gilligan.crew.hut 9255
+maryann.girl.hut ginger.girl.hut 6018
+skipper.crew.hut ginger.girl.hut 4371
+gilligan.crew.hut skipper.crew.hut 4397
+gilligan.crew.hut laser3.copyroom.hut 9483
+gilligan.crew.hut maryann.girl.hut 7038
+ginger.girl.hut skipper.crew.hut 8314
+fileserver.copyroom.hut gilligan.crew.hut 2667
+maryann.girl.hut fileserver.copyroom.hut 2512
+skipper.crew.hut gilligan.crew.hut 1565
+skipper.crew.hut laser3.copyroom.hut 5344
+professor.hut professor.hut 5600
+ginger.girl.hut maryann.girl.hut 5647
+maryann.girl.hut gilligan.crew.hut 1667
+gilligan.crew.hut maryann.girl.hut 6344
+gilligan.crew.hut laser3.copyroom.hut 9309
+maryann.girl.hut fileserver.copyroom.hut 6305
+maryann.girl.hut skipper.crew.hut 140
+ginger.girl.hut gilligan.crew.hut 668
+laser3.copyroom.hut skipper.crew.hut 7519
+skipper.crew.hut fileserver.copyroom.hut 8369
+ginger.girl.hut ginger.girl.hut 2845
+skipper.crew.hut professor.hut 4300
+professor.hut ginger.girl.hut 5288
+laser3.copyroom.hut fileserver.copyroom.hut 5660
+gilligan.crew.hut professor.hut 1962
+gilligan.crew.hut ginger.girl.hut 6014
+skipper.crew.hut skipper.crew.hut 2185
+fileserver.copyroom.hut laser3.copyroom.hut 3280
+gilligan.crew.hut ginger.girl.hut 2588
+gilligan.crew.hut fileserver.copyroom.hut 4449
+maryann.girl.hut laser3.copyroom.hut 1559
+fileserver.copyroom.hut laser3.copyroom.hut 8095
+professor.hut maryann.girl.hut 656
+gilligan.crew.hut ginger.girl.hut 5799
+fileserver.copyroom.hut maryann.girl.hut 7859
+gilligan.crew.hut skipper.crew.hut 1500
+laser3.copyroom.hut laser3.copyroom.hut 4211
+fileserver.copyroom.hut skipper.crew.hut 2149
+gilligan.crew.hut professor.hut 8342
+professor.hut maryann.girl.hut 8608
+skipper.crew.hut ginger.girl.hut 9030
+gilligan.crew.hut skipper.crew.hut 1505
+ginger.girl.hut laser3.copyroom.hut 4682
+maryann.girl.hut professor.hut 7793
+fileserver.copyroom.hut maryann.girl.hut 3876
+professor.hut gilligan.crew.hut 3025
+laser3.copyroom.hut gilligan.crew.hut 29
+fileserver.copyroom.hut gilligan.crew.hut 8011
+laser3.copyroom.hut skipper.crew.hut 7722
+skipper.crew.hut laser3.copyroom.hut 1698
+ginger.girl.hut laser3.copyroom.hut 7040
+gilligan.crew.hut laser3.copyroom.hut 526
+gilligan.crew.hut ginger.girl.hut 7479
+laser3.copyroom.hut professor.hut 1228
+fileserver.copyroom.hut professor.hut 6860
+maryann.girl.hut professor.hut 8482
+ginger.girl.hut ginger.girl.hut 8372
+skipper.crew.hut maryann.girl.hut 8590
+gilligan.crew.hut professor.hut 451
+professor.hut fileserver.copyroom.hut 6514
+gilligan.crew.hut ginger.girl.hut 2506
+professor.hut laser3.copyroom.hut 8883
+ginger.girl.hut ginger.girl.hut 5116
+fileserver.copyroom.hut professor.hut 2357
+gilligan.crew.hut gilligan.crew.hut 3608
+ginger.girl.hut maryann.girl.hut 849
+laser3.copyroom.hut gilligan.crew.hut 6350
+ginger.girl.hut fileserver.copyroom.hut 9633
+gilligan.crew.hut skipper.crew.hut 5641
+ginger.girl.hut ginger.girl.hut 6579
+professor.hut fileserver.copyroom.hut 9816
+maryann.girl.hut gilligan.crew.hut 2030
+skipper.crew.hut professor.hut 192
+ginger.girl.hut maryann.girl.hut 9456
+laser3.copyroom.hut professor.hut 9643
+ginger.girl.hut gilligan.crew.hut 2488
+ginger.girl.hut gilligan.crew.hut 6438
+maryann.girl.hut gilligan.crew.hut 1701
+maryann.girl.hut skipper.crew.hut 7130
+gilligan.crew.hut ginger.girl.hut 361
+skipper.crew.hut ginger.girl.hut 9210
+gilligan.crew.hut ginger.girl.hut 2677
+gilligan.crew.hut ginger.girl.hut 1319
+maryann.girl.hut ginger.girl.hut 5566
+fileserver.copyroom.hut gilligan.crew.hut 5329
+professor.hut gilligan.crew.hut 5482
+laser3.copyroom.hut fileserver.copyroom.hut 7891
+maryann.girl.hut gilligan.crew.hut 2216
+ginger.girl.hut skipper.crew.hut 8107
+maryann.girl.hut professor.hut 7664
+laser3.copyroom.hut laser3.copyroom.hut 1793
+maryann.girl.hut skipper.crew.hut 8113
+fileserver.copyroom.hut gilligan.crew.hut 685
+fileserver.copyroom.hut gilligan.crew.hut 972
+gilligan.crew.hut laser3.copyroom.hut 8644
+maryann.girl.hut maryann.girl.hut 8667
+fileserver.copyroom.hut laser3.copyroom.hut 3782
+fileserver.copyroom.hut fileserver.copyroom.hut 9853
+gilligan.crew.hut skipper.crew.hut 9955
+laser3.copyroom.hut laser3.copyroom.hut 9475
+ginger.girl.hut maryann.girl.hut 4485
+ginger.girl.hut skipper.crew.hut 2605
+skipper.crew.hut gilligan.crew.hut 2718
+ginger.girl.hut gilligan.crew.hut 5984
+ginger.girl.hut skipper.crew.hut 3747
+skipper.crew.hut skipper.crew.hut 7139
+fileserver.copyroom.hut gilligan.crew.hut 8142
+professor.hut maryann.girl.hut 8844
+maryann.girl.hut maryann.girl.hut 9427
+professor.hut fileserver.copyroom.hut 3713
+laser3.copyroom.hut gilligan.crew.hut 756
+maryann.girl.hut professor.hut 1817
+gilligan.crew.hut ginger.girl.hut 3648
+skipper.crew.hut laser3.copyroom.hut 3858
+ginger.girl.hut laser3.copyroom.hut 4430
+maryann.girl.hut professor.hut 5206
+gilligan.crew.hut maryann.girl.hut 2081
+skipper.crew.hut ginger.girl.hut 1198
+laser3.copyroom.hut laser3.copyroom.hut 8061
+fileserver.copyroom.hut ginger.girl.hut 968
+skipper.crew.hut gilligan.crew.hut 4125
+professor.hut ginger.girl.hut 9767
+professor.hut gilligan.crew.hut 768
+gilligan.crew.hut gilligan.crew.hut 7872
+maryann.girl.hut laser3.copyroom.hut 6798
+maryann.girl.hut gilligan.crew.hut 6636
+professor.hut laser3.copyroom.hut 4913
+maryann.girl.hut skipper.crew.hut 2762
+maryann.girl.hut laser3.copyroom.hut 8115
+skipper.crew.hut fileserver.copyroom.hut 1643
+maryann.girl.hut fileserver.copyroom.hut 8533
+fileserver.copyroom.hut laser3.copyroom.hut 1214
+professor.hut maryann.girl.hut 3748
+skipper.crew.hut gilligan.crew.hut 290
+skipper.crew.hut gilligan.crew.hut 5843
+gilligan.crew.hut skipper.crew.hut 1432
+maryann.girl.hut laser3.copyroom.hut 1293
+professor.hut fileserver.copyroom.hut 9692
+professor.hut maryann.girl.hut 2063
+skipper.crew.hut gilligan.crew.hut 5170
+gilligan.crew.hut professor.hut 1455
+laser3.copyroom.hut laser3.copyroom.hut 8984
+fileserver.copyroom.hut gilligan.crew.hut 4500
+gilligan.crew.hut ginger.girl.hut 9913
+laser3.copyroom.hut laser3.copyroom.hut 3352
+gilligan.crew.hut gilligan.crew.hut 7707
+maryann.girl.hut fileserver.copyroom.hut 5689
+laser3.copyroom.hut skipper.crew.hut 5715
+maryann.girl.hut skipper.crew.hut 9693
+maryann.girl.hut professor.hut 345
+maryann.girl.hut gilligan.crew.hut 2460
+gilligan.crew.hut laser3.copyroom.hut 6195
+gilligan.crew.hut fileserver.copyroom.hut 6248
+laser3.copyroom.hut skipper.crew.hut 4900
+maryann.girl.hut laser3.copyroom.hut 616
+gilligan.crew.hut ginger.girl.hut 6797
+professor.hut fileserver.copyroom.hut 2550
+professor.hut gilligan.crew.hut 4758
+gilligan.crew.hut laser3.copyroom.hut 2862
+laser3.copyroom.hut fileserver.copyroom.hut 9770
+maryann.girl.hut ginger.girl.hut 7459
+gilligan.crew.hut skipper.crew.hut 8450
+maryann.girl.hut fileserver.copyroom.hut 4847
+skipper.crew.hut skipper.crew.hut 7252
+maryann.girl.hut professor.hut 3752
+fileserver.copyroom.hut fileserver.copyroom.hut 2356
+skipper.crew.hut ginger.girl.hut 3310
+professor.hut ginger.girl.hut 3832
+skipper.crew.hut ginger.girl.hut 1597
+fileserver.copyroom.hut gilligan.crew.hut 9160
+skipper.crew.hut skipper.crew.hut 2062
+gilligan.crew.hut maryann.girl.hut 2885
+maryann.girl.hut gilligan.crew.hut 7220
+fileserver.copyroom.hut maryann.girl.hut 5529
+gilligan.crew.hut professor.hut 6944
+gilligan.crew.hut ginger.girl.hut 6633
+gilligan.crew.hut gilligan.crew.hut 2478
+skipper.crew.hut professor.hut 8114
+laser3.copyroom.hut fileserver.copyroom.hut 4052
+ginger.girl.hut fileserver.copyroom.hut 5310
+professor.hut laser3.copyroom.hut 4972
+ginger.girl.hut ginger.girl.hut 7814
+skipper.crew.hut gilligan.crew.hut 5959
+gilligan.crew.hut ginger.girl.hut 2914
+ginger.girl.hut professor.hut 9976
+gilligan.crew.hut professor.hut 9938
+gilligan.crew.hut professor.hut 5945
+fileserver.copyroom.hut ginger.girl.hut 5169
+professor.hut laser3.copyroom.hut 2218
+maryann.girl.hut skipper.crew.hut 7562
+professor.hut fileserver.copyroom.hut 8224
+professor.hut professor.hut 3441
+gilligan.crew.hut skipper.crew.hut 1583
+laser3.copyroom.hut professor.hut 8174
+fileserver.copyroom.hut skipper.crew.hut 3985
+professor.hut skipper.crew.hut 8131
+ginger.girl.hut laser3.copyroom.hut 5564
+fileserver.copyroom.hut laser3.copyroom.hut 9531
+maryann.girl.hut fileserver.copyroom.hut 4888
+maryann.girl.hut ginger.girl.hut 7567
+maryann.girl.hut skipper.crew.hut 7701
+maryann.girl.hut fileserver.copyroom.hut 335
+fileserver.copyroom.hut maryann.girl.hut 2150
+maryann.girl.hut gilligan.crew.hut 7497
+ginger.girl.hut professor.hut 4786
+maryann.girl.hut gilligan.crew.hut 9454
+ginger.girl.hut maryann.girl.hut 5122
+skipper.crew.hut skipper.crew.hut 240
+laser3.copyroom.hut fileserver.copyroom.hut 2194
+ginger.girl.hut skipper.crew.hut 4487
+ginger.girl.hut professor.hut 6304
+laser3.copyroom.hut ginger.girl.hut 7376
+fileserver.copyroom.hut gilligan.crew.hut 1616
+laser3.copyroom.hut maryann.girl.hut 5772
+maryann.girl.hut maryann.girl.hut 3236
+professor.hut laser3.copyroom.hut 1112
+fileserver.copyroom.hut skipper.crew.hut 5653
+ginger.girl.hut fileserver.copyroom.hut 5663
+ginger.girl.hut skipper.crew.hut 2966
+gilligan.crew.hut ginger.girl.hut 5189
+gilligan.crew.hut laser3.copyroom.hut 413
+maryann.girl.hut maryann.girl.hut 8995
+gilligan.crew.hut ginger.girl.hut 3565
+ginger.girl.hut ginger.girl.hut 9320
+skipper.crew.hut laser3.copyroom.hut 8260
+fileserver.copyroom.hut skipper.crew.hut 9053
+professor.hut ginger.girl.hut 4066
+ginger.girl.hut fileserver.copyroom.hut 1789
+maryann.girl.hut gilligan.crew.hut 5412
+skipper.crew.hut professor.hut 2653
+maryann.girl.hut laser3.copyroom.hut 9480
+ginger.girl.hut fileserver.copyroom.hut 3078
+maryann.girl.hut ginger.girl.hut 1892
+maryann.girl.hut ginger.girl.hut 7731
+laser3.copyroom.hut fileserver.copyroom.hut 9322
+skipper.crew.hut gilligan.crew.hut 1657
+ginger.girl.hut maryann.girl.hut 7572
+fileserver.copyroom.hut gilligan.crew.hut 473
+professor.hut fileserver.copyroom.hut 4888
+laser3.copyroom.hut maryann.girl.hut 8542
+skipper.crew.hut maryann.girl.hut 7445
+skipper.crew.hut fileserver.copyroom.hut 5728
+ginger.girl.hut skipper.crew.hut 4042
+maryann.girl.hut skipper.crew.hut 4502
+fileserver.copyroom.hut maryann.girl.hut 745
+gilligan.crew.hut ginger.girl.hut 2274
+fileserver.copyroom.hut gilligan.crew.hut 9472
+laser3.copyroom.hut gilligan.crew.hut 7342
+fileserver.copyroom.hut maryann.girl.hut 2978
+skipper.crew.hut skipper.crew.hut 2429
+ginger.girl.hut ginger.girl.hut 2264
+ginger.girl.hut laser3.copyroom.hut 3189
+laser3.copyroom.hut fileserver.copyroom.hut 2066
+laser3.copyroom.hut maryann.girl.hut 6123
+professor.hut gilligan.crew.hut 2742
+ginger.girl.hut maryann.girl.hut 6865
+gilligan.crew.hut fileserver.copyroom.hut 1469
+maryann.girl.hut skipper.crew.hut 1700
+laser3.copyroom.hut fileserver.copyroom.hut 3241
+fileserver.copyroom.hut gilligan.crew.hut 1135
+fileserver.copyroom.hut professor.hut 5074
+fileserver.copyroom.hut laser3.copyroom.hut 6539
+skipper.crew.hut laser3.copyroom.hut 6774
+fileserver.copyroom.hut skipper.crew.hut 1685
+fileserver.copyroom.hut professor.hut 3514
+fileserver.copyroom.hut fileserver.copyroom.hut 8695
+professor.hut fileserver.copyroom.hut 3219
+ginger.girl.hut maryann.girl.hut 5278
+maryann.girl.hut ginger.girl.hut 6092
+fileserver.copyroom.hut ginger.girl.hut 7935
+skipper.crew.hut gilligan.crew.hut 3205
+fileserver.copyroom.hut fileserver.copyroom.hut 8615
+skipper.crew.hut fileserver.copyroom.hut 333
+skipper.crew.hut maryann.girl.hut 9095
+fileserver.copyroom.hut laser3.copyroom.hut 4433
+fileserver.copyroom.hut maryann.girl.hut 8339
+professor.hut gilligan.crew.hut 4903
+laser3.copyroom.hut professor.hut 9131
+fileserver.copyroom.hut maryann.girl.hut 6708
+fileserver.copyroom.hut laser3.copyroom.hut 1524
+ginger.girl.hut laser3.copyroom.hut 5873
+ginger.girl.hut fileserver.copyroom.hut 9460
+skipper.crew.hut gilligan.crew.hut 9102
+laser3.copyroom.hut gilligan.crew.hut 6414
+professor.hut laser3.copyroom.hut 9648
+gilligan.crew.hut laser3.copyroom.hut 8535
+laser3.copyroom.hut skipper.crew.hut 4763
+fileserver.copyroom.hut skipper.crew.hut 5510
+professor.hut laser3.copyroom.hut 3692
+maryann.girl.hut skipper.crew.hut 3529
+maryann.girl.hut laser3.copyroom.hut 7980
+professor.hut professor.hut 4935
+ginger.girl.hut laser3.copyroom.hut 3243
+professor.hut professor.hut 603
+maryann.girl.hut gilligan.crew.hut 2061
+laser3.copyroom.hut skipper.crew.hut 3106
+skipper.crew.hut fileserver.copyroom.hut 4637
+maryann.girl.hut gilligan.crew.hut 7641
+skipper.crew.hut gilligan.crew.hut 828
+maryann.girl.hut maryann.girl.hut 7727
+laser3.copyroom.hut professor.hut 4397
+professor.hut ginger.girl.hut 2347
+maryann.girl.hut ginger.girl.hut 7342
+gilligan.crew.hut maryann.girl.hut 7960
+professor.hut gilligan.crew.hut 5086
+maryann.girl.hut maryann.girl.hut 8944
+gilligan.crew.hut gilligan.crew.hut 9783
+laser3.copyroom.hut professor.hut 279
+laser3.copyroom.hut gilligan.crew.hut 533
+maryann.girl.hut laser3.copyroom.hut 4035
+fileserver.copyroom.hut maryann.girl.hut 870
+laser3.copyroom.hut laser3.copyroom.hut 3931
+maryann.girl.hut gilligan.crew.hut 2703
+ginger.girl.hut skipper.crew.hut 2785
+professor.hut skipper.crew.hut 6270
+maryann.girl.hut gilligan.crew.hut 9376
+ginger.girl.hut laser3.copyroom.hut 2604
+skipper.crew.hut ginger.girl.hut 747
+professor.hut maryann.girl.hut 2078
+fileserver.copyroom.hut professor.hut 9678
+ginger.girl.hut skipper.crew.hut 7312
+gilligan.crew.hut ginger.girl.hut 570
+fileserver.copyroom.hut ginger.girl.hut 7646
+maryann.girl.hut maryann.girl.hut 7033
+skipper.crew.hut skipper.crew.hut 2870
+fileserver.copyroom.hut skipper.crew.hut 1238
+laser3.copyroom.hut laser3.copyroom.hut 9214
+maryann.girl.hut maryann.girl.hut 674
+maryann.girl.hut maryann.girl.hut 8578
+maryann.girl.hut maryann.girl.hut 6431
+laser3.copyroom.hut laser3.copyroom.hut 1231
+skipper.crew.hut professor.hut 7092
+professor.hut gilligan.crew.hut 6263
+gilligan.crew.hut skipper.crew.hut 7419
+ginger.girl.hut fileserver.copyroom.hut 5993
+skipper.crew.hut laser3.copyroom.hut 2113
+laser3.copyroom.hut fileserver.copyroom.hut 9636
+skipper.crew.hut skipper.crew.hut 349
+fileserver.copyroom.hut laser3.copyroom.hut 870
+gilligan.crew.hut skipper.crew.hut 7954
+fileserver.copyroom.hut maryann.girl.hut 3938
+gilligan.crew.hut ginger.girl.hut 1943
+ginger.girl.hut ginger.girl.hut 4453
+gilligan.crew.hut laser3.copyroom.hut 7386
+ginger.girl.hut laser3.copyroom.hut 6841
+maryann.girl.hut laser3.copyroom.hut 6800
+skipper.crew.hut fileserver.copyroom.hut 4476
+gilligan.crew.hut professor.hut 4771
+professor.hut professor.hut 4031
+maryann.girl.hut maryann.girl.hut 2625
+fileserver.copyroom.hut gilligan.crew.hut 8270
+skipper.crew.hut maryann.girl.hut 7734
+maryann.girl.hut gilligan.crew.hut 119
+maryann.girl.hut maryann.girl.hut 1651
+fileserver.copyroom.hut maryann.girl.hut 362
+fileserver.copyroom.hut skipper.crew.hut 8882
+maryann.girl.hut ginger.girl.hut 9482
+fileserver.copyroom.hut ginger.girl.hut 954
+professor.hut skipper.crew.hut 6829
+gilligan.crew.hut maryann.girl.hut 9246
+ginger.girl.hut skipper.crew.hut 6266
+gilligan.crew.hut fileserver.copyroom.hut 5873
+skipper.crew.hut maryann.girl.hut 5381
+laser3.copyroom.hut ginger.girl.hut 1508
+fileserver.copyroom.hut laser3.copyroom.hut 6094
+laser3.copyroom.hut laser3.copyroom.hut 7604
+gilligan.crew.hut professor.hut 7299
+fileserver.copyroom.hut skipper.crew.hut 3694
+ginger.girl.hut maryann.girl.hut 8792
+professor.hut fileserver.copyroom.hut 2618
+maryann.girl.hut maryann.girl.hut 9089
+skipper.crew.hut skipper.crew.hut 2553
+laser3.copyroom.hut laser3.copyroom.hut 5710
+professor.hut laser3.copyroom.hut 720
+gilligan.crew.hut gilligan.crew.hut 9873
+ginger.girl.hut maryann.girl.hut 9635
+professor.hut laser3.copyroom.hut 2597
+laser3.copyroom.hut fileserver.copyroom.hut 4466
+professor.hut laser3.copyroom.hut 5263
+fileserver.copyroom.hut professor.hut 3978
+fileserver.copyroom.hut gilligan.crew.hut 9566
+gilligan.crew.hut professor.hut 2805
+fileserver.copyroom.hut gilligan.crew.hut 168
+gilligan.crew.hut maryann.girl.hut 9883
+ginger.girl.hut ginger.girl.hut 9907
+professor.hut professor.hut 9982
+maryann.girl.hut professor.hut 5163
+maryann.girl.hut professor.hut 398
+skipper.crew.hut skipper.crew.hut 5478
+gilligan.crew.hut fileserver.copyroom.hut 9276
+maryann.girl.hut professor.hut 2536
+ginger.girl.hut fileserver.copyroom.hut 806
+professor.hut laser3.copyroom.hut 5472
+laser3.copyroom.hut fileserver.copyroom.hut 3366
+skipper.crew.hut fileserver.copyroom.hut 5922
+gilligan.crew.hut ginger.girl.hut 7564
+maryann.girl.hut fileserver.copyroom.hut 9556
+gilligan.crew.hut gilligan.crew.hut 6160
+laser3.copyroom.hut maryann.girl.hut 8795
+professor.hut gilligan.crew.hut 7909
+maryann.girl.hut skipper.crew.hut 4027
+laser3.copyroom.hut gilligan.crew.hut 7679
+professor.hut laser3.copyroom.hut 2370
+ginger.girl.hut skipper.crew.hut 1966
+professor.hut skipper.crew.hut 8637
+gilligan.crew.hut maryann.girl.hut 6038
+skipper.crew.hut professor.hut 8482
+fileserver.copyroom.hut ginger.girl.hut 927
+skipper.crew.hut laser3.copyroom.hut 1484
+skipper.crew.hut laser3.copyroom.hut 1140
+professor.hut ginger.girl.hut 1482
+laser3.copyroom.hut ginger.girl.hut 2120
+laser3.copyroom.hut skipper.crew.hut 3509
+fileserver.copyroom.hut professor.hut 128
+laser3.copyroom.hut ginger.girl.hut 9367
+laser3.copyroom.hut ginger.girl.hut 18
+laser3.copyroom.hut maryann.girl.hut 3183
+gilligan.crew.hut skipper.crew.hut 7106
+professor.hut ginger.girl.hut 5443
+fileserver.copyroom.hut gilligan.crew.hut 4133
+ginger.girl.hut gilligan.crew.hut 5399
+skipper.crew.hut skipper.crew.hut 390
+maryann.girl.hut ginger.girl.hut 468
+maryann.girl.hut professor.hut 2767
+professor.hut gilligan.crew.hut 7874
+skipper.crew.hut fileserver.copyroom.hut 1671
+maryann.girl.hut fileserver.copyroom.hut 2053
+professor.hut ginger.girl.hut 778
+gilligan.crew.hut skipper.crew.hut 8938
+skipper.crew.hut ginger.girl.hut 8701
+fileserver.copyroom.hut ginger.girl.hut 4266
+professor.hut ginger.girl.hut 9489
+skipper.crew.hut maryann.girl.hut 4849
+professor.hut laser3.copyroom.hut 8352
+gilligan.crew.hut fileserver.copyroom.hut 9893
+gilligan.crew.hut maryann.girl.hut 4736
+maryann.girl.hut maryann.girl.hut 4092
+professor.hut ginger.girl.hut 533
+maryann.girl.hut skipper.crew.hut 244
+gilligan.crew.hut laser3.copyroom.hut 1793
+professor.hut gilligan.crew.hut 3844
+skipper.crew.hut ginger.girl.hut 7038
+professor.hut fileserver.copyroom.hut 294
+laser3.copyroom.hut gilligan.crew.hut 2696
+gilligan.crew.hut laser3.copyroom.hut 7173
+fileserver.copyroom.hut maryann.girl.hut 8083
+professor.hut laser3.copyroom.hut 8173
+skipper.crew.hut skipper.crew.hut 6511
+ginger.girl.hut laser3.copyroom.hut 2969
+laser3.copyroom.hut fileserver.copyroom.hut 4240
+maryann.girl.hut ginger.girl.hut 8685
+laser3.copyroom.hut laser3.copyroom.hut 7775
+ginger.girl.hut gilligan.crew.hut 7180
+maryann.girl.hut ginger.girl.hut 2563
+maryann.girl.hut laser3.copyroom.hut 6897
+ginger.girl.hut laser3.copyroom.hut 3969
+skipper.crew.hut maryann.girl.hut 8988
+maryann.girl.hut fileserver.copyroom.hut 3809
+fileserver.copyroom.hut skipper.crew.hut 4420
+gilligan.crew.hut maryann.girl.hut 3137
+fileserver.copyroom.hut ginger.girl.hut 8236
+skipper.crew.hut ginger.girl.hut 7276
+ginger.girl.hut ginger.girl.hut 2516
+skipper.crew.hut ginger.girl.hut 6083
+maryann.girl.hut maryann.girl.hut 6788
+laser3.copyroom.hut professor.hut 1512
+professor.hut ginger.girl.hut 588
+fileserver.copyroom.hut maryann.girl.hut 9848
+ginger.girl.hut professor.hut 1894
+skipper.crew.hut professor.hut 2222
+fileserver.copyroom.hut ginger.girl.hut 9079
+laser3.copyroom.hut ginger.girl.hut 6007
+ginger.girl.hut professor.hut 827
+ginger.girl.hut professor.hut 3331
+gilligan.crew.hut maryann.girl.hut 3708
+laser3.copyroom.hut fileserver.copyroom.hut 6787
+laser3.copyroom.hut professor.hut 4458
+professor.hut laser3.copyroom.hut 7251
+skipper.crew.hut maryann.girl.hut 4950
+ginger.girl.hut ginger.girl.hut 6947
+gilligan.crew.hut skipper.crew.hut 717
+gilligan.crew.hut fileserver.copyroom.hut 6001
+maryann.girl.hut maryann.girl.hut 7481
+gilligan.crew.hut gilligan.crew.hut 9955
+maryann.girl.hut gilligan.crew.hut 4372
+laser3.copyroom.hut maryann.girl.hut 4307
+maryann.girl.hut maryann.girl.hut 9036
+ginger.girl.hut professor.hut 3366
+skipper.crew.hut gilligan.crew.hut 5945
+skipper.crew.hut professor.hut 9110
+maryann.girl.hut gilligan.crew.hut 5058
+ginger.girl.hut laser3.copyroom.hut 2710
+fileserver.copyroom.hut professor.hut 2968
+skipper.crew.hut gilligan.crew.hut 9943
+ginger.girl.hut laser3.copyroom.hut 3051
+ginger.girl.hut skipper.crew.hut 3086
+skipper.crew.hut laser3.copyroom.hut 982
+fileserver.copyroom.hut maryann.girl.hut 1120
+gilligan.crew.hut laser3.copyroom.hut 429
+ginger.girl.hut maryann.girl.hut 7322
+skipper.crew.hut professor.hut 8642
+skipper.crew.hut ginger.girl.hut 7173
+laser3.copyroom.hut skipper.crew.hut 8873
+skipper.crew.hut skipper.crew.hut 3753
+maryann.girl.hut fileserver.copyroom.hut 1716
+ginger.girl.hut gilligan.crew.hut 6871
+fileserver.copyroom.hut maryann.girl.hut 1669
+gilligan.crew.hut professor.hut 1828
+fileserver.copyroom.hut fileserver.copyroom.hut 9650
+fileserver.copyroom.hut gilligan.crew.hut 764
+skipper.crew.hut laser3.copyroom.hut 3889
+gilligan.crew.hut professor.hut 1805
+skipper.crew.hut gilligan.crew.hut 7308
+professor.hut laser3.copyroom.hut 1506
+gilligan.crew.hut fileserver.copyroom.hut 6844
+skipper.crew.hut maryann.girl.hut 4392
+maryann.girl.hut professor.hut 4345
+fileserver.copyroom.hut skipper.crew.hut 2309
+ginger.girl.hut laser3.copyroom.hut 1998
+laser3.copyroom.hut gilligan.crew.hut 6415
+ginger.girl.hut maryann.girl.hut 8115
+professor.hut laser3.copyroom.hut 5370
+ginger.girl.hut professor.hut 7368
+fileserver.copyroom.hut gilligan.crew.hut 338
+ginger.girl.hut fileserver.copyroom.hut 9712
+maryann.girl.hut ginger.girl.hut 852
+gilligan.crew.hut fileserver.copyroom.hut 3681
+ginger.girl.hut maryann.girl.hut 4922
+professor.hut ginger.girl.hut 354
+maryann.girl.hut gilligan.crew.hut 6152
+fileserver.copyroom.hut laser3.copyroom.hut 3512
+professor.hut maryann.girl.hut 4638
+skipper.crew.hut laser3.copyroom.hut 9537
+laser3.copyroom.hut maryann.girl.hut 1438
+fileserver.copyroom.hut gilligan.crew.hut 5144
+professor.hut maryann.girl.hut 9984
+gilligan.crew.hut laser3.copyroom.hut 1606
+fileserver.copyroom.hut ginger.girl.hut 8556
+fileserver.copyroom.hut gilligan.crew.hut 2676
+professor.hut maryann.girl.hut 4955
+skipper.crew.hut laser3.copyroom.hut 2452
+laser3.copyroom.hut professor.hut 7767
+professor.hut skipper.crew.hut 4187
+laser3.copyroom.hut skipper.crew.hut 2089
+maryann.girl.hut ginger.girl.hut 8172
+gilligan.crew.hut ginger.girl.hut 7868
+fileserver.copyroom.hut skipper.crew.hut 2811
+ginger.girl.hut ginger.girl.hut 7340
+maryann.girl.hut professor.hut 7466
+skipper.crew.hut maryann.girl.hut 6111
+ginger.girl.hut skipper.crew.hut 8932
+laser3.copyroom.hut professor.hut 4158
+gilligan.crew.hut professor.hut 5592
+skipper.crew.hut laser3.copyroom.hut 2164
+ginger.girl.hut skipper.crew.hut 1129
+maryann.girl.hut laser3.copyroom.hut 8384
+gilligan.crew.hut maryann.girl.hut 373
+laser3.copyroom.hut ginger.girl.hut 5840
+skipper.crew.hut professor.hut 5033
+professor.hut skipper.crew.hut 7769
+fileserver.copyroom.hut gilligan.crew.hut 7406
+gilligan.crew.hut gilligan.crew.hut 8401
+fileserver.copyroom.hut maryann.girl.hut 1923
+gilligan.crew.hut ginger.girl.hut 3975
+ginger.girl.hut skipper.crew.hut 8666
+professor.hut gilligan.crew.hut 7242
+ginger.girl.hut ginger.girl.hut 7379
+gilligan.crew.hut skipper.crew.hut 2978
+maryann.girl.hut maryann.girl.hut 4435
+maryann.girl.hut professor.hut 324
+maryann.girl.hut professor.hut 6943
+maryann.girl.hut fileserver.copyroom.hut 5917
+ginger.girl.hut laser3.copyroom.hut 5235
+gilligan.crew.hut laser3.copyroom.hut 9892
+skipper.crew.hut maryann.girl.hut 3645
+laser3.copyroom.hut gilligan.crew.hut 5894
+skipper.crew.hut gilligan.crew.hut 7494
+professor.hut gilligan.crew.hut 1059
+fileserver.copyroom.hut professor.hut 7325
+professor.hut ginger.girl.hut 3370
+gilligan.crew.hut skipper.crew.hut 2253
+fileserver.copyroom.hut professor.hut 4559
+maryann.girl.hut ginger.girl.hut 9304
+ginger.girl.hut professor.hut 9996
+maryann.girl.hut professor.hut 520
+professor.hut maryann.girl.hut 278
+skipper.crew.hut professor.hut 7554
+ginger.girl.hut skipper.crew.hut 6557
+skipper.crew.hut ginger.girl.hut 6177
+maryann.girl.hut skipper.crew.hut 8532
+professor.hut ginger.girl.hut 6972
+maryann.girl.hut skipper.crew.hut 8724
+gilligan.crew.hut ginger.girl.hut 8603
+professor.hut gilligan.crew.hut 5162
+professor.hut skipper.crew.hut 9398
+maryann.girl.hut fileserver.copyroom.hut 5271
+maryann.girl.hut maryann.girl.hut 2777
+ginger.girl.hut ginger.girl.hut 8426
+fileserver.copyroom.hut maryann.girl.hut 7034
+maryann.girl.hut fileserver.copyroom.hut 8083
+fileserver.copyroom.hut maryann.girl.hut 6368
+laser3.copyroom.hut maryann.girl.hut 5779
+ginger.girl.hut ginger.girl.hut 7098
+laser3.copyroom.hut professor.hut 4563
+professor.hut maryann.girl.hut 7522
+maryann.girl.hut laser3.copyroom.hut 5739
+ginger.girl.hut gilligan.crew.hut 1672
+fileserver.copyroom.hut laser3.copyroom.hut 8929
+ginger.girl.hut laser3.copyroom.hut 6534
+laser3.copyroom.hut maryann.girl.hut 9170
+laser3.copyroom.hut gilligan.crew.hut 4417
+professor.hut professor.hut 4464
+skipper.crew.hut skipper.crew.hut 1507
+skipper.crew.hut ginger.girl.hut 8997
+gilligan.crew.hut laser3.copyroom.hut 364
+maryann.girl.hut professor.hut 9167
+fileserver.copyroom.hut maryann.girl.hut 6282
+laser3.copyroom.hut laser3.copyroom.hut 2275
+skipper.crew.hut gilligan.crew.hut 9385
+skipper.crew.hut professor.hut 9813
+fileserver.copyroom.hut ginger.girl.hut 6386
+professor.hut gilligan.crew.hut 1950
+ginger.girl.hut gilligan.crew.hut 1948
+ginger.girl.hut professor.hut 6423
+laser3.copyroom.hut skipper.crew.hut 364
+fileserver.copyroom.hut laser3.copyroom.hut 1809
+laser3.copyroom.hut skipper.crew.hut 3770
+gilligan.crew.hut maryann.girl.hut 109
+skipper.crew.hut laser3.copyroom.hut 3517
+professor.hut maryann.girl.hut 157
+gilligan.crew.hut gilligan.crew.hut 6194
+maryann.girl.hut maryann.girl.hut 1668
+fileserver.copyroom.hut skipper.crew.hut 4529
+gilligan.crew.hut laser3.copyroom.hut 9449
+laser3.copyroom.hut professor.hut 1420
+ginger.girl.hut ginger.girl.hut 7896
+fileserver.copyroom.hut laser3.copyroom.hut 2694
+skipper.crew.hut laser3.copyroom.hut 8357
+ginger.girl.hut fileserver.copyroom.hut 6711
+skipper.crew.hut fileserver.copyroom.hut 3973
+fileserver.copyroom.hut skipper.crew.hut 1034
+ginger.girl.hut skipper.crew.hut 3048
+ginger.girl.hut laser3.copyroom.hut 2672
+maryann.girl.hut professor.hut 7430
+skipper.crew.hut maryann.girl.hut 4421
+laser3.copyroom.hut professor.hut 8230
+professor.hut ginger.girl.hut 6758
+skipper.crew.hut laser3.copyroom.hut 5907
+maryann.girl.hut ginger.girl.hut 9531
+professor.hut fileserver.copyroom.hut 9203
+professor.hut skipper.crew.hut 1025
+fileserver.copyroom.hut skipper.crew.hut 3313
+professor.hut skipper.crew.hut 6747
+gilligan.crew.hut ginger.girl.hut 626
+ginger.girl.hut skipper.crew.hut 249
+professor.hut gilligan.crew.hut 8098
+professor.hut fileserver.copyroom.hut 1654
+ginger.girl.hut fileserver.copyroom.hut 9243
+maryann.girl.hut maryann.girl.hut 3206
+ginger.girl.hut professor.hut 1412
+skipper.crew.hut skipper.crew.hut 3159
+professor.hut skipper.crew.hut 7887
+laser3.copyroom.hut fileserver.copyroom.hut 1903
blob - /dev/null
blob + b386454d9cdd59c0bd8f80451cac1612744db5d7 (mode 755)
--- /dev/null
+++ 5.References.And.Scoping/make_coconet_dat.pl
+#!/usr/bin/perl
+use v5.10;
+
+my $records = $ARGV[0] // 10_000;
+
+my @network = (
+ [ qw(crew.hut gilligan skipper) ],
+ [ qw(girl.hut ginger maryann) ],
+ [ qw(hut professor) ],
+ [ qw(copyroom.hut laser3 fileserver) ],
+ );
+
+my @hosts = map {
+ my( $domain, @hosts ) = @$_;
+
+ map { "$_.$domain" } @hosts;
+ } @network;
+
+foreach( 1 .. $records ) {
+ my( $host1, $host2 ) = map { $hosts[ rand @hosts ] } 1..2;
+ my $bytes = int rand 10_000;
+ say join "\t", $host1, $host2, $bytes;
+ }
blob - /dev/null
blob + 68166449ffc8e6912e64a4a8e493baa3748aaff7 (mode 644)
--- /dev/null
+++ 6.Manipulating.Complex.Data.Structures/create_wish_lists.pl
+use v5.14;
+
+my $output_lines = 0;
+my $records = $ARGV[0] // 50;
+
+my $crew_items = [ qw( flares rope GPS patch_kit marine_radio ) ];
+my $luxuries = [ qw( TV telephone_dialer corkscrew valet golf_bag ) ];
+my $tools = [ qw( screwdriver duct_tape WD40 thermocouple batteries ) ];
+my $common = [ qw( cheese steak_knife umbrella fork shampoo cheetos) ];
+
+my $crew_wants = {
+ Gilligan => [ $crew_items ],
+ Skipper => [ $crew_items ],
+ Thurston => [ $luxuries ],
+ Ginger => [ ],
+ 'Mary Ann' => [ ],
+ Professor => [ $tools ],
+ };
+
+foreach my $value ( values $crew_wants ) {
+ push $value, $common;
+ }
+
+while( $output_lines < $records ) {
+ state %Seen;
+ my $castaway = ( keys %$crew_wants )[ rand keys %$crew_wants ];
+ my $castaway_array = $crew_wants->{$castaway};
+ my $select_from = $castaway_array->[ rand @$castaway_array ];
+
+ my $item = $select_from->[ rand @$select_from ];
+
+ next unless $item;
+ next if $Seen{$castaway}{$item}++;
+
+ $output_lines++;
+ say join "\t", $castaway, $item;
+ }
blob - /dev/null
blob + aca1553f467de1af4dccbd0337e235aa2ad2a99b (mode 644)
--- /dev/null
+++ 7.Subroutine.References/ex7.1.pl
+#!perl
+
+use strict;
+use warnings;
+use utf8;
+
+use File::Find;
+use Time::Local;
+
+my $target_dow = 1; # Sunday is 0, Monday is 1, ...
+my @starting_directories = (".");
+
+my $seconds_per_day = 24 * 60 * 60;
+my($sec, $min, $hour, $day, $mon, $yr, $dow) = localtime;
+my $start = timelocal(0, 0, 0, $day, $mon, $yr); # midnight today
+
+while ($dow != $target_dow) {
+ # Back up one day
+ $start -= $seconds_per_day; # hope no DST! :-)
+ if (--$dow < 0) {
+ $dow += 7;
+ }
+}
+my $stop = $start + $seconds_per_day;
+
+my($gather, $yield) = gather_mtime_between($start, $stop);
+find($gather, @starting_directories);
+my @files = $yield->( );
+
+for my $file (@files) {
+ my $mtime = (stat $file)[9]; # mtime via slice
+ my $when = localtime $mtime;
+ print "$when: $file\n";
+}
blob - /dev/null
blob + 2d0bf243ba94f0fa8874835590e817f340e82bc9 (mode 644)
--- /dev/null
+++ 8.Filehandle.References/8.2-data-file.txt
+Mary-Ann: 5 flowers
+Mr. Howell: 3 coconuts
+Ginger: 1 crab
+Mr. Howell: 5 papayas
+Professor: 1 papaya
+Gilligan: 1 papaya
+Professor: 1 crab
+Mary-Ann: 1 flower
+Skipper: 2 flowers
+Ginger: 2 papayas
+Mrs. Howell: 5 crabs
+Mary-Ann: 5 coconuts
+Mrs. Howell: 2 bananas
+Skipper: 5 flowers
+Ginger: 3 crabs
+Ginger: 4 coconuts
+Mrs. Howell: 4 papayas
+Mr. Howell: 2 papayas
+Professor: 4 flowers
+Gilligan: 4 papayas
+Ginger: 3 flowers
+Mr. Howell: 1 crab
+Mrs. Howell: 4 papayas
+Mary-Ann: 4 coconuts
+Professor: 4 bananas
+Professor: 3 papayas
+Professor: 1 papaya
+Professor: 1 flower
+Mrs. Howell: 3 papayas
+Professor: 2 crabs
+Ginger: 5 bananas
+Mrs. Howell: 1 banana
+Mary-Ann: 1 papaya
+Mary-Ann: 3 flowers
+Ginger: 4 crabs
+Professor: 3 bananas
+Mrs. Howell: 1 papaya
+Gilligan: 1 flower
+Professor: 3 papayas
+Mrs. Howell: 3 papayas
+Mr. Howell: 5 bananas
+Mr. Howell: 4 bananas
+Professor: 4 papayas
+Mary-Ann: 5 flowers
+Skipper: 4 flowers
+Ginger: 2 papayas
+Ginger: 2 crabs
+Skipper: 3 papayas
+Mary-Ann: 4 bananas
+Mrs. Howell: 4 crabs
+Mrs. Howell: 1 crab
+Mrs. Howell: 2 papayas
+Ginger: 3 crabs
+Mr. Howell: 2 coconuts
+Mary-Ann: 4 flowers
+Gilligan: 3 crabs
+Mary-Ann: 4 coconuts
+Mrs. Howell: 5 papayas
+Mr. Howell: 5 papayas
+Ginger: 4 flowers
+Mr. Howell: 3 coconuts
+Professor: 2 crabs
+Mary-Ann: 3 papayas
+Professor: 3 bananas
+Mrs. Howell: 5 bananas
+Mrs. Howell: 2 coconuts
+Mrs. Howell: 3 papayas
+Mr. Howell: 1 coconut
+Mrs. Howell: 4 coconuts
+Mr. Howell: 2 bananas
+Skipper: 5 papayas
+Mrs. Howell: 5 crabs
+Mary-Ann: 5 papayas
+Mrs. Howell: 1 papaya
+Gilligan: 3 papayas
+Professor: 4 crabs
+Professor: 4 coconuts
+Mr. Howell: 4 papayas
+Professor: 5 crabs
+Professor: 1 papaya
+Mr. Howell: 1 crab
+Professor: 2 flowers
+Skipper: 3 crabs
+Mary-Ann: 2 crabs
+Mrs. Howell: 2 bananas
+Mary-Ann: 3 papayas
+Mr. Howell: 5 bananas
+Mrs. Howell: 4 papayas
+Mr. Howell: 5 coconuts
+Mrs. Howell: 1 papaya
+Ginger: 2 coconuts
+Mary-Ann: 5 crabs
+Professor: 5 flowers
+Professor: 5 flowers
+Ginger: 5 coconuts
+Skipper: 4 flowers
+Mrs. Howell: 3 flowers
+Professor: 4 coconuts
+Ginger: 5 flowers
+Professor: 4 crabs
+Mary-Ann: 1 crab
blob - /dev/null
blob + 8a7aaee160afe1b736bf70697593640e7e9ffc07 (mode 755)
--- /dev/null
+++ 8.Filehandle.References/make-8.2-data-file.pl
+#!/usr/bin/perl
+use v5.10.1;
+use utf8;
+use strict;
+use warnings;
+
+my @castaways = ( qw(Skipper Professor Gilligan Mary-Ann Ginger),
+ 'Mr. Howell', 'Mrs. Howell' );
+my @things = qw(coconut banana papaya flower crab);
+
+foreach ( 0 .. 100 ) {
+ my $castaway = $castaways[ rand @castaways ];
+ my $thing = $things[ rand @things ];
+ my $number = 1 + int rand 5;
+ $thing .= 's' if $number > 1;
+ say "$castaway: $number $thing";
+ }
+
+
blob - /dev/null
blob + 10f14d8337ee178159e2b16ed85926c3f8bd0c3a (mode 755)
--- /dev/null
+++ 9.Regex.References/rightmost.pl
+#!/usr/bin/perl
+use utf8;
+use strict;
+use warnings;
+
+use v5.12;
+
+my %patterns = (
+ Gilligan => qr/(?:Wiley )?Gilligan/,
+ 'Mary-Ann' => qr/Mary-Ann/,
+ Ginger => qr/Ginger/,
+ Professor => qr/(?:The )?Professor/,
+ Skipper => qr/Skipper/,
+ 'A Howell' => qr/Mrs?. Howell/,
+);
+
+rightmost(
+ 'There is Mrs. Howell, Ginger, and Gilligan',
+ @patterns{ sort keys %patterns }
+);
+
+sub rightmost {
+ my( $string, @patterns ) = @_;
+
+ my $rightmost = -1;
+ while( my( $i, $pattern ) = each @patterns ) {
+ my $position = $string =~ m/$pattern/ ? $-[0] : -1;
+ $rightmost = $position if $position > $rightmost;
+ }
+
+return $rightmost;
+}
blob - /dev/null
blob + bf0cc15bcfa968d2569432a7a9ad20c62f436bc8 (mode 644)
Binary files /dev/null and Intermediate_Perl_Second_Edition_signed_page.pdf differ
blob - /dev/null
blob + d714441f66d51974ff75bde575daa2e4b350dc18 (mode 644)
--- /dev/null
+++ Oogaboogoo.pm
+#!/usr/bin/perl
+
+# The Oogaboogoo natives on the island have unusual names for the days and
+# months. Here is some simple but not very well-written code from Gilligan.
+# Fix it up, add a conversion function for the month names, and make the
+# whole thing into a library. For extra credit, add suitable error checking
+# and consider what should be in the documentation.
+#
+# @day = qw(ark dip wap sen pop sep kir);
+# sub number_to_day_name { my $num = shift @_; $day[$num]; }
+# @month = qw(diz pod bod rod sip wax lin sen kun fiz nap dep);
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+package Oogaboogoo;
+
+my @day = qw(ark dip wap sen pop sep kir);
+my @month = qw(diz pod bod rod sip wax lin sen kun fiz nap dep);
+sub number_to_day_name {
+ my $num = shift @_;
+ die "Invalid day number" if $num >= 7 or $num < 0;
+ $day[$num];
+}
+sub number_to_month_name {
+ my $num = shift @_;
+ die "Invalid month number" if $num >= 12 or $num < 0;
+ $month[$num];
+}
+1;
blob - /dev/null
blob + 415b5eec8a5272d51ae2ef31060371681e217d34 (mode 644)
--- /dev/null
+++ ex10-1.pl
+#!/usr/bin/perl
+
+# Using the glob operator, a naive sort of every name in your home directory
+# by their relative sizes might be written as:
+#
+# chdir; # the default is our home directory;
+# my @sorted = sort { -s $a <=> -s $b } glob '*';
+#
+# Rewrite this using the Schwartzian Transform technique.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+chdir;
+my @sorted = map { $_->[0] } sort { $a->[1] <=> $b->[1] } map { [$_, -s] } glob '*';
+print join "\n", @sorted;
blob - /dev/null
blob + 5f1cb6d3771ecc4574c2c093e4769a9dc8eb39d6 (mode 644)
--- /dev/null
+++ ex10-2.pl
+#!/usr/bin/perl
+
+# Read up on the Benchmark module, included with Perl. Write a program that
+# will answer the question, "How much does using the Schwartzian Transform
+# speed up the task of Exercise 1?"
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+use Benchmark qw(:all) ;
+
+my $t0, my $t1, my $td;
+
+sub naive {
+ chdir; # the default is our home directory;
+ my @sorted = sort { -s $a <=> -s $b } glob '*';
+}
+
+sub schwartz {
+ chdir;
+ my @sorted = map { $_->[0] } sort { $a->[1] <=> $b->[1] } map { [$_, -s] } glob '*';
+ #print join "\n", @sorted;
+}
+
+$t0 = Benchmark->new;
+timethis(1000, \&naive);
+$t1 = Benchmark->new;
+$td = timediff($t1, $t0);
+print "the code took:",timestr($td),"\n";
+
+$t0 = Benchmark->new;
+timethis(1000, \&schwartz);
+$t1 = Benchmark->new;
+$t1 = Benchmark->new;
+$td = timediff($t1, $t0);
+print "the code took:",timestr($td),"\n";
blob - /dev/null
blob + 51e675ab0e4470249a8660fbc0eb4bef0a11a816 (mode 644)
--- /dev/null
+++ ex10-3.pl
+#!/usr/bin/perl
+
+# Using a Schwartzian Transform, read a list of words and sort them in
+# "dictionary order." Dictionary order ignores all capitalization and
+# internal punctuation. Hint: The following transformation might be useful:
+#
+# my $string = 'Mary Ann';
+# $string =~ tr/A-Z/a-z/;
+# $string =~ tr/a-z//cd;
+# print $string;
+
+# Be sure you don't mangle the data! If the input includes 'the Professor'
+# and 'The Skipper', the output should have them listed in that order, with
+# that capitalization.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+chomp(my @lines = <>);
+
+my @sorted =
+ map { $_->[0] }
+ sort { $a->[1] cmp $b->[1] }
+ map {
+ my $str = $_;
+ $str =~ tr/A-Z/a-z/;
+ $str =~ tr/a-z//cd;
+ [$_, $str]
+ } @lines;
+print join "\n", @sorted;
blob - /dev/null
blob + ed63d5fb492fe572b952a1b1037e41738226c754 (mode 644)
--- /dev/null
+++ ex10-4.pl
+#!/usr/bin/perl
+
+# Modify the recursive directory dumping routine so it shows the nested
+# directories through indentation. An empty directory should show up as:
+#
+# sandbar, an empty directory
+#
+# while a nonempty directory should appear with nested contents, indented two
+# spaces:
+#
+# uss_minnow, with contents:
+# anchor
+# broken_radio
+# galley, with contents:
+# captain_crunch_cereal
+# gallon_of_milk
+# tuna_fish_sandiwch
+# life_preservers
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use File::Basename;
+
+sub data_for_path {
+ my $path = shift;
+ if (-f $path or -l $path) {
+ return undef;
+ } elsif (-d $path) {
+ my %directory;
+ opendir PATH, $path or die "Cannot opendir $path: $!";
+ my @names = readdir PATH;
+ closedir PATH;
+ for my $name (@names) {
+ next if $name eq '.' or $name eq '..';
+ $directory{$name} = data_for_path("$path/$name");
+ }
+ return \%directory;
+ } else {
+ warn "$path is neither a file nor a directory\n";
+ return undef;
+ }
+}
+
+sub dump_data_for_path {
+ my ($path, $data, $level) = @_;
+ if (not defined $data) {
+ print " "x$level;
+ print basename($path)."\n";
+ return;
+ }
+ print " "x$level;
+ print basename($path).":\n";
+ foreach (sort keys %$data) {
+ dump_data_for_path("$path/$_", $data->{$_}, $level+1);
+ }
+}
+chdir "/home/jrmu/documents";
+dump_data_for_path(".", data_for_path("."), 0);
blob - /dev/null
blob + 198f63d293eaf1f39291149120ec597118c18f4b (mode 644)
--- /dev/null
+++ ex10-5.pl
+#!/usr/bin/perl
+
+# Modify the iterative version of data_for_path to handle both depth-first or
+# breadth-first traversal. Use an optional third argument to allow the user
+# to decide which to use:
+
+#my $depth = data_for_path( $start_dir, $threshold, 'depth-first');
+#my $breadth = data_for_path( $start_dir, $threshold, 'breadth-first');
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use File::Basename;
+use File::Spec::Functions;
+
+sub data_for_path {
+ my ($path, $threshold, $order) = @_;
+ my $data = {};
+ my @queue = ( [$path, 0, $data] );
+ while (my $next = shift @queue) {
+ my ($path, $level, $ref) = @$next;
+ my $basename = basename($path);
+ $ref->{$basename} = do {
+ if (-f $path or -l $path) { undef }
+ else {
+ my $hash = {};
+ if ($level < $threshold) {
+ opendir(my $dh, $path);
+ my @new_paths = map {
+ catfile($path, $_);
+ } grep { ! /^\.\.?\z/ } readdir $dh;
+ if ($order eq 'breadth-first') {
+ unshift @queue, map { [$_, $level+1, $hash] } @new_paths;
+ } elsif ($order eq 'depth-first') {
+ push @queue, map { [$_, $level+1, $hash] } @new_paths;
+ }
+ }
+ $hash;
+ }
+ };
+ }
+ $data;
+}
+
+sub dump_data_for_path {
+ my ($path, $data, $level) = @_;
+ if (not defined $data) {
+ print "$path\n";
+ return;
+ }
+ foreach (sort keys %$data) {
+ dump_data_for_path("$path/$_", $data->{$_});
+ }
+}
+my $start_dir = '/home/jrmu/documents';
+my $threshold = 3;
+my $depth = data_for_path( $start_dir, $threshold, 'depth-first');
+my $breadth = data_for_path( $start_dir, $threshold, 'breadth-first');
blob - /dev/null
blob + 198f63d293eaf1f39291149120ec597118c18f4b (mode 644)
--- /dev/null
+++ ex10-6.pl
+#!/usr/bin/perl
+
+# Modify the iterative version of data_for_path to handle both depth-first or
+# breadth-first traversal. Use an optional third argument to allow the user
+# to decide which to use:
+
+#my $depth = data_for_path( $start_dir, $threshold, 'depth-first');
+#my $breadth = data_for_path( $start_dir, $threshold, 'breadth-first');
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use File::Basename;
+use File::Spec::Functions;
+
+sub data_for_path {
+ my ($path, $threshold, $order) = @_;
+ my $data = {};
+ my @queue = ( [$path, 0, $data] );
+ while (my $next = shift @queue) {
+ my ($path, $level, $ref) = @$next;
+ my $basename = basename($path);
+ $ref->{$basename} = do {
+ if (-f $path or -l $path) { undef }
+ else {
+ my $hash = {};
+ if ($level < $threshold) {
+ opendir(my $dh, $path);
+ my @new_paths = map {
+ catfile($path, $_);
+ } grep { ! /^\.\.?\z/ } readdir $dh;
+ if ($order eq 'breadth-first') {
+ unshift @queue, map { [$_, $level+1, $hash] } @new_paths;
+ } elsif ($order eq 'depth-first') {
+ push @queue, map { [$_, $level+1, $hash] } @new_paths;
+ }
+ }
+ $hash;
+ }
+ };
+ }
+ $data;
+}
+
+sub dump_data_for_path {
+ my ($path, $data, $level) = @_;
+ if (not defined $data) {
+ print "$path\n";
+ return;
+ }
+ foreach (sort keys %$data) {
+ dump_data_for_path("$path/$_", $data->{$_});
+ }
+}
+my $start_dir = '/home/jrmu/documents';
+my $threshold = 3;
+my $depth = data_for_path( $start_dir, $threshold, 'depth-first');
+my $breadth = data_for_path( $start_dir, $threshold, 'breadth-first');
blob - /dev/null
blob + da9af5ca0727e6208e3de2137d7436af33a7601d (mode 644)
--- /dev/null
+++ ex11-1.pl
+#!/usr/bin/perl
+
+# The Oogaboogoo natives on the island have unusual names for the days and
+# months. Here is some simple but not very well-written code from Gilligan.
+# Fix it up, add a conversion function for the month names, and make the
+# whole thing into a library. For extra credit, add suitable error checking
+# and consider what should be in the documentation.
+#
+# @day = qw(ark dip wap sen pop sep kir);
+# sub number_to_day_name { my $num = shift @_; $day[$num]; }
+# @month = qw(diz pod bod rod sip wax lin sen kun fiz nap dep);
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+package Oogaboogoo;
+
+@day = qw(ark dip wap sen pop sep kir);
+@month = qw(diz pod bod rod sip wax lin sen kun fiz nap dep);
+sub number_to_day_name {
+ my $num = shift @_;
+ die "Invalid day number" if $num >= 7 or $num < 0;
+ $day[$num];
+}
+sub number_to_month_name {
+ my $num = shift @_;
+ die "Invalid month number" if $num >= 12 or $num < 0;
+ $month[$num];
+}
+1;
blob - /dev/null
blob + dbc8a2421d1090e2230a3375e26ee96d231f48b6 (mode 644)
--- /dev/null
+++ ex11-2.pl
+#!/usr/bin/perl
+
+# Make a program that uses your library and the following code to print out a
+# message, such as "Today is dip sen 15 2011", meaning that today is a Monday
+# in August. You might use localtime:
+#
+# my($sec, $min, $hour, $mday, $mon, $year, $wday) = localtime;
+#
+# Hint: The year and month numbers returned by localtime may not be what
+# you'd expect, so you need to check the documentation.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+require './Oogaboogoo.pm';
+
+my($sec, $min, $hour, $mday, $mon, $year, $wday) = localtime;
+printf("Today is %s %s %d %d\n", Oogaboogoo::number_to_day_name($wday),Oogaboogoo::number_to_month_name($mon),$mday,$year+1900);
blob - /dev/null
blob + f780fb969831a7cb149db8b521f0a9f5780dc771 (mode 644)
--- /dev/null
+++ ex12-1.pl
+#!/usr/bin/perl
+
+# Create your own Animal distribution with Module::Starter by running
+# module-starter from the command line. Build the distribution and run the
+# tests. Since you haven't changed anything, all the test should pass.
+#
+# To see what happens when you have an error in your module, create some sort
+# of syntax error in Animal.pm. Rerun the tests. The tests should fail this
+# time. Don't worry about messing anything up because you can just rerun
+# module-starter!
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
blob - /dev/null
blob + 44afd94d8e54f7b0a0cb8cfd0cc7a71248289d9d (mode 644)
Binary files /dev/null and ex13-1/Animal/Animal-0.01.tar.gz differ
blob - /dev/null
blob + 385c2e01fd43aadfcf68be3715b36efa190dcd3b (mode 755)
--- /dev/null
+++ ex13-1/Animal/Build
+#! /usr/bin/perl
+
+use strict;
+use Cwd;
+use File::Basename;
+use File::Spec;
+
+sub magic_number_matches {
+ return 0 unless -e '_build/magicnum';
+ my $FH;
+ open $FH, '<','_build/magicnum' or return 0;
+ my $filenum = <$FH>;
+ close $FH;
+ return $filenum == 21660;
+}
+
+my $progname;
+my $orig_dir;
+BEGIN {
+ $^W = 1; # Use warnings
+ $progname = basename($0);
+ $orig_dir = Cwd::cwd();
+ my $base_dir = '/home/jrmu/documents/intermediateperl/ex13-1/Animal';
+ if (!magic_number_matches()) {
+ unless (chdir($base_dir)) {
+ die ("Couldn't chdir($base_dir), aborting\n");
+ }
+ unless (magic_number_matches()) {
+ die ("Configuration seems to be out of date, please re-run 'perl Build.PL' again.\n");
+ }
+ }
+ unshift @INC,
+ (
+
+ );
+
+}
+
+close(*DATA) unless eof(*DATA); # ensure no open handles to this script
+
+use Module::Build;
+Module::Build->VERSION(q{0});
+
+# Some platforms have problems setting $^X in shebang contexts, fix it up here
+$^X = Module::Build->find_perl_interpreter;
+
+if (-e 'Build.PL' and not Module::Build->up_to_date('Build.PL', $progname)) {
+ warn "Warning: Build.PL has been altered. You may need to run 'perl Build.PL' again.\n";
+}
+
+# This should have just enough arguments to be able to bootstrap the rest.
+my $build = Module::Build->resume (
+ properties => {
+ config_dir => '_build',
+ orig_dir => $orig_dir,
+ },
+);
+
+$build->dispatch;
blob - /dev/null
blob + 3334044606aacdd52c00a2adfbc998c79e8782c2 (mode 644)
--- /dev/null
+++ ex13-1/Animal/Build.PL
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ module_name => 'Animal',
+ license => 'unrestricted',
+ dist_author => q{jrmu <jrmu@ircnow.org>},
+ dist_version_from => 'lib/Animal.pm',
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ add_to_cleanup => [ 'Animal-*' ],
+ create_makefile_pl => 'traditional',
+);
+
+$builder->create_build_script();
blob - /dev/null
blob + 1aab6b2cc220a648984bc05961c4f0915cfd10b4 (mode 644)
--- /dev/null
+++ ex13-1/Animal/Changes
+Revision history for Animal
+
+0.01 Date/time
+ First version, released on an unsuspecting world.
+
blob - /dev/null
blob + 79da4fc6f33b2967a07dfeb250250e97fa2980c3 (mode 644)
--- /dev/null
+++ ex13-1/Animal/MANIFEST
+Build.PL
+Changes
+MANIFEST
+README
+lib/Animal.pm
+lib/Cow.pm
+lib/Horse.pm
+lib/Mouse.pm
+lib/Sheep.pm
+t/00-load.t
+t/manifest.t
+t/pod-coverage.t
+t/pod.t
+Makefile.PL
+META.yml
+META.json
blob - /dev/null
blob + 3343774737db5691f7cc24343a86c1609b038bbc (mode 644)
--- /dev/null
+++ ex13-1/Animal/META.json
+{
+ "abstract" : "The great new Animal!",
+ "author" : [
+ "jrmu <jrmu@ircnow.org>"
+ ],
+ "dynamic_config" : 1,
+ "generated_by" : "Module::Build version 0.4231",
+ "license" : [
+ "unrestricted"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : 2
+ },
+ "name" : "Animal",
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "Test::More" : "0"
+ }
+ },
+ "configure" : {
+ "requires" : {
+ "Module::Build" : "0.42"
+ }
+ }
+ },
+ "provides" : {
+ "Animal" : {
+ "file" : "lib/Animal.pm",
+ "version" : "0.01"
+ },
+ "Cow" : {
+ "file" : "lib/Cow.pm",
+ "version" : "0.01"
+ },
+ "Horse" : {
+ "file" : "lib/Horse.pm",
+ "version" : "0.01"
+ },
+ "Mouse" : {
+ "file" : "lib/Mouse.pm",
+ "version" : "0.01"
+ },
+ "Sheep" : {
+ "file" : "lib/Sheep.pm",
+ "version" : "0.01"
+ }
+ },
+ "release_status" : "stable",
+ "version" : "0.01",
+ "x_serialization_backend" : "JSON::PP version 4.07"
+}
blob - /dev/null
blob + 2db6a8f46693a53e9810e3f4a0c789089ec98aba (mode 644)
--- /dev/null
+++ ex13-1/Animal/META.yml
+---
+abstract: 'The great new Animal!'
+author:
+ - 'jrmu <jrmu@ircnow.org>'
+build_requires:
+ Test::More: '0'
+configure_requires:
+ Module::Build: '0.42'
+dynamic_config: 1
+generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
+license: unrestricted
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: '1.4'
+name: Animal
+provides:
+ Animal:
+ file: lib/Animal.pm
+ version: '0.01'
+ Cow:
+ file: lib/Cow.pm
+ version: '0.01'
+ Horse:
+ file: lib/Horse.pm
+ version: '0.01'
+ Mouse:
+ file: lib/Mouse.pm
+ version: '0.01'
+ Sheep:
+ file: lib/Sheep.pm
+ version: '0.01'
+version: '0.01'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
blob - /dev/null
blob + 5186f012b58d4fb6f802519fe1c2e8245cb438e0 (mode 644)
--- /dev/null
+++ ex13-1/Animal/MYMETA.json
+{
+ "abstract" : "The great new Animal!",
+ "author" : [
+ "jrmu <jrmu@ircnow.org>"
+ ],
+ "dynamic_config" : 0,
+ "generated_by" : "Module::Build version 0.4231",
+ "license" : [
+ "unrestricted"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : 2
+ },
+ "name" : "Animal",
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "Test::More" : "0"
+ }
+ }
+ },
+ "provides" : {
+ "Animal" : {
+ "file" : "lib/Animal.pm",
+ "version" : "0.01"
+ },
+ "Cow" : {
+ "file" : "lib/Cow.pm",
+ "version" : "0.01"
+ },
+ "Horse" : {
+ "file" : "lib/Horse.pm",
+ "version" : "0.01"
+ },
+ "Mouse" : {
+ "file" : "lib/Mouse.pm",
+ "version" : "0.01"
+ },
+ "Sheep" : {
+ "file" : "lib/Sheep.pm",
+ "version" : "0.01"
+ }
+ },
+ "release_status" : "stable",
+ "version" : "0.01",
+ "x_serialization_backend" : "JSON::PP version 4.07"
+}
blob - /dev/null
blob + d90297f0836163b4f9971651c5f823a615fd8195 (mode 644)
--- /dev/null
+++ ex13-1/Animal/MYMETA.yml
+---
+abstract: 'The great new Animal!'
+author:
+ - 'jrmu <jrmu@ircnow.org>'
+build_requires:
+ Test::More: '0'
+dynamic_config: 0
+generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
+license: unrestricted
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: '1.4'
+name: Animal
+provides:
+ Animal:
+ file: lib/Animal.pm
+ version: '0.01'
+ Cow:
+ file: lib/Cow.pm
+ version: '0.01'
+ Horse:
+ file: lib/Horse.pm
+ version: '0.01'
+ Mouse:
+ file: lib/Mouse.pm
+ version: '0.01'
+ Sheep:
+ file: lib/Sheep.pm
+ version: '0.01'
+version: '0.01'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
blob - /dev/null
blob + eec455d952573d973a10cabd80adde297171fa89 (mode 644)
--- /dev/null
+++ ex13-1/Animal/Makefile.PL
+# Note: this file was auto-generated by Module::Build::Compat version 0.4231
+use ExtUtils::MakeMaker;
+WriteMakefile
+(
+ 'INSTALLDIRS' => 'site',
+ 'NAME' => 'Animal',
+ 'VERSION_FROM' => 'lib/Animal.pm',
+ 'EXE_FILES' => [],
+ 'PL_FILES' => {},
+ 'PREREQ_PM' => {
+ 'Test::More' => 0
+ }
+)
+;
blob - /dev/null
blob + 8850404bb9803701dbc05ef862b2ff934c18229a (mode 644)
--- /dev/null
+++ ex13-1/Animal/README
+Animal
+
+The README is used to introduce the module and provide instructions on
+how to install the module, any machine dependencies it may have (for
+example C compilers and installed libraries) and any other information
+that should be provided before the module is installed.
+
+A README file is required for CPAN modules since CPAN extracts the README
+file from a module distribution so that people browsing the archive
+can use it to get an idea of the module's uses. It is usually a good idea
+to provide version information here so that people can decide whether
+fixes for the module are worth downloading.
+
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Build.PL
+ ./Build
+ ./Build test
+ ./Build install
+
+SUPPORT AND DOCUMENTATION
+
+After installing, you can find documentation for this module with the
+perldoc command.
+
+ perldoc Animal
+
+You can also look for information at:
+
+ RT, CPAN's request tracker
+ http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal
+
+ AnnoCPAN, Annotated CPAN documentation
+ http://annocpan.org/dist/Animal
+
+ CPAN Ratings
+ http://cpanratings.perl.org/d/Animal
+
+ Search CPAN
+ http://search.cpan.org/dist/Animal/
+
+
+LICENSE AND COPYRIGHT
+
+Copyright (C) 2023 jrmu
+
+This program is released under the following license: unrestricted
+
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/auto_features
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + b3280ba90426915e354058348c491c27448365f1 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/build_params
+do{ my $x = [
+ {
+ 'ARGV' => []
+ },
+ {},
+ {
+ 'PL_files' => undef,
+ '_added_to_INC' => [],
+ 'allow_mb_mismatch' => 0,
+ 'allow_pureperl' => 0,
+ 'auto_configure_requires' => 1,
+ 'autosplit' => undef,
+ 'base_dir' => '/home/jrmu/documents/intermediateperl/ex13-1/Animal',
+ 'bindoc_dirs' => [
+ 'blib/script'
+ ],
+ 'blib' => 'blib',
+ 'build_bat' => 0,
+ 'build_class' => 'Module::Build',
+ 'build_elements' => [
+ 'PL',
+ 'support',
+ 'pm',
+ 'xs',
+ 'share_dir',
+ 'pod',
+ 'script'
+ ],
+ 'build_requires' => {
+ 'Test::More' => 0
+ },
+ 'build_script' => 'Build',
+ 'bundle_inc' => [],
+ 'bundle_inc_preload' => [],
+ 'c_source' => undef,
+ 'config' => undef,
+ 'config_dir' => '_build',
+ 'configure_requires' => {},
+ 'conflicts' => {},
+ 'cover' => undef,
+ 'cpan_client' => 'cpan',
+ 'create_license' => undef,
+ 'create_makefile_pl' => 'traditional',
+ 'create_packlist' => 1,
+ 'create_readme' => undef,
+ 'debug' => undef,
+ 'debugger' => undef,
+ 'destdir' => undef,
+ 'dist_abstract' => undef,
+ 'dist_author' => [
+ 'jrmu <jrmu@ircnow.org>'
+ ],
+ 'dist_name' => 'Animal',
+ 'dist_suffix' => undef,
+ 'dist_version' => '0.01',
+ 'dist_version_from' => 'lib/Animal.pm',
+ 'dynamic_config' => 1,
+ 'extra_compiler_flags' => [],
+ 'extra_linker_flags' => [],
+ 'extra_manify_args' => undef,
+ 'get_options' => {},
+ 'has_config_data' => undef,
+ 'html_css' => '',
+ 'include_dirs' => [],
+ 'install_base' => undef,
+ 'install_base_relpaths' => {},
+ 'install_path' => {},
+ 'install_sets' => {},
+ 'installdirs' => 'site',
+ 'libdoc_dirs' => [
+ 'blib/lib',
+ 'blib/arch'
+ ],
+ 'license' => 'unrestricted',
+ 'magic_number' => undef,
+ 'mb_version' => '0.4231',
+ 'meta_add' => {},
+ 'meta_merge' => {},
+ 'metafile' => 'META.yml',
+ 'metafile2' => 'META.json',
+ 'module_name' => 'Animal',
+ 'mymetafile' => 'MYMETA.yml',
+ 'mymetafile2' => 'MYMETA.json',
+ 'needs_compiler' => '',
+ 'orig_dir' => '/home/jrmu/documents/intermediateperl/ex13-1/Animal',
+ 'original_prefix' => {},
+ 'perl' => '/usr/bin/perl',
+ 'pm_files' => undef,
+ 'pod_files' => undef,
+ 'pollute' => undef,
+ 'prefix' => undef,
+ 'prefix_relpaths' => {},
+ 'prereq_action_types' => [
+ 'requires',
+ 'build_requires',
+ 'test_requires',
+ 'conflicts',
+ 'recommends'
+ ],
+ 'program_name' => undef,
+ 'pureperl_only' => 0,
+ 'quiet' => undef,
+ 'recommends' => {},
+ 'recurse_into' => [],
+ 'recursive_test_files' => undef,
+ 'release_status' => 'stable',
+ 'requires' => {},
+ 'script_files' => undef,
+ 'scripts' => undef,
+ 'share_dir' => undef,
+ 'sign' => undef,
+ 'tap_harness_args' => {},
+ 'test_file_exts' => [
+ '.t'
+ ],
+ 'test_files' => undef,
+ 'test_requires' => {},
+ 'use_rcfile' => 1,
+ 'use_tap_harness' => 0,
+ 'verbose' => undef,
+ 'xs_files' => undef
+ }
+ ];
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 296c3f8db94ff321b2f71feef5caa5d4e96a8196 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/cleanup
+do{ my $x = {
+ 'Animal-*' => 1,
+ 'Animal-0.01' => 1,
+ 'blib' => 1
+ };
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/config_data
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/features
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 13c05ec8a0a2680d7edcd6dcfe9fae537611d3aa (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/magicnum
+21660
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/notes
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 6a66ec5e54aebe9dc2b4027788898fb8f091c244 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/prereqs
+do{ my $x = {
+ 'build_requires' => {
+ 'Test::More' => 0
+ },
+ 'conflicts' => {},
+ 'recommends' => {},
+ 'requires' => {},
+ 'test_requires' => {}
+ };
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal/_build/runtime_params
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 9a10d8cdcdf0a5594d884ff0725a23d91291d1db (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/lib/Animal.pm
+package Animal;
+
+use warnings;
+use strict;
+
+=head1 NAME
+
+Animal - The great new Animal!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Animal;
+
+ my $foo = Animal->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub speak {
+ my $class = shift;
+ print "a $class goes ", $class->sound, "!\n";
+}
+
+=head2 function2
+
+=cut
+
+sub sound {
+ die 'You have to define sound() in a subclass';
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Animal
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Animal
blob - /dev/null
blob + 34cb5968e877bdfea48195f241689c8e36eda2de (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/lib/Cow.pm
+package Cow;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Cow - The great new Cow!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Cow;
+
+ my $foo = Cow->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'moo';
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Cow
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Cow
blob - /dev/null
blob + 3e3d256bc09b1d4aa8a25e7d5fe8a1a6fec02fed (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/lib/Horse.pm
+package Horse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Horse - The great new Horse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Horse;
+
+ my $foo = Horse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'neigh';
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Horse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Horse
blob - /dev/null
blob + 60d9ca71a224fbc321041dd2acb34194ecf9235a (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/lib/Mouse.pm
+package Mouse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Mouse - The great new Mouse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Mouse;
+
+ my $foo = Mouse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'squeak';
+}
+
+=head2 function2
+
+=cut
+
+sub speak {
+ my $class = shift;
+ $class->Animal::speak(@_);
+ print "[but you can barely hear it!]\n";
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Mouse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Mouse
blob - /dev/null
blob + aa527df006d32bb039902221e30f7946efdeba91 (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/lib/Sheep.pm
+package Sheep;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Sheep - The great new Sheep!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Sheep;
+
+ my $foo = Sheep->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'baaaah'
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Sheep
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Sheep
blob - /dev/null
blob + 3f28f60504efa84888ffe50693bbacffbe0ea03b (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/libdoc/Animal.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Animal 3"
+.TH Animal 3 "2023-08-30" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Animal \- The great new Animal!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Animal;
+\&
+\& my $foo = Animal\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Animal
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + b2614d9660e2acaef0a61043fd42892e1d35701b (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/libdoc/Cow.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Cow 3"
+.TH Cow 3 "2023-08-30" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Cow \- The great new Cow!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Cow;
+\&
+\& my $foo = Cow\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Cow
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + 2e02cfe8c28cbce5cc85e25ac7720aa611d85118 (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/libdoc/Horse.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Horse 3"
+.TH Horse 3 "2023-08-30" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Horse \- The great new Horse!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Horse;
+\&
+\& my $foo = Horse\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Horse
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + f7ec4a2e972f47433efa22a421cfb694cc5fd854 (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/libdoc/Mouse.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Mouse 3"
+.TH Mouse 3 "2023-08-30" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Mouse \- The great new Mouse!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Mouse;
+\&
+\& my $foo = Mouse\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Mouse
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + c700b7488770d20b8000f4a89c277a354cfc5bd0 (mode 644)
--- /dev/null
+++ ex13-1/Animal/blib/libdoc/Sheep.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Sheep 3"
+.TH Sheep 3 "2023-08-30" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Sheep \- The great new Sheep!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Sheep;
+\&
+\& my $foo = Sheep\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Sheep
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + 13f3a7fb5313385c32d20a30671b827b0ddb7735 (mode 644)
--- /dev/null
+++ ex13-1/Animal/ignore.txt
+blib*
+Makefile
+Makefile.old
+Build
+Build.bat
+_build*
+pm_to_blib*
+*.tar.gz
+.lwpcookies
+cover_db
+pod2htm*.tmp
+Animal-*
blob - /dev/null
blob + 9a10d8cdcdf0a5594d884ff0725a23d91291d1db (mode 644)
--- /dev/null
+++ ex13-1/Animal/lib/Animal.pm
+package Animal;
+
+use warnings;
+use strict;
+
+=head1 NAME
+
+Animal - The great new Animal!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Animal;
+
+ my $foo = Animal->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub speak {
+ my $class = shift;
+ print "a $class goes ", $class->sound, "!\n";
+}
+
+=head2 function2
+
+=cut
+
+sub sound {
+ die 'You have to define sound() in a subclass';
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Animal
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Animal
blob - /dev/null
blob + 34cb5968e877bdfea48195f241689c8e36eda2de (mode 644)
--- /dev/null
+++ ex13-1/Animal/lib/Cow.pm
+package Cow;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Cow - The great new Cow!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Cow;
+
+ my $foo = Cow->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'moo';
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Cow
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Cow
blob - /dev/null
blob + 3e3d256bc09b1d4aa8a25e7d5fe8a1a6fec02fed (mode 644)
--- /dev/null
+++ ex13-1/Animal/lib/Horse.pm
+package Horse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Horse - The great new Horse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Horse;
+
+ my $foo = Horse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'neigh';
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Horse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Horse
blob - /dev/null
blob + 60d9ca71a224fbc321041dd2acb34194ecf9235a (mode 644)
--- /dev/null
+++ ex13-1/Animal/lib/Mouse.pm
+package Mouse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Mouse - The great new Mouse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Mouse;
+
+ my $foo = Mouse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'squeak';
+}
+
+=head2 function2
+
+=cut
+
+sub speak {
+ my $class = shift;
+ $class->Animal::speak(@_);
+ print "[but you can barely hear it!]\n";
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Mouse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Mouse
blob - /dev/null
blob + aa527df006d32bb039902221e30f7946efdeba91 (mode 644)
--- /dev/null
+++ ex13-1/Animal/lib/Sheep.pm
+package Sheep;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Sheep - The great new Sheep!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Sheep;
+
+ my $foo = Sheep->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'baaaah'
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Sheep
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Sheep
blob - /dev/null
blob + 5252623db0781cc1bf4b37442393a5e079163490 (mode 644)
--- /dev/null
+++ ex13-1/Animal/t/00-load.t
+#!perl -T
+
+use Test::More tests => 5;
+
+BEGIN {
+ use_ok( 'Animal' ) || print "Bail out!
+";
+ use_ok( 'Cow' ) || print "Bail out!
+";
+ use_ok( 'Sheep' ) || print "Bail out!
+";
+ use_ok( 'Horse' ) || print "Bail out!
+";
+ use_ok( 'Mouse' ) || print "Bail out!
+";
+}
+
+diag( "Testing Animal $Animal::VERSION, Perl $], $^X" );
blob - /dev/null
blob + 68f493029a7b2b66023facabf4601c930a5f7942 (mode 644)
--- /dev/null
+++ ex13-1/Animal/t/boilerplate.t
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More tests => 7;
+
+sub not_in_file_ok {
+ my ($filename, %regex) = @_;
+ open( my $fh, '<', $filename )
+ or die "couldn't open $filename for reading: $!";
+
+ my %violated;
+
+ while (my $line = <$fh>) {
+ while (my ($desc, $regex) = each %regex) {
+ if ($line =~ $regex) {
+ push @{$violated{$desc}||=[]}, $.;
+ }
+ }
+ }
+
+ if (%violated) {
+ fail("$filename contains boilerplate text");
+ diag "$_ appears on lines @{$violated{$_}}" for keys %violated;
+ } else {
+ pass("$filename contains no boilerplate text");
+ }
+}
+
+sub module_boilerplate_ok {
+ my ($module) = @_;
+ not_in_file_ok($module =>
+ 'the great new $MODULENAME' => qr/ - The great new /,
+ 'boilerplate description' => qr/Quick summary of what the module/,
+ 'stub function definition' => qr/function[12]/,
+ );
+}
+
+TODO: {
+ local $TODO = "Need to replace the boilerplate text";
+
+ not_in_file_ok(README =>
+ "The README is used..." => qr/The README is used/,
+ "'version information here'" => qr/to provide version information/,
+ );
+
+ not_in_file_ok(Changes =>
+ "placeholder date/time" => qr(Date/time)
+ );
+
+ module_boilerplate_ok('lib/Animal.pm');
+ module_boilerplate_ok('lib/Cow.pm');
+ module_boilerplate_ok('lib/Sheep.pm');
+ module_boilerplate_ok('lib/Horse.pm');
+ module_boilerplate_ok('lib/Mouse.pm');
+
+
+}
+
blob - /dev/null
blob + 45eb83fd602cbb6d0fc450f7102442c2d14c84fd (mode 644)
--- /dev/null
+++ ex13-1/Animal/t/manifest.t
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+unless ( $ENV{RELEASE_TESTING} ) {
+ plan( skip_all => "Author tests not required for installation" );
+}
+
+eval "use Test::CheckManifest 0.9";
+plan skip_all => "Test::CheckManifest 0.9 required" if $@;
+ok_manifest();
blob - /dev/null
blob + fc40a57c2a4c56d56ddc0f1fe32737d11592d6f7 (mode 644)
--- /dev/null
+++ ex13-1/Animal/t/pod-coverage.t
+use strict;
+use warnings;
+use Test::More;
+
+# Ensure a recent version of Test::Pod::Coverage
+my $min_tpc = 1.08;
+eval "use Test::Pod::Coverage $min_tpc";
+plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
+ if $@;
+
+# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
+# but older versions don't recognize some common documentation styles
+my $min_pc = 0.18;
+eval "use Pod::Coverage $min_pc";
+plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
+ if $@;
+
+all_pod_coverage_ok();
blob - /dev/null
blob + ee8b18ade667c3590c01bc64001d4f9cd19e6bf1 (mode 644)
--- /dev/null
+++ ex13-1/Animal/t/pod.t
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+# Ensure a recent version of Test::Pod
+my $min_tp = 1.22;
+eval "use Test::Pod $min_tp";
+plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
+
+all_pod_files_ok();
blob - /dev/null
blob + a57f7cc3705cbae477e51ef3ec679d518db6731c (mode 644)
Binary files /dev/null and ex13-1/Animal13-3/Animal-0.01.tar.gz differ
blob - /dev/null
blob + 6f99d275f1515ab59ee971e575552b7ddf1084f4 (mode 755)
--- /dev/null
+++ ex13-1/Animal13-3/Build
+#! /usr/bin/perl
+
+use strict;
+use Cwd;
+use File::Basename;
+use File::Spec;
+
+sub magic_number_matches {
+ return 0 unless -e '_build/magicnum';
+ my $FH;
+ open $FH, '<','_build/magicnum' or return 0;
+ my $filenum = <$FH>;
+ close $FH;
+ return $filenum == 848124;
+}
+
+my $progname;
+my $orig_dir;
+BEGIN {
+ $^W = 1; # Use warnings
+ $progname = basename($0);
+ $orig_dir = Cwd::cwd();
+ my $base_dir = '/home/jrmu/documents/intermediateperl/ex13-1/Animal13-3';
+ if (!magic_number_matches()) {
+ unless (chdir($base_dir)) {
+ die ("Couldn't chdir($base_dir), aborting\n");
+ }
+ unless (magic_number_matches()) {
+ die ("Configuration seems to be out of date, please re-run 'perl Build.PL' again.\n");
+ }
+ }
+ unshift @INC,
+ (
+
+ );
+
+}
+
+close(*DATA) unless eof(*DATA); # ensure no open handles to this script
+
+use Module::Build;
+Module::Build->VERSION(q{0.42});
+
+# Some platforms have problems setting $^X in shebang contexts, fix it up here
+$^X = Module::Build->find_perl_interpreter;
+
+if (-e 'Build.PL' and not Module::Build->up_to_date('Build.PL', $progname)) {
+ warn "Warning: Build.PL has been altered. You may need to run 'perl Build.PL' again.\n";
+}
+
+# This should have just enough arguments to be able to bootstrap the rest.
+my $build = Module::Build->resume (
+ properties => {
+ config_dir => '_build',
+ orig_dir => $orig_dir,
+ },
+);
+
+$build->dispatch;
blob - /dev/null
blob + 3334044606aacdd52c00a2adfbc998c79e8782c2 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/Build.PL
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ module_name => 'Animal',
+ license => 'unrestricted',
+ dist_author => q{jrmu <jrmu@ircnow.org>},
+ dist_version_from => 'lib/Animal.pm',
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ add_to_cleanup => [ 'Animal-*' ],
+ create_makefile_pl => 'traditional',
+);
+
+$builder->create_build_script();
blob - /dev/null
blob + 1aab6b2cc220a648984bc05961c4f0915cfd10b4 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/Changes
+Revision history for Animal
+
+0.01 Date/time
+ First version, released on an unsuspecting world.
+
blob - /dev/null
blob + a7625ce7b77d533405b03346e8f8234341146072 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/MANIFEST
+Build.PL
+Changes
+MANIFEST
+README
+lib/Animal.pm
+lib/Cow.pm
+lib/Horse.pm
+lib/LivingCreature.pm
+lib/Mouse.pm
+lib/Person.pm
+lib/Sheep.pm
+t/00-load.t
+t/manifest.t
+t/pod-coverage.t
+t/pod.t
+Makefile.PL
+META.yml
+META.json
blob - /dev/null
blob + 93b559f22109c9b2720de2a5bab8c29c6aecc4ba (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/META.json
+{
+ "abstract" : "The great new Animal!",
+ "author" : [
+ "jrmu <jrmu@ircnow.org>"
+ ],
+ "dynamic_config" : 1,
+ "generated_by" : "Module::Build version 0.4231",
+ "license" : [
+ "unrestricted"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : 2
+ },
+ "name" : "Animal",
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "Test::More" : "0"
+ }
+ },
+ "configure" : {
+ "requires" : {
+ "Module::Build" : "0.42"
+ }
+ }
+ },
+ "provides" : {
+ "Animal" : {
+ "file" : "lib/Animal.pm",
+ "version" : "0.01"
+ },
+ "Cow" : {
+ "file" : "lib/Cow.pm",
+ "version" : "0.01"
+ },
+ "Horse" : {
+ "file" : "lib/Horse.pm",
+ "version" : "0.01"
+ },
+ "LivingCreature" : {
+ "file" : "lib/LivingCreature.pm",
+ "version" : "0.01"
+ },
+ "Mouse" : {
+ "file" : "lib/Mouse.pm",
+ "version" : "0.01"
+ },
+ "Person" : {
+ "file" : "lib/Person.pm",
+ "version" : "0.01"
+ },
+ "Sheep" : {
+ "file" : "lib/Sheep.pm",
+ "version" : "0.01"
+ }
+ },
+ "release_status" : "stable",
+ "version" : "0.01",
+ "x_serialization_backend" : "JSON::PP version 4.07"
+}
blob - /dev/null
blob + 02b9677cb2031641a38d140a813550abdc9006fb (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/META.yml
+---
+abstract: 'The great new Animal!'
+author:
+ - 'jrmu <jrmu@ircnow.org>'
+build_requires:
+ Test::More: '0'
+configure_requires:
+ Module::Build: '0.42'
+dynamic_config: 1
+generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
+license: unrestricted
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: '1.4'
+name: Animal
+provides:
+ Animal:
+ file: lib/Animal.pm
+ version: '0.01'
+ Cow:
+ file: lib/Cow.pm
+ version: '0.01'
+ Horse:
+ file: lib/Horse.pm
+ version: '0.01'
+ LivingCreature:
+ file: lib/LivingCreature.pm
+ version: '0.01'
+ Mouse:
+ file: lib/Mouse.pm
+ version: '0.01'
+ Person:
+ file: lib/Person.pm
+ version: '0.01'
+ Sheep:
+ file: lib/Sheep.pm
+ version: '0.01'
+version: '0.01'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
blob - /dev/null
blob + b80c841e48e3589b636e9cab0f784cfa2f7554dd (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/MYMETA.json
+{
+ "abstract" : "The great new Animal!",
+ "author" : [
+ "jrmu <jrmu@ircnow.org>"
+ ],
+ "dynamic_config" : 0,
+ "generated_by" : "Module::Build version 0.4231",
+ "license" : [
+ "unrestricted"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : 2
+ },
+ "name" : "Animal",
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "Test::More" : 0
+ }
+ }
+ },
+ "provides" : {
+ "Animal" : {
+ "file" : "lib/Animal.pm",
+ "version" : "0.01"
+ },
+ "Cow" : {
+ "file" : "lib/Cow.pm",
+ "version" : "0.01"
+ },
+ "Horse" : {
+ "file" : "lib/Horse.pm",
+ "version" : "0.01"
+ },
+ "LivingCreature" : {
+ "file" : "lib/LivingCreature.pm",
+ "version" : "0.01"
+ },
+ "Mouse" : {
+ "file" : "lib/Mouse.pm",
+ "version" : "0.01"
+ },
+ "Person" : {
+ "file" : "lib/Person.pm",
+ "version" : "0.01"
+ },
+ "Sheep" : {
+ "file" : "lib/Sheep.pm",
+ "version" : "0.01"
+ }
+ },
+ "release_status" : "stable",
+ "version" : "0.01",
+ "x_serialization_backend" : "JSON::PP version 4.07"
+}
blob - /dev/null
blob + b2c0962832728c2856052a0f5ad92c295615a12a (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/MYMETA.yml
+---
+abstract: 'The great new Animal!'
+author:
+ - 'jrmu <jrmu@ircnow.org>'
+build_requires:
+ Test::More: '0'
+dynamic_config: 0
+generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
+license: unrestricted
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: '1.4'
+name: Animal
+provides:
+ Animal:
+ file: lib/Animal.pm
+ version: '0.01'
+ Cow:
+ file: lib/Cow.pm
+ version: '0.01'
+ Horse:
+ file: lib/Horse.pm
+ version: '0.01'
+ LivingCreature:
+ file: lib/LivingCreature.pm
+ version: '0.01'
+ Mouse:
+ file: lib/Mouse.pm
+ version: '0.01'
+ Person:
+ file: lib/Person.pm
+ version: '0.01'
+ Sheep:
+ file: lib/Sheep.pm
+ version: '0.01'
+version: '0.01'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
blob - /dev/null
blob + 8a6fb7ca144507c56d5801346bcfdc58127288b1 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/Makefile.PL
+# Note: this file was auto-generated by Module::Build::Compat version 0.4231
+use ExtUtils::MakeMaker;
+WriteMakefile
+(
+ 'PREREQ_PM' => {
+ 'Test::More' => 0
+ },
+ 'EXE_FILES' => [],
+ 'VERSION_FROM' => 'lib/Animal.pm',
+ 'INSTALLDIRS' => 'site',
+ 'PL_FILES' => {},
+ 'NAME' => 'Animal'
+)
+;
blob - /dev/null
blob + 8850404bb9803701dbc05ef862b2ff934c18229a (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/README
+Animal
+
+The README is used to introduce the module and provide instructions on
+how to install the module, any machine dependencies it may have (for
+example C compilers and installed libraries) and any other information
+that should be provided before the module is installed.
+
+A README file is required for CPAN modules since CPAN extracts the README
+file from a module distribution so that people browsing the archive
+can use it to get an idea of the module's uses. It is usually a good idea
+to provide version information here so that people can decide whether
+fixes for the module are worth downloading.
+
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Build.PL
+ ./Build
+ ./Build test
+ ./Build install
+
+SUPPORT AND DOCUMENTATION
+
+After installing, you can find documentation for this module with the
+perldoc command.
+
+ perldoc Animal
+
+You can also look for information at:
+
+ RT, CPAN's request tracker
+ http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal
+
+ AnnoCPAN, Annotated CPAN documentation
+ http://annocpan.org/dist/Animal
+
+ CPAN Ratings
+ http://cpanratings.perl.org/d/Animal
+
+ Search CPAN
+ http://search.cpan.org/dist/Animal/
+
+
+LICENSE AND COPYRIGHT
+
+Copyright (C) 2023 jrmu
+
+This program is released under the following license: unrestricted
+
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/auto_features
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 6f17461319b5f9934e1f80e4ae67a6c5fab29c01 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/build_params
+do{ my $x = [
+ {
+ 'ARGV' => []
+ },
+ {},
+ {
+ 'PL_files' => undef,
+ '_added_to_INC' => [],
+ 'allow_mb_mismatch' => 0,
+ 'allow_pureperl' => 0,
+ 'auto_configure_requires' => 1,
+ 'autosplit' => undef,
+ 'base_dir' => '/home/jrmu/documents/intermediateperl/ex13-1/Animal13-3',
+ 'bindoc_dirs' => [
+ 'blib/script'
+ ],
+ 'blib' => 'blib',
+ 'build_bat' => 0,
+ 'build_class' => 'Module::Build',
+ 'build_elements' => [
+ 'PL',
+ 'support',
+ 'pm',
+ 'xs',
+ 'share_dir',
+ 'pod',
+ 'script'
+ ],
+ 'build_requires' => {
+ 'Test::More' => 0
+ },
+ 'build_script' => 'Build',
+ 'bundle_inc' => [],
+ 'bundle_inc_preload' => [],
+ 'c_source' => undef,
+ 'config' => undef,
+ 'config_dir' => '_build',
+ 'configure_requires' => {},
+ 'conflicts' => {},
+ 'cover' => undef,
+ 'cpan_client' => 'cpan',
+ 'create_license' => undef,
+ 'create_makefile_pl' => 'traditional',
+ 'create_packlist' => 1,
+ 'create_readme' => undef,
+ 'debug' => undef,
+ 'debugger' => undef,
+ 'destdir' => undef,
+ 'dist_abstract' => undef,
+ 'dist_author' => [
+ 'jrmu <jrmu@ircnow.org>'
+ ],
+ 'dist_name' => 'Animal',
+ 'dist_suffix' => undef,
+ 'dist_version' => '0.01',
+ 'dist_version_from' => 'lib/Animal.pm',
+ 'dynamic_config' => 1,
+ 'extra_compiler_flags' => [],
+ 'extra_linker_flags' => [],
+ 'extra_manify_args' => undef,
+ 'get_options' => {},
+ 'has_config_data' => undef,
+ 'html_css' => '',
+ 'include_dirs' => [],
+ 'install_base' => undef,
+ 'install_base_relpaths' => {},
+ 'install_path' => {},
+ 'install_sets' => {},
+ 'installdirs' => 'site',
+ 'libdoc_dirs' => [
+ 'blib/lib',
+ 'blib/arch'
+ ],
+ 'license' => 'unrestricted',
+ 'magic_number' => undef,
+ 'mb_version' => '0.4231',
+ 'meta_add' => {},
+ 'meta_merge' => {},
+ 'metafile' => 'META.yml',
+ 'metafile2' => 'META.json',
+ 'module_name' => 'Animal',
+ 'mymetafile' => 'MYMETA.yml',
+ 'mymetafile2' => 'MYMETA.json',
+ 'needs_compiler' => '',
+ 'orig_dir' => '/home/jrmu/documents/intermediateperl/ex13-1/Animal13-3',
+ 'original_prefix' => {},
+ 'perl' => '/usr/bin/perl',
+ 'pm_files' => undef,
+ 'pod_files' => undef,
+ 'pollute' => undef,
+ 'prefix' => undef,
+ 'prefix_relpaths' => {},
+ 'prereq_action_types' => [
+ 'requires',
+ 'build_requires',
+ 'test_requires',
+ 'conflicts',
+ 'recommends'
+ ],
+ 'program_name' => undef,
+ 'pureperl_only' => 0,
+ 'quiet' => undef,
+ 'recommends' => {},
+ 'recurse_into' => [],
+ 'recursive_test_files' => undef,
+ 'release_status' => 'stable',
+ 'requires' => {},
+ 'script_files' => undef,
+ 'scripts' => undef,
+ 'share_dir' => undef,
+ 'sign' => undef,
+ 'tap_harness_args' => {},
+ 'test_file_exts' => [
+ '.t'
+ ],
+ 'test_files' => undef,
+ 'test_requires' => {},
+ 'use_rcfile' => 1,
+ 'use_tap_harness' => 0,
+ 'verbose' => undef,
+ 'xs_files' => undef
+ }
+ ];
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 296c3f8db94ff321b2f71feef5caa5d4e96a8196 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/cleanup
+do{ my $x = {
+ 'Animal-*' => 1,
+ 'Animal-0.01' => 1,
+ 'blib' => 1
+ };
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/config_data
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/features
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + c93f34b0f869819002c42f7d1dbcce787f8189f6 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/magicnum
+848124
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/notes
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 6a66ec5e54aebe9dc2b4027788898fb8f091c244 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/prereqs
+do{ my $x = {
+ 'build_requires' => {
+ 'Test::More' => 0
+ },
+ 'conflicts' => {},
+ 'recommends' => {},
+ 'requires' => {},
+ 'test_requires' => {}
+ };
+$x; }
\ No newline at end of file
blob - /dev/null
blob + 2df4e46aea6666bec4e6bec5d108c25ee39aed13 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/_build/runtime_params
+do{ my $x = {};
+$x; }
\ No newline at end of file
blob - /dev/null
blob + b8b90fd819f5cf2566d6a0e1ed5a0198da44c725 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/Animal.pm
+package Animal;
+
+use warnings;
+use strict;
+use parent qw(LivingCreature);
+
+=head1 NAME
+
+Animal - The great new Animal!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Animal;
+
+ my $foo = Animal->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub speak {
+ my $class = shift;
+ if (@_) {
+ die "Animals can't speak words!";
+ } else {
+ $class->SUPER::speak(@_);
+ }
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Animal
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Animal
blob - /dev/null
blob + 34cb5968e877bdfea48195f241689c8e36eda2de (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/Cow.pm
+package Cow;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Cow - The great new Cow!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Cow;
+
+ my $foo = Cow->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'moo';
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Cow
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Cow
blob - /dev/null
blob + 3e3d256bc09b1d4aa8a25e7d5fe8a1a6fec02fed (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/Horse.pm
+package Horse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Horse - The great new Horse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Horse;
+
+ my $foo = Horse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'neigh';
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Horse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Horse
blob - /dev/null
blob + b048be7da57129f1f9de7fca98d10caa023ab2cc (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/LivingCreature.pm
+package LivingCreature;
+
+use warnings;
+use strict;
+
+=head1 NAME
+
+LivingCreature - The great new LivingCreature!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use LivingCreature;
+
+ my $foo = LivingCreature->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ die 'You have to define sound() in a subclass';
+}
+
+=head2 function2
+
+=cut
+
+sub speak {
+ my $class = shift;
+ if (@_) {
+ print "a $class says @_!\n";
+ } else {
+ print "a $class goes ", $class->sound(), "!\n";
+ }
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc LivingCreature
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of LivingCreature
blob - /dev/null
blob + 60d9ca71a224fbc321041dd2acb34194ecf9235a (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/Mouse.pm
+package Mouse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Mouse - The great new Mouse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Mouse;
+
+ my $foo = Mouse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'squeak';
+}
+
+=head2 function2
+
+=cut
+
+sub speak {
+ my $class = shift;
+ $class->Animal::speak(@_);
+ print "[but you can barely hear it!]\n";
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Mouse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Mouse
blob - /dev/null
blob + 506a95b5150590a2ff08656ec98b3aa4b7b3a21c (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/Person.pm
+package Person;
+
+use warnings;
+use strict;
+use parent qw(LivingCreature);
+
+=head1 NAME
+
+Person - The great new Person!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Person;
+
+ my $foo = Person->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'humm';
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Person
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Person
blob - /dev/null
blob + aa527df006d32bb039902221e30f7946efdeba91 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/lib/Sheep.pm
+package Sheep;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Sheep - The great new Sheep!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Sheep;
+
+ my $foo = Sheep->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'baaaah'
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Sheep
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Sheep
blob - /dev/null
blob + 51421b2b536a7b131d150c1e2e0f710d56e63907 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/Animal.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Animal 3"
+.TH Animal 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Animal \- The great new Animal!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Animal;
+\&
+\& my $foo = Animal\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Animal
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + cb02d72a8f8dee500f84833fadc2ead800be62dd (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/Cow.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Cow 3"
+.TH Cow 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Cow \- The great new Cow!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Cow;
+\&
+\& my $foo = Cow\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Cow
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + a3d1bcd5d4bcc328b3b3604c84d64d9c2e6c4be9 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/Horse.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Horse 3"
+.TH Horse 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Horse \- The great new Horse!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Horse;
+\&
+\& my $foo = Horse\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Horse
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + c679c0ae1e9e6de07e8eb52314a9cc141a28ff0c (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/LivingCreature.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "LivingCreature 3"
+.TH LivingCreature 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+LivingCreature \- The great new LivingCreature!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use LivingCreature;
+\&
+\& my $foo = LivingCreature\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc LivingCreature
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + 992dc9087a7d179222b6327e41b59138057cd282 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/Mouse.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Mouse 3"
+.TH Mouse 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Mouse \- The great new Mouse!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Mouse;
+\&
+\& my $foo = Mouse\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Mouse
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + a155dba37cbac82f22932993bc349ecadd0cb661 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/Person.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Person 3"
+.TH Person 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Person \- The great new Person!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Person;
+\&
+\& my $foo = Person\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Person
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + 96ea7642751ca4432c12064f653b2da293713ab1 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/blib/libdoc/Sheep.3p
+.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
+.\"
+.\" Standard preamble:
+.\" ========================================================================
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Vb \" Begin verbatim text
+.ft CW
+.nf
+.ne \\$1
+..
+.de Ve \" End verbatim text
+.ft R
+.fi
+..
+.\" Set up some character translations and predefined strings. \*(-- will
+.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
+.\" double quote, and \*(R" will give a right double quote. \*(C+ will
+.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
+.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
+.\" nothing in troff, for use with C<>.
+.tr \(*W-
+.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
+.ie n \{\
+. ds -- \(*W-
+. ds PI pi
+. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
+. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
+. ds L" ""
+. ds R" ""
+. ds C` ""
+. ds C' ""
+'br\}
+.el\{\
+. ds -- \|\(em\|
+. ds PI \(*p
+. ds L" ``
+. ds R" ''
+. ds C`
+. ds C'
+'br\}
+.\"
+.\" Escape single quotes in literal strings from groff's Unicode transform.
+.ie \n(.g .ds Aq \(aq
+.el .ds Aq '
+.\"
+.\" If the F register is >0, we'll generate index entries on stderr for
+.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
+.\" entries marked with X<> in POD. Of course, you'll have to process the
+.\" output yourself in some meaningful fashion.
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+. if \nF \{\
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
+..
+. if !\nF==2 \{\
+. nr % 0
+. nr F 2
+. \}
+. \}
+.\}
+.rr rF
+.\"
+.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
+.\" Fear. Run. Save yourself. No user-serviceable parts.
+. \" fudge factors for nroff and troff
+.if n \{\
+. ds #H 0
+. ds #V .8m
+. ds #F .3m
+. ds #[ \f1
+. ds #] \fP
+.\}
+.if t \{\
+. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
+. ds #V .6m
+. ds #F 0
+. ds #[ \&
+. ds #] \&
+.\}
+. \" simple accents for nroff and troff
+.if n \{\
+. ds ' \&
+. ds ` \&
+. ds ^ \&
+. ds , \&
+. ds ~ ~
+. ds /
+.\}
+.if t \{\
+. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
+. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
+. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
+. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
+. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
+. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
+.\}
+. \" troff and (daisy-wheel) nroff accents
+.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
+.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
+.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
+.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
+.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
+.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
+.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
+.ds ae a\h'-(\w'a'u*4/10)'e
+.ds Ae A\h'-(\w'A'u*4/10)'E
+. \" corrections for vroff
+.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
+.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
+. \" for low resolution devices (crt and lpr)
+.if \n(.H>23 .if \n(.V>19 \
+\{\
+. ds : e
+. ds 8 ss
+. ds o a
+. ds d- d\h'-1'\(ga
+. ds D- D\h'-1'\(hy
+. ds th \o'bp'
+. ds Th \o'LP'
+. ds ae ae
+. ds Ae AE
+.\}
+.rm #[ #] #H #V #F C
+.\" ========================================================================
+.\"
+.IX Title "Sheep 3"
+.TH Sheep 3 "2023-09-10" "perl v5.36.0" "User Contributed Perl Documentation"
+.\" For nroff, turn off justification. Always turn off hyphenation; it makes
+.\" way too many mistakes in technical documents.
+.if n .ad l
+.nh
+.SH "NAME"
+Sheep \- The great new Sheep!
+.SH "VERSION"
+.IX Header "VERSION"
+Version 0.01
+.SH "SYNOPSIS"
+.IX Header "SYNOPSIS"
+Quick summary of what the module does.
+.PP
+Perhaps a little code snippet.
+.PP
+.Vb 1
+\& use Sheep;
+\&
+\& my $foo = Sheep\->new();
+\& ...
+.Ve
+.SH "EXPORT"
+.IX Header "EXPORT"
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+.SH "SUBROUTINES/METHODS"
+.IX Header "SUBROUTINES/METHODS"
+.SS "function1"
+.IX Subsection "function1"
+.SS "function2"
+.IX Subsection "function2"
+.SH "AUTHOR"
+.IX Header "AUTHOR"
+jrmu, \f(CW\*(C`<jrmu at ircnow.org>\*(C'\fR
+.SH "BUGS"
+.IX Header "BUGS"
+Please report any bugs or feature requests to \f(CW\*(C`bug\-animal at rt.cpan.org\*(C'\fR, or through
+the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+.SH "SUPPORT"
+.IX Header "SUPPORT"
+You can find documentation for this module with the perldoc command.
+.PP
+.Vb 1
+\& perldoc Sheep
+.Ve
+.PP
+You can also look for information at:
+.IP "\(bu" 4
+\&\s-1RT: CPAN\s0's request tracker
+.Sp
+<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+.IP "\(bu" 4
+AnnoCPAN: Annotated \s-1CPAN\s0 documentation
+.Sp
+<http://annocpan.org/dist/Animal>
+.IP "\(bu" 4
+\&\s-1CPAN\s0 Ratings
+.Sp
+<http://cpanratings.perl.org/d/Animal>
+.IP "\(bu" 4
+Search \s-1CPAN\s0
+.Sp
+<http://search.cpan.org/dist/Animal/>
+.SH "ACKNOWLEDGEMENTS"
+.IX Header "ACKNOWLEDGEMENTS"
+.SH "LICENSE AND COPYRIGHT"
+.IX Header "LICENSE AND COPYRIGHT"
+Copyright 2023 jrmu.
+.PP
+This program is released under the following license: unrestricted
blob - /dev/null
blob + 13f3a7fb5313385c32d20a30671b827b0ddb7735 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/ignore.txt
+blib*
+Makefile
+Makefile.old
+Build
+Build.bat
+_build*
+pm_to_blib*
+*.tar.gz
+.lwpcookies
+cover_db
+pod2htm*.tmp
+Animal-*
blob - /dev/null
blob + b8b90fd819f5cf2566d6a0e1ed5a0198da44c725 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/Animal.pm
+package Animal;
+
+use warnings;
+use strict;
+use parent qw(LivingCreature);
+
+=head1 NAME
+
+Animal - The great new Animal!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Animal;
+
+ my $foo = Animal->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub speak {
+ my $class = shift;
+ if (@_) {
+ die "Animals can't speak words!";
+ } else {
+ $class->SUPER::speak(@_);
+ }
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Animal
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Animal
blob - /dev/null
blob + 34cb5968e877bdfea48195f241689c8e36eda2de (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/Cow.pm
+package Cow;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Cow - The great new Cow!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Cow;
+
+ my $foo = Cow->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'moo';
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Cow
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Cow
blob - /dev/null
blob + 3e3d256bc09b1d4aa8a25e7d5fe8a1a6fec02fed (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/Horse.pm
+package Horse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Horse - The great new Horse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Horse;
+
+ my $foo = Horse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'neigh';
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Horse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Horse
blob - /dev/null
blob + b048be7da57129f1f9de7fca98d10caa023ab2cc (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/LivingCreature.pm
+package LivingCreature;
+
+use warnings;
+use strict;
+
+=head1 NAME
+
+LivingCreature - The great new LivingCreature!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use LivingCreature;
+
+ my $foo = LivingCreature->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ die 'You have to define sound() in a subclass';
+}
+
+=head2 function2
+
+=cut
+
+sub speak {
+ my $class = shift;
+ if (@_) {
+ print "a $class says @_!\n";
+ } else {
+ print "a $class goes ", $class->sound(), "!\n";
+ }
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc LivingCreature
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of LivingCreature
blob - /dev/null
blob + 60d9ca71a224fbc321041dd2acb34194ecf9235a (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/Mouse.pm
+package Mouse;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Mouse - The great new Mouse!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Mouse;
+
+ my $foo = Mouse->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'squeak';
+}
+
+=head2 function2
+
+=cut
+
+sub speak {
+ my $class = shift;
+ $class->Animal::speak(@_);
+ print "[but you can barely hear it!]\n";
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Mouse
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Mouse
blob - /dev/null
blob + 506a95b5150590a2ff08656ec98b3aa4b7b3a21c (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/Person.pm
+package Person;
+
+use warnings;
+use strict;
+use parent qw(LivingCreature);
+
+=head1 NAME
+
+Person - The great new Person!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Person;
+
+ my $foo = Person->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'humm';
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Person
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Person
blob - /dev/null
blob + aa527df006d32bb039902221e30f7946efdeba91 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/lib/Sheep.pm
+package Sheep;
+
+use warnings;
+use strict;
+use parent qw(Animal);
+
+=head1 NAME
+
+Sheep - The great new Sheep!
+
+=head1 VERSION
+
+Version 0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+
+=head1 SYNOPSIS
+
+Quick summary of what the module does.
+
+Perhaps a little code snippet.
+
+ use Sheep;
+
+ my $foo = Sheep->new();
+ ...
+
+=head1 EXPORT
+
+A list of functions that can be exported. You can delete this section
+if you don't export anything, such as for a purely object-oriented module.
+
+=head1 SUBROUTINES/METHODS
+
+=head2 function1
+
+=cut
+
+sub sound {
+ 'baaaah'
+}
+
+=head2 function2
+
+=cut
+
+sub function2 {
+}
+
+=head1 AUTHOR
+
+jrmu, C<< <jrmu at ircnow.org> >>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-animal at rt.cpan.org>, or through
+the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Animal>. I will be notified, and then you'll
+automatically be notified of progress on your bug as I make changes.
+
+
+
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc Sheep
+
+
+You can also look for information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Animal>
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Animal>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Animal>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Animal/>
+
+=back
+
+
+=head1 ACKNOWLEDGEMENTS
+
+
+=head1 LICENSE AND COPYRIGHT
+
+Copyright 2023 jrmu.
+
+This program is released under the following license: unrestricted
+
+
+=cut
+
+1; # End of Sheep
blob - /dev/null
blob + cab4799d49a9602085569f6d652a961dc47377d8 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/t/00-load.t
+#!perl -T
+
+use Test::More tests => 7;
+
+BEGIN {
+ use_ok( 'Animal' ) || print "Bail out!
+";
+ use_ok( 'Cow' ) || print "Bail out!
+";
+ use_ok( 'Sheep' ) || print "Bail out!
+";
+ use_ok( 'Horse' ) || print "Bail out!
+";
+ use_ok( 'LivingCreature' ) || print "Bail out!
+";
+ use_ok( 'Mouse' ) || print "Bail out!
+";
+ use_ok( 'Person' ) || print "Bail out!
+";
+}
+
+diag( "Testing Animal $Animal::VERSION, Perl $], $^X" );
blob - /dev/null
blob + 9484e9e24beb9f5e170566487c0a02d6fd2a9632 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/t/boilerplate.t
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More tests => 9;
+
+sub not_in_file_ok {
+ my ($filename, %regex) = @_;
+ open( my $fh, '<', $filename )
+ or die "couldn't open $filename for reading: $!";
+
+ my %violated;
+
+ while (my $line = <$fh>) {
+ while (my ($desc, $regex) = each %regex) {
+ if ($line =~ $regex) {
+ push @{$violated{$desc}||=[]}, $.;
+ }
+ }
+ }
+
+ if (%violated) {
+ fail("$filename contains boilerplate text");
+ diag "$_ appears on lines @{$violated{$_}}" for keys %violated;
+ } else {
+ pass("$filename contains no boilerplate text");
+ }
+}
+
+sub module_boilerplate_ok {
+ my ($module) = @_;
+ not_in_file_ok($module =>
+ 'the great new $MODULENAME' => qr/ - The great new /,
+ 'boilerplate description' => qr/Quick summary of what the module/,
+ 'stub function definition' => qr/function[12]/,
+ );
+}
+
+TODO: {
+ local $TODO = "Need to replace the boilerplate text";
+
+ not_in_file_ok(README =>
+ "The README is used..." => qr/The README is used/,
+ "'version information here'" => qr/to provide version information/,
+ );
+
+ not_in_file_ok(Changes =>
+ "placeholder date/time" => qr(Date/time)
+ );
+
+ module_boilerplate_ok('lib/Animal.pm');
+ module_boilerplate_ok('lib/Cow.pm');
+ module_boilerplate_ok('lib/Sheep.pm');
+ module_boilerplate_ok('lib/Horse.pm');
+ module_boilerplate_ok('lib/LivingCreature.pm');
+ module_boilerplate_ok('lib/Mouse.pm');
+ module_boilerplate_ok('lib/Person.pm');
+
+
+}
+
blob - /dev/null
blob + 45eb83fd602cbb6d0fc450f7102442c2d14c84fd (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/t/manifest.t
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+unless ( $ENV{RELEASE_TESTING} ) {
+ plan( skip_all => "Author tests not required for installation" );
+}
+
+eval "use Test::CheckManifest 0.9";
+plan skip_all => "Test::CheckManifest 0.9 required" if $@;
+ok_manifest();
blob - /dev/null
blob + fc40a57c2a4c56d56ddc0f1fe32737d11592d6f7 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/t/pod-coverage.t
+use strict;
+use warnings;
+use Test::More;
+
+# Ensure a recent version of Test::Pod::Coverage
+my $min_tpc = 1.08;
+eval "use Test::Pod::Coverage $min_tpc";
+plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
+ if $@;
+
+# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
+# but older versions don't recognize some common documentation styles
+my $min_pc = 0.18;
+eval "use Pod::Coverage $min_pc";
+plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
+ if $@;
+
+all_pod_coverage_ok();
blob - /dev/null
blob + ee8b18ade667c3590c01bc64001d4f9cd19e6bf1 (mode 644)
--- /dev/null
+++ ex13-1/Animal13-3/t/pod.t
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+# Ensure a recent version of Test::Pod
+my $min_tp = 1.22;
+eval "use Test::Pod $min_tp";
+plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
+
+all_pod_files_ok();
blob - /dev/null
blob + 5f4ebdc49d0ec5004cb8c2823af0500fc01e9f3e (mode 644)
--- /dev/null
+++ ex13-1/ex13-2.pl
+#!/usr/bin/perl
+
+# Create a program to ask the user to enter the names of one or more barnyard
+# animals. Create a barnyard with those animals, and have each animal speak
+# once.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use Animal;
+use Cow;
+use Horse;
+use Mouse;
+use Sheep;
+
+print "Type in some animals:\n";
+while (<>) {
+ chomp;
+ # print;
+ # print "\n";
+ $_->speak();
+}
blob - /dev/null
blob + d79c249931be5db22310356c4bd3df90847060bb (mode 644)
--- /dev/null
+++ ex13-1/ex13-2.txt
+Cow
+Horse
+Sheep
+Mouse
blob - /dev/null
blob + 66a7cda781ca40fc88c358206cf9290f47e65a1a (mode 644)
--- /dev/null
+++ ex13-1/ex13-3.pl
+#!/usr/bin/perl
+
+# Add a Person class at the same level as Animal, and have both of them
+# inherit from a new class called LivingCreature. Also make the speak method
+# take a parameter of what to say, falling back to the sound (humming for a
+# Person) if no parameter is given. Since this isn't Dr. Doolittle, make sure
+# the animals can't talk. (That is, don't let speak have any parameters for
+# an animal.) Try not to duplicate any code, but be sure to catch likely
+# errors of usage, such as forgetting to define a sound for an animal.
+#
+# Demonstrate the Person class in a program in scripts/person.pl. Make the
+# person say "Hello, World!"
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use Animal;
+use Cow;
+use Horse;
+use LivingCreature;
+use Mouse;
+use Person;
+use Sheep;
+
+print "Type in some creatures\n";
+while (<>) {
+ chomp;
+ $_->speak();
+}
+
+Person->speak("Hello, World!");
blob - /dev/null
blob + d79c249931be5db22310356c4bd3df90847060bb (mode 644)
--- /dev/null
+++ ex13-1/ex13-3.txt
+Cow
+Horse
+Sheep
+Mouse
blob - /dev/null
blob + ac89fc5396410f6f0cffe972359aba40d366f159 (mode 644)
--- /dev/null
+++ ex2-1.pl
+#!/usr/bin/perl
+
+# Read the list of files in the current directory and convert the names to
+# their full path specification. Don't use the shell or an external program
+# to get the current directory. The File::Spec and Cwd modules, both of which
+# come with Perl, should help. Print each path with four spaces before it and
+# a newline after it.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use File::Spec;
+use Cwd;
+
+my $dir = getcwd();
+opendir my $dh, $dir or die "Unable to read current directory: $!";
+foreach (readdir($dh)) {
+ if ($_ eq "." || $_ eq "..") {
+ next;
+ }
+ printf(" %s\n", File::Spec->catfile($dir, $_));
+}
blob - /dev/null
blob + 1c6efd51a8f4522606cdd0154b9c66f92befcede (mode 644)
--- /dev/null
+++ ex2-2.pl
+#!/usr/bin/perl
+
+# Install the local::lib module and use it when you install Module::CoreList
+# (or another module if you like). Write a program that reports the name and
+# first release date for all the modules in Perl v5.14.2. Read the
+# documentation for local::lib to see if it has special installation
+# instructions.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+use Module::CoreList;
+
+my $modules = Module::CoreList->find_version("5.014002");
+foreach (keys %$modules) {
+ print $_;
+ printf(" => v%s", $modules->{$_}) if defined($modules->{$_});
+ print "\n";
+}
blob - /dev/null
blob + e339fcc979f1570510be86ace09d6da2e5e671f4 (mode 644)
--- /dev/null
+++ ex2-3.pl
+#!/usr/bin/perl
+
+# Parse the International Standard Book Number from the back of this book
+# (9781449393090). Install the Business::ISBN module from CPAN and use it
+# to extract the group code and the publisher code from the number.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+use Business::ISBN;
+
+my $isbn = Business::ISBN->new(shift @ARGV);
+#print the group code or publisher code
+printf("ISBN: %s, Group Code: %s, Publisher Code: %s\n", $isbn->as_string, $isbn->group_code, $isbn->publisher_code);
blob - /dev/null
blob + 0d9492918f9c8ffee84dbd20bc41b2f1e0031b4a (mode 644)
--- /dev/null
+++ ex3-1.pl
+#!/usr/bin/perl
+
+# Write a program that takes a list of filenames on the command line and
+# uses grep to select the ones whose size is less than 1,000 bytes. Use map
+# to transform the strings in this list, putting four space characters in
+# front of each and a newline character after. Pring the resulting list.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+print map { " ".$_."\n" } grep { (-s $_ < 1000) } @ARGV;
blob - /dev/null
blob + 6f6e03591ccab7ac47373c51fb05d66c4f9c8c0c (mode 644)
--- /dev/null
+++ ex3-2.pl
+#!/usr/bin/perl
+
+# Write a program that asks the user to enter a pattern (regular
+# expression). Read this as data from standard input; don't get it from the
+# command line arguments. Report a list of files in some hardcoded
+# directory (such as "/etc" or 'C:\\Windows') whose names match the
+# pattern. Repeat this until the user enters an empty string instead of a
+# pattern. The user should not type the slashes traditionally used to
+# delimit pattern matches in Perl; the input pattern is delimited by the
+# trailing newline. Ensure that a faulty pattern, such as one with
+# unbalanced parentheses, doesn't crash the program.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+chdir or die "Unable to cd to ~: '$!'";
+my $pattern;
+print "Regex pattern: ";
+while (chomp($pattern = <>) && $pattern ne '') {
+ print "\n";
+ print join("\n", grep eval { /$pattern/ }, glob(".* *"));
+ print "\n\nRegex pattern: ";
+}
blob - /dev/null
blob + 6940c78b8cae7f46fee15a1492b148d542ec1b12 (mode 644)
--- /dev/null
+++ ex4-1.pl
+#!/usr/bin/perl
+
+# How many different things do these expressions refer to? Draw a PeGS
+# structure for each of these:
+#
+# $ginger->[2][1]
+# ${$ginger[2]}[1]
+# $ginger->[2]->[1]
+# ${$ginger->[2]}[1]
+
+1, 3, and 4 refer to the same thing. ginger is an array reference. Get the
+3rd element (index 2) from the array reference, then get the 2nd element
+(index 1) from that array reference.
+
+In 2, ginger is an array rather than an array referen.
blob - /dev/null
blob + 933dd292725925d7bbea52c43ba24a09fded2ac3 (mode 644)
--- /dev/null
+++ ex4-2.pl
+#!/usr/bin/perl
+
+# Using the final version of check_required_items, write a subroutine
+# check_items_for_all that takes as its only parameter a reference to a
+# hash whose keys are the people aboard the Minnow and whose corresponding
+# values are array references of the things they intend to bring on board.
+#
+# For example, the hash reference might be constructed like so:
+#
+# my @gilligan = (... gilligan items ...);
+# my @skipper = (... skipper items ...);
+# my @professor = (... professor items ...);
+#
+# my %all = (
+# Gilligan => \@gilligan,
+# Skipper => \@skipper,
+# Professor => \@professor,
+# );
+#
+# check_items_for_all(\%all);
+#
+# The newly constructed subroutine should call check_required_items for
+# each person in the hash, updating their provisions list to include the
+# required items.
+#
+# Some starting code is in the Downloads section on
+# https://www.intermediateperl.com/
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+sub check_required_items {
+ my $who = shift;
+ my $items = shift;
+ my %whose_items = map { $_, 1 } @$items;
+ my @required = qw(preserver sunscreen water_bottle jacket);
+ my @missing = ();
+
+ for my $item (@required) {
+ unless ($whose_items{$item}) {
+ print "$who is missing $item.\n";
+ push @missing, $item;
+ }
+ }
+
+ if (@missing) {
+ print "Adding @missing to @$items for $who.\n";
+ push @$items, @missing;
+ }
+}
+sub check_items_for_all {
+ my $allref = shift;
+ foreach my $person (keys %$allref) {
+ check_required_items($person, $allref->{$person});
+ }
+}
+my @gilligan = qw(red_shirt hat lucky_socks water_bottle);
+my @skipper = qw(blue_shirt hat jacket preserver sunscreen);
+my @professor = qw(sunscreen water_bottle slide_rule batteries radio);
+
+my %all = (
+ Gilligan => \@gilligan,
+ Skipper => \@skipper,
+ Professor => \@professor,
+);
+
+check_items_for_all(\%all);
blob - /dev/null
blob + ee962fb3e670de5c0d7e7b1faa30dcd0e313b7f0 (mode 644)
--- /dev/null
+++ ex4-3.pl
+#!/usr/bin/perl
+
+# Modify the crew roster program to add a location field for each castaway.
+# At the start, set each person's location to "The Island." After you've
+# added that field to each person's hash, change the Howells' locations to
+# "The Island Country Club." Make a report of everyone's location, like
+# this:
+#
+# Gilligan at the Island
+# Skipper at the Island
+# Mr. Howell at the Island Country Club
+# Mrs. Howell at the Island Country Club
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+my %gilligan_info = (
+ name => 'Gilligan',
+ hat => 'White',
+ shirt => 'Red',
+ position => 'First Mate',
+);
+my %skipper_info = (
+ name => 'Skipper',
+ hat => 'Black',
+ shirt => 'Blue',
+ position => 'Captain',
+);
+my %mrhowell_info = (
+ name => 'Mr. Howell',
+ hat => undef,
+ shirt => 'White',
+ position => 'Passenger',
+);
+my %mrshowell_info = (
+ name => 'Mrs. Howell',
+ hat => undef,
+ shirt => undef,
+ position => 'Passenger',
+);
+
+my @crew = (\%gilligan_info, \%skipper_info, \%mrhowell_info, \%mrshowell_info);
+
+foreach my $crewmember (@crew) {
+ $crewmember->{location} = 'The Island';
+}
+
+sub location {
+ foreach (@_) {
+ printf("%s at %s\n", $_->{name}, $_->{location});
+ }
+}
+location(@crew);
+$mrhowell_info{location} = 'The Island Country Club';
+$mrshowell_info{location} = 'The Island Country Club';
+location(@crew);
blob - /dev/null
blob + 1bdbd3edd5a6a626fdfc9f19e2ba36325c314241 (mode 644)
--- /dev/null
+++ ex5-1.pl
+#!/usr/bin/perl
+
+# Without running it, can you see what's wrong with this piece of a
+# program? If you can't see the problem after a minute or two, see whether
+# trying to run it will give you a hint of how to fix it (you might try
+# turning on warnings):
+
+#my %passenger_1 = {
+# name => 'Ginger',
+# age => 22,
+# occupation => 'Movie Star',
+# real_age => 35,
+# hat => undef,
+#};
+#
+#my %passenger_2 = {
+# name => 'Mary Ann',
+# age => 19,
+# hat => 'bonnet',
+# favorite_food => 'corn',
+#};
+#
+#my @passengers = (\%passenger_1, \%passenger_2);
+
+# {} creates hash references rather than actual hashes. Hash references are
+# stored in scalars not hashes.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+my %passenger_1 = (
+ name => 'Ginger',
+ age => 22,
+ occupation => 'Movie Star',
+ real_age => 35,
+ hat => undef,
+);
+
+my %passenger_2 = (
+ name => 'Mary Ann',
+ age => 19,
+ hat => 'bonnet',
+ favorite_food => 'corn',
+);
+
+my @passengers = (\%passenger_1, \%passenger_2);
blob - /dev/null
blob + 0716687290950298f5f849bfc5c6e907b8e13cd8 (mode 644)
--- /dev/null
+++ ex5-2.pl
+#!/usr/bin/perl
+
+# The Professor's data file (mentioned earlier in this chapter) is
+# available as coconet.dat in the Download section of
+# http://www.intermediateperl.com/. There may be comment lines (beginning
+# with a #); be sure to skip them. (That is, your program should skip them.
+# You might find a helpful hint if *you* read them!) Here are the first
+# data lines in the file:
+#
+# (see 5.References.And.Scoping/coconet.dat)
+#
+# Modify the code from this chapter so that each source machine's portion
+# of the output shows the total bytes from that machine. List the source
+# machines in order from most to least data transferred. Within each group,
+# list the destination machines in order from most to least data
+# transferred to that target from the source machine:
+#
+# professor.hut => gilligan.hut: 1845
+# professor.hut => maryann.hut: 90
+#
+# The result should be that the machine that sent the most data will be the
+# first source machine in the list, and the first destination should be the
+# machine to which it sent the most data. The Professor can use this
+# printout to reconfigure the network for efficiency.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+my %hosts;
+while (<>) {
+ next if (/\A\s*#/);
+ my ($src, $dst, $bytes) = split;
+ $hosts{$src}{$dst} = $bytes;
+}
+sub sum {
+ my $hashref = shift;
+ my $total;
+ foreach (keys %{$hashref}) {
+ $total += $hashref->{$_};
+ }
+ return $total;
+}
+foreach my $src (sort { sum($hosts{$b}) <=> sum($hosts{$a}) } keys %hosts) {
+ print "Total bytes ($src): ". sum($hosts{$src}) ."\n";
+ foreach my $dst (sort { $hosts{$src}{$b} <=> $hosts{$src}{$a} }
+ keys %{$hosts{$src}}) {
+ print "$src => $dst $hosts{$src}{$dst}\n";
+ }
+}
blob - /dev/null
blob + f77e4a3b7b27310995608041f38afcfac22c9133 (mode 644)
--- /dev/null
+++ ex5-3.pl
+#!/usr/bin/perl
+
+# Starting with your data structure from Exercise 2, rewrite the
+# coconet.dat file so that it's in the same format, but sorted by source
+# machine. Report each destination machine once per source machine along
+# with total bytes transferred. The destination machines should be indented
+# under the source machine name and be sorted by the machine name:
+#
+# ginger.hut
+# maryann.hut 13744
+# professor.hut
+# gilligan.hut 1845
+# maryann.hut 90
+# thurston.howell.hut
+# lovey.howell.hut 97560
+# ...
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+my %hosts;
+while (<>) {
+ next if (/\A\s*#/);
+ my ($src, $dst, $bytes) = split;
+ $hosts{$src}{$dst} = $bytes;
+}
+sub sum {
+ my $hashref = shift;
+ my $total;
+ foreach (keys %{$hashref}) {
+ $total += $hashref->{$_};
+ }
+ return $total;
+}
+foreach my $src (sort { sum($hosts{$b}) <=> sum($hosts{$a}) } keys %hosts) {
+ print "$src\n";
+ foreach my $dst (sort { $hosts{$src}{$b} <=> $hosts{$src}{$a} }
+ keys %{$hosts{$src}}) {
+ print " $dst $hosts{$src}{$dst}\n";
+ }
+}
blob - /dev/null
blob + e6a85cfd0c721c86063f3695a5b22136ff88434c (mode 644)
Binary files /dev/null and ex6-1.data differ
blob - /dev/null
blob + f271984cd9453e6131f26459f9a2b2ea094a9db9 (mode 644)
--- /dev/null
+++ ex6-1.pl
+#!/usr/bin/perl
+
+# The program from Exercise 2 in Chapter 5 needs to read the entire data
+# file each time it runs. However, the Professor has a new router logfile
+# each day and doesn't want to keep all that data in one giant file that
+# takes longer and longer to process.
+#
+# Fix up that program to keep the running totals in a data file so the
+# Professor can run it on each day's logs to get the new totals. Use the
+# Storable module.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use Storable qw(nstore retrieve);
+use Data::Dumper;
+
+my %hosts;
+my $storagepath = "ex6-1.data";
+if (-e $storagepath) {
+ %hosts = %{retrieve $storagepath};
+}
+while (<>) {
+ next if (/\A\s*#/);
+ my ($src, $dst, $bytes) = split;
+ $hosts{$src}{$dst} += $bytes;
+}
+nstore \%hosts, $storagepath;
+sub sum {
+ my $hashref = shift;
+ my $total;
+ foreach (keys %{$hashref}) {
+ $total += $hashref->{$_};
+ }
+ return $total;
+}
+foreach my $src (sort { sum($hosts{$b}) <=> sum($hosts{$a}) } keys %hosts) {
+ print "Total bytes ($src): ". sum($hosts{$src}) ."\n";
+ foreach my $dst (sort { $hosts{$src}{$b} <=> $hosts{$src}{$a} }
+ keys %{$hosts{$src}}) {
+ print "$src => $dst $hosts{$src}{$dst}\n";
+ }
+}
blob - /dev/null
blob + cf2ff798d3a4911262f1c185fe342e4316b5ac93 (mode 644)
--- /dev/null
+++ ex6-2.pl
+#!/usr/bin/perl
+
+# Modify the program from Exercise 1 to use JSON instead of Storable.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use Data::Dumper;
+use local::lib;
+use JSON;
+
+my %hosts;
+my $storagepath = "ex6-2.data";
+if (-e $storagepath) {
+ local $/;
+ open my $fh, '<', $storagepath or die "Unable to read from '$storagepath': $!";
+ my $data = <$fh>;
+ %hosts = %{from_json($data)};
+}
+while (<>) {
+ next if (/\A\s*#/);
+ my ($src, $dst, $bytes) = split;
+ $hosts{$src}{$dst} += $bytes;
+}
+open my $fh, '>', $storagepath or die "Unable to write to '$storagepath': $!";
+print $fh to_json(\%hosts, { pretty => 1 });
+sub sum {
+ my $hashref = shift;
+ my $total;
+ foreach (keys %{$hashref}) {
+ $total += $hashref->{$_};
+ }
+ return $total;
+}
+foreach my $src (sort { sum($hosts{$b}) <=> sum($hosts{$a}) } keys %hosts) {
+ print "Total bytes ($src): ". sum($hosts{$src}) ."\n";
+ foreach my $dst (sort { $hosts{$src}{$b} <=> $hosts{$src}{$a} }
+ keys %{$hosts{$src}}) {
+ print "$src => $dst $hosts{$src}{$dst}\n";
+ }
+}
blob - /dev/null
blob + 5bcc2501d705a1764ca0724b0ad2875dfddde853 (mode 644)
--- /dev/null
+++ ex7-1.pl
+#!/usr/bin/perl
+
+# The Professor modified some files on Monday afternoon and now he's
+# forgotten which ones they were. This happens all the time. He wants you
+# to make a subroutine called gather_mtime_between, which, given a starting
+# and ending timestamp, returns a pair of coderefs. The first one will be
+# used with File::Find to gather the names of only the items that were
+# modified between those two times; the second one you can use to get the
+# list of items found.
+
+# Here's some code to try; it should list only items that were last
+# modified on the most recent Monday, although you could easily change it
+# to work with a different day.
+#
+# Hint: We can find a file's timestamp (mtime) with code such as:
+#
+# $ my timestamp = (stat $file_name)[9];
+#
+# Because it's a slice, remember that those parentheses are mandatory.
+# Don't forget that the working directory inside the callback isn't
+# necessarily the starting directory from which we called find:
+#
+# Note the comment about DST. In many parts of the world, on the days when
+# daylight saving time or summer time kicks in and out, the civil day is no
+# longer 86,400 seconds long. The program glosses over this issue, but a
+# more careful coder might take it into consideration appropriately.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+use File::Find;
+use Time::Local;
+
+sub gather_mtime_between {
+ my($start, $end) = @_;
+ my @files;
+ return (
+ sub {
+ my $mtime = (stat $_)[9];
+ if ($start < $mtime && $mtime < $end) {
+ push @files, $File::Find::name;
+ }
+ },
+ sub { wantarray? @files : [@files]; });
+}
+
+my $target_dow = 1; # Sunday is 0, Monday is 1, ...
+my @starting_directories = (".");
+
+my $seconds_per_day = 24 * 60 * 60;
+my($sec, $min, $hour, $day, $mon, $yr, $dow) = localtime;
+my $start = timelocal(0, 0, 0, $day, $mon, $yr); # midnight today
+while ($dow != $target_dow) {
+ # Back up one day
+ $start -= $seconds_per_day; # hope no DST! :-)
+ if (--$dow < 0) {
+ $dow += 7;
+ }
+}
+my $stop = $start + $seconds_per_day;
+
+my($gather, $yield) = gather_mtime_between($start, $stop);
+find($gather, @starting_directories);
+my @files = $yield->( );
+
+for my $file (@files) {
+ my $mtime = (stat $file)[9]; # mtime via slice
+ my $when = localtime $mtime;
+ print "$when: $file\n";
+}
blob - /dev/null
blob + 01f1bc72870e4913180ed500922e93ef4fdfe53f (mode 644)
--- /dev/null
+++ ex8-1.pl
+#!/usr/bin/perl
+
+# Write a program that prints today's date and the day of the week, but
+# allows the user to choose to send the output to a file, a scalar, or both
+# at the same time. No matter which one the user selects, send the output
+# with a single print statement. If the user chooses to send the output to
+# a scalar, at the end of the program print the scalar's value to standard
+# output.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+
+use Getopt::Std;
+use IO::Tee;
+
+my %opts;
+getopts('sf:', \%opts);
+my $fh;
+my $string_ref;
+if (!%opts) {
+ die "Usage: $0 [-s] [-f file]";
+}
+if ($opts{s} && $opts{f}) {
+ open my $sh, '>', \$string_ref;
+ open my $th, '>', $opts{f} or die "Unable to open '$opts{f}': $!";
+ $fh = IO::Tee->new($sh, $th);
+} elsif ($opts{s}) {
+ open $fh, '>', \$string_ref;
+} elsif ($opts{f}) {
+ open $fh, '>', $opts{f} or die "Unable to open '$opts{f}': $!";
+}
+my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
+my @months = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
+my @days = qw(Sun Mon Tue Wed Thu Fri Sat);
+
+printf {$fh} ("%s %s %s %02d:%02d:%02d %4d",$days[$wday],$months[$mon],$mday,$hour,$min,$sec,$year+1900);
+
+if ($opts{s}) {
+ open my $sh, '<', \$string_ref;
+ my $str = <$sh>;
+ printf("Scalar: %s\n", $str);
+}
blob - /dev/null
blob + 942cb0b200f45662fdae4e7db9f36ed61e31b589 (mode 644)
--- /dev/null
+++ ex8-2.pl
+#!/usr/bin/perl
+
+# The Professor has to read a logfile that looks like the example we show
+# here. You can get sample data files from the Downloads section of
+# http://www.intermediateperl.com/:
+
+# Gilligan: 1 coconut
+# Skipper: 3 coconuts
+# Gilligan: 1 banana
+# Ginger: 2 papayas
+# Professor: 3 coconuts
+# MaryAnn: 2 papayas
+# ...
+#
+# He wants to write a series of files, called gilligan.info, maryann.info,
+# and so on. Each file should contain all the lines that begin with that
+# name. (Names are always delimited by the trailing colon.) At the end,
+# gilligan.info should start with:
+#
+# Gilligan: 1 coconut
+# Gilligan: 1 banana
+#
+# Now, the logfile is large and the coconut-powered computer is not fast,
+# so he wants to process the input file in one pass and write all output
+# files in parallel. How does he do it?
+#
+# Hint: Use a hash keyed by castaway name and whose values are IO::File
+# objects for each output file. Create those files if they don't exist yet,
+# and overwrite them if they do.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+
+use IO::Tee;
+
+my %files;
+while (<>) {
+ chomp(my ($castaway, $item) = split /: /);
+ $castaway = lc($castaway);
+ if(!defined($files{$castaway})) {
+ $files{$castaway} = IO::File->new("$castaway.info", "w")
+ or die "Unable to write '$castaway.info': $!";
+ }
+ print {$files{$castaway}} "$castaway: $item\n";
+}
blob - /dev/null
blob + 1ef32c8a510cb6f2a1256489efdcc17058ef06ff (mode 644)
--- /dev/null
+++ ex8-3.pl
+#!/usr/bin/perl
+
+# Write a program that takes multiple directory names from the command line
+# and then prints out their contents. Use a function that takes a directory
+# handle reference that you made with opendir.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+
+use IO::Tee;
+
+foreach (@ARGV) {
+ opendir my $dh, $_ or die "Could not open dirhandle! $!\n";
+ print ls($dh);
+}
+
+sub ls {
+ my $dh = shift;
+ my @output;
+ foreach (readdir $dh) {
+ next if /\A\.\.?\z/;
+ push @output, "$_\n";
+ }
+ return @output;
+}
blob - /dev/null
blob + e6c36ff2c13acea3d2f8a8e64489eb2fd61b8ba8 (mode 644)
--- /dev/null
+++ ex9-1.pl
+#!/usr/bin/perl
+
+# Get the rightmost program running (you can get the program from the
+# Downloads section of http://www.intermediateperl.com/ if you don't want to
+# type the whole thing yourself). Once you have the example working, modify
+# the rightmost program, take a hash reference of patterns, and return the
+# key of the rightmost match. Instead of calling it like:
+#
+# my $position = rightmost(
+# 'There is Mrs. Howell, Ginger, and Gilligan',
+# @patterns{ sort keys %patterns }
+# );
+#
+# call it like:
+#
+# my $key = rightmost(
+# 'There is Mrs. Howell, Ginger, and Gilligan',
+# \%patterns
+# )
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+
+sub rightmost {
+ my( $string, $pattern_ref ) = @_;
+
+ my $rightmost = -1;
+ my $rightkey;
+ while ( my ($key, $regex) = each %$pattern_ref) {
+ my $position = $string =~ m/$regex/ ? $-[0] : -1;
+ if ($position > $rightmost) {
+ $rightmost = $position;
+ $rightkey = $key;
+ }
+ }
+ return $rightkey;
+}
+
+my %patterns = (
+ Gilligan => qr/(?:Willie )?Gilligan/,
+ 'Mary Ann' => qr/Mary Ann/,
+ Ginger => qr/Ginger/,
+ Professor => qr/(?:The )?Professor/,
+ Skipper => qr/Skipper/,
+ 'A Howell' => qr/Mrs?. Howell/,
+
+);
+
+my $key = rightmost(
+ 'There is Mrs. Howell, Ginger, and Gilligan',
+ \%patterns
+);
+print "$key\n";
blob - /dev/null
blob + 775c16c0f230ecc952271a6f756711b892a0ecb2 (mode 644)
--- /dev/null
+++ ex9-2.pat
+cocoa?n[ue]t
+Mary[-\s]+Anne?
+(The\s+)?(Skipper|Professor)
blob - /dev/null
blob + 894faacddeeb6df90fe5a7770329568ba847cad9 (mode 644)
--- /dev/null
+++ ex9-2.pl
+#!/usr/bin/perl
+
+# Write a program to read in a list of patterns from a file. Precompile the
+# patterns and store them in an array. For example, your patterns file
+# might look like:
+#
+# cocoa?n[ue]t
+# Mary[-\s]+Anne?
+# (The\s+)?(Skipper|Professor)
+#
+# Prompt the user for lines of input, printing the line number and text for
+# each line that matches. The $. variable is useful here.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+use Getopt::Std;
+
+my %opts;
+getopt("p:", \%opts);
+if (defined($opts{p}) && scalar(%opts) == 1) {
+ open my $fh, "<", $opts{p} or die "Unable to open '$opts{p}': $!";
+ my @patterns;
+ while (<$fh>) {
+ chomp;
+ push @patterns, eval { qr/$_/ };
+ }
+ print "Type some input:\n\n";
+ while (<>) {
+ print "$.: $_" if $_ ~~ @patterns;
+ }
+} else {
+ die "Usage: $0 -p file";
+}
blob - /dev/null
blob + 59f24a43358f05bc342ce8ce04cee6ed12b690b4 (mode 644)
--- /dev/null
+++ ex9-2.txt
+Jump to content
+[ ] Main menu
+Main menu
+move to sidebar hide
+Navigation
+
+ * Main page
+ * Contents
+ * Current events
+ * Random article
+ * About Wikipedia
+ * Contact us
+ * Donate
+
+Contribute
+
+ * Help
+ * Learn to edit
+ * Community portal
+ * Recent changes
+ * Upload file
+
+Languages
+Language links are at the top of the page across from the title.
+[wikip] Wikipedia The Free Encyclopedia
+Search
+[ ]
+Search
+ * Create account
+ * Log in
+
+[ ] Personal tools
+
+ * Create account
+ * Log in
+
+Pages for logged out editors learn more
+
+ * Contributions
+ * Talk
+
+[ ]
+
+Contents
+
+move to sidebar hide
+
+ * (Top)
+ * 1Premise
+ * 2Cast and characters
+ * 3Episodes
+ Toggle Episodes subsection
+ + 3.1Pilot episode
+ + 3.2First broadcast episode
+ + 3.3Last broadcast episode
+ * 4Typical plots
+ Toggle Typical plots subsection
+ + 4.1Dream sequences
+ * 5Production
+ Toggle Production subsection
+ + 5.1Casting
+ + 5.2Theme song
+ o 5.2.1Later parodies and homages
+ * 6Cancellation
+ * 7Nielsen ratings/television schedule
+ * 8Film sequels
+ * 9Spin-offs and timelines
+ * 10Reunions and documentaries
+ * 11Related productions
+ * 12Syndication
+ * 13Home media
+ * 14In other media
+ * 15Ginger or Mary Ann?
+ * 16References
+ * 17External links
+
+Toggle the table of contents
+[ ] Toggle the table of contents
+
+Gilligan's Island
+
+[ ] 21 languages
+
+ * Български
+ * Deutsch
+ * Español
+ * Euskara
+ * فارسی
+ * Français
+ * Galego
+ * Italiano
+ * Magyar
+ * Bahasa Melayu
+ * Монгол
+ * Nederlands
+ * 日本語
+ * Norsk bokmål
+ * Polski
+ * Português
+ * Русский
+ * Simple English
+ * Srpskohrvatski / српскохрватски
+ * Svenska
+ * Türkçe
+
+Edit links
+
+ * Article
+ * Talk
+
+[ ] English
+
+ * Read
+ * Edit
+ * View history
+
+[ ] Tools
+Tools
+move to sidebar hide
+Actions
+
+ * Read
+ * Edit
+ * View history
+
+General
+
+ * What links here
+ * Related changes
+ * Upload file
+ * Special pages
+ * Permanent link
+ * Page information
+ * Cite this page
+ * Wikidata item
+
+Print/export
+
+ * Download as PDF
+ * Printable version
+
+In other projects
+
+ * Wikimedia Commons
+ * Wikiquote
+
+From Wikipedia, the free encyclopedia
+American television series, 1964 to 1967
+For other uses, see Gilligan's Island (disambiguation).
+
+American TV series or program
+
+ Gilligan's Island
+[220px-Gilligans_Island_tit]
+ Created by Sherwood Schwartz
+ Rod Amateau
+ Jack Arnold
+ Directed by Ida Lupino
+ Stanley Z. Cherry
+ Richard Donner
+ * Bob Denver
+ * Alan Hale Jr.
+ * Jim Backus
+ Starring * Natalie Schafer
+ * Tina Louise
+ * Russell Johnson
+ * Dawn Wells
+
+ Theme music Sherwood Schwartz
+ composer George Wyle
+ Opening theme "The Ballad of Gilligan's Isle"
+Country of origin United States
+ No. of seasons 3
+ No. of episodes 98 plus a 1963 pilot (first broadcast in 1964) (list of
+ episodes)
+ Production
+ Executive Sherwood Schwartz
+ producer
+ Producer Sherwood Schwartz
+ Camera setup Film; Single-camera
+ Running time 25 minutes
+ Production Gladasya Productions
+ companies CBS Productions
+ United Artists Television
+ Release
+Original network CBS
+ Picture format Black and white (1964–1965)
+ Color (1965–1967)
+ Audio format Monaural
+Original release September 26, 1964 (1964-09-26) –
+ April 17, 1967 (1967-04-17)
+ Related
+ * The New Adventures of Gilligan
+
+[200px-Bob_Denver_Gillig]
+Bob Denver as Gilligan
+
+[200px-Alan_Hale_Jr]
+Alan Hale Jr. as the Skipper
+
+[170px-The_Professor_]
+Russell Johnson as The Professor
+
+[170px-Tina_Louise_19]
+Tina Louise as Ginger
+
+[200px-Dawn_Wells_Gillig]
+Dawn Wells as Mary Ann
+
+Gilligan's Island is an American sitcom created and produced by Sherwood
+Schwartz. The show's ensemble cast features Bob Denver, Alan Hale Jr., Jim
+Backus, Natalie Schafer, Tina Louise, Russell Johnson and Dawn Wells. It
+aired for three seasons on the CBS network from September 26, 1964, to
+April 17, 1967.^[1] The series follows the comic adventures of seven
+castaways as they try to survive on an island where they are shipwrecked.
+Most episodes revolve around the dissimilar castaways' conflicts and their
+unsuccessful attempts to escape their plight, with the ship's first mate,
+Gilligan, usually being responsible for the failures.^[2]
+
+Gilligan's Island ran for 98 episodes. All 36 episodes of the first season
+were filmed in black and white and were later colorized for syndication.
+The show's second and third seasons (62 episodes) and the three television
+film sequels (aired between 1978 and 1982) were filmed in color.
+
+The show received solid ratings during its original run, then grew in
+popularity during decades of syndication, especially in the 1970s and 1980s
+when many markets ran the show in the late afternoon. Today, all of the
+characters of Gilligan's Island are recognized as American cultural icons.
+
+Premise[edit]
+
+The two-man crew of the charter boat SS Minnow and five passengers on a
+"three-hour tour" from Honolulu run into a storm and are shipwrecked on an
+uncharted island somewhere in the Pacific Ocean. (The exact location is
+said to be in conflicting longitudes/latitudes in three episodes.)^[3]
+Their efforts to be rescued are typically thwarted by the inadvertent
+conduct of the hapless first mate, Gilligan. In 1997, show creator Sherwood
+Schwartz explained that the underlying concept, people with different
+characters and backgrounds being in a situation where they need to learn
+how to get along and cooperate with each other to survive, is still "the
+most important idea in the world today".^[4]
+
+Cast and characters[edit]
+
+Main article: List of Gilligan's Island characters
+
+ * Bob Denver as Willie Gilligan, the hapless first mate of the S.S.
+ Minnow. His first name is given in the pilot episode.
+ * Alan Hale Jr. as Captain Jonas Grumby ("The Skipper"), the captain of
+ the S.S. Minnow
+ * Jim Backus as Thurston Howell III, a Wall Street millionaire
+ * Natalie Schafer as Eunice "Lovey" Howell, Thurston's wife
+ * Tina Louise as Ginger Grant, a Hollywood movie star
+ * Russell Johnson as Professor Roy Hinkley, Ph.D. ("The Professor")
+ * Dawn Wells as Mary Ann Summers, a wholesome farm girl from Winfield,
+ Kansas, who won the trip and tour in a lottery
+ * Charles Maxwell (uncredited) as the voice of the recurring radio
+ announcer
+
+Episodes[edit]
+
+Main article: List of Gilligan's Island episodes
+
+Season Episodes Originally aired
+ First aired Last aired Network
+ Pilot October 16, 1992 (1992-10-16) TBS
+ 1 36 September 26, 1964 ( June 12, 1965 (
+ 1964-09-26) 1965-06-12)
+ 2 32 September 16, 1965 ( April 28, 1966 ( CBS
+ 1965-09-16) 1966-04-28)
+ 3 30 September 12, 1966 ( April 17, 1967 (
+ 1966-09-12) 1967-04-17)
+ Television October 14, 1978 ( October 14, 2001 ( NBC/CBS
+ films 1978-10-14) 2001-10-14)
+
+Pilot episode[edit]
+
+The pilot episode, "Marooned", was filmed in November 1963. The pilot
+featured seven characters (as in the series), but only four of the
+characters—and their associated actors—were carried forward into the
+series: Gilligan (Denver), the Skipper (Hale) and the Howells (Backus and
+Schafer).
+
+Because of the three significant character and casting changes between the
+pilot episode and the first series episode, the pilot was not shown before
+the series first aired on September 26, 1964. The original pilot eventually
+aired over 29 years later on TBS.
+
+The three characters who did not carry forward from the pilot were two
+secretaries and a high school teacher. In the pilot, the scientifically
+inclined Professor was instead a high school teacher played by John Gabriel
+. Ginger the movie star was still red-haired Ginger, but she worked as a
+secretary and was played by Kit Smythe. She was more sarcastic than the
+later incarnation. Mary Ann the Kansas farm girl was instead Bunny,
+Ginger's co-worker, played as a cheerful "dumb blonde" by Nancy McCarthy.
+
+The pilot's opening and ending songs were two similar calypso-styled tracks
+written by John Williams and performed by Sherwood Schwartz impersonating
+singer Sir Lancelot. The lyrics of both differ from those of the TV series
+and the pilot's opening theme song was longer. The short scenes during this
+initial music include Gilligan taking the Howells' luggage to the boat
+before cast-off and Gilligan trying to give a cup of coffee to the Skipper
+during the storm that would ultimately maroon the boat.
+
+After the opening theme song and credits end, the pilot proper begins with
+the seven castaways waking up on the beached SS Minnow. It continues with
+them performing various tasks including exploring the island, trying to fix
+the transmitter, building huts and finding food. Contrary to some
+descriptions, the pilot contained no detailed accounts of the characters'
+backgrounds. It concludes with the ending theme song and credits. The
+background music and even the laugh tracks of the pilot appear nearly
+identical to those used during the series.
+
+First broadcast episode[edit]
+
+The first episode actually broadcast, "Two on a Raft", is sometimes
+incorrectly referred to as the series pilot. This episode begins with the
+same scene of Gilligan and the Skipper awakening on the boat as in the
+pilot (though slightly differently cut, to eliminate most shots of the
+departed actors) and continues with the characters sitting on the beach
+listening to a radio news report about their disappearance. No equivalent
+scene or background information is in the pilot, except for the description
+of the passengers in the original theme song. Rather than reshooting the
+rest of the pilot story for broadcast, the show just proceeded. The plot
+thus skips over the topics of the pilot; the bulk of the episode tells of
+Gilligan and the Skipper setting off on a raft to try to bring help but
+unknowingly landing back on the other side of the same island.
+
+The scene with the radio report is one of two scenes that reveal the names
+of the Skipper (Jonas Grumby) and the Professor (Roy Hinkley); the names
+are used in a similar radio report early in the series. The name Jonas
+Grumby appears nowhere else in the series except for an episode in which
+the Maritime Board of Review blames the Skipper for the loss of the Minnow.
+The name Roy Hinkley is used one other time when Mr. Howell introduces the
+Professor as Roy Huntley and the Professor corrects him, to which Mr.
+Howell replies, "Brinkley, Brinkley."
+
+The plot for the pilot episode was recycled into that season's Christmas
+episode, "Birds Gotta Fly, Fish Gotta Talk", in which the story of the
+pilot episode, concerning the practical problems on landing, is related
+through a series of flashbacks. Footage featuring characters that had been
+recast was reshot using the current actors. For scenes including only
+Denver, Hale, Backus and Schafer, the original footage was reused.
+
+Last broadcast episode[edit]
+
+The last episode of the show, "Gilligan the Goddess", aired on April 17,
+1967, and ended just like the rest, with the castaways still stranded on
+the island. It was not known at the time that it would be the series
+finale, as a fourth season was expected but then canceled.^[5]
+
+Typical plots[edit]
+
+The shipwrecked castaways want to leave the island and various
+opportunities frequently present themselves but invariably fail, usually
+due to some bumbling error committed by Gilligan. Sometimes this results in
+Gilligan saving the others from some unforeseen flaw in their plan.^[6]
+
+Most episodes of Gilligan's Island use variations of five recurring basic
+plots:
+
+ * Life on the island. A running gag is the castaways' ability to fashion
+ an array of useful objects from bamboo, gourds, vines and other local
+ materials. Some are everyday items, such as eating and cooking
+ utensils, while others (such as a dental drill and a remarkably
+ efficient lie detector apparatus) are stretches of the imagination.
+ Russell Johnson noted in his autobiography that the production crew
+ enjoyed the challenge of building these props. These bamboo items
+ include framed huts with thatched grass sides and roofs, along with
+ bamboo closets strong enough to withstand hurricane-force winds and
+ rain, the communal dining table and chairs, pipes for Gilligan's hot
+ water, a stethoscope and a pedal-powered car.
+ * Visitors to the island. Another challenge to a viewer's suspension of
+ disbelief is the remarkable frequency with which the remote, uncharted
+ island is visited by an assortment of people who repeatedly fail to
+ help rescue the castaways.
+ * Dream sequences in which one of the castaways dreams they are some
+ character related to that week's story line. All of the castaways
+ appeared as other characters within the dream. In later interviews and
+ memoirs, nearly all the actors stated that the dream episodes were
+ among their favorites.
+ * A piece of news concerning one or more of the castaways is heard over
+ the radio and causes distress or discord among them.
+ * The appearance or arrival of unusual objects to the island, such as a
+ World War II naval mine, an old silent motion picture camera and
+ costumes, a crate of radioactive vegetable seeds, plastic explosives, a
+ robot, a live lion, a jet pack, or a "Mars Lander" that the scientists
+ back in the United States think is sending them pictures of Mars.
+
+Most of the slapstick comedic sequences between Hale and Denver were
+inspired by Laurel and Hardy, particularly when Hale breaks the fourth wall
+by looking directly into the camera, expressing his frustration with
+Denver's clumsiness, as Oliver Hardy often did.^[7]
+
+Dream sequences[edit]
+
+One of the trademarks of Gilligan’s Island was its frequent use of dream
+sequences. The showrunners used this device as a way to keep the setting of
+the show from becoming redundant and to showcase the acting talents of the
+cast. Many episodes that feature dream sequences are ranked among the most
+memorable episodes of the show, as most of them parodied or drew
+inspiration from works of literature, film, and other television shows of
+the day.
+
+The dream sequences always corresponded to the real-life situation of the
+episode and usually featured symbolism that prompted a change of heart in
+whichever castaway was dreaming. Of the seven castaways, Ginger was the
+only one who never had a dream sequence.
+
+ * The Sound of Quacking (S1E7) — Parody of Gunsmoke. Afraid that the
+ starving castaways will eat his pet duck Emily, Gilligan dreams that he
+ is U.S. Marshall Gilligan, whose primary task is keeping the rowdy
+ citizens of his town from eating Emily, who he keeps locked in a jail
+ cell. Features the Skipper as the Marshall’s limping deputy, Ginger as
+ a sultry saloon girl, Mary Ann as the Marshall’s sweetheart, Mrs.
+ Howell as a duck-gravy-making Spanish señora, and Mr. Howell and the
+ Professor as a lynch mob.
+
+ * St. Gilligan and the Dragon (S1E20) — All four men react to the girls’
+ recent demand for equal rights by having dreams that reflect what they
+ expect from their women. The Skipper dreams that he is a sultan with
+ Ginger, Mary Ann, and Mrs. Howell as his dancing girls. Mr. Howell
+ dreams that he is relaxing in a spa with all three girls catering to
+ his every whim. The Professor dreams that he is Cary Grant emerging
+ from his dressing room only to be assaulted by the girls, his crazed
+ fans. Gilligan, always childlike, dreams that he is a bullfighter and
+ that the girls each bring him a gift.
+
+ * My Fair Gilligan (S1E35) — Gilligan’s fears of his new life as the
+ Howells’ adopted son are manifested when he dreams that he is a spoiled
+ prince who callously orders the beheadings of any supplicant who
+ displeases him in the slightest. Features Mr. and Mrs. Howell as the
+ pampering King and Queen, Mary Ann as a shepherd girl, the Professor as
+ a wizardly astronomer, Ginger as a simpering court lady, and the
+ Skipper as a naval admiral.
+
+ * The Little Dictator (S2E3) — Having just been appointed the puppet
+ ruler of the island, Gilligan dreams that he is the dictator of a small
+ foreign country on the brink of war, and the other castaways serve as
+ his cabinet, who desperately try to convince him to look out his window
+ at the chaos outside. Features Mr. Howell as the minister of finance,
+ the Skipper as the secretary of the navy, Ginger as an undercover
+ agent, the other castaways as cabinet members, and guest star Nehemiah
+ Persoff as the masterminding dictator. Notable for being the only dream
+ sequence to feature a guest star as a main character.
+
+ * The Sweepstakes (S2E5) — Obsessed with finding Gilligan’s lost
+ sweepstake ticket, Mr. Howell dreams that he is a grizzled prospector
+ in the Old West who has just struck millions of dollars’ worth of gold,
+ but the kingly treatment he receives in town is quickly revoked when he
+ realizes that he doesn’t have proof of his claim. Features the
+ Professor as a crooked bank owner, Gilligan as the corrupt U.S.
+ Marshall, Ginger as a smooth-talking saloon owner, Mary Ann as an
+ impoverished country girl, and the Skipper as a cheating gambler.
+ Notable for being one of the few dream sequences in which one of the
+ castaways does not appear (Mrs. Howell, in this case). Jim Backus
+ reprised his role as the prospector in the three-part Grand Canyon
+ episode in the third season of The Brady Bunch.
+
+ * The Postman Cometh (S2E18) — Inspired by Dr. Kildare and Ben Casey.
+ Afraid that she is going to die from eating poison mushrooms, Mary Ann
+ falls asleep listening to her medical soap opera radio show and dreams
+ that she is a patient in a hospital for a fatal disease. Features Mr.
+ Howell as the kooky Dr. Zorbagillespie, Gilligan as Dr. Charles Boyer,
+ the Skipper as Dr. Matt Dillon, the Professor as Dr. Cary Grant, and
+ Mrs. Howell and Ginger as somewhat sympathetic nurses.
+
+ * V for Vitamins (S2E30) — Inspired by Jack and the Beanstalk. Gilligan
+ falls asleep while guarding the last of the castaways’ citrus rations
+ and dreams that he is a farm boy named Jack tasked with retrieving
+ oranges for his starving family, but he ends up buying magic beans,
+ climbing a beanstalk, and entering a giant’s castle. Features Mrs.
+ Howell as Jack’s mother, Mr. Howell as a W.C. Fields-inspired gangster,
+ Mary Ann as the Giant’s helpful maid, the Skipper as the Giant, and
+ Ginger and the Professor as elderly captives in the Giant’s dungeon. In
+ the sequence where Jack runs from the Giant, Bob Denver’s young son
+ Patrick played Jack to create forced perspective and make Jack look
+ extra small.
+
+ * Meet the Meteor (S2E32) — When the Professor’s radiation readings on
+ the newly-crashed meteor prove fatal, Gilligan dreams that the
+ castaways have aged to extreme feebleness in only a few days. The
+ castaways hobble from their huts to the dining table to celebrate one
+ final anniversary on the island before they die of old age or before an
+ electrical storm destroys the island.
+
+ * Up at Bat (S3E1) — Inspired by Dracula and Sherlock Holmes. After
+ supposedly being bitten by a vampire bat, Gilligan dreams that he is a
+ ghoulish vampire inhabiting a haunted castle and eagerly awaiting the
+ arrival of his guests, who also double as his dinner. Features Ginger
+ as the vampire’s ghostly wife, the Professor as Sherlock Holmes, the
+ Skipper as Dr. Watson, Mr. and Mrs. Howell as unsuspecting guests in
+ the house, and Mary Ann as the hideous housekeeper. Notable for being
+ filmed on the same haunted mansion set from the earlier episode “The
+ Friendly Physician” (S2E29).
+
+ * The Invasion (S3E11) — Inspired by James Bond. Gilligan’s fears of
+ being hunted down by secret agents show up in his dream, in which he is
+ suave spy Agent 014 fighting against a criminal empire and its
+ formidable group of assassins out to kill him and take away his
+ top-secret briefcase. Features the Professor as the Chief Good Guy, Mr.
+ Howell as Mr. Evil (inspired by Ernst Stavro Blofeld), Mrs. Howell as
+ Mr. Evil’s moll, Mary Ann as the deadly receptionist, Ginger as
+ Gilligan’s treacherous fiancée, and the Skipper as an evil agent
+ disguised as Gilligan’s mother.
+
+ * And Then There Were None (S3E13) — Inspired by Strange Case of Doctor
+ Jekyll and Mister Hyde. Gilligan believes that he may be a murderous
+ psychopath and dreams that he is on trial as an Oscar Wilde-style
+ Doctor Gilligan, who transforms into a hideous monster at the mention
+ of food. Features Mrs. Howell as his defense attorney Mary Poppins,
+ Mary Ann as the loyal Eliza Doolittle (who has apparently confused
+ Henry Jekyll for Henry Higgins), Ginger as the Lady in Red, Mr. Howell
+ as a biased judge, the Professor as the prosecuting attorney, and the
+ Skipper as the bailiff.
+
+ * Court-Martial (S3E17) — Gilligan dreams that he is Lord Admiral
+ Gilligan, the youngest in the British fleet, charged with protecting
+ the three noble ladies onboard when the ship is attacked and captured
+ by uncouth pirates. Features Mr. Howell as Captain Hook, the Professor
+ as Long John Silver, the Skipper as Captain Kidd, Mrs. Howell as the
+ queen mother, and Ginger and Mary Ann as her daughters.
+
+ * Lovey’s Secret Admirer (S3E19) — Inspired by Cinderella. After a fight
+ with her husband, Mrs. Howell dreams that she is Cinderella, oppressed
+ by her wicked stepfamily but determined to attend the royal ball and
+ meet the prince. Features the Skipper as Cinderella’s stepmother,
+ Ginger and Mary Ann as the ugly stepsisters, Gilligan as the inept
+ Fairy Godfather, Mr. Howell as the self-absorbed prince, and the
+ Skipper and the Professor as pages.
+
+ * The Secret of Gilligan’s Island (S3E25) — Gilligan’s discovery of an
+ ancient stone tablet on the island leads him to dream that he and the
+ castaways are cave people, each with a goal or fear about leaving their
+ familiar caves in search of a better land. Features Gilligan as an
+ artistic stonecutter, the Skipper as his best friend, Mr. Howell as the
+ dictatorial chief, Mrs. Howell as his jealous wife, Ginger and Mary Ann
+ as cave girls seeking husbands, and the Professor as an inventor.
+
+Production[edit]
+
+The show was filmed at the CBS Radford Studios complex in Studio City, Los
+Angeles.^[8] The same stage was later used for The Mary Tyler Moore Show
+and Roseanne, the latter of which featured a daydream parodying Gilligan's
+Island in one episode. The lagoon was drained and used as a parking lot
+during the show's off-season and was the last surviving element of the show
+when it was demolished in 1997 as part of an expansion project.^[9]
+
+Four boats were used as the SS Minnow. One was used in the opening credits
+and rented in Ala Wai Yacht Harbor in Honolulu. Another, the Bluejacket,
+was used in the opening credits shown during the second and third seasons
+and eventually turned up for sale on Vancouver Island in August 2006, after
+running aground on a reef in the Hecate Strait on the way south from
+Alaska. One boat was used for beach scenes after being towed to Kauai in
+Hawaii. The fourth Minnow was built on the CBS Studios set in the second
+season.^[10] The Minnow was named in reference to Newton Minow, chairman of
+the U.S. FCC, in response to Minow's landmark 1961 speech "Television and
+the Public Interest"; the speech lambasted television producers for
+producing, among other things, "formula comedies about totally
+unbelievable" characters and creating a "vast wasteland" of bad television.
+^[11]
+
+The final day of filming the pilot was Friday, November 22, 1963, the day
+of the assassination of President John F. Kennedy.^[12] The cast and crew
+learned of the assassination late that morning, Hawaii time.^[12] Between
+the filming of scenes, they crowded around a radio listening to news
+bulletins.^[12] A reminder of the tragedy appears in the opening sequence
+of the show's first season, when the theme song is played. As the Minnow is
+leaving the harbor and heading out to sea, an American flag flying at half
+staff can be seen in the background.^[12]^[13]
+
+The United States Coast Guard occasionally received telegrams and letters
+from concerned citizens, who apparently did not realize it was a scripted
+show, pleading for them to rescue the people on the deserted island. The
+Coast Guard forwarded these to producer Sherwood Schwartz.^[14] In homage
+to those telegrams, the film Rescue from Gilligan's Island showed the
+successful rescue where Gilligan lights a fire aboard the castaways'
+makeshift raft and is chastised for a thoughtless, dangerous action by the
+others. However, the resultant smoke attracts the attention of a US Coast
+Guard helicopter, whose pilot commends Gilligan's fire; otherwise, the
+castaways would have been adrift and unnoticed.
+
+Casting[edit]
+
+Bob Denver was not the first choice to play Gilligan; actor Jerry Van Dyke
+was offered the role, but he turned it down, believing that the show would
+never be successful. He chose instead to play the lead in My Mother the Car
+, which premiered the following year and is frequently cited as one of the
+worst television shows of all time; it was canceled after one season. The
+producers looked to Bob Denver, the actor who had played Maynard G. Krebs,
+the beatnik in The Many Loves of Dobie Gillis.^[citation needed]
+
+Natalie Schafer had it written into her contract that no close-ups would be
+made of her, but after a while in the series it was forgotten. Schafer was
+63 when the pilot was shot, although reportedly no one on the set or in the
+cast knew her real age and she refused to divulge it. Originally, she only
+accepted the role because the pilot was filmed on location in Hawaii. She
+looked at the job as nothing more than a free vacation, as she was
+convinced that a show this silly would "never go".^[15]
+
+Tina Louise clashed with producer Sherwood Schwartz because she initially
+believed that she was hired as the central character. The character of
+Ginger was originally written as a hard-nosed, sharp-tongued temptress, but
+Louise argued that this portrayal was too harsh and refused to play her as
+written. A compromise was reached; Louise agreed to play Ginger as a
+Marilyn Monroe/Jayne Mansfield type. Her temperament reportedly made her
+difficult to work with, but when it came time to shoot, she was always
+professional. Louise continued to disagree with producers over her role and
+was the only cast member who refused to appear in any of the three
+post-series TV movies. After many years of distancing herself from the
+show, she appeared in a reunion of the cast on two television talk shows in
+1982 and 1988 and on an episode of Roseanne in 1995 when the Roseanne cast
+re-enacted Gilligan's Island. In the pilot episode, the character of Ginger
+was played by actress Kit Smythe.^[citation needed]
+
+John Gabriel was originally cast as the academic character, a high school
+teacher. After testing, the network didn't believe the character scored
+well with the audience. Auditions were held for the revised role of the
+Professor, which included Dabney Coleman, but the part was ultimately won
+by Russell Johnson. Prior to his acting career, Johnson had served as a
+bombardier in 44 combat missions over the Pacific during World War II. On
+March 4, 1945, the B-25 he was flying as the navigator was shot down,
+killing the copilot and breaking both of Johnson's ankles. At the time of
+his audition he was working in film and not very interested in a television
+show unless it was going to be his own. His film career had been going
+well, tallying several science fiction and western film credits, including
+a role opposite Ronald Reagan in the 1953 film Law and Order. In addition
+to film, Johnson had landed roles on multiple popular television series
+such as The Adventures of Superman, The Twilight Zone and The Outer Limits.
+With six other leads, his agent had to talk him into going to the audition,
+but after meeting Sherwood Schwartz, he started to warm up to the idea of
+playing the Professor. In discussing his role, he laughingly said he was
+unsure what was more difficult, remembering the Professor's technically
+oriented lines, or looking up what they meant.^[citation needed]
+
+Dawn Wells was a former Miss Nevada when she auditioned for the Mary Ann
+role. Her competition included Raquel Welch and Pat Priest. The pilot
+episode featured a different character ("Bunny") played by actress Nancy
+McCarthy. After it was shot, the network decided to recast the roles of the
+Professor and the two young women. Mary Ann became a simple farm girl from
+Winfield, Kansas.^[citation needed]
+
+Theme song[edit]
+
+The music and lyrics for the theme song, "The Ballad of Gilligan's Isle",
+were written by Sherwood Schwartz and George Wyle. One version was used for
+the first season and another for the second and third seasons. In the
+original song, the Professor and Mary Ann, originally considered
+"second-billed co-stars", were referred to as "the rest", but with the
+growing popularity of those characters, their names were inserted into the
+lyrics in the second season. The Gilligan theme song underwent this one
+major change because star Bob Denver personally asked studio executives to
+add Johnson and Wells to the song.^[16] When the studio at first refused,
+saying it would be too expensive to reshoot, Denver insisted, even going so
+far as to state that if Johnson and Wells were not included, he wanted his
+name out of the song as well. The studio caved in and "the Professor and
+Mary Ann" were added.^[17]^[18]^[19] The theme song in the original pilot
+did not even mention the character Ginger, with the last two mentioned by
+name being "the Millionaire and Mrs. Millionaire" followed by "...and the
+other tourists".^[20]
+
+The first-season version was recorded by the folk group The Wellingtons.
+The second-season version, which incorporated more of a sea shanty sound,
+was uncredited, but according to Russell Johnson in his book Here on
+Gilligan's Isle, it was performed by a group called the Eligibles.^[21]
+
+The show's original pilot episode featured a calypso theme song by future
+film composer John Williams and different lyrics. The original length of
+the voyage was "a six-hour ride", not "a three-hour tour".^[22] John
+Williams (or Johnny Williams as he was often listed in the show credits)
+also started out as the composer of the incidental music for the show (from
+1964 to 1965), but was replaced by Gerald Fried for the remaining seasons
+(1965–1967).
+
+Later parodies and homages[edit]
+
+The band Little Roger and the Goosebumps recorded "Stairway to Gilligan's
+Island," a parody of Led Zeppelin's "Stairway to Heaven", substituting the
+words to the Gilligan's Island theme song.^[23] In 1987, The Iceman
+parodied Madonna's "La Isla Bonita" as "La Isla Gilligan." "Weird Al"
+Yankovic recorded a song called "Isle Thing", a parody of Tone Lōc's "Wild
+Thing", about a rapper whose girlfriend introduces him to the show.
+Yankovic also mentions the show in his song "Stop Draggin' My Car Around"
+and he used one verse from the closing theme lyrics in "Amish Paradise"
+(1996), a parody of Coolio's "Gangsta's Paradise" (1995). The song has also
+been covered by many bands, including Bowling for Soup for the TBS show The
+Real Gilligan's Island.^[24] Israel Kamakawiwoʻole also recorded a comic
+tribute to the theme song on his album E Ala E. The TV series ALF had a
+2-part episode "Somewhere Over the Rerun"/"The Ballad of Gilligan's Island"
+in which ALF dreams he's on Gilligan's Island; guest stars Bob Denver, Alan
+Hale, Dawn Wells and Russell Johnson reprise their Gilligan's Island roles.
+The chorus to rap group Big Tymers' Still Fly is based on the Gilligan's
+Island theme song.^[25]
+
+Cancellation[edit]
+
+During the 1966–1967 television season, Gilligan's Island aired on Mondays
+at 7:30 p.m. Eastern time. Though the sitcom's ratings had fallen well out
+of the top-30 programs, during the last few weeks of its third season, the
+series was still winning its timeslot against its main competition, The
+Monkees, which aired at the same time on NBC-TV. Therefore, CBS assured
+Sherwood Schwartz that Gilligan's Island would definitely be picked up for
+a fourth year.
+
+CBS, however, had signaled its intention to cancel the long-running Western
+series Gunsmoke, which had been airing late on Saturday nights during the
+1966–1967 television season. Under pressure from CBS network president
+William S. Paley and his wife Babe, along with many network affiliates and
+longtime fans of Gunsmoke, CBS rescheduled the Western to an earlier time
+slot on Mondays at 7:30 p.m. eastern time. As a result, Gilligan's Island
+was quietly canceled at practically the last minute, while the cast members
+were all on vacation. Some of the cast had bought houses near the set,
+based on Sherwood Schwartz's verbal confirmation that the series would be
+renewed for a fourth season.^[26]
+
+Nielsen ratings/television schedule[edit]
+
+ This section needs additional citations for verification. Please
+[50px-] help improve this article by adding citations to reliable sources
+ in this section. Unsourced material may be challenged and removed.
+ (January 2016) (Learn how and when to remove this template message)
+
+ Season Ep Season Season Time slot Rank Rating Households
+ # premiere finale
+1 ( September June Saturdays at 24.7
+1964–1965) 36 26, 1964 12, 8:30 p.m. eastern #18 (tie) 13,227,700
+ 1965 time
+2 ( September April Thursdays at
+1965–1966) 32 16, 1965 28, 8:00 p.m. eastern #22 22.1 11,900,850
+ 1966 time
+3 ( September April Mondays at #49^
+1966–1967) 30 12, 1966 17, 7:30 p.m. eastern [27] N/A N/A
+ 1967 time
+
+Film sequels[edit]
+
+Three television film sequels were made—the first independently, the other
+two by MCA/Universal Television.
+
+In the 1978 television film, Rescue from Gilligan's Island, the castaways
+successfully leave the island but have difficulty reintegrating into
+society. During a reunion cruise on the first Christmas after their rescue,
+fate intervenes and they find themselves wrecked on the same island at the
+end of the film. It starred the original cast, except for Tina Louise, who
+refused to participate because of her disputes with the producers and who
+was replaced by Judith Baldwin. The plot involved Soviet agents seeking a
+memory disc from a spy satellite that landed on the island and facilitated
+the protagonists' rescue.
+
+In a 1979 sequel, The Castaways on Gilligan's Island, they are rescued once
+again and the Howells convert the island into a getaway resort with the
+other five castaways as "silent partners". Ginger was again played by
+Judith Baldwin.
+
+In a second sequel, The Harlem Globetrotters on Gilligan's Island (1981),
+villains played by Martin Landau and then-wife Barbara Bain try to take
+over the island to gain access to a vein of "supremium", a valuable but
+volatile fictional element. This time, Ginger was played by Constance
+Forslund. They are thwarted by the timely intervention of the Harlem
+Globetrotters. Jim Backus, who was in poor health at the time, was written
+out of the script by saying Thurston Howell III was tending to Howell
+Industries back on the mainland. David Ruprecht played the role of his son,
+Thurston Howell IV, who was asked to manage the resort. However, Backus
+insisted on keeping continuity and made a cameo appearance at the end of
+the film.
+
+In 2008, Sherwood Schwartz stated he would like a modern-day movie
+adaptation of Gilligan's Island with Michael Cera as Gilligan and Beyonce
+Knowles as Ginger.^[28]^[29]^[30]
+
+Spin-offs and timelines[edit]
+
+The New Adventures of Gilligan is a Filmation-produced animated remake that
+aired on ABC on Saturday mornings from September 7, 1974, to September 4,
+1977, for 24 episodes (16 installments airing in 1974–75 and eight new ones
+combined with repeats in 1975–76). The voices were provided by the original
+cast except for Ginger and Mary Ann (both were voiced by Jane Webb). Dawn
+Wells could not participate because she was in a touring production.^[
+citation needed] An additional character was Gilligan's pet, Snubby the
+Monkey.
+
+Gilligan's Planet is an animated science-fiction version produced by
+Filmation and starring the voices of the Gilligan's Island cast, save for
+Tina Louise (Dawn Wells voiced both Mary Ann and Ginger). In a follow-up to
+The New Adventures of Gilligan, the castaways escape from the island by
+building a spaceship and get shipwrecked on a distant planet. Only 12
+episodes aired on CBS between September 18, 1982, and September 3, 1983. In
+the episode "Let Sleeping Minnows Lie", they travel to an island, get
+shipwrecked there and Gilligan observes, "First we were stranded on an
+island, then we were stranded on a planet and now we're stranded on an
+island on a planet."
+
+Reunions and documentaries[edit]
+
+ This section does not cite any sources. Please help improve this
+[50px-] section by adding citations to reliable sources. Unsourced material
+ may be challenged and removed. (January 2016) (Learn how and when
+ to remove this template message)
+
+Good Morning America featured a Gilligan's Island reunion presided over by
+guest host Kathie Lee Gifford on November 26, 1982. The entire cast was
+present, except for Jim Backus who was unable to attend but appeared via a
+live video remote from Los Angeles.
+
+All seven of the original cast members (along with Sherwood Schwartz)
+reunited on television for one last time on a 1988 episode of The Late Show
+with Ross Shafer.
+
+In the Baywatch episode "Now Sit Right Back and You'll Hear a Tale", first
+aired in February 1992, Bob Denver and Dawn Wells reprise their original
+roles in a sequence dreamed by the lifeguard Eddie Kramer. The Baywatch
+co-creator, Douglas Schwartz, is a nephew of Sherwood Schwartz.^[31] The
+episode was written by Lloyd J. Schwartz, a son of Sherwood.
+
+Gilligan's Island: Underneath the Grass Skirt is a 1999 documentary
+featuring Denver and Louise.
+
+E! True Hollywood Story presented a backstage history of the show in 2000,
+featuring interviews with some of the stars or their widows.
+
+Surviving Gilligan's Island (2001) is a docudrama in which Bob Denver, Dawn
+Wells and Russell Johnson reminisce about the show.
+
+Related productions[edit]
+
+ This section does not cite any sources. Please help improve this
+[50px-] section by adding citations to reliable sources. Unsourced material
+ may be challenged and removed. (July 2017) (Learn how and when to
+ remove this template message)
+
+ * Gilligan's Island: The Musical was first produced in the early 1990s,
+ with a script by Lloyd Schwartz, Sherwood Schwartz's son and songs by
+ Schwartz's daughter and son-in-law, Hope and Laurence Juber.
+ * Gilligan's Wake is a 2003 parallel novel loosely based on the 1960s CBS
+ sitcom, from the viewpoints of the seven major characters, written by
+ Esquire film and television critic Tom Carson. The title is derived
+ from the title of the TV show and Finnegans Wake, the seminal work of
+ Irish novelist James Joyce.
+ * On November 30, 2004, the TBS network launched a reality series titled
+ The Real Gilligan's Island, which placed two groups of people on an
+ island, leaving them to fend for themselves in the manner of Survivor –
+ the catch being that each islander matched a character type established
+ in the original series (a klutz, a sea captain, a movie star, a
+ millionaire's wife, etc.). While heavily marketed by TBS, the show
+ turned out to be a flop with a very Survivor-like feel, but little of
+ its success. A second season began June 8, 2005, with two-hour episodes
+ for four weeks. TBS announced in July 2005 that a third season of the
+ show would not be produced.
+
+Syndication[edit]
+
+Syndication is handled by Warner Bros. Television (under Turner
+Entertainment Co., which in 1986 acquired United Artists Television's share
+of the series as part of the classic pre-1986 Metro-Goldwyn-Mayer library).
+It aired on TBS from 1986 to 2003, where it also aired with colorization on
+season one for a while. TBS aired Gilligan’s Island weekday mornings at
+8:05 a.m. ET throughout the 1990s, often paired with Bewitched. TNT aired
+it at some point in the 1990s and also aired the colorized season one. Nick
+at Nite later aired the series from 2000 to 2001. It then shifted to TV
+Land, where it aired from 2001 to 2003, and again from January to June
+2014. In 2004, it aired on Hallmark Channel.
+
+In 2015, the show started to air nationally on MeTV.^[2]
+
+Warner/Turner also handles the two Filmation-produced animated sequel
+series. The three TV movie sequels are handled by other companies.
+
+In the UK Gilligan's Island had a very brief run on ITV in April 1965, but
+was dropped after 13 episodes.
+
+It has briefly aired on MBC in the MENA region.
+
+Home media[edit]
+
+Warner Home Video released all three seasons of Gilligan's Island on DVD in
+Region 1 between 2004 and 2005. The Complete First Season features all 36
+episodes unedited with the original theme song in their original
+black-and-white format. The special features include the rare pilot episode
+with commentary with creator Sherwood Schwartz and three other featurettes.
+
+The Complete Second Season includes all 32 season-two episodes in color.
+Bonuses for this set include: a season-two introduction with Russell
+Johnson and Sherwood Schwartz and audio commentary on the season's third
+episode, "The Little Dictator".
+
+The Complete Third Season includes all 30 season-three episodes. Special
+features include a season introduction with Russell Johnson and Sherwood
+Schwartz, commentary on the season's fourth episode, "The Producer",
+guest-starring Phil Silvers and a 15-minute documentary titled Gilligan's
+Island: A Pop Culture Phenomenon.
+
+The Complete Series Collection contains all the same bonuses and
+featurettes for a complete series box set in 2007. In April 2012, the
+series was reissued in new DVD releases.
+
+The series is also available at the iTunes Store.^[32]
+
+ DVD name Ep# Release date
+The Complete First Season 36 February 3, 2004
+The Complete Second Season 32 January 11, 2005
+The Complete Third Season 30 July 26, 2005
+The Complete Series Collection 98 November 6, 2007
+
+In August 2006, an executive at Warner Bros. announced plans that
+Gilligan's Island, in addition to other classic TV series owned by the
+studio, would be digitally re-mastered in HD.^[33] The original TV series
+was shot on high-resolution film but scaled down for broadcast.
+
+On January 20, 2014, TV Land became the first network to air
+theatrical-style widescreen HD remastered episodes of Gilligan's Island.
+This marked the first time the WB remastered episodes were seen by fans and
+the general public.^[34]
+
+HD remastered episodes have been made available for purchase through
+streaming media sources.
+
+In other media[edit]
+
+Two board games based on the show, both called The Gilligan's Island Game
+featuring a monkey, Thurston Howell III, Gilligan and the Skipper on the
+box cover, were manufactured by Game Gems and released in 1965. The New
+Adventures of Gilligan, based on the short-lived cartoon of the same name
+and featuring all castaways, was manufactured by Milton Bradley and was
+released in 1974.^[citation needed]
+
+A set of trading cards was released by Topps in 1965.^[35] A pinball
+machine, manufactured by Bally and based on the show, was released in May
+1991.^[36] A video game based on the series, called The Adventures of
+Gilligan's Island and manufactured by Bandai, was released for the Nintendo
+Entertainment System in July 1990. The game features the likenesses of all
+the original castaways except for Ginger, who is completely absent from the
+game.^[37] A video slot machine, manufactured by International Game
+Technology and loosely based on the show, was released in 2004.^[38]
+
+Ginger or Mary Ann?[edit]
+
+The question of which of these two characters fans of the show prefer has
+endured long after the end of the series.^[39]^[40] The question has
+inspired commercials,^[41] essays, videos and a sermon.^[42] By most
+accounts, the wholesome Mary Ann has consistently outpolled the glamorous
+movie-star Ginger by a sizable margin.^[43] Bob Denver admitted he was a
+Mary Ann fan.^[40] According to Denver in a 2001 interview, Wells received
+3,000–5,000 fan letters weekly, whereas Louise may have had 1,500 or 2,000.
+^[44]^[45]
+
+References[edit]
+
+Notes
+
+ 1. ^ "BBC - Comedy Guide - Gilligan's Island". January 3, 2005. Archived
+ from the original on January 3, 2005.
+ 2. ^ ^a ^b "Watch Gilligan's Island on MeTV". Me-TV Network.
+ 3. ^ "22 fascinating facts about 'Gilligan's Island'". Me-TV Network.
+ Retrieved January 30, 2022.
+ 4. ^ "Gilligan's Island" creator Sherwood Schwartz on the show's concept -
+ EMMYTVLEGENDS.ORG, recorded on September 17, 1997 in Beverly Hills, CA
+ with Dan Pasternack (published to YouTube on Nov 4, 2010).
+ 5. ^ Stoddard 1996, pp. 306–7.
+ 6. ^ "Shows | Gilligan's Island". Me-TV Network.
+ 7. ^ "Denver", The New York Times, September 7, 2005.
+ 8. ^ "CBS Studio Center". Seeing-stars.com. Retrieved October 17, 2009.
+ 9. ^ Walstad, David (August 7, 1995). "Civilization Takes Over
+ 'Gilligan's' Lagoon : Television: The set of the 1960s sitcom is turned
+ into an employee parking lot as CBS Studio Center adds production
+ facilities". Los Angeles Times. Retrieved February 4, 2017.
+10. ^ "Gilligan's Minnow no longer lost". Canadian Broadcasting Corporation
+ . August 28, 2006. Retrieved August 28, 2006.
+11. ^ "Legal Tales from Gilligan's Island". Santa Clara Law Review & Jamail
+ Center for Legal Research. Archived from the original on August 28,
+ 2005.
+12. ^ ^a ^b ^c ^d Russell Johnson with Steve Cox, Here on Gilligan's Isle,
+ p. 20 (1993).
+13. ^ First season opening sequence of Gilligan's Island From YouTube.
+ Retrieved on November 6, 2011.
+14. ^ Fore, William F (1987). "Escape From Gilligan's Island". medialit.org
+ . Retrieved April 14, 2011.
+15. ^ Stoddard 1996, p. 190.
+16. ^ Shales, Tom (February 8, 2004), "Hey, little buddy! 'Gilligan' DVD
+ drifts into port", The Washington Post, p. N1, “To his credit, star Bob
+ Denver lobbied Schwartz and others to change the lyrics to the theme
+ song after the second season, so all the characters and not just most
+ of them were listed. Instead of the chorus singing 'the movie star and
+ the rest,' they sang, 'the movie star, the professor and Mary Ann, here
+ on Gilligan's isle!'”
+17. ^ Green (1988). Unofficial Gilligan's Island Handbook. Warner Books.
+ ISBN 9780446386685.
+18. ^ Lileth. "Was the "Gilligan's Island" theme song tampered with?". The
+ Straight Dope. Cecil Adams. Retrieved April 4, 2006.
+19. ^ "Gilligan's Island Tidbits". The Fifties Web. Retrieved April 4, 2006
+ .
+20. ^ "Gilligans Island 1.00". April 27, 1963 – via Internet Archive.
+21. ^ "Home Town Success Story". Bay views. Google Blogger. March 24, 2012.
+ Retrieved September 17, 2014.
+22. ^ "Gilligan's Island Theme". Gilligan's isle. Retrieved October 17,
+ 2009.
+23. ^ "Stairway". The Official Gilligan's Island Fan Club. Retrieved March
+ 18, 2011.
+24. ^ "Bowling For Soup – Gilligan's Island Theme". YouTube. Archived from
+ the original on July 26, 2011.
+25. ^ Vibe. Time Publishing Ventures, Incorporated. 2003. p. 105. "The
+ producer extraordinaire entered the big time of commercial rap
+ recognition with the Gilligan's Island-based "Still Fly".
+26. ^ Stoddard 1996, p. 306.
+27. ^ The Worst TV Shows Ever, Those TV Turkeys We Will Never Forget...(No
+ Matter How Hard We Try) by Bart Andrews with Brad Dunning (1980).
+28. ^ "Gilligan's Island: TV Show Creator wants Michael Cera and Beyonce
+ for New Movie". canceled + renewed TV shows - TV Series Finale. January
+ 2, 2009. Retrieved January 12, 2021.
+29. ^ "Gilligan's Island Creator Wants Michael Cera To Play Gilligan in
+ Movie Adaptation". /Film. December 24, 2008. Retrieved January 12, 2021
+ .
+30. ^ "Beyoncé to Star in 'Gilligan's Island' Movie?". Rap-Up. Retrieved
+ January 12, 2021.
+31. ^ "Sherwood Schwartz Obituary". The Times-Picayune. July 12, 2011.
+ Retrieved August 7, 2022.
+32. ^ "Gilligan's Island: The Complete Series". iTunes Store (US).
+ Retrieved March 26, 2019.
+33. ^ ""Gilligan's Island" coming to HD?".
+34. ^ "'Gilligan's Island' Docks at TV Land For the First Time in 10 Years"
+ . January 16, 2014. Archived from the original on March 7, 2017.
+35. ^ Cracknell, Ryan (October 2, 2012). "1965 Topps Gilligan's Island
+ Trading Cards". The Cardboard Connection.
+36. ^ Michael Shalhoub (2005). The Pinball Compendium. Schiffer. p. 138.
+ ISBN 978-0-7643-4107-6.
+37. ^ "The Adventures of Gilligan's Island Review for NES: A Three Hour
+ Bore - GameFAQs". gamefaqs.gamespot.com. Retrieved May 16, 2022.
+38. ^ Gilligan's Island Video Slots by International Game Technologies
+39. ^ Gael Fashingbauer Cooper (October 18, 2012). "As Dawn Wells turns 74,
+ the question remains: Ginger or Mary Ann?". Today. Retrieved September
+ 25, 2014.
+40. ^ ^a ^b Hiassen, Rob (September 29, 2007). "Author has left Ginger and
+ 'Island' behind". The Baltimore Sun. Archived from the original on
+ September 24, 2015. (HighBeam subscription may be required)
+41. ^ Budweiser Ginger or Mary Ann Archived October 16, 2011, at the
+ Wayback Machine Retrieved on September 7, 2011
+42. ^ Rev. Jeffrey Symynkywicz (June 5, 2005). "Ginger or Mary Ann?".
+ uustoughtonma.org. Archived from the original on December 26, 2007.
+ Retrieved October 24, 2007.
+43. ^ Slotek, Jim (January 16, 2014). "Russell Johnson on 'Gilligan's
+ Island' in 1993 interview". Toronto Sun. “USA Today carried a Ginger
+ vs. Mary Ann fave poll and Dawn Wells' character had 85% of the vote”
+44. ^ Silver, Marc (September 7, 2005). "So which one did Gilligan like
+ best?". usnews.com U.S. News & World Report. Archived from the original
+ on December 26, 2007. Retrieved October 24, 2007.
+45. ^ "Ginger vs. Maryann". retroCRUSH. Retrieved April 2, 2012.
+
+Bibliography
+
+ * Denver, Bob (November 1993). Gilligan, Maynard & Me. Carol Publishing.
+ ISBN 0-8065-1413-2.
+ * Green, Joey (April 1988). Unofficial Gilligan's Island Handbook. Warner
+ Books. ISBN 0-446-38668-5.
+ * Johnson, Russell; Cox, Steve (July 1993). Here on Gilligan's Isle
+ (1st ed.). Perennial. ISBN 0-06-096993-8.
+ * Schwartz, Sherwood (April 15, 1994). Inside Gilligan's Island: A
+ Three-Hour Tour Through The Making of A Television Classic. St.
+ Martin's Griffin. ISBN 0-312-10482-0.
+ * Stoddard, Sylvia (May 1996). TV Treasures – A Companion Guide to
+ Gilligan's Island. New York: St. Martin's Paperbacks. ISBN
+ 0-312-95797-1.
+ * Gilligan's Island – The Complete First Season (DVD), 2004, Turner Home
+ Entertainment, UPC 053939673425.
+ * Gilligan's Island – The Complete Second Season (DVD), 2005, Turner Home
+ Entertainment, UPC 053939692624.
+ * Gilligan's Island – The Complete Third Season (DVD), 2005, Turner Home
+ Entertainment, UPC 053939733129.
+
+External links[edit]
+
+Gilligan's Island at Wikipedia's sister projects
+
+ * #Media from Commons
+ * #Quotations from Wikiquote
+ * #Data from Wikidata
+
+ * Gilligan's Island at IMDb
+ * Gilligan's Island: Underneath the Grass Skirt (1999 documentary) at
+ IMDb
+ * Gilligan's Island at The Interviews: An Oral History of Television
+ * Sept 2014 interview with Dawn Wells
+
+ * v
+ * t
+ * e
+
+ Gilligan's Island
+ * Season 1
+ Episodes * Season 2
+ * Season 3
+
+ * Bob Denver
+ * Alan Hale Jr.
+ * Jim Backus
+ Cast * Natalie Schafer
+ * Tina Louise
+ * Russell Johnson
+ * Dawn Wells
+
+ * Gilligan
+ * The Skipper
+ * Thurston Howell III
+Characters * Lovey Howell
+ * Ginger Grant
+ * The Professor
+ * Mary Ann Summers
+
+ * The New Adventures of Gilligan
+ * Rescue from Gilligan's Island
+ * The Castaways on Gilligan's Island
+Spin-offs * The Harlem Globetrotters on Gilligan's Island
+ * Gilligan's Planet
+ * Surviving Gilligan's Island
+
+ * S. S. Minnow
+ * The Adventures of Gilligan's Island
+ * Gilligan's Island pinball machine
+ Related * A Very Brady Sequel
+ * Gilligan's Wake
+ * The Real Gilligan's Island
+ * Newton N. Minow (Vast Wasteland speech)
+
+ * v
+ * t
+ * e
+
+Television series produced or created by Sherwood Schwartz
+ * Gilligan's Island
+ * It's About Time
+ * The Brady Bunch
+ * Dusty's Trail
+ * Big John, Little John
+ * The Brady Bunch Hour
+ * The Brady Brides
+ * Harper Valley PTA
+ * Together We Stand
+ * The Bradys
+ * The Real Gilligan's Island
+
+Authority control Edit this at Wikidata * MusicBrainz work
+
+*
+Retrieved from "https://en.wikipedia.org/w/index.php?title=
+Gilligan%27s_Island&oldid=1170022910"
+Categories:
+
+ * Gilligan's Island
+ * 1960s American sitcoms
+ * 1964 American television series debuts
+ * 1967 American television series endings
+ * Black-and-white American television shows
+ * CBS original programming
+ * English-language television shows
+ * Nautical television series
+ * Television shows adapted into films
+ * Television shows adapted into video games
+ * Television series about being lost from home
+ * Television series set on fictional islands
+ * Television series created by Sherwood Schwartz
+ * Television series by United Artists Television
+ * Comedy franchises
+
+Hidden categories:
+
+ * Webarchive template wayback links
+ * Articles with short description
+ * Short description is different from Wikidata
+ * Use American English from September 2021
+ * All Wikipedia articles written in American English
+ * Use mdy dates from February 2020
+ * All articles with unsourced statements
+ * Articles with unsourced statements from June 2023
+ * Articles with unsourced statements from April 2019
+ * Articles needing additional references from January 2016
+ * All articles needing additional references
+ * Articles with unsourced statements from April 2015
+ * Articles needing additional references from July 2017
+ * Pages using Sister project links with hidden wikidata
+ * IMDb ID same as Wikidata
+ * IMDb ID different from Wikidata
+ * The Interviews title ID same as Wikidata
+ * Articles with MusicBrainz work identifiers
+
+ * This page was last edited on 12 August 2023, at 19:31 (UTC).
+ * Text is available under the Creative Commons Attribution-ShareAlike
+ License 4.0 ; additional terms may apply. By using this site, you agree
+ to the Terms of Use and Privacy Policy. Wikipedia® is a registered
+ trademark of the Wikimedia Foundation, Inc., a non-profit organization.
+
+ * Privacy policy
+ * About Wikipedia
+ * Disclaimers
+ * Contact Wikipedia
+ * Code of Conduct
+ * Mobile view
+ * Developers
+ * Statistics
+ * Cookie statement
+
+ * Wikimedia Foundation
+ * Powered by MediaWiki
+
+ * Toggle limited content width
+
blob - /dev/null
blob + 9ea6b7d7005f9461fe2011065e887df038825f1b (mode 644)
--- /dev/null
+++ ex9-3.pl
+#!/usr/bin/perl
+
+# Modify the program from Exercise 2 to use Regexp::Assemble so you have
+# one pattern instead of an array of patterns.
+
+use v5.24;
+use warnings;
+use strict;
+use utf8;
+use local::lib;
+use Getopt::Std;
+use Regexp::Assemble;
+
+my %opts;
+getopt("p:", \%opts);
+if (defined($opts{p}) && scalar(%opts) == 1) {
+ open my $fh, "<", $opts{p} or die "Unable to open '$opts{p}': $!";
+ my @patterns;
+ my $ra = Regexp::Assemble->new;
+ while (<$fh>) {
+ chomp;
+ $ra->add($_);
+ }
+ print "Type some input:\n\n";
+ while (<>) {
+ # print "$ra: $_\n";
+ my $re = $ra->re;
+ print "$.: $_" if /$re/;
+ #print "$.: $_" if $ra->match($_);
+ }
+} else {
+ die "Usage: $0 -p file";
+}
blob - /dev/null
blob + 0aa354ddd2479568ed33c1f596320282e92816cf (mode 644)
--- /dev/null
+++ test
+Tue Aug 15 00:21:00 2023
\ No newline at end of file