Index: trunk/dvodist/INSTALL
===================================================================
--- trunk/dvodist/INSTALL	(revision 35237)
+++ trunk/dvodist/INSTALL	(revision 35238)
@@ -7,7 +7,7 @@
 
 pikake test examples:
-psconfigure --htdocs /var/www/ --rootdir /ippdata
+psconfigure --htdocs /var/www/ --rootdir /ippdata --rootwww http://pikake.ifa.hawaii.edu/ippdata
 make ippdata
 
-psconfigure --htdocs /var/www/ --rootdir /dvodist
+psconfigure --htdocs /var/www/ --rootdir /dvodist --rootwww http://pikake.ifa.hawaii.edu/ippdata
 make dvodist
Index: trunk/dvodist/Makefile.in
===================================================================
--- trunk/dvodist/Makefile.in	(revision 35237)
+++ trunk/dvodist/Makefile.in	(revision 35238)
@@ -4,5 +4,5 @@
 	@echo "  (website) = dvodist or ippdata"
 
-GENERATE = src/generate
+GENERATE = src/generate --htdocs @HTDOCS@ --rootdir @ROOTDIR@ --rootwww @ROOTWWW@
 
 # we have 2 sites (or more?) controlled by this build directory
@@ -44,4 +44,22 @@
 $(TGT-IPPDATA)/PScolorlogo2.jpg \
 $(TGT-IPPDATA)/index.php \
+$(TGT-IPPDATA)/docs/index.php \
+$(TGT-IPPDATA)/docs/photladder.php \
+$(TGT-IPPDATA)/docs/photladder-1206.20130301.pdf \
+$(TGT-IPPDATA)/docs/2mass.compare/dH.allsky.20120528.v3.png \
+$(TGT-IPPDATA)/docs/2mass.compare/dHK.allsky.20120528.v3.png \
+$(TGT-IPPDATA)/docs/2mass.compare/dJ.allsky.20120528.v3.png \
+$(TGT-IPPDATA)/docs/2mass.compare/dJH.allsky.20120528.v3.png \
+$(TGT-IPPDATA)/docs/2mass.compare/dK.allsky.20120528.v3.png \
+$(TGT-IPPDATA)/docs/2mass.compare/sigma.g.ubercal.20120528.v0.png \
+$(TGT-IPPDATA)/docs/2mass.compare/sigma.i.ubercal.20120528.v0.png \
+$(TGT-IPPDATA)/photladder.20130107.subset/index.php \
+$(TGT-IPPDATA)/photladder.20130107.subset/relphot-fits/index.php \
+$(TGT-IPPDATA)/photladder.20130107.subset/relphot-csv/index.php \
+$(TGT-IPPDATA)/photladder.20130107.subset/ubercal-fits/index.php \
+$(TGT-IPPDATA)/photladder.20130107.subset/ubercal-csv/index.php \
+$(TGT-IPPDATA)/catdir.syn.test/index.php \
+$(TGT-IPPDATA)/catdir.syn.test/n3000/index.php \
+$(TGT-IPPDATA)/catdir.syn.test/n3730/index.php \
 $(TGT-IPPDATA)/test.php \
 $(TGT-IPPDATA)/docs.php \
@@ -73,5 +91,5 @@
 	@if [ ! -d $(TGT-UTIL) ]; then mkdir -p $(TGT-UTIL) || exit; fi
 	rm -f $(TGT-UTIL)/$*.php || exit
-	$(GENERATE) --htdocs @HTDOCS@ --rootdir @ROOTDIR@ $(SRC-UTIL)/$*.mkd $(TGT-UTIL)/$*.php || exit
+	$(GENERATE) $(SRC-UTIL)/$*.mkd $(TGT-UTIL)/$*.php || exit
 
 $(TGT-UTIL)/%: $(SRC-UTIL)/%
@@ -84,5 +102,5 @@
 	@if [ ! -d $(@D) ]; then mkdir -p $(@D) || exit; fi
 	rm -f $(TGT-DVODIST)/$*.php || exit
-	$(GENERATE) --htdocs @HTDOCS@ --rootdir @ROOTDIR@ $(SRC-DVODIST)/$*.mkd $(TGT-DVODIST)/$*.php || exit
+	$(GENERATE) $(SRC-DVODIST)/$*.mkd $(TGT-DVODIST)/$*.php || exit
 
 # non-generated php code is copied directly
@@ -96,5 +114,5 @@
 	@if [ ! -d $(@D) ]; then mkdir -p $(@D) || exit; fi
 	rm -f $(TGT-IPPDATA)/$*.php || exit
-	$(GENERATE) --htdocs @HTDOCS@ --rootdir @ROOTDIR@ $(SRC-IPPDATA)/$*.mkd $(TGT-IPPDATA)/$*.php || exit
+	$(GENERATE) $(SRC-IPPDATA)/$*.mkd $(TGT-IPPDATA)/$*.php || exit
 
 # non-generated php code is copied directly
@@ -116,4 +134,5 @@
 .PRECIOUS: $(SRC)/%.png
 .PRECIOUS: $(SRC)/%.jpg
+.PRECIOUS: $(SRC)/%.pdf
 .PRECIOUS: $(SRC)/%.jpeg
 
@@ -127,3 +146,2 @@
 $(SRC-PROG)/mkdist.testcat.sh \
 $(SRC-PROG)/mkindex.sh
-
Index: trunk/dvodist/configure.tcsh
===================================================================
--- trunk/dvodist/configure.tcsh	(revision 35237)
+++ trunk/dvodist/configure.tcsh	(revision 35238)
@@ -11,4 +11,5 @@
 set htdocs  = ""
 set rootdir = ""
+set rootwww = ""
 set dbhost  = ""
 set dbuser  = ""
@@ -61,4 +62,12 @@
    endif
    breaksw;
+  case --rootwww*
+   if ("$1" == "--rootwww") then
+     shift
+     set rootwww = $1
+   else
+     set rootwww = `echo $1 | tr = ' ' | awk '{print $2}'`
+   endif
+   breaksw;
   case --dbhost*
    if ("$1" == "--dbhost") then
@@ -153,4 +162,5 @@
 echo "htdocs:  $htdocs"
 echo "rootdir: $rootdir"
+echo "rootwww: $rootwww"
 # echo "dbhost:  $dbhost"
 # echo "dbuser:  $dbuser"
@@ -161,4 +171,5 @@
 if ("$htdocs" == "") goto usage
 if ("$rootdir" == "") goto usage
+if ("$rootwww" == "") goto usage
 
 # unless we need a db interface, skip this
@@ -197,6 +208,11 @@
 cat Makefile.in | sed "s|@HTDOCS@|$htdocs|" > tmp.1
 cat tmp.1       | sed "s|@ROOTDIR@|$rootdir|" > tmp.2
-cat tmp.2       | sed "s|@BINDIR@|$bindir|" > Makefile
+cat tmp.2       | sed "s|@BINDIR@|$bindir|" > tmp.1
+cat tmp.1       | sed "s|@ROOTWWW@|$rootwww|" > Makefile
 rm -f tmp.1 tmp.2
+
+# convert mkindex.sizes.sh.in to mkindex.sizes.sh
+#cat scripts/mkindex.sizes.sh.in | sed "s|@HTDOCS@|$htdocs|" > scripts/mkindex.sizes.sh
+chmod +x scripts/mkindex.sizes.sh
 
 ## # convert raw/site.php.in to raw/site.php
