<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-33895478</id><updated>2011-12-14T18:56:28.817-08:00</updated><category term='lame mp3 resample'/><category term='rstp mplayer mp3'/><category term='bash awk cygwin USB'/><category term='awk'/><category term='VMWare /dev/sda'/><category term='Cygwin screen tabs'/><category term='bash'/><category term='cygwin'/><category term='usb'/><category term='YouTube MPG MP3 VCD DVD'/><category term='VCD Cygwin YouTube'/><category term='bash awk cygwin'/><title type='text'>ZZTools</title><subtitle type='html'>Information on software and computers, with an emphasis on Cygwin, Windows and Linux, the de facto usable technology stack.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>72</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-33895478.post-7747395541679283300</id><published>2011-11-23T10:37:00.001-08:00</published><updated>2011-11-23T10:38:56.866-08:00</updated><title type='text'>Nice PDF Files from Ascii</title><content type='html'>If you want to convert ascii into PDF - and you want to do it with a little style, use the following:&lt;pre&gt;&lt;br /&gt;a2ps –media=Letter -o – example.txt | ps2pdf – example.pdf&lt;/pre&gt;&lt;br /&gt;Drop the -media=Letter option if you want an A4 pdf file.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-7747395541679283300?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/7747395541679283300/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=7747395541679283300' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7747395541679283300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7747395541679283300'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2011/11/nice-pdf-files-from-ascii.html' title='Nice PDF Files from Ascii'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-8318711769706468453</id><published>2011-11-09T13:05:00.000-08:00</published><updated>2011-11-09T13:14:58.999-08:00</updated><title type='text'>Monitor a Woot-Off! Bash Script</title><content type='html'>Here is a simple script to monitor the Woot site, when a 'Woot-Off' is underway. The script can easily be customized to perform a similar function for any desired site. I use it under Cygwin on Windows, and when the Woot site is updated, a 'bell' is sounded, so that if I'm by this machine, I can take a look to see if the new item is the elusive 'bag of crap'! (So far no success - you need to be fast or lucky).&lt;br /&gt;&lt;br /&gt;The script waits 30 seconds + a random number of seconds between 0 and 60 prior to its visits to the Woot site. The sound creation step is customized for Cygwin, if you are on Linux or a Mac, just use: &lt;br /&gt;&lt;pre&gt;echo -en "\007"&lt;/pre&gt; (or something similar).&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;while true&lt;br /&gt;do&lt;br /&gt;  wget -O - "http://www.woot.com/" | \&lt;br /&gt;    grep "meta property=\"og:title\" content=" \&lt;br /&gt;    &gt; tmp.txt&lt;br /&gt;  diff tmp.txt tmpold.txt &gt; /dev/null&lt;br /&gt;  ret=$?&lt;br /&gt;  if [  $ret -eq 0 ]&lt;br /&gt;  then&lt;br /&gt;    echo "NO CHANGES"&lt;br /&gt;    echo "Current item"&lt;br /&gt;    cat tmp.txt&lt;br /&gt;  else&lt;br /&gt;    echo "CHANGES!"&lt;br /&gt;    cat `cygpath -W`/Media/ding.wav &gt; /dev/dsp&lt;br /&gt;    cp tmp.txt tmpold.txt&lt;br /&gt;  fi&lt;br /&gt;  SLEEP=`awk 'BEGIN{srand(); print int(rand()*60+30)}'`&lt;br /&gt;  echo "Sleeping for " $SLEEP " seconds"&lt;br /&gt;  sleep $SLEEP&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-8318711769706468453?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/8318711769706468453/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=8318711769706468453' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8318711769706468453'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8318711769706468453'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2011/11/monitor-woot-off-bash-script.html' title='Monitor a Woot-Off! Bash Script'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2107736410796583099</id><published>2011-05-20T15:15:00.000-07:00</published><updated>2011-05-20T15:20:49.097-07:00</updated><title type='text'>A Subversion (SVN) Tutorial in a Bash Script</title><content type='html'>A simple bash script which creates a subversion (svn) repository and conducts some very simple operations on that repository. You can use this script to learn how subversion works, and how to work with subversion. The script will create a svn directory in your home directory, and trunk and branch (called 2xxx-01-01), directories. These can optionally be removed at the end of the script.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;REPODIR=$HOME/svn&lt;br /&gt;REPO=file://$REPODIR&lt;br /&gt;&lt;br /&gt;function svn_cmd() {&lt;br /&gt;  echo "Comment: " $1 &lt;br /&gt;  if [ -z "$3" ]&lt;br /&gt;  then&lt;br /&gt;    echo "Executing: " $2&lt;br /&gt;    $2 &lt;br /&gt;  else&lt;br /&gt;    echo $1 &gt; tmp.txt&lt;br /&gt;    echo "Executing: " $2 --file tmp.txt&lt;br /&gt;    $2 --file tmp.txt&lt;br /&gt;    rm -f tmp.txt&lt;br /&gt;  fi&lt;br /&gt;  echo ""&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if [ -d $REPODIR ] &lt;br /&gt;then&lt;br /&gt;  echo "Repository alread exists, skipping creation"&lt;br /&gt;  echo "(delete $HOME/svn if you want to start from scratch)"&lt;br /&gt;else&lt;br /&gt;  svn_cmd "Creating repository" "svnadmin create --fs-type fsfs $HOME/svn"&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;# create, remove, and create the trunk&lt;br /&gt;svn_cmd "What does the repository contain?" "svn ls $REPO"&lt;br /&gt;svn_cmd "Creating trunk dir" "svn mkdir $REPO/trunk" cmt &lt;br /&gt;svn_cmd "What does the repository contain?" "svn ls $REPO"&lt;br /&gt;svn_cmd "Removing trunk dir" "svn rm $REPO/trunk" cmt &lt;br /&gt;svn_cmd "What does the repository contain?" "svn ls $REPO"&lt;br /&gt;svn_cmd "Creating trunk dir" "svn mkdir $REPO/trunk" cmt&lt;br /&gt;svn_cmd "Checkout trunk" "svn co $REPO/trunk" &lt;br /&gt;&lt;br /&gt;cd trunk&lt;br /&gt;echo "line 1" &gt; test.txt&lt;br /&gt;&lt;br /&gt;# add a file, and a branch&lt;br /&gt;svn_cmd "Adding test.txt" "svn add test.txt" &lt;br /&gt;svn_cmd "Initial commit" "svn commit" cmt&lt;br /&gt;svn_cmd "Creating branches dir" "svn mkdir $REPO/branches" cmt&lt;br /&gt;svn_cmd "Create a branch" "svn copy $REPO/trunk $REPO/branches/2xxx-01-01" cmt&lt;br /&gt;&lt;br /&gt;cd ..&lt;br /&gt;&lt;br /&gt;# change the file on the branch&lt;br /&gt;svn_cmd "Checkout branch" "svn co $REPO/branches/2xxx-01-01" &lt;br /&gt;&lt;br /&gt;cd 2xxx-01-01&lt;br /&gt;echo "line 2" &gt;&gt; test.txt&lt;br /&gt;&lt;br /&gt;svn_cmd "Commit on the branch" "svn commit" cmt&lt;br /&gt;svn_cmd "Checking branch history" "svn log -v test.txt"&lt;br /&gt;&lt;br /&gt;cd ../trunk&lt;br /&gt;&lt;br /&gt;# check the history&lt;br /&gt;svn_cmd "Checking trunk history" "svn log -v test.txt"&lt;br /&gt;svn_cmd "Diff trunk and branch" "svn diff $REPO/trunk $REPO/branches/2xxx-01-01"&lt;br /&gt;&lt;br /&gt;# remove the trunk and branches directories&lt;br /&gt;svn_cmd "Removing trunk dir" "svn rm $REPO/trunk" cmt&lt;br /&gt;svn_cmd "Removing branches dir" "svn rm $REPO/branches" cmt&lt;br /&gt;svn_cmd "What does the repository contain?" "svn ls $REPO"&lt;br /&gt;&lt;br /&gt;cd ..&lt;br /&gt;&lt;br /&gt;echo "Enter y to: rm -rf svn trunk 2xxx-01-01"&lt;br /&gt;read a&lt;br /&gt;if [ "$a" = "y" ]; then&lt;br /&gt;  rm -rf $HOME/svn trunk 2xxx-01-01&lt;br /&gt;fi&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2107736410796583099?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2107736410796583099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2107736410796583099' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2107736410796583099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2107736410796583099'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2011/05/subversion-svn-tutorial-in-bash-script.html' title='A Subversion (SVN) Tutorial in a Bash Script'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-4818705346614500839</id><published>2011-03-22T15:23:00.000-07:00</published><updated>2011-03-22T15:32:27.563-07:00</updated><title type='text'>Script To Monitor Disk Space Use</title><content type='html'>Here is a simple script to monitor disk space usage in real time. I put this together because I am frequently frustrated to find that Windows (often during updates) or some other badly organized program has decided to use more disk space than my lowly laptop can provide. The Linux "df -h ." provides the necessary information, and it is a simple matter to put this command into a loop. For additional convenience, the script handles reporting to the screen with only carriage returns (no line feeds) so you won't chew up the windows complete contents with a long list of disk space information, no matter how long you run the script. Here is the typical output:&lt;pre&gt;&lt;br /&gt;ctrl-c to stop&lt;br /&gt;Filesystem            Size  Used Avail Use% Mounted on     Time &lt;br /&gt;C:/cygwin              75G   71G  4.3G  95% /      Tue Mar 22 15:28:29 PDT 2011&lt;br /&gt;&lt;/pre&gt; &lt;br /&gt;and the script itself:&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;#monitor disk space usage &lt;br /&gt;&lt;br /&gt;HEADING=`df -h . | head -1`&lt;br /&gt;echo "ctrl-c to stop"&lt;br /&gt;echo "$HEADING     Time "&lt;br /&gt;&lt;br /&gt;while true&lt;br /&gt;do&lt;br /&gt;  CURRENT=`df -h . | tail -1`&lt;br /&gt;  CURRENT=$CURRENT"      "`date`&lt;br /&gt;  echo -e -n "$CURRENT\r"&lt;br /&gt;  sleep 3&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now I can keep an eye on what Windows is subjecting me to, in approximately real time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-4818705346614500839?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/4818705346614500839/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=4818705346614500839' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4818705346614500839'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4818705346614500839'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2011/03/script-to-monitor-disk-space-use.html' title='Script To Monitor Disk Space Use'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-7492231174608571765</id><published>2011-03-08T15:01:00.000-08:00</published><updated>2011-03-08T15:35:43.911-08:00</updated><title type='text'>BBC Radio 4 and KIRN 670 am on an iPhone</title><content type='html'>I do not know much about iPhones, I have to confess. However, I recently wanted to arrange for KIRN 670 am (Persian radio from Los Angeles) and Radio 4 to be available on an iPhone. How should one proceed? Here is what I did.&lt;br /&gt;&lt;br /&gt;First, install the free FStream app for the iPhone. This seems to be a good, free, stream player. It also has record capabilities. Install FStream as you would any other app on the iPhone.&lt;br /&gt;&lt;br /&gt;Second, set up the channels that you want. In FStream, go to Favorites, click Edit, and click 'Add new webradio'. At this point, you need to provide a name for the channel that you are about to create. This is just some text, you can enter whatever you would like, e.g. Radio 4 or KIRN. Next you need to supply the URL of the channel. This is more difficult to determine. I found the Radio 4 URL by Googling (it is: http://bbc.co.uk/radio/listen/live/r4.asx) and the KIRN URL by using 'netstat -an' in Cygwin, when using the KIRN 670 am browser radio. (The KIRN URL is: http://174.36.167.220:9000). Enter the appropriate URL for your radio channel (or stream as it should probably be called) and save your new favorite.&lt;br /&gt;&lt;br /&gt;Then under play, click on the favorite you just entered, and you should find yourself listening to your newly entered channel. If you get the URL wrong for your channel, the error message won't be very clear. You'll see FStream trying to connect, but then the message 'Disconnected' will appear. If you see this, go back and check the URL in Favorites, you need to get every character exactly right.&lt;br /&gt;&lt;br /&gt;I have not checked the bill recently - so be careful with respect to your data usage. But, this should let you use your iPhone as a radio receiver for BBC Radio 4 and KIRN 670, what more could you possibly want?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-7492231174608571765?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/7492231174608571765/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=7492231174608571765' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7492231174608571765'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7492231174608571765'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2011/03/bbc-radio-4-and-kirn-670-am-on-iphone.html' title='BBC Radio 4 and KIRN 670 am on an iPhone'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-7499715635206683821</id><published>2010-08-01T18:31:00.000-07:00</published><updated>2010-08-01T18:33:41.914-07:00</updated><title type='text'>Fixing Non-Printing Characters in Cygwin Man Pages</title><content type='html'>After upgrading to Cygwin 1.7 (which fixes some annoying socket problems for me) one residual problem was the display of certain characters in man pages. As this problem seemed to effect the emboldening of options like '-d', this made man pages virtually unusable. So, I have now found, relatively empirically, that this can be fixed by adding the following lines to your ~/.profile file:&lt;code&gt;&lt;br /&gt;LANG=ISO-8859-1&lt;br /&gt;export LANG &lt;br /&gt;&lt;/code&gt;&lt;br /&gt;If you make this update, and open a new window, you should find that man pages return to their former, readable, glory.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-7499715635206683821?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/7499715635206683821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=7499715635206683821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7499715635206683821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7499715635206683821'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/08/fixing-non-printing-characters-in.html' title='Fixing Non-Printing Characters in Cygwin Man Pages'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-3317284931745585991</id><published>2010-07-24T20:30:00.000-07:00</published><updated>2010-07-24T20:45:01.679-07:00</updated><title type='text'>NVidia Not Microsoft (This Time!)</title><content type='html'>I was tortured today by a movie that I was trying to include in a PowerPoint 2007 presentation. This particular movie had a white background and looked just fine in the Windows Media Player. And it looked just fine when first inserted into PowerPoint 2007, but when clicked, it turned into a black rectangle. So, as one does, I Googled. I found that Microsoft, with all its extraordinary resources, does not know how to handle movie file names over 128 characters. So, I fiddled around with my directory structure, and suddenly I could actually see the movie. Better - but still tediously broken as the white background suddenly became grey when the movie was clicked.&lt;br /&gt;&lt;br /&gt;How frustrating. There are various solutions on the Web. I upgraded the Windows Media Player - that did nothing. I switched to using a VLC embedded active X control. That crashed PowerPoint and I lost some edits. Pretty typical mileage for those of us that have to suffer Microsoft's programming excellence. The visual effect was so bad, that I decided to try harder. I investigated changing the gamma and contrast of the movie. Very tedious - but no success. Then I decided to investigate my graphics card settings. I switched off hardware acceleration entirely - and the problem was gone. Now that is an easy solution - just turn off hardware acceleration before giving the presentation - I should be able to manage that.&lt;br /&gt;&lt;br /&gt;I am annoyed that I wasted so much time finding this small tweak - and hope that if you have the problem "white becomes gray" with an inserted video in a PowerPoint presentation - you'll try this solution early.&lt;br /&gt;&lt;br /&gt;I still hate PowerPoint 2007 - but on this occasion I must admit that most of the fault seems to lie with NVidia and their irritating attempts to improve the performance of their cheap graphics chipset in my Dell Latitude 830. (And yes, before you ask, I have upgraded the driver).&lt;br /&gt;&lt;br /&gt;Mind you - it would be good if Microsoft hadn't made PowerPoint 2007 completely awful with their silly ribbon bar fiasco, and wouldn't it be great if instead of messing up the interface, they had made it possible to use a file path of over 128 characters? But if you have the "white becomes gray" problem - just trying switching off hardware acceleration before you try anything else.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-3317284931745585991?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/3317284931745585991/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=3317284931745585991' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3317284931745585991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3317284931745585991'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/07/nvidia-not-microsoft-this-time.html' title='NVidia Not Microsoft (This Time!)'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-1907280976768137556</id><published>2010-06-29T09:21:00.000-07:00</published><updated>2010-06-29T09:29:45.973-07:00</updated><title type='text'>Archiving recently modified files</title><content type='html'>If you have recently added to your mp3 or jpg library and want to backup just new additions, here is the command to create a tar archive of files modified in the last 2 days.&lt;pre&gt;find . -mtime -2 -print | sed -r "s/([^a-zA-Z0-9])/\\\\\1/g" | xargs tar -rvf new.tar&lt;/pre&gt; The find command finds the files, the sed command escapes non-ascii characters, the xarg command fires up tar commands which append to the tar archive called 'new.tar'. The find option '-mtime -2' means files that have been modified in the last day days.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-1907280976768137556?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/1907280976768137556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=1907280976768137556' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1907280976768137556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1907280976768137556'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/06/archiving-recently-modified-files.html' title='Archiving recently modified files'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-7324217751423655476</id><published>2010-06-16T14:49:00.000-07:00</published><updated>2010-06-16T15:04:06.176-07:00</updated><title type='text'>Copying A Set of Files from one Machine to Another</title><content type='html'>How do you set about saving your many and varied jpg and mp3 files from an old machine?&lt;br /&gt;&lt;br /&gt;There are a variety of possible strategies. Assuming we neglect those that presume that you have your files in a carefully organized directory structure, or a nice secure backup, here is a pragmatic approach.&lt;br /&gt;&lt;br /&gt;First - make sure that you are using Linux, Mac OS X, or Cygwin on Windows. Then use find to collect a list of the files and their complete files names that you wish to save. For example, if you wanted to save all files with the suffix 'mp3', you would use:&lt;code&gt;&lt;br /&gt;&lt;br /&gt;find . -name "*.[mM][pP]3" -print &gt; mp3files.txt&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;That will give you a list of mp3 flies in the text file 'mp3files.txt'. Then go over to the machine that you wish to copy the files to, and use a command like this to collect the files on the other machine:&lt;code&gt;&lt;br /&gt;&lt;br /&gt;ssh User@1.2.3.4 "cd /cygdrive/c; tar -T mp3files.txt -cvf -" | tar xvof -&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;This command executes an ssh command to the machine that has the files, goes to the root directory, then tar's the files to standard out, making use of the mp3files.txt list. Meanwhile back on the receiving machine, tar reads standard in and extracts the files. Hence you create a faithful copy of the files and directory structure on the receiving machine.&lt;br /&gt;&lt;br /&gt;Why didn't I use rsync, you might inquire. Well - I tried and I found that rsync, on this particular version of Cygwin had a habit of hanging. Meanwhile tar and ssh do the job just fine.&lt;br /&gt;&lt;br /&gt;This method has advantages too. For example, if you want, you can remove files that you do not want to copy from mp3files.txt prior to doing the copy. So you have a high degree of control over what gets copied and what gets left behind.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-7324217751423655476?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/7324217751423655476/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=7324217751423655476' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7324217751423655476'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7324217751423655476'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/06/copying-set-of-files-from-one-machine.html' title='Copying A Set of Files from one Machine to Another'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2846833276386443644</id><published>2010-05-20T08:50:00.001-07:00</published><updated>2010-05-20T10:14:46.265-07:00</updated><title type='text'>Script to Convert WMA Files to MP3 Format</title><content type='html'>I changed work computers recently and on my new computer I needed to convert 16 CDs to .mp3 format. I didn't want to install new programs in the process, I just wanted to painlessly carry out the conversion. Putting the first CD into the drive led to Windows Media Player being launched and offering to 'Copy from CD' - so I accepted that offer. After a little whirring, what I ended up with was a new 'Unknown Artist', and the content of the CDs as '.wma' files under "My Documents\My Music". Well, not exactly perfect because I prefer .mp3 files (because these are the most likely to work in any given mp3 player). Looking around at the options in Windows Media Player interface indicated that Microsoft were being typically unhelpful in not allowing users to store their music in formats other than .wma. However, using the various tools added to this machine's cygwin to deal with video, etc., I found it was easy to carry out the conversion. The conversion is a little slow, so rather than navigate all those silly directory names (containing irritating spaces...) I wrote a short script which traverses the "My Music" folder and converts .wma files to their more useful .mp3 cousins. Here is the script.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;scandir () {&lt;br /&gt;for item in *&lt;br /&gt;do&lt;br /&gt;  if [ -f "$item" ] ; then &lt;br /&gt;    curdir=`pwd`&lt;br /&gt;    nfile=`expr $nfile + 1`    &lt;br /&gt;    EXT=`echo "$item" | rev | cut -c 1-3 | rev`&lt;br /&gt;    if [ $EXT = "wma" ]&lt;br /&gt;    then&lt;br /&gt;      ld2=`echo "$curdir"/"$item" | wc -c`&lt;br /&gt;      ld2=`expr $ld2 - 5`&lt;br /&gt;      echo "Operating on:"&lt;br /&gt;      echo "$curdir"/"$item"&lt;br /&gt;      NEWNAME=`echo "$curdir"/"$item" | cut -c-${ld2}`.mp3&lt;br /&gt;      echo "Will create:"&lt;br /&gt;      echo $NEWNAME&lt;br /&gt;      if [ -f "$NEWNAME" ]&lt;br /&gt;      then&lt;br /&gt;        echo "$NEWNAME exists - no action taken"&lt;br /&gt;      else&lt;br /&gt;        ffmpeg -i "$curdir"/"$item" tmp.wav&lt;br /&gt;        lame -h tmp.wav "$NEWNAME" &lt;br /&gt;        rm -f tmp.wav&lt;br /&gt;      fi&lt;br /&gt;    fi&lt;br /&gt;  elif [ -d "$item" ] ; then &lt;br /&gt;    cd "$item" &lt;br /&gt;    scandir &lt;br /&gt;    ndirs=`expr $ndirs + 1`    &lt;br /&gt;    cd ..&lt;br /&gt;  fi&lt;br /&gt;done &lt;br /&gt;}&lt;br /&gt;startdir=`pwd`&lt;br /&gt;ld1=`echo $startdir | wc -c`&lt;br /&gt;ld1=`expr $ld1 + 1`&lt;br /&gt;echo "Initial directory = $startdir"&lt;br /&gt;ndirs=0&lt;br /&gt;nfile=0&lt;br /&gt;scandir&lt;br /&gt;echo "Total directories searched = $ndirs"&lt;br /&gt;echo "Total files = $nfile"&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2846833276386443644?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2846833276386443644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2846833276386443644' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2846833276386443644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2846833276386443644'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/05/script-to-convert-wma-files-to-mp3.html' title='Script to Convert WMA Files to MP3 Format'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5290892942288908432</id><published>2010-05-18T13:00:00.000-07:00</published><updated>2010-05-18T13:07:06.681-07:00</updated><title type='text'>Diffing Directories Using SSH</title><content type='html'>I found myself needing to check the contents of directories across a network today. Finding myself inhibited by the rsync argument complexity - I quickly hooked up the following simple script. If you give the script the IP address of the remote machine (argument 1), and the absolute path on the remote machine (argument 2) to the directory you want to compare with the current working directory, the script lists the files in the remote directory and compares that list with the current working directory. Used in this mode, the script provides a quick sanity check that the directories are indeed equivalent. If you want a more careful check, supply a third argument, and the script uses cksum to compare every file's check sum. I kept the error checking deliberately light - in the interests of expediency and as an exercise for anyone that wants to improve the script.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh &lt;br /&gt;&lt;br /&gt;#provide a simple, remote directory diff&lt;br /&gt;&lt;br /&gt;echo "arg1 is the username and port": $1&lt;br /&gt;echo "arg2 is the remote directory, complete path": $2&lt;br /&gt;&lt;br /&gt;#a third argument means use cksums&lt;br /&gt;&lt;br /&gt;if [ $# -eq 2 ]&lt;br /&gt;then&lt;br /&gt;  ssh $1 "cd $2; ls -1a" &gt; /usr/tmp/dir1.txt&lt;br /&gt;  ls -1a &gt; /usr/tmp/dir2.txt&lt;br /&gt;else&lt;br /&gt;  ssh $1 "cd $2; find . -exec cksum {} \\;" | sort -k3 &gt; /usr/tmp/dir1.txt&lt;br /&gt;  find . -exec cksum {} \; | sort -k3 &gt; /usr/tmp/dir2.txt&lt;br /&gt;fi&lt;br /&gt;diff /usr/tmp/dir1.txt /usr/tmp/dir2.txt&lt;br /&gt;ret=$?&lt;br /&gt;if [ $ret -eq 0 ]&lt;br /&gt;then&lt;br /&gt;  echo "The directories are identical"&lt;br /&gt;fi&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5290892942288908432?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5290892942288908432/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5290892942288908432' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5290892942288908432'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5290892942288908432'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/05/diffing-directories-using-ssh.html' title='Diffing Directories Using SSH'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2196028888972674385</id><published>2010-04-21T19:17:00.001-07:00</published><updated>2010-04-21T19:21:36.475-07:00</updated><title type='text'>rsync with a Non-Standard Port</title><content type='html'>Well, I found this slightly unintuitive. If you want rsync to use a specific non-standard port, and you don't have the rsync daemon running, you need to force ssh to use this port, like so:&lt;pre&gt;&lt;br /&gt;rsync -ar --partial --progress --rsh='ssh -p 12345' username@xyz.abc.com:/path/to/your/files .&lt;/pre&gt;&lt;br /&gt;(or you are going to get errors referring to port 22 despite your best efforts to avoid this port with --port=12345).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2196028888972674385?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2196028888972674385/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2196028888972674385' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2196028888972674385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2196028888972674385'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/04/rsync-with-non-standard-port.html' title='rsync with a Non-Standard Port'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-318951950408991505</id><published>2010-04-02T13:37:00.000-07:00</published><updated>2010-04-02T13:41:44.533-07:00</updated><title type='text'>Robust File Transfers With Rsync</title><content type='html'>Here is a useful command which allows you to copy a file from a server to your machine or vice versa. Instead of using scp it uses rsync. The advantage of rsync is that if your connection breaks during the transfer, and you are left with a partial file, when you restart the command, rsync will pick up from where it left off. And this, of course, will save you time.&lt;pre&gt;&lt;br /&gt;rsync --partial --progress --rsh=ssh user@yourserver.xyz.com:/home/path/to/file.zip .&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-318951950408991505?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/318951950408991505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=318951950408991505' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/318951950408991505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/318951950408991505'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/04/robust-file-transfers-with-rsync.html' title='Robust File Transfers With Rsync'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-8422212007070690852</id><published>2010-03-27T10:08:00.000-07:00</published><updated>2010-03-27T10:24:07.875-07:00</updated><title type='text'>Upgrading From Cygwin 1.5 to Cygwin 1.7.2-2</title><content type='html'>I had an interesting experience recently - my trusty Dell Latitude D610 developed a motherboard problem - and I needed to rapidly transfer my work to a Dell Latitude D830 running Windows XP.&lt;br /&gt;&lt;br /&gt;Now, I had installed Cygwin 1.5 on the D830 a year or so ago - and had seen that it had various socket related problems. I had got around to fixing such issues for rsync by rebuilding the executable with 'socket pairs' (whatever they are) turned off. However, many other similar problems existed such as lock ups with web servers running under Cygwin, and even intermittent hangs with wget. While this wasn't my main machine - I didn't need to solve them - but now I did.&lt;br /&gt;&lt;br /&gt;Looking at the Cygwin site indicated that an upgrade to Cygwin 1.7 would be the best solution.&lt;br /&gt;&lt;br /&gt;So, I loosed off the Cygwin setup.exe program - as usual with some trepidation. This did its normal slow and mysterious thing, complained about various files being locked (I had left some Cygwin services running - oops), and eventually left me with the usual Cygwin shortcut on my desk top. (Additionally, there were three annoying desktop icons for a program called Singular, something mathematical, and they were rapidly deleted - who on earth thought that every Cygwin installation should have those icons dumped on the Desktop!).&lt;br /&gt;&lt;br /&gt;However, there was a problem. This did not seem to be caused by file mounts, as advertised by the Cygwin site. Instead, starting a Cygwin shell resulted in a hung rxvt window. Poking around on the web provided no clues. However, I empirically found that changing my Cygwin.bat file to the following caused normal service to return - the necessary change from version 1.5 was the inclusion of the complete path for the bash shell.&lt;pre&gt;&lt;br /&gt;@echo off&lt;br /&gt;C:&lt;br /&gt;chdir C:\cygwin\bin&lt;br /&gt;rxvt +rv -sr -sl 10000 -bg White -fg Black -fn 'Courier New-18' -e /usr/bin/bash --login -i&lt;br /&gt;pause&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;And with that, everything was back to normal. And so far, no tedious socket related hangs have occurred.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-8422212007070690852?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/8422212007070690852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=8422212007070690852' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8422212007070690852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8422212007070690852'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/03/upgrading-from-cygwin-15-to-cygwin-172.html' title='Upgrading From Cygwin 1.5 to Cygwin 1.7.2-2'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2430127850716653296</id><published>2009-12-25T15:41:00.000-08:00</published><updated>2009-12-26T14:43:09.200-08:00</updated><title type='text'>Did Keith Briffa Leak the Climategate Documents?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_T92Z7M_4jDc/SzaRbRPlRXI/AAAAAAAAAO4/9osggVVUy08/s1600-h/GlobalTemps.PNG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 203px;" src="http://3.bp.blogspot.com/_T92Z7M_4jDc/SzaRbRPlRXI/AAAAAAAAAO4/9osggVVUy08/s320/GlobalTemps.PNG" border="0" alt=""id="BLOGGER_PHOTO_ID_5419679099258226034" /&gt;&lt;/a&gt;&lt;br /&gt;I had a comment on one of my posts on the climategate email archive, saying that the messages weren't leaked, they were hacked. If you were the person that left that message, apologies - it looks as though I accidentally deleted it.&lt;br /&gt;&lt;br /&gt;Here's my view - and this is very much my view.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I do not think that climategate was caused by hackers, or involved theft. Here's why.&lt;br /&gt;&lt;br /&gt;The chances of teams of hackers monitoring the email to and from the CRU for 12 years are very low. During that time, the nature of the CRU servers undoubtedly changed several times, the 'hackers' would have had to gain access to each new technology and network setup, and would have had to have invested vast amounts of time in assembling a coherent storyline in the emails. How could anyone have intercepted all of that information, all the junk mail, all of the routine academic work, and then processed that into a coherent story, specially timed to coincide with a climate meeting in Copenhagen? Simply using up that amount of network bandwidth alone would have led to detection years ago. &lt;br /&gt;&lt;br /&gt;If the hackers were supposed to have downloaded a vast amount of email and cherry picked the resulting set in a short period of time, how can one explain the more than a decade of emails which are in the archive? No University IT department would keep decades of emails on its server, and to achieve this feat, the hackers would have needed to gain access to large numbers of machines, probably many laptops, kept in different locations and used by different people. No, this too is highly improbable.&lt;br /&gt;&lt;br /&gt;And if the 'hackers' wanted to change the course of history, the time to do that was in the 1990s, when showing the 'hide the decline' plot and the 'hockey stick' to be the frauds that they were would have stood a chance of altering major climate legislation. By the time of the Copenhagen meeting, the laws were all in place, and the majority of politicians and voters believed that CO2 taxes were vital to avoid imminent disaster. &lt;br /&gt;&lt;br /&gt;So, no, the hacker scenario is an obvious smokescreen. Similar to the comments seen in the media about the 'trick' being an intellectual device, and 'hiding the decline' being taken out of context. &lt;br /&gt;&lt;br /&gt;By the way, if you take two diverging quantities, and replace one with the other, then plot the result against time, it is not surprising that the original divergence has disappeared. The 'hide the decline' act was so grossly unscientific and cynically manipulative that every scientist in the world should have, like George Monbiot, called for the resignation of the scientist involved. &lt;br /&gt;&lt;br /&gt;But as it turned out, most scientists did not read those emails, as the media did not report them. So, the climatologist strategy of saying 'nothing to worry about here - just move on' appears to be working just fine.&lt;br /&gt;&lt;br /&gt;But returning to climategate itself. I think that the leak scenario is far more likely. With a leak the long time line is explained. An insider decided to collect some information to protect himself or herself should things get too bad, or his or her conscience become too taxed. That person was copied on a large amount of the email. That person also had access to other people's email, through loosely protected email servers over time. This was internal access within the CRU itself, not hacking.&lt;br /&gt;&lt;br /&gt;Finally the source of the leak had the necessary experience to determine which elements of the internal CRU dialog should be released. So that person was not an IT person or an administrative member of staff, that person knew the details of the climatology in question.&lt;br /&gt;&lt;br /&gt;If you look at the messages, it is clear that Keith Briffa is the majority recipient or a sender of the the messages. Keith Briffa does not engage in any of the 'unfortunate' behavior patterns documented in the messages. In fact, Keith is shown being shoved along in conducting his research to achieve the (pre-)ordained answer.&lt;br /&gt;&lt;br /&gt;So I think that the emails were leaked by Keith Briffa. As he was a CRU official, and the emails were the communications of public servants, conducting research using public data, the release of the messages was not theft or hacking but the action of a whistleblower.&lt;br /&gt;&lt;br /&gt;It will be interesting to see what emerges from the investigation which is ongoing at the University of East Anglia.&lt;br /&gt;&lt;br /&gt;There will surely be a strong temptation for the University to continue with the 'nothing to see, please move along' messaging which is currently being used.&lt;br /&gt;&lt;br /&gt;But, just as with Watergate, at some point the source of the information will be revealed. It will be interesting to see whether my guess has any validity!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2430127850716653296?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2430127850716653296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2430127850716653296' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2430127850716653296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2430127850716653296'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/12/did-keith-briffa-leak-climategate.html' title='Did Keith Briffa Leak the Climategate Documents?'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_T92Z7M_4jDc/SzaRbRPlRXI/AAAAAAAAAO4/9osggVVUy08/s72-c/GlobalTemps.PNG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-6679382695765906071</id><published>2009-12-14T10:06:00.001-08:00</published><updated>2009-12-14T13:42:52.919-08:00</updated><title type='text'>Climategate-UK Science Community Intersection</title><content type='html'>&lt;p&gt;In the light of the Climategate leak, I was intrigued to read the following statement from UK scientists:&lt;/p&gt;&lt;p&gt;From: &lt;a href="http://www.timesonline.co.uk/tol/news/environment/article6950783.ece"&gt;http://www.timesonline.co.uk/tol/news/environment/article6950783.ece&lt;/a&gt;&lt;/p&gt;&lt;p&gt;We, members of the UK science community, have the utmost confidence in the observational evidence for global warming and the scientific basis for concluding that it is due primarily to human activities. The evidence and the science are deep and extensive. They come from decades of painstaking and meticulous research, by many thousands of scientists across the world who adhere to the highest levels of professional integrity. That research has been subject to peer review and publication, providing traceability of the evidence and support for the scientific method. The science of climate change draws on fundamental research from an increasing number of disciplines, many of which are represented here. As professional scientists, from students to senior professors, we uphold the findings of the IPCC Fourth Assessment Report, which concludes that "Warming of the climate system is unequivocal" and that "Most of the observed increase in global average temperatures since the mid-20th century is very likely due to the observed increase in anthropogenic greenhouse gas concentrations".&lt;/p&gt;&lt;p&gt;So, I wondered, how many of the 1702 scientist signers are referred to in the CRU archive?&lt;/p&gt;&lt;p&gt;I wrote a little script to do the analysis, this just reads the names from the list of signers, and uses grep to find exact matches in the CRU email folder. Here is the script:&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;awk '{FS="\t";sub("Dr ", "");sub("Dr. ", "");sub("Prof ", ""); print $1;}' \&lt;br /&gt;uk_names.csv | while read FULLNAME&lt;br /&gt;do&lt;br /&gt;FULLNAME=`echo $FULLNAME | sed 's/,//g'`&lt;br /&gt;echo -n $FULLNAME&lt;br /&gt;grep "$FULLNAME" *.txt &gt; /dev/null&lt;br /&gt;ret=$?&lt;br /&gt;if [ $ret -eq 0 ]&lt;br /&gt;then&lt;br /&gt;FILENAMES=`grep -l "$FULLNAME" *.txt`&lt;br /&gt;echo -e -n "," $FILENAMES&lt;br /&gt;else&lt;br /&gt;echo -e -n ", no exact match"&lt;br /&gt;fi&lt;br /&gt;SURNAME=`echo $FULLNAME | awk '{print $(NF)}'`&lt;br /&gt;grep "$SURNAME" *.txt &gt; /dev/null&lt;br /&gt;ret=$?&lt;br /&gt;if [ $ret -eq 0 ]&lt;br /&gt;then&lt;br /&gt;FILENAMES=`grep -l -i "$SURNAME" *.txt`&lt;br /&gt;echo -e -n ",?" $FILENAMES&lt;br /&gt;fi&lt;br /&gt;echo ""&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;The script assumes that you have a file called 'uk_names.csv' containing the names of the scientists in the same directory as the mail messages.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The conclusion is that at least 59 of the signers, mainly senior people, judging by their titles, are referenced in the CRU climategate emails. These are just the perfect matches to people's full names, there are likely many more matches if you consider different ways of handling initials, etc.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Perhaps the instigator of this 'science by consensus' message, sent out a message to fellow leaders, asking for as many names as possible to be rounded up, to sign.&lt;/p&gt;&lt;p&gt;What should one conclude from this? This group of respected scientists see no cause for scientific concern. Indeed, they are absolutely confident in the scientific integrity of peer review, etc. Well, to paraphrase Mandy Rice-Davies, 'They would be, wouldn't they'!&lt;/p&gt;&lt;p&gt;For reference I have posted the output of the script here: &lt;a href="http://www.scribd.com/doc/24090185/UkNamesCRUMailIntersection"&gt;http://www.scribd.com/doc/24090185/UkNamesCRUMailIntersection&lt;/a&gt;&lt;/p&gt;&lt;p&gt;And here are some of the names on the list of signers and some of the files from the CRU leak which contain their names:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Julia Slingo, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;John Mitchell, &lt;a href="http://junkscience.com/FOIA/mail/0925507395.txt"&gt;0925507395.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0998926751.txt"&gt;0998926751.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157473748.txt"&gt;1157473748.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167928837.txt"&gt;1167928837.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206628118.txt"&gt;1206628118.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237480766.txt"&gt;1237480766.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255095172.txt"&gt;1255095172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255100876.txt"&gt;1255100876.txt&lt;/a&gt;&lt;br /&gt;Pete Smith, &lt;a href="http://junkscience.com/FOIA/mail/0942953601.txt"&gt;0942953601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0984799044.txt"&gt;0984799044.txt&lt;/a&gt;&lt;br /&gt;John Waterhouse, &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1111085657.txt"&gt;1111085657.txt&lt;/a&gt;&lt;br /&gt;Gareth Jones, &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt;&lt;br /&gt;Martin Widmann, &lt;a href="http://junkscience.com/FOIA/mail/0994187098.txt"&gt;0994187098.txt&lt;/a&gt;&lt;br /&gt;Jo House, &lt;a href="http://junkscience.com/FOIA/mail/0984799044.txt"&gt;0984799044.txt&lt;/a&gt;&lt;br /&gt;Colin Prentice, &lt;a href="http://junkscience.com/FOIA/mail/0848695896.txt"&gt;0848695896.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939437868.txt"&gt;0939437868.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0942953601.txt"&gt;0942953601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0984799044.txt"&gt;0984799044.txt&lt;/a&gt;&lt;br /&gt;Paul Valdes, &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0912095517.txt"&gt;0912095517.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929392417.txt"&gt;0929392417.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106346062.txt"&gt;1106346062.txt&lt;/a&gt;&lt;br /&gt;Eric W Wolff, &lt;a href="http://junkscience.com/FOIA/mail/1137184681.txt"&gt;1137184681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;Andy McLeod, &lt;a href="http://junkscience.com/FOIA/mail/1038859764.txt"&gt;1038859764.txt&lt;/a&gt;&lt;br /&gt;Gabi Hegerl, &lt;a href="http://junkscience.com/FOIA/mail/1036182485.txt"&gt;1036182485.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067194064.txt"&gt;1067194064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067450707.txt"&gt;1067450707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1092167224.txt"&gt;1092167224.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109684442.txt"&gt;1109684442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123163394.txt"&gt;1123163394.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155497558.txt"&gt;1155497558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158680269.txt"&gt;1158680269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200059003.txt"&gt;1200059003.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt;&lt;br /&gt;Sandy Tudhope, &lt;a href="http://junkscience.com/FOIA/mail/1106946949.txt"&gt;1106946949.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1258039134.txt"&gt;1258039134.txt&lt;/a&gt;&lt;br /&gt;Simon Tett, &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906042912.txt"&gt;0906042912.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929392417.txt"&gt;0929392417.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1001695888.txt"&gt;1001695888.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053457075.txt"&gt;1053457075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059664704.txt"&gt;1059664704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059674663.txt"&gt;1059674663.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1060021835.txt"&gt;1060021835.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1107191864.txt"&gt;1107191864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1124994521.txt"&gt;1124994521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt;&lt;br /&gt;Peter Cox, &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925507395.txt"&gt;0925507395.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt;&lt;br /&gt;Chris Turney, &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt;&lt;br /&gt;Richard Jones, &lt;a href="http://junkscience.com/FOIA/mail/0968705882.txt"&gt;0968705882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968774000.txt"&gt;0968774000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968941827.txt"&gt;0968941827.txt&lt;/a&gt;&lt;br /&gt;Sir John Houghton, &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt;&lt;br /&gt;Stephen Sitch, &lt;a href="http://junkscience.com/FOIA/mail/0942953601.txt"&gt;0942953601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0984799044.txt"&gt;0984799044.txt&lt;/a&gt;&lt;br /&gt;Cath Senior, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;David Parker, &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1097159316.txt"&gt;1097159316.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101999700.txt"&gt;1101999700.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103647149.txt"&gt;1103647149.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1113941558.txt"&gt;1113941558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168288278.txt"&gt;1168288278.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177158252.txt"&gt;1177158252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177163150.txt"&gt;1177163150.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182346299.txt"&gt;1182346299.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1184779319.txt"&gt;1184779319.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206549942.txt"&gt;1206549942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233245601.txt"&gt;1233245601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233249393.txt"&gt;1233249393.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234277656.txt"&gt;1234277656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234302123.txt"&gt;1234302123.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt;&lt;br /&gt;David Sexton, &lt;a href="http://junkscience.com/FOIA/mail/1176746137.txt"&gt;1176746137.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199466465.txt"&gt;1199466465.txt&lt;/a&gt;&lt;br /&gt;Gareth Jones, &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt;&lt;br /&gt;Peter Stott, &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200059003.txt"&gt;1200059003.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1207158227.txt"&gt;1207158227.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt;&lt;br /&gt;Vicky Pope, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;James Murphy, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;Keith Williams, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;Olivier Boucher, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;Peter Thorne, &lt;a href="http://junkscience.com/FOIA/mail/1094483447.txt"&gt;1094483447.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112622624.txt"&gt;1112622624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1113941558.txt"&gt;1113941558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1191550129.txt"&gt;1191550129.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196882357.txt"&gt;1196882357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209143958.txt"&gt;1209143958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211911286.txt"&gt;1211911286.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212088415.txt"&gt;1212088415.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234277656.txt"&gt;1234277656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234302123.txt"&gt;1234302123.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242132884.txt"&gt;1242132884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242136391.txt"&gt;1242136391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1245773909.txt"&gt;1245773909.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1258053464.txt"&gt;1258053464.txt&lt;/a&gt;&lt;br /&gt;Philip Brohan, &lt;a href="http://junkscience.com/FOIA/mail/1060021835.txt"&gt;1060021835.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146252894.txt"&gt;1146252894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153424011.txt"&gt;1153424011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt;&lt;br /&gt;Chris Folland, &lt;a href="http://junkscience.com/FOIA/mail/0925829267.txt"&gt;0925829267.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926087421.txt"&gt;0926087421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969308584.txt"&gt;0969308584.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970664328.txt"&gt;0970664328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101999700.txt"&gt;1101999700.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103647149.txt"&gt;1103647149.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1111417712.txt"&gt;1111417712.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167928837.txt"&gt;1167928837.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168356704.txt"&gt;1168356704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199984805.txt"&gt;1199984805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1207158227.txt"&gt;1207158227.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226500291.txt"&gt;1226500291.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231166089.txt"&gt;1231166089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231190304.txt"&gt;1231190304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231254297.txt"&gt;1231254297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231279297.txt"&gt;1231279297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254751382.txt"&gt;1254751382.txt&lt;/a&gt;&lt;br /&gt;Roger Saunders, &lt;a href="http://junkscience.com/FOIA/mail/1234277656.txt"&gt;1234277656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234302123.txt"&gt;1234302123.txt&lt;/a&gt;&lt;br /&gt;Simon Brown, &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065128595.txt"&gt;1065128595.txt&lt;/a&gt;&lt;br /&gt;Tim Johns, &lt;a href="http://junkscience.com/FOIA/mail/1231166089.txt"&gt;1231166089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231190304.txt"&gt;1231190304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231254297.txt"&gt;1231254297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231279297.txt"&gt;1231279297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt;&lt;br /&gt;Craig Wallace, &lt;a href="http://junkscience.com/FOIA/mail/0925823304.txt"&gt;0925823304.txt&lt;/a&gt;&lt;br /&gt;John Shepherd, &lt;a href="http://junkscience.com/FOIA/mail/0930934311.txt"&gt;0930934311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0937153268.txt"&gt;0937153268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951431850.txt"&gt;0951431850.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0959187643.txt"&gt;0959187643.txt&lt;/a&gt;&lt;br /&gt;Jim Hall, &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211491089.txt"&gt;1211491089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt;&lt;br /&gt;Mark New, &lt;a href="http://junkscience.com/FOIA/mail/1035838207.txt"&gt;1035838207.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt;&lt;br /&gt;Myles Allen, &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970664328.txt"&gt;0970664328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1008167369.txt"&gt;1008167369.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018045075.txt"&gt;1018045075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018889093.txt"&gt;1018889093.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018893474.txt"&gt;1018893474.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123163394.txt"&gt;1123163394.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163715685.txt"&gt;1163715685.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163771694.txt"&gt;1163771694.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1164120712.txt"&gt;1164120712.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200059003.txt"&gt;1200059003.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255318331.txt"&gt;1255318331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352257.txt"&gt;1255352257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352444.txt"&gt;1255352444.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255496484.txt"&gt;1255496484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255523796.txt"&gt;1255523796.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255530325.txt"&gt;1255530325.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255532032.txt"&gt;1255532032.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255550975.txt"&gt;1255550975.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255553034.txt"&gt;1255553034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255558867.txt"&gt;1255558867.txt&lt;/a&gt;&lt;br /&gt;William Ingram, &lt;a href="http://junkscience.com/FOIA/mail/0925507395.txt"&gt;0925507395.txt&lt;/a&gt;&lt;br /&gt;Peter Thorne, &lt;a href="http://junkscience.com/FOIA/mail/1094483447.txt"&gt;1094483447.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112622624.txt"&gt;1112622624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1113941558.txt"&gt;1113941558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1191550129.txt"&gt;1191550129.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196882357.txt"&gt;1196882357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209143958.txt"&gt;1209143958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211911286.txt"&gt;1211911286.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212088415.txt"&gt;1212088415.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234277656.txt"&gt;1234277656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234302123.txt"&gt;1234302123.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242132884.txt"&gt;1242132884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242136391.txt"&gt;1242136391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1245773909.txt"&gt;1245773909.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1258053464.txt"&gt;1258053464.txt&lt;/a&gt;&lt;br /&gt;Maria Noguer, &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0962366892.txt"&gt;0962366892.txt&lt;/a&gt;&lt;br /&gt;Jonathan Gregory, &lt;a href="http://junkscience.com/FOIA/mail/0908385907.txt"&gt;0908385907.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;Nigel Arnell, &lt;a href="http://junkscience.com/FOIA/mail/0937153268.txt"&gt;0937153268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0998926751.txt"&gt;0998926751.txt&lt;/a&gt;&lt;br /&gt;Paul Hardaker, &lt;a href="http://junkscience.com/FOIA/mail/1233586975.txt"&gt;1233586975.txt&lt;/a&gt;&lt;br /&gt;Martin Juckes, &lt;a href="http://junkscience.com/FOIA/mail/1123163394.txt"&gt;1123163394.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163715685.txt"&gt;1163715685.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163771694.txt"&gt;1163771694.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1164059987.txt"&gt;1164059987.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1164120712.txt"&gt;1164120712.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1183753398.txt"&gt;1183753398.txt&lt;/a&gt;&lt;br /&gt;Tom Webb, &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt;&lt;br /&gt;Ian Woodward, &lt;a href="http://junkscience.com/FOIA/mail/0848695896.txt"&gt;0848695896.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0878654527.txt"&gt;0878654527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0942953601.txt"&gt;0942953601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0984799044.txt"&gt;0984799044.txt&lt;/a&gt;&lt;br /&gt;David Webb, &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt;&lt;br /&gt;Rob Wilson, &lt;a href="http://junkscience.com/FOIA/mail/1053610494.txt"&gt;1053610494.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1098388401.txt"&gt;1098388401.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121869083.txt"&gt;1121869083.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1128000000.txt"&gt;1128000000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133366680.txt"&gt;1133366680.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140554230.txt"&gt;1140554230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141068509.txt"&gt;1141068509.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163715685.txt"&gt;1163715685.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163771694.txt"&gt;1163771694.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1258039134.txt"&gt;1258039134.txt&lt;/a&gt;&lt;br /&gt;Davies Siwan, &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt;&lt;br /&gt;Roger Street, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;Chronis Tzedakis, &lt;a href="http://junkscience.com/FOIA/mail/1115843111.txt"&gt;1115843111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1115887684.txt"&gt;1115887684.txt&lt;/a&gt;&lt;br /&gt;Andrew Manning, &lt;a href="http://junkscience.com/FOIA/mail/1254832684.txt"&gt;1254832684.txt&lt;/a&gt;&lt;br /&gt;Anthony Foot, &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt;&lt;br /&gt;Clare Goodess, &lt;a href="http://junkscience.com/FOIA/mail/1038353689.txt"&gt;1038353689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057944829.txt"&gt;1057944829.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087589697.txt"&gt;1087589697.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211462932.txt"&gt;1211462932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211491089.txt"&gt;1211491089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1223915581.txt"&gt;1223915581.txt&lt;/a&gt;&lt;br /&gt;Tom Melvin, &lt;a href="http://junkscience.com/FOIA/mail/1103828684.txt"&gt;1103828684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1132094873.txt"&gt;1132094873.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141267802.txt"&gt;1141267802.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146252894.txt"&gt;1146252894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1183499559.txt"&gt;1183499559.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1253561029.txt"&gt;1253561029.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254230232.txt"&gt;1254230232.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254323180.txt"&gt;1254323180.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254345174.txt"&gt;1254345174.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256353124.txt"&gt;1256353124.txt&lt;/a&gt;&lt;br /&gt;Rachel Warren, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;Simon Busby, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-6679382695765906071?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/6679382695765906071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=6679382695765906071' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6679382695765906071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6679382695765906071'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/12/climategate-uk-science-community.html' title='Climategate-UK Science Community Intersection'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5798075772775251133</id><published>2009-12-09T20:23:00.000-08:00</published><updated>2009-12-09T20:33:58.886-08:00</updated><title type='text'>Deleting Irritating Files on Windows XP</title><content type='html'>Having taken a look at the CRU FOI2009.zip archive, I found two irritating files that I could not delete. These were flxlist. and  sfwxlist. in the FOIA/documents/yamal folder. These have something to do with paleoclimatology - a field which most of the interweb now knows well.&lt;br /&gt;&lt;br /&gt;Windows XP happily gave me a baffling 'Cannot delete file: Cannot read from source file or disk.' message box. (As helpful as usual).&lt;br /&gt;&lt;br /&gt;The solution to this problem is to prepend \\? to the file name that you are about to delete (using cmd.exe, of course, there is no known solution from the graphical interface). E.g.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;del "\\?\C:\Documents and Settings\User\Desktop\FOIA\documents\yamal\flxlist."&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;The magic \\? switches off some form of Windows XP file name sanity checking, allowing you delete files which Windows XP thinks do not have valid names (although, of course, Windows XP did allow the creation of the files in the first place). Problem solved!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5798075772775251133?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5798075772775251133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5798075772775251133' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5798075772775251133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5798075772775251133'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/12/deleting-irritating-files-on-windows-xp.html' title='Deleting Irritating Files on Windows XP'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-7310811942270330095</id><published>2009-10-27T19:39:00.000-07:00</published><updated>2009-10-27T20:06:12.878-07:00</updated><title type='text'>Windows XP Blank Screen After XP Logo (Dell Latitude D830)</title><content type='html'>I thought I would record the following experience in case it helps others who encounter the same problem. I have a Dell Latitude D830 laptop and generally leave it in standby mode at the end of the day. This uses little power and makes the slow Windows XP reboot unnecessary. However, last week I was away from the office and the machine in standby mode, and detached from the power supply, apparently ran out of battery power. When I came to power up the machine, rather than springing back from standby mode, it began a normal reboot sequence. However, this reboot sequence was far from normal in its ending. After the Windows XP logo appeared with its blue progress bar, the screen suddenly went completely black.&lt;br /&gt;&lt;br /&gt;Very strange and unsatisfactory behavior! Googling through the various sites discussing this topic, I quickly came to appreciate that there are a multitude of ways in which this tedious effect can be achieved. Rebooting in safe mode or VGA mode worked fine, but any attempt to get to the normal screen resolution resulted in the blank screen after the Windows XP logo part of the reboot sequence.&lt;br /&gt;&lt;br /&gt;To solve the problem I tried rebooting in safe mode and reloading graphics drivers as originally downloaded from Dell. This did not solve the problem. I then tried just using the machine with remote desktop, after booting it into VGA mode. This worked well, but wasn't quite what I was used to, and certainly did not constitute a fix, and so I Googled further. I tried 'repairing' the operating system using a Windows XP disk. (That was a mistake - see below). Eventually, I ran into a site which described how someone logged onto the machine, although the screen was black. So - having nothing to lose, I tried that. I typed username - and tab - and password a few times. Something in the blankness was happening as their were some typical Windows XP clonking sounds emitted from the machine. Then I must have hit the correct sequence, as the display suddenly lit up, and carried on working as though nothing had ever happened.&lt;br /&gt;&lt;br /&gt;Of course, the Windows XP repair attempt had the effect of removing all the vital operating system updates that had been put on the machine. So, a large Windows update was then required to restore SP3 and all the other updates thought to be vital to my security.&lt;br /&gt;&lt;br /&gt;So, the conclusions are firstly that Windows XP and standby mode can be fragile under some rare circumstances. Secondly, curing tedious Windows XP start up problems can be mysterious. I speculate that my habit of putting the machine into standby mode may be quite risky when perilously short of diskspace. Probably at some point the standby mode program decides that the battery will expire soon and decides to write everything out to disk, but without checking properly that there is enough diskspace to save everything. Then, somehow or other, some special state for the graphics card of blankness (because the lid is closed) is saved, and the machine crashes. This state will be overwritten the next time someone logs on successfully. However, the next logon is effectively prohibited by the fact that the screen is blank.&lt;br /&gt;&lt;br /&gt;Hence, users are forced into the rather tedious process of either wiping the machine and starting again. Or buying another machine and making another donation to Microsoft in the process for another, equally buggy, operating system.&lt;br /&gt;&lt;br /&gt;But - if you have a blank screening Windows XP laptop, that almost boots but not quite, try typing in your credentials at what should be the log in screen. You may find that this clears the problem - and although it is not as satisfying as repairing the operating system, replacing graphics drivers, or buying a new machine, it may just get you going again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-7310811942270330095?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/7310811942270330095/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=7310811942270330095' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7310811942270330095'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7310811942270330095'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/10/windows-xp-blank-screen-after-xp-logo.html' title='Windows XP Blank Screen After XP Logo (Dell Latitude D830)'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2544087643584420963</id><published>2009-10-13T16:45:00.000-07:00</published><updated>2009-10-13T16:48:21.979-07:00</updated><title type='text'>Extracting the Audio Portion of MP4 to MP3</title><content type='html'>If you are ever in need of just the audio portion of an .mp4 file, here are two commands and a loop to put the audio into an .mp3 file.&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;for file in *.mp4&lt;br /&gt;do&lt;br /&gt;  echo $file&lt;br /&gt;  "/cygdrive/c/Program Files/MPlayer/mplayer.exe" -ao pcm $file \&lt;br /&gt;  -ao pcm:file=tmp.wav&lt;br /&gt;  lame -h tmp.wav `basename $file .mp4`.mp3&lt;br /&gt;done &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;(You may need to customize the path to mplayer.exe. I used an explicit path as I was on Windows and needed to pull in a specific cygwin dll for this executable. You probably won't have this issue.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2544087643584420963?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2544087643584420963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2544087643584420963' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2544087643584420963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2544087643584420963'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/10/extracting-audio-portion-of-mp4-to-mp3.html' title='Extracting the Audio Portion of MP4 to MP3'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5771770208297697726</id><published>2009-09-21T09:38:00.000-07:00</published><updated>2009-09-21T09:48:03.031-07:00</updated><title type='text'>Problems with a 4 GB Kingston Data Traveler</title><content type='html'>I have been having tedious problems with a 4 GB Kingston Data Traveler. I couldn't find much information on the web about these problems - so I thought I would describe what I have seen here. If anyone has a solution please let me know in comments. If you are having similar problems, perhaps you can learn from what I have seen (and can avoid wasting your time trying to get the drive to work).&lt;br /&gt;&lt;br /&gt;I bought 4 GB Kingston Data Traveler for about 12 dollars from Fry's Electronics several months ago. The drive never worked properly - files were getting lost and corrupted from the file system. So, I sent it back to Kingston for replacement. The replacement drive showed up last week. Soon after I plugged that into a Windows XP machine, I found that the complete USB controller for that machine had shut down. That is a tedious event. You need to power down the machine completely, in order to power down the internal USB hub, in order to get everything to reset. I looked around on the web - endlessly and made various attempts to change drivers and so on. But to no avail. So, I am inclined to give up with this drive. It just isn't worth the time and effort trying to make it work as advertised. Every other USB drive and device I have ever used with this machine has worked perfectly. The USB drive in question is a 4 GB Kingston Data Traveler USB stick. The computer concerned is a Windows XP/SP3 Dell Latitude D610. &lt;br /&gt;&lt;br /&gt;If you know how to get the Data Traveler USB drive to behave properly - or recognize the symptoms, please let me know!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5771770208297697726?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5771770208297697726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5771770208297697726' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5771770208297697726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5771770208297697726'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/09/problems-with-4-gb-kingston-data.html' title='Problems with a 4 GB Kingston Data Traveler'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-6153627355724720230</id><published>2009-07-12T18:49:00.000-07:00</published><updated>2009-07-13T18:15:48.966-07:00</updated><title type='text'>Simple, Battery-Free, LED Flasher</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_T92Z7M_4jDc/SlrMIaPPSaI/AAAAAAAAAMU/pZj6w5Fw-Ec/s1600-h/IMG_3099.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_T92Z7M_4jDc/SlrMIaPPSaI/AAAAAAAAAMU/pZj6w5Fw-Ec/s320/IMG_3099.JPG" alt="" id="BLOGGER_PHOTO_ID_5357819151564884386" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;How about making an electronic device which does something (slightly) useful, doesn't require an external power supply, and might last longer than you? I found this proposition enticing, and so, inspired by Kevin Horton's &lt;a href="http://www.tripoint.org/kevtris/Projects/led/flasher.html"&gt;Infini-Flasher&lt;/a&gt;, I had a go at creating my own version of Kevin's cunning device.&lt;br /&gt;&lt;br /&gt;I firstly put together the components using a simple breadboard and found that I needed to make some changes to the component values listed in Kevin's design. I suspect that this is simply a result of using different transistor types. The changes simplified Kevin's circuit slightly, I omitted a pair of diodes, which are only needed if the supply voltage is high, and changed the ordering of the NPN and PNP transistors. I also found that it was important to use a suitable value for the limited resistor, between the super capacitor and the flasher circuit. I started out with 100k here, as in Kevin's circuit, but found that the circuit would not start to flash as the leakage through the flasher circuit would not allow the voltage across the flasher circuit to reach a high enough value to actually start flashing. Clearly the circuit is a little sensitive to component tolerances. I recommend that you put together your circuit using a breadboard first, then solder everything together once you are sure that the component values are satisfactory. The flasher circuit I ended up with is very similar to that listed here in the &lt;a href="http://talkingelectronics.com/projects/FlasherCircuits/Page83FlasherCircuitsP1.html"&gt;Talking Electronics&lt;/a&gt; site, with the main difference being that the flasher drives a LED through the induced voltage in an inductor, rather than directly from the power supply (which is generally too low a voltate to light a LED). This type of flasher circuit works well for this application, as we want a very short duration of current usage, so that the relatively small amount of charge available from the capacitor is made to last as long as possible. The simulation of the circuit shows (when I get around to adding it), the on condition for the output transistor is very brief. This provides a brief spike of power to the inductor and in turn the LED. As human eyes are very sensitive to short pulses of light (through having evolved to avoid the glinting teeth of sabre tooth tigers no doubt) this provides the most electrically economical means to light the LED. Even if the pulses were longer, the human eye would not appreciate the large expenditure of power that much.&lt;br /&gt;&lt;br /&gt;I will include a table indicating the specifications of each of the components in due course, should you want to reproduce the circuit. Here is the circuit diagram. Be warned that this battery free flasher is fascinating! The super capacitor (1F on the diagram) charges up from the solar solar cells in about 30 minutes under a lamp, or quite happily during the hours of daylight on a desk. When the voltage supplied to the flasher circuit reaches about 1.5 volts, the LED starts flashing. The current consumption is around 10 microamps, so the charge in the super capacitor lasts a long time, certainly more than a typical night time. So far my version has been flashing away happily on my desk for about a month. It should last as long as the electrolytic capacitors that it contains - that should be at least 20 years - perhaps 40 if I am lucky! (I will keep this blog post updated - if I can).&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_T92Z7M_4jDc/Slu9mkAh6II/AAAAAAAAAM0/f1rGLSNSDPU/s1600-h/IMG_3101.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_T92Z7M_4jDc/Slu9mkAh6II/AAAAAAAAAM0/f1rGLSNSDPU/s320/IMG_3101.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5358084651885914242" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-6153627355724720230?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/6153627355724720230/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=6153627355724720230' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6153627355724720230'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6153627355724720230'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/07/simple-battery-free-led-flasher.html' title='Simple, Battery-Free, LED Flasher'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_T92Z7M_4jDc/SlrMIaPPSaI/AAAAAAAAAMU/pZj6w5Fw-Ec/s72-c/IMG_3099.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2237489928211559631</id><published>2009-07-06T16:46:00.001-07:00</published><updated>2009-07-06T16:59:34.489-07:00</updated><title type='text'>Automating Tweets for Twitter With A Script</title><content type='html'>Are you interested in hooking up your computer's CPU temperature monitor to Twitter? How about monitoring the progress of your automatic builds from anywhere in the world, without needing to set up a web server, or worry about firewall security?&lt;br /&gt;Simple monitoring tasks such as these can be easily accomplished using Twitter. You can also (should you want to) automate your personal updates to your followers. However, be aware that your followers will quickly tire of your Tweets if they are too routine or 'bot' like.&lt;br /&gt;Here is a simple example script to get you started:&lt;pre&gt;#!/bin/sh&lt;br /&gt;user="YourTwitterUserName"&lt;br /&gt;pass="YourTwitterPassword"&lt;br /&gt;while true&lt;br /&gt;do&lt;br /&gt;  status=`awk '{srand();array[NR]=$0;}END{print array[int(rand()*NR+1)]}' msgs.txt`&lt;br /&gt;  status=`echo $status | tr ' ' '+'`&lt;br /&gt;  curl --basic --user "$user:$pass" --data-ascii \&lt;br /&gt;    "status=$status" \&lt;br /&gt;    "http://twitter.com/statuses/update.json" &gt; /dev/null&lt;br /&gt;  DELAY=`awk 'BEGIN{srand();print 29+int(rand()*1200)}'`&lt;br /&gt;  echo "We will be sleeping for" $DELAY "seconds"&lt;br /&gt;  sleep $DELAY&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This reads the msgs.txt file, selects a line from this file at random, and updates your Twitter status accordingly. The script then pauses for a suitable delay of less than 20 minutes, and repeats, forever (or until interrupted). With a suitably creative set of work, or study, related lines in your msgs.txt file this might be help convince some of your colleagues (or parents) that you are dedicated person while you surf the interweb.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2237489928211559631?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2237489928211559631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2237489928211559631' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2237489928211559631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2237489928211559631'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/07/automating-tweets-for-twitter-with.html' title='Automating Tweets for Twitter With A Script'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-3871108442991444229</id><published>2009-02-28T20:02:00.000-08:00</published><updated>2009-02-28T21:42:02.924-08:00</updated><title type='text'>Making Files Accessible - Easily</title><content type='html'>Today I was contemplating setting up Samba on Cygwin on Windows XP. The idea was with a machine running such a setup somewhere on the network, I would be able to easily share files without having to engage in Windows XP or Windows Vista security.&lt;br /&gt;&lt;br /&gt;Well - if you Google the subject - you find that it can be done. But it is clearly quite a lot of effort to set up. Additionally, not everything works correctly. Some forms of file access do not survive the round trip from Windows to Gnu to Windows unscathed.&lt;br /&gt;&lt;br /&gt;However, before I got too far into this project I ran into something neater and more minimalistic, which is almost as good. What is that thing? Running a simple web-server under Cygwin so that other computers on the network can browse that machine's files using Firefox, Internet Explorer, Safari, or your favorite web browser. How does this work? A simple one liner is sufficient - because the Python world have been to some effort to make everyone's lives easier.&lt;pre&gt;&lt;br /&gt;python -m SimpleHTTPServer&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Just type the python command above. Then elsewhere on the network open http://1.2.3.4:8000 and you will be able to browse the files and directories beneath the directory in which the python command was executed. (The 1.2.3.4 is the IP address of the server machine - you can find this by typing 'ping hostname'). This means read only access on the remote machine - however this involves no set up whatsoever. Depending on what you have been doing with Python on the machine, you may get a prompt about opening the firewall for this program. However, that is the extent of the setup. Very nice!&lt;br /&gt;&lt;br /&gt;Inspired by this - I Googled again. This time for a web server written in Bash. Sure enough there is a nice version out there, written, (I think), by &lt;a href="http://quake.wikidot.com/www-server-in-100-lines-bash-script"&gt;Piotr Gabryjeluk&lt;/a&gt;. This is a little cooler than the Python web server, because you can play with the moving parts, and see what is happening. It all happens in less than 100 lines of script. This script expects an argument of the port that will be used for communication. So, on your server machine, you would issue a command like:&lt;pre&gt;&lt;br /&gt;./web.sh 9092&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;...and on the client machine you would browse http://1.2.3.4:9092. (As before 1.2.3.4 is the IP address of your server machine). This is very convenient, and I think, rather secure. You can see precisely which files are being served by your server (from the output on standard out). You can kill the server when you have had enough fun and your machine's configuration will be completely unaffected. The script relies on 'nc' or 'nc.exe' to do the communication, so you may get a prompt from your firewall about this program. Just add it to the list of trusted programs, and all will be fine.&lt;br /&gt;&lt;br /&gt;I made a small tweak to the original script - so that I could browse images and text files without downloading them first. This is also basically described in the comments on Piotr's page (I think I added the \n which seemed to be necessary), but if you are interested here is the tweak to the function called serve_file.&lt;pre&gt;&lt;br /&gt;function serve_file {&lt;br /&gt;    echo 'HTTP/1.1 200 OK'&lt;br /&gt;    local file="`fix_path "$1"`"&lt;br /&gt;    debug INFO serving file "$file"&lt;br /&gt;    debug INFO "`file -i "$file" | cut -d " " -f 2-`"&lt;br /&gt;    printf 'Content-type: %s\n' "`file -i "$file" | cut -d " " -f 2-`"&lt;br /&gt;    echo&lt;br /&gt;    cat "$file"&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;These commands - the completely minimalist Python command or the Bash script - enable you to share files easily on your home computer network. It may be my imagination - but I am certainly impressed by the performance of the Bash version. It makes browsing directories graphically very nice because it is so responsive.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-3871108442991444229?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/3871108442991444229/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=3871108442991444229' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3871108442991444229'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3871108442991444229'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/making-files-accessible-easily.html' title='Making Files Accessible - Easily'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-1936970904137784861</id><published>2009-02-24T09:15:00.001-08:00</published><updated>2009-02-24T09:36:53.749-08:00</updated><title type='text'>A Bash Script for Directory Merging (dirmer.sh)</title><content type='html'>When working on multiple machines, using external drives, and being constrained for disk space, it is all too easy to create cloned directory trees, which are similar but not identical to one another. Looking at the various directories cloned on my hard drive, I decided to create a simple script for merging directories, which is appended. Now, this is very simple, and be warned, it comes with no guarantees expressed or implied, and has minimal error checking. However, I find it useful and thought I would post it in case anyone else were interested.&lt;br /&gt;&lt;br /&gt;Here is how it works...&lt;br /&gt;&lt;br /&gt;1. Two arguments, the source directory, and the target directory are passed to the awk program&lt;br /&gt;2. The awk program cd's to the source and target directories and builds associative arrays keyed on file names for the file's timestamp and file type (either file or directory)&lt;br /&gt;3. Each file in the source directory is checked in the target directory.&lt;br /&gt;4. If the same file name exists in the target, the checksums of each file are compared, if the files are identical, a command to delete the source file is stored&lt;br /&gt;5. If the files are not identical, a warning is emitted and the file is left in place in the source directory for further investigation&lt;br /&gt;6. If the source file or directory does not exist in the target it is moved to the target directory, again by storing the appropriate command&lt;br /&gt;7. The user is shown the list of commands that the script has decided are required and asked if these should be executed&lt;br /&gt;8. If requested, the merge commands are executed&lt;br /&gt;&lt;br /&gt;The effect is that identical files are deleted in the source (you already have them in the target after all). Files that are unique are copied to the target. Any files that are in conflict are left in place to be reconciled by hand.&lt;br /&gt;&lt;br /&gt;As mentioned above - the script is experimental and crude and contains minimal error checking - please leave comments if you have suggestions for possible improvements and please check carefully prior to any use (which will be at your own risk, as always).&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;awk '&lt;br /&gt;BEGIN{&lt;br /&gt;  dir1="\"" ARGV[1] "\"/"&lt;br /&gt;  dir2="\"" ARGV[2] "\"/"&lt;br /&gt;&lt;br /&gt;  readdir(dir1, lista, typea)&lt;br /&gt;  readdir(dir2, listb, typeb)&lt;br /&gt;&lt;br /&gt;  for(filea in lista){&lt;br /&gt;    if(filea in listb){&lt;br /&gt;      if(typea[filea] == "f"){&lt;br /&gt;        if(ckfile(dir1 "\"" filea "\"") != ckfile(dir2 "\"" filea "\"")){&lt;br /&gt;          print "# " dir1 "\"" filea "\"" " " dir2 "\"" filea "\""&lt;br /&gt;          print "# WARNING FILES DIFFER - CONTINUING - YOU NEED TO CHECK WHY!"&lt;br /&gt;        } else {&lt;br /&gt;           com[++ncom]="# files match " dir1 "\"" filea "\"" " " \&lt;br /&gt;                        dir2 "\"" filea "\""&lt;br /&gt;           com[++ncom]="/usr/bin/rm " dir1 "\"" filea "\""&lt;br /&gt;        }&lt;br /&gt;      }&lt;br /&gt;    }else{&lt;br /&gt;      if(typea[filea] == "d" ){&lt;br /&gt;        dcom[++ndcom]="# directory needs to be created in the target"&lt;br /&gt;        dcom[++ndcom]="mkdir -p " substr(dir2,1,length(dir2)-2) \&lt;br /&gt;                       substr(filea,2) "\""&lt;br /&gt;      } else {&lt;br /&gt;        com[++ncom]="# file needs to be moved to the target"&lt;br /&gt;        com[++ncom]="mv " substr(dir1,1,length(dir1)-2) substr(filea,2) \&lt;br /&gt;                 "\"" " " substr(dir2,1,length(dir2)-2) substr(filea,2) "\""&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if(!ncom &amp;&amp; !ndcom){&lt;br /&gt;    print "No updates required"&lt;br /&gt;    exit&lt;br /&gt;  }&lt;br /&gt;  print "The following commands are needed to merge directories:"&lt;br /&gt;  for(i=1;i&lt;=ndcom;i++){&lt;br /&gt;    print dcom[i]&lt;br /&gt;  }&lt;br /&gt;  for(i=1;i&lt;=ncom;i++){&lt;br /&gt;    print com[i]&lt;br /&gt;  }&lt;br /&gt;  print "Do you want to execute these commands?"&lt;br /&gt;  getline ans &lt; "/dev/tty"&lt;br /&gt;  if( ans == "y" || ans == "Y"){&lt;br /&gt;    for(i=1;i&lt;=ndcom;i++){&lt;br /&gt;      print "Executing: " dcom[i]&lt;br /&gt;      escapefilename(dcom[i])&lt;br /&gt;      system(dcom[i])&lt;br /&gt;      close (dcom[i])&lt;br /&gt;    }&lt;br /&gt;    for(i=1;i&lt;=ncom;i++){&lt;br /&gt;      print "Executing: " com[i]&lt;br /&gt;      escapefilename(com[i])&lt;br /&gt;      system(com[i])&lt;br /&gt;      close (com[i])&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;function ckfile(filename,   cmd)&lt;br /&gt;{&lt;br /&gt;    if (length(ck[filename])==0){&lt;br /&gt;        cmd="cksum " filename&lt;br /&gt;        cmd | getline ckout&lt;br /&gt;        close(cmd)&lt;br /&gt;        split(ckout, array," ")&lt;br /&gt;        ck[filename]=array[1]&lt;br /&gt;    }&lt;br /&gt;    return ck[filename]&lt;br /&gt;}&lt;br /&gt;function escapefilename(name){&lt;br /&gt;  gsub("\\$", "\\$", name)     # deal with dollars in filename&lt;br /&gt;  gsub("\\(", "\\(", name)     # and parentheses&lt;br /&gt;  gsub("\\)", "\\)", name)&lt;br /&gt;}&lt;br /&gt;function readdir(dir, list, type,        timestamp, ftype, name){&lt;br /&gt;  cmd="cd " dir ";find . -printf \"%T@\\t%y\\t%p\\n\""&lt;br /&gt;  print "Building list of files in: " dir&lt;br /&gt;  while (cmd | getline &gt; 0){&lt;br /&gt;    timestamp=$1&lt;br /&gt;    ftype=$2&lt;br /&gt;    $1=$2=""&lt;br /&gt;    name=substr($0,3)&lt;br /&gt;    list[name]=int(timestamp)&lt;br /&gt;    type[name]=ftype&lt;br /&gt;  }&lt;br /&gt;  close(cmd)&lt;br /&gt;}' "$1" "$2"&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-1936970904137784861?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/1936970904137784861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=1936970904137784861' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1936970904137784861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1936970904137784861'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/bash-script-for-directory-merging.html' title='A Bash Script for Directory Merging (dirmer.sh)'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2889258255207331732</id><published>2009-02-05T10:03:00.000-08:00</published><updated>2009-02-05T10:07:37.152-08:00</updated><title type='text'>Creating A Subset of a PDF Document</title><content type='html'>If you have a PDF file and want to send only a portion to a friend or colleague, what do you do? With pdftk you can easily create subsets of the pages in a PDF. For example, if you want to drop 5 pages of preamble in a document that you need to send to your boss, you can do that with:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;pdftk A=LongDocument.pdf cat A6-end output ShortDocument.pdf&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2889258255207331732?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2889258255207331732/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2889258255207331732' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2889258255207331732'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2889258255207331732'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/creating-subset-of-pdf-document.html' title='Creating A Subset of a PDF Document'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-184059834306597550</id><published>2009-02-03T13:45:00.000-08:00</published><updated>2009-02-03T13:50:38.281-08:00</updated><title type='text'>Extracting the Audio Portion of an FLV File to MP3 (Again)</title><content type='html'>Here is another ffmpeg recipe. This time extracting the audio portion of a flash, or .flv, video file.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;ffmpeg -i example.flv -ab 56 -ar 22050 -b 500 example.wav&lt;br /&gt;lame --preset standard example.wav example.mp3&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;You can also go directly to .mp3 from .flv using ffmpeg with a command like this.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;ffmpeg -i example.flv -sameq example.mp3&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;But using lame seemed to give better results, as far as I could tell. If you have additional information on maintaining quality when carrying out such transformations please leave a comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-184059834306597550?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/184059834306597550/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=184059834306597550' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/184059834306597550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/184059834306597550'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/extracting-audio-portion-of-flv-file-to.html' title='Extracting the Audio Portion of an FLV File to MP3 (Again)'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-3260969539979369998</id><published>2009-02-03T13:39:00.000-08:00</published><updated>2009-02-03T13:44:17.922-08:00</updated><title type='text'>An Improved ffmpeg Recipe For Concatenating Video Files</title><content type='html'>Here is an improved recipe for concatenating mpg and other video format files.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;ffmpeg -i a.mpg -s 480x360 -maxrate 2500k -bufsize 4000k -b 700k -ar 44100 i1.mpg&lt;br /&gt;ffmpeg -i b.mpg -s 480x360 -maxrate 2500k -bufsize 4000k -b 700k -ar 44100 i2.mpg&lt;br /&gt;ffmpeg -i c.mpg -s 480x360 -maxrate 2500k -bufsize 4000k -b 700k -ar 44100 i3.mpg&lt;br /&gt;cat i1.mpg i2.mpg i3.mpg &gt; a.mpg&lt;br /&gt;ffmpeg -i a.mpg -sameq combined.mpg&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This seemed to work better than simply using 'sameq' the last time that I needed to join some video segments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-3260969539979369998?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/3260969539979369998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=3260969539979369998' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3260969539979369998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3260969539979369998'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/improved-ffmpeg-recipe-for.html' title='An Improved ffmpeg Recipe For Concatenating Video Files'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5671138159425155062</id><published>2009-02-02T12:06:00.000-08:00</published><updated>2009-02-05T09:54:15.620-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bash awk cygwin USB'/><title type='text'>Bash Directory Synchronization 2.0 (ds.sh)</title><content type='html'>Here is a simple Bash script which illustrates the use of find and awk in determining which files to update when synchronizing two directories. As noted in the previous post on the subject (where there is a &lt;a href="http://zztools.blogspot.com/2009/02/synchronizing-directories-and-files.html"&gt;bash shell script to synchronize directories&lt;/a&gt; which does the recursion and file time stamp checking), you can use the rsync command to carry out this task for you. However, rsync is a little too efficient and terse, and an open script, even if it is mainly awk, allows you to understand precisely what is about to happen to your files. The script works by using 'find' to gather data about the directories being synchronized. A list of synchronization commands (simple cp's or rm's) are presented to the user based on this analysis, and the user can then decide whether to execute the commands or not. In my tests the analysis of 1.3 GB of files on hard drive and on USB took around 3 seconds - so the speed of this script is not far from the speed of rsync itself.&lt;br /&gt;&lt;br /&gt;The usage reporting and error checking are minimal, the arguments are:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;ds.sh directory1 directory2 time-window (seconds)&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;(and all arguments are compulsory). So, for example, you might type:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;./ds.sh usb_documents drive_documents 2&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;to synchronize your USB drive documents with your hard drive documents.&lt;br /&gt;&lt;br /&gt;This script is experimental - please feel to use this - at your own risk. If you have questions or comments please let me know.&lt;br /&gt;&lt;pre&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;awk '&lt;br /&gt;BEGIN{&lt;br /&gt;  timewindow=ARGV[3]&lt;br /&gt;  print "The time window is: " timewindow&lt;br /&gt;  dir1="\"" ARGV[1] "\"/"&lt;br /&gt;  dir2="\"" ARGV[2] "\"/"&lt;br /&gt;&lt;br /&gt;  readdir(dir1, lista, typea)&lt;br /&gt;  readdir(dir2, listb, typeb)&lt;br /&gt;&lt;br /&gt;  for(filea in lista){&lt;br /&gt;    if(filea in listb){&lt;br /&gt;      if(typea[filea] == "f"){&lt;br /&gt;        timediff=lista[filea]-listb[filea]&lt;br /&gt;        if(timediff &gt; timewindow){&lt;br /&gt;          com[++ncom]="# file in source directory newer than target"&lt;br /&gt;          com[++ncom]="cp -a " dir1 "\"" filea "\"" " " dir2 "\"" filea "\""&lt;br /&gt;        }&lt;br /&gt;        if(timediff &lt; -timewindow){&lt;br /&gt;          print "# WARNING NEWER FILE IN TARGET DIRECTORY"&lt;br /&gt;          print "# files concerned are: "&lt;br /&gt;          print "# " dir1 "\"" filea "\"" " " dir2 "\"" filea "\""&lt;br /&gt;        }&lt;br /&gt;      }&lt;br /&gt;    }else{&lt;br /&gt;      if(typea[filea] == "d" ){&lt;br /&gt;        dcom[++ndcom]="# directory needs to be created in the target"&lt;br /&gt;        dcom[++ndcom]="mkdir -p " substr(dir2,1,length(dir2)-2) \&lt;br /&gt;                       substr(filea,2) "\""&lt;br /&gt;      } else {&lt;br /&gt;        com[++ncom]="# file needs to be copied to the target"&lt;br /&gt;        com[++ncom]="cp -a " substr(dir1,1,length(dir1)-2) substr(filea,2) \&lt;br /&gt;                 "\"" " " substr(dir2,1,length(dir2)-2) substr(filea,2) "\""&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;  for(fileb in listb){&lt;br /&gt;    if(!(fileb in lista)){&lt;br /&gt;      com[++ncom]="# need to remove file in target not in source"&lt;br /&gt;      com[++ncom]="rm -f " dir2 "\"" fileb "\""&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;  if(!ncom){&lt;br /&gt;    print "No updates required"&lt;br /&gt;    exit&lt;br /&gt;  }&lt;br /&gt;  print "The following commands are needed to synchronize directories:"&lt;br /&gt;  for(i=1;i&lt;=ndcom;i++){&lt;br /&gt;    print dcom[i]&lt;br /&gt;  }&lt;br /&gt;  for(i=1;i&lt;=ncom;i++){&lt;br /&gt;    print com[i]&lt;br /&gt;  }&lt;br /&gt;  print "Do you want to execute these commands?"&lt;br /&gt;  getline ans &lt; "/dev/tty"&lt;br /&gt;  if( ans == "y" || ans == "Y"){&lt;br /&gt;    for(i=1;i&lt;=ndcom;i++){&lt;br /&gt;      print "Executing: " dcom[i]&lt;br /&gt;      escapefilename(dcom[i])&lt;br /&gt;      system(dcom[i])&lt;br /&gt;      close (dcom[i])&lt;br /&gt;    }&lt;br /&gt;    for(i=1;i&lt;=ncom;i++){&lt;br /&gt;      print "Executing: " com[i]&lt;br /&gt;      escapefilename(com[i])&lt;br /&gt;      system(com[i])&lt;br /&gt;      close (com[i])&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;function escapefilename(name){&lt;br /&gt;  gsub("\\$", "\\$", name)     # deal with dollars in filename&lt;br /&gt;  gsub("\\(", "\\(", name)     # and parentheses&lt;br /&gt;  gsub("\\)", "\\)", name)&lt;br /&gt;}&lt;br /&gt;function readdir(dir, list, type,        timestamp, ftype, name){&lt;br /&gt;  cmd="cd " dir ";find . -printf \"%T@\\t%y\\t%p\\n\""&lt;br /&gt;  print "Building list of files in: " dir&lt;br /&gt;  while (cmd | getline &gt; 0){&lt;br /&gt;    timestamp=$1&lt;br /&gt;    ftype=$2&lt;br /&gt;    $1=$2=""&lt;br /&gt;    name=substr($0,3)&lt;br /&gt;    list[name]=int(timestamp)&lt;br /&gt;    type[name]=ftype&lt;br /&gt;  }&lt;br /&gt;  close(cmd)&lt;br /&gt;}' "$1" "$2" "$3"&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5671138159425155062?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5671138159425155062/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5671138159425155062' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5671138159425155062'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5671138159425155062'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/bash-directory-synchronization-20-dssh.html' title='Bash Directory Synchronization 2.0 (ds.sh)'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2100659187383374954</id><published>2009-02-01T19:19:00.000-08:00</published><updated>2009-02-05T10:26:29.269-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='awk'/><category scheme='http://www.blogger.com/atom/ns#' term='bash'/><category scheme='http://www.blogger.com/atom/ns#' term='cygwin'/><category scheme='http://www.blogger.com/atom/ns#' term='usb'/><title type='text'>Synchronizing Directories And Files With A USB Drive</title><content type='html'>If you are interested in this script, there is an arguably better version, which uses find, instead of recursion in bash, to traverse the directories. It is much faster. (You can obtain a copy here, &lt;a href="http://zztools.blogspot.com/2009/02/bash-directory-synchronization-20-dssh.html"&gt;Bash script to synchronize directories&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;Every time that I check on the price of USB drives, it seems that the amount of storage that one can buy for $10 has doubled! Moore's Law seems to be a little accelerated for USB drives...&lt;br /&gt;&lt;br /&gt;At this rate, in two years (say 2011) 256 GB USB drives will cost $10.&lt;br /&gt;&lt;br /&gt;So, like many people, I store more and more information on USB drives.&lt;br /&gt;&lt;br /&gt;And, like many people, I then rapidly run into the problem of keeping directory trees synchronized. It is actually a difficult problem, because although you know from the file timestamps which files are the latest files on the USB, you do not necessarily know the history of the files and directories. So if a file is deleted on the USB but still exists on the hard drive, what do you do? You either remove the file on the hard drive, or create the file on the USB, but knowing which action is the correct one is difficult. As you can create, modify, and remove files using a variety of programs, capturing the history necessary to synchronize two directories trees is difficult too. One solution might be to intercept all the OS calls to the file systems involved, but that seems to be a lot of work.&lt;br /&gt;&lt;br /&gt;There are a variety of programs which set out to provide directory synchronization. Two of the most well known are rsync and unison. They are both well worth a look. Rsync in particular is very effective. However, for the application of keeping my USB drive and hard drive in synchronization, I wanted something which I could adjust a little more than rsync, and so I have been using the script below. This is still rather experimental, and comes with no guarantees whatsoever. If you try it, you need to take appropriate precautions for yourself.&lt;br /&gt;&lt;br /&gt;The script allows the user to enter a 'modification window' in seconds. This allows latitude in the assessment of the file timestamps that are used in deciding whether to update files in the target directory. This is needed because a 'FAT' USB drive stores file timestamps at a lower resolution than either Windows or Linux typical file systems. For a FAT device you will probably want to supply '-t 2' to insure that you don't end up copy lots of files in either direction when the files are actually supposed to have the same timestamp in reality.&lt;br /&gt;&lt;br /&gt;As mentioned, this script is still experimental. I use it with a directory of around 1.5 GB of files, which I synchronize between two computers and a USB drive. The performance is the primary concern, although it is certainly usable. The shell script uses 'stat' (a lot) to obtain information on the modification timestamps of the files that it needs to compare. I have been considering replacing this with a single find command to obtain this information in one shot upfront (the command will be something like 'find . -printf "%p\t%T@\n"'). Perhaps this will be the subject of a future script.&lt;br /&gt;&lt;br /&gt;If you have any comments or questions, please let me know.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;# comparefiles either compares two files and returns (if in compare mode)&lt;br /&gt;# or determines whether to update the target file and carries out the update&lt;br /&gt;&lt;br /&gt;comparefiles () {&lt;br /&gt;&lt;br /&gt;  FILE1="$1/$3"&lt;br /&gt;  FILE2="$2/$3"&lt;br /&gt;&lt;br /&gt;  if [ $COMPARE = "Y" ]; then&lt;br /&gt;    if [ ! -f "$FILE2" ] ; then&lt;br /&gt;      echo "dirsync: warning $FILE2 does not exist"&lt;br /&gt;      NCOPY=`expr $NCOPY + 1`    &lt;br /&gt;    else&lt;br /&gt;      diff "$FILE1" "$FILE2" &gt; /dev/null&lt;br /&gt;      if [ $? != 0 ] &lt;br /&gt;      then &lt;br /&gt;        echo "dirsync: $FILE1 $FILE2 differ"&lt;br /&gt;        NCOPY=`expr $NCOPY + 1`    &lt;br /&gt;      fi&lt;br /&gt;    fi&lt;br /&gt;    return&lt;br /&gt;  fi&lt;br /&gt;&lt;br /&gt;  if [ ! -f "$FILE2" ] ; then&lt;br /&gt;    NCOPY=`expr $NCOPY + 1`    &lt;br /&gt;    if [ $DRYRUN = "Y" ]; then&lt;br /&gt;      echo "dirsync: need to /bin/cp -a -i $1/$ITEM $2/$ITEM"&lt;br /&gt;    else&lt;br /&gt;      echo "dirsync: copying new item $1/$ITEM to $2/$ITEM"&lt;br /&gt;      /bin/cp -a -i "$1"/"$ITEM" "$2"/"$ITEM"&lt;br /&gt;    fi&lt;br /&gt;    return&lt;br /&gt;  fi&lt;br /&gt;&lt;br /&gt;  FILETIME1=`stat -c'%Y' "$FILE1"`&lt;br /&gt;  FILETIME2=`stat -c'%Y' "$FILE2"`&lt;br /&gt;  TIMEDIFF=`expr $FILETIME1 - $FILETIME2`&lt;br /&gt;  NEGTIMEWINDOW=`expr -$TIMEWINDOW`&lt;br /&gt;  if [ $TIMEDIFF -gt $TIMEWINDOW ]; then&lt;br /&gt;    echo "dirsync: (t=$TIMEDIFF) copying file $1/$ITEM to $2/$ITEM"&lt;br /&gt;    echo "dirsync: $FILE1: `stat -c'%s %y' "$FILE1"`"&lt;br /&gt;    echo "dirsync: $FILE2: `stat -c'%s %y' "$FILE2"`"&lt;br /&gt;    NCOPY=`expr $NCOPY + 1`    &lt;br /&gt;    if [ $DRYRUN = "Y" ]; then&lt;br /&gt;      echo "dirsync: need to chmod u+w $2/$ITEM"&lt;br /&gt;      echo "dirsync: /bin/cp -a $1/$ITEM $2/$ITEM"&lt;br /&gt;    else&lt;br /&gt;      chmod u+w "$2"/"$ITEM"&lt;br /&gt;      /bin/cp -a "$1"/"$ITEM" "$2"/"$ITEM"&lt;br /&gt;    fi&lt;br /&gt;  elif [ $TIMEDIFF -lt $NEGTIMEWINDOW ]; then&lt;br /&gt;    echo "dirsync: warning newer file in target TIMEDIFF: " $TIMEDIFF&lt;br /&gt;    echo "dirsync: $FILE1: `stat -c'%s %y' "$FILE1"`"&lt;br /&gt;    echo "dirsync: $FILE2: `stat -c'%s %y' "$FILE2"`"&lt;br /&gt;    echo "dirsync: diffing files"&lt;br /&gt;    diff "$FILE1" "$FILE2" &gt; /dev/null&lt;br /&gt;    if [ $? == 0 ]; then &lt;br /&gt;      echo "dirsync: the files are the same - update target"&lt;br /&gt;      echo "dirsync: requires /bin/cp -a $1/$ITEM $2/$ITEM"&lt;br /&gt;      NCOPY=`expr $NCOPY + 1`    &lt;br /&gt;      if [ $DRYRUN != "Y" ]; then&lt;br /&gt;        /bin/cp -a "$1"/"$ITEM" "$2"/"$ITEM"&lt;br /&gt;      fi&lt;br /&gt;    else&lt;br /&gt;      echo "dirsync: files differ"&lt;br /&gt;      echo "dirsync: requires /bin/cp -a -i $1/$ITEM $2/$ITEM"&lt;br /&gt;      NCOPY=`expr $NCOPY + 1`    &lt;br /&gt;      if [ $DRYRUN != "Y" ]; then&lt;br /&gt;        /bin/cp -a -i "$1"/"$ITEM" "$2"/"$ITEM"&lt;br /&gt;      fi&lt;br /&gt;    fi &lt;br /&gt;  fi &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;searchdir () {&lt;br /&gt;&lt;br /&gt;if [ $COMPARE = "Y" ]; then&lt;br /&gt;  echo "dirsync: comparing $1 and $2"&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;if [ ! -d "$2" ]; then&lt;br /&gt;  if [ $DRYRUN = "Y" ]; then&lt;br /&gt;    echo "dirsync: need to mkdir $2"&lt;br /&gt;  else&lt;br /&gt;    mkdir "$2"&lt;br /&gt;  fi&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;for ITEM in "$1"/*&lt;br /&gt;do&lt;br /&gt;  ITEM=`basename "$ITEM"`&lt;br /&gt;  if [ -h "$1"/"$ITEM" ]; then&lt;br /&gt;    echo "dirsync: $1/$ITEM is a link and links are not handled" &lt;br /&gt;  elif [ -f "$1"/"$ITEM" ]; then &lt;br /&gt;    comparefiles "$1" "$2" "$ITEM"&lt;br /&gt;    NFILE=`expr $NFILE + 1`    &lt;br /&gt;  elif [ -d "$1"/"$ITEM" ]; then &lt;br /&gt;    searchdir  "$1"/"$ITEM" "$2"/"$ITEM"&lt;br /&gt;    NDIRS=`expr $NDIRS + 1`    &lt;br /&gt;  fi&lt;br /&gt;done &lt;br /&gt;for ITEM in "$2"/*; do&lt;br /&gt;  ITEM=`basename "$ITEM"`&lt;br /&gt;  # the check on the existence of the second item handles the wild card&lt;br /&gt;  if [ ! -e "$1"/"$ITEM" -a -e "$2/$ITEM" ]; then&lt;br /&gt;    if [ -d "$2/$ITEM" ]; then&lt;br /&gt;      echo "dirsync: directory $2/$ITEM does not exist in $1"&lt;br /&gt;    else&lt;br /&gt;      echo "dirsync: File $2/$ITEM does not exist in $1"&lt;br /&gt;    fi&lt;br /&gt;    if [ $DRYRUN = "Y" ]; then&lt;br /&gt;       echo "dirsync: need to rm -ri $2/$ITEM  (if -f is set)"&lt;br /&gt;    fi&lt;br /&gt;    if [ $CLEANUP = "Y" ]; then&lt;br /&gt;       echo "dirsync: rm -ri $2/$ITEM"&lt;br /&gt;       rm -ri "$2"/"$ITEM"&lt;br /&gt;    fi&lt;br /&gt;    NDELE=`expr $NDELE + 1`    &lt;br /&gt;  fi&lt;br /&gt;done&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;NDIRS=0&lt;br /&gt;NFILE=0&lt;br /&gt;NCOPY=0&lt;br /&gt;NDELE=0&lt;br /&gt;NDIFF=0&lt;br /&gt;TIMEWINDOW="0"&lt;br /&gt;CLEANUP="N"&lt;br /&gt;DRYRUN="N"&lt;br /&gt;COMPARE="N"&lt;br /&gt;&lt;br /&gt;if [ "$#" -lt 2 ]; then&lt;br /&gt;  echo "Usage: dirsync source target [-f | -d | -k] [-t offset]"&lt;br /&gt;  echo "-f = force removal of files deleted in source (cleanup)"&lt;br /&gt;  echo "-d = dry run"&lt;br /&gt;  echo "-t offset = offset in seconds to apply to timestamps (for FAT)"&lt;br /&gt;  echo "-k = comparison"&lt;br /&gt;  exit&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;# the first two arguments are directories &lt;br /&gt;&lt;br /&gt;while [ $# -gt 0 ]; do&lt;br /&gt;  if [ "$1" = "-t" ]; then&lt;br /&gt;    TIMEWINDOW="$2"&lt;br /&gt;    shift; shift; continue&lt;br /&gt;  elif [ "$1" = "-d" ]; then&lt;br /&gt;    DRYRUN="Y"&lt;br /&gt;    shift; continue&lt;br /&gt;  elif [ "$1" = "-f" ]; then&lt;br /&gt;    CLEANUP="Y"&lt;br /&gt;    shift; continue&lt;br /&gt;  elif [ "$1" = "-k" ]; then&lt;br /&gt;    COMPARE="Y"&lt;br /&gt;    shift; continue&lt;br /&gt;  else # target directories are stored here &lt;br /&gt;    if [ -z "$SRC" ]; then&lt;br /&gt;      SRC="$1"&lt;br /&gt;    else&lt;br /&gt;      TRG="$1"&lt;br /&gt;    fi&lt;br /&gt;    shift; continue&lt;br /&gt;  fi&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;if [ -z "$SRC" -o -z "$TRG" ]; then&lt;br /&gt;  echo "Target directories not supplied"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;if [ ! -d "$SRC" -o ! -d "$TRG" ]; then&lt;br /&gt;  echo "Either $SRC or $TRG is not a directory, stopping"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;if [ $COMPARE = "Y" -a $CLEANUP = "Y" ]; then&lt;br /&gt;  echo "Compare (-k) not permitted with cleanup (-f)"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;if [ $COMPARE = "Y" -a $DRYRUN = "Y" ]; then&lt;br /&gt;  echo "Compare (-k) not permitted with dryrun (-d)"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;if [ $DRYRUN = "Y" -a $CLEANUP = "Y" ]; then&lt;br /&gt;  echo "Dryrun (-d) not permitted with cleanup (-f)"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;searchdir "$SRC" "$TRG"&lt;br /&gt;&lt;br /&gt;echo ""&lt;br /&gt;echo "dirsync: number of directories searched = $NDIRS"&lt;br /&gt;echo "dirsync: number of files checked = $NFILE"&lt;br /&gt;&lt;br /&gt;if [ $DRYRUN = "Y" ]; then&lt;br /&gt;  echo "dirsync: number of files to be copied = $NCOPY"&lt;br /&gt;  echo "dirsync: number of items to be deleted = $NDELE"&lt;br /&gt;elif [ $COMPARE != "Y" ]; then&lt;br /&gt;  echo "dirsync: number of files copied = $NCOPY"&lt;br /&gt;fi&lt;br /&gt;if [ $CLEANUP = "Y" ]; then&lt;br /&gt;  echo "dirsync: number of items deleted = $NDELE"&lt;br /&gt;fi&lt;br /&gt;if [ $COMPARE = "Y" ]; then&lt;br /&gt;  echo "dirsync: number of files that differ $NDIFF"&lt;br /&gt;fi&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2100659187383374954?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2100659187383374954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2100659187383374954' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2100659187383374954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2100659187383374954'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/02/synchronizing-directories-and-files.html' title='Synchronizing Directories And Files With A USB Drive'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-6276317388461957149</id><published>2009-01-20T17:09:00.000-08:00</published><updated>2009-01-20T17:45:17.081-08:00</updated><title type='text'>Opening a PDF File - With a Forgotten Password</title><content type='html'>Wow, I needed to open a PDF file today. This particular file was password protected years ago and, of course, the password had been forgotten. 'Well, while I am thinking, I might as well try a quick Google on the subject of lost PDF passwords'. This rapidly took me to the Source Forge page for '&lt;a href="http://pdfcrack.sourceforge.net/"&gt;pdfcrack&lt;/a&gt;', and just as rapidly I had downloaded and built pdfcrack on Cygwin. So far so good, no surprises. However, the real shock was in how fast 'pdfcrack' determined the password. It took just a few seconds - I hadn't even started to read the instructions and I had the password. &lt;br /&gt;&lt;br /&gt;Pdfcrack was fast because the password was only 4 characters long, and pdfcrack was able to work through trial passwords rapidly (about 36,000 password attempts per second on this particular machine, a simple laptop).&lt;br /&gt;&lt;br /&gt;So, be warned, passwords for PDF files need to be quite long to turn 'a few seconds' into 'a few days' and make PDF files secure; or their passwords unrecoverable. &lt;br /&gt;&lt;br /&gt;Say 36,000 words per second is the standard speed for pdfcrack. How many letters (or characters) do you need in your password to make a PDF file generally safe against a brute force attack for 24 hours? Well, there are 24x60x60=86,400 seconds in 24 hours, and in this time pdfcrack can try 36,000x86,400=3,110,400,000 passwords (over three billion passwords). Say there are 60 characters that can be used in each position of the password, you will need at least a 6 character password, for reasonable PDF file security. (Because, 60&lt;sup&gt;5&lt;/sup&gt; &amp;lt; 3,110,400,000 but 60&lt;sup&gt;6&lt;/sup&gt; &amp;gt; 3,110,400,000).&lt;br /&gt;&lt;br /&gt;Assuming, of course, that your password is not something that can be found in a dictionary. Most password recovery programs, like pdfcrack, can make use of a supplied dictionary of common passwords. So you absolutely need to avoid common words in passwords to ensure security, even if they are longer than 6 characters.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-6276317388461957149?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/6276317388461957149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=6276317388461957149' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6276317388461957149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6276317388461957149'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2009/01/opening-pdf-file-with-forgotten.html' title='Opening a PDF File - With a Forgotten Password'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5430323427398822638</id><published>2008-12-17T20:30:00.000-08:00</published><updated>2008-12-17T20:37:31.855-08:00</updated><title type='text'>How to Merge and Join PDF documents</title><content type='html'>Have you ever wanted to merge several PDF files to create a single PDF file? Well, if you work with electronic documents you probably will. There is a very capable command line tool to carry out this and a range of other PDF related operations, it is called pdftk. You can obtain a copy of pdftk here: &lt;a href="http://www.accesspdf.com/pdftk/"&gt;http://www.accesspdf.com/pdftk/&lt;/a&gt; and if you are interested in merging, or taking apart PDF documents, this is the tool that you need.&lt;br /&gt;&lt;br /&gt;For example, if you want to concatenate three PDFs into a single PDF file, here is the command:&lt;pre&gt;&lt;br /&gt;pdftk A=a.pdf B=b.pdf C=c.pdf output output.pdf&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;I use pdftk on Windows XP via Cygwin on a regular basis.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5430323427398822638?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5430323427398822638/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5430323427398822638' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5430323427398822638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5430323427398822638'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/12/how-to-merge-and-join-pdf-documents.html' title='How to Merge and Join PDF documents'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2367693576335002231</id><published>2008-12-14T20:46:00.000-08:00</published><updated>2008-12-14T21:01:41.580-08:00</updated><title type='text'>Using a KWorld Dvd Maker USB Device to Capture Video</title><content type='html'>I recently wanted to convert the video in an old Sony Handycam 8 to a digital format. I looked around at the various options, and did not find any particularly clear instructions on the web. So, I thought I would record my mileage here, in case it is of help to anyone looking for information on this subject.&lt;br /&gt;&lt;br /&gt;There are a variety of video capture USB devices on the market. The prices vary widely, as do their reviews. I could not find any clear information on a suitable device to capture the video from an old, not very high quality, home video camera. So, I selected a KWorld DVD Maker USB device, bought from Fry's Electronics.&lt;br /&gt;&lt;br /&gt;I installed the driver on Windows XP (I do not believe that the KWorld device supports Mac or Linux boxes). Then, after being baffled by what to do next for a while, I eventually realized that Windows Movie Maker now presented a capture device of the KWorld DVD maker. When this was being fed by the Sony Handycam, there was an input stream to be captured.&lt;br /&gt;&lt;br /&gt;Using the device it is straightforward to convert video signal to WMV format. This enabled me to save the contents of the cassette in the Handycam, which was the object of the exercise. Actually, the Handycam needed to be encouraged during the course of proceedings with an enthusiastic 'tap'. (According to the web this is not uncommon for the Handycam).&lt;br /&gt;&lt;br /&gt;Once the WMV file had been saved, I converted appropriate portions to MP4 format. The MP4 format files were then safely installed on an iPhone, where the effect has been well received.&lt;br /&gt;&lt;br /&gt;For the record, here is the command line needed for the WMV to MP4 conversion - carefully transcribed from the ffmpeg options which the excellent Floola program uses for the iPod.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;ffmpeg -i input.wmv -y -s 320x240 -vcodec mpeg4 -flags +aic+mv4+trell \&lt;br /&gt;-mbd 2 -cmp 2 -subcmp 2 -g 250 -maxrate 2500k -bufsize 4000k  -b 700k -acodec \&lt;br /&gt;libfaac -ar 44100 -ab 64k -title "HomeVideo" -author "" -comment "" output.mp4&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2367693576335002231?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2367693576335002231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2367693576335002231' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2367693576335002231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2367693576335002231'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/12/using-kworld-dvd-maker-usb-device-to.html' title='Using a KWorld Dvd Maker USB Device to Capture Video'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-6800692797470294893</id><published>2008-08-07T19:44:00.000-07:00</published><updated>2008-08-07T19:57:52.938-07:00</updated><title type='text'>A data CD archive</title><content type='html'>I have many CDs with who knows what wonderful data stored on them. Most of it is valueless backup data, of course. All those old CDs on the shelf were irritating me recently and so I determined that I needed to do something constructive with them. I guess that this is not a unique problem and so here is what I came up with. &lt;br /&gt;Firstly, I needed to recognize that hard disk space is now relatively inexpensive. So I created images of all the CDs, simply in a flat directory called CD-ARCHIVE with the first CD called CD0001, the second CD0002 and so on. I made the copies using cp -a d:/* . or the equivalent command (my CD is labeled d:/). I ended up with 50 or so CD00nn directories and I marked each CD with the appropriate identifier CD00nn, so that if I mess up what is on the hard disk it can be recreated from the CD.&lt;br /&gt;&lt;br /&gt;Then I needed to think about how to handle the resulting the archive. The first step was a simple indexing by file name. This I achieved with 'find -ls &gt; listing.txt' that ran for a while the CD-ARCHIVE directory and created a complete listing of all the files that are stored in the archive. I then wrote a little script to help me find files quickly using 'grep -i $1 listing.txt' as its guts. This rapidly allows me to identify files of interest.&lt;br /&gt;&lt;br /&gt;The next step was an aggressive removal of duplicate files. I did this with an execution of the &lt;a href="http://zztools.blogspot.com/2007/01/removing-duplicated-files-keeping-your.html"&gt;filetidy.sh &lt;/a&gt; script and the script which it outputs to remove absolutely identical files. (I say aggressive because this script does not make intelligent decisions - if it finds two identical files it removes one of them and moves on). Then I made another index using 'find -ls &gt; listing2.txt' and another version of the file finding script which references the second listing.&lt;br /&gt;&lt;br /&gt;There was an amazing amount of duplication in all those old files. Some 3 gigabytes of duplication to be precise out of only 20 gigabytes of files. But now I have a readily indexed collection of backup material to sort through when I need to find an old file - and no CD changing.&lt;br /&gt;&lt;br /&gt;Every now and again this repository of my electronic data is really useful. My next project will be processing my old floppies in the same way. Then I am going to relegate the old media to long term storage off site and (hopefully) never worry about physical media again!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-6800692797470294893?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/6800692797470294893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=6800692797470294893' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6800692797470294893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6800692797470294893'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/08/data-cd-archive.html' title='A data CD archive'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-3260723713129423353</id><published>2008-07-01T18:54:00.000-07:00</published><updated>2008-07-01T20:36:48.256-07:00</updated><title type='text'>What Really Slows Windows Down</title><content type='html'>With Windows you tend to add more and more programs and services during the lifetime of the computer, as you try to get more and more pieces of hardware and assorted technologies up and running on the system. Each new layer of software encrustation tends to stay - because after a while you can no longer tell if you actually need a given program. Virus scanners, firewalls, printer monitors, software that looks after your sister's scanner(s), it all adds up - and after a while you notice that the machine is not as fast as it used to be. Well, to add a little science to the exploration of what is causing the most significant problems here is a great link: &lt;a href="http://www.thepcspy.com/read/what_really_slows_windows_down"&gt;http://www.thepcspy.com/read/what_really_slows_windows_down&lt;/a&gt;. If you follow the link you will find a detailed analysis of different virus scanning programs and their effects on boot time, computational performance and disk access times. The results are very interesting and the methodology can be applied to any programs or processes that you might find questionable on your own machine. Of particular interest is a simple timing program which checks the arithmetic performance of your CPU and times disk access on your machine. This is a recommended article for anyone with an interest in keeping their machines running at a reasonable rate.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-3260723713129423353?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/3260723713129423353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=3260723713129423353' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3260723713129423353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/3260723713129423353'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/07/what-really-slows-windows-down.html' title='What Really Slows Windows Down'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-4409422678829635010</id><published>2008-06-30T08:32:00.000-07:00</published><updated>2008-06-30T09:11:18.552-07:00</updated><title type='text'>How to check links - using a simple bash script</title><content type='html'>If your web site has a page of external links it is useful to have an automated method to check that the links are valid, because you cannot tell when a link will change or be taken over by another site. The alternative to automation is a tedious session of pointing, clicking and 'back'-ing. Of course, there are some heavy duty link checking programs which can automate the task for you - but even they tend to be a little tedious to use, meaning that your link checking might never get done, and your site would start to exhibit decaying links, a sure sign of neglect and carelessness. The following script assumes that you have a page called 'links.htm' which contains your external links. It then processes the strings which begin with http within this page - to pull down just a single page from each site, which it stores as www.site.com.tmp in the current directory. If a site is off line, or a page has moved on a given site, then you will see evidence of these facts in the output of the script. Rather than use 'lynx' or 'curl' to download the target page, the scripts uses 'telnet' and individual requests to the http server. This is done because it is a lot more educational than simply using 'lynx' or 'curl' and having some understanding of http is a good thing! The script took some inspiration from ancient variants which have existed on the web for more than 15 years - but is modified to not use temporary files. If you have any problems with it - please don't hesitate to let me know. At some point, I may put into the script a retry if the current sleep times prove to be ineffective in producing reliable page downloads. However, in its current form the script seems to work fine for my links.htm page - it gives me the confidence to extend the page knowing that I will be able to keep it up to date despite the ever changing web. Here is the script.&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;grep href links.htm \&lt;br /&gt;     | sed 's/^.*href="//' \&lt;br /&gt;     | sed 's/".*$//' \&lt;br /&gt;     | grep -v "\.\." | while read siteline&lt;br /&gt;do&lt;br /&gt;  nohttp=`echo $siteline|sed 's|http://||g'`&lt;br /&gt;  site=`echo $nohttp|sed 's|/.*$||g'`&lt;br /&gt;  item=`echo $nohttp|sed 's|/| |'  | awk '{ print "/"$2 }'`&lt;br /&gt;  echo Checking $site $item&lt;br /&gt;  (echo "open $site 80"; sleep 3; echo "GET $item HTTP/1.0"; \&lt;br /&gt;   echo -n "User-Agent: Mozilla/5.0 "; \&lt;br /&gt;   echo -n "(Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4)"; \&lt;br /&gt;   echo " Gecko/20070515 Firefox/2.0.0.4"; \&lt;br /&gt;   echo "Host: $site"; echo; echo; sleep 5) | telnet &amp;gt; telnet.tmp&lt;br /&gt;  grep "404" telnet.tmp | grep "Not Found"&lt;br /&gt;  cp telnet.tmp $site.tmp&lt;br /&gt;  echo "This site produced" `wc -c telnet.tmp | awk '{print $1}'` "bytes"&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-4409422678829635010?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/4409422678829635010/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=4409422678829635010' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4409422678829635010'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4409422678829635010'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/06/how-to-check-links-using-simple-bash.html' title='How to check links - using a simple bash script'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-1155279214833383419</id><published>2008-06-13T23:49:00.000-07:00</published><updated>2010-06-13T23:50:16.061-07:00</updated><title type='text'>How to Make Looping VCDs</title><content type='html'>As discussed in other notes here, the VCD format allows you to play videos and movies on your DVD player using normal CD-R media. One thing that you might want to do is create a continuous loop VCD - you can use that to give yourself a constant background of favorite material from YouTube, create a looping product demonstration for a show or for a store, or even turn your television into a fishtank - using a movie or two of aquatic life. The VCD format can accommodate menus and considerable complexity. All the information that you need to understand VCD menus is &lt;a href="http://www.pcbypaul.com/absolute/programs/avidemux/capture2SVCD.xml.html"&gt;here&lt;/a&gt; on PCByPaul and &lt;a href="http://www.geocities.com/medinotes/vcd/general_xml_structure.html"&gt;here&lt;/a&gt; (in detail). However, if you want to create a continuous loop playing video using VCD - you just need to do the following. Start with two flash movies, say video1.flv and video2.flv. First, create the necessary VCD format mpg files.&lt;pre&gt;&lt;br /&gt;ffmpeg.exe -i video1.flv -target ntsc-vcd -ac 2 video1.mpg&lt;br /&gt;ffmpeg.exe -i video2.flv -target ntsc-vcd -ac 2 video2.mpg&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now you need to create a template xml file to control vcdimager's production of your movie. You use&lt;pre&gt;&lt;br /&gt;vcdxgen -t vcd2 video1.mpg video1.mpg&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This command creates a file called videocd.xml. You need to change this slightly to create the looping effect. To do this, remove the &amp;lt;playlist&amp;gt; portions in the pbc section in the file. Replace these with &amp;lt;selection&amp;gt; items, as follows:&lt;pre&gt;&lt;br /&gt;    &amp;lt;selection id="lid-000"&amp;gt;&lt;br /&gt;      &amp;lt;next ref="lid-001"/&amp;gt;&lt;br /&gt;      &amp;lt;timeout ref="lid-001"/&amp;gt;&lt;br /&gt;      &amp;lt;wait&amp;gt;1&amp;lt;/wait&amp;gt;&lt;br /&gt;      &amp;lt;play-item ref="sequence-00"/&amp;gt;&lt;br /&gt;    &amp;lt;/selection&amp;gt;&lt;br /&gt;    &amp;lt;selection id="lid-001"&amp;gt;&lt;br /&gt;      &amp;lt;next ref="lid-000"/&amp;gt;&lt;br /&gt;      &amp;lt;timeout ref="lid-000"/&amp;gt;&lt;br /&gt;      &amp;lt;wait&amp;gt;1&amp;lt;/wait&amp;gt;&lt;br /&gt;      &amp;lt;play-item ref="sequence-01"/&amp;gt;&lt;br /&gt;    &amp;lt;/selection&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Take a look at the changes and you will see how the looping effect is achieved. When the first section times out, it moves to 'lid-001' (the next section). When the second section times out, it moves to 'lid-000' (the first section) - and so on.&lt;br /&gt;Once you have updated videocd.xml, you can use it to create the image to be burned to cd with:&lt;pre&gt;&lt;br /&gt;vcdxbuild videocd.xml&lt;br /&gt;&lt;/pre&gt; &lt;br /&gt;And then finally burn the VCD with:&lt;pre&gt;&lt;br /&gt;cdrdao write --device 1,0,0 --driver generic-mmc-raw \&lt;br /&gt;  --force --speed 4 videocd.cue&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now you can create some nice endless, atmospheric video backgrounds - and display them on your large screen television. If you need more than 2 movies - just create the appropriate number of &amp;lt;selection&amp;gt; sections and make sure that the last one times out to the first.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-1155279214833383419?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/1155279214833383419/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=1155279214833383419' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1155279214833383419'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1155279214833383419'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/06/how-to-make-looping-vcds.html' title='How to Make Looping VCDs'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-4077674258533193821</id><published>2008-06-13T23:47:00.000-07:00</published><updated>2010-06-13T23:50:40.403-07:00</updated><title type='text'>How to Make a Looping Photo VCD</title><content type='html'>Do you want to make a VCD that will display photographs on your DVD player? The following recipe is not elaborate. It doesn't deal with a sound track or with transition effects between images. However, if you want to share photographs using a DVD player and a television - this method is effective and - this is the simplest method that I could find. If you have suggestions for improvements, please let me know!&lt;br /&gt;&lt;br /&gt;First, prepare a set of jpg files. It is convenient to do this with sequentially named files - because each jpg file will be turned into an mpg file, and the mpg files will be included in the VCD. Here is a short script which will name your jpg files IMG0001.jpg, IMG0002.jpg, etc. This script renames your existing jpg files in this directory (so work with copies of your photographs).&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;count=1&lt;br /&gt;BASE=IMG&lt;br /&gt;for file in `ls -d *.jpg | sort -r`&lt;br /&gt;do&lt;br /&gt;  echo $file&lt;br /&gt;  count=`expr $count + 1`&lt;br /&gt;  PADDED=`printf "%04d" $count`&lt;br /&gt;  name=$BASE$PADDED".jpg"&lt;br /&gt;  mv -i $file $name&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Having named the jpg files in a convenient way - we then need to insure that they are appropriately scaled. Again a short script comes in handy.&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;for file in *.jpg&lt;br /&gt;do&lt;br /&gt;  echo $file&lt;br /&gt;  jpegtopnm $file | pnmscale  -xysize 768 576 &gt; tmp.pnm&lt;br /&gt;  pnmtojpeg tmp.pnm &gt; `basename $file .jpg`.scaled.jpg&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now your jpg files are appropriately named, and appropriately sized, the next step is to create a matching set of short mpg files. To do this we will make use of ffmpeg. Here is the script to achieve this.&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;for file in IMG*.scaled.jpg&lt;br /&gt;do&lt;br /&gt;  echo $file&lt;br /&gt;  count=0&lt;br /&gt;  while true&lt;br /&gt;  do&lt;br /&gt;    count=`expr $count + 1`&lt;br /&gt;    if [ $count -eq 21 ]&lt;br /&gt;    then&lt;br /&gt;      break&lt;br /&gt;    fi&lt;br /&gt;    cp $file tmp$count.jpg&lt;br /&gt;  done&lt;br /&gt;  ffmpeg -f image2 -i tmp%d.jpg -target \&lt;br /&gt;  ntsc-vcd `basename $file .test.jpg`.mpg&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now you need to create the 'selection' segments for the xml file that we will use to  create the VCD image. Another script is needed. Note that here the number of images is 19 in the example that I used, and this means that there is an '18' in the script - you will probably need to change this for your files.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;#NB one less that the number of mpg's to be &lt;br /&gt;#included as the vcd xml is zero based&lt;br /&gt;max=18&lt;br /&gt;count=0&lt;br /&gt;while true&lt;br /&gt;do&lt;br /&gt;  thissec=`printf "%03d" $count`&lt;br /&gt;  countp1=`expr $count + 1`&lt;br /&gt;  nextlid=`printf "%03d" $countp1`&lt;br /&gt;  sequeid=`printf "%02d" $count`&lt;br /&gt;  if [ $count -eq $max ] &lt;br /&gt;  then&lt;br /&gt;     nextlid="000"&lt;br /&gt;  fi&lt;br /&gt;  cat &amp;lt;&amp;lt;! &lt;br /&gt;      &amp;lt;selection id="lid-$thissec"&amp;gt;&lt;br /&gt;        &amp;lt;next ref="lid-$nextlid"/&amp;gt;&lt;br /&gt;        &amp;lt;timeout ref="lid-$nextlid"/&amp;gt;&lt;br /&gt;        &amp;lt;wait&amp;gt;5&amp;lt;/wait&amp;gt;&lt;br /&gt;        &amp;lt;play-item ref="sequence-$sequeid"/&amp;gt;&lt;br /&gt;      &amp;lt;/selection&amp;gt;&lt;br /&gt;!&lt;br /&gt;  count=`expr $count + 1`&lt;br /&gt;  if [ $count -gt $max ] &lt;br /&gt;  then&lt;br /&gt;      break&lt;br /&gt;  fi&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This script will write to standard out a revised set of &amp;lt;selection&amp;gt; items to put into the xml file needed to create the VCD. Execute the command, capture its output to a file, and edit this file into the videocd.xml file created with the following command.&lt;pre&gt;&lt;br /&gt;vcdxgen -t vcd2 IMG0002.mpg IMG0003.mpg &lt;br /&gt;&lt;/pre&gt; (include all the mpg files on the command line).&lt;br /&gt;Edit the selection sections into the resulting videocd.xml file - in the place of the playlist sections. Now you can create the VCD image and cue file with:&lt;pre&gt;&lt;br /&gt;vcdxbuild videocd.xml&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;and burn the resulting image with&lt;pre&gt;&lt;br /&gt;cdrdao write --device 1,0,0 --driver generic-mmc-raw \&lt;br /&gt;  --force --speed 4 videocd.cue&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;As noted in the introduction, this is not a fancy approach - but it makes nice simple photograph VCDs. In the future I may create a single script which does the work - and improve its error checking.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-4077674258533193821?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/4077674258533193821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=4077674258533193821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4077674258533193821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4077674258533193821'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/06/how-to-make-looping-photo-vcd.html' title='How to Make a Looping Photo VCD'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2880847528224910206</id><published>2008-06-13T11:40:00.000-07:00</published><updated>2008-06-13T11:46:18.307-07:00</updated><title type='text'>Backing up a USB to a Gmail account</title><content type='html'>A few days ago, I found that my trusted 1 GB USB drive was exhibiting apparent corruption. Some of the directories gave listings in which the file names were garbled. Fortunately &lt;em&gt;I think&lt;/em&gt; that the files in these directories weren't mission critical. However, I became concerned that valuable files that were on the root of USB drive might disappear too. I was on the road - so my back up options were limited. However, the following commands rapidly salvaged, compressed, encrypted, and stored on gmail what was left on my drive. These commands might be useful to you, if you find yourself in similar circumstances. And, if you know what causes USB directory listing corruption, and how to avoid it, and/or recover from it, please let me know!&lt;pre&gt;&lt;br /&gt;# Commands to extract data from a USB drive and copy to gmail for storage&lt;br /&gt;# Firstly, copy what you can from your USB drive to a directory &lt;br /&gt;# called (in this case) 'save'&lt;br /&gt;mkdir save&lt;br /&gt;cd save&lt;br /&gt;cp -r e:/stuff .&lt;br /&gt;&lt;br /&gt;# create a tar file of that saved directory&lt;br /&gt;cd ..&lt;br /&gt;tar -cvzf save.tgz save&lt;br /&gt;&lt;br /&gt;# encrypt the tgz file&lt;br /&gt;ccrypt -e &lt; save.tgz &gt; save.tgz.backup&lt;br /&gt;&lt;br /&gt;# split the tgz file into ~ 10 MB chunks&lt;br /&gt;split -b10000000 save.tgz.backup &lt;br /&gt;&lt;br /&gt;# now mail the chunks to your gmail account&lt;br /&gt;&lt;br /&gt;for file in x*&lt;br /&gt;do&lt;br /&gt;  echo $file&lt;br /&gt;  echo $file | mutt -a $file -s $file youremailaddress@gmail.com&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;# To reassemble the information on the USB drive you will need to download&lt;br /&gt;# each of the chunks, reassemble them into the encrypted .tgz file, with: &lt;br /&gt;&lt;br /&gt;cat x* &gt; temp.tgz.backup&lt;br /&gt;&lt;br /&gt;# then decrypt them with: &lt;br /&gt;&lt;br /&gt;ccrypt -d &lt; temp.tgz.backup &gt; temp.tgz&lt;br /&gt;&lt;br /&gt;# and finally un-tar the data&lt;br /&gt;&lt;br /&gt;tar xvof ./temp.tgz&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2880847528224910206?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2880847528224910206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2880847528224910206' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2880847528224910206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2880847528224910206'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/06/backing-up-usb-to-gmail-account.html' title='Backing up a USB to a Gmail account'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-6611308144179233397</id><published>2008-01-01T09:32:00.001-08:00</published><updated>2008-01-01T09:57:29.429-08:00</updated><title type='text'>A simple script for GTD actions</title><content type='html'>Almost everyone has by now run into the Getting Things Done (GTD) philosophy of David Allen. But just in case you have managed to avoid GTD it is the latest in a long line of time management and organizational schemes promoted and popularized by the ever productive, communicative and entrepreneurial North Americans. One of the vices of GTD (and Franklin-Covey, Day Runner, Filo Fax and friends) is the cargo cult/fashion angle, whereby tools and labeling machines become the essential focus of the philosophy. With GTD, which is very popular in computer literate circles, there are a variety of software products designed to support the GTD prescriptions. I have tried a few of these and generally they are overly complicated and not particularly efficient - the learning curve is high and the return on the investment doesn't seem to warrant that investment. The Geek community as whole has encountered this problem and has responded with the concept that an ascii to do list was the way to solve the problem. However, the Geekification drive rapidly morphed this into the &lt;a href="http://todotxt.com/"&gt;todo.txt/todo.sh&lt;/a&gt; shell script espoused by LifeHacker. I have tried this script too - but found that the script was so complicated that its performance was poor. However, recently I found a script which is simple enough to be fast and easy to learn - and yet performs well and is therefore very useful. It is called &lt;a href="http://apache.warmfuzzy.com/gtd/"&gt;gtd.sh&lt;/a&gt;. Thank you to Tammy Cravit for publishing the script. I have made one or two minor modifications for my own use - and I have been happily using it for a couple of months. If you are interested in GTD and feel that &lt;a href="http://todotxt.com/"&gt;todo.txt/todo.sh&lt;/a&gt; may be a little too complex - try Tammy's &lt;a href="http://apache.warmfuzzy.com/gtd/"&gt;gtd.sh&lt;/a&gt; script.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-6611308144179233397?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/6611308144179233397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=6611308144179233397' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6611308144179233397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6611308144179233397'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2008/01/simple-script-for-gtd-actions.html' title='A simple script for GTD actions'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-9196255955741106290</id><published>2007-12-30T11:13:00.000-08:00</published><updated>2007-12-30T11:38:25.142-08:00</updated><title type='text'>Using reTune and rebulid_db on your iPod and iPod Shuffle</title><content type='html'>As mentioned in an earlier post, I don't want to use iTunes with my iPod shuffle or iPod proper. Fortunately, Martin Fiedler has created two solutions which make the iPod technology independent of iTunes. For the shuffle - follow the simple instructions here: &lt;a href="http://shuffle-db.sourceforge.net/"&gt;http://shuffle-db.sourceforge.net&lt;/a&gt; and then charging your shuffle is as simple as copying mp3 files to the shuffle and then ./rebuild_db.py in its root directory.  Your mp3 files are kept wherever you want - no mysterious transformations to names or locations is required. For the third generation iPod that I possess, I can't use quite the same approach. iTunes transforms the name and location of your mp3 files and you need to use reTune. You can get a copy of reTune here: &lt;a href="http://retune.sourceforge.net/"&gt;http://retune.sourceforge.net&lt;/a&gt; - and once you have it your can copy .mp3 files to your iPod and then make them available for playback by typing ./retune.py in the root directory. When you want to change file positions or add or remove files from the iPod - you need to reverse the Apple mandated name and location transformation by typing ./retune.py again, and then you can manage your music files. A big 'Thank You' to Martin Fiedler for creating these very useful tools!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-9196255955741106290?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/9196255955741106290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=9196255955741106290' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/9196255955741106290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/9196255955741106290'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/12/using-retune-and-rebuliddb-on-your-ipod.html' title='Using reTune and rebulid_db on your iPod and iPod Shuffle'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-9005751402698006159</id><published>2007-12-30T10:55:00.000-08:00</published><updated>2007-12-30T11:03:48.888-08:00</updated><title type='text'>Converting .m4a files to .mp3 format</title><content type='html'>If you have used iTunes in default mode to create a library of music for your iPod you may need to convert the resulting .m4a files to .mp3 format. MPlayer can do this for you - here are the necessary commands, in the form of a simple shell script:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;for FILE in *.m4a&lt;br /&gt;do&lt;br /&gt;  mplayer.exe -vc null -vo null -ao pcm:fast $FILE -ao pcm:file="temp.wav"&lt;br /&gt;  lame -h -V2 --vbr-new temp.wav `basename $FILE .m4a`.mp3&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;You will be left with a temp.wav file in the current directory - delete it (and the .m4a files, if you want) after the conversion&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-9005751402698006159?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/9005751402698006159/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=9005751402698006159' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/9005751402698006159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/9005751402698006159'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/12/converting-m4a-files-to-mp3-format.html' title='Converting .m4a files to .mp3 format'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-6311526441852855630</id><published>2007-12-29T18:36:00.000-08:00</published><updated>2007-12-29T19:14:10.215-08:00</updated><title type='text'>Converting CDs to MP3 format using cd-paranoia</title><content type='html'>Recently, I have been making use of a third generation, 15 GB, iPod. Accordingly the problem of filling the iPod with .mp3 files emerges - and the standard solution for this is iTunes. Although many people rave about iTunes - I found it a very confusing program - I was never sure what was going to happen when a 'synchronization' occurred. I don't have much local disk space on the machine that could run iTunes and as iTunes keeps a complete copy of what is on your iPod - this seemed to be an inefficient consumer of space (after all, the CDs themselves form an efficient backup of what is stored on your iPod). Additionally iTunes is a little too obsessed with its online big brother(s) at Apple in the form of adverts and update information. So, what do you do if you don't want to use iTunes? Firstly, use cd-paranoia to extract .wav files from your CDs. This is a very simple operation:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;cd-paranoia -B&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Then convert the .wav files to .mp3 using lame. The command for this is simply:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;lame -h input.wav output.mp3&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Wrapping the lame command in a simple for loop makes the process painless. The resulting .mp3 files do not possess ID3 tags - but you can rapidly add them with another loop, using the mp3info program, for example:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;for FILE in *.mp3&lt;br /&gt;do&lt;br /&gt;  echo $FILE&lt;br /&gt;  mp3info -t `basename $FILE .mp3` -l AlbumTitle -a "Artist A" $FILE&lt;br /&gt;done&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Once you have converted the CDs to .mp3 format, you can copy them to your iPod, and delete them from your hard drive. You will need to convince the iPod to allow you to  play the tunes - without using iTunes - there are several programs that accomplish this by building the necessary description files for the on iPod software. I have been using 'retune' (see a coming post) and it works very well indeed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-6311526441852855630?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/6311526441852855630/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=6311526441852855630' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6311526441852855630'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/6311526441852855630'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/12/converting-cds-to-mp3-format-using-cd.html' title='Converting CDs to MP3 format using cd-paranoia'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2473767328394196284</id><published>2007-07-29T12:44:00.000-07:00</published><updated>2007-08-05T13:32:20.757-07:00</updated><title type='text'>How to split and join mp3 files</title><content type='html'>I recently needed to extract the important portion of one mp3 file. I also had the opposite problem of joining two related mp3 files. Here is how these operations can be achieved. Firstly, to extract the important portion of a given mp3 file you can use the following command:&lt;pre&gt;&lt;br /&gt;ffmpeg -i input.mp3 -ss "0:35:26" -t 724 output.mp3&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This starts the extraction at 35 minutes 26 seconds into the mp3 file called input.mp3. The extraction then runs for a duration of 724 seconds, and the output is stored in output.mp3.&lt;br /&gt;&lt;br /&gt;To combine two mp3 files, you can simply concatenate the individual mp3 files:&lt;pre&gt;&lt;br /&gt;cat file1.mp3 file2.mp3 &gt; file3.mp3&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2473767328394196284?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2473767328394196284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2473767328394196284' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2473767328394196284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2473767328394196284'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/07/how-to-split-and-join-mp3-files.html' title='How to split and join mp3 files'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5046707424566389532</id><published>2007-07-22T08:04:00.000-07:00</published><updated>2007-07-22T08:18:21.963-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='lame mp3 resample'/><title type='text'>Converting a talk show mp3 file to reduce its size</title><content type='html'>Say you want to reduce the size of a talk show mp3 file to maximize the number of mp3 files that you can load on your player. How do you do that? Here is a lame command:&lt;pre&gt;&lt;br /&gt;lame -b 40 -m m --resample 22.05 -S KentBeck_Large.mp3 KentBeck.mp3&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This reduces the bit rate to 40 kbps (-b 40), sets the mode to mono (-m m), resamples at a frequency of 22.05 kHz (--resample 22.05), and doesn't print anything to the screen (-S). For the 36 megabyte file in this example - this saves 13.75 megabytes - and does not appreciable change the quality of the recording.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5046707424566389532?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5046707424566389532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5046707424566389532' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5046707424566389532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5046707424566389532'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/07/converting-talk-show-mp3-file-to-reduce.html' title='Converting a talk show mp3 file to reduce its size'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-4062326229592713336</id><published>2007-07-15T16:45:00.001-07:00</published><updated>2007-07-15T20:24:27.295-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rstp mplayer mp3'/><title type='text'>More information on grabbing an rstp file as an mp3 file</title><content type='html'>Again I faced the question of off-line mp3 listening. Specifically, how to listen to a online news item from NPR - when I am constantly interrupted when I am online and would prefer something that I can listen to on my mp3 player or ipod shuffle. As the &lt;a href="http://zztools.blogspot.com/2007/07/making-mp3-file-of-rstp-stream.html"&gt;rstp post&lt;/a&gt; indicates the main problem is determining the rstp address of the media source. Here is how to determine this for the NPR site.&lt;br /&gt;1) Start up a browser listening to the interview or show that you would like to listen to off-line. (I used Firefox). This will spawn a 'player' browser window with the embedded control for the Windows Media Play or Real player within it.&lt;br /&gt;2) Use the 'Launch Standalone Player' to fire up the Real player in isolation (switch to Real player if necessary)&lt;br /&gt;3) This has the effect of downloading a 'rpm' file to your desktop - this file contains a url like this:&lt;pre&gt;http://www.npr.org/templates/dmg/dmg_em.p....&lt;/pre&gt;&lt;br /&gt;4) Actually, this string is (deliberately?) very long and complex - and you need to turn this into an rstp address. Do this using &lt;br /&gt;&lt;pre&gt;wget -O output.txt "http://www.npr.org/templates/dmg/dmg_em.p...."&lt;/pre&gt;&lt;br /&gt;I did this by just editing the rpm file, then typing &lt;pre&gt;source filename.rpm&lt;/pre&gt; Note that some additional quotes needed to be added to the http address.&lt;br /&gt;5) This wget operation is fast - and you will find in the output.txt file an rstp address that can be fed into the instructions for capturing an &lt;a href="http://zztools.blogspot.com/2007/07/making-mp3-file-of-rstp-stream.html"&gt;rstp stream&lt;/a&gt; as an mp3 file.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-4062326229592713336?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/4062326229592713336/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=4062326229592713336' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4062326229592713336'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/4062326229592713336'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/07/more-information-on-grabbing-rstp-file.html' title='More information on grabbing an rstp file as an mp3 file'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-698425719671839017</id><published>2007-07-08T15:39:00.000-07:00</published><updated>2007-08-12T13:08:56.373-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rstp mplayer mp3'/><title type='text'>Making an mp3 file of a rstp stream</title><content type='html'>I found myself wanting to make a permanent copy of a talk given on the web using an rstp address. You might want to do this to be able to share the talk with a friend or colleague - or to view later offline from the web. Here is how this objective can be achieved. The first step is discover the rstp address of the file. This is a little painful - but should always be possible. What worked for me was to launch the talk in a browser (which on windows fired up the Real Player embedded in the browser). This gave me an option to launch the Real Player browser, and this in turn gave me the option to share the presentation with a friend using email. I took this option - and finally ended up with an email message which revealed the rstp://... information required to capture the file. This looks like an http:// address - but to grab the file you need a program that can talk rstp:// - so wget etc. cannot be used. &lt;a href="http://armory.nicewarrior.org/projects/cygmp/"&gt;MPlayer&lt;/a&gt; does have the requisite functionality though, here is the command line to capture the file:&lt;pre&gt;&lt;br /&gt;mplayer -noframedrop -dumpfile example.rm \&lt;br /&gt;-dumpstream rtsp://"long complicated address/filename.rm"&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Then you need to convert the captured example.rm file to wav format:&lt;pre&gt;&lt;br /&gt;mplayer -ao pcm example.rm&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Initially that failed with 'Cannot find codec for audio format 0x72706973' for me - that was a little tedious - but it was cured by returning to the official Mplayer &lt;a href="http://www.mplayerhq.hu/DOCS/codecs-status.html"&gt;site&lt;/a&gt; and just putting the sipr*.dll (from the codecs zip file) in the Mplayer directory. Finally,&lt;pre&gt; &lt;br /&gt;mplayer -ao pcm example.rm&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;created 'audiodump.wav' which lame was able to turn into a mp3 file as required&lt;pre&gt;&lt;br /&gt;lame -h audiodump.wav example.mp3&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;So, it takes a few steps - but eventually you get the offline usable mp3 file.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-698425719671839017?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/698425719671839017/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=698425719671839017' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/698425719671839017'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/698425719671839017'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/07/making-mp3-file-of-rstp-stream.html' title='Making an mp3 file of a rstp stream'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5890938078969415886</id><published>2007-06-16T19:06:00.000-07:00</published><updated>2007-06-24T09:10:54.735-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VCD Cygwin YouTube'/><title type='text'>How to create a VCD</title><content type='html'>Almost all DVD players can also play VCD format disks. VCD format disks are made with normal CD media and so are less expensive than DVD disks. VCD cannot store as much information as DVD (which translates to shorter movie lengths). But if you are making DVDs which do not run for hours - you can probably use VCD instead of DVD and save money. Here are the commands necessary to create a VCD disk from a flash (flv) file. We will take the example flash file 'example.flv'. First you need to convert your flash file to mpg, and at the same time we will also use ffmpeg to convert the flash file to the standard required by VCD (using the -target ntsc-vcd option). I found that it was also necessary to make sure that there were two audio channels (the -ac 2 option).&lt;pre&gt;&lt;br /&gt;ffmpeg.exe -i example.flv -target ntsc-vcd -ac 2 temp.mpg&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;The next step is create the VCD image. The tool to use for this is "vcdimager". The following command line takes the temp.mpg file and converts it to a disk image/cue file pair that can be used to burn the VCD disk.&lt;pre&gt;&lt;br /&gt;vcdimager -t vcd2 -l "Example" -c vcd.cue -b vcd.bin temp.mpg&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;(If you have multiple mpg files to add to the disk just replace 'temp.mpg' with 'temp1.mpg temp2.mpg temp3.mpg' etc.) For the burn operation, use cdrdao. Here is the command line that I used on Cygwin on Windows XP.&lt;pre&gt;&lt;br /&gt;cdrdao write --device 1,0,0 --driver generic-mmc-raw \&lt;br /&gt;       --force --speed 4 vcd.cue&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Getting cdrdao working on Cygwin took a minor amount of effort - I will post a note on how to do that in the near future. On Linux you should have no problems whatsoever. If you follow these directions, you'll be able to save and share VCDs of anything that starts life as a flash movie file (flv) - or any other format that ffmpeg can deal with.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5890938078969415886?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5890938078969415886/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5890938078969415886' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5890938078969415886'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5890938078969415886'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/06/how-to-create-vcd.html' title='How to create a VCD'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-938670435039597926</id><published>2007-06-13T23:54:00.000-07:00</published><updated>2010-06-13T23:56:24.008-07:00</updated><title type='text'>A Little Recursion</title><content type='html'>Here is a short script which goes through a directory structure and operates on mp3 or MP3 files. It uses standard bash methods - and I am posting it here in case you are interested - of course you can achieve the same effect with&lt;pre&gt;&lt;br /&gt;find . -name "*.[mM][pP]3" -print&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;but this script is more fun - and substantially slower - giving you time to think about other things - which is often useful(!) The script prints out the names of the files it encounters - you could have it do something else - like report checksums (cksum) or modification times (ls -lt). The necessary lines for these operations have been commented out in the script. You can use this script as a template to carry out other file based scripted operations. Also note that it won't find files with the following cases in their extensions: mP3 or Mp3.&lt;pre&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;scandir () {&lt;br /&gt;for item in *&lt;br /&gt;do&lt;br /&gt;  if [ -f "$item" ] ; then&lt;br /&gt;    curdir=`pwd`&lt;br /&gt;    nfile=`expr $nfile + 1`&lt;br /&gt;    EXT=`echo "$item" | rev | cut -c 1-3 | rev`&lt;br /&gt;    if [ $EXT = "mp3" -o $EXT = "MP3" ]&lt;br /&gt;    then&lt;br /&gt;      echo "$curdir"/"$item" | cut -c${ld1}-&lt;br /&gt;#      ls -lt "$curdir"/"$item"&lt;br /&gt;#      cksum "$curdir"/"$item"&lt;br /&gt;    fi&lt;br /&gt;  elif [ -d "$item" ] ; then&lt;br /&gt;    cd "$item"&lt;br /&gt;    scandir&lt;br /&gt;    ndirs=`expr $ndirs + 1`&lt;br /&gt;    cd ..&lt;br /&gt;  fi&lt;br /&gt;done&lt;br /&gt;}&lt;br /&gt;startdir=`pwd`&lt;br /&gt;ld1=`echo $startdir | wc -c`&lt;br /&gt;ld1=`expr $ld1 + 1`&lt;br /&gt;echo "Initial directory = $startdir"&lt;br /&gt;ndirs=0&lt;br /&gt;nfile=0&lt;br /&gt;scandir&lt;br /&gt;echo "Total directories searched = $ndirs"&lt;br /&gt;echo "Total files = $nfile"&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-938670435039597926?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/938670435039597926/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=938670435039597926' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/938670435039597926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/938670435039597926'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2010/06/little-recursion.html' title='A Little Recursion'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-8346099099258251138</id><published>2007-06-04T20:23:00.000-07:00</published><updated>2007-06-23T18:11:43.860-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Cygwin screen tabs'/><title type='text'>Using GNU screen on Cygwin</title><content type='html'>GNU Screen&lt;br /&gt;&lt;br /&gt;Screen lets you work with multiple text based sessions in the linux and unix world. Cygwin doesn't yet have an official version - but screen-3.9.15 has been patched for Cygwin by Emilio Lopes - and I have started to use it. You can obtain the binaries from Emilio's web page &lt;a href="http://home.tiscali.de/emilio.lopes/screen/screen.html"&gt;here&lt;/a&gt;. There are other tabbed terminal options out there - but if you can learn the shortcuts - screen gives greater efficiency - so here are my notes/tutorial on the elementary use of screen.&lt;br /&gt;1. Obtain and install the screen binary from the link above&lt;br /&gt;2. Startup screen, by typing "screen bash --login -i"&lt;br /&gt;3. Create a new session, by typing "screen bash --login -i" (ctrl-a ctrl-c is the another method to create a new screen session - but I could not get this to give me my usual environment and aliases)&lt;br /&gt;4. Get a little output going in the new session, e.g. "while true; do date; sleep 2; done"&lt;br /&gt;5. Switch the first session: ctrl-a ctrl-spacebar&lt;br /&gt;6. Do a little work (start to think about setting up the man pages for screen)&lt;br /&gt;7. Switch back the 'output' session: ctrl-a ctrl-spacebar&lt;br /&gt;8. And observe that output has been going on in the first session behind the scenes&lt;br /&gt;9. To cut and paste between sessions use: cntrl-a [ (to enter selection mode); navigate the window with the 'vi' direction keys h,j,k,l marking text with a spacebar press, further navigation and an 'enter'. Then go to the desired window for your paste operation and type cntrl-a ]&lt;br /&gt;&lt;br /&gt;(You will want to create an alias for "screen bash --login -i", of course.)&lt;br /&gt;&lt;br /&gt;TabbedCygwin&lt;br /&gt;        &lt;br /&gt;        An alternative to GNU scree is TabbedCygwin, written by Klaus Novere, TabbedCygwin provides a .Net application which hosts rxvt. You can get the Windows installer here: http://klaus.novere.com. Once you have installed TabbedCygwin, set the Cygwin location (typically C:\Cygwin) and the rxvt command line under 'Extras/Options' and you are off and running. The command rxvt arguments I used was: "-sr -sl 10000 -rv -fn 'Courier New-18' -e bash --login -i". You can then create multiple terminal sessions easily and you have a graphical interface to switch between them. The result is convenient - I wrote this text in such a TabbedCygwin hosted terminal. I have found some problems - at some point TabbedCygwin forgot its default screen dimensions and I had to track down the appropriate part of the Windows registry to resolve the problem - but it is a neat solution - and it is easy to use.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-8346099099258251138?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/8346099099258251138/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=8346099099258251138' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8346099099258251138'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8346099099258251138'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/06/using-gnu-screen-on-cygwin.html' title='Using GNU screen on Cygwin'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-5970268882561797340</id><published>2007-05-25T17:59:00.001-07:00</published><updated>2007-07-15T20:30:23.250-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VMWare /dev/sda'/><title type='text'>How to add a disk to a linux box</title><content type='html'>I recently had occasion to add a disk to a virtual machine running Fedora Core 5. Without much system administration experience, and with an inclination emboldened by the fact that the machine was running on VMWare on a Windows XP machine, I found that the operation straightforward. Here are the necessary steps:&lt;br /&gt;1. Add the hardware to the machine (virtually in my case, using the VMWare UI)&lt;br /&gt;2. Use &lt;tt&gt;fdisk -l&lt;/tt&gt; to establish the name of the hard drive that you have hooked up to the machine. The answer in my case was &lt;tt&gt;/dev/sda&lt;/tt&gt;. The drive name information will be distinguished by the fact that the target drive is reported as not having a valid partition table&lt;br /&gt;3. Use &lt;tt&gt;fdisk /dev/sda&lt;/tt&gt; to format the new disk. This involves typing 'm' to get a help listing, 'n' to add a new partition, 'p' to selected extended, '1' to specify the starting cylinder and 'w' to write the partition information to the hard disk.&lt;br /&gt;4. Use &lt;tt&gt;mkfs.ext3 /dev/sda&lt;/tt&gt; to write a file system to the disk &lt;br /&gt;5. All that then remains is to mount the disk so that it is accessible to the OS, first create a mount point &lt;tt&gt;mkdir /mnt/disk2&lt;/tt&gt; then issue a mount command to hook the disk to the mount &lt;tt&gt;mount -t ext3 /dev/sda /mnt/disk2&lt;/tt&gt;&lt;br /&gt;Then you can go on to work with your disk space hungry software.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-5970268882561797340?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/5970268882561797340/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=5970268882561797340' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5970268882561797340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/5970268882561797340'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/05/how-to-add-disk-to-linux-box.html' title='How to add a disk to a linux box'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-8694496595043460115</id><published>2007-05-19T15:05:00.000-07:00</published><updated>2007-05-20T10:11:39.740-07:00</updated><title type='text'>Dealing with malware and 100% CPU svchost.exe</title><content type='html'>I had to spend some time getting a Windows XP box to behave correctly recently. The machine had been hooked up to the network with relaxed Internet Explorer ActiveX security settings - and was subsequently the proud possessor of malware. The effect of this intrusion was an occasional Internet Explorer redirect to a dubious website or two - typical ones were: www.jack9.com &amp; www.maniatv.com (don't visit these sites - I haven't linked them deliberately). Getting rid of the infection took some doing (and I am not yet completely sure that it is all cleaned up). Here are the things that I learnt.&lt;br /&gt;&lt;br /&gt;If you are in a malware affected state on Windows XP - a 'bad' dll can be linked into your Windows Explorer as a 'Browser Helper Object' (BHO) and this can then redirect your browser or fire up your browser to a given (target) web site. The target web site might be one that the malware writers want to increase traffic to, or might be a site which attempts to sell you software to clean up your computer - an internet protection racket! In order to find out what was going on - I had to hook up depends.exe (&lt;a href="http://www.dependencywalker.com"&gt;http://www.dependencywalker.com&lt;/a&gt;) (that is a good link!) to explorer.exe. The way to do that is to firstly start up depends.exe, then kill explorer.exe in the TaskManager - then use File/Open in depends.exe to open C:\WINDOWS\explorer.exe. Once explorer.exe is loaded in depends.exe you can then start profiling the Windows Explorer (under the Profile menu). Then you can see all the things that your Explorer is up to (the explorer.exe is firmly embedded into the Windows XP operating system). This revealed that there was a dll apparently up to no good - every second or so it was loaded into the explorer and then it was unloaded. The dll was listed as C:\WINDOWS\system32\awvtt.dll. Some googling on this revealed the deletion procedure - and because the dll had become attached to explorer.exe on start up this involved creating a batch file that deletes the files and fixes registry entries before explorer starts up - because once explorer is started - the dll's can't be deleted as they are embedded in the running Windows XP processes. The role of depends.exe here was in determining what the problem dll was - virus scans do not provide pinpoint information (and they take a long time to complete) - moreover, in this case the scanners had a hard time identifying the problem. &lt;br /&gt;&lt;br /&gt;The next problem was svchost.exe - for a while this process has been going wild at start up on this machine, occupying 100% or the CPU. Googling this indicated that this actually wasn't suspicious behavior - it was a Microsoft bug. So, I downloaded and applied the patch - and so far so good - no further svchost.exe strange behavior. The Microsoft Knowledge Base article to look for here is KB927891 - the issues listed aren't too explicit about svchost.exe - but after applying the patch the machine hasn't had that problem.&lt;br /&gt;&lt;br /&gt;So far the machine has been behaving better after these changes - but this experience has led me to worry about the Windows XP operating system - it is so easy to breach the OS and do nasty things to the machine and the users of the machine. Furthermore, it is difficult to get the machine back to normal after the bad software has hit. This comes about because: &lt;br /&gt;1) People need to install software that interacts with their browsers&lt;br /&gt;2) Microsoft needed to embed the browser in the OS to defeat the browser threat 10 years ago&lt;br /&gt;3) People need to make money one way or another - and hence scareware comes into existence&lt;br /&gt;The next step will be Microsoft making the world more secure with Vista. It is inevitable - so you might as well get with the program!&lt;br /&gt;&lt;br /&gt;And as a final activity in this project - I have installed VMWare running Ubuntu on the Windows XP machine. This seems to be a lot safer - browsers writing to system binary areas is less of a problem in the Linux world. For a great tutorial on VMWare on Windows XP, see &lt;a href="http://spyware-free.us/tutorials/vmware/"&gt;http://spyware-free.us/tutorials/vmware/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-8694496595043460115?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/8694496595043460115/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=8694496595043460115' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8694496595043460115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8694496595043460115'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/05/dealing-with-malware-and-svchostexe.html' title='Dealing with malware and 100% CPU svchost.exe'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-8097337787614296479</id><published>2007-04-22T11:32:00.000-07:00</published><updated>2007-07-15T20:38:35.970-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bash awk cygwin'/><title type='text'>Reporting duplicated file names</title><content type='html'>Here is a very simple script to report files which have the same name in a directory tree. There is no provision for spaces in file names (or other associated niceties like ampersands or dollars in files names). However, as a simple tool, to check on possible duplicates which may differ in their contents but be similar in name, it is useful.&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;find -type f | \&lt;br /&gt; awk '{print $1,$1}' | \&lt;br /&gt; sed 's# \..*/# #' | \&lt;br /&gt; sort -k2 | \&lt;br /&gt; awk '{if(prev == $2){print pl; print $0;print""}pl=$0; prev = $2}' | \&lt;br /&gt; awk '{print $2,$1}'&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Here is how it works. First "find -type f" finds files and reports their complete names including their paths. Then the awk fragment "awk '{print $1,$1}'" duplicates the file name output and the sed command "sed 's# \..*/# #'" takes the second field - and removes everything before the final '/' (this is the base file name. Then we sort "sort -k2" based on the base file name (-k2), and the longer awk fragment "awk '{if(prev == $2){print pl; print $0;print""}pl=$0; prev = $2}'" prints just those files which are duplicated. Finally we switch the fields back with awk "awk '{print $2,$1}'" - so that the output shows the duplicate file name followed by the complete pathway to the possibly duplicated files.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-8097337787614296479?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/8097337787614296479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=8097337787614296479' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8097337787614296479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8097337787614296479'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/04/reporting-duplicated-file-names.html' title='Reporting duplicated file names'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-8733871896828477513</id><published>2007-03-24T07:25:00.000-07:00</published><updated>2010-06-29T09:20:11.515-07:00</updated><title type='text'>How to save a set of files for transfer</title><content type='html'>&lt;p&gt;Say you want to save all your graphics files from one computer and transfer them to another computer - what is the best way of going about this?  There are a variety of ways to achieve the objective. If you are well organized you can just transfer one directory from one machine to the other. However, frequently we spread files around on a machine (or our various programs do) and what is first needed is a search to find the important information - then a rescue to collect it all in one place - and finally a transfer to its new location. Here is how you can go about collecting and saving all the jpg files on a machine. Firstly - although you may have a Windows machine - make sure that you have access to Cygwin so that you can use the general Linux command line options and commands that Cygwin makes available. Once that is in place the steps are:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Find the files&lt;/li&gt;&lt;li&gt;Clean up the names&lt;/li&gt;&lt;li&gt;Make the files list into a tar archive&lt;/li&gt;&lt;li&gt;Transfer the archive to the other machine (using ftp)&lt;/li&gt;&lt;li&gt;Extract the files (using tar xvzf filename.tgz)&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;How to find the files - the find command is the appropriate tool&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;find . -name "*.jpg" -print&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;Resulting in:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;$ find . -name "*.jpg" -print&lt;br /&gt;./My Music/AlbumArtSmall.jpg&lt;br /&gt;./My Music/Folder.jpg&lt;br /&gt;./My Pictures/DSC00388.jpg&lt;br /&gt;./My Pictures/MyPicture.jpg&lt;br /&gt;./My Pictures/UpgradeDialog.jpg&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;However, there are also files which have the extension .JPG and there might be files with .jpeg and any capitalization combination between these choices. So use the following find command:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;find . \( -name "*.[jJ][pP][eE][gG]" -o -name "*.[jJ][pP][gG]" \) -print&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;This might seem complex, but the segments in square brackets like [jJ] enable the find command to select files with any possible capitalization pattern of jpg or jpeg as an extension - and print out the path of the file. The output of the command is now:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;$ find . \( -name "*.[jJ][pP][eE][gG]" -o -name "*.[jJ][pP][gG]" \) -print&lt;br /&gt;./a.jpEg&lt;br /&gt;./My Music/AlbumArtSmall.jpg&lt;br /&gt;./My Music/Folder.jpg&lt;br /&gt;./My Pictures/DSC00388.jpg&lt;br /&gt;./My Pictures/IMG_0175.JPG&lt;br /&gt;./My Pictures/IMG_0176.JPG&lt;br /&gt;./My Pictures/IMG_0180.JPG&lt;br /&gt;./My Pictures/MyPicture.jpg&lt;br /&gt;./My Pictures/New Folder/IMG_0391.JPG&lt;br /&gt;./My Pictures/New Folder/IMG_0396.JPG&lt;br /&gt;./My Pictures/New Folder/IMG_0398.JPG&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;So, finding the files is no longer a problem. However, they must be saved in a suitable archive - so that they can be transfered together. There as several possible commands (zip is one possible choice). But let's use the simple tar command. To glue the find output and the tar command together use the xargs command. This takes a list of, typically files as provided by find, and passes them into a command specified as its first argument. As xargs using spaces to delmit its own arguments - it is necessary to make sure that any spaces in filesname are appropriately escaped. Hence some sed is required. The short sed script is shown below - it has the effect of escaping any non-alaphabetic or numeric character in the filename. This is a good remedy for the various other characters which may be inserted in Windows file names that on occasion can confuse the Cygwin command line (like ampersands and dollars, for instance). The sed command says 'for characters which are not alpha numeric, replace them with the character itself with a backslash prepended to the character'. (There are a total of 5 backslashes in the sed script - to escape the backslashes from the shell and to account for the backslash-1 nomenclature that sed uses to refer to the matched token (the non-alphanumeric character). So the command to output cleaned up filenames now looks like this:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;$ find . \( -name "*.[jJ][pP][eE][gG]" -o -name "*.[jJ][pP][gG]" \) \&lt;br /&gt;-print | sed -r "s/([^a-zA-Z0-9])/\\\\\1/g"&lt;br /&gt;\.\/a\.jpEg&lt;br /&gt;\.\/My\ Music\/AlbumArtSmall\.jpg&lt;br /&gt;\.\/My\ Music\/Folder\.jpg&lt;br /&gt;\.\/My\ Pictures\/DSC00388\.jpg&lt;br /&gt;\.\/My\ Pictures\/IMG\_0175\.JPG&lt;br /&gt;\.\/My\ Pictures\/IMG\_0176\.JPG&lt;br /&gt;\.\/My\ Pictures\/IMG\_0178\.JPG&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;As you can see from the output - the term 'cleaned up' is used loosely. However, the good news is that xargs can deal with this output easily. The command to hook up tar to this output is "xargs tar -rvf jpg.tar" which says from the stream of files supplied to xargs, provide them as arguments to tar, in append mode (-r) to add them to the tar archive (-f) jpg.tar. The (-v) option makes tar run in verbose mode so that you can see what it is doing. Here is the command now:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;$ find . \( -name "*.[jJ][pP][eE][gG]" -o -name "*.[jJ][pP][gG]" \) \&lt;br /&gt;-print | sed -r "s/([^a-zA-Z0-9])/\\\\\1/g" | xargs tar -rvf jpg.tar&lt;br /&gt;./a.jpEg&lt;br /&gt;./My Music/AlbumArtSmall.jpg&lt;br /&gt;./My Music/Folder.jpg&lt;br /&gt;./My Pictures/DSC00388.jpg&lt;br /&gt;./My Pictures/IMG_0175.JPG&lt;br /&gt;./My Pictures/IMG_0176.JPG&lt;br /&gt;./My Pictures/IMG_0178.JPG&lt;br /&gt;./My Pictures/IMG_0179.JPG&lt;br /&gt;./My Pictures/IMG_0180.JPG&lt;br /&gt;./My Pictures/MyPicture.jpg&lt;br /&gt;./My Pictures/New Folder/IMG_0391.JPG&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now all the jpg files are safely contained within the archive jpg.tar - and this file can be transferred to another computer. The files can then be extracted using "tar -xvf jpg.tar"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-8733871896828477513?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/8733871896828477513/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=8733871896828477513' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8733871896828477513'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/8733871896828477513'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/03/how-to-save-set-of-files-for-transfer.html' title='How to save a set of files for transfer'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2817357825200672788</id><published>2007-03-03T12:26:00.000-08:00</published><updated>2007-07-15T20:32:27.589-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='YouTube MPG MP3 VCD DVD'/><title type='text'>Making the most of YouTube</title><content type='html'>&lt;p&gt;So when YouTube came out and attracted so much attention we were amazed. So much great content was suddenly available - The Jam on the Marc Bolan show, any number of Blackadder episodes and the Animaniacs - all present and available for use online, without advertising breaks! Online was the only problem because not everything is connected to the net all the time and the devices best able to deal with video content, apart from computers, like iPods, PSPs and televisions were not able to benefit from all that content availability. So, you might ask, given YouTube, is it possible to make use of this content offline?&lt;/p&gt;&lt;p&gt;The answer is yes - absolutely! YouTube is effectively storing the video information and transferring it to your browser for viewing. The video content can be readily transformed and used in a variety of ways that build on the basic mechanism that YouTube uses to publish the information to you in the first place. If you look around on your machine while viewing a video you will find that the video is transferred to your machine - to an obscure folder. For example, on Windows using Firefox, you will find the flash video in a location such as this: Documents and Settings\username\LocalSettings\ApplicationData\Mozilla\Firefox\Profiles\&lt;br /&gt;54mhz57r.default\Cache\2F82C2A7d01 (of course, this location will vary depending on the browser that you are using, the operating system of your computer, the video that you are viewing, and your user name). Furthermore, if you look at the source of the html of a page which displays a YouTube video you can decode the location of the flash video that YouTube is serving to your client browser to download to this folder. Sites like savetube and keepvid take a look at the html source of a given video and decode the download location for you.&lt;/p&gt;&lt;p&gt;So, you can readily get flash video copies from YouTube - they are downloaded when you watch a video behind the scenes and sites like savetube and keepvid make it easy to go from a video url to the download location (so that you can download without having to view first). Once you have &lt;a href="http://zztools.blogspot.com/2006/09/how-to-save-flash-movie-from-youtube.html"&gt;saved a flash video to your disk&lt;/a&gt; - what can you do next? Your options are:&lt;/p&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Use a flash viewer to view the video offline&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Convert the flash video to another format&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;p&gt;The disadvantage of flash video is that it cannot be used by the Windows Media Player and a variety of other quality video players which are available on Windows and other platforms. Additionally there are few editing options available - the format is a little too proprietary to be a useful format to save. Flash is very compressed - and this is its main advantage - it allows YouTube to reduce disk space requirements on its servers as it saves those terabytes of everybody's video data. What can you convert flash video to? Among your options are:&lt;/p&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://zztools.blogspot.com/2006/09/how-to-convert-flash-movie-into-mpeg.html"&gt;Convert flash to mpeg (MPG)&lt;/a&gt; (for use in Windows Media Player, for example)&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://zztools.blogspot.com/2006/09/how-to-make-mp3-file-from-mpg-file.html"&gt;Convert MPG to MP3&lt;/a&gt; (for use in iPods or MP3 players)&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://zztools.blogspot.com/2006/09/how-to-make-dvd-from-set-of-mpg-files.html"&gt;Convert MPG files to DVD&lt;/a&gt; (for use in your normal DVD player and TV to watch your favorite video clips)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;p&gt;I have collected technical information on how to make these transformations on this site. I will add to the information here - so check back if you are interested in making the most of YouTube and online video in general. You will see that these methods rely on free open source tools - these can be used on Linux and with Cygwin on Windows with ease.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2817357825200672788?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2817357825200672788/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2817357825200672788' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2817357825200672788'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2817357825200672788'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/03/making-most-of-youtube.html' title='Making the most of YouTube'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-1300277500081783851</id><published>2007-01-13T10:23:00.000-08:00</published><updated>2007-07-15T20:43:57.740-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bash awk cygwin'/><title type='text'>Removing duplicated files - keeping your files tidy with filetidy</title><content type='html'>&lt;p&gt;Frequently you find that files have been duplicated on your various machines. This happens when trees of files are moved from machine to machine and work begins to diverge within these trees. Rather than manually reconcile such work activities (which is slow and difficult) - it is often useful to rapidly find duplicated files - information on file duplicates gives you a sense of directories or folders that can be deleted - or you can simply remove the duplicates automatically. Here is a script, called filetidy, makes use of find, sort, cksum and awk to automate the analysis of duplicate files.&lt;/p&gt;&lt;p&gt;It works in in the following manner: a long listing of file information is created using find - this information is sorted, and then files which are the same size (and therefore could be duplicates), are tested for similarity using cksum. The output is in the form of a list of diff commands and a list of commented 'rm' commands. You can use the output to confirm that files are indeed duplicates - and then once you have decided which files to retain - to delete the duplicates.&lt;/p&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;# 1. find files only and report long listing&lt;br /&gt;# 2. sort based on size field&lt;br /&gt;# 3. process same size files using awk and cksum&lt;br /&gt;# 4. output a script which diffs files for confirmataion and &lt;br /&gt;#    can delete files with editing&lt;br /&gt;&lt;br /&gt;find -type f -ls | sort -k7 | \&lt;br /&gt;awk 'BEGIN{&lt;br /&gt;  prevsize=-1&lt;br /&gt;  ncount=0&lt;br /&gt;}&lt;br /&gt;function ckfile(filename,   cmd)&lt;br /&gt;{&lt;br /&gt;    if (length(ck[filename])==0){&lt;br /&gt;        cmd="cksum " filename&lt;br /&gt;        cmd | getline ckout&lt;br /&gt;        close(cmd)&lt;br /&gt;        split(ckout, array," ")&lt;br /&gt;        ck[filename]=array[1]&lt;br /&gt;    } &lt;br /&gt;    return ck[filename]&lt;br /&gt;}&lt;br /&gt;{&lt;br /&gt;    filesize = $7&lt;br /&gt;    for(i=1;i&lt;=10;i++){ # remove all fields except the filename&lt;br /&gt;        $(i)="";&lt;br /&gt;    }&lt;br /&gt;    file = $0&lt;br /&gt;    gsub("\\$", "\\$", file)     # deal with dollars in filename&lt;br /&gt;    gsub("\\(", "\\(", file)     # and parentheses&lt;br /&gt;    gsub("\\)", "\\)", file) &lt;br /&gt;    if(match(file,"&amp;")) next;    # avoid files with ampersands&lt;br /&gt;    if(match(file,"\047")) next; # avoid files with apostrophes&lt;br /&gt;    sub("^[ \t]*", "", file)     # remove leading white space&lt;br /&gt;    ncount++&lt;br /&gt;    filelistsize[ncount]=filesize&lt;br /&gt;    filelistname[ncount]=file&lt;br /&gt;}&lt;br /&gt;END{&lt;br /&gt;    i=1&lt;br /&gt;    while(i&lt;=ncount){&lt;br /&gt;        filelistname[i]&lt;br /&gt;        j = i+1&lt;br /&gt;        while( filelistsize[j] == filelistsize[i] &amp;&amp; j &lt;= ncount ){&lt;br /&gt;            if ( ckfile(filelistname[i]) == ckfile(filelistname[j]) ) {&lt;br /&gt;                if ( ck[filelistname[i]] != oldck ) {&lt;br /&gt;                    if ( first == 1 ) print ""&lt;br /&gt;                    oldck = ck[filelistname[i]]&lt;br /&gt;                    first = 1&lt;br /&gt;                }&lt;br /&gt;                if( !visited[filelistname[j]] ){&lt;br /&gt;                    visited[filelistname[j]]++&lt;br /&gt;                    fn = filelistname[j]&lt;br /&gt;                    print "diff " filelistname[j] " " \&lt;br /&gt;                    filelistname[i] "  # " filelistsize[j]&lt;br /&gt;                    print "#if [ $? == 0 ] ; then rm -f " fn "; fi"&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;            j++&lt;br /&gt;        }&lt;br /&gt;        i++&lt;br /&gt;    }&lt;br /&gt;}' &lt;br /&gt;&lt;/pre&gt;&lt;p&gt;Usage is typically:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;filetidy.sh | tee tmp.txt&lt;/pre&gt;&lt;p&gt;Examine tmp.txt to confirm that the duplicates idenfited makes sense, then remove some of the commented 'rm' commands, and remove the duplicated files.&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;source tmp.txt&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-1300277500081783851?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/1300277500081783851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=1300277500081783851' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1300277500081783851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1300277500081783851'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/01/removing-duplicated-files-keeping-your.html' title='Removing duplicated files - keeping your files tidy with filetidy'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-1480975356103535777</id><published>2007-01-06T12:21:00.000-08:00</published><updated>2007-07-15T20:34:23.071-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Cygwin screen tabs'/><title type='text'>Getting Cygwin configured properly on  a laptop</title><content type='html'>&lt;p&gt;A note on how to configure Cygwin for maximum usability on a laptop. A quick look at many sites on web development, such as ZZTools, provides ample evidence of the utility of using the command line and Linux or Unix utilities to maintain your site. Yet many people must make use of Windows too for a variety of reasons. A popular solution to this dilemma - which is often better than maintaining two machines, dual booting or using virtual machines is &lt;a href="http://cygwin.com/cygwin-ug-net/cygwin-ug-net.html"&gt;Cygwin&lt;/a&gt;. Cygwin allows you to use familiar and convenient command line utilites on Windows. The preceding link describes the installation procedure - every Windows based web developer should install Cygwin! A minor tribulation with the default installation will be the bash shell which Cygwin provides - which by default is hosted in Windows' &lt;code&gt;cmd.exe&lt;/code&gt; and has fairly odd and unuseful cut-and-paste functionlity - among other problems. Fortunately you can resolve this by locating your &lt;code&gt;cygwin.bat&lt;/code&gt; file, generally in &lt;code&gt;c:\cygwin\&lt;/code&gt; and updating it to be as follows:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;@echo off&lt;br /&gt;C:&lt;br /&gt;chdir C:\Cygwin\bin&lt;br /&gt;rxvt -sl 10000 -rv -fn 'Courier New-18' -e bash --login -i&lt;br /&gt;pause&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;(You will want to copy &lt;code&gt;cygwin.bat&lt;/code&gt; to a backup copy before making your edits). This will have the effect of launching &lt;code&gt;rxvt&lt;/code&gt; instead of &lt;code&gt;cmd.exe&lt;/code&gt; when you fire up a Cygwin shell. The command line options provide for 10,000 lines of scrollability history, reverse video display (ie. a black background), a large fixed width font and the execution of bash in the resulting window, in full startup and interactive mode. Of course, as you now have Cygwin installed, you can obtain additional detail with &lt;code&gt;man rxvt&lt;/code&gt; and &lt;code&gt;man bash&lt;/code&gt;, and tune the options to match your needs. With &lt;code&gt;rxvt&lt;/code&gt; you copy text by simply highlighting it, and you paste by either using the middle mouse button - or if you have touchpad laptop - using shift left-mouse button. The net result is a substantial improvement over &lt;code&gt;cmd.exe&lt;/code&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-1480975356103535777?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/1480975356103535777/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=1480975356103535777' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1480975356103535777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1480975356103535777'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2007/01/getting-cygwin-configured-properly-on.html' title='Getting Cygwin configured properly on  a laptop'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-7081032273608020125</id><published>2006-12-31T16:55:00.000-08:00</published><updated>2006-12-31T17:36:57.727-08:00</updated><title type='text'>How to monitor blog site statistics</title><content type='html'>&lt;p&gt;What is the best way to monitor the status of your site(s)? Your own analysis of server blogs, one of the variety of online analytical tools out there or http://www.google.com/analytics? All are effective and simple to use - though you do have to use a UI or bookmark a page and execute multiple mouse clicks to extract the current status. Is there a simpler method? If you are willing to use the command line there is. For example, if you have submitted your site to Blog Top Sites, you can extract a command line report of the current status using lynx and sed, for example:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;lynx -dump http://www.blogtopsites.com/sitedetails_16988.html \&lt;br /&gt;    | sed -n '/Current Rank/,/Hits Out/p'&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;If you put these lines into a short script file, called say wstatus, and make wstatus executable then you will find the following output on execution of the script:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;   [11][FreewareList.net]    Current Rank: 3 ([12]Computers)&lt;br /&gt;   URL: [13]http://FreewareList.net&lt;br /&gt;   Join Date: August 14, 2005&lt;br /&gt;   Site Description: Download Latest Softwares and Games. Update Daily !&lt;br /&gt;   Visit http://freewarelist.net&lt;br /&gt;   Date Joined: Mar 17, 2006&lt;br /&gt;&lt;br /&gt;   Statistics&lt;br /&gt;&lt;br /&gt;                      Unique Visitors Today:     2,500&lt;br /&gt;                         Page Views Today:       5,931&lt;br /&gt;                    Unique Visitors this Week:   2,500&lt;br /&gt;                       Page Views this Week:     5,931&lt;br /&gt;                    Unique Visitors this Month: 96,555&lt;br /&gt;                      Page Views this Month:    264,005&lt;br /&gt;                      Total Unique Visitors:    181,490&lt;br /&gt;                         Total Page Views:      487,793&lt;br /&gt;                          Total Hits Out:        1,780&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;(I have taken the freewarelist.net site as an example here). The lynx command provides an ascii dump of the statistics of the site, as reported by Blog Top Site, and the sed command thins this down to the pertinent details. Now you can get a status report just by typing wstatus - the results are rapidly reported - and you can carry on with your normal tasks with minimal interruption. If you have too great an urge to monitor - and monitoring can be addictive - create a cron job which executes the wstatus command and emails the output to you at a defined frequency.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-7081032273608020125?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/7081032273608020125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=7081032273608020125' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7081032273608020125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/7081032273608020125'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2006/12/how-to-monitor-blog-site-statistics.html' title='How to monitor blog site statistics'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-1836691411895772158</id><published>2006-12-28T19:29:00.000-08:00</published><updated>2007-03-31T08:00:16.168-07:00</updated><title type='text'>Using CVS to track file changes</title><content type='html'>&lt;p&gt;The article &lt;a href="http://zztools.blogspot.com/2006/12/using-rcs-to-track-file-changes.html"&gt;Using RCS to track file changes&lt;/a&gt; shows you how to work with single files using RCS. This is minimalist source control - but it is a huge advance over tracking changes manually. If you have many files and many directories - handling individual file check-ins will be tedious with RCS. A better tool for this task is CVS - but CVS can be more intimidating than RCS for casual use. This article provides an illustration of simple CVS use - if you have not used CVS - and you have a large collection of files that you would like to put under source control, this article will get you started. I have kept the formatting compact - with comments beginning with '#' in the midst of the commands.&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;#First let's create an example directory &lt;br /&gt;#with two files in two directories&lt;br /&gt;mkdir example&lt;br /&gt;cd example&lt;br /&gt;mkdir a&lt;br /&gt;mkdir b&lt;br /&gt;touch a/a.txt&lt;br /&gt;date &amp;gt; b/b.txt&lt;br /&gt;&lt;br /&gt;#An ls -aR will show you the structure of the example directory&lt;br /&gt;ls -aR&lt;br /&gt;&lt;br /&gt;#Now create a local cvs repository&lt;br /&gt;cvs -d ~/cvsexample init&lt;br /&gt;#And import the current directory into it, calling the project &lt;br /&gt;#in the repository 'example'&lt;br /&gt;cvs -d ~/cvsexample import -m "" example example initial&lt;br /&gt;cd ..&lt;br /&gt;&lt;br /&gt;#Move the example directory out of the way&lt;br /&gt;mv example example-old&lt;br /&gt;mkdir tmp&lt;br /&gt;cd tmp&lt;br /&gt;cvs -d ~/cvsexample co example&lt;br /&gt;#The cvs controlled example directory is now in ~/tmp/example&lt;br /&gt;&lt;br /&gt;#From now on we work in this directory - let's do some example work&lt;br /&gt;cd example/&lt;br /&gt;ls&lt;br /&gt;echo "Another line" &gt;&gt; b/b.txt&lt;br /&gt;cvs diff&lt;br /&gt;&lt;br /&gt;#You will be prompted for a commit message&lt;br /&gt;cvs commit&lt;br /&gt;cvs log b/b.txt&lt;br /&gt;echo "Yet another line" &gt;&gt; b/b.txt&lt;br /&gt;#You will again be prompted for a commit message&lt;br /&gt;cvs commit&lt;br /&gt;cvs diff -r1.1 -r1.2 b/b.txt&lt;br /&gt;#And so on....you edit, commit, diff and track your work using cvs&lt;br /&gt;#e.g. to see all the changes to b/b.txt&lt;br /&gt;cvs log b/b.txt&lt;br /&gt;&lt;/pre&gt;&lt;p&gt;As you can see - this is straightforward - and keeping annotated versions of your work under CVS will soon become second nature. You can add more sophistication as your projects get larger and the number of team members working on the files increases - but for simple personal projects the commands in this article will pay dividends. An excellent, free, online resource of detailed CVS information is available in &lt;a href="http://cvsbook.red-bean.com"&gt; Open Source Development with CVS, 3rd Edition by Karl Fogel and Moshe Bar&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-1836691411895772158?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/1836691411895772158/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=1836691411895772158' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1836691411895772158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/1836691411895772158'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2006/12/using-cvs-to-track-file-changes.html' title='Using CVS to track file changes'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-2058854787601069519</id><published>2006-12-27T06:49:00.000-08:00</published><updated>2006-12-28T19:44:39.462-08:00</updated><title type='text'>Using RCS to track file changes</title><content type='html'>&lt;p&gt;Keeping track of your edits to important text files? Don't litter your directories with file.old, file.old-version-1, file.bak and similar untidy file names. Instead, make use of 'RCS' - you only need a few simple commands - and all your changes are tracked carefully, and optionally with descriptive comments. Here's how:&lt;/p&gt;&lt;p&gt;Create a directory called 'RCS'&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;mkdir RCS&lt;/pre&gt;&lt;p&gt;'Check in' your file to the RCS directory&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;ci -l filename.txt&lt;/pre&gt;&lt;p&gt;Enter a descriptive comment, terminated with a '.' on a line by itself. If you don't want to added a comment just type '.'.&lt;/p&gt;&lt;p&gt;Make some edits to your file, and then check it in again&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;ci -l filename.txt&lt;/pre&gt;&lt;p&gt;Again, enter some more descriptive comments, terminated with a '.' on a line by itself&lt;/p&gt;&lt;p&gt;Then if you want to see the history of the file, type:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;rlog filename.txt&lt;/pre&gt;&lt;p&gt;If you want to see what you have changed recently, and not checked in:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;rcsdiff filename.txt&lt;/pre&gt;&lt;p&gt;And if you want to compare two specific versions of the file:&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;rcsdiff -r1.1 -r1.2 filename.txt&lt;/pre&gt;&lt;p&gt;Finally, for reference&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;man rcsintro&lt;/pre&gt;&lt;p&gt;Gives a large amount of additional information, but the&lt;br /&gt;small number of commands described here are very powerful for tracking your&lt;br /&gt;local edits to important files - and are highly recommended!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33895478-2058854787601069519?l=zztools.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://zztools.blogspot.com/feeds/2058854787601069519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33895478&amp;postID=2058854787601069519' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2058854787601069519'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33895478/posts/default/2058854787601069519'/><link rel='alternate' type='text/html' href='http://zztools.blogspot.com/2006/12/using-rcs-to-track-file-changes.html' title='Using RCS to track file changes'/><author><name>ZT</name><uri>http://www.blogger.com/profile/10291381162380561915</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33895478.post-4317869979451147649</id><published>2006-12-14T14:51:00.000-08:00</published><updated>2010-03-05T17:28:49.089-08:00</updated><title type='text'>Who's Who in CRU</title><content type='html'>Here is a list of people's names from the CRU email messages; showing the messages that contain those names. The list was created using the scripts shown after the names and links. The number before each name in the list indicates how many messages contain each name, a kind of popularity rating of the individuals in the archive. For those interested in the high scoring individuals, the top 10 are:&lt;br /&gt;&lt;br /&gt;Keith Briffa with 559&lt;br /&gt;Phil Jones with 389&lt;br /&gt;Tim Osborn with 245&lt;br /&gt;Michael E. Mann with 243&lt;br /&gt;Eystein Jansen with 201&lt;br /&gt;Jonathan Overpeck with 191&lt;br /&gt;Tom Wigley with 159&lt;br /&gt;Ben Santer with 138&lt;br /&gt;rbradley with 126&lt;br /&gt;and&lt;br /&gt;Gavin Schmidt with 112 messages&lt;br /&gt;&lt;br /&gt;(Could the whistle blower be in this group?)&lt;br /&gt;&lt;br /&gt;1 A.Chappell, &lt;a href="http://junkscience.com/FOIA/mail/1084017554.txt"&gt;1084017554.txt&lt;/a&gt;&lt;br /&gt;1 Adam Markham, &lt;a href="http://junkscience.com/FOIA/mail/0933255789.txt"&gt;0933255789.txt&lt;/a&gt;&lt;br /&gt;1 Ag Stephens, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;1 Agnew Maureen Dr, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;3 Aiguo Dai, &lt;a href="http://junkscience.com/FOIA/mail/1084017554.txt"&gt;1084017554.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1115297153.txt"&gt;1115297153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1117134760.txt"&gt;1117134760.txt&lt;/a&gt;&lt;br /&gt;2 Alan Robock, &lt;a href="http://junkscience.com/FOIA/mail/0837094033.txt"&gt;0837094033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1257881012.txt"&gt;1257881012.txt&lt;/a&gt;&lt;br /&gt;1 Alan Tuck, &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt;&lt;br /&gt;1 Alan White, &lt;a href="http://junkscience.com/FOIA/mail/1254751382.txt"&gt;1254751382.txt&lt;/a&gt;&lt;br /&gt;5 Alex Haxeltine, &lt;a href="http://junkscience.com/FOIA/mail/1038353689.txt"&gt;1038353689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1045082703.txt"&gt;1045082703.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047335806.txt"&gt;1047335806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1048106475.txt"&gt;1048106475.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087589697.txt"&gt;1087589697.txt&lt;/a&gt;&lt;br /&gt;1 Alexander Jan Dr, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;1 Allan Astrup Jensen, &lt;a href="http://junkscience.com/FOIA/mail/1229712795.txt"&gt;1229712795.txt&lt;/a&gt;&lt;br /&gt;4 Anders Levermann, &lt;a href="http://junkscience.com/FOIA/mail/1136308095.txt"&gt;1136308095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138398400.txt"&gt;1138398400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139847614.txt"&gt;1139847614.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140009927.txt"&gt;1140009927.txt&lt;/a&gt;&lt;br /&gt;7 Anders Moberg, &lt;a href="http://junkscience.com/FOIA/mail/1119534778.txt"&gt;1119534778.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254501801.txt"&gt;1254501801.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254505571.txt"&gt;1254505571.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254517566.txt"&gt;1254517566.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254518902.txt"&gt;1254518902.txt&lt;/a&gt;&lt;br /&gt;1 Andras Vag, &lt;a href="http://junkscience.com/FOIA/mail/1139942831.txt"&gt;1139942831.txt&lt;/a&gt;&lt;br /&gt;1 Andrea Bleyer, &lt;a href="http://junkscience.com/FOIA/mail/1201561936.txt"&gt;1201561936.txt&lt;/a&gt;&lt;br /&gt;1 Andrew Comrie, &lt;a href="http://junkscience.com/FOIA/mail/1092418712.txt"&gt;1092418712.txt&lt;/a&gt;&lt;br /&gt;1 Andrew Kerr, &lt;a href="http://junkscience.com/FOIA/mail/0876250531.txt"&gt;0876250531.txt&lt;/a&gt;&lt;br /&gt;1 Andrew Manning, &lt;a href="http://junkscience.com/FOIA/mail/1254832684.txt"&gt;1254832684.txt&lt;/a&gt;&lt;br /&gt;4 Andrew Revkin, &lt;a href="http://junkscience.com/FOIA/mail/1196795844.txt"&gt;1196795844.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1215477224.txt"&gt;1215477224.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254258663.txt"&gt;1254258663.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254259645.txt"&gt;1254259645.txt&lt;/a&gt;&lt;br /&gt;1 Andrew Watson, &lt;a href="http://junkscience.com/FOIA/mail/0930934311.txt"&gt;0930934311.txt&lt;/a&gt;&lt;br /&gt;5 Andrew Weaver, &lt;a href="http://junkscience.com/FOIA/mail/1146062963.txt"&gt;1146062963.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1147435800.txt"&gt;1147435800.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160755490.txt"&gt;1160755490.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160771811.txt"&gt;1160771811.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1161261884.txt"&gt;1161261884.txt&lt;/a&gt;&lt;br /&gt;2 André Berger, &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116646247.txt"&gt;1116646247.txt&lt;/a&gt;&lt;br /&gt;2 Andy Malyshev, &lt;a href="http://junkscience.com/FOIA/mail/0952619617.txt"&gt;0952619617.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1093294138.txt"&gt;1093294138.txt&lt;/a&gt;&lt;br /&gt;1 Andy McLeod, &lt;a href="http://junkscience.com/FOIA/mail/1038859764.txt"&gt;1038859764.txt&lt;/a&gt;&lt;br /&gt;6 Andy Revkin, &lt;a href="http://junkscience.com/FOIA/mail/1096382684.txt"&gt;1096382684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1107899057.txt"&gt;1107899057.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133366680.txt"&gt;1133366680.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249655311.txt"&gt;1249655311.txt&lt;/a&gt;&lt;br /&gt;3 Anne JOHNSON, &lt;a href="http://junkscience.com/FOIA/mail/0889047457.txt"&gt;0889047457.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889554019.txt"&gt;0889554019.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0893188400.txt"&gt;0893188400.txt&lt;/a&gt;&lt;br /&gt;2 Anne Stark, &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt;&lt;br /&gt;6 Arkell, &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt;&lt;br /&gt;1 Armes Marcus Mr (VCO), &lt;a href="http://junkscience.com/FOIA/mail/1256214796.txt"&gt;1256214796.txt&lt;/a&gt;&lt;br /&gt;2 Armin Haas, &lt;a href="http://junkscience.com/FOIA/mail/1047335806.txt"&gt;1047335806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1048106475.txt"&gt;1048106475.txt&lt;/a&gt;&lt;br /&gt;1 Arnulf GRUBLER, &lt;a href="http://junkscience.com/FOIA/mail/0857600338.txt"&gt;0857600338.txt&lt;/a&gt;&lt;br /&gt;12 Arnulf Gruebler, &lt;a href="http://junkscience.com/FOIA/mail/0857600338.txt"&gt;0857600338.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0870465098.txt"&gt;0870465098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885318160.txt"&gt;0885318160.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0887665729.txt"&gt;0887665729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888364876.txt"&gt;0888364876.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888611422.txt"&gt;0888611422.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889047457.txt"&gt;0889047457.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889554019.txt"&gt;0889554019.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0893188400.txt"&gt;0893188400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0901894140.txt"&gt;0901894140.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904080701.txt"&gt;0904080701.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904762907.txt"&gt;0904762907.txt&lt;/a&gt;&lt;br /&gt;1 Art Johnson, &lt;a href="http://junkscience.com/FOIA/mail/1074344124.txt"&gt;1074344124.txt&lt;/a&gt;&lt;br /&gt;1 Asher Minns, &lt;a href="http://junkscience.com/FOIA/mail/1056654269.txt"&gt;1056654269.txt&lt;/a&gt;&lt;br /&gt;2 Atte Korhola, &lt;a href="http://junkscience.com/FOIA/mail/1115843111.txt"&gt;1115843111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1115887684.txt"&gt;1115887684.txt&lt;/a&gt;&lt;br /&gt;2 Atul Jain, &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0927145311.txt"&gt;0927145311.txt&lt;/a&gt;&lt;br /&gt;9 Bamzai, &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226500291.txt"&gt;1226500291.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1229468467.txt"&gt;1229468467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1230052094.txt"&gt;1230052094.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt;&lt;br /&gt;6 Barrie Pittock, &lt;a href="http://junkscience.com/FOIA/mail/0839635440.txt"&gt;0839635440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0913679881.txt"&gt;0913679881.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0933254004.txt"&gt;0933254004.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051156418.txt"&gt;1051156418.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051202354.txt"&gt;1051202354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051230500.txt"&gt;1051230500.txt&lt;/a&gt;&lt;br /&gt;1 Barry McAuley, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;2 Ben Matthews, &lt;a href="http://junkscience.com/FOIA/mail/0968127296.txt"&gt;0968127296.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051190249.txt"&gt;1051190249.txt&lt;/a&gt;&lt;br /&gt;138 Ben Santer, &lt;a href="http://junkscience.com/FOIA/mail/0839858862.txt"&gt;0839858862.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0876860264.txt"&gt;0876860264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969640598.txt"&gt;0969640598.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969652057.txt"&gt;0969652057.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0972499087.txt"&gt;0972499087.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0972649870.txt"&gt;0972649870.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1035838207.txt"&gt;1035838207.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1037719165.txt"&gt;1037719165.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051156418.txt"&gt;1051156418.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051202354.txt"&gt;1051202354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051230500.txt"&gt;1051230500.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057941657.txt"&gt;1057941657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059005592.txt"&gt;1059005592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061300885.txt"&gt;1061300885.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065206624.txt"&gt;1065206624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067194064.txt"&gt;1067194064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074277559.txt"&gt;1074277559.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1077200902.txt"&gt;1077200902.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1078236401.txt"&gt;1078236401.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1079108576.txt"&gt;1079108576.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1080257046.txt"&gt;1080257046.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1084625760.txt"&gt;1084625760.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087820257.txt"&gt;1087820257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088632271.txt"&gt;1088632271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088690856.txt"&gt;1088690856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1094483447.txt"&gt;1094483447.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1094752345.txt"&gt;1094752345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1097159316.txt"&gt;1097159316.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101999700.txt"&gt;1101999700.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106338806.txt"&gt;1106338806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108594561.txt"&gt;1108594561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1111417712.txt"&gt;1111417712.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114785020.txt"&gt;1114785020.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1124742148.txt"&gt;1124742148.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134418588.txt"&gt;1134418588.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134497252.txt"&gt;1134497252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134526470.txt"&gt;1134526470.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134572247.txt"&gt;1134572247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177158252.txt"&gt;1177158252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177163150.txt"&gt;1177163150.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1178107838.txt"&gt;1178107838.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196795844.txt"&gt;1196795844.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196882357.txt"&gt;1196882357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196956362.txt"&gt;1196956362.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196964260.txt"&gt;1196964260.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197507092.txt"&gt;1197507092.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590292.txt"&gt;1197590292.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590293.txt"&gt;1197590293.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197660675.txt"&gt;1197660675.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197739308.txt"&gt;1197739308.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198790779.txt"&gt;1198790779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198984230.txt"&gt;1198984230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199303943.txt"&gt;1199303943.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199325151.txt"&gt;1199325151.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199458641.txt"&gt;1199458641.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199926335.txt"&gt;1199926335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199972428.txt"&gt;1199972428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199984805.txt"&gt;1199984805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199988028.txt"&gt;1199988028.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199999668.txt"&gt;1199999668.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200059003.txt"&gt;1200059003.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200076878.txt"&gt;1200076878.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1204315423.txt"&gt;1204315423.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209080077.txt"&gt;1209080077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209143958.txt"&gt;1209143958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209474516.txt"&gt;1209474516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210030332.txt"&gt;1210030332.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210079946.txt"&gt;1210079946.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210695733.txt"&gt;1210695733.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211911286.txt"&gt;1211911286.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212413521.txt"&gt;1212413521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212435868.txt"&gt;1212435868.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1213387146.txt"&gt;1213387146.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1215712600.txt"&gt;1215712600.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1215713915.txt"&gt;1215713915.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224005421.txt"&gt;1224005421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225412081.txt"&gt;1225412081.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225462391.txt"&gt;1225462391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226337052.txt"&gt;1226337052.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228249747.txt"&gt;1228249747.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228258714.txt"&gt;1228258714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228330629.txt"&gt;1228330629.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228412429.txt"&gt;1228412429.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1229468467.txt"&gt;1229468467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1230052094.txt"&gt;1230052094.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233245601.txt"&gt;1233245601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233249393.txt"&gt;1233249393.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233326033.txt"&gt;1233326033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233586975.txt"&gt;1233586975.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236962118.txt"&gt;1236962118.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237496573.txt"&gt;1237496573.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1241415427.txt"&gt;1241415427.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248790545.txt"&gt;1248790545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248993704.txt"&gt;1248993704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249652050.txt"&gt;1249652050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254108338.txt"&gt;1254108338.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254147614.txt"&gt;1254147614.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254760537.txt"&gt;1254760537.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254850534.txt"&gt;1254850534.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255027691.txt"&gt;1255027691.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255095172.txt"&gt;1255095172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255100876.txt"&gt;1255100876.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255298593.txt"&gt;1255298593.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255477545.txt"&gt;1255477545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255538481.txt"&gt;1255538481.txt&lt;/a&gt;&lt;br /&gt;1 Benjamin Felzer, &lt;a href="http://junkscience.com/FOIA/mail/0926947295.txt"&gt;0926947295.txt&lt;/a&gt;&lt;br /&gt;15 Benjamin Santer, &lt;a href="http://junkscience.com/FOIA/mail/0966633586.txt"&gt;0966633586.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1213387146.txt"&gt;1213387146.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226500291.txt"&gt;1226500291.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255318331.txt"&gt;1255318331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352257.txt"&gt;1255352257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352444.txt"&gt;1255352444.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255496484.txt"&gt;1255496484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255523796.txt"&gt;1255523796.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255530325.txt"&gt;1255530325.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255532032.txt"&gt;1255532032.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255550975.txt"&gt;1255550975.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255553034.txt"&gt;1255553034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255558867.txt"&gt;1255558867.txt&lt;/a&gt;&lt;br /&gt;6 Bert Metz, &lt;a href="http://junkscience.com/FOIA/mail/0889047457.txt"&gt;0889047457.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904762907.txt"&gt;0904762907.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907293443.txt"&gt;0907293443.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0914013281.txt"&gt;0914013281.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047335806.txt"&gt;1047335806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1048106475.txt"&gt;1048106475.txt&lt;/a&gt;&lt;br /&gt;21 Bette Otto-Bleisner, &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110150877.txt"&gt;1110150877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121392136.txt"&gt;1121392136.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134931991.txt"&gt;1134931991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141750932.txt"&gt;1141750932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141849134.txt"&gt;1141849134.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143137864.txt"&gt;1143137864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143227779.txt"&gt;1143227779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148266730.txt"&gt;1148266730.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148299124.txt"&gt;1148299124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148307524.txt"&gt;1148307524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148339153.txt"&gt;1148339153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157074096.txt"&gt;1157074096.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157138720.txt"&gt;1157138720.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158153059.txt"&gt;1158153059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158180188.txt"&gt;1158180188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158204073.txt"&gt;1158204073.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;8 Bette Otto-Bliesner, &lt;a href="http://junkscience.com/FOIA/mail/1121294040.txt"&gt;1121294040.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142469228.txt"&gt;1142469228.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172871972.txt"&gt;1172871972.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172963659.txt"&gt;1172963659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;3 Bill Hare, &lt;a href="http://junkscience.com/FOIA/mail/0914022359.txt"&gt;0914022359.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0993768960.txt"&gt;0993768960.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1033599602.txt"&gt;1033599602.txt&lt;/a&gt;&lt;br /&gt;6 Bo Vinther, &lt;a href="http://junkscience.com/FOIA/mail/1137184681.txt"&gt;1137184681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1201724331.txt"&gt;1201724331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1244067818.txt"&gt;1244067818.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252154659.txt"&gt;1252154659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252164302.txt"&gt;1252164302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252233095.txt"&gt;1252233095.txt&lt;/a&gt;&lt;br /&gt;1 Bob Keeland, &lt;a href="http://junkscience.com/FOIA/mail/0912633188.txt"&gt;0912633188.txt&lt;/a&gt;&lt;br /&gt;1 Brendaw Morris, &lt;a href="http://junkscience.com/FOIA/mail/0972415204.txt"&gt;0972415204.txt&lt;/a&gt;&lt;br /&gt;6 Brian Hoskins, &lt;a href="http://junkscience.com/FOIA/mail/0872202064.txt"&gt;0872202064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168014304.txt"&gt;1168014304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168467907.txt"&gt;1168467907.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168921050.txt"&gt;1168921050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219239172.txt"&gt;1219239172.txt&lt;/a&gt;&lt;br /&gt;3 Brian Luckman, &lt;a href="http://junkscience.com/FOIA/mail/0907695513.txt"&gt;0907695513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0924035588.txt"&gt;0924035588.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121964854.txt"&gt;1121964854.txt&lt;/a&gt;&lt;br /&gt;1 Brian Lynch, &lt;a href="http://junkscience.com/FOIA/mail/1214228874.txt"&gt;1214228874.txt&lt;/a&gt;&lt;br /&gt;6 Briffa Keith, &lt;a href="http://junkscience.com/FOIA/mail/0952619617.txt"&gt;0952619617.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1038027690.txt"&gt;1038027690.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1073921187.txt"&gt;1073921187.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075297872.txt"&gt;1075297872.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009215.txt"&gt;1212009215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256214796.txt"&gt;1256214796.txt&lt;/a&gt;&lt;br /&gt;14 Brohan, &lt;a href="http://junkscience.com/FOIA/mail/1060021835.txt"&gt;1060021835.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112622624.txt"&gt;1112622624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140554230.txt"&gt;1140554230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146252894.txt"&gt;1146252894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153424011.txt"&gt;1153424011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168288278.txt"&gt;1168288278.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1176225793.txt"&gt;1176225793.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1176251075.txt"&gt;1176251075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1184779319.txt"&gt;1184779319.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200493432.txt"&gt;1200493432.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224176459.txt"&gt;1224176459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226959467.txt"&gt;1226959467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt;&lt;br /&gt;2 Brooks Hanson, &lt;a href="http://junkscience.com/FOIA/mail/1141737742.txt"&gt;1141737742.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143819006.txt"&gt;1143819006.txt&lt;/a&gt;&lt;br /&gt;3 Bruce Hewitson, &lt;a href="http://junkscience.com/FOIA/mail/0968705882.txt"&gt;0968705882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968774000.txt"&gt;0968774000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968941827.txt"&gt;0968941827.txt&lt;/a&gt;&lt;br /&gt;1 Bryan Lawrence, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;1 Bryant McAvaney, &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt;&lt;br /&gt;1 Bryson Bates, &lt;a href="http://junkscience.com/FOIA/mail/0913679881.txt"&gt;0913679881.txt&lt;/a&gt;&lt;br /&gt;2 Burgess Jacquelin Prof, &lt;a href="http://junkscience.com/FOIA/mail/1189536059.txt"&gt;1189536059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;1 Busby Simon, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;8 C G Kilsby, &lt;a href="http://junkscience.com/FOIA/mail/1176746137.txt"&gt;1176746137.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1257888920.txt"&gt;1257888920.txt&lt;/a&gt;&lt;br /&gt;2 CAMINADE Jean Pierre, &lt;a href="http://junkscience.com/FOIA/mail/1116363805.txt"&gt;1116363805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116365074.txt"&gt;1116365074.txt&lt;/a&gt;&lt;br /&gt;18 Carl Mears, &lt;a href="http://junkscience.com/FOIA/mail/1106338806.txt"&gt;1106338806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116611126.txt"&gt;1116611126.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196795844.txt"&gt;1196795844.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590292.txt"&gt;1197590292.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590293.txt"&gt;1197590293.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197660675.txt"&gt;1197660675.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197739308.txt"&gt;1197739308.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199027884.txt"&gt;1199027884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212413521.txt"&gt;1212413521.txt&lt;/a&gt;&lt;br /&gt;65 Caspar Ammann, &lt;a href="http://junkscience.com/FOIA/mail/1053457075.txt"&gt;1053457075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053461261.txt"&gt;1053461261.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055004012.txt"&gt;1055004012.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055512559.txt"&gt;1055512559.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061300885.txt"&gt;1061300885.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065636937.txt"&gt;1065636937.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065723391.txt"&gt;1065723391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066073000.txt"&gt;1066073000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066077412.txt"&gt;1066077412.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066149334.txt"&gt;1066149334.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066337021.txt"&gt;1066337021.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1083962601.txt"&gt;1083962601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1084625760.txt"&gt;1084625760.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1097078296.txt"&gt;1097078296.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102687002.txt"&gt;1102687002.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1107899057.txt"&gt;1107899057.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108248246.txt"&gt;1108248246.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109267110.txt"&gt;1109267110.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119957715.txt"&gt;1119957715.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120236419.txt"&gt;1120236419.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123163394.txt"&gt;1123163394.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123860080.txt"&gt;1123860080.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123881502.txt"&gt;1123881502.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133360497.txt"&gt;1133360497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133532909.txt"&gt;1133532909.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140838402.txt"&gt;1140838402.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141145428.txt"&gt;1141145428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141151539.txt"&gt;1141151539.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141180962.txt"&gt;1141180962.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148266730.txt"&gt;1148266730.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148299124.txt"&gt;1148299124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148307524.txt"&gt;1148307524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148339153.txt"&gt;1148339153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151094928.txt"&gt;1151094928.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153139501.txt"&gt;1153139501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153424011.txt"&gt;1153424011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160755490.txt"&gt;1160755490.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167961271.txt"&gt;1167961271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168356704.txt"&gt;1168356704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1180342271.txt"&gt;1180342271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1189722851.txt"&gt;1189722851.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1201724331.txt"&gt;1201724331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210341221.txt"&gt;1210341221.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211924186.txt"&gt;1211924186.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212156886.txt"&gt;1212156886.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212166714.txt"&gt;1212166714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1214228874.txt"&gt;1214228874.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219861908.txt"&gt;1219861908.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237805013.txt"&gt;1237805013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243369385.txt"&gt;1243369385.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1244067818.txt"&gt;1244067818.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252154659.txt"&gt;1252154659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252164302.txt"&gt;1252164302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252233095.txt"&gt;1252233095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1253631628.txt"&gt;1253631628.txt&lt;/a&gt;&lt;br /&gt;3 Caspar M Ammann, &lt;a href="http://junkscience.com/FOIA/mail/1058898765.txt"&gt;1058898765.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058906971.txt"&gt;1058906971.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059005592.txt"&gt;1059005592.txt&lt;/a&gt;&lt;br /&gt;1 Cater Sandra Mrs, &lt;a href="http://junkscience.com/FOIA/mail/1210178552.txt"&gt;1210178552.txt&lt;/a&gt;&lt;br /&gt;2 Cawley Gavin Dr, &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt;&lt;br /&gt;1 Charles F., &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt;&lt;br /&gt;1 chen zhenlin, &lt;a href="http://junkscience.com/FOIA/mail/1168353155.txt"&gt;1168353155.txt&lt;/a&gt;&lt;br /&gt;5 Chick Keller, &lt;a href="http://junkscience.com/FOIA/mail/0970663670.txt"&gt;0970663670.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0981859677.txt"&gt;0981859677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983566497.txt"&gt;0983566497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988466058.txt"&gt;0988466058.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1079108576.txt"&gt;1079108576.txt&lt;/a&gt;&lt;br /&gt;1 CHOUX Mathieu, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;5 Chris de Freitas, &lt;a href="http://junkscience.com/FOIA/mail/1057941657.txt"&gt;1057941657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057944829.txt"&gt;1057944829.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248790545.txt"&gt;1248790545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt;&lt;br /&gt;3 Chris Kilsby, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199466465.txt"&gt;1199466465.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211491089.txt"&gt;1211491089.txt&lt;/a&gt;&lt;br /&gt;2 Chris Miller, &lt;a href="http://junkscience.com/FOIA/mail/1109684442.txt"&gt;1109684442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt;&lt;br /&gt;1 Chris Turney, &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt;&lt;br /&gt;3 Christian Azar, &lt;a href="http://junkscience.com/FOIA/mail/1047335806.txt"&gt;1047335806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1048106475.txt"&gt;1048106475.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074277559.txt"&gt;1074277559.txt&lt;/a&gt;&lt;br /&gt;7 Christoph Kull, &lt;a href="http://junkscience.com/FOIA/mail/1124994521.txt"&gt;1124994521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125067952.txt"&gt;1125067952.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125085162.txt"&gt;1125085162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153139501.txt"&gt;1153139501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160142338.txt"&gt;1160142338.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt;&lt;br /&gt;1 Christoph Schmutz, &lt;a href="http://junkscience.com/FOIA/mail/0956161482.txt"&gt;0956161482.txt&lt;/a&gt;&lt;br /&gt;1 Christopher D Miller, &lt;a href="http://junkscience.com/FOIA/mail/1067005233.txt"&gt;1067005233.txt&lt;/a&gt;&lt;br /&gt;4 Christopher Monckton, &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254746802.txt"&gt;1254746802.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254754536.txt"&gt;1254754536.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256765544.txt"&gt;1256765544.txt&lt;/a&gt;&lt;br /&gt;1 Christy John, &lt;a href="http://junkscience.com/FOIA/mail/1211911286.txt"&gt;1211911286.txt&lt;/a&gt;&lt;br /&gt;1 Cindy Carrick, &lt;a href="http://junkscience.com/FOIA/mail/1104855751.txt"&gt;1104855751.txt&lt;/a&gt;&lt;br /&gt;14 Clare Goodess, &lt;a href="http://junkscience.com/FOIA/mail/1038353689.txt"&gt;1038353689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057944829.txt"&gt;1057944829.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087589697.txt"&gt;1087589697.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211462932.txt"&gt;1211462932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211491089.txt"&gt;1211491089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1223915581.txt"&gt;1223915581.txt&lt;/a&gt;&lt;br /&gt;3 claudia tebaldi, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt;&lt;br /&gt;1 Clifford Lee, &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt;&lt;br /&gt;1 Clive Agnew, &lt;a href="http://junkscience.com/FOIA/mail/1084017554.txt"&gt;1084017554.txt&lt;/a&gt;&lt;br /&gt;1 Colin O'Dowd, &lt;a href="http://junkscience.com/FOIA/mail/1128000000.txt"&gt;1128000000.txt&lt;/a&gt;&lt;br /&gt;3 Congbin Fu, &lt;a href="http://junkscience.com/FOIA/mail/0968705882.txt"&gt;0968705882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968774000.txt"&gt;0968774000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968941827.txt"&gt;0968941827.txt&lt;/a&gt;&lt;br /&gt;2 Connie Woodhouse, &lt;a href="http://junkscience.com/FOIA/mail/0925158373.txt"&gt;0925158373.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1132094873.txt"&gt;1132094873.txt&lt;/a&gt;&lt;br /&gt;6 Cox, &lt;a href="http://junkscience.com/FOIA/mail/0880476729.txt"&gt;0880476729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925507395.txt"&gt;0925507395.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1202939193.txt"&gt;1202939193.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt;&lt;br /&gt;3 Curt Covey, &lt;a href="http://junkscience.com/FOIA/mail/0876860264.txt"&gt;0876860264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt;&lt;br /&gt;6 Curtis Covey, &lt;a href="http://junkscience.com/FOIA/mail/0876860264.txt"&gt;0876860264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970664328.txt"&gt;0970664328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088690856.txt"&gt;1088690856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt;&lt;br /&gt;6 Curtis Covey, &lt;a href="http://junkscience.com/FOIA/mail/0876860264.txt"&gt;0876860264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970664328.txt"&gt;0970664328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088690856.txt"&gt;1088690856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt;&lt;br /&gt;1 D Parker, &lt;a href="http://junkscience.com/FOIA/mail/0926087421.txt"&gt;0926087421.txt&lt;/a&gt;&lt;br /&gt;1 D. J. Keenan, &lt;a href="http://junkscience.com/FOIA/mail/1182255717.txt"&gt;1182255717.txt&lt;/a&gt;&lt;br /&gt;8 D.J. Keenan, &lt;a href="http://junkscience.com/FOIA/mail/1177158252.txt"&gt;1177158252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177163150.txt"&gt;1177163150.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182255717.txt"&gt;1182255717.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182342470.txt"&gt;1182342470.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182346299.txt"&gt;1182346299.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182361058.txt"&gt;1182361058.txt&lt;/a&gt;&lt;br /&gt;8 D.J. Keenan", &lt;a href="http://junkscience.com/FOIA/mail/1177158252.txt"&gt;1177158252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177163150.txt"&gt;1177163150.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182255717.txt"&gt;1182255717.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182342470.txt"&gt;1182342470.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182346299.txt"&gt;1182346299.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182361058.txt"&gt;1182361058.txt&lt;/a&gt;&lt;br /&gt;1 Dale Patrick Kaiser, &lt;a href="http://junkscience.com/FOIA/mail/1086722406.txt"&gt;1086722406.txt&lt;/a&gt;&lt;br /&gt;12 Darch, &lt;a href="http://junkscience.com/FOIA/mail/0917644194.txt"&gt;0917644194.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0931964410.txt"&gt;0931964410.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1073489714.txt"&gt;1073489714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087504782.txt"&gt;1087504782.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211491089.txt"&gt;1211491089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1223915581.txt"&gt;1223915581.txt&lt;/a&gt;&lt;br /&gt;8 Darrell Kaufman, &lt;a href="http://junkscience.com/FOIA/mail/1236358770.txt"&gt;1236358770.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237805013.txt"&gt;1237805013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243369385.txt"&gt;1243369385.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1244067818.txt"&gt;1244067818.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252154659.txt"&gt;1252154659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252164302.txt"&gt;1252164302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252233095.txt"&gt;1252233095.txt&lt;/a&gt;&lt;br /&gt;1 Darrell S Kaufman, &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt;&lt;br /&gt;1 Dave Dokken, &lt;a href="http://junkscience.com/FOIA/mail/0904762907.txt"&gt;0904762907.txt&lt;/a&gt;&lt;br /&gt;3 Dave Schimel, &lt;a href="http://junkscience.com/FOIA/mail/0878654527.txt"&gt;0878654527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926947295.txt"&gt;0926947295.txt&lt;/a&gt;&lt;br /&gt;27 David C. Bader, &lt;a href="http://junkscience.com/FOIA/mail/1197590292.txt"&gt;1197590292.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590293.txt"&gt;1197590293.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197660675.txt"&gt;1197660675.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197739308.txt"&gt;1197739308.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198443017.txt"&gt;1198443017.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198790779.txt"&gt;1198790779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198984230.txt"&gt;1198984230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199027884.txt"&gt;1199027884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199325151.txt"&gt;1199325151.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199926335.txt"&gt;1199926335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199972428.txt"&gt;1199972428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199999668.txt"&gt;1199999668.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224005421.txt"&gt;1224005421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225462391.txt"&gt;1225462391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1229468467.txt"&gt;1229468467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt;&lt;br /&gt;15 David Douglass, &lt;a href="http://junkscience.com/FOIA/mail/1057941657.txt"&gt;1057941657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209143958.txt"&gt;1209143958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211911286.txt"&gt;1211911286.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221851501.txt"&gt;1221851501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224005421.txt"&gt;1224005421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225462391.txt"&gt;1225462391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226337052.txt"&gt;1226337052.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226500291.txt"&gt;1226500291.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228330629.txt"&gt;1228330629.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228412429.txt"&gt;1228412429.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233326033.txt"&gt;1233326033.txt&lt;/a&gt;&lt;br /&gt;4 David Easterling, &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1117134760.txt"&gt;1117134760.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;1 David G. VICTOR', &lt;a href="http://junkscience.com/FOIA/mail/1074277559.txt"&gt;1074277559.txt&lt;/a&gt;&lt;br /&gt;1 David Helms, &lt;a href="http://junkscience.com/FOIA/mail/1210695733.txt"&gt;1210695733.txt&lt;/a&gt;&lt;br /&gt;6 David Holland, &lt;a href="http://junkscience.com/FOIA/mail/1206628118.txt"&gt;1206628118.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211924186.txt"&gt;1211924186.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009215.txt"&gt;1212009215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212156886.txt"&gt;1212156886.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212166714.txt"&gt;1212166714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228922050.txt"&gt;1228922050.txt&lt;/a&gt;&lt;br /&gt;1 David L Roberts, &lt;a href="http://junkscience.com/FOIA/mail/0887665729.txt"&gt;0887665729.txt&lt;/a&gt;&lt;br /&gt;2 David M. Lawrence, &lt;a href="http://junkscience.com/FOIA/mail/1037394925.txt"&gt;1037394925.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152974217.txt"&gt;1152974217.txt&lt;/a&gt;&lt;br /&gt;1 David Palmer, &lt;a href="http://junkscience.com/FOIA/mail/1212009215.txt"&gt;1212009215.txt&lt;/a&gt;&lt;br /&gt;19 David Parker, &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1097159316.txt"&gt;1097159316.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101999700.txt"&gt;1101999700.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103647149.txt"&gt;1103647149.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1113941558.txt"&gt;1113941558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168288278.txt"&gt;1168288278.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177158252.txt"&gt;1177158252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177163150.txt"&gt;1177163150.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182346299.txt"&gt;1182346299.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1184779319.txt"&gt;1184779319.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206549942.txt"&gt;1206549942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233245601.txt"&gt;1233245601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233249393.txt"&gt;1233249393.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234277656.txt"&gt;1234277656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234302123.txt"&gt;1234302123.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt;&lt;br /&gt;1 David Randall, &lt;a href="http://junkscience.com/FOIA/mail/1104855751.txt"&gt;1104855751.txt&lt;/a&gt;&lt;br /&gt;27 David Rind, &lt;a href="http://junkscience.com/FOIA/mail/1104893567.txt"&gt;1104893567.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105024270.txt"&gt;1105024270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105386027.txt"&gt;1105386027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105653626.txt"&gt;1105653626.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105661016.txt"&gt;1105661016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105667593.txt"&gt;1105667593.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105723247.txt"&gt;1105723247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105730627.txt"&gt;1105730627.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121875880.txt"&gt;1121875880.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121877545.txt"&gt;1121877545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122052662.txt"&gt;1122052662.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122126027.txt"&gt;1122126027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135045957.txt"&gt;1135045957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141750932.txt"&gt;1141750932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157074096.txt"&gt;1157074096.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158180188.txt"&gt;1158180188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158204073.txt"&gt;1158204073.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172871972.txt"&gt;1172871972.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1201724331.txt"&gt;1201724331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;1 David Schimel, &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt;&lt;br /&gt;7 David Schneider, &lt;a href="http://junkscience.com/FOIA/mail/1237805013.txt"&gt;1237805013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243369385.txt"&gt;1243369385.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1244067818.txt"&gt;1244067818.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252154659.txt"&gt;1252154659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252164302.txt"&gt;1252164302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252233095.txt"&gt;1252233095.txt&lt;/a&gt;&lt;br /&gt;3 David Sexton, &lt;a href="http://junkscience.com/FOIA/mail/1176746137.txt"&gt;1176746137.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199466465.txt"&gt;1199466465.txt&lt;/a&gt;&lt;br /&gt;8 David Thompson, &lt;a href="http://junkscience.com/FOIA/mail/1203620834.txt"&gt;1203620834.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209474516.txt"&gt;1209474516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212924720.txt"&gt;1212924720.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1213201481.txt"&gt;1213201481.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228841349.txt"&gt;1228841349.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248790545.txt"&gt;1248790545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt;&lt;br /&gt;4 David Viner, &lt;a href="http://junkscience.com/FOIA/mail/0850320678.txt"&gt;0850320678.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0927042520.txt"&gt;0927042520.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939437868.txt"&gt;0939437868.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087589697.txt"&gt;1087589697.txt&lt;/a&gt;&lt;br /&gt;1 David Willans, &lt;a href="http://junkscience.com/FOIA/mail/1135033853.txt"&gt;1135033853.txt&lt;/a&gt;&lt;br /&gt;1 David_Robinson, &lt;a href="http://junkscience.com/FOIA/mail/1256214796.txt"&gt;1256214796.txt&lt;/a&gt;&lt;br /&gt;1 Davies Trevor Prof, &lt;a href="http://junkscience.com/FOIA/mail/1256214796.txt"&gt;1256214796.txt&lt;/a&gt;&lt;br /&gt;9 Dear Chris, &lt;a href="http://junkscience.com/FOIA/mail/1124994521.txt"&gt;1124994521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125067952.txt"&gt;1125067952.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125085162.txt"&gt;1125085162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155150358.txt"&gt;1155150358.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231166089.txt"&gt;1231166089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231190304.txt"&gt;1231190304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231254297.txt"&gt;1231254297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231279297.txt"&gt;1231279297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt;&lt;br /&gt;9 Delivered-, &lt;a href="http://junkscience.com/FOIA/mail/1065636937.txt"&gt;1065636937.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066149334.txt"&gt;1066149334.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066337021.txt"&gt;1066337021.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133366680.txt"&gt;1133366680.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160755490.txt"&gt;1160755490.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1161261884.txt"&gt;1161261884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1241415427.txt"&gt;1241415427.txt&lt;/a&gt;&lt;br /&gt;2 Denny Gray, &lt;a href="http://junkscience.com/FOIA/mail/1249042511.txt"&gt;1249042511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254163301.txt"&gt;1254163301.txt&lt;/a&gt;&lt;br /&gt;10 Dian Seidel, &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196964260.txt"&gt;1196964260.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1245941966.txt"&gt;1245941966.txt&lt;/a&gt;&lt;br /&gt;1 Dick Dee, &lt;a href="http://junkscience.com/FOIA/mail/1245773909.txt"&gt;1245773909.txt&lt;/a&gt;&lt;br /&gt;1 Dr Peter Hedges, &lt;a href="http://junkscience.com/FOIA/mail/1073489714.txt"&gt;1073489714.txt&lt;/a&gt;&lt;br /&gt;1 Dr. Nanne Weber, &lt;a href="http://junkscience.com/FOIA/mail/0992879415.txt"&gt;0992879415.txt&lt;/a&gt;&lt;br /&gt;1 Dr. Rajendra K. Pachauri, &lt;a href="http://junkscience.com/FOIA/mail/1120593115.txt"&gt;1120593115.txt&lt;/a&gt;&lt;br /&gt;2 Dr. Reinhard Böhm, &lt;a href="http://junkscience.com/FOIA/mail/0993841811.txt"&gt;0993841811.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994186877.txt"&gt;0994186877.txt&lt;/a&gt;&lt;br /&gt;1 Duckmanton, &lt;a href="http://junkscience.com/FOIA/mail/1056986548.txt"&gt;1056986548.txt&lt;/a&gt;&lt;br /&gt;29 Ed Cook, &lt;a href="http://junkscience.com/FOIA/mail/0839635440.txt"&gt;0839635440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0839858862.txt"&gt;0839858862.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0841418825.txt"&gt;0841418825.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907266508.txt"&gt;0907266508.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907695513.txt"&gt;0907695513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0956161482.txt"&gt;0956161482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983196231.txt"&gt;0983196231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983207072.txt"&gt;0983207072.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990119702.txt"&gt;0990119702.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0992349996.txt"&gt;0992349996.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000132513.txt"&gt;1000132513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000140042.txt"&gt;1000140042.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000154718.txt"&gt;1000154718.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000168453.txt"&gt;1000168453.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1008619994.txt"&gt;1008619994.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018623296.txt"&gt;1018623296.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018629153.txt"&gt;1018629153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018647333.txt"&gt;1018647333.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018889093.txt"&gt;1018889093.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018893474.txt"&gt;1018893474.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1024334440.txt"&gt;1024334440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053457075.txt"&gt;1053457075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1079384474.txt"&gt;1079384474.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103236623.txt"&gt;1103236623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140554230.txt"&gt;1140554230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141068509.txt"&gt;1141068509.txt&lt;/a&gt;&lt;br /&gt;1 Ed Schneider, &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt;&lt;br /&gt;1 Edouard BARD, &lt;a href="http://junkscience.com/FOIA/mail/1200426564.txt"&gt;1200426564.txt&lt;/a&gt;&lt;br /&gt;10 Eduardo Zorita, &lt;a href="http://junkscience.com/FOIA/mail/1125067952.txt"&gt;1125067952.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125085162.txt"&gt;1125085162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143753480.txt"&gt;1143753480.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146713460.txt"&gt;1146713460.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151094928.txt"&gt;1151094928.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157546057.txt"&gt;1157546057.txt&lt;/a&gt;&lt;br /&gt;15 Edward Cook, &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0995978954.txt"&gt;0995978954.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018539404.txt"&gt;1018539404.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018647333.txt"&gt;1018647333.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051638938.txt"&gt;1051638938.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1052774789.txt"&gt;1052774789.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053610494.txt"&gt;1053610494.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054748574.txt"&gt;1054748574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054756929.txt"&gt;1054756929.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058275977.txt"&gt;1058275977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062592331.txt"&gt;1062592331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062618881.txt"&gt;1062618881.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065785323.txt"&gt;1065785323.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074344124.txt"&gt;1074344124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237289045.txt"&gt;1237289045.txt&lt;/a&gt;&lt;br /&gt;26 Edward R. Cook, &lt;a href="http://junkscience.com/FOIA/mail/0932158667.txt"&gt;0932158667.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990119702.txt"&gt;0990119702.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0995978954.txt"&gt;0995978954.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000132513.txt"&gt;1000132513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000154718.txt"&gt;1000154718.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000168453.txt"&gt;1000168453.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1008619994.txt"&gt;1008619994.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018539404.txt"&gt;1018539404.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018647333.txt"&gt;1018647333.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1024334440.txt"&gt;1024334440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051638938.txt"&gt;1051638938.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1052774789.txt"&gt;1052774789.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053610494.txt"&gt;1053610494.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054748574.txt"&gt;1054748574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054756929.txt"&gt;1054756929.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058275977.txt"&gt;1058275977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062592331.txt"&gt;1062592331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065785323.txt"&gt;1065785323.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074344124.txt"&gt;1074344124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142389768.txt"&gt;1142389768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142469228.txt"&gt;1142469228.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237289045.txt"&gt;1237289045.txt&lt;/a&gt;&lt;br /&gt;6 edwardcook, &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142314357.txt"&gt;1142314357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142389768.txt"&gt;1142389768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142469228.txt"&gt;1142469228.txt&lt;/a&gt;&lt;br /&gt;11 Ellen Mosley-Thompson, &lt;a href="http://junkscience.com/FOIA/mail/1051156418.txt"&gt;1051156418.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051202354.txt"&gt;1051202354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051230500.txt"&gt;1051230500.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054736277.txt"&gt;1054736277.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054757526.txt"&gt;1054757526.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1056440026.txt"&gt;1056440026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1056477710.txt"&gt;1056477710.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065636937.txt"&gt;1065636937.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067194064.txt"&gt;1067194064.txt&lt;/a&gt;&lt;br /&gt;12 Eric Steig, &lt;a href="http://junkscience.com/FOIA/mail/0939923089.txt"&gt;0939923089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0976640129.txt"&gt;0976640129.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0976807838.txt"&gt;0976807838.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718382.txt"&gt;0990718382.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102687002.txt"&gt;1102687002.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167961271.txt"&gt;1167961271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1189797973.txt"&gt;1189797973.txt&lt;/a&gt;&lt;br /&gt;4 Eric W Wolff, &lt;a href="http://junkscience.com/FOIA/mail/1137184681.txt"&gt;1137184681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;7 Eugene Vaganov, &lt;a href="http://junkscience.com/FOIA/mail/0847838200.txt"&gt;0847838200.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0857677215.txt"&gt;0857677215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888609364.txt"&gt;0888609364.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919450520.txt"&gt;0919450520.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951977522.txt"&gt;0951977522.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0971129284.txt"&gt;0971129284.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1093294138.txt"&gt;1093294138.txt&lt;/a&gt;&lt;br /&gt;3 Eugene Wahl, &lt;a href="http://junkscience.com/FOIA/mail/1151094928.txt"&gt;1151094928.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153520622.txt"&gt;1153520622.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219861908.txt"&gt;1219861908.txt&lt;/a&gt;&lt;br /&gt;1 Eugenia Kalnay, &lt;a href="http://junkscience.com/FOIA/mail/1101133749.txt"&gt;1101133749.txt&lt;/a&gt;&lt;br /&gt;201 Eystein Jansen, &lt;a href="http://junkscience.com/FOIA/mail/1038842251.txt"&gt;1038842251.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1049745840.txt"&gt;1049745840.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057368583.txt"&gt;1057368583.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057586225.txt"&gt;1057586225.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1092433030.txt"&gt;1092433030.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1096645745.txt"&gt;1096645745.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1097540855.txt"&gt;1097540855.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1098294574.txt"&gt;1098294574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103236623.txt"&gt;1103236623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103828684.txt"&gt;1103828684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104893567.txt"&gt;1104893567.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104941753.txt"&gt;1104941753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104945887.txt"&gt;1104945887.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105024270.txt"&gt;1105024270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105386027.txt"&gt;1105386027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105395606.txt"&gt;1105395606.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105462633.txt"&gt;1105462633.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105543270.txt"&gt;1105543270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105556495.txt"&gt;1105556495.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588673.txt"&gt;1105588673.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588681.txt"&gt;1105588681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105627987.txt"&gt;1105627987.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105653626.txt"&gt;1105653626.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105661016.txt"&gt;1105661016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105661725.txt"&gt;1105661725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105663624.txt"&gt;1105663624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105667593.txt"&gt;1105667593.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105670738.txt"&gt;1105670738.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105723247.txt"&gt;1105723247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105730627.txt"&gt;1105730627.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105978592.txt"&gt;1105978592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106346062.txt"&gt;1106346062.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1107191864.txt"&gt;1107191864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109087609.txt"&gt;1109087609.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110909006.txt"&gt;1110909006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112670527.txt"&gt;1112670527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114025310.txt"&gt;1114025310.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114113870.txt"&gt;1114113870.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114130226.txt"&gt;1114130226.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116363805.txt"&gt;1116363805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116365074.txt"&gt;1116365074.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116440198.txt"&gt;1116440198.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116646247.txt"&gt;1116646247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116902771.txt"&gt;1116902771.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1117757977.txt"&gt;1117757977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1118866416.txt"&gt;1118866416.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119628345.txt"&gt;1119628345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119901360.txt"&gt;1119901360.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119924849.txt"&gt;1119924849.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119967865.txt"&gt;1119967865.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120014836.txt"&gt;1120014836.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120017435.txt"&gt;1120017435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120236419.txt"&gt;1120236419.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121294040.txt"&gt;1121294040.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121392136.txt"&gt;1121392136.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121686753.txt"&gt;1121686753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121869083.txt"&gt;1121869083.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121876302.txt"&gt;1121876302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121877545.txt"&gt;1121877545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121883804.txt"&gt;1121883804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950401.txt"&gt;1121950401.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121964854.txt"&gt;1121964854.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121976478.txt"&gt;1121976478.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122052662.txt"&gt;1122052662.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122126027.txt"&gt;1122126027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122300990.txt"&gt;1122300990.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122394173.txt"&gt;1122394173.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122601784.txt"&gt;1122601784.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123268256.txt"&gt;1123268256.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123513957.txt"&gt;1123513957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123611283.txt"&gt;1123611283.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123612499.txt"&gt;1123612499.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1127614205.txt"&gt;1127614205.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1128000000.txt"&gt;1128000000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133360497.txt"&gt;1133360497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134931991.txt"&gt;1134931991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136298918.txt"&gt;1136298918.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136308095.txt"&gt;1136308095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1137686657.txt"&gt;1137686657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138042050.txt"&gt;1138042050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138398400.txt"&gt;1138398400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138734209.txt"&gt;1138734209.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139006752.txt"&gt;1139006752.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139242164.txt"&gt;1139242164.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139331621.txt"&gt;1139331621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139357516.txt"&gt;1139357516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139413326.txt"&gt;1139413326.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139515011.txt"&gt;1139515011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139591144.txt"&gt;1139591144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139592077.txt"&gt;1139592077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139594390.txt"&gt;1139594390.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139607804.txt"&gt;1139607804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139627770.txt"&gt;1139627770.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139845689.txt"&gt;1139845689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139847614.txt"&gt;1139847614.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139850906.txt"&gt;1139850906.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139932579.txt"&gt;1139932579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140009927.txt"&gt;1140009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140021977.txt"&gt;1140021977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140039406.txt"&gt;1140039406.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140067691.txt"&gt;1140067691.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140130198.txt"&gt;1140130198.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140189328.txt"&gt;1140189328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140209561.txt"&gt;1140209561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140213644.txt"&gt;1140213644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140231162.txt"&gt;1140231162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140453339.txt"&gt;1140453339.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140568004.txt"&gt;1140568004.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140616435.txt"&gt;1140616435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140707670.txt"&gt;1140707670.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141072471.txt"&gt;1141072471.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141143688.txt"&gt;1141143688.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141145428.txt"&gt;1141145428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141151539.txt"&gt;1141151539.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141180962.txt"&gt;1141180962.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141187005.txt"&gt;1141187005.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141246541.txt"&gt;1141246541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141250377.txt"&gt;1141250377.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141267802.txt"&gt;1141267802.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141398437.txt"&gt;1141398437.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141750932.txt"&gt;1141750932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141849134.txt"&gt;1141849134.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141930111.txt"&gt;1141930111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142285374.txt"&gt;1142285374.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142314357.txt"&gt;1142314357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142389768.txt"&gt;1142389768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142457385.txt"&gt;1142457385.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142469228.txt"&gt;1142469228.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143137864.txt"&gt;1143137864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143227779.txt"&gt;1143227779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1144427398.txt"&gt;1144427398.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1145388731.txt"&gt;1145388731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1147982305.txt"&gt;1147982305.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148266730.txt"&gt;1148266730.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148299124.txt"&gt;1148299124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148307524.txt"&gt;1148307524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148339153.txt"&gt;1148339153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1150923423.txt"&gt;1150923423.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152563768.txt"&gt;1152563768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152909980.txt"&gt;1152909980.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152912026.txt"&gt;1152912026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153163328.txt"&gt;1153163328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153167959.txt"&gt;1153167959.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153186426.txt"&gt;1153186426.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153232546.txt"&gt;1153232546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153233036.txt"&gt;1153233036.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153254016.txt"&gt;1153254016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153273819.txt"&gt;1153273819.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153339440.txt"&gt;1153339440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153406000.txt"&gt;1153406000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153520622.txt"&gt;1153520622.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153761297.txt"&gt;1153761297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153762381.txt"&gt;1153762381.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153771098.txt"&gt;1153771098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153772456.txt"&gt;1153772456.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153866449.txt"&gt;1153866449.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154090231.txt"&gt;1154090231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154353922.txt"&gt;1154353922.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154370684.txt"&gt;1154370684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154461714.txt"&gt;1154461714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154484340.txt"&gt;1154484340.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155497558.txt"&gt;1155497558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1156988605.txt"&gt;1156988605.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157074096.txt"&gt;1157074096.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157138720.txt"&gt;1157138720.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157473748.txt"&gt;1157473748.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158153059.txt"&gt;1158153059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158175939.txt"&gt;1158175939.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158180188.txt"&gt;1158180188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158204073.txt"&gt;1158204073.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158336060.txt"&gt;1158336060.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158680269.txt"&gt;1158680269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160140264.txt"&gt;1160140264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168353155.txt"&gt;1168353155.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1171550268.txt"&gt;1171550268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172871972.txt"&gt;1172871972.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172963659.txt"&gt;1172963659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173300731.txt"&gt;1173300731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173359793.txt"&gt;1173359793.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173420319.txt"&gt;1173420319.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1175952951.txt"&gt;1175952951.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1189722851.txt"&gt;1189722851.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243432634.txt"&gt;1243432634.txt&lt;/a&gt;&lt;br /&gt;3 F. Ian Woodward, &lt;a href="http://junkscience.com/FOIA/mail/0848695896.txt"&gt;0848695896.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0942953601.txt"&gt;0942953601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0984799044.txt"&gt;0984799044.txt&lt;/a&gt;&lt;br /&gt;1 Farrar, &lt;a href="http://junkscience.com/FOIA/mail/0986486371.txt"&gt;0986486371.txt&lt;/a&gt;&lt;br /&gt;41 Folland, &lt;a href="http://junkscience.com/FOIA/mail/0880476729.txt"&gt;0880476729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885208555.txt"&gt;0885208555.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925829267.txt"&gt;0925829267.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926087421.txt"&gt;0926087421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929044085.txt"&gt;0929044085.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938018124.txt"&gt;0938018124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938031546.txt"&gt;0938031546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938108054.txt"&gt;0938108054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938108842.txt"&gt;0938108842.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938121656.txt"&gt;0938121656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938125745.txt"&gt;0938125745.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0966015630.txt"&gt;0966015630.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969308584.txt"&gt;0969308584.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970664328.txt"&gt;0970664328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718382.txt"&gt;0990718382.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0992349996.txt"&gt;0992349996.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101999700.txt"&gt;1101999700.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103647149.txt"&gt;1103647149.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1111417712.txt"&gt;1111417712.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120593115.txt"&gt;1120593115.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167928837.txt"&gt;1167928837.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168356704.txt"&gt;1168356704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1179765915.txt"&gt;1179765915.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199984805.txt"&gt;1199984805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206549942.txt"&gt;1206549942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1207158227.txt"&gt;1207158227.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212276269.txt"&gt;1212276269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212587222.txt"&gt;1212587222.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226500291.txt"&gt;1226500291.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231166089.txt"&gt;1231166089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231190304.txt"&gt;1231190304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231254297.txt"&gt;1231254297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231279297.txt"&gt;1231279297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254751382.txt"&gt;1254751382.txt&lt;/a&gt;&lt;br /&gt;34 Fortunat Joos, &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0965416206.txt"&gt;0965416206.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104945887.txt"&gt;1104945887.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105024270.txt"&gt;1105024270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105462633.txt"&gt;1105462633.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122601784.txt"&gt;1122601784.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136308095.txt"&gt;1136308095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1137686657.txt"&gt;1137686657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138398400.txt"&gt;1138398400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139847614.txt"&gt;1139847614.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139932579.txt"&gt;1139932579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140009927.txt"&gt;1140009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140209561.txt"&gt;1140209561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140231162.txt"&gt;1140231162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140567354.txt"&gt;1140567354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141164645.txt"&gt;1141164645.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141169545.txt"&gt;1141169545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141246541.txt"&gt;1141246541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141250377.txt"&gt;1141250377.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153232546.txt"&gt;1153232546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153254016.txt"&gt;1153254016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153520622.txt"&gt;1153520622.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153761297.txt"&gt;1153761297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153771098.txt"&gt;1153771098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153866449.txt"&gt;1153866449.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154461714.txt"&gt;1154461714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172963659.txt"&gt;1172963659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;59 Francis, &lt;a href="http://junkscience.com/FOIA/mail/0908633388.txt"&gt;0908633388.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919450520.txt"&gt;0919450520.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925225547.txt"&gt;0925225547.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968705882.txt"&gt;0968705882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047335806.txt"&gt;1047335806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1048106475.txt"&gt;1048106475.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108399027.txt"&gt;1108399027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109018144.txt"&gt;1109018144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109021312.txt"&gt;1109021312.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120017435.txt"&gt;1120017435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136918726.txt"&gt;1136918726.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151094928.txt"&gt;1151094928.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1156334874.txt"&gt;1156334874.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1180536574.txt"&gt;1180536574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1180539376.txt"&gt;1180539376.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196872660.txt"&gt;1196872660.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590292.txt"&gt;1197590292.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590293.txt"&gt;1197590293.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197660675.txt"&gt;1197660675.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197739308.txt"&gt;1197739308.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198443017.txt"&gt;1198443017.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198790779.txt"&gt;1198790779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198984230.txt"&gt;1198984230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199027884.txt"&gt;1199027884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199325151.txt"&gt;1199325151.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199926335.txt"&gt;1199926335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199972428.txt"&gt;1199972428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199999668.txt"&gt;1199999668.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1205413129.txt"&gt;1205413129.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210695733.txt"&gt;1210695733.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212088415.txt"&gt;1212088415.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1215713915.txt"&gt;1215713915.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233245601.txt"&gt;1233245601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233249393.txt"&gt;1233249393.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt;&lt;br /&gt;19 Francis Zwiers, &lt;a href="http://junkscience.com/FOIA/mail/1108399027.txt"&gt;1108399027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109018144.txt"&gt;1109018144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109021312.txt"&gt;1109021312.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151094928.txt"&gt;1151094928.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1156334874.txt"&gt;1156334874.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210695733.txt"&gt;1210695733.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212088415.txt"&gt;1212088415.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1215713915.txt"&gt;1215713915.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt;&lt;br /&gt;5 Frank Oldfield, &lt;a href="http://junkscience.com/FOIA/mail/0884964368.txt"&gt;0884964368.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0918146589.txt"&gt;0918146589.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951977522.txt"&gt;0951977522.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0963233839.txt"&gt;0963233839.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0963250650.txt"&gt;0963250650.txt&lt;/a&gt;&lt;br /&gt;4 Fred Pearce, &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065189366.txt"&gt;1065189366.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065206624.txt"&gt;1065206624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173359793.txt"&gt;1173359793.txt&lt;/a&gt;&lt;br /&gt;18 Fred Singer, &lt;a href="http://junkscience.com/FOIA/mail/0837094033.txt"&gt;0837094033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0965750123.txt"&gt;0965750123.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0981859677.txt"&gt;0981859677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067596623.txt"&gt;1067596623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1079108576.txt"&gt;1079108576.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199027884.txt"&gt;1199027884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206549942.txt"&gt;1206549942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1207158227.txt"&gt;1207158227.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210079946.txt"&gt;1210079946.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228412429.txt"&gt;1228412429.txt&lt;/a&gt;&lt;br /&gt;12 Fritz Schweingruber, &lt;a href="http://junkscience.com/FOIA/mail/0837197800.txt"&gt;0837197800.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0854306192.txt"&gt;0854306192.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0857677215.txt"&gt;0857677215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888609364.txt"&gt;0888609364.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889721031.txt"&gt;0889721031.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0914256033.txt"&gt;0914256033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951977522.txt"&gt;0951977522.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0992021888.txt"&gt;0992021888.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0993841811.txt"&gt;0993841811.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994186877.txt"&gt;0994186877.txt&lt;/a&gt;&lt;br /&gt;21 Gabi Hegerl, &lt;a href="http://junkscience.com/FOIA/mail/1036182485.txt"&gt;1036182485.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067194064.txt"&gt;1067194064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067450707.txt"&gt;1067450707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1092167224.txt"&gt;1092167224.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109684442.txt"&gt;1109684442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123163394.txt"&gt;1123163394.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155497558.txt"&gt;1155497558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158680269.txt"&gt;1158680269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200059003.txt"&gt;1200059003.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt;&lt;br /&gt;2 Gareth Jones, &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt;&lt;br /&gt;2 Gary Funkhouser, &lt;a href="http://junkscience.com/FOIA/mail/0842992948.txt"&gt;0842992948.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0843161829.txt"&gt;0843161829.txt&lt;/a&gt;&lt;br /&gt;112 Gavin Schmidt, &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067450707.txt"&gt;1067450707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102687002.txt"&gt;1102687002.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106322460.txt"&gt;1106322460.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108594561.txt"&gt;1108594561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109021312.txt"&gt;1109021312.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123860080.txt"&gt;1123860080.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123881502.txt"&gt;1123881502.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133532909.txt"&gt;1133532909.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139521913.txt"&gt;1139521913.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139923663.txt"&gt;1139923663.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1180342271.txt"&gt;1180342271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1188478901.txt"&gt;1188478901.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1189515774.txt"&gt;1189515774.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196872660.txt"&gt;1196872660.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198790779.txt"&gt;1198790779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199325151.txt"&gt;1199325151.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199926335.txt"&gt;1199926335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199972428.txt"&gt;1199972428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199999668.txt"&gt;1199999668.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200493432.txt"&gt;1200493432.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1201724331.txt"&gt;1201724331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209080077.txt"&gt;1209080077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209143958.txt"&gt;1209143958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210695733.txt"&gt;1210695733.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211462932.txt"&gt;1211462932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212276269.txt"&gt;1212276269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212413521.txt"&gt;1212413521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212587222.txt"&gt;1212587222.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219239172.txt"&gt;1219239172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224005421.txt"&gt;1224005421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225412081.txt"&gt;1225412081.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225462391.txt"&gt;1225462391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226337052.txt"&gt;1226337052.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226959467.txt"&gt;1226959467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228249747.txt"&gt;1228249747.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228258714.txt"&gt;1228258714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228330629.txt"&gt;1228330629.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1229468467.txt"&gt;1229468467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237474374.txt"&gt;1237474374.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237480766.txt"&gt;1237480766.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1245943185.txt"&gt;1245943185.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248790545.txt"&gt;1248790545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248877389.txt"&gt;1248877389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248979991.txt"&gt;1248979991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248993704.txt"&gt;1248993704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248998466.txt"&gt;1248998466.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249007192.txt"&gt;1249007192.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052097.txt"&gt;1249052097.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052848.txt"&gt;1249052848.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249313699.txt"&gt;1249313699.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249326482.txt"&gt;1249326482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249652050.txt"&gt;1249652050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249655311.txt"&gt;1249655311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1250169233.txt"&gt;1250169233.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254163518.txt"&gt;1254163518.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254175144.txt"&gt;1254175144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254179301.txt"&gt;1254179301.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254230232.txt"&gt;1254230232.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254232855.txt"&gt;1254232855.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254235516.txt"&gt;1254235516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254323180.txt"&gt;1254323180.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254345174.txt"&gt;1254345174.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254345329.txt"&gt;1254345329.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254364959.txt"&gt;1254364959.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254409004.txt"&gt;1254409004.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254746802.txt"&gt;1254746802.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254754536.txt"&gt;1254754536.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255095172.txt"&gt;1255095172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255318331.txt"&gt;1255318331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352257.txt"&gt;1255352257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352444.txt"&gt;1255352444.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255477545.txt"&gt;1255477545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255496484.txt"&gt;1255496484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255523796.txt"&gt;1255523796.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255530325.txt"&gt;1255530325.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255532032.txt"&gt;1255532032.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255550975.txt"&gt;1255550975.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255553034.txt"&gt;1255553034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255558867.txt"&gt;1255558867.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256302524.txt"&gt;1256302524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256735067.txt"&gt;1256735067.txt&lt;/a&gt;&lt;br /&gt;1 Gene Gordon, &lt;a href="http://junkscience.com/FOIA/mail/1254751382.txt"&gt;1254751382.txt&lt;/a&gt;&lt;br /&gt;1 Geographical Sciences, &lt;a href="http://junkscience.com/FOIA/mail/1106346062.txt"&gt;1106346062.txt&lt;/a&gt;&lt;br /&gt;3 Georg Kaser, &lt;a href="http://junkscience.com/FOIA/mail/1105282939.txt"&gt;1105282939.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1117757977.txt"&gt;1117757977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123708417.txt"&gt;1123708417.txt&lt;/a&gt;&lt;br /&gt;2 George Boer, &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;1 George Marshall, &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt;&lt;br /&gt;1 gerner, &lt;a href="http://junkscience.com/FOIA/mail/0885208555.txt"&gt;0885208555.txt&lt;/a&gt;&lt;br /&gt;1 GERNER THOMSEN, &lt;a href="http://junkscience.com/FOIA/mail/0885208555.txt"&gt;0885208555.txt&lt;/a&gt;&lt;br /&gt;2 Gian-Kasper Plattner, &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138398400.txt"&gt;1138398400.txt&lt;/a&gt;&lt;br /&gt;1 Gifford Miller, &lt;a href="http://junkscience.com/FOIA/mail/1243369385.txt"&gt;1243369385.txt&lt;/a&gt;&lt;br /&gt;3 Gil Compo, &lt;a href="http://junkscience.com/FOIA/mail/1182795642.txt"&gt;1182795642.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1245941966.txt"&gt;1245941966.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1257874826.txt"&gt;1257874826.txt&lt;/a&gt;&lt;br /&gt;3 GIORGI FILIPPO, &lt;a href="http://junkscience.com/FOIA/mail/0968705882.txt"&gt;0968705882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968774000.txt"&gt;0968774000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968941827.txt"&gt;0968941827.txt&lt;/a&gt;&lt;br /&gt;1 Goodess Clare Dr, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;1 Graham F Haughton, &lt;a href="http://junkscience.com/FOIA/mail/1256765544.txt"&gt;1256765544.txt&lt;/a&gt;&lt;br /&gt;18 Grant Foster, &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248790545.txt"&gt;1248790545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248877389.txt"&gt;1248877389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248916539.txt"&gt;1248916539.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248979991.txt"&gt;1248979991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248998466.txt"&gt;1248998466.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249007192.txt"&gt;1249007192.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052097.txt"&gt;1249052097.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052848.txt"&gt;1249052848.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249313699.txt"&gt;1249313699.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249326482.txt"&gt;1249326482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249655311.txt"&gt;1249655311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254163518.txt"&gt;1254163518.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254179301.txt"&gt;1254179301.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254232855.txt"&gt;1254232855.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256302524.txt"&gt;1256302524.txt&lt;/a&gt;&lt;br /&gt;7 Griggs, &lt;a href="http://junkscience.com/FOIA/mail/0880476729.txt"&gt;0880476729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904762907.txt"&gt;0904762907.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907293443.txt"&gt;0907293443.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925507395.txt"&gt;0925507395.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0941483736.txt"&gt;0941483736.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968450529.txt"&gt;0968450529.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1090610951.txt"&gt;1090610951.txt&lt;/a&gt;&lt;br /&gt;1 Gustafson, &lt;a href="http://junkscience.com/FOIA/mail/1143661010.txt"&gt;1143661010.txt&lt;/a&gt;&lt;br /&gt;1 Guy (SEERAD), &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt;&lt;br /&gt;1 H Kontongomde, &lt;a href="http://junkscience.com/FOIA/mail/1105019698.txt"&gt;1105019698.txt&lt;/a&gt;&lt;br /&gt;63 Hadley Centre, &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0912095517.txt"&gt;0912095517.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925507395.txt"&gt;0925507395.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925823304.txt"&gt;0925823304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926087421.txt"&gt;0926087421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0927145311.txt"&gt;0927145311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0937153268.txt"&gt;0937153268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939003588.txt"&gt;0939003588.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0962366892.txt"&gt;0962366892.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968450529.txt"&gt;0968450529.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969652335.txt"&gt;0969652335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994186877.txt"&gt;0994186877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031923640.txt"&gt;1031923640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054576147.txt"&gt;1054576147.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059664704.txt"&gt;1059664704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059674663.txt"&gt;1059674663.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1092167224.txt"&gt;1092167224.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101999700.txt"&gt;1101999700.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1107191864.txt"&gt;1107191864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120593115.txt"&gt;1120593115.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1144427398.txt"&gt;1144427398.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146252894.txt"&gt;1146252894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153424011.txt"&gt;1153424011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1176746137.txt"&gt;1176746137.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182795642.txt"&gt;1182795642.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1184779319.txt"&gt;1184779319.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1191550129.txt"&gt;1191550129.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200059003.txt"&gt;1200059003.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206549942.txt"&gt;1206549942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1207158227.txt"&gt;1207158227.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209474516.txt"&gt;1209474516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231166089.txt"&gt;1231166089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231190304.txt"&gt;1231190304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231254297.txt"&gt;1231254297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231279297.txt"&gt;1231279297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1233586975.txt"&gt;1233586975.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234277656.txt"&gt;1234277656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234302123.txt"&gt;1234302123.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242132884.txt"&gt;1242132884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242136391.txt"&gt;1242136391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255095172.txt"&gt;1255095172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255100876.txt"&gt;1255100876.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255298593.txt"&gt;1255298593.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255477545.txt"&gt;1255477545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255538481.txt"&gt;1255538481.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1258053464.txt"&gt;1258053464.txt&lt;/a&gt;&lt;br /&gt;1 Hans Teunissen, &lt;a href="http://junkscience.com/FOIA/mail/1105019698.txt"&gt;1105019698.txt&lt;/a&gt;&lt;br /&gt;27 Hans von Storch, &lt;a href="http://junkscience.com/FOIA/mail/0968705882.txt"&gt;0968705882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968774000.txt"&gt;0968774000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0968941827.txt"&gt;0968941827.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994187098.txt"&gt;0994187098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047388489.txt"&gt;1047388489.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047390562.txt"&gt;1047390562.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047474776.txt"&gt;1047474776.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047478548.txt"&gt;1047478548.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047484387.txt"&gt;1047484387.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047485263.txt"&gt;1047485263.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047503776.txt"&gt;1047503776.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051190249.txt"&gt;1051190249.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057944829.txt"&gt;1057944829.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1060002347.txt"&gt;1060002347.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062618881.txt"&gt;1062618881.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106346062.txt"&gt;1106346062.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108248246.txt"&gt;1108248246.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109021312.txt"&gt;1109021312.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109267110.txt"&gt;1109267110.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155333435.txt"&gt;1155333435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155346370.txt"&gt;1155346370.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224035484.txt"&gt;1224035484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252672219.txt"&gt;1252672219.txt&lt;/a&gt;&lt;br /&gt;1 Harpham Colin Dr, &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt;&lt;br /&gt;10 Heinz Wanner, &lt;a href="http://junkscience.com/FOIA/mail/0956161482.txt"&gt;0956161482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1124994521.txt"&gt;1124994521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125067952.txt"&gt;1125067952.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125085162.txt"&gt;1125085162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133366680.txt"&gt;1133366680.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160142338.txt"&gt;1160142338.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt;&lt;br /&gt;1 Helen Self, &lt;a href="http://junkscience.com/FOIA/mail/0917644194.txt"&gt;0917644194.txt&lt;/a&gt;&lt;br /&gt;1 Henri D. Grissino-Mayer, &lt;a href="http://junkscience.com/FOIA/mail/0925158373.txt"&gt;0925158373.txt&lt;/a&gt;&lt;br /&gt;15 Henry Pollack, &lt;a href="http://junkscience.com/FOIA/mail/0907258644.txt"&gt;0907258644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0933716462.txt"&gt;0933716462.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983552403.txt"&gt;0983552403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103828684.txt"&gt;1103828684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119628345.txt"&gt;1119628345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123611283.txt"&gt;1123611283.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139006752.txt"&gt;1139006752.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139850906.txt"&gt;1139850906.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140567354.txt"&gt;1140567354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140707670.txt"&gt;1140707670.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1145388731.txt"&gt;1145388731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152563768.txt"&gt;1152563768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152909980.txt"&gt;1152909980.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152912026.txt"&gt;1152912026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153273819.txt"&gt;1153273819.txt&lt;/a&gt;&lt;br /&gt;4 Hugues Goosse, &lt;a href="http://junkscience.com/FOIA/mail/1109087609.txt"&gt;1109087609.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153233036.txt"&gt;1153233036.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173300731.txt"&gt;1173300731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt;&lt;br /&gt;3 Humphrey, &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199466465.txt"&gt;1199466465.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228922050.txt"&gt;1228922050.txt&lt;/a&gt;&lt;br /&gt;2 Iain Brown, &lt;a href="http://junkscience.com/FOIA/mail/1031762366.txt"&gt;1031762366.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075393544.txt"&gt;1075393544.txt&lt;/a&gt;&lt;br /&gt;1 Iain Brown (UKCIP), &lt;a href="http://junkscience.com/FOIA/mail/1031762366.txt"&gt;1031762366.txt&lt;/a&gt;&lt;br /&gt;4 Ian Harris, &lt;a href="http://junkscience.com/FOIA/mail/0881356379.txt"&gt;0881356379.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994083845.txt"&gt;0994083845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1178107838.txt"&gt;1178107838.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252090220.txt"&gt;1252090220.txt&lt;/a&gt;&lt;br /&gt;2 Ian Harris (Harry), &lt;a href="http://junkscience.com/FOIA/mail/0994083845.txt"&gt;0994083845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1178107838.txt"&gt;1178107838.txt&lt;/a&gt;&lt;br /&gt;49 ifor, &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0847838200.txt"&gt;0847838200.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0857677215.txt"&gt;0857677215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0884731847.txt"&gt;0884731847.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885208555.txt"&gt;0885208555.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0887665729.txt"&gt;0887665729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889554019.txt"&gt;0889554019.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0897669409.txt"&gt;0897669409.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907339897.txt"&gt;0907339897.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0908633388.txt"&gt;0908633388.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0911405082.txt"&gt;0911405082.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0912633188.txt"&gt;0912633188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919450520.txt"&gt;0919450520.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926947295.txt"&gt;0926947295.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0947802707.txt"&gt;0947802707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951977522.txt"&gt;0951977522.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0952619617.txt"&gt;0952619617.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0955699514.txt"&gt;0955699514.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0973374325.txt"&gt;0973374325.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983196231.txt"&gt;0983196231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983207072.txt"&gt;0983207072.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988466058.txt"&gt;0988466058.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000168453.txt"&gt;1000168453.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1031762366.txt"&gt;1031762366.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1036182485.txt"&gt;1036182485.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1037394925.txt"&gt;1037394925.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053461261.txt"&gt;1053461261.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065785323.txt"&gt;1065785323.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067532918.txt"&gt;1067532918.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067542015.txt"&gt;1067542015.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1076083097.txt"&gt;1076083097.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105723247.txt"&gt;1105723247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109021312.txt"&gt;1109021312.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116017259.txt"&gt;1116017259.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141068509.txt"&gt;1141068509.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143661010.txt"&gt;1143661010.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155150358.txt"&gt;1155150358.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163715685.txt"&gt;1163715685.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163771694.txt"&gt;1163771694.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173359793.txt"&gt;1173359793.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1178107838.txt"&gt;1178107838.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199458641.txt"&gt;1199458641.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224176459.txt"&gt;1224176459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237289045.txt"&gt;1237289045.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1244067818.txt"&gt;1244067818.txt&lt;/a&gt;&lt;br /&gt;5 Irina Fast, &lt;a href="http://junkscience.com/FOIA/mail/1043775215.txt"&gt;1043775215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1044469169.txt"&gt;1044469169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1064946297.txt"&gt;1064946297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123860080.txt"&gt;1123860080.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123881502.txt"&gt;1123881502.txt&lt;/a&gt;&lt;br /&gt;1 Isaak M. Khalatnikov, &lt;a href="http://junkscience.com/FOIA/mail/0865941506.txt"&gt;0865941506.txt&lt;/a&gt;&lt;br /&gt;1 Isabelle Gouirand, &lt;a href="http://junkscience.com/FOIA/mail/1119534778.txt"&gt;1119534778.txt&lt;/a&gt;&lt;br /&gt;1 J Overpeck, &lt;a href="http://junkscience.com/FOIA/mail/1118866416.txt"&gt;1118866416.txt&lt;/a&gt;&lt;br /&gt;1 J Shukla, &lt;a href="http://junkscience.com/FOIA/mail/1202939193.txt"&gt;1202939193.txt&lt;/a&gt;&lt;br /&gt;1 J. Oerlemans, &lt;a href="http://junkscience.com/FOIA/mail/1139357516.txt"&gt;1139357516.txt&lt;/a&gt;&lt;br /&gt;12 J. Salinger, &lt;a href="http://junkscience.com/FOIA/mail/1248877389.txt"&gt;1248877389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248979991.txt"&gt;1248979991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248998466.txt"&gt;1248998466.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249007192.txt"&gt;1249007192.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052097.txt"&gt;1249052097.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249313699.txt"&gt;1249313699.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249326482.txt"&gt;1249326482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249655311.txt"&gt;1249655311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254163518.txt"&gt;1254163518.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254179301.txt"&gt;1254179301.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254232855.txt"&gt;1254232855.txt&lt;/a&gt;&lt;br /&gt;3 j.turnpenny, &lt;a href="http://junkscience.com/FOIA/mail/1031762366.txt"&gt;1031762366.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047335806.txt"&gt;1047335806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1048106475.txt"&gt;1048106475.txt&lt;/a&gt;&lt;br /&gt;13 Jae Edmonds, &lt;a href="http://junkscience.com/FOIA/mail/0884731847.txt"&gt;0884731847.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0884787012.txt"&gt;0884787012.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885318160.txt"&gt;0885318160.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0887665729.txt"&gt;0887665729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888364876.txt"&gt;0888364876.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888611422.txt"&gt;0888611422.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889047457.txt"&gt;0889047457.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889554019.txt"&gt;0889554019.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0893188400.txt"&gt;0893188400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0900972000.txt"&gt;0900972000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0901894140.txt"&gt;0901894140.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904080701.txt"&gt;0904080701.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904762907.txt"&gt;0904762907.txt&lt;/a&gt;&lt;br /&gt;17 James Annan, &lt;a href="http://junkscience.com/FOIA/mail/1196872660.txt"&gt;1196872660.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248877389.txt"&gt;1248877389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248979991.txt"&gt;1248979991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248998466.txt"&gt;1248998466.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249007192.txt"&gt;1249007192.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052097.txt"&gt;1249052097.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052848.txt"&gt;1249052848.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249313699.txt"&gt;1249313699.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249326482.txt"&gt;1249326482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249503274.txt"&gt;1249503274.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249655311.txt"&gt;1249655311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254163518.txt"&gt;1254163518.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254179301.txt"&gt;1254179301.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254232855.txt"&gt;1254232855.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256302524.txt"&gt;1256302524.txt&lt;/a&gt;&lt;br /&gt;17 James Hansen, &lt;a href="http://junkscience.com/FOIA/mail/0926087421.txt"&gt;0926087421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051156418.txt"&gt;1051156418.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051202354.txt"&gt;1051202354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051230500.txt"&gt;1051230500.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200421039.txt"&gt;1200421039.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200651426.txt"&gt;1200651426.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255318331.txt"&gt;1255318331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352257.txt"&gt;1255352257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255352444.txt"&gt;1255352444.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255496484.txt"&gt;1255496484.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255523796.txt"&gt;1255523796.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255530325.txt"&gt;1255530325.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255532032.txt"&gt;1255532032.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255550975.txt"&gt;1255550975.txt&lt;/a&gt;&lt;br /&gt;1 Jan Bakkes, &lt;a href="http://junkscience.com/FOIA/mail/0914013281.txt"&gt;0914013281.txt&lt;/a&gt;&lt;br /&gt;22 Jan Esper, &lt;a href="http://junkscience.com/FOIA/mail/0889721031.txt"&gt;0889721031.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0993841811.txt"&gt;0993841811.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994186877.txt"&gt;0994186877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000132513.txt"&gt;1000132513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000140042.txt"&gt;1000140042.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000168453.txt"&gt;1000168453.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065785323.txt"&gt;1065785323.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066075033.txt"&gt;1066075033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1073921187.txt"&gt;1073921187.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074277559.txt"&gt;1074277559.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075297872.txt"&gt;1075297872.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1092433030.txt"&gt;1092433030.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1098294574.txt"&gt;1098294574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106934832.txt"&gt;1106934832.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133366680.txt"&gt;1133366680.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141068509.txt"&gt;1141068509.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155150358.txt"&gt;1155150358.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163715685.txt"&gt;1163715685.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163771694.txt"&gt;1163771694.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1183753398.txt"&gt;1183753398.txt&lt;/a&gt;&lt;br /&gt;5 Janice Darch, &lt;a href="http://junkscience.com/FOIA/mail/0917644194.txt"&gt;0917644194.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0931964410.txt"&gt;0931964410.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1073489714.txt"&gt;1073489714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087504782.txt"&gt;1087504782.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1223915581.txt"&gt;1223915581.txt&lt;/a&gt;&lt;br /&gt;3 Janice Lough, &lt;a href="http://junkscience.com/FOIA/mail/1091798809.txt"&gt;1091798809.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1258039134.txt"&gt;1258039134.txt&lt;/a&gt;&lt;br /&gt;1 Jason E Smerdon, &lt;a href="http://junkscience.com/FOIA/mail/1123611283.txt"&gt;1123611283.txt&lt;/a&gt;&lt;br /&gt;1 Jason Lowe, &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt;&lt;br /&gt;1 Jason Smerdon, &lt;a href="http://junkscience.com/FOIA/mail/1152563768.txt"&gt;1152563768.txt&lt;/a&gt;&lt;br /&gt;11 Jean Jouzel, &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939923089.txt"&gt;0939923089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116363805.txt"&gt;1116363805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116365074.txt"&gt;1116365074.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135197791.txt"&gt;1135197791.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157473748.txt"&gt;1157473748.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200426564.txt"&gt;1200426564.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200493432.txt"&gt;1200493432.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1201561936.txt"&gt;1201561936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212435868.txt"&gt;1212435868.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1234821995.txt"&gt;1234821995.txt&lt;/a&gt;&lt;br /&gt;1 Jean-Charles HOURCADE, &lt;a href="http://junkscience.com/FOIA/mail/0994859893.txt"&gt;0994859893.txt&lt;/a&gt;&lt;br /&gt;4 Jean-Claude Duplessy, &lt;a href="http://junkscience.com/FOIA/mail/0841418825.txt"&gt;0841418825.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105462633.txt"&gt;1105462633.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105543270.txt"&gt;1105543270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt;&lt;br /&gt;21 Jenkins, &lt;a href="http://junkscience.com/FOIA/mail/0872202064.txt"&gt;0872202064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0876860264.txt"&gt;0876860264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0880476729.txt"&gt;0880476729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885208555.txt"&gt;0885208555.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0887665729.txt"&gt;0887665729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0908633388.txt"&gt;0908633388.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919450520.txt"&gt;0919450520.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939003588.txt"&gt;0939003588.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0947541692.txt"&gt;0947541692.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054756929.txt"&gt;1054756929.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167752455.txt"&gt;1167752455.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167754725.txt"&gt;1167754725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1167928837.txt"&gt;1167928837.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182179459.txt"&gt;1182179459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1184779319.txt"&gt;1184779319.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199466465.txt"&gt;1199466465.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222285054.txt"&gt;1222285054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224176459.txt"&gt;1224176459.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1254751382.txt"&gt;1254751382.txt&lt;/a&gt;&lt;br /&gt;1 Jennifer F Crossley, &lt;a href="http://junkscience.com/FOIA/mail/0933254004.txt"&gt;0933254004.txt&lt;/a&gt;&lt;br /&gt;1 Jenny Duckmanton, &lt;a href="http://junkscience.com/FOIA/mail/1056986548.txt"&gt;1056986548.txt&lt;/a&gt;&lt;br /&gt;10 Jerry Meehl, &lt;a href="http://junkscience.com/FOIA/mail/0967041809.txt"&gt;0967041809.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053461261.txt"&gt;1053461261.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087820257.txt"&gt;1087820257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088632271.txt"&gt;1088632271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088690856.txt"&gt;1088690856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106338806.txt"&gt;1106338806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1230052094.txt"&gt;1230052094.txt&lt;/a&gt;&lt;br /&gt;10 Jerry Meehl, &lt;a href="http://junkscience.com/FOIA/mail/0967041809.txt"&gt;0967041809.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053461261.txt"&gt;1053461261.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086904814.txt"&gt;1086904814.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1087820257.txt"&gt;1087820257.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088632271.txt"&gt;1088632271.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1088690856.txt"&gt;1088690856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106338806.txt"&gt;1106338806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1230052094.txt"&gt;1230052094.txt&lt;/a&gt;&lt;br /&gt;7 Jesse Smith, &lt;a href="http://junkscience.com/FOIA/mail/1014240346.txt"&gt;1014240346.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141187005.txt"&gt;1141187005.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141737742.txt"&gt;1141737742.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143819006.txt"&gt;1143819006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199926335.txt"&gt;1199926335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199972428.txt"&gt;1199972428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt;&lt;br /&gt;1 Jesus Fidel Gonzalez Rouco, &lt;a href="http://junkscience.com/FOIA/mail/1139441665.txt"&gt;1139441665.txt&lt;/a&gt;&lt;br /&gt;1 Jim Fairchild-Parks, &lt;a href="http://junkscience.com/FOIA/mail/0938712073.txt"&gt;0938712073.txt&lt;/a&gt;&lt;br /&gt;7 Jim Hall, &lt;a href="http://junkscience.com/FOIA/mail/1208278112.txt"&gt;1208278112.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211040378.txt"&gt;1211040378.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211215007.txt"&gt;1211215007.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211225754.txt"&gt;1211225754.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211491089.txt"&gt;1211491089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211816659.txt"&gt;1211816659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1219078495.txt"&gt;1219078495.txt&lt;/a&gt;&lt;br /&gt;12 Jim Hansen, &lt;a href="http://junkscience.com/FOIA/mail/0926087421.txt"&gt;0926087421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061300885.txt"&gt;1061300885.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105653626.txt"&gt;1105653626.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1170724434.txt"&gt;1170724434.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200421039.txt"&gt;1200421039.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200426564.txt"&gt;1200426564.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1217431501.txt"&gt;1217431501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255095172.txt"&gt;1255095172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255100876.txt"&gt;1255100876.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255477545.txt"&gt;1255477545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255553034.txt"&gt;1255553034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255558867.txt"&gt;1255558867.txt&lt;/a&gt;&lt;br /&gt;6 Jim Renwick, &lt;a href="http://junkscience.com/FOIA/mail/1103583356.txt"&gt;1103583356.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1115297153.txt"&gt;1115297153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177158252.txt"&gt;1177158252.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177163150.txt"&gt;1177163150.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177423054.txt"&gt;1177423054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177534709.txt"&gt;1177534709.txt&lt;/a&gt;&lt;br /&gt;13 Jim Salinger, &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051156418.txt"&gt;1051156418.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051202354.txt"&gt;1051202354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051230500.txt"&gt;1051230500.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1060002347.txt"&gt;1060002347.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1242136391.txt"&gt;1242136391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248785856.txt"&gt;1248785856.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248790545.txt"&gt;1248790545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248862973.txt"&gt;1248862973.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248916539.txt"&gt;1248916539.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249052848.txt"&gt;1249052848.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249326482.txt"&gt;1249326482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256302524.txt"&gt;1256302524.txt&lt;/a&gt;&lt;br /&gt;1 jjzeeberg, &lt;a href="http://junkscience.com/FOIA/mail/0974731263.txt"&gt;0974731263.txt&lt;/a&gt;&lt;br /&gt;1 JKenyon, &lt;a href="http://junkscience.com/FOIA/mail/1219844013.txt"&gt;1219844013.txt&lt;/a&gt;&lt;br /&gt;24 John Christy, &lt;a href="http://junkscience.com/FOIA/mail/0929985154.txt"&gt;0929985154.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0981859677.txt"&gt;0981859677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718382.txt"&gt;0990718382.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057941657.txt"&gt;1057941657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106338806.txt"&gt;1106338806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120593115.txt"&gt;1120593115.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120676865.txt"&gt;1120676865.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196964260.txt"&gt;1196964260.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199458641.txt"&gt;1199458641.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199984805.txt"&gt;1199984805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200090166.txt"&gt;1200090166.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212088415.txt"&gt;1212088415.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221851501.txt"&gt;1221851501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228330629.txt"&gt;1228330629.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228412429.txt"&gt;1228412429.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248993704.txt"&gt;1248993704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249652050.txt"&gt;1249652050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255095172.txt"&gt;1255095172.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1255100876.txt"&gt;1255100876.txt&lt;/a&gt;&lt;br /&gt;4 John Daly, &lt;a href="http://junkscience.com/FOIA/mail/0839635440.txt"&gt;0839635440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970663670.txt"&gt;0970663670.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0981859677.txt"&gt;0981859677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1016831188.txt"&gt;1016831188.txt&lt;/a&gt;&lt;br /&gt;6 John Holdren, &lt;a href="http://junkscience.com/FOIA/mail/1066337021.txt"&gt;1066337021.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231166089.txt"&gt;1231166089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231190304.txt"&gt;1231190304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231254297.txt"&gt;1231254297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231279297.txt"&gt;1231279297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231350711.txt"&gt;1231350711.txt&lt;/a&gt;&lt;br /&gt;3 John L. Daly, &lt;a href="http://junkscience.com/FOIA/mail/0970663670.txt"&gt;0970663670.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0981859677.txt"&gt;0981859677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075403821.txt"&gt;1075403821.txt&lt;/a&gt;&lt;br /&gt;47 John Lanzante, &lt;a href="http://junkscience.com/FOIA/mail/1094752345.txt"&gt;1094752345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106338806.txt"&gt;1106338806.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196795844.txt"&gt;1196795844.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196877845.txt"&gt;1196877845.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196882357.txt"&gt;1196882357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196956362.txt"&gt;1196956362.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1196964260.txt"&gt;1196964260.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197325034.txt"&gt;1197325034.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590292.txt"&gt;1197590292.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197590293.txt"&gt;1197590293.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197660675.txt"&gt;1197660675.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197739308.txt"&gt;1197739308.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198443017.txt"&gt;1198443017.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198790779.txt"&gt;1198790779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1198984230.txt"&gt;1198984230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199286511.txt"&gt;1199286511.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199325151.txt"&gt;1199325151.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199926335.txt"&gt;1199926335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199972428.txt"&gt;1199972428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199994210.txt"&gt;1199994210.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1199999668.txt"&gt;1199999668.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200003656.txt"&gt;1200003656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200010023.txt"&gt;1200010023.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200112408.txt"&gt;1200112408.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1200162026.txt"&gt;1200162026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1203631942.txt"&gt;1203631942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1204315423.txt"&gt;1204315423.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209080077.txt"&gt;1209080077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1209143958.txt"&gt;1209143958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1210695733.txt"&gt;1210695733.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009927.txt"&gt;1212009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212026314.txt"&gt;1212026314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212067640.txt"&gt;1212067640.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212413521.txt"&gt;1212413521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1222901025.txt"&gt;1222901025.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224005421.txt"&gt;1224005421.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225462391.txt"&gt;1225462391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226337052.txt"&gt;1226337052.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226451442.txt"&gt;1226451442.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1226456830.txt"&gt;1226456830.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228249747.txt"&gt;1228249747.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1228258714.txt"&gt;1228258714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1229468467.txt"&gt;1229468467.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1231257056.txt"&gt;1231257056.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1232064755.txt"&gt;1232064755.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1248993704.txt"&gt;1248993704.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1249652050.txt"&gt;1249652050.txt&lt;/a&gt;&lt;br /&gt;1 john mitchell, &lt;a href="http://junkscience.com/FOIA/mail/1150923423.txt"&gt;1150923423.txt&lt;/a&gt;&lt;br /&gt;1 John Ogden, &lt;a href="http://junkscience.com/FOIA/mail/1037394925.txt"&gt;1037394925.txt&lt;/a&gt;&lt;br /&gt;1 John P. Holdren, &lt;a href="http://junkscience.com/FOIA/mail/1066337021.txt"&gt;1066337021.txt&lt;/a&gt;&lt;br /&gt;4 John Shepherd, &lt;a href="http://junkscience.com/FOIA/mail/0930934311.txt"&gt;0930934311.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0937153268.txt"&gt;0937153268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951431850.txt"&gt;0951431850.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0959187643.txt"&gt;0959187643.txt&lt;/a&gt;&lt;br /&gt;191 Jonathan Overpeck, &lt;a href="http://junkscience.com/FOIA/mail/0907258644.txt"&gt;0907258644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907695513.txt"&gt;0907695513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0918146589.txt"&gt;0918146589.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983566497.txt"&gt;0983566497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054736277.txt"&gt;1054736277.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054757526.txt"&gt;1054757526.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058906971.txt"&gt;1058906971.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059005592.txt"&gt;1059005592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061300885.txt"&gt;1061300885.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065636937.txt"&gt;1065636937.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067194064.txt"&gt;1067194064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067450707.txt"&gt;1067450707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103236623.txt"&gt;1103236623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103828684.txt"&gt;1103828684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104893567.txt"&gt;1104893567.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104941753.txt"&gt;1104941753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104945887.txt"&gt;1104945887.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105024270.txt"&gt;1105024270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105386027.txt"&gt;1105386027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105395606.txt"&gt;1105395606.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105462633.txt"&gt;1105462633.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105543270.txt"&gt;1105543270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588673.txt"&gt;1105588673.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588681.txt"&gt;1105588681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105627987.txt"&gt;1105627987.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105653626.txt"&gt;1105653626.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105661725.txt"&gt;1105661725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105663624.txt"&gt;1105663624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105667593.txt"&gt;1105667593.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105670738.txt"&gt;1105670738.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105723247.txt"&gt;1105723247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105730627.txt"&gt;1105730627.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105978592.txt"&gt;1105978592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110150877.txt"&gt;1110150877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110909006.txt"&gt;1110909006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112670527.txt"&gt;1112670527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114025310.txt"&gt;1114025310.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114130226.txt"&gt;1114130226.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116902771.txt"&gt;1116902771.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1117757977.txt"&gt;1117757977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119628345.txt"&gt;1119628345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119901360.txt"&gt;1119901360.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119924849.txt"&gt;1119924849.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119967865.txt"&gt;1119967865.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120014836.txt"&gt;1120014836.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120017435.txt"&gt;1120017435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120236419.txt"&gt;1120236419.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121294040.txt"&gt;1121294040.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121392136.txt"&gt;1121392136.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121686753.txt"&gt;1121686753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121869083.txt"&gt;1121869083.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121876302.txt"&gt;1121876302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121883804.txt"&gt;1121883804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950401.txt"&gt;1121950401.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121964854.txt"&gt;1121964854.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121976478.txt"&gt;1121976478.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122300990.txt"&gt;1122300990.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122394173.txt"&gt;1122394173.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123268256.txt"&gt;1123268256.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123513957.txt"&gt;1123513957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123611283.txt"&gt;1123611283.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123612499.txt"&gt;1123612499.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1127614205.txt"&gt;1127614205.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1128000000.txt"&gt;1128000000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133360497.txt"&gt;1133360497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134931991.txt"&gt;1134931991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135045957.txt"&gt;1135045957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135197791.txt"&gt;1135197791.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136298918.txt"&gt;1136298918.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136308095.txt"&gt;1136308095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1137686657.txt"&gt;1137686657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138042050.txt"&gt;1138042050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138398400.txt"&gt;1138398400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138734209.txt"&gt;1138734209.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138995069.txt"&gt;1138995069.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139006752.txt"&gt;1139006752.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139242164.txt"&gt;1139242164.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139331621.txt"&gt;1139331621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139357516.txt"&gt;1139357516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139413326.txt"&gt;1139413326.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139515011.txt"&gt;1139515011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139591144.txt"&gt;1139591144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139592077.txt"&gt;1139592077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139594390.txt"&gt;1139594390.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139607804.txt"&gt;1139607804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139627770.txt"&gt;1139627770.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139845689.txt"&gt;1139845689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139847614.txt"&gt;1139847614.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139850906.txt"&gt;1139850906.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139932579.txt"&gt;1139932579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140009927.txt"&gt;1140009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140021977.txt"&gt;1140021977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140039406.txt"&gt;1140039406.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140067691.txt"&gt;1140067691.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140130198.txt"&gt;1140130198.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140189328.txt"&gt;1140189328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140209561.txt"&gt;1140209561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140213644.txt"&gt;1140213644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140231162.txt"&gt;1140231162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140568004.txt"&gt;1140568004.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140616435.txt"&gt;1140616435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140838402.txt"&gt;1140838402.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141072471.txt"&gt;1141072471.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141143688.txt"&gt;1141143688.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141145428.txt"&gt;1141145428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141151539.txt"&gt;1141151539.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141180962.txt"&gt;1141180962.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141187005.txt"&gt;1141187005.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141246541.txt"&gt;1141246541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141250377.txt"&gt;1141250377.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141398437.txt"&gt;1141398437.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141750932.txt"&gt;1141750932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141849134.txt"&gt;1141849134.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141930111.txt"&gt;1141930111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142285374.txt"&gt;1142285374.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142314357.txt"&gt;1142314357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142389768.txt"&gt;1142389768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142457385.txt"&gt;1142457385.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142469228.txt"&gt;1142469228.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143137864.txt"&gt;1143137864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143227779.txt"&gt;1143227779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1145388731.txt"&gt;1145388731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1147982305.txt"&gt;1147982305.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148266730.txt"&gt;1148266730.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148299124.txt"&gt;1148299124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148307524.txt"&gt;1148307524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148339153.txt"&gt;1148339153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1150923423.txt"&gt;1150923423.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152563768.txt"&gt;1152563768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152909980.txt"&gt;1152909980.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152912026.txt"&gt;1152912026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153163328.txt"&gt;1153163328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153167959.txt"&gt;1153167959.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153186426.txt"&gt;1153186426.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153232546.txt"&gt;1153232546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153233036.txt"&gt;1153233036.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153254016.txt"&gt;1153254016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153273819.txt"&gt;1153273819.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153339440.txt"&gt;1153339440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153406000.txt"&gt;1153406000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153520622.txt"&gt;1153520622.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153761297.txt"&gt;1153761297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153762381.txt"&gt;1153762381.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153771098.txt"&gt;1153771098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153772456.txt"&gt;1153772456.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153866449.txt"&gt;1153866449.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154090231.txt"&gt;1154090231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154353922.txt"&gt;1154353922.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154370684.txt"&gt;1154370684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154484340.txt"&gt;1154484340.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155497558.txt"&gt;1155497558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1156988605.txt"&gt;1156988605.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157074096.txt"&gt;1157074096.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157138720.txt"&gt;1157138720.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157473748.txt"&gt;1157473748.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158153059.txt"&gt;1158153059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158175939.txt"&gt;1158175939.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158180188.txt"&gt;1158180188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158204073.txt"&gt;1158204073.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158336060.txt"&gt;1158336060.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158680269.txt"&gt;1158680269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160140264.txt"&gt;1160140264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168353155.txt"&gt;1168353155.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172871972.txt"&gt;1172871972.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172963659.txt"&gt;1172963659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1175952951.txt"&gt;1175952951.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1189722851.txt"&gt;1189722851.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206628118.txt"&gt;1206628118.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240254197.txt"&gt;1240254197.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243432634.txt"&gt;1243432634.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252154659.txt"&gt;1252154659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252164302.txt"&gt;1252164302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252233095.txt"&gt;1252233095.txt&lt;/a&gt;&lt;br /&gt;127 Jonathan T. Overpeck, &lt;a href="http://junkscience.com/FOIA/mail/0907258644.txt"&gt;0907258644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907695513.txt"&gt;0907695513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0918146589.txt"&gt;0918146589.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058906971.txt"&gt;1058906971.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059005592.txt"&gt;1059005592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103236623.txt"&gt;1103236623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104893567.txt"&gt;1104893567.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104941753.txt"&gt;1104941753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104945887.txt"&gt;1104945887.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105024270.txt"&gt;1105024270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105386027.txt"&gt;1105386027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105395606.txt"&gt;1105395606.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105543270.txt"&gt;1105543270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588673.txt"&gt;1105588673.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588681.txt"&gt;1105588681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105627987.txt"&gt;1105627987.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105670738.txt"&gt;1105670738.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105978592.txt"&gt;1105978592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110150877.txt"&gt;1110150877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110909006.txt"&gt;1110909006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112670527.txt"&gt;1112670527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114025310.txt"&gt;1114025310.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114130226.txt"&gt;1114130226.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116902771.txt"&gt;1116902771.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119628345.txt"&gt;1119628345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119901360.txt"&gt;1119901360.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119924849.txt"&gt;1119924849.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119967865.txt"&gt;1119967865.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120014836.txt"&gt;1120014836.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120236419.txt"&gt;1120236419.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121392136.txt"&gt;1121392136.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121686753.txt"&gt;1121686753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121876302.txt"&gt;1121876302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121883804.txt"&gt;1121883804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950401.txt"&gt;1121950401.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121964854.txt"&gt;1121964854.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121976478.txt"&gt;1121976478.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123268256.txt"&gt;1123268256.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123513957.txt"&gt;1123513957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1127614205.txt"&gt;1127614205.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133360497.txt"&gt;1133360497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134931991.txt"&gt;1134931991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135045957.txt"&gt;1135045957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135197791.txt"&gt;1135197791.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136298918.txt"&gt;1136298918.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136308095.txt"&gt;1136308095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1137686657.txt"&gt;1137686657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138042050.txt"&gt;1138042050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139006752.txt"&gt;1139006752.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139357516.txt"&gt;1139357516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139413326.txt"&gt;1139413326.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139515011.txt"&gt;1139515011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139591144.txt"&gt;1139591144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139592077.txt"&gt;1139592077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139594390.txt"&gt;1139594390.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139607804.txt"&gt;1139607804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139627770.txt"&gt;1139627770.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139845689.txt"&gt;1139845689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139850906.txt"&gt;1139850906.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139932579.txt"&gt;1139932579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140009927.txt"&gt;1140009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140021977.txt"&gt;1140021977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140039406.txt"&gt;1140039406.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140067691.txt"&gt;1140067691.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140130198.txt"&gt;1140130198.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140189328.txt"&gt;1140189328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140209561.txt"&gt;1140209561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140213644.txt"&gt;1140213644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141072471.txt"&gt;1141072471.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141143688.txt"&gt;1141143688.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141145428.txt"&gt;1141145428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141398437.txt"&gt;1141398437.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141750932.txt"&gt;1141750932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141849134.txt"&gt;1141849134.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141930111.txt"&gt;1141930111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142285374.txt"&gt;1142285374.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142314357.txt"&gt;1142314357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142389768.txt"&gt;1142389768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143137864.txt"&gt;1143137864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143227779.txt"&gt;1143227779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1145388731.txt"&gt;1145388731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1147982305.txt"&gt;1147982305.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148266730.txt"&gt;1148266730.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148299124.txt"&gt;1148299124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148307524.txt"&gt;1148307524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148339153.txt"&gt;1148339153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1150923423.txt"&gt;1150923423.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152563768.txt"&gt;1152563768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152909980.txt"&gt;1152909980.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152912026.txt"&gt;1152912026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153186426.txt"&gt;1153186426.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153232546.txt"&gt;1153232546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153233036.txt"&gt;1153233036.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153273819.txt"&gt;1153273819.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153406000.txt"&gt;1153406000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153761297.txt"&gt;1153761297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153762381.txt"&gt;1153762381.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153771098.txt"&gt;1153771098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154090231.txt"&gt;1154090231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154353922.txt"&gt;1154353922.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154484340.txt"&gt;1154484340.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155497558.txt"&gt;1155497558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157074096.txt"&gt;1157074096.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157138720.txt"&gt;1157138720.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158153059.txt"&gt;1158153059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158180188.txt"&gt;1158180188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158204073.txt"&gt;1158204073.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158336060.txt"&gt;1158336060.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158680269.txt"&gt;1158680269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160140264.txt"&gt;1160140264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1175952951.txt"&gt;1175952951.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1206628118.txt"&gt;1206628118.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1240398230.txt"&gt;1240398230.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243432634.txt"&gt;1243432634.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1243527777.txt"&gt;1243527777.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1252164302.txt"&gt;1252164302.txt&lt;/a&gt;&lt;br /&gt;5 Jones Philip Prof, &lt;a href="http://junkscience.com/FOIA/mail/1189536059.txt"&gt;1189536059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225465306.txt"&gt;1225465306.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1225579812.txt"&gt;1225579812.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1256214796.txt"&gt;1256214796.txt&lt;/a&gt;&lt;br /&gt;1 Jorge Sánchez Sesma, &lt;a href="http://junkscience.com/FOIA/mail/1079384474.txt"&gt;1079384474.txt&lt;/a&gt;&lt;br /&gt;1 Jose Caicedo, &lt;a href="http://junkscience.com/FOIA/mail/0922988761.txt"&gt;0922988761.txt&lt;/a&gt;&lt;br /&gt;11 Joseph Alcamo, &lt;a href="http://junkscience.com/FOIA/mail/0876437553.txt"&gt;0876437553.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0880476729.txt"&gt;0880476729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885318160.txt"&gt;0885318160.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0887665729.txt"&gt;0887665729.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888364876.txt"&gt;0888364876.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888611422.txt"&gt;0888611422.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889047457.txt"&gt;0889047457.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889554019.txt"&gt;0889554019.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0893188400.txt"&gt;0893188400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904080701.txt"&gt;0904080701.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0904762907.txt"&gt;0904762907.txt&lt;/a&gt;&lt;br /&gt;4 Joseph M. Alcamo, &lt;a href="http://junkscience.com/FOIA/mail/0884731847.txt"&gt;0884731847.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0884787012.txt"&gt;0884787012.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885318160.txt"&gt;0885318160.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0901894140.txt"&gt;0901894140.txt&lt;/a&gt;&lt;br /&gt;1 Joseph M. Prospero, &lt;a href="http://junkscience.com/FOIA/mail/1084017554.txt"&gt;1084017554.txt&lt;/a&gt;&lt;br /&gt;3 Judith Lean, &lt;a href="http://junkscience.com/FOIA/mail/1135197791.txt"&gt;1135197791.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1224176459.txt"&gt;1224176459.txt&lt;/a&gt;&lt;br /&gt;3 Judy Jacobs, &lt;a href="http://junkscience.com/FOIA/mail/1054736277.txt"&gt;1054736277.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054757526.txt"&gt;1054757526.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065636937.txt"&gt;1065636937.txt&lt;/a&gt;&lt;br /&gt;5 Juerg Luterbacher, &lt;a href="http://junkscience.com/FOIA/mail/0956161482.txt"&gt;0956161482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990119702.txt"&gt;0990119702.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1182795642.txt"&gt;1182795642.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1246479448.txt"&gt;1246479448.txt&lt;/a&gt;&lt;br /&gt;4 Julia Uppenbrink, &lt;a href="http://junkscience.com/FOIA/mail/0924120405.txt"&gt;0924120405.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983204299.txt"&gt;0983204299.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983286849.txt"&gt;0983286849.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983452785.txt"&gt;0983452785.txt&lt;/a&gt;&lt;br /&gt;1 k briffa, &lt;a href="http://junkscience.com/FOIA/mail/1139441665.txt"&gt;1139441665.txt&lt;/a&gt;&lt;br /&gt;1 K. Demerjian, &lt;a href="http://junkscience.com/FOIA/mail/1182255717.txt"&gt;1182255717.txt&lt;/a&gt;&lt;br /&gt;559 k.briffa, &lt;a href="http://junkscience.com/FOIA/mail/0835015638.txt"&gt;0835015638.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0837197800.txt"&gt;0837197800.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0839635440.txt"&gt;0839635440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0839858862.txt"&gt;0839858862.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0841418825.txt"&gt;0841418825.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0842992948.txt"&gt;0842992948.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0842996314.txt"&gt;0842996314.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0843161829.txt"&gt;0843161829.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0844968241.txt"&gt;0844968241.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0845217169.txt"&gt;0845217169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0846715553.txt"&gt;0846715553.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0846781264.txt"&gt;0846781264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0847838200.txt"&gt;0847838200.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0850159177.txt"&gt;0850159177.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0850162662.txt"&gt;0850162662.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0854306192.txt"&gt;0854306192.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0857677215.txt"&gt;0857677215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0860182002.txt"&gt;0860182002.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0862839883.txt"&gt;0862839883.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0865941506.txt"&gt;0865941506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0866572566.txt"&gt;0866572566.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0876860264.txt"&gt;0876860264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0878654527.txt"&gt;0878654527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0881356379.txt"&gt;0881356379.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0884964368.txt"&gt;0884964368.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0885208555.txt"&gt;0885208555.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0888609364.txt"&gt;0888609364.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889211121.txt"&gt;0889211121.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0889721031.txt"&gt;0889721031.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0897669409.txt"&gt;0897669409.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0905351939.txt"&gt;0905351939.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906042912.txt"&gt;0906042912.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906136579.txt"&gt;0906136579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0906137836.txt"&gt;0906137836.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907258644.txt"&gt;0907258644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907266508.txt"&gt;0907266508.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907339897.txt"&gt;0907339897.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907686380.txt"&gt;0907686380.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907695513.txt"&gt;0907695513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0907975032.txt"&gt;0907975032.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0908297214.txt"&gt;0908297214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0908633388.txt"&gt;0908633388.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0911405082.txt"&gt;0911405082.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0912095517.txt"&gt;0912095517.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0914256033.txt"&gt;0914256033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0918146589.txt"&gt;0918146589.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919310505.txt"&gt;0919310505.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919450520.txt"&gt;0919450520.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0919980501.txt"&gt;0919980501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0923937760.txt"&gt;0923937760.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0924030302.txt"&gt;0924030302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0924120405.txt"&gt;0924120405.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0924532891.txt"&gt;0924532891.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0924613924.txt"&gt;0924613924.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925823304.txt"&gt;0925823304.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0925829267.txt"&gt;0925829267.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926010576.txt"&gt;0926010576.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926012905.txt"&gt;0926012905.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926026654.txt"&gt;0926026654.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926031061.txt"&gt;0926031061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0926681134.txt"&gt;0926681134.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0927817076.txt"&gt;0927817076.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929392417.txt"&gt;0929392417.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929565152.txt"&gt;0929565152.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0929719270.txt"&gt;0929719270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0930776203.txt"&gt;0930776203.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0932158667.txt"&gt;0932158667.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0933716462.txt"&gt;0933716462.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0935431006.txt"&gt;0935431006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0936652724.txt"&gt;0936652724.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0936728245.txt"&gt;0936728245.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0936823492.txt"&gt;0936823492.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0937153268.txt"&gt;0937153268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0937952556.txt"&gt;0937952556.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938018124.txt"&gt;0938018124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938019494.txt"&gt;0938019494.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938031546.txt"&gt;0938031546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938108054.txt"&gt;0938108054.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938108842.txt"&gt;0938108842.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938121656.txt"&gt;0938121656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0938125745.txt"&gt;0938125745.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939141116.txt"&gt;0939141116.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939154709.txt"&gt;0939154709.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0939923089.txt"&gt;0939923089.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0942777075.txt"&gt;0942777075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0947802707.txt"&gt;0947802707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951763817.txt"&gt;0951763817.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0951977522.txt"&gt;0951977522.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0952106664.txt"&gt;0952106664.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0955699514.txt"&gt;0955699514.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0956161482.txt"&gt;0956161482.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0962724639.txt"&gt;0962724639.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0963233839.txt"&gt;0963233839.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0963250650.txt"&gt;0963250650.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0965139790.txt"&gt;0965139790.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0965416206.txt"&gt;0965416206.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0966015630.txt"&gt;0966015630.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0967231160.txt"&gt;0967231160.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969618170.txt"&gt;0969618170.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969652335.txt"&gt;0969652335.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969891412.txt"&gt;0969891412.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0969912361.txt"&gt;0969912361.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0970842624.txt"&gt;0970842624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0971129284.txt"&gt;0971129284.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0971992541.txt"&gt;0971992541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0973867989.txt"&gt;0973867989.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0974731263.txt"&gt;0974731263.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0976640129.txt"&gt;0976640129.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0976807838.txt"&gt;0976807838.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0981859677.txt"&gt;0981859677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983196231.txt"&gt;0983196231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983204299.txt"&gt;0983204299.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983207072.txt"&gt;0983207072.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983286849.txt"&gt;0983286849.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983452785.txt"&gt;0983452785.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983552403.txt"&gt;0983552403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0983566497.txt"&gt;0983566497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0986407807.txt"&gt;0986407807.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0986499438.txt"&gt;0986499438.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988466058.txt"&gt;0988466058.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0988831541.txt"&gt;0988831541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990119702.txt"&gt;0990119702.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718382.txt"&gt;0990718382.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0990718506.txt"&gt;0990718506.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0992021888.txt"&gt;0992021888.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0992349996.txt"&gt;0992349996.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0992879415.txt"&gt;0992879415.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0993841811.txt"&gt;0993841811.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994186877.txt"&gt;0994186877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0994187098.txt"&gt;0994187098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/0995978954.txt"&gt;0995978954.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000132513.txt"&gt;1000132513.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000140042.txt"&gt;1000140042.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000154718.txt"&gt;1000154718.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000168453.txt"&gt;1000168453.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1000242208.txt"&gt;1000242208.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1001695888.txt"&gt;1001695888.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1008619994.txt"&gt;1008619994.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1011732147.txt"&gt;1011732147.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1014240346.txt"&gt;1014240346.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1015388778.txt"&gt;1015388778.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1016746746.txt"&gt;1016746746.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1016818778.txt"&gt;1016818778.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1016831188.txt"&gt;1016831188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1016896740.txt"&gt;1016896740.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018045075.txt"&gt;1018045075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018539404.txt"&gt;1018539404.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018623296.txt"&gt;1018623296.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018629153.txt"&gt;1018629153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018647333.txt"&gt;1018647333.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018889093.txt"&gt;1018889093.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1018893474.txt"&gt;1018893474.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1024334440.txt"&gt;1024334440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1029248202.txt"&gt;1029248202.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1029966978.txt"&gt;1029966978.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1034341705.txt"&gt;1034341705.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1036182485.txt"&gt;1036182485.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1036591086.txt"&gt;1036591086.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1038027690.txt"&gt;1038027690.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1038353689.txt"&gt;1038353689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1038842251.txt"&gt;1038842251.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1041862404.txt"&gt;1041862404.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1043775215.txt"&gt;1043775215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1044469169.txt"&gt;1044469169.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047388489.txt"&gt;1047388489.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047390562.txt"&gt;1047390562.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047474776.txt"&gt;1047474776.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047478548.txt"&gt;1047478548.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047484387.txt"&gt;1047484387.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047485263.txt"&gt;1047485263.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047489122.txt"&gt;1047489122.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1047503776.txt"&gt;1047503776.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1049745840.txt"&gt;1049745840.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051156418.txt"&gt;1051156418.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051202354.txt"&gt;1051202354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051230500.txt"&gt;1051230500.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051638938.txt"&gt;1051638938.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1051915601.txt"&gt;1051915601.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1052774789.txt"&gt;1052774789.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053457075.txt"&gt;1053457075.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053461261.txt"&gt;1053461261.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1053610494.txt"&gt;1053610494.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054666269.txt"&gt;1054666269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054736277.txt"&gt;1054736277.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054748574.txt"&gt;1054748574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054756929.txt"&gt;1054756929.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1054757526.txt"&gt;1054757526.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055004012.txt"&gt;1055004012.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055258297.txt"&gt;1055258297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055269567.txt"&gt;1055269567.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055273033.txt"&gt;1055273033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1055512559.txt"&gt;1055512559.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1056133160.txt"&gt;1056133160.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1056440026.txt"&gt;1056440026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1056477710.txt"&gt;1056477710.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1056477985.txt"&gt;1056477985.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057368583.txt"&gt;1057368583.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1057586225.txt"&gt;1057586225.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058275977.txt"&gt;1058275977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058898765.txt"&gt;1058898765.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1058906971.txt"&gt;1058906971.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1059005592.txt"&gt;1059005592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1060021835.txt"&gt;1060021835.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061298033.txt"&gt;1061298033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061300885.txt"&gt;1061300885.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1061625894.txt"&gt;1061625894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062189235.txt"&gt;1062189235.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062592331.txt"&gt;1062592331.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062618881.txt"&gt;1062618881.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062783293.txt"&gt;1062783293.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1062784268.txt"&gt;1062784268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1063657189.txt"&gt;1063657189.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1064946297.txt"&gt;1064946297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065125462.txt"&gt;1065125462.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065128595.txt"&gt;1065128595.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065189366.txt"&gt;1065189366.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065636937.txt"&gt;1065636937.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065723391.txt"&gt;1065723391.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1065785323.txt"&gt;1065785323.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066073000.txt"&gt;1066073000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066075033.txt"&gt;1066075033.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066077412.txt"&gt;1066077412.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066149334.txt"&gt;1066149334.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066166844.txt"&gt;1066166844.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1066337021.txt"&gt;1066337021.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067194064.txt"&gt;1067194064.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067450707.txt"&gt;1067450707.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067522573.txt"&gt;1067522573.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067532918.txt"&gt;1067532918.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067542015.txt"&gt;1067542015.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1067596623.txt"&gt;1067596623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1068239573.txt"&gt;1068239573.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1068652882.txt"&gt;1068652882.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1069630979.txt"&gt;1069630979.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1073921187.txt"&gt;1073921187.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074344124.txt"&gt;1074344124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074609944.txt"&gt;1074609944.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1074612429.txt"&gt;1074612429.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075297872.txt"&gt;1075297872.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075750656.txt"&gt;1075750656.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075768111.txt"&gt;1075768111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075836638.txt"&gt;1075836638.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1075931629.txt"&gt;1075931629.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1079108576.txt"&gt;1079108576.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1086722406.txt"&gt;1086722406.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1092433030.txt"&gt;1092433030.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1093294138.txt"&gt;1093294138.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1097540855.txt"&gt;1097540855.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1098294574.txt"&gt;1098294574.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101243716.txt"&gt;1101243716.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1101850440.txt"&gt;1101850440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102687002.txt"&gt;1102687002.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102953345.txt"&gt;1102953345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102956436.txt"&gt;1102956436.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102956446.txt"&gt;1102956446.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102956796.txt"&gt;1102956796.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102957001.txt"&gt;1102957001.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1102957016.txt"&gt;1102957016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103236623.txt"&gt;1103236623.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1103828684.txt"&gt;1103828684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104855751.txt"&gt;1104855751.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104893567.txt"&gt;1104893567.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104941753.txt"&gt;1104941753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1104945887.txt"&gt;1104945887.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105024270.txt"&gt;1105024270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105282939.txt"&gt;1105282939.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105386027.txt"&gt;1105386027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105395606.txt"&gt;1105395606.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105462633.txt"&gt;1105462633.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105543270.txt"&gt;1105543270.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105556495.txt"&gt;1105556495.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105566936.txt"&gt;1105566936.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588673.txt"&gt;1105588673.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105588681.txt"&gt;1105588681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105627987.txt"&gt;1105627987.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105653626.txt"&gt;1105653626.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105661016.txt"&gt;1105661016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105661725.txt"&gt;1105661725.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105663624.txt"&gt;1105663624.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105667593.txt"&gt;1105667593.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105670738.txt"&gt;1105670738.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105723247.txt"&gt;1105723247.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105730627.txt"&gt;1105730627.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1105978592.txt"&gt;1105978592.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106322460.txt"&gt;1106322460.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106346062.txt"&gt;1106346062.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1106946949.txt"&gt;1106946949.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1107899057.txt"&gt;1107899057.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108248246.txt"&gt;1108248246.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108399027.txt"&gt;1108399027.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1108594561.txt"&gt;1108594561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109014030.txt"&gt;1109014030.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109021312.txt"&gt;1109021312.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109087609.txt"&gt;1109087609.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1109267110.txt"&gt;1109267110.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110150877.txt"&gt;1110150877.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1110909006.txt"&gt;1110909006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1112670527.txt"&gt;1112670527.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114008578.txt"&gt;1114008578.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114025310.txt"&gt;1114025310.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114040791.txt"&gt;1114040791.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114088225.txt"&gt;1114088225.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114113870.txt"&gt;1114113870.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114130226.txt"&gt;1114130226.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1114607213.txt"&gt;1114607213.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116363805.txt"&gt;1116363805.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116365074.txt"&gt;1116365074.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116426671.txt"&gt;1116426671.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116440198.txt"&gt;1116440198.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1116902771.txt"&gt;1116902771.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1117757977.txt"&gt;1117757977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1118866416.txt"&gt;1118866416.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119628345.txt"&gt;1119628345.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119901360.txt"&gt;1119901360.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119924849.txt"&gt;1119924849.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119957715.txt"&gt;1119957715.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1119967865.txt"&gt;1119967865.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120017435.txt"&gt;1120017435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120236419.txt"&gt;1120236419.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1120528403.txt"&gt;1120528403.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121294040.txt"&gt;1121294040.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121392136.txt"&gt;1121392136.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121686753.txt"&gt;1121686753.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121721126.txt"&gt;1121721126.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121869083.txt"&gt;1121869083.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121871795.txt"&gt;1121871795.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121876302.txt"&gt;1121876302.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121883804.txt"&gt;1121883804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121893120.txt"&gt;1121893120.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950297.txt"&gt;1121950297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121950401.txt"&gt;1121950401.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121964854.txt"&gt;1121964854.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121974981.txt"&gt;1121974981.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1121976478.txt"&gt;1121976478.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122300990.txt"&gt;1122300990.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122394173.txt"&gt;1122394173.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122422429.txt"&gt;1122422429.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1122669035.txt"&gt;1122669035.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123268256.txt"&gt;1123268256.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123513957.txt"&gt;1123513957.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123514677.txt"&gt;1123514677.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123611283.txt"&gt;1123611283.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123612499.txt"&gt;1123612499.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123622471.txt"&gt;1123622471.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123860080.txt"&gt;1123860080.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1123881502.txt"&gt;1123881502.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1124994521.txt"&gt;1124994521.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125067952.txt"&gt;1125067952.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1125085162.txt"&gt;1125085162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1127491287.txt"&gt;1127491287.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1127614205.txt"&gt;1127614205.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1128000000.txt"&gt;1128000000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1132094873.txt"&gt;1132094873.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133360497.txt"&gt;1133360497.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133366680.txt"&gt;1133366680.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1133532909.txt"&gt;1133532909.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1134931991.txt"&gt;1134931991.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1135197791.txt"&gt;1135197791.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136298918.txt"&gt;1136298918.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136308095.txt"&gt;1136308095.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136413942.txt"&gt;1136413942.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1136918726.txt"&gt;1136918726.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1137184681.txt"&gt;1137184681.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1137686657.txt"&gt;1137686657.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138042050.txt"&gt;1138042050.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138398400.txt"&gt;1138398400.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138734209.txt"&gt;1138734209.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1138995069.txt"&gt;1138995069.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139006752.txt"&gt;1139006752.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139242164.txt"&gt;1139242164.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139323214.txt"&gt;1139323214.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139331621.txt"&gt;1139331621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139357516.txt"&gt;1139357516.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139413326.txt"&gt;1139413326.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139441665.txt"&gt;1139441665.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139504822.txt"&gt;1139504822.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139515011.txt"&gt;1139515011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139521913.txt"&gt;1139521913.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139591144.txt"&gt;1139591144.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139592077.txt"&gt;1139592077.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139594390.txt"&gt;1139594390.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139607804.txt"&gt;1139607804.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139627770.txt"&gt;1139627770.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139835663.txt"&gt;1139835663.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139845689.txt"&gt;1139845689.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139847614.txt"&gt;1139847614.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139850906.txt"&gt;1139850906.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139923663.txt"&gt;1139923663.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139932579.txt"&gt;1139932579.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1139942831.txt"&gt;1139942831.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140009927.txt"&gt;1140009927.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140021977.txt"&gt;1140021977.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140039406.txt"&gt;1140039406.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140067691.txt"&gt;1140067691.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140130198.txt"&gt;1140130198.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140189328.txt"&gt;1140189328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140209561.txt"&gt;1140209561.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140213644.txt"&gt;1140213644.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140231162.txt"&gt;1140231162.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140453339.txt"&gt;1140453339.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140567354.txt"&gt;1140567354.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140568004.txt"&gt;1140568004.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140616435.txt"&gt;1140616435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140707670.txt"&gt;1140707670.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1140838402.txt"&gt;1140838402.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141072471.txt"&gt;1141072471.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141143688.txt"&gt;1141143688.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141145428.txt"&gt;1141145428.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141151539.txt"&gt;1141151539.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141164645.txt"&gt;1141164645.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141169545.txt"&gt;1141169545.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141180962.txt"&gt;1141180962.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141187005.txt"&gt;1141187005.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141246541.txt"&gt;1141246541.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141250377.txt"&gt;1141250377.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141267802.txt"&gt;1141267802.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141393414.txt"&gt;1141393414.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141398437.txt"&gt;1141398437.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141737742.txt"&gt;1141737742.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141750932.txt"&gt;1141750932.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141849134.txt"&gt;1141849134.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1141930111.txt"&gt;1141930111.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142108839.txt"&gt;1142108839.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142285374.txt"&gt;1142285374.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142314357.txt"&gt;1142314357.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142389768.txt"&gt;1142389768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142457385.txt"&gt;1142457385.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1142469228.txt"&gt;1142469228.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143137864.txt"&gt;1143137864.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143227779.txt"&gt;1143227779.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143661010.txt"&gt;1143661010.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143753480.txt"&gt;1143753480.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1143819006.txt"&gt;1143819006.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1144427398.txt"&gt;1144427398.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1145388731.txt"&gt;1145388731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146062963.txt"&gt;1146062963.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146252894.txt"&gt;1146252894.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1146713460.txt"&gt;1146713460.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1147435800.txt"&gt;1147435800.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1147982305.txt"&gt;1147982305.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148266730.txt"&gt;1148266730.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148299124.txt"&gt;1148299124.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148307524.txt"&gt;1148307524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148339153.txt"&gt;1148339153.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148577381.txt"&gt;1148577381.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1148592899.txt"&gt;1148592899.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1150923423.txt"&gt;1150923423.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151094928.txt"&gt;1151094928.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151577820.txt"&gt;1151577820.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1151689605.txt"&gt;1151689605.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152563768.txt"&gt;1152563768.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152909980.txt"&gt;1152909980.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1152912026.txt"&gt;1152912026.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153139501.txt"&gt;1153139501.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153163328.txt"&gt;1153163328.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153167959.txt"&gt;1153167959.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153186426.txt"&gt;1153186426.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153232546.txt"&gt;1153232546.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153233036.txt"&gt;1153233036.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153254016.txt"&gt;1153254016.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153273819.txt"&gt;1153273819.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153314389.txt"&gt;1153314389.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153339440.txt"&gt;1153339440.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153406000.txt"&gt;1153406000.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153424011.txt"&gt;1153424011.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153470204.txt"&gt;1153470204.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153482869.txt"&gt;1153482869.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153520622.txt"&gt;1153520622.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153761297.txt"&gt;1153761297.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153762381.txt"&gt;1153762381.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153771098.txt"&gt;1153771098.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153772456.txt"&gt;1153772456.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1153866449.txt"&gt;1153866449.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154090231.txt"&gt;1154090231.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154353922.txt"&gt;1154353922.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154370684.txt"&gt;1154370684.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154461714.txt"&gt;1154461714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154484340.txt"&gt;1154484340.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1154697504.txt"&gt;1154697504.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155150358.txt"&gt;1155150358.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155333435.txt"&gt;1155333435.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155346370.txt"&gt;1155346370.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155402164.txt"&gt;1155402164.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155497558.txt"&gt;1155497558.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1155832288.txt"&gt;1155832288.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1156334874.txt"&gt;1156334874.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1156988605.txt"&gt;1156988605.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157074096.txt"&gt;1157074096.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157138720.txt"&gt;1157138720.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157473748.txt"&gt;1157473748.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1157546057.txt"&gt;1157546057.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158153059.txt"&gt;1158153059.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158175939.txt"&gt;1158175939.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158180188.txt"&gt;1158180188.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158204073.txt"&gt;1158204073.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158324958.txt"&gt;1158324958.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158336060.txt"&gt;1158336060.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158680269.txt"&gt;1158680269.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1158770262.txt"&gt;1158770262.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160140264.txt"&gt;1160140264.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160142338.txt"&gt;1160142338.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160755490.txt"&gt;1160755490.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1160771811.txt"&gt;1160771811.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1161261884.txt"&gt;1161261884.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163715685.txt"&gt;1163715685.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1163771694.txt"&gt;1163771694.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1164059987.txt"&gt;1164059987.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1164120712.txt"&gt;1164120712.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168022320.txt"&gt;1168022320.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168124326.txt"&gt;1168124326.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1168353155.txt"&gt;1168353155.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1169238969.txt"&gt;1169238969.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1171550268.txt"&gt;1171550268.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172776463.txt"&gt;1172776463.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172871972.txt"&gt;1172871972.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1172963659.txt"&gt;1172963659.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1173300731.txt"&gt;1173300731.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1175952951.txt"&gt;1175952951.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1177890796.txt"&gt;1177890796.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1183499559.txt"&gt;1183499559.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1183753398.txt"&gt;1183753398.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1189722851.txt"&gt;1189722851.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1197507092.txt"&gt;1197507092.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1202939193.txt"&gt;1202939193.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1211924186.txt"&gt;1211924186.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212009215.txt"&gt;1212009215.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212156886.txt"&gt;1212156886.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212166714.txt"&gt;1212166714.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1212686327.txt"&gt;1212686327.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1214228874.txt"&gt;1214228874.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1214229243.txt"&gt;1214229243.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1220039621.txt"&gt;1220039621.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1221742524.txt"&gt;1221742524.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1223915581.txt"&gt;1223915581.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236958090.txt"&gt;1236958090.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1236962118.txt"&gt;1236962118.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1237805013.txt"&gt;1237805013.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mail/1239572061.txt"&gt;1239572061.txt&lt;/a&gt; &lt;a href="http://junkscience.com/FOIA/mai
