Initial commit

master
Sven Slootweg 10 years ago
parent f5a1a61613
commit c7e4cc4a28

11
.gitignore vendored

@ -1,3 +1,8 @@
# https://git-scm.com/docs/gitignore
# https://help.github.com/articles/ignoring-files
# Example .gitignore files: https://github.com/github/gitignore
# https://git-scm.com/docs/gitignore
# https://help.github.com/articles/ignoring-files
# Example .gitignore files: https://github.com/github/gitignore
/node_modules/
/lib/CDXRecordCollection.js
/lib/CDXRecord.js
/lib/cdx.js
/index.js

@ -0,0 +1,29 @@
var gulp = require('gulp');
var gutil = require('gulp-util');
var concat = require('gulp-concat');
var rename = require('gulp-rename');
var coffee = require('gulp-coffee');
var cache = require('gulp-cached');
var remember = require('gulp-remember');
var plumber = require('gulp-plumber');
task = {
"source": ["index.coffee", "lib/**/*.coffee"]
}
gulp.task('coffee', function() {
return gulp.src(task.source, {base: "."})
.pipe(plumber())
.pipe(cache("coffee"))
.pipe(coffee({bare: true}).on('error', gutil.log)).on('data', gutil.log)
.pipe(remember("coffee"))
.pipe(gulp.dest("."));
});
/* Watcher */
gulp.task('watch', function () {
gulp.watch(task.source, ['coffee']);
});
gulp.task("default", ["coffee", "watch"]);

@ -0,0 +1,18 @@
fs = require "fs"
CDXRecordCollection = require "./lib/CDXRecordCollection"
JSONStream = require "JSONStream"
stream = require "stream"
adhocStream = require "adhoc-stream"
methods =
parseFile: (file) ->
collection = new CDXRecordCollection()
fs.createReadStream file
.pipe collection.stream
.pipe adhocStream.transformSync objectMode: true, (obj) ->
@push obj.data
.pipe JSONStream.stringify(false)
.pipe process.stdout
methods.parseFile "./sample.cdx"

@ -0,0 +1,30 @@
moment = require "moment"
module.exports = class CDXRecord
data: {} # For JSON output purposes etc.
constructor: (@delimiter, @signature) ->
getData: ->
return @data
generateRecord: ->
parseRecord: (data) ->
if not data?
return
fields = data.split(@delimiter)
for i, fieldName of @signature
if fields[i]? and fields[i] != "-"
switch fieldName
when "date"
value = moment fields[i], "YYYYMMDDHHmmss"
when "compressedDATFileOffset", "compressedARCFileOffset", "uncompressedDATFileOffset", "uncompressedARCFileOffset", "responseCode", "ARCDocumentLength", "port", "compressedRecordSize"
value = parseInt(fields[i])
else
value = fields[i]
this[fieldName] = value
@data[fieldName] = value

@ -0,0 +1,98 @@
_ = require "lodash"
CDXRecord = require "./CDXRecord"
stream = require "stream"
module.exports = class CDXRecordCollection
records: []
signature: null
delimiter: null
signatureMap:
compressedRecordSize: "S"
compressedDATFileOffset: "D"
compressedARCFileOffset: "V"
uncompressedDATFileOffset: "d"
uncompressedARCFileOffset: "v"
ARCDocumentLength: "n"
oldStyleChecksum: "c"
newStyleChecksum: "k"
canonicalizedUrl: "A"
canonicalizedFrame: "F"
canonicalizedHost: "H"
canonicalizedImage: "I"
canonicalizedJumpPoint: "J"
canonicalizedLink: "L"
canonicalizedPath: "P"
canonicalizedRedirect: "R"
canonicalizedHrefURL: "X"
canonicalizedSrcURL: "Y"
canonicalizedScriptURL: "Z"
originalMimeType: "m"
originalURL: "a"
originalFrame: "f"
originalHost: "h"
originalImage: "i"
originalJumpPoint: "j"
originalLink: "l"
originalPath: "p"
originalRedirect: "r"
originalHrefURL: "x"
originalSrcURL: "y"
originalScriptURL: "z"
date: "b"
IP: "e"
fileName: "g"
port: "o"
responseCode: "s"
title: "t"
metaTags: "M"
massagedURL: "N"
languageString: "Q"
uniqueness: "U"
newsGroup: "B"
rulespaceCategory: "C"
multiColumnLanguageDescription: "G"
someWeirdFBISWhatsChangedKindaThing: "K" # Yeah well, what did you expect me to do with that? :|
comment: "#"
_parseSignature: (signatureData) ->
@delimiter = signatureData[...1]
signatureMarkers = signatureData[5...].split(" ")
@signature = (@reverseSignatureMap[marker] for marker in signatureMarkers)
constructor: (@signature = []) ->
@reverseSignatureMap = _.invert @signatureMap
@stream = new RecordStreamer(this)
createRecord: (data) ->
record = new CDXRecord(@delimiter, @signature)
record.parseRecord data
@records.push record
return record
class RecordStreamer extends stream.Transform
constructor: (@collection) ->
super
@_writableState.objectMode = false
@_readableState.objectMode = true
@_headerFound = false
@_buffer = ""
_transform: (chunk, encoding, done) ->
@_buffer += chunk
lines = @_buffer.split(/\r?\n/)
@_buffer = lines.pop()
for line in lines
if not @_headerFound
# The first line is the header.
@collection._parseSignature line
@_headerFound = true
else
try
record = @collection.createRecord(line)
this.push record
catch err
this.emit "error", err
return
done()

@ -0,0 +1,3 @@
module.exports = null

@ -0,0 +1,37 @@
{
"name": "cdx",
"version": "0.0.1",
"description": "A parser and generator for (Internet Archive) CDX files.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.cryto.net:projects/joepie91/node-cdx"
},
"keywords": [
"archiving",
"cdx"
],
"author": "Sven Slootweg",
"license": "WTFPL",
"devDependencies": {
"gulp": "~3.8.0",
"gulp-cached": "~0.0.3",
"gulp-coffee": "~2.0.1",
"gulp-concat": "~2.2.0",
"gulp-livereload": "~2.1.0",
"gulp-nodemon": "~1.0.4",
"gulp-plumber": "~0.6.3",
"gulp-remember": "~0.2.0",
"gulp-rename": "~1.2.0",
"gulp-util": "~2.2.17"
},
"dependencies": {
"JSONStream": "^0.9.0",
"adhoc-stream": "^0.0.1",
"lodash": "^2.4.1",
"moment": "^2.8.3"
}
}