Index: trunk/dvodist/ippdata/catdir.syn.test/index.mkd
===================================================================
--- trunk/dvodist/ippdata/catdir.syn.test/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/catdir.syn.test/index.mkd	(revision 35238)
@@ -0,0 +1,26 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# Synthetic Photometry Catdir
+
+(up to [PS1 Data Release](/ippdata/index.php))
+
+Within the PS1 Image Processing Pipeline, we use a databasing system
+called "DVO" to track the data related to astronomical objects.  This
+database is used for the photometric and astrometric calibration.
+This page links to a small-scale DVO database for those who would like
+to try this software.  Future releases of photometry data from PS1
+will likely include DVO database versions.
+
+[DVO Documentation](http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki/DVO_TopLevel)
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/catdir.syn.test </tt>
+
+@ Data Product             : none                       : plain : title : size (bytes) </td><td> md5sum
+@ Images.dat : file : file1 : 0 </td><td> d41d8cd98f00b204e9800998ecf8427e
+@ Photcodes.dat : file : file2 : 97920 </td><td> 58281565af385ad9eef67573c0c8440f
+@ SkyTable.fits : file : file1 : 9077760 </td><td> cbbbf1aa0a2943113208d29bc3316fe0
+@ n3000  : n3000 : dir   : dir1  : subdir </td><td>
+@ n3730  : n3730 : dir   : dir2  : subdir </td><td>
+
Index: trunk/dvodist/ippdata/catdir.syn.test/n3000/index.mkd
===================================================================
--- trunk/dvodist/ippdata/catdir.syn.test/n3000/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/catdir.syn.test/n3000/index.mkd	(revision 35238)
@@ -0,0 +1,396 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# Synthetic Photometry Catdir
+## n3000
+
+(up to [Synthetic Photometry Catdir](/ippdata/catdir.syn.test/index.php))
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/catdir.syn.test/n3000 </tt>
+
+@ filename : plain : title : size (bytes) </td><td> md5sum 
+@ 2524.00.cpm : file : file1 : 216000 </td><td> e7abc41f2c55b4a674302566b584f105
+@ 2524.00.cps : file : file2 : 48960 </td><td> a9e4e178838dd5439cc64ca7e836ab53
+@ 2524.00.cpt : file : file1 : 60480 </td><td> b698c8bb0dc0f7f508991f12cfb08ac9
+@ 2524.01.cpm : file : file2 : 221760 </td><td> a7c4b46901f0f9cf1c525a90beb24b1b
+@ 2524.01.cps : file : file1 : 48960 </td><td> d4285a321c795e77829d7e9eda3eacf9
+@ 2524.01.cpt : file : file2 : 60480 </td><td> 1f6f1c802c89fd1ddb8f608d3d7057fe
+@ 2524.02.cpm : file : file1 : 213120 </td><td> bea3d85099636bebcd1174343679a78b
+@ 2524.02.cps : file : file2 : 48960 </td><td> 622a7538ea159e92616c53a4801c9db4
+@ 2524.02.cpt : file : file1 : 57600 </td><td> 9bb6e00e90a70d720ae35eede93bee3d
+@ 2524.03.cpm : file : file2 : 282240 </td><td> 1f27b4a60721d2851fdc3ace8e3b168e
+@ 2524.03.cps : file : file1 : 60480 </td><td> 7fe31111183f646e787ea01e5f6fdbfb
+@ 2524.03.cpt : file : file2 : 74880 </td><td> e01a1fc8a29fef7a9abdf87972e1c21b
+@ 2524.04.cpm : file : file1 : 201600 </td><td> d63d88bb13ec48a8f51c8333c4cdd638
+@ 2524.04.cps : file : file2 : 46080 </td><td> cb56636c11362cd1b5235226f4b907a2
+@ 2524.04.cpt : file : file1 : 54720 </td><td> 2d611b5f905f8d94bef3f5383ab23259
+@ 2524.05.cpm : file : file2 : 224640 </td><td> ad437c0d8c750860f11ab77884396e05
+@ 2524.05.cps : file : file1 : 48960 </td><td> e7ac62e6f577baba9e1588c24705a621
+@ 2524.05.cpt : file : file2 : 60480 </td><td> e12124ffd34e7183c2153c361b962d4c
+@ 2524.06.cpm : file : file1 : 204480 </td><td> cf778141a552a5ea78a8eb20e629316e
+@ 2524.06.cps : file : file2 : 46080 </td><td> a8efe568f5d1bf1dea17147ad86f4c05
+@ 2524.06.cpt : file : file1 : 57600 </td><td> c92c35d64ca277e60c82514cdb5e5cbf
+@ 2524.07.cpm : file : file2 : 253440 </td><td> f7b646fc4441965ee4c9e2b3e1144d60
+@ 2524.07.cps : file : file1 : 54720 </td><td> 02c1c882c147e4c645b02e633666ca35
+@ 2524.07.cpt : file : file2 : 69120 </td><td> 88af10082210589a410fbed43ab19971
+@ 2524.08.cpm : file : file1 : 218880 </td><td> 3c45ddec9523fc6dd38c5614f5561726
+@ 2524.08.cps : file : file2 : 48960 </td><td> 52ec76ee2926a06ce5c5c2f4f21833fd
+@ 2524.08.cpt : file : file1 : 60480 </td><td> a5b40a2b543255f4b5cb9141315da272
+@ 2524.09.cpm : file : file2 : 218880 </td><td> d039480b72ca24480dcb1d7a2830c579
+@ 2524.09.cps : file : file1 : 48960 </td><td> ba6cd61be1e32e66d5c4be7baef3d42c
+@ 2524.09.cpt : file : file2 : 60480 </td><td> 3b9020b4f07bd8380b897da28e0cdb74
+@ 2524.10.cpm : file : file1 : 204480 </td><td> 4e8ec32d930a3fd0b67fe416b38ffc06
+@ 2524.10.cps : file : file2 : 46080 </td><td> 24b89cbc50692b284af25696ddbca246
+@ 2524.10.cpt : file : file1 : 57600 </td><td> 21d38c1596d06e34a6b44768a6454d90
+@ 2524.11.cpm : file : file2 : 239040 </td><td> 15b0a11392ba5f57c6ddcc401951ebf8
+@ 2524.11.cps : file : file1 : 51840 </td><td> d26b510457847da99e2c042da7aada44
+@ 2524.11.cpt : file : file2 : 66240 </td><td> bcb34f17c252832bd1f5dd2183f93823
+@ 2524.12.cpm : file : file1 : 244800 </td><td> 7b01859891a95770bb231d572221493d
+@ 2524.12.cps : file : file2 : 54720 </td><td> 3b7eec8243f93e390f040ea74483e42f
+@ 2524.12.cpt : file : file1 : 66240 </td><td> 5595839bab8509d1bf258d238da60a7f
+@ 2524.13.cpm : file : file2 : 224640 </td><td> 21f6a690f8116ce66ba5ba09d2028ec5
+@ 2524.13.cps : file : file1 : 48960 </td><td> 82776ffb94f425000ef84bcb2a2b2ae8
+@ 2524.13.cpt : file : file2 : 60480 </td><td> 545c955a00d313f6c5da050011ac13ce
+@ 2524.14.cpm : file : file1 : 216000 </td><td> 5e1437ea826a3d33e0d8972bb366c4c2
+@ 2524.14.cps : file : file2 : 48960 </td><td> bb20f6fa360bcf67cba8f6baf74219f5
+@ 2524.14.cpt : file : file1 : 60480 </td><td> 5d647d8a4bff16aee563a65f4f4ec756
+@ 2524.15.cpm : file : file2 : 270720 </td><td> 73664fa33f4d5cac67d8332e6aaba1a3
+@ 2524.15.cps : file : file1 : 60480 </td><td> 712695b80a5d80093fda4029c4f5b6bc
+@ 2524.15.cpt : file : file2 : 72000 </td><td> 2e0a4bf5f061b9e6ea4ac9e3bbeead8e
+@ 2526.00.cpm : file : file1 : 204480 </td><td> 9c9a4855d08956d7a5788c1ba0de0993
+@ 2526.00.cps : file : file2 : 46080 </td><td> de544994ca25fb083038a43d75f1c89a
+@ 2526.00.cpt : file : file1 : 57600 </td><td> e0b5730c806f4a2a4c4002a4cb5bafd7
+@ 2526.01.cpm : file : file2 : 218880 </td><td> 34d3002c73c68e6ded641442882b3460
+@ 2526.01.cps : file : file1 : 48960 </td><td> 4b20342d0c32e9529f4b349f01f7ad7e
+@ 2526.01.cpt : file : file2 : 60480 </td><td> 611f84bec487f02f1ea339448eadd48e
+@ 2526.02.cpm : file : file1 : 210240 </td><td> 0a964c0e7605f29dc04749253db33e46
+@ 2526.02.cps : file : file2 : 46080 </td><td> 99754089b0de0241d41740359376edb0
+@ 2526.02.cpt : file : file1 : 57600 </td><td> 1f61316c3961732385852788cedf7f68
+@ 2526.03.cpm : file : file2 : 250560 </td><td> 4e58d7a87c1961e7d1d513c5cd52f34d
+@ 2526.03.cps : file : file1 : 54720 </td><td> 02f5f7b6b03e104c7f8d671046fb8d70
+@ 2526.03.cpt : file : file2 : 66240 </td><td> 4d441c3f007cff5fb9d786fb95e8c84e
+@ 2526.04.cpm : file : file1 : 204480 </td><td> ae5c39300a65090440f95b02ee1d7a1a
+@ 2526.04.cps : file : file2 : 46080 </td><td> c6998672c812af06c6ed05136a9d037a
+@ 2526.04.cpt : file : file1 : 57600 </td><td> 03008d55144551f0ed586cc093d3957c
+@ 2526.05.cpm : file : file2 : 224640 </td><td> 973b768ff6c4fff8f597ffa6812a75c4
+@ 2526.05.cps : file : file1 : 48960 </td><td> d906bc22da2b849154ad1da49f57e761
+@ 2526.05.cpt : file : file2 : 60480 </td><td> 66aa3ea6f1aac0fa5562e5d5b9f09eb2
+@ 2526.06.cpm : file : file1 : 207360 </td><td> 3864e9dd12bc90d1c456682b12182399
+@ 2526.06.cps : file : file2 : 46080 </td><td> 44245643535adb1891f9837a51fcb35f
+@ 2526.06.cpt : file : file1 : 57600 </td><td> ba8f30025f13a4f0a359c2e2f72a82c6
+@ 2526.07.cpm : file : file2 : 230400 </td><td> eb90b0de0d6faf0c3826d880f8fa6d17
+@ 2526.07.cps : file : file1 : 51840 </td><td> 55c555938017d05138093462624ae450
+@ 2526.07.cpt : file : file2 : 63360 </td><td> a3648bfe8b239021f9c346ea90a256b9
+@ 2526.08.cpm : file : file1 : 218880 </td><td> 1a3e3aab8f2e57bfc710737aaff1d89f
+@ 2526.08.cps : file : file2 : 48960 </td><td> 3e1c309700492cc40b5e329d9115fbf8
+@ 2526.08.cpt : file : file1 : 60480 </td><td> 9fe43e2e9af8c1c0a2f53ac4ff44e89d
+@ 2526.09.cpm : file : file2 : 207360 </td><td> 74bf077c234626daf7beb04ffe4be49d
+@ 2526.09.cps : file : file1 : 46080 </td><td> 266fe8b57dade26b912e024fd0b397f9
+@ 2526.09.cpt : file : file2 : 57600 </td><td> b23c65c212b2de250c0d93bfb3ff5c79
+@ 2526.10.cpm : file : file1 : 221760 </td><td> 545087e387927d6ee8dea1eaf2ab2031
+@ 2526.10.cps : file : file2 : 48960 </td><td> 477654df43a25c63e146e6f24a842261
+@ 2526.10.cpt : file : file1 : 60480 </td><td> 2c48b2ef7cacaec45fff295302f5e9b3
+@ 2526.11.cpm : file : file2 : 262080 </td><td> b341221639046e3d72077f888c69c73a
+@ 2526.11.cps : file : file1 : 57600 </td><td> 33bd79548995b675043a0034d04cd1cc
+@ 2526.11.cpt : file : file2 : 69120 </td><td> 895ad2648cfe8b3390ab5b7784131cdd
+@ 2526.12.cpm : file : file1 : 207360 </td><td> 32971a01f6668c8772624cda34353dd4
+@ 2526.12.cps : file : file2 : 46080 </td><td> 49e60ed028dad532cc9ecf6c13e635e3
+@ 2526.12.cpt : file : file1 : 57600 </td><td> 77d739bb302e4754f2e1f02cdb205fcf
+@ 2526.13.cpm : file : file2 : 218880 </td><td> bb69495016e1880072ec647fca2f3d28
+@ 2526.13.cps : file : file1 : 48960 </td><td> 78c507c6383d9bc87ba4fa26c6959e80
+@ 2526.13.cpt : file : file2 : 60480 </td><td> e541fb963603d4fd4014d2182eccb2c5
+@ 2526.14.cpm : file : file1 : 253440 </td><td> 2fcc3cde5c8728b7298999d9dc6c8c37
+@ 2526.14.cps : file : file2 : 54720 </td><td> 49d79370a1ae6fdb52c0c17a3cac6913
+@ 2526.14.cpt : file : file1 : 69120 </td><td> 15f2f344fd683bf7b37cb65dfe97a7b7
+@ 2526.15.cpm : file : file2 : 236160 </td><td> 0916331a281473c4a244eaffa3780850
+@ 2526.15.cps : file : file1 : 51840 </td><td> ad61384238646622cbef6a759d034f9d
+@ 2526.15.cpt : file : file2 : 63360 </td><td> 03cad44806ecf0af19217e1dc37687d1
+@ 2527.00.cpm : file : file1 : 224640 </td><td> 8c8c217c801e6170dc679ddc1a636347
+@ 2527.00.cps : file : file2 : 48960 </td><td> 824a78847f16c668c8bed77b5fb192d5
+@ 2527.00.cpt : file : file1 : 60480 </td><td> dafbee9defc08472888f61871731a07d
+@ 2527.01.cpm : file : file2 : 236160 </td><td> b8651168f80008b7892a6be5558bd687
+@ 2527.01.cps : file : file1 : 51840 </td><td> 6a7135f6de86c247256665070a86fb20
+@ 2527.01.cpt : file : file2 : 63360 </td><td> f6c73c2bc1f297527e5de5035e6e1871
+@ 2527.02.cpm : file : file1 : 250560 </td><td> 4f7f2c75607c629785c7d3d5fe70bffc
+@ 2527.02.cps : file : file2 : 54720 </td><td> 292f7f4b43a1cc60026c71c0daad3b48
+@ 2527.02.cpt : file : file1 : 66240 </td><td> 763552d93e49b64252bf60f4aaeb4c2f
+@ 2527.03.cpm : file : file2 : 236160 </td><td> ddfa73c4933e4868757e4c9526b39d5b
+@ 2527.03.cps : file : file1 : 51840 </td><td> da63857461ce99ac7d1e8a2dfdd8d349
+@ 2527.03.cpt : file : file2 : 63360 </td><td> 8fa8c2d16c450bbbac8e7628dc30fc11
+@ 2527.04.cpm : file : file1 : 233280 </td><td> 42cce3ccb7766a8913bbac5ad8c7e83f
+@ 2527.04.cps : file : file2 : 51840 </td><td> eb564a6556f2e4c2a5cdbb432c732647
+@ 2527.04.cpt : file : file1 : 63360 </td><td> cbfcc7bed3017f2f023c2af21e382aa3
+@ 2527.05.cpm : file : file2 : 239040 </td><td> f5d133479491787f2e3988d26fa7921f
+@ 2527.05.cps : file : file1 : 51840 </td><td> fcfeea45ddff7cc6d73808a10e67aece
+@ 2527.05.cpt : file : file2 : 63360 </td><td> a3ca38dcfb369541652f1a210b7e0aef
+@ 2527.06.cpm : file : file1 : 250560 </td><td> d309fd2ef04234cfd932434d3f9b3855
+@ 2527.06.cps : file : file2 : 54720 </td><td> 672528bc9f10ea85fe3c84786d03ce2c
+@ 2527.06.cpt : file : file1 : 69120 </td><td> ae586822a8e0d37445800e822aea3e28
+@ 2527.07.cpm : file : file2 : 230400 </td><td> c04b7f5fc152d35c073158af621eb7e0
+@ 2527.07.cps : file : file1 : 51840 </td><td> 725cd01e04bf11dda84d1a9923d50440
+@ 2527.07.cpt : file : file2 : 63360 </td><td> 45241a228d73e64134fb82acf140498d
+@ 2527.08.cpm : file : file1 : 230400 </td><td> 666995c423f94f283ce65a4be79a4f55
+@ 2527.08.cps : file : file2 : 51840 </td><td> 02225f4f42d5bbc8b70e9341da8f0623
+@ 2527.08.cpt : file : file1 : 63360 </td><td> 66accdba13d9a05ee4f9b200dda575f8
+@ 2527.09.cpm : file : file2 : 262080 </td><td> 5ba6ccfefa0744064bd88a678804ae5a
+@ 2527.09.cps : file : file1 : 57600 </td><td> a65ca825bb855ca90e9054b995dc3a9d
+@ 2527.09.cpt : file : file2 : 72000 </td><td> 54d2ad216c64ba6a4c24e2a685d32926
+@ 2527.10.cpm : file : file1 : 224640 </td><td> 6ef10de9f6e43268967f08cc2eea3e8c
+@ 2527.10.cps : file : file2 : 48960 </td><td> 16e0a56271ed505ff378c41dfc09f335
+@ 2527.10.cpt : file : file1 : 60480 </td><td> 126a7900dec35b3d65ce1df3e09bd4c9
+@ 2527.11.cpm : file : file2 : 230400 </td><td> 9accdf68ad4c83af0aa0e1e4b20f1fe0
+@ 2527.11.cps : file : file1 : 51840 </td><td> 96ccc0d312bfb23e22c2c6c957d25769
+@ 2527.11.cpt : file : file2 : 63360 </td><td> 009e5ef962b1ed6d0493a850bb572328
+@ 2527.12.cpm : file : file1 : 230400 </td><td> adad0213a33d590c6369af361d616870
+@ 2527.12.cps : file : file2 : 51840 </td><td> 70166991edf8d673683bb1a0872948e3
+@ 2527.12.cpt : file : file1 : 63360 </td><td> 53bbb79e965c55ba1185bc3252ed4105
+@ 2527.13.cpm : file : file2 : 239040 </td><td> 53be20090eb9daad0f6079bc64b46299
+@ 2527.13.cps : file : file1 : 51840 </td><td> 10cb5b02570b8163afdbf9145eb94469
+@ 2527.13.cpt : file : file2 : 66240 </td><td> b15e5c66e561b718a0f464f0eb99766a
+@ 2527.14.cpm : file : file1 : 230400 </td><td> 2a15d0ddea744bc49f99cdd3f8b66044
+@ 2527.14.cps : file : file2 : 51840 </td><td> 48cac9c82f175c56a661802ae588e0d2
+@ 2527.14.cpt : file : file1 : 63360 </td><td> 2b5978cdbbc90d479d8a2beeeec7b7d1
+@ 2527.15.cpm : file : file2 : 221760 </td><td> e6b2750b3aa26bf23657535e6445ba27
+@ 2527.15.cps : file : file1 : 48960 </td><td> 2e28b4b138c9aade9db237e91528f1f1
+@ 2527.15.cpt : file : file2 : 60480 </td><td> b1b858468691384574090a12d2d356cb
+@ 2528.00.cpm : file : file1 : 224640 </td><td> 6b306cef823587136a0a357539f03721
+@ 2528.00.cps : file : file2 : 48960 </td><td> 7302a2848daad0c41dc32aab36f6dfff
+@ 2528.00.cpt : file : file1 : 60480 </td><td> 40174b91d06a5b4b4ec994cec13a754d
+@ 2528.01.cpm : file : file2 : 204480 </td><td> 674054ff634975e88f528d8423970bc0
+@ 2528.01.cps : file : file1 : 46080 </td><td> 73b0490eeaafebaeb00fe167634335be
+@ 2528.01.cpt : file : file2 : 57600 </td><td> 59c08de86d05a114b05e92e0b2fa0c8b
+@ 2528.02.cpm : file : file1 : 250560 </td><td> 1dd0c695917af22c876b688596b00259
+@ 2528.02.cps : file : file2 : 54720 </td><td> b0ff2f1da987add9d79393e44c76359a
+@ 2528.02.cpt : file : file1 : 69120 </td><td> f689bedd96106dd889a9fa35d9508458
+@ 2528.03.cpm : file : file2 : 190080 </td><td> c633868d9aca1cbedae096b8b6ad9f96
+@ 2528.03.cps : file : file1 : 43200 </td><td> c5fb80da4eaed6aad728a01b39cc9703
+@ 2528.03.cpt : file : file2 : 54720 </td><td> caac56288d5a186762f265310bd6d4a1
+@ 2528.04.cpm : file : file1 : 216000 </td><td> e2b8c24346a5eacfda56f08a473433ed
+@ 2528.04.cps : file : file2 : 48960 </td><td> 33cc3d87c8eb28237d59fa736c57f0b3
+@ 2528.04.cpt : file : file1 : 60480 </td><td> 5a6b39096af1aaef99c36bf5cd5d29be
+@ 2528.05.cpm : file : file2 : 224640 </td><td> f1774168021058b3aaa24d4f0cc91dab
+@ 2528.05.cps : file : file1 : 48960 </td><td> 440b5b6e9cea97012fac23fba385a79c
+@ 2528.05.cpt : file : file2 : 60480 </td><td> 9bf9bc1415c0d035a88ccc966204510a
+@ 2528.06.cpm : file : file1 : 227520 </td><td> b1dfeb691a2342206e514fcb20344094
+@ 2528.06.cps : file : file2 : 51840 </td><td> e1d4788c262020ac531a1937d97d6878
+@ 2528.06.cpt : file : file1 : 63360 </td><td> f93856bd583667cbed153d4db6d49044
+@ 2528.07.cpm : file : file2 : 204480 </td><td> 163683c609df480dbb34381e061072c2
+@ 2528.07.cps : file : file1 : 46080 </td><td> 7769d75c5ccb000c46dc5ed8d3e68416
+@ 2528.07.cpt : file : file2 : 57600 </td><td> e579c6a9dcc1e9155f362c315a4fccbf
+@ 2528.08.cpm : file : file1 : 213120 </td><td> 8c0f9eab78f3e9f8485f24cebf7464b1
+@ 2528.08.cps : file : file2 : 48960 </td><td> bb766ce524d1b63ad913b7e624bf5b89
+@ 2528.08.cpt : file : file1 : 57600 </td><td> a8615b914220386c202f440d6f967a64
+@ 2528.09.cpm : file : file2 : 216000 </td><td> 0622da07f34fbb81803da52859dfece2
+@ 2528.09.cps : file : file1 : 48960 </td><td> a61ec7b6a76e5822068a2dc61e93b0b2
+@ 2528.09.cpt : file : file2 : 60480 </td><td> bdb2652672039b62f0771c221e92dd8c
+@ 2528.10.cpm : file : file1 : 224640 </td><td> f4c5589b19b20920edae153e74fbc2ec
+@ 2528.10.cps : file : file2 : 48960 </td><td> 84305f3b146689c0ea8f55f7f01fd0dc
+@ 2528.10.cpt : file : file1 : 60480 </td><td> f9171b7982b6979ba10f0c2a9eea7bd9
+@ 2528.11.cpm : file : file2 : 192960 </td><td> 4c0a1825c1abf41e442ad9b455ebb9a7
+@ 2528.11.cps : file : file1 : 43200 </td><td> 12ac81213e285625e20da4ed4e05e394
+@ 2528.11.cpt : file : file2 : 54720 </td><td> 61fcf7a7f9226dc6ae57972972619d67
+@ 2528.12.cpm : file : file1 : 204480 </td><td> 6b6d5164b31dc76886fe71e7dec965ce
+@ 2528.12.cps : file : file2 : 46080 </td><td> a77b9d929fda5868fb7a227c68396d52
+@ 2528.12.cpt : file : file1 : 57600 </td><td> 31ba8ea6acb0db80e45f9cccc3e2a12d
+@ 2528.13.cpm : file : file2 : 201600 </td><td> 013fb81ae38e72b979e37a15adb0e786
+@ 2528.13.cps : file : file1 : 46080 </td><td> 990006f96702790ac262419d1dfd8cc9
+@ 2528.13.cpt : file : file2 : 57600 </td><td> f2cfe5eab3a8f0de3f197249144ee84f
+@ 2528.14.cpm : file : file1 : 244800 </td><td> fe32506d76b90db146a187e9a9f7c577
+@ 2528.14.cps : file : file2 : 54720 </td><td> 7c991ae4a58fc9ab1d77ef6e5b711f31
+@ 2528.14.cpt : file : file1 : 66240 </td><td> 9235ac87e71b4d472a8aeb3cade6d96c
+@ 2528.15.cpm : file : file2 : 218880 </td><td> 551b4617044fbd03a2af8a75f28f67d9
+@ 2528.15.cps : file : file1 : 48960 </td><td> ab7bb744603f3dceca07283c57620c9a
+@ 2528.15.cpt : file : file2 : 60480 </td><td> 7bfd98cf9065c09eb7b51e3955dbae5d
+@ 2529.00.cpm : file : file1 : 207360 </td><td> 05b05371aa4ce65373cbba6a942686a2
+@ 2529.00.cps : file : file2 : 46080 </td><td> 56fb04468955270f02a838e3451e8bc7
+@ 2529.00.cpt : file : file1 : 57600 </td><td> 5cb61da5a7676a1dbc8a2870a351495f
+@ 2529.01.cpm : file : file2 : 218880 </td><td> 04ca78002bce5e17edbb5d7fa0ad4182
+@ 2529.01.cps : file : file1 : 48960 </td><td> 4ec12005d2b4886ee77b3188a6c95037
+@ 2529.01.cpt : file : file2 : 60480 </td><td> 25dafe95e920eef93c3c5648500d20dc
+@ 2529.02.cpm : file : file1 : 233280 </td><td> 2e8979931a3e2a9ac0eda9653d2ce477
+@ 2529.02.cps : file : file2 : 51840 </td><td> cf4edee1d414e28528c03bd8618e0413
+@ 2529.02.cpt : file : file1 : 63360 </td><td> 86bfe4f605d9e0d583af9a45a0f8e592
+@ 2529.03.cpm : file : file2 : 201600 </td><td> cacd3665e21d64214dafc020bdd6e13b
+@ 2529.03.cps : file : file1 : 46080 </td><td> af3e69fd55ed93d8fbc1c20efdfecba8
+@ 2529.03.cpt : file : file2 : 57600 </td><td> 5fdc044fe3d803180419989b6c42932e
+@ 2529.04.cpm : file : file1 : 218880 </td><td> 5db8c1aabede26122a7f304d3497de2e
+@ 2529.04.cps : file : file2 : 48960 </td><td> 1d8c26c3579aeb548d7ad28c2bb40573
+@ 2529.04.cpt : file : file1 : 60480 </td><td> 6cc5447de249fd075b5cc95e3d781a07
+@ 2529.05.cpm : file : file2 : 216000 </td><td> ca36d7dec3e3be07e00d889cf9334d5a
+@ 2529.05.cps : file : file1 : 48960 </td><td> b02066b19384d6efaee4d70f83d67f89
+@ 2529.05.cpt : file : file2 : 60480 </td><td> 0ac7d62add34afc57d37bacff58402c6
+@ 2529.06.cpm : file : file1 : 233280 </td><td> 7bcc20e01cb01a8efd737e8914489293
+@ 2529.06.cps : file : file2 : 51840 </td><td> 627aebb63b242110c0e1bde2114baa98
+@ 2529.06.cpt : file : file1 : 63360 </td><td> 91cdb2ac9b0be3b11b0dbc2ab668079e
+@ 2529.07.cpm : file : file2 : 213120 </td><td> 397dee9a5a1812f4c337fdf690b1e9ff
+@ 2529.07.cps : file : file1 : 48960 </td><td> cfc0dbf3494737d3b89446ee9186b55a
+@ 2529.07.cpt : file : file2 : 57600 </td><td> 660aac1abc8dc4b255bd8e39b08cc920
+@ 2529.08.cpm : file : file1 : 227520 </td><td> 15ff64e37ae173f8c3362bb38515def8
+@ 2529.08.cps : file : file2 : 51840 </td><td> 147eb78ecb7e1f048a733ae4ed890121
+@ 2529.08.cpt : file : file1 : 63360 </td><td> af1704f87ce633ce5a10eaf11ed01e16
+@ 2529.09.cpm : file : file2 : 230400 </td><td> 3cff423b4e97e407685855e9cd5b732e
+@ 2529.09.cps : file : file1 : 51840 </td><td> c2d1d9fab935bb7a328345f2a5ed1beb
+@ 2529.09.cpt : file : file2 : 63360 </td><td> e26a437afd2ff869ed3842a2532d42f8
+@ 2529.10.cpm : file : file1 : 207360 </td><td> 3fa48faff6b6aa2ef1a53502f33cd7f6
+@ 2529.10.cps : file : file2 : 46080 </td><td> 75c1b7bc73d084f5724bf4d9b6a08024
+@ 2529.10.cpt : file : file1 : 57600 </td><td> 3d5b7cd2a1b114780d3da1f69be54bc7
+@ 2529.11.cpm : file : file2 : 224640 </td><td> eb61031b08115040ea40b54d7e746d13
+@ 2529.11.cps : file : file1 : 48960 </td><td> f386c7626c07876bd9224dc2de576e58
+@ 2529.11.cpt : file : file2 : 60480 </td><td> d60a53a9d9d563388c885ba40241bd35
+@ 2529.12.cpm : file : file1 : 216000 </td><td> c82300901641d7a35060fbedd0f399aa
+@ 2529.12.cps : file : file2 : 48960 </td><td> 5cd3babca722d08a8ebd8ebba4013e71
+@ 2529.12.cpt : file : file1 : 60480 </td><td> 71f77ddb5ccd4dfe1b298652c94d92f2
+@ 2529.13.cpm : file : file2 : 216000 </td><td> 4733d3cc0823a141d2fc1061f291efae
+@ 2529.13.cps : file : file1 : 48960 </td><td> 62a5782b5051847935324c9c5a78aa6f
+@ 2529.13.cpt : file : file2 : 60480 </td><td> af4979bde4026623156ec5294dd04e37
+@ 2529.14.cpm : file : file1 : 204480 </td><td> 81b53d4da19d0c23d0d8fc887433bc31
+@ 2529.14.cps : file : file2 : 46080 </td><td> c83a301ca73a9ac0f9e35b693a60af78
+@ 2529.14.cpt : file : file1 : 57600 </td><td> 47f9d0881483c918e2f7fedcd6fe328e
+@ 2529.15.cpm : file : file2 : 207360 </td><td> 5200a0e9d063492cff4e941b0f77d336
+@ 2529.15.cps : file : file1 : 46080 </td><td> a6ede5278add3d25086ecd732d3730bc
+@ 2529.15.cpt : file : file2 : 57600 </td><td> 0594f34384c4e19ce6b0274ba64ed29a
+@ 2530.00.cpm : file : file1 : 201600 </td><td> bcd8d1639e369755fe834f719737b917
+@ 2530.00.cps : file : file2 : 46080 </td><td> a47e6d0a3a338f5b0d0ec03ab400367e
+@ 2530.00.cpt : file : file1 : 54720 </td><td> df5f852bc4fe1f2eac9843299a75ee95
+@ 2530.01.cpm : file : file2 : 192960 </td><td> 2118bc868f07f0c15e9ef70df894e276
+@ 2530.01.cps : file : file1 : 43200 </td><td> a4d760a9629e4558aad41ef9522d6ac0
+@ 2530.01.cpt : file : file2 : 54720 </td><td> fbeb86885c74cde76857e1c40ad4c30d
+@ 2530.02.cpm : file : file1 : 224640 </td><td> 19288d70c3547801cc7b8e0ab03aea8e
+@ 2530.02.cps : file : file2 : 48960 </td><td> a2dc7f005954688ebd1e7e7f9004975a
+@ 2530.02.cpt : file : file1 : 60480 </td><td> d4abf5c598c6482b3dda724b42741d72
+@ 2530.03.cpm : file : file2 : 210240 </td><td> 2e0ba7e5890a52aea49327e6cae46495
+@ 2530.03.cps : file : file1 : 46080 </td><td> 4df99c948102390cce1c55f0cd792248
+@ 2530.03.cpt : file : file2 : 57600 </td><td> 1c2ca715190dd7a7a4ca2c4d90cc4a08
+@ 2530.04.cpm : file : file1 : 195840 </td><td> 849593da90742ecfc8ceb32c5cc70f50
+@ 2530.04.cps : file : file2 : 43200 </td><td> 097d8f7eb0ff8d0c965f719951249f66
+@ 2530.04.cpt : file : file1 : 54720 </td><td> ff20b50a28dce268520cfc0612711642
+@ 2530.05.cpm : file : file2 : 172800 </td><td> ea2137eb4cb0af15c157a444e976902f
+@ 2530.05.cps : file : file1 : 40320 </td><td> 145ad2139990ec9b232332169ea158a0
+@ 2530.05.cpt : file : file2 : 48960 </td><td> e0d25b0d3c3c69eb6b35e7dd8179ab87
+@ 2530.06.cpm : file : file1 : 221760 </td><td> 4c7be9fe00903e5495656d246976c1a7
+@ 2530.06.cps : file : file2 : 48960 </td><td> 458e73e4011fec8cfe3fe5ed8d096710
+@ 2530.06.cpt : file : file1 : 60480 </td><td> 5041e41f49ac52c961122b2949212a83
+@ 2530.07.cpm : file : file2 : 204480 </td><td> 56e7f771165ab6fb0b35dead253d9220
+@ 2530.07.cps : file : file1 : 46080 </td><td> d4a4e2ec40e6810ec3703102f4043972
+@ 2530.07.cpt : file : file2 : 57600 </td><td> a8f53b955b30ed79820decddd04635f8
+@ 2530.08.cpm : file : file1 : 230400 </td><td> 353f374cc1b3593d2acdff28287b8d92
+@ 2530.08.cps : file : file2 : 51840 </td><td> dc680923090c0a4feb0a9dd7830f9661
+@ 2530.08.cpt : file : file1 : 63360 </td><td> e1999da75794985aac5baa2711e5ffe9
+@ 2530.09.cpm : file : file2 : 210240 </td><td> 83837acd19609f6974a8ad83eb29646c
+@ 2530.09.cps : file : file1 : 46080 </td><td> 401163d8063cb13287ffb1f10b4cb1ec
+@ 2530.09.cpt : file : file2 : 57600 </td><td> d976644d84b88ff4c1c634ecdbb78d2a
+@ 2530.10.cpm : file : file1 : 221760 </td><td> 3251e7c46089ca4a9dd3b7d51beb68c2
+@ 2530.10.cps : file : file2 : 48960 </td><td> 82f386300d7dabda957569f90ad5b6f3
+@ 2530.10.cpt : file : file1 : 60480 </td><td> a188996972000f04a5e49ee351d73f0a
+@ 2530.11.cpm : file : file2 : 216000 </td><td> c73b1349e8279a91a770ff4c6bf49f59
+@ 2530.11.cps : file : file1 : 48960 </td><td> ff7b8307874a99a72d7fe4415e42facf
+@ 2530.11.cpt : file : file2 : 60480 </td><td> 309e1ddd6cc0ea49487f44907475b2b3
+@ 2530.12.cpm : file : file1 : 213120 </td><td> 06bbd84de08f9a4c45703ea8561b9a18
+@ 2530.12.cps : file : file2 : 48960 </td><td> d27bf73330ed0e77a30542bc19d7ee39
+@ 2530.12.cpt : file : file1 : 57600 </td><td> 2a0443cb1c54346c6d142f6581adfd2f
+@ 2530.13.cpm : file : file2 : 224640 </td><td> cc09d2761f69c592e3b1eca336cb38b9
+@ 2530.13.cps : file : file1 : 48960 </td><td> cef40dc0a88724d0463cc011dc1f892b
+@ 2530.13.cpt : file : file2 : 60480 </td><td> 34d7641d8344ee4d5a0471b71ef0765a
+@ 2530.14.cpm : file : file1 : 227520 </td><td> aeb736403f5e8ded8bcd1e27dde7babf
+@ 2530.14.cps : file : file2 : 51840 </td><td> c8f53f97eb2b382d586a5d1e345a55c0
+@ 2530.14.cpt : file : file1 : 63360 </td><td> b2f159ba7cf8edd74b79f1d452a29a3e
+@ 2530.15.cpm : file : file2 : 216000 </td><td> 079c7ab6fb2561f7b8d578edabf180e6
+@ 2530.15.cps : file : file1 : 48960 </td><td> 69927e082d29e8e9db0d3586fea2bc9d
+@ 2530.15.cpt : file : file2 : 60480 </td><td> c9461f13894d95f2e1d379900168ffc5
+@ 2531.00.cpm : file : file1 : 190080 </td><td> fd4dbb4c8a80945be83614a3c276411c
+@ 2531.00.cps : file : file2 : 43200 </td><td> ff62ec21f73eb9881e6794444b98ed3f
+@ 2531.00.cpt : file : file1 : 54720 </td><td> 0e5b5a889805f6faae8478592414137b
+@ 2531.01.cpm : file : file2 : 218880 </td><td> a0c144a7bd1ab971005956227b10d3ab
+@ 2531.01.cps : file : file1 : 48960 </td><td> d0164742118ccf495128bd776f306cca
+@ 2531.01.cpt : file : file2 : 60480 </td><td> 8f75fa56bfc5b0430714fbc18b72d77a
+@ 2531.02.cpm : file : file1 : 236160 </td><td> f2772f0669d70fd89fe716d5369662f6
+@ 2531.02.cps : file : file2 : 51840 </td><td> fdb1edc4c22e80c9d054f58933718aa7
+@ 2531.02.cpt : file : file1 : 63360 </td><td> c4c67526788b972c9a445d69ba806226
+@ 2531.03.cpm : file : file2 : 239040 </td><td> 373626e2d1baf9226fc27e022c6a0812
+@ 2531.03.cps : file : file1 : 51840 </td><td> 6b8099b1b8c85a9dd3ccf49f71120576
+@ 2531.03.cpt : file : file2 : 66240 </td><td> c63f66368bc8b27d4f212e05bf87bb68
+@ 2531.04.cpm : file : file1 : 190080 </td><td> cf727abcabefa0703b5858ff3a763bdf
+@ 2531.04.cps : file : file2 : 43200 </td><td> 04fbd842314dc3e89a3b10e01bc74004
+@ 2531.04.cpt : file : file1 : 51840 </td><td> 2c144262aa8d140f3d623986a0316275
+@ 2531.05.cpm : file : file2 : 221760 </td><td> bd7eece3d1a7c11d487783b8b23db720
+@ 2531.05.cps : file : file1 : 48960 </td><td> 378c1a700adc045f013ee4024a2c5d19
+@ 2531.05.cpt : file : file2 : 60480 </td><td> ee583370f15c316d1d518a6bbef29369
+@ 2531.06.cpm : file : file1 : 213120 </td><td> 707469d7df92b0a836611de2daf0bf72
+@ 2531.06.cps : file : file2 : 48960 </td><td> 108ab0eae69ecf4ac4817add5fdc43a2
+@ 2531.06.cpt : file : file1 : 57600 </td><td> b3c1148e4f87b837908b2d9aad186b66
+@ 2531.07.cpm : file : file2 : 244800 </td><td> a29b6d91e95c4a641520525ca36f7dad
+@ 2531.07.cps : file : file1 : 54720 </td><td> 994cbc91eda3efccc10914c5800a7dc9
+@ 2531.07.cpt : file : file2 : 66240 </td><td> ac459e7b4f442a31fe2111cd6b036c7b
+@ 2531.08.cpm : file : file1 : 204480 </td><td> ef408415a0ed471f52fbe5b1fea32ae8
+@ 2531.08.cps : file : file2 : 46080 </td><td> 8c59f732f375b2e51dfcd3aa328611a4
+@ 2531.08.cpt : file : file1 : 57600 </td><td> c3b257487111664f5a531c9f5ca81e06
+@ 2531.09.cpm : file : file2 : 227520 </td><td> aafdb65277ec46373c5dc1cab16ec6e3
+@ 2531.09.cps : file : file1 : 51840 </td><td> 633808ee5ef08fc7fd5779e5a80f8c73
+@ 2531.09.cpt : file : file2 : 63360 </td><td> 2f2b2b219035865506b4b6e25bd0ad36
+@ 2531.10.cpm : file : file1 : 221760 </td><td> 2d66594579542fc3754164ff61af8f98
+@ 2531.10.cps : file : file2 : 48960 </td><td> b5b9fb781ef775d260516f9221b10190
+@ 2531.10.cpt : file : file1 : 60480 </td><td> 0736817ce405961f1ad04800508326a9
+@ 2531.11.cpm : file : file2 : 224640 </td><td> 084ebc9f51b58a277e07ca3d28823443
+@ 2531.11.cps : file : file1 : 48960 </td><td> b6680ac615abdd62fce1e68d949b5a11
+@ 2531.11.cpt : file : file2 : 60480 </td><td> 8eea3d5f6d7420944cf65cecc4362b7a
+@ 2531.12.cpm : file : file1 : 192960 </td><td> 32c7369e1cfcaf707ea9a9e13618c196
+@ 2531.12.cps : file : file2 : 43200 </td><td> c2acba7fd94ddf508666513c67967ed4
+@ 2531.12.cpt : file : file1 : 54720 </td><td> 8df556851f88bee1733f53e5485a08e6
+@ 2531.13.cpm : file : file2 : 221760 </td><td> 44c2c881eee5ecd5a7eaaef7218c9b3b
+@ 2531.13.cps : file : file1 : 48960 </td><td> a26cfcbbbbf36d8e07fcaded8e0c7722
+@ 2531.13.cpt : file : file2 : 60480 </td><td> 8504a80955051ed944184b66b001b4f1
+@ 2531.14.cpm : file : file1 : 233280 </td><td> f9b9c5c4499cbdab85ad9fe31ac249eb
+@ 2531.14.cps : file : file2 : 51840 </td><td> 10a9d6f9c66ca48330804081bd2532e8
+@ 2531.14.cpt : file : file1 : 63360 </td><td> c96dbac4ebfb576f2dc081dbbc88b997
+@ 2531.15.cpm : file : file2 : 227520 </td><td> f7ae97630990adad4c97388868b467e8
+@ 2531.15.cps : file : file1 : 51840 </td><td> fc4be16e4143ed26595115c37db255e1
+@ 2531.15.cpt : file : file2 : 63360 </td><td> b373caa02adba3a823b92faf40e1aaab
+@ 2533.00.cpm : file : file1 : 216000 </td><td> 9d07e29939a22aeb8089de64fe599301
+@ 2533.00.cps : file : file2 : 48960 </td><td> 01f8b834aa83462935e0bb69071d21a4
+@ 2533.00.cpt : file : file1 : 60480 </td><td> 5059db29c7626c8926dcc4305904901a
+@ 2533.01.cpm : file : file2 : 218880 </td><td> 644a658b7e4b2d15c2821f1225b6d902
+@ 2533.01.cps : file : file1 : 48960 </td><td> 3dd9969a4c592282e0b0573a807414af
+@ 2533.01.cpt : file : file2 : 60480 </td><td> 900ad769e6e757fd507fa1b31f892c18
+@ 2533.02.cpm : file : file1 : 213120 </td><td> 9da8db148a353d488399897b3dec3ab5
+@ 2533.02.cps : file : file2 : 48960 </td><td> 075c8e5b90bc35f587d9d630f5839654
+@ 2533.02.cpt : file : file1 : 60480 </td><td> 089be18c01419ff83d333e935778f47d
+@ 2533.03.cpm : file : file2 : 207360 </td><td> 261e36ebef3610e853e6022a2e69fa53
+@ 2533.03.cps : file : file1 : 46080 </td><td> 9dfe734b1c3e0fdb3f072b3883c5ba28
+@ 2533.03.cpt : file : file2 : 57600 </td><td> 8ef6a37d149603524ce96d017bccc758
+@ 2533.04.cpm : file : file1 : 204480 </td><td> 455f48f0e970276ba043c0dbf0c9db88
+@ 2533.04.cps : file : file2 : 46080 </td><td> 0349597a99e3fc92c4e1d8af73801187
+@ 2533.04.cpt : file : file1 : 57600 </td><td> 6d563cc40635fd0b3b4bed483a376685
+@ 2533.05.cpm : file : file2 : 216000 </td><td> 0967f65b44a5c9cc07cd4a20c371047a
+@ 2533.05.cps : file : file1 : 48960 </td><td> 253e522a0ab5c975a6d0fe94e8521942
+@ 2533.05.cpt : file : file2 : 60480 </td><td> ca8a23fded2c6fcd6b17580e14b179a5
+@ 2533.06.cpm : file : file1 : 213120 </td><td> ca6fc5b753c76ec47bfa5a7e899c3655
+@ 2533.06.cps : file : file2 : 48960 </td><td> 7f81700c2c7dda26ab24d19a7b94cde5
+@ 2533.06.cpt : file : file1 : 57600 </td><td> e669c9df2957586a1f686236437ff8df
+@ 2533.07.cpm : file : file2 : 216000 </td><td> 72650440318684b54951b1ed6b2019b1
+@ 2533.07.cps : file : file1 : 48960 </td><td> 75c23b061bccf3b87fbe5e915f1a213d
+@ 2533.07.cpt : file : file2 : 60480 </td><td> dca865ee9e0dd9bf9e935d931d14bcbb
+@ 2533.08.cpm : file : file1 : 213120 </td><td> 4e7f9390b9fd72b03607744203f5c6a5
+@ 2533.08.cps : file : file2 : 48960 </td><td> b1a88976fd714dddac94778648122d26
+@ 2533.08.cpt : file : file1 : 57600 </td><td> 6d1b49c2c5eeb615d2b77d8c171baa14
+@ 2533.09.cpm : file : file2 : 227520 </td><td> 8bdb8552fa976e573daeb8361a87a6a1
+@ 2533.09.cps : file : file1 : 51840 </td><td> 46d5b220fb5231154e22d79e2cd4b01e
+@ 2533.09.cpt : file : file2 : 63360 </td><td> fe1357fce50c7f710a6326d31f95415e
+@ 2533.10.cpm : file : file1 : 236160 </td><td> 7846648181517c991efb7b6654f37f7f
+@ 2533.10.cps : file : file2 : 51840 </td><td> 72c19f3e145f2f10a7f2ea31a8449223
+@ 2533.10.cpt : file : file1 : 63360 </td><td> 3c601a4e861caa219e159f32f71e6a84
+@ 2533.11.cpm : file : file2 : 241920 </td><td> 765ae24e430834156bfcf67bf676b444
+@ 2533.11.cps : file : file1 : 54720 </td><td> 9e0969ae1773d9c8f0210bbdeb632ccd
+@ 2533.11.cpt : file : file2 : 66240 </td><td> f44fd82b5b556cf1b76da592ef8b89a8
+@ 2533.12.cpm : file : file1 : 218880 </td><td> 50826bd8c7e590251c3820596b6b7aa4
+@ 2533.12.cps : file : file2 : 48960 </td><td> deb6df03be4745c7c726894827308e5d
+@ 2533.12.cpt : file : file1 : 60480 </td><td> dc7fb29d7cdf918bea09ff74c5cf8297
+@ 2533.13.cpm : file : file2 : 247680 </td><td> e5fe794b8524f01b6e16cbd3a146d985
+@ 2533.13.cps : file : file1 : 54720 </td><td> 74e007b498b62a513ca443b2eb2adf9c
+@ 2533.13.cpt : file : file2 : 66240 </td><td> 7c6e2a1ece7d6da691d0997dd2ac9007
+@ 2533.14.cpm : file : file1 : 221760 </td><td> 1a6df40944509d362b8aadaaa04b9c98
+@ 2533.14.cps : file : file2 : 48960 </td><td> 40159f11225602dda79bda67c4bb75e3
+@ 2533.14.cpt : file : file1 : 60480 </td><td> 0d6ffd688a33c8a862731cc9d767b3f6
+@ 2533.15.cpm : file : file2 : 218880 </td><td> b7676e8037119e4323d0235b6169703f
+@ 2533.15.cps : file : file1 : 48960 </td><td> 905b59dc0c3b5b1750a0b876ff281a15
+@ 2533.15.cpt : file : file2 : 60480 </td><td> 9ca66569eb6de891995ff10f64d08f33
Index: trunk/dvodist/ippdata/catdir.syn.test/n3730/index.mkd
===================================================================
--- trunk/dvodist/ippdata/catdir.syn.test/n3730/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/catdir.syn.test/n3730/index.mkd	(revision 35238)
@@ -0,0 +1,300 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# Synthetic Photometry Catdir
+## n3730
+
+(up to [Synthetic Photometry Catdir](/ippdata/catdir.syn.test/index.php))
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/catdir.syn.test/n3730 </tt>
+
+@ filename : plain : title : size (bytes) </td><td> md5sum 
+@ 3014.00.cpm : file : file1 : 227520 | 352b6d7cd9ef8e9b147d0391e46582c1
+@ 3014.00.cps : file : file2 : 51840 | 5492b3edc3ea9c355488e14aba593c95
+@ 3014.00.cpt : file : file1 : 63360 | d9015b748e7942214cfcbb6568ac77ae
+@ 3014.01.cpm : file : file2 : 230400 | e03bd3e02835b0e54c2943b1e6b79cd3
+@ 3014.01.cps : file : file1 : 51840 | 7195340c3e800ddec1d58417b12799a8
+@ 3014.01.cpt : file : file2 : 63360 | 9f8941d602ad64476fd4fdbe1ebad295
+@ 3014.02.cpm : file : file1 : 259200 | eb3b356b59881346b25e417d840450c0
+@ 3014.02.cps : file : file2 : 57600 | 22c6107896ac6655a7e1bcea896632db
+@ 3014.02.cpt : file : file1 : 69120 | a38e4a0d581aae5b48a1112104226b12
+@ 3014.03.cpm : file : file2 : 259200 | d51ea9a0833d8f85674c34be05cf73f6
+@ 3014.03.cps : file : file1 : 57600 | 2040fde49dedd1efea7aeb3079c4489c
+@ 3014.03.cpt : file : file2 : 69120 | de33747e111f55ee0478c96ea22973a2
+@ 3014.04.cpm : file : file1 : 239040 | d5b7ce4d7fe603cf0164e2c3535c78cd
+@ 3014.04.cps : file : file2 : 51840 | 32532799c0f6277d9199593cd5e0041e
+@ 3014.04.cpt : file : file1 : 66240 | e84ae2f8397960a2fffbb76efe10ba2e
+@ 3014.05.cpm : file : file2 : 213120 | d6edc34dab42514dbf1507c7c68d76dd
+@ 3014.05.cps : file : file1 : 48960 | 4bc2fad947c31efa0b9fa48274e564bb
+@ 3014.05.cpt : file : file2 : 57600 | c8f7b6f662cbe5b3e01cc4e0dd40bd6e
+@ 3014.06.cpm : file : file1 : 230400 | 360cffebf640c649baf495a666901e27
+@ 3014.06.cps : file : file2 : 51840 | 53aae278e5089c7ac62450dd8854d7e6
+@ 3014.06.cpt : file : file1 : 63360 | 946800fe9596ac9a4f1e0298fae3e0a8
+@ 3014.07.cpm : file : file2 : 250560 | 41dd2c2d24833faa0f4a8900b9e432fc
+@ 3014.07.cps : file : file1 : 54720 | 07eebf1c08ed495facf840aa587a3f3f
+@ 3014.07.cpt : file : file2 : 69120 | 064815f9cfc8f4cfd4c41170b01b2f62
+@ 3014.08.cpm : file : file1 : 241920 | 72520ceaf56cce33b320ed0c39c00a3d
+@ 3014.08.cps : file : file2 : 54720 | 42b27637fd675f12b1854c10bc564bbf
+@ 3014.08.cpt : file : file1 : 66240 | d53a2d3e0cf70cf74469ee04749553a1
+@ 3014.09.cpm : file : file2 : 224640 | 1c16ebf67dbe6de24a019239628c994c
+@ 3014.09.cps : file : file1 : 48960 | cfdb3b49f6ad1a127db81cad7245f7b7
+@ 3014.09.cpt : file : file2 : 60480 | 7361e3f902fcf22c57eae07cbaf3d0ef
+@ 3014.10.cpm : file : file1 : 227520 | b40aca2dc0d3a57d8c89ec355cf7de78
+@ 3014.10.cps : file : file2 : 51840 | cd72a31b85ddd3f9f651876b04d42fbe
+@ 3014.10.cpt : file : file1 : 63360 | 7a1541fa4382090e27d6a58bd6e41254
+@ 3014.11.cpm : file : file2 : 241920 | 0efcfecf423251d63bb88d17f37c44f9
+@ 3014.11.cps : file : file1 : 54720 | ecff5a7a15dc6ab50c1f87950a4938da
+@ 3014.11.cpt : file : file2 : 66240 | b1de13d232b865c5579992dc4d1e4d70
+@ 3014.12.cpm : file : file1 : 207360 | e98862addd57dfbadc488a5fb4041bcd
+@ 3014.12.cps : file : file2 : 46080 | 94cddfd62b877644305cc7ffbfa8eed9
+@ 3014.12.cpt : file : file1 : 57600 | 8affaa4dc567be7c7623fa81dd38c82d
+@ 3014.13.cpm : file : file2 : 230400 | 920d72b8dbb42674b3654b2e84a0aba0
+@ 3014.13.cps : file : file1 : 51840 | 0bb642191f855471bcd66fc5ed3bafa9
+@ 3014.13.cpt : file : file2 : 63360 | 9b2989e782f9ca7fe15277a871db8872
+@ 3014.14.cpm : file : file1 : 216000 | 9da1ed79fe5d7c9f62e77c37a637e0fa
+@ 3014.14.cps : file : file2 : 48960 | ed75fe0accec5d60feec6005b6afbaa1
+@ 3014.14.cpt : file : file1 : 60480 | 087c35c804194f875dbfede3910fe3a0
+@ 3014.15.cpm : file : file2 : 259200 | 51692f93ed3a37dacf530954cb21b65f
+@ 3014.15.cps : file : file1 : 57600 | 420559eb7b8111ac776977127caee180
+@ 3014.15.cpt : file : file2 : 69120 | ac4ce5fbc9ee5640fc81fe002dfd7a36
+@ 3017.00.cpm : file : file1 : 253440 | 68d0cb468efa6b8acc77b2998f1c65a9
+@ 3017.00.cps : file : file2 : 54720 | 9017531c54ca919cfccda398fdc41b5b
+@ 3017.00.cpt : file : file1 : 69120 | 32fe2bcd5413541e3730ebdd0127183a
+@ 3017.01.cpm : file : file2 : 270720 | df0402dc84a25bc4cdf764acab07225c
+@ 3017.01.cps : file : file1 : 60480 | 1d41199890c938c41ab267de596c50bc
+@ 3017.01.cpt : file : file2 : 72000 | 369a879f5950cc1faf8f72c4a67818b8
+@ 3017.02.cpm : file : file1 : 207360 | 60e91118abb035250fe818d4ac2dffda
+@ 3017.02.cps : file : file2 : 46080 | 7ff872da51349d23752dd46fa014550c
+@ 3017.02.cpt : file : file1 : 57600 | 81a1ea76796b655af1d72c1dfca7a144
+@ 3017.03.cpm : file : file2 : 218880 | f168b51b9f9a28c68ccd18648a474ef1
+@ 3017.03.cps : file : file1 : 48960 | 7f4d744b5e2bb3322ff2082b66aec9b2
+@ 3017.03.cpt : file : file2 : 60480 | 86404190d1f005a438bd734d638f9695
+@ 3017.04.cpm : file : file1 : 241920 | 72b0d45308a8e3158f4f8d92b2dbb134
+@ 3017.04.cps : file : file2 : 54720 | 8642f188d22c9f1a1431a464e9407af6
+@ 3017.04.cpt : file : file1 : 66240 | 160c774527b362138a168c212827565c
+@ 3017.05.cpm : file : file2 : 239040 | 33ae3ef6b16129cb20def6ebdebbea29
+@ 3017.05.cps : file : file1 : 51840 | 17b03ca93f6120e10c84d9c4dc07b354
+@ 3017.05.cpt : file : file2 : 63360 | 884414097f854781c43fe692a672860f
+@ 3017.06.cpm : file : file1 : 190080 | 5897d2fbe7b2054d0248e2fac0acee4f
+@ 3017.06.cps : file : file2 : 43200 | efe8cb07519f12a8840f27265a866d18
+@ 3017.06.cpt : file : file1 : 54720 | cc27319a9129b14d1cde67ff389b4d60
+@ 3017.07.cpm : file : file2 : 195840 | 0cda1ebea944d3f40ce585e1ad7024d2
+@ 3017.07.cps : file : file1 : 43200 | 54ed4e2a871ea7a91bae1eb89c8b5fb5
+@ 3017.07.cpt : file : file2 : 54720 | e56d458212e51f6cd858ee318c46c266
+@ 3017.08.cpm : file : file1 : 241920 | 4edc8c912f805316680621297814cdf8
+@ 3017.08.cps : file : file2 : 54720 | a6fdcb6e0a85b27b28aa4267666f28e9
+@ 3017.08.cpt : file : file1 : 66240 | 571d8921ad9dada7970fc2e9faa9f217
+@ 3017.09.cpm : file : file2 : 256320 | 29d0a2d2afda6f2c629b63f82772488a
+@ 3017.09.cps : file : file1 : 57600 | a29b29d1f2add122521ef391b231c436
+@ 3017.09.cpt : file : file2 : 69120 | 42a8b048e04c9f973edcd46c4f5a21be
+@ 3017.10.cpm : file : file1 : 207360 | edbf0c204b3b666f27d42451435e55b7
+@ 3017.10.cps : file : file2 : 46080 | 45ebd666ae8712e196e27bcfa89572e8
+@ 3017.10.cpt : file : file1 : 57600 | 19c058a5983369021014b5950ecc459e
+@ 3017.11.cpm : file : file2 : 210240 | 49fa2a71482498178dda1e5c9d8750be
+@ 3017.11.cps : file : file1 : 46080 | a7d44eb431ce7043db12c7172a548c0f
+@ 3017.11.cpt : file : file2 : 57600 | cd1349f98af80782746f9e772da2d769
+@ 3017.12.cpm : file : file1 : 218880 | be742635ce31b8f89c6a90a01f9edad2
+@ 3017.12.cps : file : file2 : 48960 | 37b743b69b2f30de4b63390a4bfb1f2a
+@ 3017.12.cpt : file : file1 : 60480 | 8da569c642b8d31038b2a16720845b7a
+@ 3017.13.cpm : file : file2 : 250560 | 437fc6505687a8f58b1a5018da25b3ea
+@ 3017.13.cps : file : file1 : 54720 | 387a713d85a001522ad01f250070b744
+@ 3017.13.cpt : file : file2 : 66240 | 9be12e330f11008c8eb49e010876bc23
+@ 3017.14.cpm : file : file1 : 216000 | f94e3222408a1386be630c80936a0c41
+@ 3017.14.cps : file : file2 : 48960 | 200e7010fe8e7e538801646c70d08c9e
+@ 3017.14.cpt : file : file1 : 60480 | c3802fcd019ac4c6eeda57d7db9a27ac
+@ 3017.15.cpm : file : file2 : 227520 | 2268338a59c593c14e3d189ed2c4ed9b
+@ 3017.15.cps : file : file1 : 51840 | 50e21eca5c618eff31438c59ddd8165a
+@ 3017.15.cpt : file : file2 : 63360 | 0311a1b8e5a0830d762783e294b1d45c
+@ 3018.00.cpm : file : file1 : 236160 | f2e351a3b70973bcce19c57c69d52824
+@ 3018.00.cps : file : file2 : 51840 | 45b5c90201df15420a5aee3f1bfbe6fd
+@ 3018.00.cpt : file : file1 : 63360 | 1e75c65bf43f324f680c163816db5e56
+@ 3018.01.cpm : file : file2 : 239040 | 21fc0f9bda17e565b7de0ca927a530fc
+@ 3018.01.cps : file : file1 : 51840 | 3db93a1d41f73a64f139064a57219041
+@ 3018.01.cpt : file : file2 : 66240 | e1933ac50bbce6eb38a7ca4c76f8313c
+@ 3018.02.cpm : file : file1 : 247680 | 1c6fa47fc3c7d6b6ef846b15ddcd8391
+@ 3018.02.cps : file : file2 : 54720 | c0e80490fc8a8772c22404bc585cca7c
+@ 3018.02.cpt : file : file1 : 66240 | 9d1833e24cd68041903a61a6791fe184
+@ 3018.03.cpm : file : file2 : 250560 | e5e4aef7e0d4650aecce64443ffcb611
+@ 3018.03.cps : file : file1 : 54720 | 02906b366ad2f54bda903dbe56c58bf7
+@ 3018.03.cpt : file : file2 : 69120 | 01214a4c4375f093ea58296c61280237
+@ 3018.04.cpm : file : file1 : 236160 | e9e2e2cee44529888b415ba3cabadbb4
+@ 3018.04.cps : file : file2 : 51840 | e746a1c4f6696b487509c9d29d73c925
+@ 3018.04.cpt : file : file1 : 63360 | 03aac5f9b5516b8ec9b3fe1425cfa7a9
+@ 3018.05.cpm : file : file2 : 233280 | be091e6d9b2052a037a9ed93851be8ed
+@ 3018.05.cps : file : file1 : 51840 | 2167ff1cdd54bc4dc8a18d6b4fba7fab
+@ 3018.05.cpt : file : file2 : 63360 | beb236957f9a10c4e43e8027804166dc
+@ 3018.06.cpm : file : file1 : 244800 | 8048733e821bf08ec25c7379e8b5ff32
+@ 3018.06.cps : file : file2 : 54720 | e06284d3a650f446cab7f792f08665c6
+@ 3018.06.cpt : file : file1 : 66240 | fb768aeafc5a07a180fd2973e9843654
+@ 3018.07.cpm : file : file2 : 230400 | 6f4bc4b35fcfc47a62786a39938833fb
+@ 3018.07.cps : file : file1 : 51840 | 48aaa0ce2938ec5dc73e83a34ff94907
+@ 3018.07.cpt : file : file2 : 63360 | 851fa62736f87da24a29cc430516950a
+@ 3018.08.cpm : file : file1 : 236160 | eb480b52b7a2397595c8963eb532f1c1
+@ 3018.08.cps : file : file2 : 51840 | d781f60deded07e6368be80086325abd
+@ 3018.08.cpt : file : file1 : 63360 | 1be0f2d09076a04b706f0495b1fec319
+@ 3018.09.cpm : file : file2 : 239040 | a7c6e6c43da6abd20990876debe44d6a
+@ 3018.09.cps : file : file1 : 51840 | 73f9ac2e6d317c2e13d54a375c494bd4
+@ 3018.09.cpt : file : file2 : 66240 | ea30d329c3fb3879586abf611003730c
+@ 3018.10.cpm : file : file1 : 259200 | 5b3026540982b5e6d48e88aa5c669396
+@ 3018.10.cps : file : file2 : 57600 | fd70d7784250b0674d11da7c89f995e0
+@ 3018.10.cpt : file : file1 : 69120 | 8a419f82a0abbfb57c33216325ea87fd
+@ 3018.11.cpm : file : file2 : 239040 | a346f731b2b8ca55b7ae8bed128af9dc
+@ 3018.11.cps : file : file1 : 51840 | cb274fe71e1d9ab0a8e9658e3719aac8
+@ 3018.11.cpt : file : file2 : 66240 | 8d7fa72d5c307cff362993dfaf591657
+@ 3018.12.cpm : file : file1 : 233280 | c2ef56fc563252a8f3f5d265a1e3447b
+@ 3018.12.cps : file : file2 : 51840 | a600e7d1ce04bceae71d2da0b569cc23
+@ 3018.12.cpt : file : file1 : 63360 | cc6c51320fbc8bea8bc9e97a81f295c8
+@ 3018.13.cpm : file : file2 : 233280 | da702336a9a75a5d0dc859ab0e1c3f0c
+@ 3018.13.cps : file : file1 : 51840 | 93848c58bda9f252519287c9edc56f52
+@ 3018.13.cpt : file : file2 : 63360 | 3ce9d45c85bfdf85abdb8acaa2c227b4
+@ 3018.14.cpm : file : file1 : 279360 | 8dbeb72f13baf34aa07e6cb453db2815
+@ 3018.14.cps : file : file2 : 60480 | 1f6ac08aa75ca3bc82a7579a654db155
+@ 3018.14.cpt : file : file1 : 74880 | a938d09551abcafee3af52e17c294bd3
+@ 3018.15.cpm : file : file2 : 247680 | 49929d97ca02c177c6cffa657f029834
+@ 3018.15.cps : file : file1 : 54720 | cd377094b13ace915a1c415bd7a99078
+@ 3018.15.cpt : file : file2 : 66240 | 30f7aa5524c87f7be8509dfd2dc7f057
+@ 3014.00.cpm : file : file1 : 227520 </td><td> 352b6d7cd9ef8e9b147d0391e46582c1
+@ 3014.00.cps : file : file2 : 51840 </td><td> 5492b3edc3ea9c355488e14aba593c95
+@ 3014.00.cpt : file : file1 : 63360 </td><td> d9015b748e7942214cfcbb6568ac77ae
+@ 3014.01.cpm : file : file2 : 230400 </td><td> e03bd3e02835b0e54c2943b1e6b79cd3
+@ 3014.01.cps : file : file1 : 51840 </td><td> 7195340c3e800ddec1d58417b12799a8
+@ 3014.01.cpt : file : file2 : 63360 </td><td> 9f8941d602ad64476fd4fdbe1ebad295
+@ 3014.02.cpm : file : file1 : 259200 </td><td> eb3b356b59881346b25e417d840450c0
+@ 3014.02.cps : file : file2 : 57600 </td><td> 22c6107896ac6655a7e1bcea896632db
+@ 3014.02.cpt : file : file1 : 69120 </td><td> a38e4a0d581aae5b48a1112104226b12
+@ 3014.03.cpm : file : file2 : 259200 </td><td> d51ea9a0833d8f85674c34be05cf73f6
+@ 3014.03.cps : file : file1 : 57600 </td><td> 2040fde49dedd1efea7aeb3079c4489c
+@ 3014.03.cpt : file : file2 : 69120 </td><td> de33747e111f55ee0478c96ea22973a2
+@ 3014.04.cpm : file : file1 : 239040 </td><td> d5b7ce4d7fe603cf0164e2c3535c78cd
+@ 3014.04.cps : file : file2 : 51840 </td><td> 32532799c0f6277d9199593cd5e0041e
+@ 3014.04.cpt : file : file1 : 66240 </td><td> e84ae2f8397960a2fffbb76efe10ba2e
+@ 3014.05.cpm : file : file2 : 213120 </td><td> d6edc34dab42514dbf1507c7c68d76dd
+@ 3014.05.cps : file : file1 : 48960 </td><td> 4bc2fad947c31efa0b9fa48274e564bb
+@ 3014.05.cpt : file : file2 : 57600 </td><td> c8f7b6f662cbe5b3e01cc4e0dd40bd6e
+@ 3014.06.cpm : file : file1 : 230400 </td><td> 360cffebf640c649baf495a666901e27
+@ 3014.06.cps : file : file2 : 51840 </td><td> 53aae278e5089c7ac62450dd8854d7e6
+@ 3014.06.cpt : file : file1 : 63360 </td><td> 946800fe9596ac9a4f1e0298fae3e0a8
+@ 3014.07.cpm : file : file2 : 250560 </td><td> 41dd2c2d24833faa0f4a8900b9e432fc
+@ 3014.07.cps : file : file1 : 54720 </td><td> 07eebf1c08ed495facf840aa587a3f3f
+@ 3014.07.cpt : file : file2 : 69120 </td><td> 064815f9cfc8f4cfd4c41170b01b2f62
+@ 3014.08.cpm : file : file1 : 241920 </td><td> 72520ceaf56cce33b320ed0c39c00a3d
+@ 3014.08.cps : file : file2 : 54720 </td><td> 42b27637fd675f12b1854c10bc564bbf
+@ 3014.08.cpt : file : file1 : 66240 </td><td> d53a2d3e0cf70cf74469ee04749553a1
+@ 3014.09.cpm : file : file2 : 224640 </td><td> 1c16ebf67dbe6de24a019239628c994c
+@ 3014.09.cps : file : file1 : 48960 </td><td> cfdb3b49f6ad1a127db81cad7245f7b7
+@ 3014.09.cpt : file : file2 : 60480 </td><td> 7361e3f902fcf22c57eae07cbaf3d0ef
+@ 3014.10.cpm : file : file1 : 227520 </td><td> b40aca2dc0d3a57d8c89ec355cf7de78
+@ 3014.10.cps : file : file2 : 51840 </td><td> cd72a31b85ddd3f9f651876b04d42fbe
+@ 3014.10.cpt : file : file1 : 63360 </td><td> 7a1541fa4382090e27d6a58bd6e41254
+@ 3014.11.cpm : file : file2 : 241920 </td><td> 0efcfecf423251d63bb88d17f37c44f9
+@ 3014.11.cps : file : file1 : 54720 </td><td> ecff5a7a15dc6ab50c1f87950a4938da
+@ 3014.11.cpt : file : file2 : 66240 </td><td> b1de13d232b865c5579992dc4d1e4d70
+@ 3014.12.cpm : file : file1 : 207360 </td><td> e98862addd57dfbadc488a5fb4041bcd
+@ 3014.12.cps : file : file2 : 46080 </td><td> 94cddfd62b877644305cc7ffbfa8eed9
+@ 3014.12.cpt : file : file1 : 57600 </td><td> 8affaa4dc567be7c7623fa81dd38c82d
+@ 3014.13.cpm : file : file2 : 230400 </td><td> 920d72b8dbb42674b3654b2e84a0aba0
+@ 3014.13.cps : file : file1 : 51840 </td><td> 0bb642191f855471bcd66fc5ed3bafa9
+@ 3014.13.cpt : file : file2 : 63360 </td><td> 9b2989e782f9ca7fe15277a871db8872
+@ 3014.14.cpm : file : file1 : 216000 </td><td> 9da1ed79fe5d7c9f62e77c37a637e0fa
+@ 3014.14.cps : file : file2 : 48960 </td><td> ed75fe0accec5d60feec6005b6afbaa1
+@ 3014.14.cpt : file : file1 : 60480 </td><td> 087c35c804194f875dbfede3910fe3a0
+@ 3014.15.cpm : file : file2 : 259200 </td><td> 51692f93ed3a37dacf530954cb21b65f
+@ 3014.15.cps : file : file1 : 57600 </td><td> 420559eb7b8111ac776977127caee180
+@ 3014.15.cpt : file : file2 : 69120 </td><td> ac4ce5fbc9ee5640fc81fe002dfd7a36
+@ 3017.00.cpm : file : file1 : 253440 </td><td> 68d0cb468efa6b8acc77b2998f1c65a9
+@ 3017.00.cps : file : file2 : 54720 </td><td> 9017531c54ca919cfccda398fdc41b5b
+@ 3017.00.cpt : file : file1 : 69120 </td><td> 32fe2bcd5413541e3730ebdd0127183a
+@ 3017.01.cpm : file : file2 : 270720 </td><td> df0402dc84a25bc4cdf764acab07225c
+@ 3017.01.cps : file : file1 : 60480 </td><td> 1d41199890c938c41ab267de596c50bc
+@ 3017.01.cpt : file : file2 : 72000 </td><td> 369a879f5950cc1faf8f72c4a67818b8
+@ 3017.02.cpm : file : file1 : 207360 </td><td> 60e91118abb035250fe818d4ac2dffda
+@ 3017.02.cps : file : file2 : 46080 </td><td> 7ff872da51349d23752dd46fa014550c
+@ 3017.02.cpt : file : file1 : 57600 </td><td> 81a1ea76796b655af1d72c1dfca7a144
+@ 3017.03.cpm : file : file2 : 218880 </td><td> f168b51b9f9a28c68ccd18648a474ef1
+@ 3017.03.cps : file : file1 : 48960 </td><td> 7f4d744b5e2bb3322ff2082b66aec9b2
+@ 3017.03.cpt : file : file2 : 60480 </td><td> 86404190d1f005a438bd734d638f9695
+@ 3017.04.cpm : file : file1 : 241920 </td><td> 72b0d45308a8e3158f4f8d92b2dbb134
+@ 3017.04.cps : file : file2 : 54720 </td><td> 8642f188d22c9f1a1431a464e9407af6
+@ 3017.04.cpt : file : file1 : 66240 </td><td> 160c774527b362138a168c212827565c
+@ 3017.05.cpm : file : file2 : 239040 </td><td> 33ae3ef6b16129cb20def6ebdebbea29
+@ 3017.05.cps : file : file1 : 51840 </td><td> 17b03ca93f6120e10c84d9c4dc07b354
+@ 3017.05.cpt : file : file2 : 63360 </td><td> 884414097f854781c43fe692a672860f
+@ 3017.06.cpm : file : file1 : 190080 </td><td> 5897d2fbe7b2054d0248e2fac0acee4f
+@ 3017.06.cps : file : file2 : 43200 </td><td> efe8cb07519f12a8840f27265a866d18
+@ 3017.06.cpt : file : file1 : 54720 </td><td> cc27319a9129b14d1cde67ff389b4d60
+@ 3017.07.cpm : file : file2 : 195840 </td><td> 0cda1ebea944d3f40ce585e1ad7024d2
+@ 3017.07.cps : file : file1 : 43200 </td><td> 54ed4e2a871ea7a91bae1eb89c8b5fb5
+@ 3017.07.cpt : file : file2 : 54720 </td><td> e56d458212e51f6cd858ee318c46c266
+@ 3017.08.cpm : file : file1 : 241920 </td><td> 4edc8c912f805316680621297814cdf8
+@ 3017.08.cps : file : file2 : 54720 </td><td> a6fdcb6e0a85b27b28aa4267666f28e9
+@ 3017.08.cpt : file : file1 : 66240 </td><td> 571d8921ad9dada7970fc2e9faa9f217
+@ 3017.09.cpm : file : file2 : 256320 </td><td> 29d0a2d2afda6f2c629b63f82772488a
+@ 3017.09.cps : file : file1 : 57600 </td><td> a29b29d1f2add122521ef391b231c436
+@ 3017.09.cpt : file : file2 : 69120 </td><td> 42a8b048e04c9f973edcd46c4f5a21be
+@ 3017.10.cpm : file : file1 : 207360 </td><td> edbf0c204b3b666f27d42451435e55b7
+@ 3017.10.cps : file : file2 : 46080 </td><td> 45ebd666ae8712e196e27bcfa89572e8
+@ 3017.10.cpt : file : file1 : 57600 </td><td> 19c058a5983369021014b5950ecc459e
+@ 3017.11.cpm : file : file2 : 210240 </td><td> 49fa2a71482498178dda1e5c9d8750be
+@ 3017.11.cps : file : file1 : 46080 </td><td> a7d44eb431ce7043db12c7172a548c0f
+@ 3017.11.cpt : file : file2 : 57600 </td><td> cd1349f98af80782746f9e772da2d769
+@ 3017.12.cpm : file : file1 : 218880 </td><td> be742635ce31b8f89c6a90a01f9edad2
+@ 3017.12.cps : file : file2 : 48960 </td><td> 37b743b69b2f30de4b63390a4bfb1f2a
+@ 3017.12.cpt : file : file1 : 60480 </td><td> 8da569c642b8d31038b2a16720845b7a
+@ 3017.13.cpm : file : file2 : 250560 </td><td> 437fc6505687a8f58b1a5018da25b3ea
+@ 3017.13.cps : file : file1 : 54720 </td><td> 387a713d85a001522ad01f250070b744
+@ 3017.13.cpt : file : file2 : 66240 </td><td> 9be12e330f11008c8eb49e010876bc23
+@ 3017.14.cpm : file : file1 : 216000 </td><td> f94e3222408a1386be630c80936a0c41
+@ 3017.14.cps : file : file2 : 48960 </td><td> 200e7010fe8e7e538801646c70d08c9e
+@ 3017.14.cpt : file : file1 : 60480 </td><td> c3802fcd019ac4c6eeda57d7db9a27ac
+@ 3017.15.cpm : file : file2 : 227520 </td><td> 2268338a59c593c14e3d189ed2c4ed9b
+@ 3017.15.cps : file : file1 : 51840 </td><td> 50e21eca5c618eff31438c59ddd8165a
+@ 3017.15.cpt : file : file2 : 63360 </td><td> 0311a1b8e5a0830d762783e294b1d45c
+@ 3018.00.cpm : file : file1 : 236160 </td><td> f2e351a3b70973bcce19c57c69d52824
+@ 3018.00.cps : file : file2 : 51840 </td><td> 45b5c90201df15420a5aee3f1bfbe6fd
+@ 3018.00.cpt : file : file1 : 63360 </td><td> 1e75c65bf43f324f680c163816db5e56
+@ 3018.01.cpm : file : file2 : 239040 </td><td> 21fc0f9bda17e565b7de0ca927a530fc
+@ 3018.01.cps : file : file1 : 51840 </td><td> 3db93a1d41f73a64f139064a57219041
+@ 3018.01.cpt : file : file2 : 66240 </td><td> e1933ac50bbce6eb38a7ca4c76f8313c
+@ 3018.02.cpm : file : file1 : 247680 </td><td> 1c6fa47fc3c7d6b6ef846b15ddcd8391
+@ 3018.02.cps : file : file2 : 54720 </td><td> c0e80490fc8a8772c22404bc585cca7c
+@ 3018.02.cpt : file : file1 : 66240 </td><td> 9d1833e24cd68041903a61a6791fe184
+@ 3018.03.cpm : file : file2 : 250560 </td><td> e5e4aef7e0d4650aecce64443ffcb611
+@ 3018.03.cps : file : file1 : 54720 </td><td> 02906b366ad2f54bda903dbe56c58bf7
+@ 3018.03.cpt : file : file2 : 69120 </td><td> 01214a4c4375f093ea58296c61280237
+@ 3018.04.cpm : file : file1 : 236160 </td><td> e9e2e2cee44529888b415ba3cabadbb4
+@ 3018.04.cps : file : file2 : 51840 </td><td> e746a1c4f6696b487509c9d29d73c925
+@ 3018.04.cpt : file : file1 : 63360 </td><td> 03aac5f9b5516b8ec9b3fe1425cfa7a9
+@ 3018.05.cpm : file : file2 : 233280 </td><td> be091e6d9b2052a037a9ed93851be8ed
+@ 3018.05.cps : file : file1 : 51840 </td><td> 2167ff1cdd54bc4dc8a18d6b4fba7fab
+@ 3018.05.cpt : file : file2 : 63360 </td><td> beb236957f9a10c4e43e8027804166dc
+@ 3018.06.cpm : file : file1 : 244800 </td><td> 8048733e821bf08ec25c7379e8b5ff32
+@ 3018.06.cps : file : file2 : 54720 </td><td> e06284d3a650f446cab7f792f08665c6
+@ 3018.06.cpt : file : file1 : 66240 </td><td> fb768aeafc5a07a180fd2973e9843654
+@ 3018.07.cpm : file : file2 : 230400 </td><td> 6f4bc4b35fcfc47a62786a39938833fb
+@ 3018.07.cps : file : file1 : 51840 </td><td> 48aaa0ce2938ec5dc73e83a34ff94907
+@ 3018.07.cpt : file : file2 : 63360 </td><td> 851fa62736f87da24a29cc430516950a
+@ 3018.08.cpm : file : file1 : 236160 </td><td> eb480b52b7a2397595c8963eb532f1c1
+@ 3018.08.cps : file : file2 : 51840 </td><td> d781f60deded07e6368be80086325abd
+@ 3018.08.cpt : file : file1 : 63360 </td><td> 1be0f2d09076a04b706f0495b1fec319
+@ 3018.09.cpm : file : file2 : 239040 </td><td> a7c6e6c43da6abd20990876debe44d6a
+@ 3018.09.cps : file : file1 : 51840 </td><td> 73f9ac2e6d317c2e13d54a375c494bd4
+@ 3018.09.cpt : file : file2 : 66240 </td><td> ea30d329c3fb3879586abf611003730c
+@ 3018.10.cpm : file : file1 : 259200 </td><td> 5b3026540982b5e6d48e88aa5c669396
+@ 3018.10.cps : file : file2 : 57600 </td><td> fd70d7784250b0674d11da7c89f995e0
+@ 3018.10.cpt : file : file1 : 69120 </td><td> 8a419f82a0abbfb57c33216325ea87fd
+@ 3018.11.cpm : file : file2 : 239040 </td><td> a346f731b2b8ca55b7ae8bed128af9dc
+@ 3018.11.cps : file : file1 : 51840 </td><td> cb274fe71e1d9ab0a8e9658e3719aac8
+@ 3018.11.cpt : file : file2 : 66240 </td><td> 8d7fa72d5c307cff362993dfaf591657
+@ 3018.12.cpm : file : file1 : 233280 </td><td> c2ef56fc563252a8f3f5d265a1e3447b
+@ 3018.12.cps : file : file2 : 51840 </td><td> a600e7d1ce04bceae71d2da0b569cc23
+@ 3018.12.cpt : file : file1 : 63360 </td><td> cc6c51320fbc8bea8bc9e97a81f295c8
+@ 3018.13.cpm : file : file2 : 233280 </td><td> da702336a9a75a5d0dc859ab0e1c3f0c
+@ 3018.13.cps : file : file1 : 51840 </td><td> 93848c58bda9f252519287c9edc56f52
+@ 3018.13.cpt : file : file2 : 63360 </td><td> 3ce9d45c85bfdf85abdb8acaa2c227b4
+@ 3018.14.cpm : file : file1 : 279360 </td><td> 8dbeb72f13baf34aa07e6cb453db2815
+@ 3018.14.cps : file : file2 : 60480 </td><td> 1f6ac08aa75ca3bc82a7579a654db155
+@ 3018.14.cpt : file : file1 : 74880 </td><td> a938d09551abcafee3af52e17c294bd3
+@ 3018.15.cpm : file : file2 : 247680 </td><td> 49929d97ca02c177c6cffa657f029834
+@ 3018.15.cps : file : file1 : 54720 </td><td> cd377094b13ace915a1c415bd7a99078
+@ 3018.15.cpt : file : file2 : 66240 </td><td> 30f7aa5524c87f7be8509dfd2dc7f057
Index: trunk/dvodist/ippdata/docs.mkd
===================================================================
--- trunk/dvodist/ippdata/docs.mkd	(revision 35237)
+++ 	(revision )
@@ -1,125 +1,0 @@
-<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
-
-# DVO Documentation
-
-## Release Notes on 3pi.20120525
-
-This database contains PS1 3pi observations through 2012/01/21.  The
-ubercal zero points have been applied to all exposures included in
-that analysis.  The remaining exposures have been tied to the ubercal
-system via relative photometry.  The ubercal measurements are given
-10x their poisson weight to ensure they drive the photometric
-solution.
-
-The database has been merged with the PS1 Synthetic photometry
-database (based on 2MASS and USNO-B).  For objects brighter than the
-saturation limit, the Synthetic photometry has been used for the mean
-magnitudes (these can be identified by having bit 0x04 raised in the
-mean filter flags).  Objects which used ubercal photometry have the
-bit 0x08 raised in the mean filter flags.  
-
-This database has also been merged with the 2MASS, WISE, and
-SuperCOSMOS databases.  The following photcodes are used for those
-external photometric sources:
-
-<table class="page">
-<tr><th> Source </th><th> Photcode </th></tr>
-<tr><td> 2MASS_J </td><td> 2011 </td></tr>   
-<tr><td> 2MASS_H </td><td> 2012 </td></tr>   
-<tr><td> 2MASS_K </td><td> 2013 </td></tr>   
-<tr><td> WISE_W1 </td><td> 2014 </td></tr>   
-<tr><td> WISE_W2 </td><td> 2015 </td></tr>   
-<tr><td> WISE_W3 </td><td> 2016 </td></tr>   
-<tr><td> WISE_W4 </td><td> 2017 </td></tr>   
-<tr><td> SYNTH.g </td><td> 3001 </td></tr>   
-<tr><td> SYNTH.r </td><td> 3002 </td></tr>   
-<tr><td> SYNTH.i </td><td> 3003 </td></tr>   
-<tr><td> SYNTH.z </td><td> 3004 </td></tr>   
-<tr><td> SYNTH.y </td><td> 3005 </td></tr>
-<tr><td> SCOS.103a.E       </td><td>      1150  </td></tr>
-<tr><td> SCOS.4414.OG590   </td><td>      1151  </td></tr>
-<tr><td> SCOS.4415.OG590   </td><td>      1152  </td></tr>
-<tr><td> SCOS.IIIaF.OG590  </td><td>      1153  </td></tr>
-<tr><td> SCOS.IIIaF.RG610  </td><td>      1154  </td></tr>
-<tr><td> SCOS.IIIaF.RG630  </td><td>      1155  </td></tr>
-<tr><td> SCOS.IIIaJ.GG385  </td><td>      1156  </td></tr>
-<tr><td> SCOS.IIIaJ.GG395  </td><td>      1157  </td></tr>
-<tr><td> SCOS.IVN.RG715    </td><td>      1158  </td></tr>
-<tr><td> SCOS.IVN.RG9      </td><td>      1159  </td></tr>
-</table>
-
-<img width=1000px src="relphot.20120528/sigma.i.ubercal.20120528.v0.png"><br>
-Map of the mean per-star residual (inst mag brighter than -10) for
-i-band (ubercal data only).
-<br>
-
-<img width=1000px src="relphot.20120528/sigma.g.ubercal.20120528.v0.png"><br>
-Map of the mean per-star residual (inst mag brighter than -10) for
-g-band (ubercal data only).
-<br>
-
-<h3>Comparison with 2MASS</h3>
-
-The plots below compare the PS1 grizy photometry with 2MASS photometry
-by examining the location of the color-color locus for early (&lt; K0)
-main sequence stars.
-
-For each pixel (0.5 degree on a side), I select all objects with PS1 r
-&lt; 20 and detected JHK magnitudes, keeping only those with S/N in
-the mean &gt; 50 and standard deviations less than 0.05 magnitudes.  I
-then fit the stellar locus in g-r,r-i for the g-r range 0.2 to 1.0,
-and keep only objects that fall within 0.05 of that (linear) stellar
-locus fit.<br>
-
-I then fit the stellar locus with a line in each of the color-color diagrams
-g-i,i-J; g-i,i-H; g-i,i-K.  I measure the mean i-J color expected from
-the fit for stars with g-i = 0.5.  The figures below show the maps of
-the i-J, i-H, and i-K offsets as well as the J-H and H-K offsets at
-g-i = 0.5.  The center of these maps is RA,DEC = 0,0, (east is left,
-north is up).  The pixels are 0.5 degrees on a side.<br> 
-
-These maps show three main features.  The Galactic Plane is quite
-clear, and not surprising: this test is particularly sensitive to
-reddening. <br>
-
-Several large scale patches are also visible (eg, the black patch near
-RA ~ 150 deg).  Disappointingly, these correspond to areas without
-good ubercal ties -- in other words, these are regions in which the
-data were obtained in non-photometric conditions.  This shows the
-limitation of using relative photometry to tie across individual
-exposures.  If the exposures have an extinction gradient, the
-correction far from the photometrically tied region can drift from the
-correct value.  The largest region at RA ~ 150 matches a section with
-poor i-band photometry and has a depth of roughly 0.1 magnitudes in
-i-J.  Assuming this is completely due to i-band errors, this
-corresponds to about 0.06 magnitudes of drift to the center of this
-region. <br>
-
-The third pattern is at a lower level of intensity: N-S strips with
-roughly E-W bands.  They are most noticable in K and H-K.  These
-appear to correspond well to the 2MASS scanning pattern, and have an
-amplitude corresponding to about 0.02 - 0.04 magnitudes of offset in
-K.  <br>
-
-<img width=1000px src="relphot.20120528/dJ.allsky.20120528.v3.png"><br>
-Map of the i-J color at g-i = 0.5. 
-<br>
-
-<img width=1000px src="relphot.20120528/dH.allsky.20120528.v3.png"><br>
-Map of the i-H color at g-i = 0.5. 
-<br>
-
-<img width=1000px src="relphot.20120528/dK.allsky.20120528.v3.png"><br>
-Map of the i-K color at g-i = 0.5. 
-<br>
-
-Combinations of the above maps can highlight any problems in 2MASS
-which are driven by the color rather than the mean magnitudes.
-
-<img width=1000px src="relphot.20120528/dJH.allsky.20120528.v3.png"><br>
-Map of the J-H color at g-i = 0.5. 
-<br>
-
-<img width=1000px src="relphot.20120528/dHK.allsky.20120528.v3.png"><br>
-Map of the H-K color at g-i = 0.5. 
-<br>
Index: trunk/dvodist/ippdata/docs/index.mkd
===================================================================
--- trunk/dvodist/ippdata/docs/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/docs/index.mkd	(revision 35238)
@@ -0,0 +1,15 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# DVO Documentation
+
+(up to [PS1 Data Release](/ippdata/index.php))
+
+Below are links to documentation related to the distributed data
+
+* [Photometric Reference Ladder, Release 12.01 Notes](photladder.php)
+* [Photometric Reference Ladder, Release 12.01 Paper (pdf)](photladder-1206.20130301.pdf)
+
+* [PS1 Photometric System](http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki/PS1_Photometric_System)
+* [Tonry et al paper on the PS1 Photometric System](http://adsabs.harvard.edu/abs/2012ApJ...750...99T)
+
+* [Schlafly et al ubercal paper](http://adsabs.harvard.edu/abs/2012ApJ...756..158S)
Index: trunk/dvodist/ippdata/docs/photladder.mkd
===================================================================
--- trunk/dvodist/ippdata/docs/photladder.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/docs/photladder.mkd	(revision 35238)
@@ -0,0 +1,77 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+## Release Notes on PS1 Photometric Reference Ladder, Release 12.01
+
+(up to [PS1 Data Release](/ippdata/index.php))
+
+(up to [Documentation](/ippdata/docs/index.php))
+
+[Photometric Reference Ladder, Release 12.01 Paper (pdf)](photladder-1206.20121230.pdf)
+
+**Partial Release Notes : Please see also the paper (above)**
+
+<h3>Comparison with 2MASS</h3>
+
+The plots below compare the PS1 grizy photometry with 2MASS photometry
+by examining the location of the color-color locus for early (&lt; K0)
+main sequence stars.
+
+For each pixel (0.5 degree on a side), I select all objects with PS1 r
+&lt; 20 and detected JHK magnitudes, keeping only those with S/N in
+the mean &gt; 50 and standard deviations less than 0.05 magnitudes.  I
+then fit the stellar locus in g-r,r-i for the g-r range 0.2 to 1.0,
+and keep only objects that fall within 0.05 of that (linear) stellar
+locus fit.<br>
+
+I then fit the stellar locus with a line in each of the color-color diagrams
+g-i,i-J; g-i,i-H; g-i,i-K.  I measure the mean i-J color expected from
+the fit for stars with g-i = 0.5.  The figures below show the maps of
+the i-J, i-H, and i-K offsets as well as the J-H and H-K offsets at
+g-i = 0.5.  The center of these maps is RA,DEC = 0,0, (east is left,
+north is up).  The pixels are 0.5 degrees on a side.<br> 
+
+These maps show three main features.  The Galactic Plane is quite
+clear, and not surprising: this test is particularly sensitive to
+reddening. <br>
+
+Several large scale patches are also visible (eg, the black patch near
+RA ~ 150 deg).  Disappointingly, these correspond to areas without
+good ubercal ties -- in other words, these are regions in which the
+data were obtained in non-photometric conditions.  This shows the
+limitation of using relative photometry to tie across individual
+exposures.  If the exposures have an extinction gradient, the
+correction far from the photometrically tied region can drift from the
+correct value.  The largest region at RA ~ 150 matches a section with
+poor i-band photometry and has a depth of roughly 0.1 magnitudes in
+i-J.  Assuming this is completely due to i-band errors, this
+corresponds to about 0.06 magnitudes of drift to the center of this
+region. <br>
+
+The third pattern is at a lower level of intensity: N-S strips with
+roughly E-W bands.  They are most noticable in K and H-K.  These
+appear to correspond well to the 2MASS scanning pattern, and have an
+amplitude corresponding to about 0.02 - 0.04 magnitudes of offset in
+K.  <br>
+
+<img width=1000px src="2mass.compare/dJ.allsky.20120528.v3.png"><br>
+Map of the i-J color at g-i = 0.5. 
+<br>
+
+<img width=1000px src="2mass.compare/dH.allsky.20120528.v3.png"><br>
+Map of the i-H color at g-i = 0.5. 
+<br>
+
+<img width=1000px src="2mass.compare/dK.allsky.20120528.v3.png"><br>
+Map of the i-K color at g-i = 0.5. 
+<br>
+
+Combinations of the above maps can highlight any problems in 2MASS
+which are driven by the color rather than the mean magnitudes.
+
+<img width=1000px src="2mass.compare/dJH.allsky.20120528.v3.png"><br>
+Map of the J-H color at g-i = 0.5. 
+<br>
+
+<img width=1000px src="2mass.compare/dHK.allsky.20120528.v3.png"><br>
+Map of the H-K color at g-i = 0.5. 
+<br>
Index: trunk/dvodist/ippdata/help.mkd
===================================================================
--- trunk/dvodist/ippdata/help.mkd	(revision 35237)
+++ trunk/dvodist/ippdata/help.mkd	(revision 35238)
@@ -1,14 +1,11 @@
 <?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
 
-# DVO Distribution Help
+# PS1 / IPP Public Data Distribution Help
 
-These web pages contain the PS1 DVO databases, making it easy to
-download entire databases with the 'wget' command.  It is necessary to
-include an authorized user and the password.
+These web pages contain PS1 public release photometry and astrometry
+data.  It is easy to download a complete dataset from these pages with
+the <tt>wget</tt> command.
 
 Use a wget command on the directory of interest, eg:
 
-<tt> wget --user=ps1sc --password=(PASS) -r -np -nH http://dvodist.ipp.ifa.hawaii.edu/3pi.20120509 </tt>
-
-Ask your DRAVG representative if you need the password.
-
+<tt> wget -r -np -nH http://ipp.ifa.hawaii.edu/photladder.20130107.subset </tt>
Index: trunk/dvodist/ippdata/index.mkd
===================================================================
--- trunk/dvodist/ippdata/index.mkd	(revision 35237)
+++ trunk/dvodist/ippdata/index.mkd	(revision 35238)
@@ -1,11 +1,27 @@
 <?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
 
-# PS1 Public Data Distribution
+# PS1 / IPP Public Data Distribution
 
-This is the PS1 public data distribution server.  
+Pan-STARRS 1 (PS1) is an astronomical observatory dedicated to
+surveying the sky in optical wavelengths.  The telescope is located at
+the summit of Haleakala on the Hawaiian island of Maui.  Data
+collected by the telescope are automatically processed by the PS1
+Image Processing Pipeline (IPP).
 
-Data is distributed in several forms
+The PS1 telescope has been in full survey operations since May 2010.
+In the intervening period, it is surveyed the 3/4 of the sky visible
+from Hawaii repeatedly in 5 bands.  This "3pi" survey gets the major
+portion of the telescope time (56%), with the remaining time going to
+a variety of deep survey fields and dedicated asteroid search time. 
 
-@ Data Product             : none                       : plain : title : Comment
-@ PS1 Photometry Ladder v0 : photladder.20120604.subset : dir   : dir1  : Photometry Ladder released 2012.06.07 (EAM UPDATE)
-@ Synthetic Photometry DVO : catdir.syn.test            : dir   : dir1  : Demonstration DVO Database
+One of the major goals of the 3pi survey is the construction of a
+high-quality photometric reference catalog covering the 3pi region
+(Dec > -30 deg).  
+
+These web pages provide the public access to data products related to
+the PS1 surveys, with particular emphasis on the bulk photometry (and
+eventually astrometry) datasets.
+
+@ Data Product                : none                       : plain : title : Comment
+@ PS1 Photladder, 12.01       : photladder.20130107.subset : dir   : dir1  : Photometric Reference Ladder, Release 12.01
+@ Synthetic Photometry DVO    : catdir.syn.test            : dir   : dir2  : Demonstration DVO Database
Index: trunk/dvodist/ippdata/ipp.css
===================================================================
--- trunk/dvodist/ippdata/ipp.css	(revision 35237)
+++ trunk/dvodist/ippdata/ipp.css	(revision 35238)
@@ -40,5 +40,5 @@
     text-decoration: underline; 
     font-weight: bold; 
-    color: #ff0000
+    color: #800080
 }
 
Index: trunk/dvodist/ippdata/photladder.20130107.subset/index.mkd
===================================================================
--- trunk/dvodist/ippdata/photladder.20130107.subset/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/photladder.20130107.subset/index.mkd	(revision 35238)
@@ -0,0 +1,37 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# PS1 Photometric Reference Ladder, Release 12.01
+
+(up to [PS1 Data Release](/ippdata/index.php))
+
+The PS1 Photometric Reference Ladder (Release 12.01) provides
+reference PS1 photometry for 1-degree wide bands across the sky.
+There are 24 rungs in RA (1 at each integer RA hour) and 4 rungs in
+DEC (at -25, 0, +25, and +50 degrees).  In each band, a maximum of
+~1000 objects per square degree are provided.  
+
+The reference catalog data are provided in 2 formats: FITS tables and
+Comma-Separated Values text files.  The latter may be easily loaded
+into excel or certain database software.  
+
+There are two sets of tables: ubercal and relphot.  The ubercal tables
+only include objects for which measurements in all 5 filters were used
+for the ubercal solution.  These data come from time periods which
+have been judged as photometric and reprensent the most pristine
+sample.  
+
+The relphot tables include objects for which some (or even all) of the
+filters have been calibrated via relative photometry using image
+overlaps to connect them to images in the ubercal set.  Please take
+care when using the relphot tables, as the relative photometry tie may
+allow for substantial drift in certain patches in the sky (see Figure
+6 in Magnier et al 2013).
+
+* [Magnier et al, 2012 : Photometric Reference Ladder, Release 12.01 Paper (pdf)](../docs/photladder-1206.20130301.pdf)
+
+@ Data Product             : none                       : plain : title : Comment
+@ Ubercal FITS tables  : ubercal-fits : dir   : dir1  : NOTES
+@ Ubercal CSV tables  : ubercal-csv : dir   : dir2  : NOTES
+@ Relphot FITS tables  : relphot-fits : dir   : dir1  : NOTES
+@ Relphot CSV tables  : relphot-csv : dir   : dir2  : NOTES
+
Index: trunk/dvodist/ippdata/photladder.20130107.subset/relphot-csv/index.mkd
===================================================================
--- trunk/dvodist/ippdata/photladder.20130107.subset/relphot-csv/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/photladder.20130107.subset/relphot-csv/index.mkd	(revision 35238)
@@ -0,0 +1,41 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# PS1 Photometric Reference Ladder, Release 12.01
+## Relphot Data in CSV Format
+
+(up to [PS1 Photladder, 12.01](/ippdata/photladder.20130107.subset/index.php))
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/photladder.20130107.subset/relphot-csv </tt>
+
+@ filename : plain : title : size (bytes) </td><td> md5sum 
+@ ps1.ladder.1201.relphot.D+00d.csv : file : file1 : 110556097 </td><td> 58521986ff3f5f068741a0088e98b5b4
+@ ps1.ladder.1201.relphot.D-25d.csv : file : file2 : 137215192 </td><td> 50f17936f16daceb0d55807523ada3ac
+@ ps1.ladder.1201.relphot.D+25d.csv : file : file1 : 129767144 </td><td> eebd48a731c5c788aae6a8da5b6d1331
+@ ps1.ladder.1201.relphot.D+50d.csv : file : file2 : 121230721 </td><td> 772cddf3e4f0bb12380f3c1f36178c9a
+@ ps1.ladder.1201.relphot.R+00h.csv : file : file1 :  15309153 </td><td> 64f476cfbcdf7478c4773cf6295424d5
+@ ps1.ladder.1201.relphot.R+01h.csv : file : file2 :  20307262 </td><td> 0dcb7763434d23f65778f7edd23bc6ce
+@ ps1.ladder.1201.relphot.R+02h.csv : file : file1 :  20200390 </td><td> 80fde9be579090a12a771dd03705f230
+@ ps1.ladder.1201.relphot.R+03h.csv : file : file2 :  17177383 </td><td> 21e6a8c51810c0b49bd38ceb3af35cd6
+@ ps1.ladder.1201.relphot.R+04h.csv : file : file1 :  26113727 </td><td> 9de577b47f96d3de6046d925f7940a91
+@ ps1.ladder.1201.relphot.R+05h.csv : file : file2 :  29938977 </td><td> 190bec64d97605191eac71c40b4743c1
+@ ps1.ladder.1201.relphot.R+06h.csv : file : file1 :  34393464 </td><td> 0bdd2d826c606292cf1989c4b4424817
+@ ps1.ladder.1201.relphot.R+07h.csv : file : file2 :  36147439 </td><td> 1805e7643926385e456c56dd5e1d1da1
+@ ps1.ladder.1201.relphot.R+08h.csv : file : file1 :  32550615 </td><td> 33c215d047a9042f3835e63d07dbc51b
+@ ps1.ladder.1201.relphot.R+09h.csv : file : file2 :  15447531 </td><td> 56b99eee8818a74e1714e390200eb6fd
+@ ps1.ladder.1201.relphot.R+10h.csv : file : file1 :  10994377 </td><td> f0574a61e1c71f03484f04e7031cf3ac
+@ ps1.ladder.1201.relphot.R+11h.csv : file : file2 :   8716684 </td><td> a2708070e3be85021eb8392a7795eb5d
+@ ps1.ladder.1201.relphot.R+12h.csv : file : file1 :  13034137 </td><td> cc6273887c0f60b7a764c91858432c02
+@ ps1.ladder.1201.relphot.R+13h.csv : file : file2 :  11831878 </td><td> 4fb83b7eec46ddf4928e9c16a144a648
+@ ps1.ladder.1201.relphot.R+14h.csv : file : file1 :  17305762 </td><td> d7d43a96495d5130867e6159a6a87e76
+@ ps1.ladder.1201.relphot.R+15h.csv : file : file2 :  21324169 </td><td> da9f0c6f65ef088c37ab73bd4e3ed40a
+@ ps1.ladder.1201.relphot.R+16h.csv : file : file1 :  31951575 </td><td> 819f0b78ac0f8cf77d844bec28514ce6
+@ ps1.ladder.1201.relphot.R+17h.csv : file : file2 :  35145746 </td><td> ec2a7b853bdc3325f089d8bb45ebdead
+@ ps1.ladder.1201.relphot.R+18h.csv : file : file1 :  35236424 </td><td> fe60b776dae5e2e74ef353e1a8a4f33c
+@ ps1.ladder.1201.relphot.R+19h.csv : file : file2 :  36944631 </td><td> 0f5bcc3e6f33cfe87fbef2cfd0de3c63
+@ ps1.ladder.1201.relphot.R+20h.csv : file : file1 :  37311438 </td><td> 25d3fce6352553e686b914eeba806b20
+@ ps1.ladder.1201.relphot.R+21h.csv : file : file2 :  37012001 </td><td> 21bf9f13eb0fe90a0cba6abeb1d5ef30
+@ ps1.ladder.1201.relphot.R+22h.csv : file : file1 :  35452830 </td><td> dbf436ed469596d6e326a4c416715205
+@ ps1.ladder.1201.relphot.R+23h.csv : file : file2 :  31024737 </td><td> cbb1031c111b4626480c8d52d7e8e3f8
+@ ps1.ladder.1201.relphot.R+24h.csv : file : file1 :  13328142 </td><td> ad408b5b3e3ca7e7a873fa4e18779d9d
Index: trunk/dvodist/ippdata/photladder.20130107.subset/relphot-fits/index.mkd
===================================================================
--- trunk/dvodist/ippdata/photladder.20130107.subset/relphot-fits/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/photladder.20130107.subset/relphot-fits/index.mkd	(revision 35238)
@@ -0,0 +1,41 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# PS1 Photometric Reference Ladder, Release 12.01
+## Relphot Data in FITS Format
+
+(up to [PS1 Photladder, 12.01](/ippdata/photladder.20130107.subset/index.php))
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/photladder.20130107.subset/relphot-fits </tt>
+
+@ filename : plain : title : size (bytes) </td><td> md5sum 
+@ ps1.ladder.1201.relphot.D+00d.fits : file : file1 : 39398400 | 64ff5ec3d9c76e32b3e6ef8182b1f023
+@ ps1.ladder.1201.relphot.D-25d.fits : file : file2 : 49127040 | 395f8aad559be044aa673624ee49dcc7
+@ ps1.ladder.1201.relphot.D+25d.fits : file : file1 : 46370880 | 96ad6ef5953658f139632521d814a246
+@ ps1.ladder.1201.relphot.D+50d.fits : file : file2 : 43274880 | 3d21e1b27b41182f75e06e0eab15e622
+@ ps1.ladder.1201.relphot.R+00h.fits : file : file1 :  5483520 | 26be0dd339f41791f5ddb18fc8192a40
+@ ps1.ladder.1201.relphot.R+01h.fits : file : file2 :  7263360 | a1957a589d9ddce3cfb4f9dd8c2cb9da
+@ ps1.ladder.1201.relphot.R+02h.fits : file : file1 :  7217280 | 28e71fcf3b19485bb86c9bc5af58caeb
+@ ps1.ladder.1201.relphot.R+03h.fits : file : file2 :  6108480 | 7fc5f75aa9c412692f1fdaeacd065772
+@ ps1.ladder.1201.relphot.R+04h.fits : file : file1 :  9216000 | 5354af2ec06dfb188f2f0cbde03fb567
+@ ps1.ladder.1201.relphot.R+05h.fits : file : file2 : 10589760 | 9b0472cd92dbdad908b44a9da6f1e6ba
+@ ps1.ladder.1201.relphot.R+06h.fits : file : file1 : 12153600 | 043d299e05d5857afbb8f966741886b8
+@ ps1.ladder.1201.relphot.R+07h.fits : file : file2 : 12764160 | b5a11f6f313f4b15b3478d7a385786a1
+@ ps1.ladder.1201.relphot.R+08h.fits : file : file1 : 11554560 | 0b7aab048824b2a333c727f1c7f16215
+@ ps1.ladder.1201.relphot.R+09h.fits : file : file2 :  5463360 | c6243b7ebf27d88beffe6839452817c0
+@ ps1.ladder.1201.relphot.R+10h.fits : file : file1 :  3954240 | 4f87ac1becccf90acc57e8af2e1b7ad3
+@ ps1.ladder.1201.relphot.R+11h.fits : file : file2 :  3130560 | 001d0234ec8b450a0a31fceedf4ee50e
+@ ps1.ladder.1201.relphot.R+12h.fits : file : file1 :  4685760 | f6974c449fb4a23107dc1a7a1ba84908
+@ ps1.ladder.1201.relphot.R+13h.fits : file : file2 :  4239360 | dbfc709f6efcb74c93b07bb0a1355faf
+@ ps1.ladder.1201.relphot.R+14h.fits : file : file1 :  6243840 | de718b2b96e43390e06905237b39ce1a
+@ ps1.ladder.1201.relphot.R+15h.fits : file : file2 :  7669440 | af51be4af06df82f55d9d610dc9aeb34
+@ ps1.ladder.1201.relphot.R+16h.fits : file : file1 : 11528640 | 6897ea57487d17617b70429b938c14f7
+@ ps1.ladder.1201.relphot.R+17h.fits : file : file2 : 12666240 | c3526e9498ad58f665d26459d1643689
+@ ps1.ladder.1201.relphot.R+18h.fits : file : file1 : 12660480 | 22d2917e2dda2dd0e287e928dc8563c7
+@ ps1.ladder.1201.relphot.R+19h.fits : file : file2 : 13204800 | cccbd09b445fa38ce9431d9b1e72e11c
+@ ps1.ladder.1201.relphot.R+20h.fits : file : file1 : 13374720 | b5a184414289eb2ce7cb6517d984856a
+@ ps1.ladder.1201.relphot.R+21h.fits : file : file2 : 13374720 | d489763dbf47025ed6bc6f30a30db920
+@ ps1.ladder.1201.relphot.R+22h.fits : file : file1 : 12810240 | 15400c02daf6d33f7b4c7087adc77f3e
+@ ps1.ladder.1201.relphot.R+23h.fits : file : file2 : 11131200 | 5e6684beff60a325af65b8ab220ee197
+@ ps1.ladder.1201.relphot.R+24h.fits : file : file1 :  4806720 | 5caa7a2e90443d1e1c3ccb3b241d3bf7
Index: trunk/dvodist/ippdata/photladder.20130107.subset/ubercal-csv/index.mkd
===================================================================
--- trunk/dvodist/ippdata/photladder.20130107.subset/ubercal-csv/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/photladder.20130107.subset/ubercal-csv/index.mkd	(revision 35238)
@@ -0,0 +1,41 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# PS1 Photometric Reference Ladder, Release 12.01
+## Ubercal Data in FITS Format
+
+(up to [PS1 Photladder, 12.01](/ippdata/photladder.20130107.subset/index.php))
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/photladder.20130107.subset/ubercal-fits </tt>
+
+@ filename : plain : title : size (bytes) </td><td> md5sum 
+@ ps1.ladder.1201.ubercal.D+00d.csv : file : file1 : 166286854 </td><td> 6fab78f8eac0bb8d36939b6915d31806
+@ ps1.ladder.1201.ubercal.D-25d.csv : file : file2 :  88442869 </td><td> a91e8bab8a057b10976c9a020d3fc195
+@ ps1.ladder.1201.ubercal.D+25d.csv : file : file1 : 258034962 </td><td> 8f6f2376d5045cd907dace781aa3a7f1
+@ ps1.ladder.1201.ubercal.D+50d.csv : file : file2 : 339802708 </td><td> 37041b92f3bc2e609957724199565c0f
+@ ps1.ladder.1201.ubercal.R+00h.csv : file : file1 : 353129004 </td><td> ae177120778f88d544a40e409dbad9f9
+@ ps1.ladder.1201.ubercal.R+01h.csv : file : file2 : 370336079 </td><td> 36120952f8e37c580744e2899e573d7f
+@ ps1.ladder.1201.ubercal.R+02h.csv : file : file1 : 380563565 </td><td> 227535b2474f58237f9f035abbaf1258
+@ ps1.ladder.1201.ubercal.R+03h.csv : file : file2 : 390174387 </td><td> 4163934598de7de636940d2005207ad9
+@ ps1.ladder.1201.ubercal.R+04h.csv : file : file1 : 405124960 </td><td> 5b6edd9cf1a8c9ae9781d344b393258a
+@ ps1.ladder.1201.ubercal.R+05h.csv : file : file2 : 421318946 </td><td> 1c7ca4ab4a54d4d01a43383a9efe80ee
+@ ps1.ladder.1201.ubercal.R+06h.csv : file : file1 : 441583307 </td><td> 9c311cecaff480a015d837b2b88a3fb2
+@ ps1.ladder.1201.ubercal.R+07h.csv : file : file2 : 452337093 </td><td> a65630d86e77e02ffc1f825d18ec890d
+@ ps1.ladder.1201.ubercal.R+08h.csv : file : file1 : 479817001 </td><td> f287b92c8a50522d9bec2785c224ef88
+@ ps1.ladder.1201.ubercal.R+09h.csv : file : file2 : 483821698 </td><td> 8d2c129ae9fff01360164ea613da60d1
+@ ps1.ladder.1201.ubercal.R+10h.csv : file : file1 : 489127513 </td><td> c62ed7a5c13c8ecde5df1642f1ca28ec
+@ ps1.ladder.1201.ubercal.R+11h.csv : file : file2 : 494372401 </td><td> 0d942b67d4d4d1c77a443143b3228c5b
+@ ps1.ladder.1201.ubercal.R+12h.csv : file : file1 : 505312644 </td><td> a476b3e0b82db42d18ac97f5f7851405
+@ ps1.ladder.1201.ubercal.R+13h.csv : file : file2 : 511810521 </td><td> 34f0d0c3ec8407ffd0b4812782284b80
+@ ps1.ladder.1201.ubercal.R+14h.csv : file : file1 : 525293417 </td><td> bacc5036900abe42b12fa6f4845eae23
+@ ps1.ladder.1201.ubercal.R+15h.csv : file : file2 : 536591368 </td><td> 2379f80629e2f1a0051ec75c424fe6a8
+@ ps1.ladder.1201.ubercal.R+16h.csv : file : file1 : 563319383 </td><td> 7e6c681a8fcffbcd9b854a453a5af95a
+@ ps1.ladder.1201.ubercal.R+17h.csv : file : file2 : 592925045 </td><td> a745b6d59a1f0695f39b8b57c58bf027
+@ ps1.ladder.1201.ubercal.R+18h.csv : file : file1 : 609032859 </td><td> 6b91b9f6737bd025dea8a0e2ddb937b0
+@ ps1.ladder.1201.ubercal.R+19h.csv : file : file2 : 632938107 </td><td> 44e009333765d3084263d758e2b1bcc1
+@ ps1.ladder.1201.ubercal.R+20h.csv : file : file1 : 653062724 </td><td> 16ca9da7f624fb6771cab0c6a30a5dbd
+@ ps1.ladder.1201.ubercal.R+21h.csv : file : file2 : 687179008 </td><td> 369ac5e840334af8a8986232e84381f3
+@ ps1.ladder.1201.ubercal.R+22h.csv : file : file1 : 712573076 </td><td> 5d1c11aa311b5c0a5c6d59e9ef910bba
+@ ps1.ladder.1201.ubercal.R+23h.csv : file : file2 : 736227297 </td><td> e18f4f4e3a1b687f170bdec490c7ed59
+@ ps1.ladder.1201.ubercal.R+24h.csv : file : file1 : 748365730 </td><td> 5a9cd96056be0839046e5d89dadba056
Index: trunk/dvodist/ippdata/photladder.20130107.subset/ubercal-fits/index.mkd
===================================================================
--- trunk/dvodist/ippdata/photladder.20130107.subset/ubercal-fits/index.mkd	(revision 35238)
+++ trunk/dvodist/ippdata/photladder.20130107.subset/ubercal-fits/index.mkd	(revision 35238)
@@ -0,0 +1,42 @@
+<?php include "@HTDOCS@/www-util/ippdata.page.php"; ?>
+
+# PS1 Photometric Reference Ladder, Release 12.01
+## Ubercal Data in FITS Format
+
+(up to [PS1 Photladder, 12.01](/ippdata/photladder.20130107.subset/index.php))
+
+Download this entire directory with the following command:
+
+<tt> wget -c -r -np -nH @ROOTWWW@/photladder.20130107.subset/ubercal-fits </tt>
+
+@ filename : plain : title : size (bytes) </td><td> md5sum 
+@ ps1.ladder.1201.ubercal.D+00d.fits : file : file1 :  59544000 </td><td> 6fdbd05631ec10e70cb85328c5a3da49
+@ ps1.ladder.1201.ubercal.D-25d.fits : file : file2 :  31780800 </td><td> 840c650abe448f5f6724785e3d1d578e
+@ ps1.ladder.1201.ubercal.D+25d.fits : file : file1 :  92350080 </td><td> 60b3dff46596127760ed8a42771f20c3
+@ ps1.ladder.1201.ubercal.D+50d.fits : file : file2 : 121610880 </td><td> 8f4fed22147205ba75101fcf8aed08c6
+@ ps1.ladder.1201.ubercal.R+00h.fits : file : file1 : 126365760 </td><td> 8bab7143168484d45968c2abe1cb2a07
+@ ps1.ladder.1201.ubercal.R+01h.fits : file : file2 : 132508800 </td><td> 3e30dad2c6e663e1b1ee2e9eaccea0e5
+@ ps1.ladder.1201.ubercal.R+02h.fits : file : file1 : 136146240 </td><td> 0dd601595a6e806ce0fefe029795396a
+@ ps1.ladder.1201.ubercal.R+03h.fits : file : file2 : 139553280 </td><td> 5b4d8232b0cdf77c8e95032afb57860f
+@ ps1.ladder.1201.ubercal.R+04h.fits : file : file1 : 144829440 </td><td> 87239e621ca8baec839cbbbb5f966f55
+@ ps1.ladder.1201.ubercal.R+05h.fits : file : file2 : 150552000 </td><td> 102c187e9207ff8f545d1d4a4b48faf8
+@ ps1.ladder.1201.ubercal.R+06h.fits : file : file1 : 157703040 </td><td> 117a1a4c323da86f8d541e07e5b9b9d1
+@ ps1.ladder.1201.ubercal.R+07h.fits : file : file2 : 161498880 </td><td> 5f62663a594807eb9a1d0abae80047a6
+@ ps1.ladder.1201.ubercal.R+08h.fits : file : file1 : 171224640 </td><td> 348163f63f31f21e14ca3d12fa6156b9
+@ ps1.ladder.1201.ubercal.R+09h.fits : file : file2 : 172635840 </td><td> f500eb7a467392de2088a391bd309760
+@ ps1.ladder.1201.ubercal.R+10h.fits : file : file1 : 174536640 </td><td> f0fc87198a1bb6b48986074b121933a3
+@ ps1.ladder.1201.ubercal.R+11h.fits : file : file2 : 176411520 </td><td> 8a13079aa560768f04ace810ae5eefed
+@ ps1.ladder.1201.ubercal.R+12h.fits : file : file1 : 180328320 </td><td> 2c316914db44e4bdbedec1315b4f1abb
+@ ps1.ladder.1201.ubercal.R+13h.fits : file : file2 : 182649600 </td><td> f41a20f0272a52029a4ddf287480064f
+@ ps1.ladder.1201.ubercal.R+14h.fits : file : file1 : 187508160 </td><td> b3eea25ad3dcd2b398f27452a8c7cc59
+@ ps1.ladder.1201.ubercal.R+15h.fits : file : file2 : 191571840 </td><td> 6c881b16c49db28d5a29fa30cefa29d0
+@ ps1.ladder.1201.ubercal.R+16h.fits : file : file1 : 201199680 </td><td> c036c422ec257364d0fc776237818b68
+@ ps1.ladder.1201.ubercal.R+17h.fits : file : file2 : 211855680 </td><td> 9b3a283b43aca71b330ce8774febf9db
+@ ps1.ladder.1201.ubercal.R+18h.fits : file : file1 : 217658880 </td><td> 8917b016e2d88d8ebff6f15217784d10
+@ ps1.ladder.1201.ubercal.R+19h.fits : file : file2 : 226183680 </td><td> 26e661c58f829ed40408c1be806ce67d
+@ ps1.ladder.1201.ubercal.R+20h.fits : file : file1 : 233424000 </td><td> cc15b2f95d3fd4df17d0dd070fce610e
+@ ps1.ladder.1201.ubercal.R+21h.fits : file : file2 : 245736000 </td><td> 80ac07c42403ec1ee67282987f8e2b18
+@ ps1.ladder.1201.ubercal.R+22h.fits : file : file1 : 254885760 </td><td> 484c6290abf8ad1d2e9f2fb02d69b0fb
+@ ps1.ladder.1201.ubercal.R+23h.fits : file : file2 : 263361600 </td><td> c7218ac7f282f23b391076ccd9ed94ff
+@ ps1.ladder.1201.ubercal.R+24h.fits : file : file1 : 267713280 </td><td> 3362fe91321c15979b6c809ea0a46970
+
Index: trunk/dvodist/scripts/mkindex.sh
===================================================================
--- trunk/dvodist/scripts/mkindex.sh	(revision 35237)
+++ trunk/dvodist/scripts/mkindex.sh	(revision 35238)
@@ -8,23 +8,22 @@
 set topdir = $argv[1]
 
-# this is weak: depends on root location
-ln -s /data/ippc17.0/www/dvodist/www-root/index.php $topdir/
+set file = `basename $topdir`
 
-set file = `basename $topdir`
-echo "$file : plain : title  : Title" > $topdir/index.txt
-echo "..             : dir   : dir2  : parent directory" >> $topdir/index.txt
+echo '<?php include "@HTDOCS@/www-util/dvodist.page.php"; ?>' >  $topdir/index.mkd
+
+echo "$file : plain : title  : Title" >> $topdir/index.mkd
+echo "..             : dir   : dir2  : parent directory" >> $topdir/index.mkd
 
 set N = 1
 foreach entry ($topdir/*)
   set file = `basename $entry`
-  if ("$file" == "index.php") continue
-  if ("$file" == "index.txt") continue
+  if ("$file" == "index.mkd") continue
 
   if (-d $entry) then
-    echo "$file : dir : dir$N : directory" >> $topdir/index.txt
+    echo "@ $file : dir : dir$N : directory" >> $topdir/index.mkd
   endif
 
   if (-f $entry) then
-    echo "$file : file : file$N : database file" >> $topdir/index.txt
+    echo "@ $file : file : file$N : database file" >> $topdir/index.mkd
   endif
 
Index: trunk/dvodist/scripts/mkindex.sizes.sh
===================================================================
--- trunk/dvodist/scripts/mkindex.sizes.sh	(revision 35238)
+++ trunk/dvodist/scripts/mkindex.sizes.sh	(revision 35238)
@@ -0,0 +1,35 @@
+#!/bin/csh -f 
+
+if ($#argv != 1) then
+  echo "USAGE: mkindex.sizes.sh (dir)"
+  exit 2
+endif
+
+set topdir = $argv[1]
+
+set file = `basename $topdir`
+
+set N = 1
+foreach entry ($topdir/*)
+  set file = `basename $entry`
+  set md5 = `md5sum $entry | awk '{print $1}'`
+  set size = `ls -l $entry | awk '{print $5}'`
+  echo $file, $md5, $size
+
+  if ("$file" == "index.php") continue
+  if ("$file" == "index.mkd") continue
+
+  if (-d $entry) then
+    echo "@ $file : dir : dir$N : directory" >> $topdir/index.mkd
+  endif
+
+  if (-f $entry) then
+    echo "@ $file : file : file$N : $size </td><td> $md5" >> $topdir/index.mkd
+  endif
+
+  if ($N == 1) then
+    set N = 2
+  else
+    set N = 1
+  endif
+end
Index: trunk/dvodist/src/generate
===================================================================
--- trunk/dvodist/src/generate	(revision 35237)
+++ trunk/dvodist/src/generate	(revision 35238)
@@ -6,4 +6,5 @@
 set htdocs  = ""
 set rootdir  = ""
+set rootwww  = ""
 set args    = ""
 set VERBOSE = 0
@@ -25,4 +26,12 @@
    else
      set rootdir = `echo $1 | tr = ' ' | awk '{print $2}'`
+   endif
+   breaksw;
+  case --rootwww*
+   if ("$1" == "--rootwww") then
+     shift
+     set rootwww = $1
+   else
+     set rootwww = `echo $1 | tr = ' ' | awk '{print $2}'`
    endif
    breaksw;
@@ -47,4 +56,5 @@
   echo "htdocs : $htdocs"
   echo "rootdir: $rootdir"
+  echo "rootwww: $rootwww"
   echo "input  : $args[1]"
   echo "output : $args[2]"
@@ -53,6 +63,7 @@
 if ("$htdocs" == "") goto usage
 if ("$rootdir" == "") goto usage
+if ("$rootwww" == "") goto usage
 
-cat $args[1] | sed "s|@HTDOCS@|$htdocs|" | sed "s|@ROOTDIR@|$rootdir|" > $args[2]
+cat $args[1] | sed "s|@HTDOCS@|$htdocs|" | sed "s|@ROOTDIR@|$rootdir|" | sed "s|@ROOTWWW@|$rootwww|" > $args[2]
 exit 0
 
Index: trunk/dvodist/www-util/ipp.php
===================================================================
--- trunk/dvodist/www-util/ipp.php	(revision 35237)
+++ trunk/dvodist/www-util/ipp.php	(revision 35238)
@@ -147,5 +147,4 @@
 
     if (count($line) == 4) {
-      echo "count = 4<br>\n";
       $name  = trim($line[0]);
       $type  = trim($line[1]);
@@ -155,5 +154,4 @@
     }
     if (count($line) == 5) {
-      echo "count = 5<br>\n";
       $name  = trim($line[0]);
       $link  = trim($line[1]);
@@ -216,8 +214,8 @@
       break;
     case 'dir':
-      echo "<tr class=\"$style\"><td><a class=\"$style\" href=\"$name\">$name</a></td><td>$info</td></tr>\n";
+      echo "<tr class=\"$style\"><td><a class=\"$style\" href=\"$link\">$name</a></td><td>$info</td></tr>\n";
       break;
     default:
-      echo "<tr class=\"$style\"><td><a class=\"$style\" href=\"$name\">$name</a></td><td>$info</td></tr>\n";
+      echo "<tr class=\"$style\"><td><a class=\"$style\" href=\"$link\">$name</a></td><td>$info</td></tr>\n";
       break;
     } 
Index: trunk/dvodist/www-util/ippdata.menu.dat
===================================================================
--- trunk/dvodist/www-util/ippdata.menu.dat	(revision 35237)
+++ trunk/dvodist/www-util/ippdata.menu.dat	(revision 35238)
@@ -6,8 +6,10 @@
 menuext   | menuext      | link    | Pan-STARRS IPP Wiki          | http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki
 menuext   | menuext      | link    | PS1SC Wiki                   | http://ps1sc.ifa.hawaii.edu/PS1wiki/index.php/Main_Page
+menuext   | menuext      | link    | PS1SC Access                 | http://dvodist.ipp.ifa.hawaii.edu
+menuext   | menuext      | link    | PS1SC PSPS                   | http://psps.ifa.hawaii.edu
 
 menutop   | menutop      | plain   | &nbsp;                       | 
-menutop   | menuselect   | link    | DVO Releases                 | /index.php
-menutop   | menuselect   | link    | Documentation                | /docs.php
+menutop   | menuselect   | link    | PS1 Public Data              | /index.php
+menutop   | menuselect   | link    | Documentation                | /docs/index.php
 menutop   | menuselect   | link    | Help                         | /help.php
 