@ -0,0 +1,358 @@
CDX N b a m s k r M S V g
com,historyofelectronics)/ 20121018142521 http://www.historyofelectronics.com/ text/html 200 VB3WKPCMMTLXDM5TUGB45A4NC3WWN7JG - - 4512 907 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007 20121018142816 http://www.historyofelectronics.com/_flash_site_2007/ text/html 200 OP6ZYB2NSRG6EYJMQ6KKHBAUHUWVJG6F - - 4952 1147884 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/aparatus.jpg 20121018142818 http://www.historyofelectronics.com/_flash_site_2007/aparatus.jpg image/jpeg 200 HL6L7RTOGDPGPVZPYNHI7YHJHFRGQXPV - - 6799 1158269 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/buy.jpg 20121018142819 http://www.historyofelectronics.com/_flash_site_2007/buy.jpg image/jpeg 200 575OTBNLVSGCYRX4NDMK24RAX4MA7TNY - - 8819 1165516 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/cover.jpg 20121018142824 http://www.historyofelectronics.com/_flash_site_2007/cover.jpg image/jpeg 200 MA2DNK6L5KLPCQGS72HFAHL4E3VLLS2G - - 26488 1374206 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/email.jpg 20121018142825 http://www.historyofelectronics.com/_flash_site_2007/email.jpg image/jpeg 200 IO4NCQUFHLZRZQJTJBGJMAVK2HGLYZLZ - - 9102 1410267 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/favicon.ico 20121018142817 http://www.historyofelectronics.com/_flash_site_2007/favicon.ico image/vnd.microsoft.icon 200 DJBZBKABFKSBVNQWQJBBJHLPYW2PLWUC - - 1182 1153283 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/head.jpg 20121018142825 http://www.historyofelectronics.com/_flash_site_2007/head.jpg image/jpeg 200 BSHO6U22GIEM424MQD2SI6EIRRML37G3 - - 8681 1401140 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/much%20ado%20about%20almost%20nothing%20-%20chapter%201.pdf 20121018142821 http://www.historyofelectronics.com/_flash_site_2007/Much%20Ado%20About%20Almost%20Nothing%20-%20Chapter%201.pdf application/pdf 200 MD3M3H4772C4KKNIERETJ4YDFDAOX3BN - - 191684 1182076 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/pdf.jpg 20121018142820 http://www.historyofelectronics.com/_flash_site_2007/pdf.jpg image/jpeg 200 6TMW3YRPJ5XYI4YYNM3N3O4FSMHH323F - - 6815 1174782 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_flash_site_2007/swfobject.js 20121018142817 http://www.historyofelectronics.com/_flash_site_2007/swfobject.js application/javascript 200 IYMI6IN4AJ6IVQCDKTWCNBN4LOP3LZZF - - 2911 1154911 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_notes 20121018142815 http://www.historyofelectronics.com/_notes/ text/html 403 U4F3TKKAYMPRFZTTTRAZ43LHPPL3RPRU - - 810 1144893 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/_wusscripts 20121018142815 http://www.historyofelectronics.com/_WUSscripts/ text/html 404 VQNJB73KJL5DZHRWJGG47CTCBL2YA6HC - - 1337 1143136 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/favicon.ico 20121018142522 http://www.historyofelectronics.com/favicon.ico image/vnd.microsoft.icon 200 DJBZBKABFKSBVNQWQJBBJHLPYW2PLWUC - - 1171 5850 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/hoe.css 20121018142522 http://www.historyofelectronics.com/HoE.css text/css 200 MTK5EFCNPUWLOHGLDEXM5KTEIDKVXT6W - - 1695 7450 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/hoe.js 20121018142651 http://www.historyofelectronics.com/HoE.js application/javascript 200 X72REV5OVDTDD3IBB4YMIBWRLLPOCH4Q - - 1184 636225 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/images/history-of-electronics-book.jpg 20121018142522 http://www.historyofelectronics.com/images/History-of-Electronics-book.jpg image/jpeg 200 2EB2I2KIATSUG4FAJAZFXJZ3WY7XH5OX - - 11193 9594 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/index_files 20121018142814 http://www.historyofelectronics.com/index_files/ text/html 403 5IMJ3DXVIY5XD34JS2F56FTCS72YSL2D - - 815 1141898 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/jbots 20121018142816 http://www.historyofelectronics.com/JBots/ text/html 404 OF7BIVZDTJSWXXJIETBSZCROIRRYLIRN - - 1335 1146119 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/old 20121018142814 http://www.historyofelectronics.com/old/ text/html 403 TI3U5L3S6JBHSRM3VHGBXXM4FJQ3MAK6 - - 808 1140667 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1269.htm 20121018142625 http://www.historyofelectronics.com/Sub/1269.htm text/html 200 V75LSNF6RRURO7DXPIABZ5OWDV6IYYSA - - 3892 463143 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1269_files/filelist.xml 20121018142752 http://www.historyofelectronics.com/Sub/1269_files/filelist.xml text/html 404 WVLERYXPR5CM32JOKHOKE5IRLTOCPIBU - - 1350 1031178 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1600.htm 20121018142625 http://www.historyofelectronics.com/Sub/1600.htm text/html 200 DKISTZ76MZXZ7MRQIWGTD4XMMNARQEKH - - 3574 467468 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1600_files/filelist.xml 20121018142753 http://www.historyofelectronics.com/Sub/1600_files/filelist.xml text/html 404 CPSL4UPYPFLPZY2UR3EIKBHROXYJGMBG - - 1349 1032978 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1672.htm 20121018142626 http://www.historyofelectronics.com/Sub/1672.htm text/html 200 M7BP5GD672MXK6C2XB2AIQQOCJXPZORI - - 3475 471477 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1672_files/filelist.xml 20121018142753 http://www.historyofelectronics.com/Sub/1672_files/filelist.xml text/html 404 Z4HWTWT5RNNXQQ65JEQ56HHXME56V5JY - - 1349 1034777 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1729.htm 20121018142627 http://www.historyofelectronics.com/Sub/1729.htm text/html 200 CZXRD4SLGTPE5NRAIKENQX7YDQO4BLP3 - - 3948 475384 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1729_files/filelist.xml 20121018142754 http://www.historyofelectronics.com/Sub/1729_files/filelist.xml text/html 404 4JH4VIU3225N5SRSR5R4YQLLLIAUDXKJ - - 1347 1036576 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1733.htm 20121018142627 http://www.historyofelectronics.com/Sub/1733.htm text/html 200 W4BAESYIH554YUKVBEXBGF4T32DKLFSS - - 3168 479765 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1733_files/filelist.xml 20121018142754 http://www.historyofelectronics.com/Sub/1733_files/filelist.xml text/html 404 G4Y5EXXV6BCNBSKI64EOIQNP4EGS45IX - - 1345 1038372 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1746.htm 20121018142628 http://www.historyofelectronics.com/Sub/1746.htm text/html 200 J7KXAXKTEQ2NVM4Y72BL6LSCIJG7NJUQ - - 3575 483367 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1746_files/filelist.xml 20121018142754 http://www.historyofelectronics.com/Sub/1746_files/filelist.xml text/html 404 NK6RCYT75I76EELPMJYPPHM3HCZI6KJ2 - - 1347 1040168 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1751.htm 20121018142629 http://www.historyofelectronics.com/Sub/1751.htm text/html 200 TBZUFV7ZI3U3S3HXPHF33U6HUUODGIQI - - 3932 487376 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1751_files/filelist.xml 20121018142755 http://www.historyofelectronics.com/Sub/1751_files/filelist.xml text/html 404 EYP5PNUTDWTAQCJITIFBUI6PUL63DRKV - - 1347 1041961 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1784.htm 20121018142630 http://www.historyofelectronics.com/Sub/1784.htm text/html 200 WLJLF37MW6JBACQTPUMJ2FZ72RBCNO6W - - 3849 491741 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1784_files/editdata.mso 20121018142756 http://www.historyofelectronics.com/Sub/1784_files/editdata.mso text/html 404 D3CQYIBXA5FDOZATNSITVVBWF3VME4BH - - 1351 1044990 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1784_files/filelist.xml 20121018142755 http://www.historyofelectronics.com/Sub/1784_files/filelist.xml application/xml 200 PBNJOFMNCRWRLSBNYGBTPCZSVNQCZP2L - - 783 1043758 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1784_files/image002.jpg 20121018142756 http://www.historyofelectronics.com/Sub/1784_files/image002.jpg image/jpeg 200 H5FVAFV3TN6YINPZEIFSATNL6MXXOSB5 - - 4347 1046793 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1791.htm 20121018142630 http://www.historyofelectronics.com/Sub/1791.htm text/html 200 7WNVXCUYRVHB4FT6QBYRS74Q7B42WM6B - - 3752 496023 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1791_files/filelist.xml 20121018142757 http://www.historyofelectronics.com/Sub/1791_files/filelist.xml text/html 404 45OAFIBSLP4HUNEBQAXDO3MD3KBWWJ2B - - 1349 1051589 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1794.htm 20121018142631 http://www.historyofelectronics.com/Sub/1794.htm text/html 200 SYKNHAOBPC7KQNSB7NNIAT4RDXZK4U2O - - 2939 500209 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1794_files/filelist.xml 20121018142757 http://www.historyofelectronics.com/Sub/1794_files/filelist.xml text/html 404 FZVVB7Q7WNFYBXTKLOYR3RJK6AU3QYZT - - 1348 1053388 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1820.htm 20121018142631 http://www.historyofelectronics.com/Sub/1820.htm text/html 200 XW6UHBQ3VESL6ZWP2YBN42JXNGTX4B3Q - - 3769 503585 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1820_files/filelist.xml 20121018142757 http://www.historyofelectronics.com/Sub/1820_files/filelist.xml text/html 404 75XNW6UADDIATRAMDIDZGSSTGUBKB5AD - - 1348 1055183 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1825.htm 20121018142632 http://www.historyofelectronics.com/Sub/1825.htm text/html 200 5BRQNHCNRH6Z4TDQEOXZBHVLVZT5IZOV - - 3918 507789 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1825_files/filelist.xml 20121018142758 http://www.historyofelectronics.com/Sub/1825_files/filelist.xml text/html 404 HAEGSEF5322GMSXAX2KVRFCHHFQYSALR - - 1348 1056980 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1830.htm 20121018142633 http://www.historyofelectronics.com/Sub/1830.htm text/html 200 JRWDI5WZZWXAFW5VTCMT2VMBB43JZDHB - - 4854 512142 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1830_files/editdata.mso 20121018142759 http://www.historyofelectronics.com/Sub/1830_files/editdata.mso text/html 404 SWNZ7DST3INARX6J7F3KV7YP2XBOE3N4 - - 1347 1060003 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1830_files/filelist.xml 20121018142758 http://www.historyofelectronics.com/Sub/1830_files/filelist.xml application/xml 200 EMBDPJNVMJ6SJ57DSP5YQ7X2ZDZ2OTM2 - - 778 1058775 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1830_files/image002.jpg 20121018142759 http://www.historyofelectronics.com/Sub/1830_files/image002.jpg image/jpeg 200 URH4ZBBP3LJEW5XPBJJLBNPUKNMWKTK4 - - 12540 1061796 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1831.htm 20121018142633 http://www.historyofelectronics.com/Sub/1831.htm text/html 200 O6S2FRDE4NP4CLMEIRANYLZ57NGVJ2FI - - 3551 517427 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1831_files/filelist.xml 20121018142800 http://www.historyofelectronics.com/Sub/1831_files/filelist.xml text/html 404 F7A4FBRBTMEOJULHA4GCTMG5NQY7TNM4 - - 1348 1074784 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1844.htm 20121018142634 http://www.historyofelectronics.com/Sub/1844.htm text/html 200 KAI52BC4VC6V6XTUZVYUDDXSHQXXYBLL - - 4464 521412 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1844_files/filelist.xml 20121018142800 http://www.historyofelectronics.com/Sub/1844_files/filelist.xml text/html 404 HJNV2PZRCWQCIKQOEMMER3SPLMDJU4PU - - 1349 1076582 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1858.htm 20121018142634 http://www.historyofelectronics.com/Sub/1858.htm text/html 200 EQKBUX5MIP7C7BTTKSR5H5A2CXGCQ7ON - - 3868 526310 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1858_files/filelist.xml 20121018142801 http://www.historyofelectronics.com/Sub/1858_files/filelist.xml text/html 404 QOEC3Y6RQ6IGP2ACBHB7ZFPNSCTECAGJ - - 1349 1078378 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1866.htm 20121018142635 http://www.historyofelectronics.com/Sub/1866.htm text/html 200 OOMLOQWKZG3VWN76HSNKUYJCR7ZIXTSV - - 3061 530611 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1866_files/filelist.xml 20121018142801 http://www.historyofelectronics.com/Sub/1866_files/filelist.xml text/html 404 KPMBAPVBY4CD4KUC367UY5VVBOJQNMIU - - 1347 1080176 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1873.htm 20121018142636 http://www.historyofelectronics.com/Sub/1873.htm text/html 200 I4SZBANBATRCGU5AVB57PMDEGLX2XBOJ - - 3228 534106 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1873_files/filelist.xml 20121018142801 http://www.historyofelectronics.com/Sub/1873_files/filelist.xml text/html 404 BMNF7GR4MJZZT7I4YHVRDKMUD65CGBYV - - 1347 1081971 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1874.htm 20121018142636 http://www.historyofelectronics.com/Sub/1874.htm text/html 200 TEGHZ7LHAD5CCSPZCQ3HLAQQA26YTWPW - - 3364 537768 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1874_files/filelist.xml 20121018142802 http://www.historyofelectronics.com/Sub/1874_files/filelist.xml text/html 404 7RRIMFV4J64JDHEXEN3STM4HJ2SXWEUU - - 1345 1083768 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1876.htm 20121018142637 http://www.historyofelectronics.com/Sub/1876.htm text/html 200 XCUNT4ASBDY5U5SV7BLRTXSSUYYZQKLN - - 3459 541563 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1876_files/filelist.xml 20121018142802 http://www.historyofelectronics.com/Sub/1876_files/filelist.xml text/html 404 S3V4ZE7M5RM5ZOFZLNU6TEABBNJI2IET - - 1346 1085562 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1878.htm 20121018142637 http://www.historyofelectronics.com/Sub/1878.htm text/html 200 R22QX36T4HZIUUK57GEGX5QG24VMBX2T - - 2966 545455 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1878_files/filelist.xml 20121018142803 http://www.historyofelectronics.com/Sub/1878_files/filelist.xml text/html 404 EXY7733QLISYIOOH5Z5HG3VQOZ6NDB6J - - 1348 1087354 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1880.htm 20121018142638 http://www.historyofelectronics.com/Sub/1880.htm text/html 200 3AOPWCQXWAVW3QDFU5MRNHB5LD5YGQWI - - 3227 548854 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1880_files/filelist.xml 20121018142803 http://www.historyofelectronics.com/Sub/1880_files/filelist.xml text/html 404 KNFANYEVM6T5DDT2DASETEMIE5OQMNIC - - 1347 1089149 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1882.htm 20121018142639 http://www.historyofelectronics.com/Sub/1882.htm text/html 200 VNMN2NVHYMNJ7V5HKHVS7HJ6NOLAV42B - - 3932 552514 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1882_files/editdata.mso 20121018142804 http://www.historyofelectronics.com/Sub/1882_files/editdata.mso text/html 404 FO7BMHGUQOZNAVVILIEHU6J2QOBLUK3C - - 1349 1092174 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1882_files/filelist.xml 20121018142803 http://www.historyofelectronics.com/Sub/1882_files/filelist.xml application/xml 200 QHWLYVDFMZ6OZT2V4JCS5QBAKU6I5MKL - - 782 1090944 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1882_files/image002.jpg 20121018142804 http://www.historyofelectronics.com/Sub/1882_files/image002.jpg image/jpeg 200 WWSOFKCGKTU44YZIWLVXQPHFZ56XPIVD - - 10352 1093972 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1888.htm 20121018142639 http://www.historyofelectronics.com/Sub/1888.htm text/html 200 OUJY2M3URFBYKMYKPP2DRGQATNW467ZN - - 3601 556880 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1888_files/filelist.xml 20121018142805 http://www.historyofelectronics.com/Sub/1888_files/filelist.xml text/html 404 DLMFKLEVGBWLB5VHABCNAC4APEVO23QY - - 1349 1104771 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1891.htm 20121018142640 http://www.historyofelectronics.com/Sub/1891.htm text/html 200 CVNZW4GTJ27VT36GK2HT5LBN5MB6NCEL - - 3636 560913 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1891_files/filelist.xml 20121018142805 http://www.historyofelectronics.com/Sub/1891_files/filelist.xml text/html 404 YYBGT2SG4LHFTHMPT4BFFZECZ777BRWJ - - 1349 1106567 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1895.htm 20121018142640 http://www.historyofelectronics.com/Sub/1895.htm text/html 200 RAZ6JR54OQJW6RQZ3OHI2XUGTPB3FIWD - - 3704 564983 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1895_files/filelist.xml 20121018142806 http://www.historyofelectronics.com/Sub/1895_files/filelist.xml text/html 404 VJ3B25EHCVSYE2NGCNLSDQKS3JDK7OJO - - 1349 1108365 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1896.htm 20121018142641 http://www.historyofelectronics.com/Sub/1896.htm text/html 200 PFCVMPBP6PCCXHXDXF3LMZKC3IIX5SNS - - 3334 569120 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1896_files/filelist.xml 20121018142806 http://www.historyofelectronics.com/Sub/1896_files/filelist.xml text/html 404 J4U7TABKFOUUWSPU4EKO67F22WNTK4O7 - - 1345 1110164 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1897.htm 20121018142642 http://www.historyofelectronics.com/Sub/1897.htm text/html 200 D4NJFEMULXFUML47FMMKNJB3KM34FQHG - - 3240 572888 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1897_files/filelist.xml 20121018142806 http://www.historyofelectronics.com/Sub/1897_files/filelist.xml text/html 404 GLGRIPNF6WOU3RDWLS3F57G2QCA2DLYQ - - 1346 1111958 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1898.htm 20121018142643 http://www.historyofelectronics.com/Sub/1898.htm text/html 200 BHRPCOAXVYL2UVD565YMA2EP5VRXT5XA - - 2886 576562 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1898_files/filelist.xml 20121018142807 http://www.historyofelectronics.com/Sub/1898_files/filelist.xml text/html 404 ASW4OWXVGOVVIDQM7YGFDPAKFOAKXECS - - 1348 1113754 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1901.htm 20121018142643 http://www.historyofelectronics.com/Sub/1901.htm text/html 200 N7UAHZMGOFCHRJKT5VJDB5PLDO66ZCQH - - 4095 579881 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1901_files/filelist.xml 20121018142807 http://www.historyofelectronics.com/Sub/1901_files/filelist.xml text/html 404 FWOUMUXJ6Q5STVQ5OC7JFBO62A6JZ644 - - 1349 1115554 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1905.htm 20121018142644 http://www.historyofelectronics.com/Sub/1905.htm text/html 200 DTJIWDLFOYAUAAFN67W6IFQJLOW25WEV - - 3703 584408 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1905_files/filelist.xml 20121018142808 http://www.historyofelectronics.com/Sub/1905_files/filelist.xml text/html 404 7QYZJB7NAS6XYND6F3WUE3XSNEZUZIFL - - 1350 1117352 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1907.htm 20121018142644 http://www.historyofelectronics.com/Sub/1907.htm text/html 200 VI3OCFCDYEWKE2S5R6YIS2L2UQQKPFX4 - - 3327 588544 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1907_files/filelist.xml 20121018142808 http://www.historyofelectronics.com/Sub/1907_files/filelist.xml text/html 404 CECFEM3UOFQDNPMH7FQTFBTJIGDFKX3S - - 1347 1119151 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1909.htm 20121018142645 http://www.historyofelectronics.com/Sub/1909.htm text/html 200 MPGU4LHLYJT3XLH5OMBY77E5YVVJVXGG - - 3774 592306 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1909_files/filelist.xml 20121018142809 http://www.historyofelectronics.com/Sub/1909_files/filelist.xml text/html 404 6ILX7EWI34CB4LQF2YUFINMVDR3UDV52 - - 1348 1120945 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1912.htm 20121018142646 http://www.historyofelectronics.com/Sub/1912.htm text/html 200 RPO5SJU5TXNVJXNSJSFZGBU5QT2URHFJ - - 4050 596514 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1912_files/filelist.xml 20121018142809 http://www.historyofelectronics.com/Sub/1912_files/filelist.xml text/html 404 52IA6ALPSR6AE2XKQNSYJAFLZ5JBV2BT - - 1345 1122740 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1919.htm 20121018142646 http://www.historyofelectronics.com/Sub/1919.htm text/html 200 PVMURWITLMBNJ7MFIEFM527CIWQCO2JS - - 3886 600997 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1919_files/filelist.xml 20121018142810 http://www.historyofelectronics.com/Sub/1919_files/filelist.xml text/html 404 MTMPXXSMCCWCGVUTTTVENUZEZJSG3WL5 - - 1346 1124532 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1922.htm 20121018142647 http://www.historyofelectronics.com/Sub/1922.htm text/html 200 CKHXGLSMJZICXHFL2MVZKHZPMHD6FUER - - 2842 605317 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1922_files/filelist.xml 20121018142810 http://www.historyofelectronics.com/Sub/1922_files/filelist.xml text/html 404 MZ6L5BGV2NWDVK3NF7WDOBW6J2J5IQLU - - 1348 1126327 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1933.htm 20121018142647 http://www.historyofelectronics.com/Sub/1933.htm text/html 200 QUXGNH42GQ3N2IGMDOJ4DGCKGZNABQRO - - 3017 608592 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1933_files/filelist.xml 20121018142810 http://www.historyofelectronics.com/Sub/1933_files/filelist.xml text/html 404 SKDKEUZBL3Z5TIOGEDG6NAUWOJOCHNPJ - - 1347 1128123 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1947.htm 20121018142648 http://www.historyofelectronics.com/Sub/1947.htm text/html 200 KLK4DJCJWSEYXBXCRGFZYVRYD4AL6FDW - - 3675 612042 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1947_files/filelist.xml 20121018142811 http://www.historyofelectronics.com/Sub/1947_files/filelist.xml text/html 404 OM2FTATSOSCZURORXEM43EUYPS4CU27Q - - 1349 1129918 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1955.htm 20121018142649 http://www.historyofelectronics.com/Sub/1955.htm text/html 200 D5QDA57KIJUTFWMXTVCOJKMCUMCYYZZQ - - 4002 616149 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1955_files/filelist.xml 20121018142811 http://www.historyofelectronics.com/Sub/1955_files/filelist.xml text/html 404 XBKLORIMIDUKSD577GSV5MM4NGQIN5V3 - - 1347 1131718 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1957.htm 20121018142649 http://www.historyofelectronics.com/Sub/1957.htm text/html 200 V25KPGMO2IVIKXB2KHVRKI5HFX2KXTUL - - 3621 620586 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1957_files/filelist.xml 20121018142812 http://www.historyofelectronics.com/Sub/1957_files/filelist.xml text/html 404 EK6NNM7AUSOLKDXKOITBWZ7OUCAJ67H3 - - 1347 1133515 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1959.htm 20121018142650 http://www.historyofelectronics.com/Sub/1959.htm text/html 200 2C5LWYFCVDQ2IIFTXK4BKYWSVQR4XFRE - - 3634 624641 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1959_files/filelist.xml 20121018142813 http://www.historyofelectronics.com/Sub/1959_files/filelist.xml text/html 404 TQLM5AKSJRNBQRKMDQDQUR2XB57W7RND - - 1347 1135311 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1969.htm 20121018142650 http://www.historyofelectronics.com/Sub/1969.htm text/html 200 2A2ZWIRVT6TLYGWKSR5YPUHF4NAVRZDZ - - 4084 628709 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/1969_files/filelist.xml 20121018142813 http://www.historyofelectronics.com/Sub/1969_files/filelist.xml text/html 404 SDDRKDL5EL3GV4J4EDBVG2SPCQ3VSGQR - - 1348 1137108 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/2006.htm 20121018142651 http://www.historyofelectronics.com/Sub/2006.htm text/html 200 3LQCKCTA2RUKZLMGB4I7DUSOYFJ73LNU - - 2571 633225 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/2006_files/filelist.xml 20121018142814 http://www.historyofelectronics.com/Sub/2006_files/filelist.xml text/html 404 KJGVER27YB2UCRI6UO5RQL57EFQATB7J - - 1348 1138903 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/600%20bc.htm 20121018142624 http://www.historyofelectronics.com/Sub/600%20BC.htm text/html 200 PKNGMNDXS43IVH53CM6I474XAXDCCEFE - - 4255 458455 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/600%20bc_files/filelist.xml 20121018142752 http://www.historyofelectronics.com/Sub/600%20BC_files/filelist.xml text/html 404 ESK2UP3XV2GCM4NW7MVQIAAAZ75KHZ3H - - 1355 1029373 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ac.htm 20121018142559 http://www.historyofelectronics.com/Sub/AC.htm text/html 200 ENUNPVDFPRX4FHGYX2MXZKCUV3DJ2H6D - - 3993 287285 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ac_files/editdata.mso 20121018142720 http://www.historyofelectronics.com/Sub/AC_files/editdata.mso text/html 404 DJUHY5B2C4TYTWHVSN57XPFYIB6TOYUA - - 1346 769652 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ac_files/filelist.xml 20121018142720 http://www.historyofelectronics.com/Sub/AC_files/filelist.xml application/xml 200 5H5BVNX6ZPRVWV5OCTORJLZBV446HYEF - - 780 768423 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ac_files/image002.jpg 20121018142721 http://www.historyofelectronics.com/Sub/AC_files/image002.jpg image/jpeg 200 F7IWLEVMPR56URDWVIJ7UDQJYHECXSZ4 - - 4327 771444 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/am.htm 20121018142559 http://www.historyofelectronics.com/Sub/AM.htm text/html 200 YQCVVLNXSDYDAMWZK2DZEDMBHFC5XT2B - - 2955 291710 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/am_files/filelist.xml 20121018142721 http://www.historyofelectronics.com/Sub/AM_files/filelist.xml text/html 404 PFLCEK4BFSUGTQIVZL5LJXTOQVLPHGDP - - 1350 776219 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/amber.htm 20121018142600 http://www.historyofelectronics.com/Sub/Amber.htm text/html 200 VK3I2DOJEXJO56A3LDCHAZRQAOH4YNLF - - 3169 295100 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/amber_files/filelist.xml 20121018142721 http://www.historyofelectronics.com/Sub/Amber_files/filelist.xml text/html 404 IWPN5CURUSV4OSGRIHFU7VUCPZHKKK4B - - 1350 778019 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ampere.htm 20121018142523 http://www.historyofelectronics.com/Sub/Ampere.htm text/html 200 6UWG6JG5XNKGBOE3XCDP6XWZUBHUTJK6 - - 4510 21220 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ampere_files/filelist.xml 20121018142652 http://www.historyofelectronics.com/Sub/Ampere_files/filelist.xml text/html 404 NNNQJKSDG3JZPVLUXTLH45DYQEBP5TBF - - 1350 637860 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/amplification.htm 20121018142601 http://www.historyofelectronics.com/Sub/Amplification.htm text/html 200 J5QQ5ULF3P6QZFKXZYJ5AIBO2D27NDXF - - 3135 298705 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/amplification_files/filelist.xml 20121018142722 http://www.historyofelectronics.com/Sub/Amplification_files/filelist.xml text/html 404 Q2P2JKX27P5AXS7HS2A4P4FVGGUY6QNL - - 1351 779824 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/armstrong.htm 20121018142524 http://www.historyofelectronics.com/Sub/Armstrong.htm text/html 200 GTILZPYM4WNKF3NBKREZADIWSJNUYFXA - - 4444 26168 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/armstrong_files/filelist.xml 20121018142652 http://www.historyofelectronics.com/Sub/Armstrong_files/filelist.xml text/html 404 BSZJ5NTRBIJVJ3ZHJ5KDZETELRV4AC4V - - 1352 639662 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/baird.htm 20121018142524 http://www.historyofelectronics.com/Sub/Baird.htm text/html 200 DMI5IFU7ACE6R5JIRTOY5WJKQ4HIUBKM - - 4351 31047 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/baird_files/filelist.xml 20121018142653 http://www.historyofelectronics.com/Sub/Baird_files/filelist.xml text/html 404 CP7OTORI4HOIKWPYN5GAE55GMGHOKVB3 - - 1347 641462 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bardeen.htm 20121018142525 http://www.historyofelectronics.com/Sub/Bardeen.htm text/html 200 NQQEPINU7YAM7WI2ILSHVSPU4LCCC2X5 - - 4087 35835 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bardeen_files/filelist.xml 20121018142653 http://www.historyofelectronics.com/Sub/Bardeen_files/filelist.xml text/html 404 B7ONQ5MHKS3BEMJUZDEAJEQUWGSLWUUN - - 1352 643261 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/battery.htm 20121018142602 http://www.historyofelectronics.com/Sub/Battery.htm text/html 200 3EBFPKZMMBS23QX7YH2V3M2NZE5J6SX6 - - 4233 307070 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/battery_files/editdata.mso 20121018142724 http://www.historyofelectronics.com/Sub/Battery_files/editdata.mso text/html 404 2N5BCRJQID5THDAWIR6Y5VU5LATTOZD2 - - 1351 796567 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/battery_files/filelist.xml 20121018142724 http://www.historyofelectronics.com/Sub/Battery_files/filelist.xml application/xml 200 6R7VDAVWSD66LIUPPMWNNYBIE4D4G4GI - - 784 795333 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/battery_files/image002.jpg 20121018142724 http://www.historyofelectronics.com/Sub/Battery_files/image002.jpg image/jpeg 200 CPYXU4NFA7ZCTUL7CISRHMQVMYBSPX2X - - 11982 798368 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/becquerel.htm 20121018142525 http://www.historyofelectronics.com/Sub/Becquerel.htm text/html 200 U67TBRVIV22MLHMAB74C5VEAGBUJ5JMZ - - 3211 40357 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/becquerel_files/filelist.xml 20121018142653 http://www.historyofelectronics.com/Sub/Becquerel_files/filelist.xml text/html 404 OK36N6O33ZIK6QTMEP2KBEUAQUWIHXRQ - - 1350 645066 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bell.htm 20121018142526 http://www.historyofelectronics.com/Sub/Bell.htm text/html 200 A33P2PUJMOWYW72AR4MLAUCCMVEQXZNY - - 3886 43997 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bell_files/filelist.xml 20121018142654 http://www.historyofelectronics.com/Sub/Bell_files/filelist.xml text/html 404 3VX5E7ISMICWAYUK6CMFQG2ETMJ2JZWU - - 1349 646865 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bohr.htm 20121018142526 http://www.historyofelectronics.com/Sub/Bohr.htm text/html 200 YCW2MD2HHTVPUNBPQLGLY3GRXTWMAST3 - - 3588 48317 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bohr_files/filelist.xml 20121018142654 http://www.historyofelectronics.com/Sub/Bohr_files/filelist.xml text/html 404 MCGPJNTGZ46WSNSBCECQ7NDF2JWIPIJD - - 1350 648662 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bose.htm 20121018142527 http://www.historyofelectronics.com/Sub/Bose.htm text/html 200 DX6CMXK6FRAWP25BRALZM5BX3OVEBGGA - - 3155 52337 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bose_files/filelist.xml 20121018142655 http://www.historyofelectronics.com/Sub/Bose_files/filelist.xml text/html 404 X4GPKTJ37YYBABMICAC6ZHQKWX4B2MNX - - 1351 650459 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bourseul.htm 20121018142528 http://www.historyofelectronics.com/Sub/Bourseul.htm text/html 200 ZU7PRQCVFMWLLNOEHWDJ7SCFYJUPGQHC - - 3529 55930 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/bourseul_files/filelist.xml 20121018142655 http://www.historyofelectronics.com/Sub/Bourseul_files/filelist.xml text/html 404 JPCRX6X66NFFFYEUKBVBLTNN3IZVHGCN - - 1352 652261 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/brattain.htm 20121018142528 http://www.historyofelectronics.com/Sub/Brattain.htm text/html 200 MPQCV5TQRWIULA37HCJ6JOVICWJJVP6S - - 3965 59896 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/brattain_files/filelist.xml 20121018142656 http://www.historyofelectronics.com/Sub/Brattain_files/filelist.xml text/html 404 VQDGT2QVTP6ZI5TGZKRCQ2ODSARABHWS - - 1350 654066 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/braun.htm 20121018142529 http://www.historyofelectronics.com/Sub/Braun.htm text/html 200 2M6SQKEEKOS25X6M62U6NQROYTI4Q4NT - - 3975 64297 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/braun_files/filelist.xml 20121018142656 http://www.historyofelectronics.com/Sub/Braun_files/filelist.xml text/html 404 6DJJK74C7VTJCBZ3ME2FYKQ4PD3VVLBY - - 1352 655864 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/carrier.htm 20121018142603 http://www.historyofelectronics.com/Sub/Carrier.htm text/html 200 O4P56RGD7F6NTAH7U7PW23CQG7UFNIYB - - 3923 317300 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/carrier_files/editdata.mso 20121018142727 http://www.historyofelectronics.com/Sub/Carrier_files/editdata.mso text/html 404 4GF4R7L2JPOTO24DJIISBIFPNLQRMBFP - - 1351 822656 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/carrier_files/filelist.xml 20121018142726 http://www.historyofelectronics.com/Sub/Carrier_files/filelist.xml application/xml 200 PPVLUUMUNBG5JVWZMKCDLUSZRGK3ZPF3 - - 784 821420 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/carrier_files/image002.jpg 20121018142727 http://www.historyofelectronics.com/Sub/Carrier_files/image002.jpg image/jpeg 200 23ICBEVFTBUD6EM6CWVM7ENRDUNGQKHY - - 14729 824459 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cathode%20rays.htm 20121018142604 http://www.historyofelectronics.com/Sub/Cathode%20Rays.htm text/html 200 OVL45BTTEZEOL2XCPWGT3RYTF64SUBMX - - 3188 325228 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cathode%20rays_files/filelist.xml 20121018142728 http://www.historyofelectronics.com/Sub/Cathode%20Rays_files/filelist.xml text/html 404 3VRZEB2WLKXKHHHBVDUTUXZXBCBE7PIP - - 1359 841464 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cats%20whisker.htm 20121018142604 http://www.historyofelectronics.com/Sub/Cats%20Whisker.htm text/html 200 J5HBGZ7OXCLOPCQSA4TELZ254BSD2W5Y - - 3120 321665 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cats%20whisker_files/filelist.xml 20121018142728 http://www.historyofelectronics.com/Sub/Cats%20Whisker_files/filelist.xml text/html 404 DLNH3XD4XSSK3CXM2A3UM2RTU5CAGFAN - - 1359 839645 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cavendish.htm 20121018142529 http://www.historyofelectronics.com/Sub/Cavendish.htm text/html 200 D7VYCTSO2W7PDEYPOEWVFXETXFQTLFBD - - 4346 68711 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cavendish_files/filelist.xml 20121018142656 http://www.historyofelectronics.com/Sub/Cavendish_files/filelist.xml text/html 404 P2AUVSPU37AETLHM6YPUOWAFACRUKOXK - - 1352 657669 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cloud%20chamber.htm 20121018142605 http://www.historyofelectronics.com/Sub/Cloud%20Chamber.htm text/html 200 T24EGF3P5U4JM5KRSJFMCC3Y5LEIGD6N - - 3449 328856 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/cloud%20chamber_files/filelist.xml 20121018142729 http://www.historyofelectronics.com/Sub/Cloud%20Chamber_files/filelist.xml text/html 404 XJVBPINUMNCK5GRAQDUH5BUTCBJLQIUL - - 1361 843281 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coherer.htm 20121018142606 http://www.historyofelectronics.com/Sub/Coherer.htm text/html 200 Q3FUAXZE2NPEA7KUQ5N6VEFMANY3P4IA - - 2928 337227 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coherer_files/filelist.xml 20121018142731 http://www.historyofelectronics.com/Sub/Coherer_files/filelist.xml text/html 404 2CFRSIKPYGLL3CWCBZUY47W2Z2NLHG7B - - 1349 865232 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coil.htm 20121018142607 http://www.historyofelectronics.com/Sub/Coil.htm text/html 200 2RKZYSAFQSQN247LFQUYBGQO2TBLVVEB - - 3808 340587 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coil_files/editdata.mso 20121018142732 http://www.historyofelectronics.com/Sub/Coil_files/editdata.mso text/html 404 4RIAJ76BGNTOHJISLETBMMZT2DMXBUKR - - 1348 868261 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coil_files/filelist.xml 20121018142731 http://www.historyofelectronics.com/Sub/Coil_files/filelist.xml application/xml 200 MTEZQN6275RMG5M75X4J5OBEBBALWMWG - - 780 867031 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coil_files/image002.jpg 20121018142732 http://www.historyofelectronics.com/Sub/Coil_files/image002.jpg image/jpeg 200 JYYSOAS3ZZQCRQLEQMY6ZCX5XLIFMKIM - - 10420 870059 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coulomb.htm 20121018142530 http://www.historyofelectronics.com/Sub/Coulomb.htm text/html 200 B66GEIOADQ6BJHTLRFGUEJRLTQQKEDS4 - - 3405 73495 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/coulomb_files/filelist.xml 20121018142657 http://www.historyofelectronics.com/Sub/Coulomb_files/filelist.xml text/html 404 DJINQ7YKIOQHS4PTRZ73NRIL3JKQSS6L - - 1347 659469 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/crookes.htm 20121018142530 http://www.historyofelectronics.com/Sub/Crookes.htm text/html 200 OOGJUOQV72WDJRYDB2JW7IQMYIGOZAUU - - 3762 77335 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/crookes_files/filelist.xml 20121018142657 http://www.historyofelectronics.com/Sub/Crookes_files/filelist.xml text/html 404 YDQQKJIUJEU664SWLVLMA4SBPSNKDN4B - - 1350 661266 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/crystal.htm 20121018142607 http://www.historyofelectronics.com/Sub/Crystal.htm text/html 200 A64J4LFVMSUCTV5LST4GRZ4VZ5CCVLE2 - - 3621 344831 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/crystal_files/filelist.xml 20121018142733 http://www.historyofelectronics.com/Sub/Crystal_files/filelist.xml text/html 404 M2TAESVXG2V4SNEBSA3U4DIMUXLQEQRN - - 1353 880931 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/dc.htm 20121018142608 http://www.historyofelectronics.com/Sub/DC.htm text/html 200 VJDM6VOFCKVSBNABZFXUV4HKAK35RLJN - - 2885 348886 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/dc_files/filelist.xml 20121018142733 http://www.historyofelectronics.com/Sub/DC_files/filelist.xml text/html 404 C6MUVMTE6PBGFEJFRNTQ44DPSWQDCD72 - - 1349 882731 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/de%20forest.htm 20121018142531 http://www.historyofelectronics.com/Sub/de%20Forest.htm text/html 200 5427P7LG3ISYS6NZJ5WOQBQ554VG5US3 - - 4695 81536 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/de%20forest_files/filelist.xml 20121018142658 http://www.historyofelectronics.com/Sub/de%20Forest_files/filelist.xml text/html 404 3U3K5F7OJBMIZYBSH65KKPFZHOJAVHV7 - - 1354 663073 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/detector.htm 20121018142608 http://www.historyofelectronics.com/Sub/Detector.htm text/html 200 RWTPCBIN72CP4QYV7KUEZF6ILULYSLA3 - - 4163 352206 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/detector_files/filelist.xml 20121018142733 http://www.historyofelectronics.com/Sub/Detector_files/filelist.xml text/html 404 EXQRSMZTHTFBLYCNHUY25SI3NHTSLCBC - - 1350 884531 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/diode.htm 20121018142609 http://www.historyofelectronics.com/Sub/Diode.htm text/html 200 PU2T2O4XBCDTDX5E7XWT6YDPJYUDHNYN - - 4020 356804 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/diode_files/editdata.mso 20121018142734 http://www.historyofelectronics.com/Sub/Diode_files/editdata.mso text/html 404 YJXGHOXJPT27NGIX5Y2VZMD2ZOELNM6W - - 1351 887562 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/diode_files/filelist.xml 20121018142734 http://www.historyofelectronics.com/Sub/Diode_files/filelist.xml application/xml 200 XZTX5N2TYWSMUKGWCPXP7V4JSWPQFKUM - - 784 886330 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/diode_files/image002.jpg 20121018142735 http://www.historyofelectronics.com/Sub/Diode_files/image002.jpg image/jpeg 200 23ICBEVFTBUD6EM6CWVM7ENRDUNGQKHY - - 14726 889363 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/dopant.htm 20121018142610 http://www.historyofelectronics.com/Sub/Dopant.htm text/html 200 HVWYGRANTPK6DJWFUYRLDHWLBHFX7VKW - - 3207 361259 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/dopant_files/filelist.xml 20121018142735 http://www.historyofelectronics.com/Sub/Dopant_files/filelist.xml text/html 404 2WXSPMFPRED43TGCAXXWC2KAU24ERWDT - - 1348 904540 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/dufay.htm 20121018142532 http://www.historyofelectronics.com/Sub/Dufay.htm text/html 200 5A6O3WYHYSG2KBMS2U74WF35LJMFZ53R - - 3186 86666 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/dufay_files/filelist.xml 20121018142658 http://www.historyofelectronics.com/Sub/Dufay_files/filelist.xml text/html 404 2XIYTZQRI5Q4JLP7CJMCEJGSNT7L3U5X - - 1349 664874 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/e%20region.htm 20121018142610 http://www.historyofelectronics.com/Sub/E%20Region.htm text/html 200 OU7NELG5SPDXES3AGGME27UEXZUVUAFP - - 2900 364905 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/e%20region_files/filelist.xml 20121018142736 http://www.historyofelectronics.com/Sub/E%20Region_files/filelist.xml text/html 404 LQQRE5Q3XBOT344BLJQLEP7WJ7EPRL3Y - - 1356 906340 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/edison.htm 20121018142532 http://www.historyofelectronics.com/Sub/Edison.htm text/html 200 VIHJTIAS3HTJQC2B7JARNJA6NJF4YDQY - - 4434 90287 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/edison_files/filelist.xml 20121018142658 http://www.historyofelectronics.com/Sub/Edison_files/filelist.xml text/html 404 RBHNK6CTK5EZTXBJJBYKEBVV623AYNP4 - - 1349 666672 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electromagnet.htm 20121018142611 http://www.historyofelectronics.com/Sub/Electromagnet.htm text/html 200 6UX2ZMB5H6MYQGOZTP6RY6THB4BAAL67 - - 4107 368242 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electromagnet_files/editdata.mso 20121018142737 http://www.historyofelectronics.com/Sub/Electromagnet_files/editdata.mso text/html 404 3DIYCNVI6KZD7MLG3VSVBD6JPIRJN5EB - - 1355 909393 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electromagnet_files/filelist.xml 20121018142736 http://www.historyofelectronics.com/Sub/Electromagnet_files/filelist.xml application/xml 200 VOAGLEW4YNDHCWSVBHVQMLVIZPWNHATH - - 787 908152 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electromagnet_files/image002.jpg 20121018142737 http://www.historyofelectronics.com/Sub/Electromagnet_files/image002.jpg image/jpeg 200 URH4ZBBP3LJEW5XPBJJLBNPUKNMWKTK4 - - 12545 911203 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electromagnetic%20waves.htm 20121018142611 http://www.historyofelectronics.com/Sub/Electromagnetic%20Waves.htm text/html 200 CLR2I4TZ5DKUBM5L5RXKPJ6PBSW4HXXT - - 3197 372795 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electromagnetic%20waves_files/filelist.xml 20121018142738 http://www.historyofelectronics.com/Sub/Electromagnetic%20Waves_files/filelist.xml text/html 404 NRF7WSN2MLAOWKYAKHITPBFXC3ZSFT54 - - 1366 924214 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electron.htm 20121018142612 http://www.historyofelectronics.com/Sub/Electron.htm text/html 200 KN654MBR2XCMNQBAPUPLBRGGCK4BDSK2 - - 3717 376424 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/electron_files/filelist.xml 20121018142738 http://www.historyofelectronics.com/Sub/Electron_files/filelist.xml text/html 404 2VVQ4YS55QSCHOXCSZBGJTJ4PTFQH3WD - - 1350 926028 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/faraday.htm 20121018142533 http://www.historyofelectronics.com/Sub/Faraday.htm text/html 200 7ZBPS3BRBHA76DGPW3B5KETF4WTCE72Q - - 4024 95158 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/faraday_files/filelist.xml 20121018142659 http://www.historyofelectronics.com/Sub/Faraday_files/filelist.xml text/html 404 CBNZOATMQAQNSWX4OV4DREKGPORLLQ2K - - 1349 668474 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/farnsworth.htm 20121018142533 http://www.historyofelectronics.com/Sub/Farnsworth.htm text/html 200 YSRZKFYNK5OHD7AQ552RE4MTZZHAKMY5 - - 4003 99620 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/farnsworth_files/filelist.xml 20121018142659 http://www.historyofelectronics.com/Sub/Farnsworth_files/filelist.xml text/html 404 WEAKYQHM7B2GQUQYLYR2XCTORHS2DNL6 - - 1355 670277 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/field.htm 20121018142534 http://www.historyofelectronics.com/Sub/Field.htm text/html 200 J3BQF6NX46OYQDMBNXHXRIINBZHP3VCB - - 4661 104058 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/field_files/filelist.xml 20121018142700 http://www.historyofelectronics.com/Sub/Field_files/filelist.xml text/html 404 5HRLNNK7IZAKFKPIYGFX44JZCPYGWDWL - - 1351 672081 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/fleming.htm 20121018142535 http://www.historyofelectronics.com/Sub/Fleming.htm text/html 200 XO47YOXWILYTXDHVEVTDMB5BBXEUA7EH - - 3673 109154 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/fleming_files/filelist.xml 20121018142700 http://www.historyofelectronics.com/Sub/Fleming_files/filelist.xml text/html 404 O4DELT64N5RJKPQYNIXDPUXALWCTDVHD - - 1350 673882 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/fm.htm 20121018142612 http://www.historyofelectronics.com/Sub/FM.htm text/html 200 OX2NK7AUPJLV2ZDUXWAEIHTCZT2ESOGB - - 3593 380576 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/fm_files/filelist.xml 20121018142738 http://www.historyofelectronics.com/Sub/FM_files/filelist.xml text/html 404 EU5VMAPV27YERUP4AGWXGLBSEDMFI2JS - - 1349 927828 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/franklin.htm 20121018142535 http://www.historyofelectronics.com/Sub/Franklin.htm text/html 200 KCIHCEAF4CYOLFNIIYFZJUNXGIU3FPKO - - 4655 113264 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/franklin_files/editdata.mso 20121018142701 http://www.historyofelectronics.com/Sub/Franklin_files/editdata.mso text/html 404 4GWBB6UVSWFHELUGEVLQI2XCL4IPHOEA - - 1353 676921 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/franklin_files/filelist.xml 20121018142700 http://www.historyofelectronics.com/Sub/Franklin_files/filelist.xml application/xml 200 REBSBXZRTTAUCGPGTLYUOIDLFJYQLWFG - - 787 675681 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/franklin_files/image002.jpg 20121018142701 http://www.historyofelectronics.com/Sub/Franklin_files/image002.jpg image/jpeg 200 5XTIMNTACO27U6TOVIJVATDIIFJ44M2G - - 13195 678725 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/galvani.htm 20121018142536 http://www.historyofelectronics.com/Sub/Galvani.htm text/html 200 5OSCKZIRCPA3M6YTQYIPJW6GXHPRS4DE - - 4296 118356 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/galvani_files/filelist.xml 20121018142702 http://www.historyofelectronics.com/Sub/Galvani_files/filelist.xml text/html 404 A5ZYCVML7IL2M5YZVO36OYQJZZMWCRPJ - - 1348 692370 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/gilbert.htm 20121018142536 http://www.historyofelectronics.com/Sub/Gilbert.htm text/html 200 CW3I7UD7S5UPLYL4EL5PU6OZVAXDL5OK - - 3242 123087 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/gilbert_files/filelist.xml 20121018142703 http://www.historyofelectronics.com/Sub/Gilbert_files/filelist.xml text/html 404 Y4VGJJK6RWLP6TJBIA4JQASZFUWEKR7O - - 1350 694169 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/gray%20elisha.htm 20121018142537 http://www.historyofelectronics.com/Sub/Gray%20Elisha.htm text/html 200 CR6M4CUDWIYG67ADQ63DQV3HNIPU4KCZ - - 3562 126769 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/gray%20stephen.htm 20121018142537 http://www.historyofelectronics.com/Sub/Gray%20Stephen.htm text/html 200 2JINE3ZJG3X7X2HWD3MOVJIOKEL6SUIF - - 3321 130771 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/gray%20stephen_files/filelist.xml 20121018142703 http://www.historyofelectronics.com/Sub/Gray%20Stephen_files/filelist.xml text/html 404 C4X7ZKWGGI4C3RKDPWKJ3FIRGINZECOW - - 1361 697782 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/gray_files/filelist.xml 20121018142703 http://www.historyofelectronics.com/Sub/Gray_files/filelist.xml text/html 404 D57EJ6FA6BLAJS7KHHYVKSGDS4SCBBOV - - 1347 695975 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/guericke.htm 20121018142538 http://www.historyofelectronics.com/Sub/Guericke.htm text/html 200 MJ5DSOW2FZRTEHL3DOMQQV7HXCZYY3T6 - - 4240 134529 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/guericke_files/filelist.xml 20121018142704 http://www.historyofelectronics.com/Sub/Guericke_files/filelist.xml text/html 404 LJWUOQKOOUV2IIXN4YI7WOFMRHKNSAJ4 - - 1352 699593 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/henry.htm 20121018142539 http://www.historyofelectronics.com/Sub/Henry.htm text/html 200 SPP6FXOZPXRYHBO66CU4MOV6QYY4B6RV - - 3768 139203 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/henry_files/filelist.xml 20121018142704 http://www.historyofelectronics.com/Sub/Henry_files/filelist.xml text/html 404 WVCO36DSMJ2RDHJVSGHZEOQD3FICVFTN - - 1350 701393 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/hertz.htm 20121018142539 http://www.historyofelectronics.com/Sub/Hertz.htm text/html 200 UVY4DG5S6DLN7IUCMJC6J3OLHCO5USKL - - 3728 143405 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/hertz_files/filelist.xml 20121018142705 http://www.historyofelectronics.com/Sub/Hertz_files/filelist.xml text/html 404 EVPVZMPUAHBZ6WUQUPHDRCCY4HXXVU3X - - 1352 703193 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/hoerni.htm 20121018142540 http://www.historyofelectronics.com/Sub/Hoerni.htm text/html 200 GP3L6PU3I3AOKITRIM3LHOUQHKIGIDP6 - - 3294 147570 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/hoerni_files/filelist.xml 20121018142705 http://www.historyofelectronics.com/Sub/Hoerni_files/filelist.xml text/html 404 J32FFGPNQQKUZ3KACZPTYTQPVEIVGVOF - - 1349 704994 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/hoff.htm 20121018142540 http://www.historyofelectronics.com/Sub/Hoff.htm text/html 200 2FKXRTTM6AYHV6WIUA6VYWFS67XLDVJJ - - 4332 151297 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/hoff_files/filelist.xml 20121018142705 http://www.historyofelectronics.com/Sub/Hoff_files/filelist.xml text/html 404 3DRK3DXGB6KGH5VU5UMOJW75SVEL7XR6 - - 1348 706793 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/image%20dissector.htm 20121018142613 http://www.historyofelectronics.com/Sub/Image%20Dissector.htm text/html 200 GBNBWP6D3HBPAEX4E63V4TNT7HVCQVPG - - 3516 388864 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/image%20dissector_files/filelist.xml 20121018142739 http://www.historyofelectronics.com/Sub/Image%20Dissector_files/filelist.xml text/html 404 OQUIL72F2MZWWRZVAPEOMQSA6D4J5XWZ - - 1359 931452 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/induction%20motor.htm 20121018142615 http://www.historyofelectronics.com/Sub/Induction%20Motor.htm text/html 200 7N353POKDOBR3PTT5LOAQFY5YR4GTGPN - - 3829 396454 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/induction%20motor_files/editdata.mso 20121018142740 http://www.historyofelectronics.com/Sub/Induction%20Motor_files/editdata.mso text/html 404 ARVQ6JSAV43U4NCVX7CQKVU55GHIMPV5 - - 1357 936322 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/induction%20motor_files/filelist.xml 20121018142740 http://www.historyofelectronics.com/Sub/Induction%20Motor_files/filelist.xml application/xml 200 4P3CWYWKDLPPYCIVFUYC4GEJSMM3DJYA - - 790 935072 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/induction%20motor_files/image002.jpg 20121018142741 http://www.historyofelectronics.com/Sub/Induction%20Motor_files/image002.jpg image/jpeg 200 WWSOFKCGKTU44YZIWLVXQPHFZ56XPIVD - - 10360 938137 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/induction.htm 20121018142614 http://www.historyofelectronics.com/Sub/Induction.htm text/html 200 E4TKPVYGY4GEQDHULNBM444S4LCRPKUF - - 3195 392817 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/induction_files/filelist.xml 20121018142740 http://www.historyofelectronics.com/Sub/Induction_files/filelist.xml text/html 404 57GAAQN5RPC4B7IJUZ4ZXYKLSGDTNDKT - - 1350 933262 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/integrated%20circuit.htm 20121018142615 http://www.historyofelectronics.com/Sub/Integrated%20Circuit.htm text/html 200 WBLMJKTCVCG77LOHQGXIMTE54ML2ROZQ - - 4092 400726 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/integrated%20circuit_files/filelist.xml 20121018142741 http://www.historyofelectronics.com/Sub/Integrated%20Circuit_files/filelist.xml text/html 404 4GG525FSDRR5DRQ35GMSPR7OO2GC4EKG - - 1358 948958 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/kelvin.htm 20121018142541 http://www.historyofelectronics.com/Sub/Kelvin.htm text/html 200 IY5JHR6XFSTOEBDPA5SRVWVMFSQRK5A5 - - 2845 156064 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/kelvin_files/filelist.xml 20121018142706 http://www.historyofelectronics.com/Sub/Kelvin_files/filelist.xml text/html 404 A77CP2EQK343BDRKS2QSTNGPK4TSEYDA - - 1348 708590 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/kilby.htm 20121018142541 http://www.historyofelectronics.com/Sub/Kilby.htm text/html 200 AGODZGGYYXTOEUEOIYRO36CXSEU6UT7U - - 3535 159345 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/kilby_files/filelist.xml 20121018142706 http://www.historyofelectronics.com/Sub/Kilby_files/filelist.xml text/html 404 RECHISPAMVD7DWMMDDQIJVKMAWWDDNN5 - - 1350 710388 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/lenard.htm 20121018142542 http://www.historyofelectronics.com/Sub/Lenard.htm text/html 200 WOHTN3VUTOC4GZG7NNMCLA4WJ5UBXWAG - - 3654 163315 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/lenard_files/filelist.xml 20121018142707 http://www.historyofelectronics.com/Sub/Lenard_files/filelist.xml text/html 404 FJNLWZCKVBV4FSILMWHDVPCRC5DYVL4W - - 1348 712189 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/leyden%20jar.htm 20121018142602 http://www.historyofelectronics.com/Sub/Leyden%20Jar.htm text/html 200 QNJSCKYYJWV73BFYAE7WQRDDNMDPF3CP - - 5123 311742 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/leyden%20jar_files/editdata.mso 20121018142725 http://www.historyofelectronics.com/Sub/Leyden%20Jar_files/editdata.mso text/html 404 WWVQHHFN6JXNVMINE7EKTJMAQYMZ5RGE - - 1359 812053 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/leyden%20jar_files/filelist.xml 20121018142725 http://www.historyofelectronics.com/Sub/Leyden%20Jar_files/filelist.xml application/xml 200 FC56DV24XQHTRTIRSRDCOHVE5LFEMBK6 - - 788 810806 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/leyden%20jar_files/image002.jpg 20121018142726 http://www.historyofelectronics.com/Sub/Leyden%20Jar_files/image002.jpg image/jpeg 200 5LTQAUPJWZHZQ6235UV6PXKQCGPV6OG5 - - 7100 813872 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/lieben.htm 20121018142543 http://www.historyofelectronics.com/Sub/Lieben.htm text/html 200 LVD54JLAYUEZCHZ2VUK64TKNCWWPIGZV - - 2784 167405 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/lieben_files/filelist.xml 20121018142707 http://www.historyofelectronics.com/Sub/Lieben_files/filelist.xml text/html 404 CGPURY5NTT2D7XTPALWORZOIZVDHAQI2 - - 1345 713987 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/lodestone.htm 20121018142616 http://www.historyofelectronics.com/Sub/Lodestone.htm text/html 200 2JNFZV5WZ5YCEB2IJYJCQWSVWGSA2GOI - - 3250 405254 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/lodestone_files/filelist.xml 20121018142742 http://www.historyofelectronics.com/Sub/Lodestone_files/filelist.xml text/html 404 ICGMQKCODEK6B2C76EOOU2EJ3JPJ3F3P - - 1353 950769 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/magnetism.htm 20121018142616 http://www.historyofelectronics.com/Sub/Magnetism.htm text/html 200 WH24CU5VOZX4IJVVS4UAN3LZ235QZFRT - - 2708 408943 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/magnetism_files/filelist.xml 20121018142742 http://www.historyofelectronics.com/Sub/Magnetism_files/filelist.xml text/html 404 K4N3Z74CE24H32Q3XRS324GSG3VJEXNZ - - 1350 952576 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/marconi.htm 20121018142543 http://www.historyofelectronics.com/Sub/Marconi.htm text/html 200 CDREK2HNM7HMQBZ2NCTXCPUKR67W52LQ - - 4088 170623 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/marconi_files/filelist.xml 20121018142707 http://www.historyofelectronics.com/Sub/Marconi_files/filelist.xml text/html 404 5GY7LPUOLCUMJO7AFBU5IHK5MQLEIA4X - - 1349 715782 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/maricourt.htm 20121018142544 http://www.historyofelectronics.com/Sub/Maricourt.htm text/html 200 BZCN4DRW7GLGOKL2K24LJMM36GT2S6IM - - 4025 175146 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/maricourt_files/filelist.xml 20121018142708 http://www.historyofelectronics.com/Sub/Maricourt_files/filelist.xml text/html 404 2B4PA7C5IDQUXOXS7FXWZRQK4FTN7WQJ - - 1352 717585 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/maxwell.htm 20121018142544 http://www.historyofelectronics.com/Sub/Maxwell.htm text/html 200 DZCUL43H35RNRKTKA7PKTX3V4JS6L6UF - - 3290 179609 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/maxwell_files/filelist.xml 20121018142708 http://www.historyofelectronics.com/Sub/Maxwell_files/filelist.xml text/html 404 SUF4SZWI4GBMCNNJZVVCWCRQIZVDU3RM - - 1349 719385 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/microprocessor.htm 20121018142617 http://www.historyofelectronics.com/Sub/Microprocessor.htm text/html 200 D6GF35CJHNXY6WGL23URFQMHLHQQCSPZ - - 3401 412089 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/microprocessor_files/filelist.xml 20121018142743 http://www.historyofelectronics.com/Sub/Microprocessor_files/filelist.xml text/html 404 MVZPMKD252UIYZDKMJWPPLYRRE672VVO - - 1358 954385 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/millikan.htm 20121018142545 http://www.historyofelectronics.com/Sub/Millikan.htm text/html 200 NPWJUBP3VQWW5F5HN7E4YLMTBQTR2UUW - - 3928 183337 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/millikan_files/filelist.xml 20121018142709 http://www.historyofelectronics.com/Sub/Millikan_files/filelist.xml text/html 404 QQKB7E3XORBYF2TEWBYOUBJRSPUDZ7A7 - - 1353 721187 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/moore.htm 20121018142545 http://www.historyofelectronics.com/Sub/Moore.htm text/html 200 UOSEDIUDA5Z7T5OKZJ3J3AAG7K3X4EIM - - 3656 187701 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/moore_files/filelist.xml 20121018142709 http://www.historyofelectronics.com/Sub/Moore_files/filelist.xml text/html 404 EUEVEAWFY6OR7P4YLK3MPSLXGLF6BWXX - - 1350 722991 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/moores%20law.htm 20121018142617 http://www.historyofelectronics.com/Sub/Moores%20Law.htm text/html 200 5XVYC4SPOLIYUGZEV47NDZDKW4U562GO - - 2836 415931 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/moores%20law_files/filelist.xml 20121018142743 http://www.historyofelectronics.com/Sub/Moores%20Law_files/filelist.xml text/html 404 5ANNN5HWA7LJRCX4FOMV3ZH5GCJJGPBF - - 1354 956199 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/morse.htm 20121018142546 http://www.historyofelectronics.com/Sub/Morse.htm text/html 200 W5JVRD2NAIWGUFB4PLMTMQB4UHOUHDYK - - 3956 191792 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/morse_files/filelist.xml 20121018142709 http://www.historyofelectronics.com/Sub/Morse_files/filelist.xml text/html 404 TLVEOY3BE7PVPMCR5LCYGMTD2GXFE33Y - - 1345 724791 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/mos.htm 20121018142605 http://www.historyofelectronics.com/Sub/MOS.htm text/html 200 CAQYF25QGW5S5YXVACXWFMICPHN6XSQA - - 4055 332739 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/mos_files/editdata.mso 20121018142730 http://www.historyofelectronics.com/Sub/MOS_files/editdata.mso text/html 404 6JUGHLKJ4SWB576NWJ445PF3H6DPTBYR - - 1348 846326 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/mos_files/filelist.xml 20121018142729 http://www.historyofelectronics.com/Sub/MOS_files/filelist.xml application/xml 200 4OEZXQB4FGODNW62757UVJAAL4LERFZW - - 783 845091 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/mos_files/image002.jpg 20121018142730 http://www.historyofelectronics.com/Sub/MOS_files/image002.jpg image/jpeg 200 SFHK5HJIHTEDLURICK4EOD7WBQPMQQCL - - 16656 848126 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/musschenbroek.htm 20121018142547 http://www.historyofelectronics.com/Sub/Musschenbroek.htm text/html 200 N7KLC7S22KI4JG5YL6KEB6VZC6K6FREY - - 3365 196188 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/musschenbroek_files/filelist.xml 20121018142710 http://www.historyofelectronics.com/Sub/Musschenbroek_files/filelist.xml text/html 404 OMSCCZJFCG7FRAC35P6IGUJWJG4WQZY4 - - 1357 726595 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/nipkow.htm 20121018142547 http://www.historyofelectronics.com/Sub/Nipkow.htm text/html 200 6E3274JEDOF7OR6PEUT454DHXFL7F6OW - - 3836 199989 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/nipkow_files/filelist.xml 20121018142710 http://www.historyofelectronics.com/Sub/Nipkow_files/filelist.xml text/html 404 BQUVN5THCBGCHVETSCK723F2CMHAGQ66 - - 1349 728401 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/nollet.htm 20121018142548 http://www.historyofelectronics.com/Sub/Nollet.htm text/html 200 J6IYS2P6XT3W2Y74CYSXTNKM7B6L2XO4 - - 2959 204259 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/nollet_files/filelist.xml 20121018142711 http://www.historyofelectronics.com/Sub/Nollet_files/filelist.xml text/html 404 HDZS335Z4OAUETCOJ4FEFQ4I55GOXOIM - - 1349 730201 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/noyce.htm 20121018142548 http://www.historyofelectronics.com/Sub/Noyce.htm text/html 200 TM5LRNNH3FG4SQA7ZPLNVJES46KFDXOH - - 3603 207653 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/noyce_files/filelist.xml 20121018142711 http://www.historyofelectronics.com/Sub/Noyce_files/filelist.xml text/html 404 EHZBY2NNW2HKOBLBFYHPWDGUD5LZP2E5 - - 1350 732001 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/oersted.htm 20121018142549 http://www.historyofelectronics.com/Sub/Oersted.htm text/html 200 ZEGQETYJWW75VGSMBCEVQBLKSYF624TQ - - 3407 211692 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/oersted_files/filelist.xml 20121018142712 http://www.historyofelectronics.com/Sub/Oersted_files/filelist.xml text/html 404 EMFTAJ72JRGCHKCFOVI5P4YNKWUUZ7HU - - 1352 733800 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohm.htm 20121018142550 http://www.historyofelectronics.com/Sub/Ohm.htm text/html 200 4E6MSJIZB2VJSASVSB654WPXD3WDSV43 - - 6161 215531 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohm_files/editdata.mso 20121018142712 http://www.historyofelectronics.com/Sub/Ohm_files/editdata.mso text/html 404 GCTC3SHXIQ2UDMJRZQ7CTWRTGLSTB7OF - - 1349 736845 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohm_files/filelist.xml 20121018142712 http://www.historyofelectronics.com/Sub/Ohm_files/filelist.xml application/xml 200 PXMELLVOV6CT4GERA7EAITG2XOQMBVTT - - 796 735600 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohm_files/image002.gif 20121018142713 http://www.historyofelectronics.com/Sub/Ohm_files/image002.gif image/gif 200 273B6MUIM46JWGB4CVRYONL5ADMO3GP2 - - 766 740774 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohm_files/image003.gif 20121018142714 http://www.historyofelectronics.com/Sub/Ohm_files/image003.gif image/gif 200 273B6MUIM46JWGB4CVRYONL5ADMO3GP2 - - 765 741989 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohm_files/oledata.mso 20121018142713 http://www.historyofelectronics.com/Sub/Ohm_files/oledata.mso text/plain 200 RCWHFPK6GSYBUHTYY45NU6KCD5DDF2QF - - 1682 738640 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law.htm 20121018142618 http://www.historyofelectronics.com/Sub/Ohms%20Law.htm text/html 200 PKX7SRVCHAEKI3OSCRGDBKKYDUUU4PEE - - 4852 419209 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law_files/editdata.mso 20121018142744 http://www.historyofelectronics.com/Sub/Ohms%20Law_files/editdata.mso text/html 404 JVDPJUV7KJTW4F6TSXDSZ75V75J3O24H - - 1357 959284 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law_files/filelist.xml 20121018142743 http://www.historyofelectronics.com/Sub/Ohms%20Law_files/filelist.xml application/xml 200 RWWHJ2JN2T6DGEYYT5NELT44YLXOVCGQ - - 817 958009 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law_files/image002.gif 20121018142745 http://www.historyofelectronics.com/Sub/Ohms%20Law_files/image002.gif image/gif 200 273B6MUIM46JWGB4CVRYONL5ADMO3GP2 - - 770 963039 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law_files/image003.gif 20121018142745 http://www.historyofelectronics.com/Sub/Ohms%20Law_files/image003.gif image/gif 200 273B6MUIM46JWGB4CVRYONL5ADMO3GP2 - - 768 964267 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law_files/image005.jpg 20121018142746 http://www.historyofelectronics.com/Sub/Ohms%20Law_files/image005.jpg image/jpeg 200 UK6GQWAXKVMQVWPI4AQY52COABAMC57Q - - 24036 965492 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/ohms%20law_files/oledata.mso 20121018142744 http://www.historyofelectronics.com/Sub/Ohms%20Law_files/oledata.mso text/plain 200 IDDML3IRYXKDPTTTU6VGGEEKNK5OHS2G - - 1485 961098 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/parallel%20connection.htm 20121018142619 http://www.historyofelectronics.com/Sub/Parallel%20Connection.htm text/html 200 OQUDOG3ITNQZUJSTBZ7OFS2D4QEUUMYV - - 3273 424501 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/parallel%20connection_files/filelist.xml 20121018142746 http://www.historyofelectronics.com/Sub/Parallel%20Connection_files/filelist.xml text/html 404 GGRJ3WGWU7YTOAFUX7DXM7H4FP6WQCDK - - 1361 989988 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/planar%20process.htm 20121018142619 http://www.historyofelectronics.com/Sub/Planar%20Process.htm text/html 200 QXAMWMIFVGFJLOPLXBQ6EHIGVBC7H7YP - - 3482 428217 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/planar%20process_files/editdata.mso 20121018142747 http://www.historyofelectronics.com/Sub/Planar%20Process_files/editdata.mso text/html 404 FIJ2AXWKN2AVQWHXW3V7OXHBFJS4TKTV - - 1362 993064 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/planar%20process_files/filelist.xml 20121018142747 http://www.historyofelectronics.com/Sub/Planar%20Process_files/filelist.xml application/xml 200 IQFV2OEMUGWUUWRJRQ6W2EHDCJGLXBCT - - 794 991808 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/planar%20process_files/image002.jpg 20121018142748 http://www.historyofelectronics.com/Sub/Planar%20Process_files/image002.jpg image/jpeg 200 IZKLFRVUCUZRYYFDONNSBCJ4VVMU7VSG - - 15326 994887 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/relay.htm 20121018142620 http://www.historyofelectronics.com/Sub/Relay.htm text/html 200 3MIM2ENQWP3PRSXQMRJJM65CDFQRYXHO - - 3374 432134 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/relay_files/filelist.xml 20121018142748 http://www.historyofelectronics.com/Sub/Relay_files/filelist.xml text/html 404 RXCYXLY3DRLWL2EVMNF2T53CHUCDIGNA - - 1348 1010662 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/resonant%20circuit.htm 20121018142621 http://www.historyofelectronics.com/Sub/Resonant%20Circuit.htm text/html 200 NOKHHPUM425JJUV2Y5DJUYNGKELV3TOI - - 3168 435950 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/resonant%20circuit_files/filelist.xml 20121018142749 http://www.historyofelectronics.com/Sub/Resonant%20Circuit_files/filelist.xml text/html 404 LM6KP62BIOO77QKARWCOGZG5ZK2BXR2P - - 1360 1012469 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/roentgen.htm 20121018142550 http://www.historyofelectronics.com/Sub/Roentgen.htm text/html 200 VC4M4VPMCAYQ5DIXIVVM5QDP6L63NYBU - - 5017 222129 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/roentgen_files/filelist.xml 20121018142714 http://www.historyofelectronics.com/Sub/Roentgen_files/filelist.xml text/html 404 Y334PUNWRG7DIDIGJGNQ4FY6CMBUX3F7 - - 1353 743204 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/rutherford.htm 20121018142551 http://www.historyofelectronics.com/Sub/Rutherford.htm text/html 200 QZ2PQBCM54PKQIOQAXE7D6YXZHPMIS3N - - 4618 227584 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/rutherford_files/filelist.xml 20121018142714 http://www.historyofelectronics.com/Sub/Rutherford_files/filelist.xml text/html 404 S7VSRD7VQN4YBVNBUSA2LT767X3RHW76 - - 1351 745009 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/sarnoff.htm 20121018142552 http://www.historyofelectronics.com/Sub/Sarnoff.htm text/html 200 ZOMQI2C4YDLNTQSGXONLJXHZT6D6QH6C - - 4125 232637 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/sarnoff_files/filelist.xml 20121018142715 http://www.historyofelectronics.com/Sub/Sarnoff_files/filelist.xml text/html 404 TIOK64EQQPTH6SPPXGOJPQD3VGJPI5HT - - 1351 746812 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/semiconductor.htm 20121018142613 http://www.historyofelectronics.com/Sub/Semiconductor.htm text/html 200 WMPRIT43DLDSNJ2AHNRGUJNMZZCMDJXF - - 3814 384606 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/semiconductor_files/filelist.xml 20121018142739 http://www.historyofelectronics.com/Sub/Semiconductor_files/filelist.xml text/html 404 5U2575IDRP5W3LAJ5VZ3IYK7GXM3ASCQ - - 1356 929634 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/shockley.htm 20121018142552 http://www.historyofelectronics.com/Sub/Shockley.htm text/html 200 ZIJWR6HB6ZK64B6QMGP6LDO5EKUZ2VJW - - 4265 237200 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/shockley_files/filelist.xml 20121018142715 http://www.historyofelectronics.com/Sub/Shockley_files/filelist.xml text/html 404 DDNUH7MT7IXWRQCHXMCWK6NPQS542MI4 - - 1351 748614 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/sine%20wave.htm 20121018142621 http://www.historyofelectronics.com/Sub/Sine%20Wave.htm text/html 200 PZDB4NFE3IDBSMQRENU2JHZBBX4NI7UH - - 3881 439558 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/sine%20wave_files/editdata.mso 20121018142749 http://www.historyofelectronics.com/Sub/Sine%20Wave_files/editdata.mso text/html 404 RSQ3R2645QUNKUEMFQ2WKR5CWPEQ5F2Z - - 1355 1015534 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/sine%20wave_files/filelist.xml 20121018142749 http://www.historyofelectronics.com/Sub/Sine%20Wave_files/filelist.xml application/xml 200 DENMVNA5VNXEOG4NOBM75HZMNHAWJEFE - - 791 1014287 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/sine%20wave_files/image002.jpg 20121018142750 http://www.historyofelectronics.com/Sub/Sine%20Wave_files/image002.jpg image/jpeg 200 F7IWLEVMPR56URDWVIJ7UDQJYHECXSZ4 - - 4340 1017345 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/spark%20gap.htm 20121018142622 http://www.historyofelectronics.com/Sub/Spark%20Gap.htm text/html 200 JHWT4ALYG4ZAMTZLBYZUD3L5BVNZKXVE - - 3169 443880 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/spark%20gap_files/filelist.xml 20121018142750 http://www.historyofelectronics.com/Sub/Spark%20Gap_files/filelist.xml text/html 404 JMLJNLSC74QKVDRYBE7UX5VC5HVEASRG - - 1357 1022144 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/superheterodyne.htm 20121018142622 http://www.historyofelectronics.com/Sub/Superheterodyne.htm text/html 200 36LX76IRXKHIUORQSXZ4PTCGYAP3PRVA - - 3504 447488 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/superheterodyne_files/filelist.xml 20121018142751 http://www.historyofelectronics.com/Sub/Superheterodyne_files/filelist.xml text/html 404 WQYGWNHQWTCWEN6NDZ6EELKAVQWUYBFK - - 1356 1023956 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/swan.htm 20121018142553 http://www.historyofelectronics.com/Sub/Swan.htm text/html 200 V2Y5JTVPZ5EYEM5JT2XTJVTOHIPO7TZZ - - 3131 241899 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/swan_files/filelist.xml 20121018142716 http://www.historyofelectronics.com/Sub/Swan_files/filelist.xml text/html 404 5DEHK6OUANETRXRWUVFWSMSTMF365IFF - - 1348 750414 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/teal.htm 20121018142553 http://www.historyofelectronics.com/Sub/Teal.htm text/html 200 43YBZPE4GCNUC6UUS2K2P7RNRZKYLHJK - - 4468 245463 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/teal_files/filelist.xml 20121018142716 http://www.historyofelectronics.com/Sub/Teal_files/filelist.xml text/html 404 IMJAHI6VAPKFMAPYS2SI7J6QRQ35S7IP - - 1345 752211 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/tesla.htm 20121018142554 http://www.historyofelectronics.com/Sub/Tesla.htm text/html 200 A5ICK547L7OFGNPP7F7B4RJLSPNUZXAQ - - 4817 250365 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/thales.htm 20121018142555 http://www.historyofelectronics.com/Sub/Thales.htm text/html 200 YHEGXCQB5W6HSUMNB7AYVVXXTTOKHERG - - 4302 255615 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/thales_files/filelist.xml 20121018142717 http://www.historyofelectronics.com/Sub/Thales_files/filelist.xml text/html 404 L665MLK2UULNAQWU4FN5YLSTA5RIIWNN - - 1350 755798 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/thomson%20jj.htm 20121018142555 http://www.historyofelectronics.com/Sub/Thomson%20JJ.htm text/html 200 VMGNGTEHA4P2QHDGS5LVLK4WA5JJ6ONF - - 3746 260357 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/thomson%20jj_files/filelist.xml 20121018142717 http://www.historyofelectronics.com/Sub/Thomson%20JJ_files/filelist.xml text/html 404 SXI2BNI5ZYVZQENS5HMOUJ2XEMDZSFLR - - 1358 757607 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/transformer.htm 20121018142623 http://www.historyofelectronics.com/Sub/Transformer.htm text/html 200 M3MRC2JOECOXV6LIOZOBWRPJXV5UNLO6 - - 3046 451431 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/transformer_files/filelist.xml 20121018142751 http://www.historyofelectronics.com/Sub/Transformer_files/filelist.xml text/html 404 ZQEMO3FHV6OPRQFUHXHHNVTBBDN3C2FX - - 1352 1025767 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/transistor.htm 20121018142601 http://www.historyofelectronics.com/Sub/Transistor.htm text/html 200 UCKZQCLS5AN2U5YBTRNXQ4OHANYTOIMG - - 4358 302278 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/transistor_files/editdata.mso 20121018142723 http://www.historyofelectronics.com/Sub/Transistor_files/editdata.mso text/html 404 WT45ST3OGCH5PAXR3IXVAFQPZYRO52JC - - 1350 782865 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/transistor_files/filelist.xml 20121018142722 http://www.historyofelectronics.com/Sub/Transistor_files/filelist.xml application/xml 200 4SCH2EKCFMFCGF356IMRFWUA3MSII4AM - - 784 781627 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/transistor_files/image002.jpg 20121018142723 http://www.historyofelectronics.com/Sub/Transistor_files/image002.jpg image/jpeg 200 HGHHMJR2EKYLCRKLIWYS3MVLTHFKJHKZ - - 10215 784668 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/volta.htm 20121018142556 http://www.historyofelectronics.com/Sub/Volta.htm text/html 200 5D2PJHWP7BPR4FISPCZNEDONV3AGSAMZ - - 5294 264538 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/volta_files/filelist.xml 20121018142718 http://www.historyofelectronics.com/Sub/Volta_files/filelist.xml text/html 404 5GBNTMANIH46OVFMO2IFKCH24P5T4EOS - - 1347 759415 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/watson.htm 20121018142557 http://www.historyofelectronics.com/Sub/Watson.htm text/html 200 SGETLYD3WEBPU34OXDRKH5VNOCG3OOOF - - 4052 270266 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/watson_files/filelist.xml 20121018142718 http://www.historyofelectronics.com/Sub/Watson_files/filelist.xml text/html 404 LIX4TD6AGF3QFP7CSVT2QUBKHMJGSIRD - - 1350 761209 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/westinghouse.htm 20121018142557 http://www.historyofelectronics.com/Sub/Westinghouse.htm text/html 200 4MZREGAFQXPAQ7DJHUKQ2E6UCTM7RB2L - - 3917 274758 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/westinghouse_files/filelist.xml 20121018142718 http://www.historyofelectronics.com/Sub/Westinghouse_files/filelist.xml text/html 404 ZLCAC5WQ65MWGAMAH4UBP2AEV6B4RXIV - - 1355 763014 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/wheatstone.htm 20121018142558 http://www.historyofelectronics.com/Sub/Wheatstone.htm text/html 200 V6GMHPSSWD6KWKLNEPCVMFEEOFBQXNGQ - - 4210 279114 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/wheatstone_files/filelist.xml 20121018142719 http://www.historyofelectronics.com/Sub/Wheatstone_files/filelist.xml text/html 404 MAB6KG2TF74SLJIPCDF7D6GXB2V4NKSQ - - 1351 764822 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/xrays.htm 20121018142624 http://www.historyofelectronics.com/Sub/XRays.htm text/html 200 TTIWK3YEOB6OLNMBQUD2VZ42FXPA3ZFO - - 3105 454910 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/xrays_files/filelist.xml 20121018142752 http://www.historyofelectronics.com/Sub/XRays_files/filelist.xml text/html 404 P6WC6K7C6EDE2LNDN56OGYZIFB6IBJ5C - - 1351 1027569 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/zworykin.htm 20121018142558 http://www.historyofelectronics.com/Sub/Zworykin.htm text/html 200 CJWBQZJB55SMU7SXEWZLI7KRY6TVZIOX - - 3089 283764 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/sub/zworykin_files/filelist.xml 20121018142719 http://www.historyofelectronics.com/Sub/Zworykin_files/filelist.xml text/html 404 DPPQETDHJWR5USGQIUDYTEXMNV2AEA2Q - - 1352 766624 HansCamenzindWarc/at-historyofelectronics.warc.gz
com,historyofelectronics)/tesla_files/filelist.xml 20121018142716 http://www.historyofelectronics.com/Tesla_files/filelist.xml text/html 404 ISAAP24SIUGQ3UPEFIINMBVQYUNM3HF7 - - 1346 754005 HansCamenzindWarc/at-historyofelectronics.warc.gz
Loading…
Cancel
Save