diff --git a/makeTDcells2.js b/makeTDcells2.js new file mode 100755 index 0000000..9fd3444 --- /dev/null +++ b/makeTDcells2.js @@ -0,0 +1,177 @@ +var fs = require('fs'); +var mysql = require('mysql'); + +function createArray(length) { + var arr = new Array(length || 0), + i = length; + + if (arguments.length > 1) { + var args = Array.prototype.slice.call(arguments, 1); + while(i--) arr[length-1 - i] = createArray.apply(this, args); + } + + return arr; +} + +if (process.argv.length <= 2) { + // console.log("Usage: " + __filename + " SOME_PARAM"); + // process.exit(-1); +} + +var entity = process.argv[2]; +var db = 'localhost'; +var schema = 'HOSPC'; +var table = 'hospc_2013_DATA'; +var lastReport; +var prod = false; +var entityName = ''; +var baseDir = 'static2/'; +var sql = "select distinct(ITEM) from "+schema+"."+table+" where RPT_REC_NUM = "+entity+" and WKSHT_CD = 'S100000' and LINE_NUM = '00100' and CLMN_NUM in('0100','0200','0300','0400','0500')"; + +var sql2 = "SELECT *, 2013 myyear from "+schema+"."+table+" where RPT_REC_NUM = "+entity ++" and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')" ++ "union SELECT *, 2014 myyear from "+schema+"."+table+" where RPT_REC_NUM = "+entity ++" and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')"; + +var sql3 = "SELECT distinct(RPT_REC_NUM) entity from "+schema+"."+table; + +if(prod) { + baseDir = 'static2/'; + db = '10.10.10.11'; + //entity = 101508; + sql = "select distinct(ITEM) from HOSPC.HOSPC_2009_CLXN where cmsid = "+entity+" and WKSHT_CD = 'S100000' and LINE_NUM = '00100' and CLMN_NUM in('0100','0200','0300','0400','0500')"; + sql2 = "SELECT *,2009 myyear FROM HOSPC.HOSPC_2009_CLXN where cmsid = " + entity + " and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')" + + " union "+ + " SELECT *,2010 myyear FROM HOSPC.HOSPC_2010_CLXN where cmsid = " + entity + " and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')" + + " union "+ + " SELECT *,2011 myyear FROM HOSPC.HOSPC_2011_CLXN where cmsid = " + entity + " and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')" + + " union "+ + " SELECT *,2012 myyear FROM HOSPC.HOSPC_2012_CLXN where cmsid = " + entity + " and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')" + + " union "+ + "SELECT *,2013 myyear FROM HOSPC.HOSPC_2013_CLXN where cmsid = " + entity + " and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')" + + " union "+ + "SELECT *,2014 myyear FROM HOSPC.HOSPC_2014_CLXN where cmsid = " + entity + " and WKSHT_CD = 'A000000' and CLMN_NUM in('1000') and LINE_NUM in ('01500','01600','01700','01800','01900')"; + sql3 = "SELECT distinct(cmsid) entity FROM HOSPC.MASTER_DATA where cmsid in ('101515','101534','101520',"+ + "'101545','101502','101526','101528','101549','101500','101551','101513','101577','101527','101527','101550','101507','101529','101537','101525','101516','101523','101518','101527','101510','101553','101530','101548','101536','451781','101543','101552','101527','101540','101512','101532','101511','101508','101521','101533','101517','101522','101537');" +} +if (!fs.existsSync(baseDir)) { + fs.mkdirSync(baseDir); +} + + +//console.log(sql); + +var connection = mysql.createConnection({ + host : db, + user : 'nodeuser', + password : 'Cheese2000', + database : schema +}); + +connection.connect(function(err) { + if (!err) { + //console.log("Database is connected ... nn"); + } else { + console.log("Error connecting database ... nn"); + } +}); + +var connection2 = mysql.createConnection({ + host : db, + user : 'nodeuser', + password : 'Cheese2000', + database : schema +}); + +connection2.connect(function(err) { + if (!err) { + //console.log("Database2 is connected ... nn"); + } else { + console.log("Error2 connecting database ... nn"); + } +}); + +var connection3 = mysql.createConnection({ + host : db, + user : 'nodeuser', + password : 'Cheese2000', + database : schema +}); + +connection3.connect(function(err) { + if (!err) { + //console.log("Database3 is connected ... nn"); + } else { + console.log("Error3 connecting database ... nn"); + } +}); + +var myRows = new Array(); + +connection.query(sql,function(err, rows) { + //console.log(rows[0].ITEM + ',' + rows[1].ITEM + ',' +rows[2].ITEM + ',' +rows[3].ITEM + ',' +rows[4].ITEM); + var myfile = baseDir + entity + '.name'; + for (var i = 0; i < rows.length; i++) { + + + // for (i = 0; i < 1; i++) { + //console.log(rows[i].ITEM); + myRows[i] = rows[i].ITEM.toString().trim(); + entityName += rows[i].ITEM.toString().trim(); + entityName += '
\n'; + //console.log("XXX " + entityName); +} // end top for loop + //var entityName = myRows.join(':');//[0].ITEM + ',' + rows[1].ITEM; //+ ',' +rows[2].ITEM + ',' +rows[3].ITEM + ',' +rows[4].ITEM ; + //console.log(entityName); + + +}); // end connection callback + + + +connection3.query(sql3,function(err, rows) { + //console.log(rows[0].ITEM + ',' + rows[1].ITEM + ',' +rows[2].ITEM + ',' +rows[3].ITEM + ',' +rows[4].ITEM); + //console.log(sql3); + var tmpString = ''; + var myfile3 = 'makeTDcells2.sh'; + for (var i = 0; i < rows.length; i++) { + tmpString += "echo ' writing array for "+rows[i].entity +" ';\n "; + tmpString += 'node makeTDcells2.js ' + rows[i].entity + ' > static2/'+ rows[i].entity+'_td.html;\n'; + // for (i = 0; i < 1; i++) { + //console.log(rows[i].entity); + //myRows[i] = rows[i].ITEM; + //entityName += rows[i].ITEM.toString() + ','; + //console.log("XXX " + entityName); +} // end top for loop + //var entityName = myRows.join(':');//[0].ITEM + ',' + rows[1].ITEM; //+ ',' +rows[2].ITEM + ',' +rows[3].ITEM + ',' +rows[4].ITEM ; + //console.log(entityName); + fs.writeFile(myfile3, tmpString, function(err) { + if (err) + throw err; + // console.log(myfile3 + ' saved'); + + //process.exit(0); + // var array = fs.readFileSync(myfile2).toString().split("\n"); + + //console.log(array); + + }); + + +}); // end connection callback + + +//console.log(sql2); +connection2.query(sql2, function(err, rows2) { + + console.log(""); + console.log('
'); + + + process.exit(0); +}); // end connection2 callback + + + + + diff --git a/makeTDcells2.sh b/makeTDcells2.sh new file mode 100644 index 0000000..bac3aae --- /dev/null +++ b/makeTDcells2.sh @@ -0,0 +1,5424 @@ +echo ' writing array for 31394 '; + node makeTDcells2.js 31394 > static2/31394_td.html; +echo ' writing array for 32352 '; + node makeTDcells2.js 32352 > static2/32352_td.html; +echo ' writing array for 32494 '; + node makeTDcells2.js 32494 > static2/32494_td.html; +echo ' writing array for 32589 '; + node makeTDcells2.js 32589 > static2/32589_td.html; +echo ' writing array for 32672 '; + node makeTDcells2.js 32672 > static2/32672_td.html; +echo ' writing array for 32675 '; + node makeTDcells2.js 32675 > static2/32675_td.html; +echo ' writing array for 33085 '; + node makeTDcells2.js 33085 > static2/33085_td.html; +echo ' writing array for 33229 '; + node makeTDcells2.js 33229 > static2/33229_td.html; +echo ' writing array for 33312 '; + node makeTDcells2.js 33312 > static2/33312_td.html; +echo ' writing array for 33471 '; + node makeTDcells2.js 33471 > static2/33471_td.html; +echo ' writing array for 33472 '; + node makeTDcells2.js 33472 > static2/33472_td.html; +echo ' writing array for 33478 '; + node makeTDcells2.js 33478 > static2/33478_td.html; +echo ' writing array for 33486 '; + node makeTDcells2.js 33486 > static2/33486_td.html; +echo ' writing array for 33489 '; + node makeTDcells2.js 33489 > static2/33489_td.html; +echo ' writing array for 33491 '; + node makeTDcells2.js 33491 > static2/33491_td.html; +echo ' writing array for 33524 '; + node makeTDcells2.js 33524 > static2/33524_td.html; +echo ' writing array for 33535 '; + node makeTDcells2.js 33535 > static2/33535_td.html; +echo ' writing array for 33558 '; + node makeTDcells2.js 33558 > static2/33558_td.html; +echo ' writing array for 33583 '; + node makeTDcells2.js 33583 > static2/33583_td.html; +echo ' writing array for 33585 '; + node makeTDcells2.js 33585 > static2/33585_td.html; +echo ' writing array for 33604 '; + node makeTDcells2.js 33604 > static2/33604_td.html; +echo ' writing array for 33607 '; + node makeTDcells2.js 33607 > static2/33607_td.html; +echo ' writing array for 33659 '; + node makeTDcells2.js 33659 > static2/33659_td.html; +echo ' writing array for 33660 '; + node makeTDcells2.js 33660 > static2/33660_td.html; +echo ' writing array for 33661 '; + node makeTDcells2.js 33661 > static2/33661_td.html; +echo ' writing array for 33662 '; + node makeTDcells2.js 33662 > static2/33662_td.html; +echo ' writing array for 33665 '; + node makeTDcells2.js 33665 > static2/33665_td.html; +echo ' writing array for 33692 '; + node makeTDcells2.js 33692 > static2/33692_td.html; +echo ' writing array for 33695 '; + node makeTDcells2.js 33695 > static2/33695_td.html; +echo ' writing array for 33699 '; + node makeTDcells2.js 33699 > static2/33699_td.html; +echo ' writing array for 33701 '; + node makeTDcells2.js 33701 > static2/33701_td.html; +echo ' writing array for 33711 '; + node makeTDcells2.js 33711 > static2/33711_td.html; +echo ' writing array for 33713 '; + node makeTDcells2.js 33713 > static2/33713_td.html; +echo ' writing array for 33715 '; + node makeTDcells2.js 33715 > static2/33715_td.html; +echo ' writing array for 33732 '; + node makeTDcells2.js 33732 > static2/33732_td.html; +echo ' writing array for 33733 '; + node makeTDcells2.js 33733 > static2/33733_td.html; +echo ' writing array for 33743 '; + node makeTDcells2.js 33743 > static2/33743_td.html; +echo ' writing array for 33766 '; + node makeTDcells2.js 33766 > static2/33766_td.html; +echo ' writing array for 33780 '; + node makeTDcells2.js 33780 > static2/33780_td.html; +echo ' writing array for 33814 '; + node makeTDcells2.js 33814 > static2/33814_td.html; +echo ' writing array for 33819 '; + node makeTDcells2.js 33819 > static2/33819_td.html; +echo ' writing array for 33820 '; + node makeTDcells2.js 33820 > static2/33820_td.html; +echo ' writing array for 33821 '; + node makeTDcells2.js 33821 > static2/33821_td.html; +echo ' writing array for 33829 '; + node makeTDcells2.js 33829 > static2/33829_td.html; +echo ' writing array for 33832 '; + node makeTDcells2.js 33832 > static2/33832_td.html; +echo ' writing array for 33833 '; + node makeTDcells2.js 33833 > static2/33833_td.html; +echo ' writing array for 33834 '; + node makeTDcells2.js 33834 > static2/33834_td.html; +echo ' writing array for 33835 '; + node makeTDcells2.js 33835 > static2/33835_td.html; +echo ' writing array for 33836 '; + node makeTDcells2.js 33836 > static2/33836_td.html; +echo ' writing array for 33837 '; + node makeTDcells2.js 33837 > static2/33837_td.html; +echo ' writing array for 33838 '; + node makeTDcells2.js 33838 > static2/33838_td.html; +echo ' writing array for 33840 '; + node makeTDcells2.js 33840 > static2/33840_td.html; +echo ' writing array for 33841 '; + node makeTDcells2.js 33841 > static2/33841_td.html; +echo ' writing array for 33843 '; + node makeTDcells2.js 33843 > static2/33843_td.html; +echo ' writing array for 33844 '; + node makeTDcells2.js 33844 > static2/33844_td.html; +echo ' writing array for 33845 '; + node makeTDcells2.js 33845 > static2/33845_td.html; +echo ' writing array for 33846 '; + node makeTDcells2.js 33846 > static2/33846_td.html; +echo ' writing array for 33847 '; + node makeTDcells2.js 33847 > static2/33847_td.html; +echo ' writing array for 33849 '; + node makeTDcells2.js 33849 > static2/33849_td.html; +echo ' writing array for 33850 '; + node makeTDcells2.js 33850 > static2/33850_td.html; +echo ' writing array for 33851 '; + node makeTDcells2.js 33851 > static2/33851_td.html; +echo ' writing array for 33852 '; + node makeTDcells2.js 33852 > static2/33852_td.html; +echo ' writing array for 33853 '; + node makeTDcells2.js 33853 > static2/33853_td.html; +echo ' writing array for 33857 '; + node makeTDcells2.js 33857 > static2/33857_td.html; +echo ' writing array for 33858 '; + node makeTDcells2.js 33858 > static2/33858_td.html; +echo ' writing array for 33859 '; + node makeTDcells2.js 33859 > static2/33859_td.html; +echo ' writing array for 33860 '; + node makeTDcells2.js 33860 > static2/33860_td.html; +echo ' writing array for 33861 '; + node makeTDcells2.js 33861 > static2/33861_td.html; +echo ' writing array for 33862 '; + node makeTDcells2.js 33862 > static2/33862_td.html; +echo ' writing array for 33863 '; + node makeTDcells2.js 33863 > static2/33863_td.html; +echo ' writing array for 33864 '; + node makeTDcells2.js 33864 > static2/33864_td.html; +echo ' writing array for 33865 '; + node makeTDcells2.js 33865 > static2/33865_td.html; +echo ' writing array for 33866 '; + node makeTDcells2.js 33866 > static2/33866_td.html; +echo ' writing array for 33867 '; + node makeTDcells2.js 33867 > static2/33867_td.html; +echo ' writing array for 33868 '; + node makeTDcells2.js 33868 > static2/33868_td.html; +echo ' writing array for 33869 '; + node makeTDcells2.js 33869 > static2/33869_td.html; +echo ' writing array for 33870 '; + node makeTDcells2.js 33870 > static2/33870_td.html; +echo ' writing array for 33871 '; + node makeTDcells2.js 33871 > static2/33871_td.html; +echo ' writing array for 33872 '; + node makeTDcells2.js 33872 > static2/33872_td.html; +echo ' writing array for 33873 '; + node makeTDcells2.js 33873 > static2/33873_td.html; +echo ' writing array for 33874 '; + node makeTDcells2.js 33874 > static2/33874_td.html; +echo ' writing array for 33876 '; + node makeTDcells2.js 33876 > static2/33876_td.html; +echo ' writing array for 33878 '; + node makeTDcells2.js 33878 > static2/33878_td.html; +echo ' writing array for 33879 '; + node makeTDcells2.js 33879 > static2/33879_td.html; +echo ' writing array for 33880 '; + node makeTDcells2.js 33880 > static2/33880_td.html; +echo ' writing array for 33881 '; + node makeTDcells2.js 33881 > static2/33881_td.html; +echo ' writing array for 33882 '; + node makeTDcells2.js 33882 > static2/33882_td.html; +echo ' writing array for 33883 '; + node makeTDcells2.js 33883 > static2/33883_td.html; +echo ' writing array for 33884 '; + node makeTDcells2.js 33884 > static2/33884_td.html; +echo ' writing array for 33885 '; + node makeTDcells2.js 33885 > static2/33885_td.html; +echo ' writing array for 33886 '; + node makeTDcells2.js 33886 > static2/33886_td.html; +echo ' writing array for 33887 '; + node makeTDcells2.js 33887 > static2/33887_td.html; +echo ' writing array for 33888 '; + node makeTDcells2.js 33888 > static2/33888_td.html; +echo ' writing array for 33889 '; + node makeTDcells2.js 33889 > static2/33889_td.html; +echo ' writing array for 33890 '; + node makeTDcells2.js 33890 > static2/33890_td.html; +echo ' writing array for 33891 '; + node makeTDcells2.js 33891 > static2/33891_td.html; +echo ' writing array for 33892 '; + node makeTDcells2.js 33892 > static2/33892_td.html; +echo ' writing array for 33893 '; + node makeTDcells2.js 33893 > static2/33893_td.html; +echo ' writing array for 33894 '; + node makeTDcells2.js 33894 > static2/33894_td.html; +echo ' writing array for 33896 '; + node makeTDcells2.js 33896 > static2/33896_td.html; +echo ' writing array for 33898 '; + node makeTDcells2.js 33898 > static2/33898_td.html; +echo ' writing array for 33899 '; + node makeTDcells2.js 33899 > static2/33899_td.html; +echo ' writing array for 33900 '; + node makeTDcells2.js 33900 > static2/33900_td.html; +echo ' writing array for 33901 '; + node makeTDcells2.js 33901 > static2/33901_td.html; +echo ' writing array for 33902 '; + node makeTDcells2.js 33902 > static2/33902_td.html; +echo ' writing array for 33903 '; + node makeTDcells2.js 33903 > static2/33903_td.html; +echo ' writing array for 33905 '; + node makeTDcells2.js 33905 > static2/33905_td.html; +echo ' writing array for 33906 '; + node makeTDcells2.js 33906 > static2/33906_td.html; +echo ' writing array for 33907 '; + node makeTDcells2.js 33907 > static2/33907_td.html; +echo ' writing array for 33908 '; + node makeTDcells2.js 33908 > static2/33908_td.html; +echo ' writing array for 33910 '; + node makeTDcells2.js 33910 > static2/33910_td.html; +echo ' writing array for 33911 '; + node makeTDcells2.js 33911 > static2/33911_td.html; +echo ' writing array for 33929 '; + node makeTDcells2.js 33929 > static2/33929_td.html; +echo ' writing array for 33930 '; + node makeTDcells2.js 33930 > static2/33930_td.html; +echo ' writing array for 33931 '; + node makeTDcells2.js 33931 > static2/33931_td.html; +echo ' writing array for 33932 '; + node makeTDcells2.js 33932 > static2/33932_td.html; +echo ' writing array for 33933 '; + node makeTDcells2.js 33933 > static2/33933_td.html; +echo ' writing array for 33934 '; + node makeTDcells2.js 33934 > static2/33934_td.html; +echo ' writing array for 33935 '; + node makeTDcells2.js 33935 > static2/33935_td.html; +echo ' writing array for 33936 '; + node makeTDcells2.js 33936 > static2/33936_td.html; +echo ' writing array for 33937 '; + node makeTDcells2.js 33937 > static2/33937_td.html; +echo ' writing array for 33938 '; + node makeTDcells2.js 33938 > static2/33938_td.html; +echo ' writing array for 33939 '; + node makeTDcells2.js 33939 > static2/33939_td.html; +echo ' writing array for 33940 '; + node makeTDcells2.js 33940 > static2/33940_td.html; +echo ' writing array for 33941 '; + node makeTDcells2.js 33941 > static2/33941_td.html; +echo ' writing array for 33942 '; + node makeTDcells2.js 33942 > static2/33942_td.html; +echo ' writing array for 33943 '; + node makeTDcells2.js 33943 > static2/33943_td.html; +echo ' writing array for 33944 '; + node makeTDcells2.js 33944 > static2/33944_td.html; +echo ' writing array for 33945 '; + node makeTDcells2.js 33945 > static2/33945_td.html; +echo ' writing array for 33946 '; + node makeTDcells2.js 33946 > static2/33946_td.html; +echo ' writing array for 33947 '; + node makeTDcells2.js 33947 > static2/33947_td.html; +echo ' writing array for 33948 '; + node makeTDcells2.js 33948 > static2/33948_td.html; +echo ' writing array for 33949 '; + node makeTDcells2.js 33949 > static2/33949_td.html; +echo ' writing array for 33950 '; + node makeTDcells2.js 33950 > static2/33950_td.html; +echo ' writing array for 33951 '; + node makeTDcells2.js 33951 > static2/33951_td.html; +echo ' writing array for 33952 '; + node makeTDcells2.js 33952 > static2/33952_td.html; +echo ' writing array for 33953 '; + node makeTDcells2.js 33953 > static2/33953_td.html; +echo ' writing array for 33954 '; + node makeTDcells2.js 33954 > static2/33954_td.html; +echo ' writing array for 33955 '; + node makeTDcells2.js 33955 > static2/33955_td.html; +echo ' writing array for 33956 '; + node makeTDcells2.js 33956 > static2/33956_td.html; +echo ' writing array for 33957 '; + node makeTDcells2.js 33957 > static2/33957_td.html; +echo ' writing array for 33958 '; + node makeTDcells2.js 33958 > static2/33958_td.html; +echo ' writing array for 33959 '; + node makeTDcells2.js 33959 > static2/33959_td.html; +echo ' writing array for 33960 '; + node makeTDcells2.js 33960 > static2/33960_td.html; +echo ' writing array for 33961 '; + node makeTDcells2.js 33961 > static2/33961_td.html; +echo ' writing array for 33962 '; + node makeTDcells2.js 33962 > static2/33962_td.html; +echo ' writing array for 33963 '; + node makeTDcells2.js 33963 > static2/33963_td.html; +echo ' writing array for 33964 '; + node makeTDcells2.js 33964 > static2/33964_td.html; +echo ' writing array for 33965 '; + node makeTDcells2.js 33965 > static2/33965_td.html; +echo ' writing array for 33966 '; + node makeTDcells2.js 33966 > static2/33966_td.html; +echo ' writing array for 33967 '; + node makeTDcells2.js 33967 > static2/33967_td.html; +echo ' writing array for 33968 '; + node makeTDcells2.js 33968 > static2/33968_td.html; +echo ' writing array for 33969 '; + node makeTDcells2.js 33969 > static2/33969_td.html; +echo ' writing array for 33971 '; + node makeTDcells2.js 33971 > static2/33971_td.html; +echo ' writing array for 33972 '; + node makeTDcells2.js 33972 > static2/33972_td.html; +echo ' writing array for 33973 '; + node makeTDcells2.js 33973 > static2/33973_td.html; +echo ' writing array for 33974 '; + node makeTDcells2.js 33974 > static2/33974_td.html; +echo ' writing array for 33975 '; + node makeTDcells2.js 33975 > static2/33975_td.html; +echo ' writing array for 33976 '; + node makeTDcells2.js 33976 > static2/33976_td.html; +echo ' writing array for 33977 '; + node makeTDcells2.js 33977 > static2/33977_td.html; +echo ' writing array for 33978 '; + node makeTDcells2.js 33978 > static2/33978_td.html; +echo ' writing array for 33979 '; + node makeTDcells2.js 33979 > static2/33979_td.html; +echo ' writing array for 33980 '; + node makeTDcells2.js 33980 > static2/33980_td.html; +echo ' writing array for 33981 '; + node makeTDcells2.js 33981 > static2/33981_td.html; +echo ' writing array for 33982 '; + node makeTDcells2.js 33982 > static2/33982_td.html; +echo ' writing array for 33983 '; + node makeTDcells2.js 33983 > static2/33983_td.html; +echo ' writing array for 33984 '; + node makeTDcells2.js 33984 > static2/33984_td.html; +echo ' writing array for 33985 '; + node makeTDcells2.js 33985 > static2/33985_td.html; +echo ' writing array for 33986 '; + node makeTDcells2.js 33986 > static2/33986_td.html; +echo ' writing array for 33988 '; + node makeTDcells2.js 33988 > static2/33988_td.html; +echo ' writing array for 33989 '; + node makeTDcells2.js 33989 > static2/33989_td.html; +echo ' writing array for 33990 '; + node makeTDcells2.js 33990 > static2/33990_td.html; +echo ' writing array for 33991 '; + node makeTDcells2.js 33991 > static2/33991_td.html; +echo ' writing array for 33993 '; + node makeTDcells2.js 33993 > static2/33993_td.html; +echo ' writing array for 33994 '; + node makeTDcells2.js 33994 > static2/33994_td.html; +echo ' writing array for 33995 '; + node makeTDcells2.js 33995 > static2/33995_td.html; +echo ' writing array for 33996 '; + node makeTDcells2.js 33996 > static2/33996_td.html; +echo ' writing array for 33997 '; + node makeTDcells2.js 33997 > static2/33997_td.html; +echo ' writing array for 33998 '; + node makeTDcells2.js 33998 > static2/33998_td.html; +echo ' writing array for 33999 '; + node makeTDcells2.js 33999 > static2/33999_td.html; +echo ' writing array for 34000 '; + node makeTDcells2.js 34000 > static2/34000_td.html; +echo ' writing array for 34001 '; + node makeTDcells2.js 34001 > static2/34001_td.html; +echo ' writing array for 34002 '; + node makeTDcells2.js 34002 > static2/34002_td.html; +echo ' writing array for 34003 '; + node makeTDcells2.js 34003 > static2/34003_td.html; +echo ' writing array for 34004 '; + node makeTDcells2.js 34004 > static2/34004_td.html; +echo ' writing array for 34005 '; + node makeTDcells2.js 34005 > static2/34005_td.html; +echo ' writing array for 34006 '; + node makeTDcells2.js 34006 > static2/34006_td.html; +echo ' writing array for 34007 '; + node makeTDcells2.js 34007 > static2/34007_td.html; +echo ' writing array for 34008 '; + node makeTDcells2.js 34008 > static2/34008_td.html; +echo ' writing array for 34009 '; + node makeTDcells2.js 34009 > static2/34009_td.html; +echo ' writing array for 34010 '; + node makeTDcells2.js 34010 > static2/34010_td.html; +echo ' writing array for 34011 '; + node makeTDcells2.js 34011 > static2/34011_td.html; +echo ' writing array for 34012 '; + node makeTDcells2.js 34012 > static2/34012_td.html; +echo ' writing array for 34013 '; + node makeTDcells2.js 34013 > static2/34013_td.html; +echo ' writing array for 34014 '; + node makeTDcells2.js 34014 > static2/34014_td.html; +echo ' writing array for 34015 '; + node makeTDcells2.js 34015 > static2/34015_td.html; +echo ' writing array for 34016 '; + node makeTDcells2.js 34016 > static2/34016_td.html; +echo ' writing array for 34017 '; + node makeTDcells2.js 34017 > static2/34017_td.html; +echo ' writing array for 34018 '; + node makeTDcells2.js 34018 > static2/34018_td.html; +echo ' writing array for 34019 '; + node makeTDcells2.js 34019 > static2/34019_td.html; +echo ' writing array for 34020 '; + node makeTDcells2.js 34020 > static2/34020_td.html; +echo ' writing array for 34021 '; + node makeTDcells2.js 34021 > static2/34021_td.html; +echo ' writing array for 34022 '; + node makeTDcells2.js 34022 > static2/34022_td.html; +echo ' writing array for 34024 '; + node makeTDcells2.js 34024 > static2/34024_td.html; +echo ' writing array for 34025 '; + node makeTDcells2.js 34025 > static2/34025_td.html; +echo ' writing array for 34026 '; + node makeTDcells2.js 34026 > static2/34026_td.html; +echo ' writing array for 34027 '; + node makeTDcells2.js 34027 > static2/34027_td.html; +echo ' writing array for 34028 '; + node makeTDcells2.js 34028 > static2/34028_td.html; +echo ' writing array for 34029 '; + node makeTDcells2.js 34029 > static2/34029_td.html; +echo ' writing array for 34030 '; + node makeTDcells2.js 34030 > static2/34030_td.html; +echo ' writing array for 34031 '; + node makeTDcells2.js 34031 > static2/34031_td.html; +echo ' writing array for 34032 '; + node makeTDcells2.js 34032 > static2/34032_td.html; +echo ' writing array for 34034 '; + node makeTDcells2.js 34034 > static2/34034_td.html; +echo ' writing array for 34035 '; + node makeTDcells2.js 34035 > static2/34035_td.html; +echo ' writing array for 34036 '; + node makeTDcells2.js 34036 > static2/34036_td.html; +echo ' writing array for 34037 '; + node makeTDcells2.js 34037 > static2/34037_td.html; +echo ' writing array for 34038 '; + node makeTDcells2.js 34038 > static2/34038_td.html; +echo ' writing array for 34039 '; + node makeTDcells2.js 34039 > static2/34039_td.html; +echo ' writing array for 34040 '; + node makeTDcells2.js 34040 > static2/34040_td.html; +echo ' writing array for 34041 '; + node makeTDcells2.js 34041 > static2/34041_td.html; +echo ' writing array for 34042 '; + node makeTDcells2.js 34042 > static2/34042_td.html; +echo ' writing array for 34043 '; + node makeTDcells2.js 34043 > static2/34043_td.html; +echo ' writing array for 34044 '; + node makeTDcells2.js 34044 > static2/34044_td.html; +echo ' writing array for 34045 '; + node makeTDcells2.js 34045 > static2/34045_td.html; +echo ' writing array for 34046 '; + node makeTDcells2.js 34046 > static2/34046_td.html; +echo ' writing array for 34047 '; + node makeTDcells2.js 34047 > static2/34047_td.html; +echo ' writing array for 34048 '; + node makeTDcells2.js 34048 > static2/34048_td.html; +echo ' writing array for 34049 '; + node makeTDcells2.js 34049 > static2/34049_td.html; +echo ' writing array for 34050 '; + node makeTDcells2.js 34050 > static2/34050_td.html; +echo ' writing array for 34051 '; + node makeTDcells2.js 34051 > static2/34051_td.html; +echo ' writing array for 34052 '; + node makeTDcells2.js 34052 > static2/34052_td.html; +echo ' writing array for 34053 '; + node makeTDcells2.js 34053 > static2/34053_td.html; +echo ' writing array for 34054 '; + node makeTDcells2.js 34054 > static2/34054_td.html; +echo ' writing array for 34055 '; + node makeTDcells2.js 34055 > static2/34055_td.html; +echo ' writing array for 34056 '; + node makeTDcells2.js 34056 > static2/34056_td.html; +echo ' writing array for 34057 '; + node makeTDcells2.js 34057 > static2/34057_td.html; +echo ' writing array for 34058 '; + node makeTDcells2.js 34058 > static2/34058_td.html; +echo ' writing array for 34059 '; + node makeTDcells2.js 34059 > static2/34059_td.html; +echo ' writing array for 34060 '; + node makeTDcells2.js 34060 > static2/34060_td.html; +echo ' writing array for 34061 '; + node makeTDcells2.js 34061 > static2/34061_td.html; +echo ' writing array for 34062 '; + node makeTDcells2.js 34062 > static2/34062_td.html; +echo ' writing array for 34063 '; + node makeTDcells2.js 34063 > static2/34063_td.html; +echo ' writing array for 34064 '; + node makeTDcells2.js 34064 > static2/34064_td.html; +echo ' writing array for 34066 '; + node makeTDcells2.js 34066 > static2/34066_td.html; +echo ' writing array for 34067 '; + node makeTDcells2.js 34067 > static2/34067_td.html; +echo ' writing array for 34068 '; + node makeTDcells2.js 34068 > static2/34068_td.html; +echo ' writing array for 34069 '; + node makeTDcells2.js 34069 > static2/34069_td.html; +echo ' writing array for 34070 '; + node makeTDcells2.js 34070 > static2/34070_td.html; +echo ' writing array for 34072 '; + node makeTDcells2.js 34072 > static2/34072_td.html; +echo ' writing array for 34073 '; + node makeTDcells2.js 34073 > static2/34073_td.html; +echo ' writing array for 34074 '; + node makeTDcells2.js 34074 > static2/34074_td.html; +echo ' writing array for 34075 '; + node makeTDcells2.js 34075 > static2/34075_td.html; +echo ' writing array for 34077 '; + node makeTDcells2.js 34077 > static2/34077_td.html; +echo ' writing array for 34078 '; + node makeTDcells2.js 34078 > static2/34078_td.html; +echo ' writing array for 34079 '; + node makeTDcells2.js 34079 > static2/34079_td.html; +echo ' writing array for 34080 '; + node makeTDcells2.js 34080 > static2/34080_td.html; +echo ' writing array for 34081 '; + node makeTDcells2.js 34081 > static2/34081_td.html; +echo ' writing array for 34082 '; + node makeTDcells2.js 34082 > static2/34082_td.html; +echo ' writing array for 34083 '; + node makeTDcells2.js 34083 > static2/34083_td.html; +echo ' writing array for 34084 '; + node makeTDcells2.js 34084 > static2/34084_td.html; +echo ' writing array for 34085 '; + node makeTDcells2.js 34085 > static2/34085_td.html; +echo ' writing array for 34086 '; + node makeTDcells2.js 34086 > static2/34086_td.html; +echo ' writing array for 34087 '; + node makeTDcells2.js 34087 > static2/34087_td.html; +echo ' writing array for 34088 '; + node makeTDcells2.js 34088 > static2/34088_td.html; +echo ' writing array for 34090 '; + node makeTDcells2.js 34090 > static2/34090_td.html; +echo ' writing array for 34091 '; + node makeTDcells2.js 34091 > static2/34091_td.html; +echo ' writing array for 34092 '; + node makeTDcells2.js 34092 > static2/34092_td.html; +echo ' writing array for 34095 '; + node makeTDcells2.js 34095 > static2/34095_td.html; +echo ' writing array for 34096 '; + node makeTDcells2.js 34096 > static2/34096_td.html; +echo ' writing array for 34097 '; + node makeTDcells2.js 34097 > static2/34097_td.html; +echo ' writing array for 34098 '; + node makeTDcells2.js 34098 > static2/34098_td.html; +echo ' writing array for 34099 '; + node makeTDcells2.js 34099 > static2/34099_td.html; +echo ' writing array for 34100 '; + node makeTDcells2.js 34100 > static2/34100_td.html; +echo ' writing array for 34101 '; + node makeTDcells2.js 34101 > static2/34101_td.html; +echo ' writing array for 34102 '; + node makeTDcells2.js 34102 > static2/34102_td.html; +echo ' writing array for 34103 '; + node makeTDcells2.js 34103 > static2/34103_td.html; +echo ' writing array for 34104 '; + node makeTDcells2.js 34104 > static2/34104_td.html; +echo ' writing array for 34105 '; + node makeTDcells2.js 34105 > static2/34105_td.html; +echo ' writing array for 34106 '; + node makeTDcells2.js 34106 > static2/34106_td.html; +echo ' writing array for 34107 '; + node makeTDcells2.js 34107 > static2/34107_td.html; +echo ' writing array for 34108 '; + node makeTDcells2.js 34108 > static2/34108_td.html; +echo ' writing array for 34109 '; + node makeTDcells2.js 34109 > static2/34109_td.html; +echo ' writing array for 34110 '; + node makeTDcells2.js 34110 > static2/34110_td.html; +echo ' writing array for 34111 '; + node makeTDcells2.js 34111 > static2/34111_td.html; +echo ' writing array for 34112 '; + node makeTDcells2.js 34112 > static2/34112_td.html; +echo ' writing array for 34113 '; + node makeTDcells2.js 34113 > static2/34113_td.html; +echo ' writing array for 34114 '; + node makeTDcells2.js 34114 > static2/34114_td.html; +echo ' writing array for 34115 '; + node makeTDcells2.js 34115 > static2/34115_td.html; +echo ' writing array for 34116 '; + node makeTDcells2.js 34116 > static2/34116_td.html; +echo ' writing array for 34117 '; + node makeTDcells2.js 34117 > static2/34117_td.html; +echo ' writing array for 34118 '; + node makeTDcells2.js 34118 > static2/34118_td.html; +echo ' writing array for 34119 '; + node makeTDcells2.js 34119 > static2/34119_td.html; +echo ' writing array for 34120 '; + node makeTDcells2.js 34120 > static2/34120_td.html; +echo ' writing array for 34121 '; + node makeTDcells2.js 34121 > static2/34121_td.html; +echo ' writing array for 34122 '; + node makeTDcells2.js 34122 > static2/34122_td.html; +echo ' writing array for 34123 '; + node makeTDcells2.js 34123 > static2/34123_td.html; +echo ' writing array for 34124 '; + node makeTDcells2.js 34124 > static2/34124_td.html; +echo ' writing array for 34125 '; + node makeTDcells2.js 34125 > static2/34125_td.html; +echo ' writing array for 34126 '; + node makeTDcells2.js 34126 > static2/34126_td.html; +echo ' writing array for 34127 '; + node makeTDcells2.js 34127 > static2/34127_td.html; +echo ' writing array for 34128 '; + node makeTDcells2.js 34128 > static2/34128_td.html; +echo ' writing array for 34129 '; + node makeTDcells2.js 34129 > static2/34129_td.html; +echo ' writing array for 34130 '; + node makeTDcells2.js 34130 > static2/34130_td.html; +echo ' writing array for 34131 '; + node makeTDcells2.js 34131 > static2/34131_td.html; +echo ' writing array for 34132 '; + node makeTDcells2.js 34132 > static2/34132_td.html; +echo ' writing array for 34134 '; + node makeTDcells2.js 34134 > static2/34134_td.html; +echo ' writing array for 34135 '; + node makeTDcells2.js 34135 > static2/34135_td.html; +echo ' writing array for 34136 '; + node makeTDcells2.js 34136 > static2/34136_td.html; +echo ' writing array for 34137 '; + node makeTDcells2.js 34137 > static2/34137_td.html; +echo ' writing array for 34138 '; + node makeTDcells2.js 34138 > static2/34138_td.html; +echo ' writing array for 34139 '; + node makeTDcells2.js 34139 > static2/34139_td.html; +echo ' writing array for 34140 '; + node makeTDcells2.js 34140 > static2/34140_td.html; +echo ' writing array for 34141 '; + node makeTDcells2.js 34141 > static2/34141_td.html; +echo ' writing array for 34142 '; + node makeTDcells2.js 34142 > static2/34142_td.html; +echo ' writing array for 34143 '; + node makeTDcells2.js 34143 > static2/34143_td.html; +echo ' writing array for 34144 '; + node makeTDcells2.js 34144 > static2/34144_td.html; +echo ' writing array for 34145 '; + node makeTDcells2.js 34145 > static2/34145_td.html; +echo ' writing array for 34146 '; + node makeTDcells2.js 34146 > static2/34146_td.html; +echo ' writing array for 34147 '; + node makeTDcells2.js 34147 > static2/34147_td.html; +echo ' writing array for 34148 '; + node makeTDcells2.js 34148 > static2/34148_td.html; +echo ' writing array for 34149 '; + node makeTDcells2.js 34149 > static2/34149_td.html; +echo ' writing array for 34150 '; + node makeTDcells2.js 34150 > static2/34150_td.html; +echo ' writing array for 34151 '; + node makeTDcells2.js 34151 > static2/34151_td.html; +echo ' writing array for 34152 '; + node makeTDcells2.js 34152 > static2/34152_td.html; +echo ' writing array for 34153 '; + node makeTDcells2.js 34153 > static2/34153_td.html; +echo ' writing array for 34154 '; + node makeTDcells2.js 34154 > static2/34154_td.html; +echo ' writing array for 34155 '; + node makeTDcells2.js 34155 > static2/34155_td.html; +echo ' writing array for 34156 '; + node makeTDcells2.js 34156 > static2/34156_td.html; +echo ' writing array for 34157 '; + node makeTDcells2.js 34157 > static2/34157_td.html; +echo ' writing array for 34158 '; + node makeTDcells2.js 34158 > static2/34158_td.html; +echo ' writing array for 34159 '; + node makeTDcells2.js 34159 > static2/34159_td.html; +echo ' writing array for 34160 '; + node makeTDcells2.js 34160 > static2/34160_td.html; +echo ' writing array for 34161 '; + node makeTDcells2.js 34161 > static2/34161_td.html; +echo ' writing array for 34162 '; + node makeTDcells2.js 34162 > static2/34162_td.html; +echo ' writing array for 34163 '; + node makeTDcells2.js 34163 > static2/34163_td.html; +echo ' writing array for 34164 '; + node makeTDcells2.js 34164 > static2/34164_td.html; +echo ' writing array for 34165 '; + node makeTDcells2.js 34165 > static2/34165_td.html; +echo ' writing array for 34166 '; + node makeTDcells2.js 34166 > static2/34166_td.html; +echo ' writing array for 34167 '; + node makeTDcells2.js 34167 > static2/34167_td.html; +echo ' writing array for 34168 '; + node makeTDcells2.js 34168 > static2/34168_td.html; +echo ' writing array for 34169 '; + node makeTDcells2.js 34169 > static2/34169_td.html; +echo ' writing array for 34170 '; + node makeTDcells2.js 34170 > static2/34170_td.html; +echo ' writing array for 34171 '; + node makeTDcells2.js 34171 > static2/34171_td.html; +echo ' writing array for 34172 '; + node makeTDcells2.js 34172 > static2/34172_td.html; +echo ' writing array for 34173 '; + node makeTDcells2.js 34173 > static2/34173_td.html; +echo ' writing array for 34174 '; + node makeTDcells2.js 34174 > static2/34174_td.html; +echo ' writing array for 34175 '; + node makeTDcells2.js 34175 > static2/34175_td.html; +echo ' writing array for 34176 '; + node makeTDcells2.js 34176 > static2/34176_td.html; +echo ' writing array for 34177 '; + node makeTDcells2.js 34177 > static2/34177_td.html; +echo ' writing array for 34178 '; + node makeTDcells2.js 34178 > static2/34178_td.html; +echo ' writing array for 34179 '; + node makeTDcells2.js 34179 > static2/34179_td.html; +echo ' writing array for 34180 '; + node makeTDcells2.js 34180 > static2/34180_td.html; +echo ' writing array for 34181 '; + node makeTDcells2.js 34181 > static2/34181_td.html; +echo ' writing array for 34182 '; + node makeTDcells2.js 34182 > static2/34182_td.html; +echo ' writing array for 34183 '; + node makeTDcells2.js 34183 > static2/34183_td.html; +echo ' writing array for 34184 '; + node makeTDcells2.js 34184 > static2/34184_td.html; +echo ' writing array for 34185 '; + node makeTDcells2.js 34185 > static2/34185_td.html; +echo ' writing array for 34186 '; + node makeTDcells2.js 34186 > static2/34186_td.html; +echo ' writing array for 34187 '; + node makeTDcells2.js 34187 > static2/34187_td.html; +echo ' writing array for 34188 '; + node makeTDcells2.js 34188 > static2/34188_td.html; +echo ' writing array for 34189 '; + node makeTDcells2.js 34189 > static2/34189_td.html; +echo ' writing array for 34190 '; + node makeTDcells2.js 34190 > static2/34190_td.html; +echo ' writing array for 34191 '; + node makeTDcells2.js 34191 > static2/34191_td.html; +echo ' writing array for 34192 '; + node makeTDcells2.js 34192 > static2/34192_td.html; +echo ' writing array for 34193 '; + node makeTDcells2.js 34193 > static2/34193_td.html; +echo ' writing array for 34194 '; + node makeTDcells2.js 34194 > static2/34194_td.html; +echo ' writing array for 34195 '; + node makeTDcells2.js 34195 > static2/34195_td.html; +echo ' writing array for 34196 '; + node makeTDcells2.js 34196 > static2/34196_td.html; +echo ' writing array for 34197 '; + node makeTDcells2.js 34197 > static2/34197_td.html; +echo ' writing array for 34198 '; + node makeTDcells2.js 34198 > static2/34198_td.html; +echo ' writing array for 34199 '; + node makeTDcells2.js 34199 > static2/34199_td.html; +echo ' writing array for 34200 '; + node makeTDcells2.js 34200 > static2/34200_td.html; +echo ' writing array for 34201 '; + node makeTDcells2.js 34201 > static2/34201_td.html; +echo ' writing array for 34202 '; + node makeTDcells2.js 34202 > static2/34202_td.html; +echo ' writing array for 34203 '; + node makeTDcells2.js 34203 > static2/34203_td.html; +echo ' writing array for 34204 '; + node makeTDcells2.js 34204 > static2/34204_td.html; +echo ' writing array for 34205 '; + node makeTDcells2.js 34205 > static2/34205_td.html; +echo ' writing array for 34206 '; + node makeTDcells2.js 34206 > static2/34206_td.html; +echo ' writing array for 34207 '; + node makeTDcells2.js 34207 > static2/34207_td.html; +echo ' writing array for 34208 '; + node makeTDcells2.js 34208 > static2/34208_td.html; +echo ' writing array for 34209 '; + node makeTDcells2.js 34209 > static2/34209_td.html; +echo ' writing array for 34210 '; + node makeTDcells2.js 34210 > static2/34210_td.html; +echo ' writing array for 34211 '; + node makeTDcells2.js 34211 > static2/34211_td.html; +echo ' writing array for 34212 '; + node makeTDcells2.js 34212 > static2/34212_td.html; +echo ' writing array for 34213 '; + node makeTDcells2.js 34213 > static2/34213_td.html; +echo ' writing array for 34214 '; + node makeTDcells2.js 34214 > static2/34214_td.html; +echo ' writing array for 34215 '; + node makeTDcells2.js 34215 > static2/34215_td.html; +echo ' writing array for 34216 '; + node makeTDcells2.js 34216 > static2/34216_td.html; +echo ' writing array for 34217 '; + node makeTDcells2.js 34217 > static2/34217_td.html; +echo ' writing array for 34218 '; + node makeTDcells2.js 34218 > static2/34218_td.html; +echo ' writing array for 34219 '; + node makeTDcells2.js 34219 > static2/34219_td.html; +echo ' writing array for 34220 '; + node makeTDcells2.js 34220 > static2/34220_td.html; +echo ' writing array for 34221 '; + node makeTDcells2.js 34221 > static2/34221_td.html; +echo ' writing array for 34222 '; + node makeTDcells2.js 34222 > static2/34222_td.html; +echo ' writing array for 34223 '; + node makeTDcells2.js 34223 > static2/34223_td.html; +echo ' writing array for 34224 '; + node makeTDcells2.js 34224 > static2/34224_td.html; +echo ' writing array for 34225 '; + node makeTDcells2.js 34225 > static2/34225_td.html; +echo ' writing array for 34226 '; + node makeTDcells2.js 34226 > static2/34226_td.html; +echo ' writing array for 34227 '; + node makeTDcells2.js 34227 > static2/34227_td.html; +echo ' writing array for 34228 '; + node makeTDcells2.js 34228 > static2/34228_td.html; +echo ' writing array for 34229 '; + node makeTDcells2.js 34229 > static2/34229_td.html; +echo ' writing array for 34230 '; + node makeTDcells2.js 34230 > static2/34230_td.html; +echo ' writing array for 34231 '; + node makeTDcells2.js 34231 > static2/34231_td.html; +echo ' writing array for 34232 '; + node makeTDcells2.js 34232 > static2/34232_td.html; +echo ' writing array for 34233 '; + node makeTDcells2.js 34233 > static2/34233_td.html; +echo ' writing array for 34234 '; + node makeTDcells2.js 34234 > static2/34234_td.html; +echo ' writing array for 34235 '; + node makeTDcells2.js 34235 > static2/34235_td.html; +echo ' writing array for 34236 '; + node makeTDcells2.js 34236 > static2/34236_td.html; +echo ' writing array for 34237 '; + node makeTDcells2.js 34237 > static2/34237_td.html; +echo ' writing array for 34238 '; + node makeTDcells2.js 34238 > static2/34238_td.html; +echo ' writing array for 34239 '; + node makeTDcells2.js 34239 > static2/34239_td.html; +echo ' writing array for 34240 '; + node makeTDcells2.js 34240 > static2/34240_td.html; +echo ' writing array for 34241 '; + node makeTDcells2.js 34241 > static2/34241_td.html; +echo ' writing array for 34242 '; + node makeTDcells2.js 34242 > static2/34242_td.html; +echo ' writing array for 34243 '; + node makeTDcells2.js 34243 > static2/34243_td.html; +echo ' writing array for 34244 '; + node makeTDcells2.js 34244 > static2/34244_td.html; +echo ' writing array for 34245 '; + node makeTDcells2.js 34245 > static2/34245_td.html; +echo ' writing array for 34246 '; + node makeTDcells2.js 34246 > static2/34246_td.html; +echo ' writing array for 34247 '; + node makeTDcells2.js 34247 > static2/34247_td.html; +echo ' writing array for 34248 '; + node makeTDcells2.js 34248 > static2/34248_td.html; +echo ' writing array for 34249 '; + node makeTDcells2.js 34249 > static2/34249_td.html; +echo ' writing array for 34250 '; + node makeTDcells2.js 34250 > static2/34250_td.html; +echo ' writing array for 34251 '; + node makeTDcells2.js 34251 > static2/34251_td.html; +echo ' writing array for 34252 '; + node makeTDcells2.js 34252 > static2/34252_td.html; +echo ' writing array for 34253 '; + node makeTDcells2.js 34253 > static2/34253_td.html; +echo ' writing array for 34254 '; + node makeTDcells2.js 34254 > static2/34254_td.html; +echo ' writing array for 34255 '; + node makeTDcells2.js 34255 > static2/34255_td.html; +echo ' writing array for 34256 '; + node makeTDcells2.js 34256 > static2/34256_td.html; +echo ' writing array for 34257 '; + node makeTDcells2.js 34257 > static2/34257_td.html; +echo ' writing array for 34258 '; + node makeTDcells2.js 34258 > static2/34258_td.html; +echo ' writing array for 34259 '; + node makeTDcells2.js 34259 > static2/34259_td.html; +echo ' writing array for 34260 '; + node makeTDcells2.js 34260 > static2/34260_td.html; +echo ' writing array for 34261 '; + node makeTDcells2.js 34261 > static2/34261_td.html; +echo ' writing array for 34262 '; + node makeTDcells2.js 34262 > static2/34262_td.html; +echo ' writing array for 34263 '; + node makeTDcells2.js 34263 > static2/34263_td.html; +echo ' writing array for 34264 '; + node makeTDcells2.js 34264 > static2/34264_td.html; +echo ' writing array for 34265 '; + node makeTDcells2.js 34265 > static2/34265_td.html; +echo ' writing array for 34266 '; + node makeTDcells2.js 34266 > static2/34266_td.html; +echo ' writing array for 34267 '; + node makeTDcells2.js 34267 > static2/34267_td.html; +echo ' writing array for 34268 '; + node makeTDcells2.js 34268 > static2/34268_td.html; +echo ' writing array for 34269 '; + node makeTDcells2.js 34269 > static2/34269_td.html; +echo ' writing array for 34270 '; + node makeTDcells2.js 34270 > static2/34270_td.html; +echo ' writing array for 34271 '; + node makeTDcells2.js 34271 > static2/34271_td.html; +echo ' writing array for 34272 '; + node makeTDcells2.js 34272 > static2/34272_td.html; +echo ' writing array for 34273 '; + node makeTDcells2.js 34273 > static2/34273_td.html; +echo ' writing array for 34275 '; + node makeTDcells2.js 34275 > static2/34275_td.html; +echo ' writing array for 34276 '; + node makeTDcells2.js 34276 > static2/34276_td.html; +echo ' writing array for 34278 '; + node makeTDcells2.js 34278 > static2/34278_td.html; +echo ' writing array for 34279 '; + node makeTDcells2.js 34279 > static2/34279_td.html; +echo ' writing array for 34280 '; + node makeTDcells2.js 34280 > static2/34280_td.html; +echo ' writing array for 34281 '; + node makeTDcells2.js 34281 > static2/34281_td.html; +echo ' writing array for 34282 '; + node makeTDcells2.js 34282 > static2/34282_td.html; +echo ' writing array for 34283 '; + node makeTDcells2.js 34283 > static2/34283_td.html; +echo ' writing array for 34284 '; + node makeTDcells2.js 34284 > static2/34284_td.html; +echo ' writing array for 34285 '; + node makeTDcells2.js 34285 > static2/34285_td.html; +echo ' writing array for 34286 '; + node makeTDcells2.js 34286 > static2/34286_td.html; +echo ' writing array for 34287 '; + node makeTDcells2.js 34287 > static2/34287_td.html; +echo ' writing array for 34288 '; + node makeTDcells2.js 34288 > static2/34288_td.html; +echo ' writing array for 34289 '; + node makeTDcells2.js 34289 > static2/34289_td.html; +echo ' writing array for 34290 '; + node makeTDcells2.js 34290 > static2/34290_td.html; +echo ' writing array for 34291 '; + node makeTDcells2.js 34291 > static2/34291_td.html; +echo ' writing array for 34292 '; + node makeTDcells2.js 34292 > static2/34292_td.html; +echo ' writing array for 34293 '; + node makeTDcells2.js 34293 > static2/34293_td.html; +echo ' writing array for 34294 '; + node makeTDcells2.js 34294 > static2/34294_td.html; +echo ' writing array for 34295 '; + node makeTDcells2.js 34295 > static2/34295_td.html; +echo ' writing array for 34296 '; + node makeTDcells2.js 34296 > static2/34296_td.html; +echo ' writing array for 34297 '; + node makeTDcells2.js 34297 > static2/34297_td.html; +echo ' writing array for 34298 '; + node makeTDcells2.js 34298 > static2/34298_td.html; +echo ' writing array for 34299 '; + node makeTDcells2.js 34299 > static2/34299_td.html; +echo ' writing array for 34300 '; + node makeTDcells2.js 34300 > static2/34300_td.html; +echo ' writing array for 34301 '; + node makeTDcells2.js 34301 > static2/34301_td.html; +echo ' writing array for 34302 '; + node makeTDcells2.js 34302 > static2/34302_td.html; +echo ' writing array for 34303 '; + node makeTDcells2.js 34303 > static2/34303_td.html; +echo ' writing array for 34304 '; + node makeTDcells2.js 34304 > static2/34304_td.html; +echo ' writing array for 34306 '; + node makeTDcells2.js 34306 > static2/34306_td.html; +echo ' writing array for 34307 '; + node makeTDcells2.js 34307 > static2/34307_td.html; +echo ' writing array for 34308 '; + node makeTDcells2.js 34308 > static2/34308_td.html; +echo ' writing array for 34309 '; + node makeTDcells2.js 34309 > static2/34309_td.html; +echo ' writing array for 34310 '; + node makeTDcells2.js 34310 > static2/34310_td.html; +echo ' writing array for 34311 '; + node makeTDcells2.js 34311 > static2/34311_td.html; +echo ' writing array for 34312 '; + node makeTDcells2.js 34312 > static2/34312_td.html; +echo ' writing array for 34313 '; + node makeTDcells2.js 34313 > static2/34313_td.html; +echo ' writing array for 34314 '; + node makeTDcells2.js 34314 > static2/34314_td.html; +echo ' writing array for 34315 '; + node makeTDcells2.js 34315 > static2/34315_td.html; +echo ' writing array for 34316 '; + node makeTDcells2.js 34316 > static2/34316_td.html; +echo ' writing array for 34317 '; + node makeTDcells2.js 34317 > static2/34317_td.html; +echo ' writing array for 34318 '; + node makeTDcells2.js 34318 > static2/34318_td.html; +echo ' writing array for 34319 '; + node makeTDcells2.js 34319 > static2/34319_td.html; +echo ' writing array for 34320 '; + node makeTDcells2.js 34320 > static2/34320_td.html; +echo ' writing array for 34321 '; + node makeTDcells2.js 34321 > static2/34321_td.html; +echo ' writing array for 34322 '; + node makeTDcells2.js 34322 > static2/34322_td.html; +echo ' writing array for 34323 '; + node makeTDcells2.js 34323 > static2/34323_td.html; +echo ' writing array for 34324 '; + node makeTDcells2.js 34324 > static2/34324_td.html; +echo ' writing array for 34325 '; + node makeTDcells2.js 34325 > static2/34325_td.html; +echo ' writing array for 34326 '; + node makeTDcells2.js 34326 > static2/34326_td.html; +echo ' writing array for 34327 '; + node makeTDcells2.js 34327 > static2/34327_td.html; +echo ' writing array for 34328 '; + node makeTDcells2.js 34328 > static2/34328_td.html; +echo ' writing array for 34329 '; + node makeTDcells2.js 34329 > static2/34329_td.html; +echo ' writing array for 34330 '; + node makeTDcells2.js 34330 > static2/34330_td.html; +echo ' writing array for 34331 '; + node makeTDcells2.js 34331 > static2/34331_td.html; +echo ' writing array for 34332 '; + node makeTDcells2.js 34332 > static2/34332_td.html; +echo ' writing array for 34333 '; + node makeTDcells2.js 34333 > static2/34333_td.html; +echo ' writing array for 34334 '; + node makeTDcells2.js 34334 > static2/34334_td.html; +echo ' writing array for 34335 '; + node makeTDcells2.js 34335 > static2/34335_td.html; +echo ' writing array for 34336 '; + node makeTDcells2.js 34336 > static2/34336_td.html; +echo ' writing array for 34337 '; + node makeTDcells2.js 34337 > static2/34337_td.html; +echo ' writing array for 34338 '; + node makeTDcells2.js 34338 > static2/34338_td.html; +echo ' writing array for 34339 '; + node makeTDcells2.js 34339 > static2/34339_td.html; +echo ' writing array for 34340 '; + node makeTDcells2.js 34340 > static2/34340_td.html; +echo ' writing array for 34341 '; + node makeTDcells2.js 34341 > static2/34341_td.html; +echo ' writing array for 34342 '; + node makeTDcells2.js 34342 > static2/34342_td.html; +echo ' writing array for 34343 '; + node makeTDcells2.js 34343 > static2/34343_td.html; +echo ' writing array for 34344 '; + node makeTDcells2.js 34344 > static2/34344_td.html; +echo ' writing array for 34345 '; + node makeTDcells2.js 34345 > static2/34345_td.html; +echo ' writing array for 34346 '; + node makeTDcells2.js 34346 > static2/34346_td.html; +echo ' writing array for 34347 '; + node makeTDcells2.js 34347 > static2/34347_td.html; +echo ' writing array for 34348 '; + node makeTDcells2.js 34348 > static2/34348_td.html; +echo ' writing array for 34349 '; + node makeTDcells2.js 34349 > static2/34349_td.html; +echo ' writing array for 34350 '; + node makeTDcells2.js 34350 > static2/34350_td.html; +echo ' writing array for 34351 '; + node makeTDcells2.js 34351 > static2/34351_td.html; +echo ' writing array for 34352 '; + node makeTDcells2.js 34352 > static2/34352_td.html; +echo ' writing array for 34354 '; + node makeTDcells2.js 34354 > static2/34354_td.html; +echo ' writing array for 34355 '; + node makeTDcells2.js 34355 > static2/34355_td.html; +echo ' writing array for 34356 '; + node makeTDcells2.js 34356 > static2/34356_td.html; +echo ' writing array for 34357 '; + node makeTDcells2.js 34357 > static2/34357_td.html; +echo ' writing array for 34358 '; + node makeTDcells2.js 34358 > static2/34358_td.html; +echo ' writing array for 34359 '; + node makeTDcells2.js 34359 > static2/34359_td.html; +echo ' writing array for 34360 '; + node makeTDcells2.js 34360 > static2/34360_td.html; +echo ' writing array for 34361 '; + node makeTDcells2.js 34361 > static2/34361_td.html; +echo ' writing array for 34362 '; + node makeTDcells2.js 34362 > static2/34362_td.html; +echo ' writing array for 34363 '; + node makeTDcells2.js 34363 > static2/34363_td.html; +echo ' writing array for 34364 '; + node makeTDcells2.js 34364 > static2/34364_td.html; +echo ' writing array for 34365 '; + node makeTDcells2.js 34365 > static2/34365_td.html; +echo ' writing array for 34367 '; + node makeTDcells2.js 34367 > static2/34367_td.html; +echo ' writing array for 34368 '; + node makeTDcells2.js 34368 > static2/34368_td.html; +echo ' writing array for 34370 '; + node makeTDcells2.js 34370 > static2/34370_td.html; +echo ' writing array for 34371 '; + node makeTDcells2.js 34371 > static2/34371_td.html; +echo ' writing array for 34372 '; + node makeTDcells2.js 34372 > static2/34372_td.html; +echo ' writing array for 34373 '; + node makeTDcells2.js 34373 > static2/34373_td.html; +echo ' writing array for 34374 '; + node makeTDcells2.js 34374 > static2/34374_td.html; +echo ' writing array for 34376 '; + node makeTDcells2.js 34376 > static2/34376_td.html; +echo ' writing array for 34377 '; + node makeTDcells2.js 34377 > static2/34377_td.html; +echo ' writing array for 34378 '; + node makeTDcells2.js 34378 > static2/34378_td.html; +echo ' writing array for 34379 '; + node makeTDcells2.js 34379 > static2/34379_td.html; +echo ' writing array for 34380 '; + node makeTDcells2.js 34380 > static2/34380_td.html; +echo ' writing array for 34381 '; + node makeTDcells2.js 34381 > static2/34381_td.html; +echo ' writing array for 34382 '; + node makeTDcells2.js 34382 > static2/34382_td.html; +echo ' writing array for 34384 '; + node makeTDcells2.js 34384 > static2/34384_td.html; +echo ' writing array for 34385 '; + node makeTDcells2.js 34385 > static2/34385_td.html; +echo ' writing array for 34386 '; + node makeTDcells2.js 34386 > static2/34386_td.html; +echo ' writing array for 34387 '; + node makeTDcells2.js 34387 > static2/34387_td.html; +echo ' writing array for 34388 '; + node makeTDcells2.js 34388 > static2/34388_td.html; +echo ' writing array for 34389 '; + node makeTDcells2.js 34389 > static2/34389_td.html; +echo ' writing array for 34390 '; + node makeTDcells2.js 34390 > static2/34390_td.html; +echo ' writing array for 34391 '; + node makeTDcells2.js 34391 > static2/34391_td.html; +echo ' writing array for 34392 '; + node makeTDcells2.js 34392 > static2/34392_td.html; +echo ' writing array for 34393 '; + node makeTDcells2.js 34393 > static2/34393_td.html; +echo ' writing array for 34394 '; + node makeTDcells2.js 34394 > static2/34394_td.html; +echo ' writing array for 34395 '; + node makeTDcells2.js 34395 > static2/34395_td.html; +echo ' writing array for 34396 '; + node makeTDcells2.js 34396 > static2/34396_td.html; +echo ' writing array for 34397 '; + node makeTDcells2.js 34397 > static2/34397_td.html; +echo ' writing array for 34398 '; + node makeTDcells2.js 34398 > static2/34398_td.html; +echo ' writing array for 34399 '; + node makeTDcells2.js 34399 > static2/34399_td.html; +echo ' writing array for 34400 '; + node makeTDcells2.js 34400 > static2/34400_td.html; +echo ' writing array for 34401 '; + node makeTDcells2.js 34401 > static2/34401_td.html; +echo ' writing array for 34402 '; + node makeTDcells2.js 34402 > static2/34402_td.html; +echo ' writing array for 34403 '; + node makeTDcells2.js 34403 > static2/34403_td.html; +echo ' writing array for 34404 '; + node makeTDcells2.js 34404 > static2/34404_td.html; +echo ' writing array for 34405 '; + node makeTDcells2.js 34405 > static2/34405_td.html; +echo ' writing array for 34406 '; + node makeTDcells2.js 34406 > static2/34406_td.html; +echo ' writing array for 34407 '; + node makeTDcells2.js 34407 > static2/34407_td.html; +echo ' writing array for 34408 '; + node makeTDcells2.js 34408 > static2/34408_td.html; +echo ' writing array for 34409 '; + node makeTDcells2.js 34409 > static2/34409_td.html; +echo ' writing array for 34410 '; + node makeTDcells2.js 34410 > static2/34410_td.html; +echo ' writing array for 34411 '; + node makeTDcells2.js 34411 > static2/34411_td.html; +echo ' writing array for 34412 '; + node makeTDcells2.js 34412 > static2/34412_td.html; +echo ' writing array for 34413 '; + node makeTDcells2.js 34413 > static2/34413_td.html; +echo ' writing array for 34414 '; + node makeTDcells2.js 34414 > static2/34414_td.html; +echo ' writing array for 34415 '; + node makeTDcells2.js 34415 > static2/34415_td.html; +echo ' writing array for 34416 '; + node makeTDcells2.js 34416 > static2/34416_td.html; +echo ' writing array for 34417 '; + node makeTDcells2.js 34417 > static2/34417_td.html; +echo ' writing array for 34418 '; + node makeTDcells2.js 34418 > static2/34418_td.html; +echo ' writing array for 34419 '; + node makeTDcells2.js 34419 > static2/34419_td.html; +echo ' writing array for 34420 '; + node makeTDcells2.js 34420 > static2/34420_td.html; +echo ' writing array for 34421 '; + node makeTDcells2.js 34421 > static2/34421_td.html; +echo ' writing array for 34422 '; + node makeTDcells2.js 34422 > static2/34422_td.html; +echo ' writing array for 34423 '; + node makeTDcells2.js 34423 > static2/34423_td.html; +echo ' writing array for 34424 '; + node makeTDcells2.js 34424 > static2/34424_td.html; +echo ' writing array for 34426 '; + node makeTDcells2.js 34426 > static2/34426_td.html; +echo ' writing array for 34427 '; + node makeTDcells2.js 34427 > static2/34427_td.html; +echo ' writing array for 34428 '; + node makeTDcells2.js 34428 > static2/34428_td.html; +echo ' writing array for 34429 '; + node makeTDcells2.js 34429 > static2/34429_td.html; +echo ' writing array for 34430 '; + node makeTDcells2.js 34430 > static2/34430_td.html; +echo ' writing array for 34431 '; + node makeTDcells2.js 34431 > static2/34431_td.html; +echo ' writing array for 34432 '; + node makeTDcells2.js 34432 > static2/34432_td.html; +echo ' writing array for 34433 '; + node makeTDcells2.js 34433 > static2/34433_td.html; +echo ' writing array for 34434 '; + node makeTDcells2.js 34434 > static2/34434_td.html; +echo ' writing array for 34435 '; + node makeTDcells2.js 34435 > static2/34435_td.html; +echo ' writing array for 34436 '; + node makeTDcells2.js 34436 > static2/34436_td.html; +echo ' writing array for 34437 '; + node makeTDcells2.js 34437 > static2/34437_td.html; +echo ' writing array for 34438 '; + node makeTDcells2.js 34438 > static2/34438_td.html; +echo ' writing array for 34439 '; + node makeTDcells2.js 34439 > static2/34439_td.html; +echo ' writing array for 34440 '; + node makeTDcells2.js 34440 > static2/34440_td.html; +echo ' writing array for 34441 '; + node makeTDcells2.js 34441 > static2/34441_td.html; +echo ' writing array for 34442 '; + node makeTDcells2.js 34442 > static2/34442_td.html; +echo ' writing array for 34443 '; + node makeTDcells2.js 34443 > static2/34443_td.html; +echo ' writing array for 34445 '; + node makeTDcells2.js 34445 > static2/34445_td.html; +echo ' writing array for 34446 '; + node makeTDcells2.js 34446 > static2/34446_td.html; +echo ' writing array for 34447 '; + node makeTDcells2.js 34447 > static2/34447_td.html; +echo ' writing array for 34448 '; + node makeTDcells2.js 34448 > static2/34448_td.html; +echo ' writing array for 34449 '; + node makeTDcells2.js 34449 > static2/34449_td.html; +echo ' writing array for 34450 '; + node makeTDcells2.js 34450 > static2/34450_td.html; +echo ' writing array for 34451 '; + node makeTDcells2.js 34451 > static2/34451_td.html; +echo ' writing array for 34452 '; + node makeTDcells2.js 34452 > static2/34452_td.html; +echo ' writing array for 34453 '; + node makeTDcells2.js 34453 > static2/34453_td.html; +echo ' writing array for 34454 '; + node makeTDcells2.js 34454 > static2/34454_td.html; +echo ' writing array for 34455 '; + node makeTDcells2.js 34455 > static2/34455_td.html; +echo ' writing array for 34456 '; + node makeTDcells2.js 34456 > static2/34456_td.html; +echo ' writing array for 34457 '; + node makeTDcells2.js 34457 > static2/34457_td.html; +echo ' writing array for 34458 '; + node makeTDcells2.js 34458 > static2/34458_td.html; +echo ' writing array for 34459 '; + node makeTDcells2.js 34459 > static2/34459_td.html; +echo ' writing array for 34460 '; + node makeTDcells2.js 34460 > static2/34460_td.html; +echo ' writing array for 34461 '; + node makeTDcells2.js 34461 > static2/34461_td.html; +echo ' writing array for 34462 '; + node makeTDcells2.js 34462 > static2/34462_td.html; +echo ' writing array for 34463 '; + node makeTDcells2.js 34463 > static2/34463_td.html; +echo ' writing array for 34464 '; + node makeTDcells2.js 34464 > static2/34464_td.html; +echo ' writing array for 34465 '; + node makeTDcells2.js 34465 > static2/34465_td.html; +echo ' writing array for 34466 '; + node makeTDcells2.js 34466 > static2/34466_td.html; +echo ' writing array for 34467 '; + node makeTDcells2.js 34467 > static2/34467_td.html; +echo ' writing array for 34468 '; + node makeTDcells2.js 34468 > static2/34468_td.html; +echo ' writing array for 34469 '; + node makeTDcells2.js 34469 > static2/34469_td.html; +echo ' writing array for 34470 '; + node makeTDcells2.js 34470 > static2/34470_td.html; +echo ' writing array for 34471 '; + node makeTDcells2.js 34471 > static2/34471_td.html; +echo ' writing array for 34472 '; + node makeTDcells2.js 34472 > static2/34472_td.html; +echo ' writing array for 34474 '; + node makeTDcells2.js 34474 > static2/34474_td.html; +echo ' writing array for 34475 '; + node makeTDcells2.js 34475 > static2/34475_td.html; +echo ' writing array for 34476 '; + node makeTDcells2.js 34476 > static2/34476_td.html; +echo ' writing array for 34477 '; + node makeTDcells2.js 34477 > static2/34477_td.html; +echo ' writing array for 34478 '; + node makeTDcells2.js 34478 > static2/34478_td.html; +echo ' writing array for 34479 '; + node makeTDcells2.js 34479 > static2/34479_td.html; +echo ' writing array for 34480 '; + node makeTDcells2.js 34480 > static2/34480_td.html; +echo ' writing array for 34481 '; + node makeTDcells2.js 34481 > static2/34481_td.html; +echo ' writing array for 34482 '; + node makeTDcells2.js 34482 > static2/34482_td.html; +echo ' writing array for 34483 '; + node makeTDcells2.js 34483 > static2/34483_td.html; +echo ' writing array for 34484 '; + node makeTDcells2.js 34484 > static2/34484_td.html; +echo ' writing array for 34485 '; + node makeTDcells2.js 34485 > static2/34485_td.html; +echo ' writing array for 34486 '; + node makeTDcells2.js 34486 > static2/34486_td.html; +echo ' writing array for 34487 '; + node makeTDcells2.js 34487 > static2/34487_td.html; +echo ' writing array for 34488 '; + node makeTDcells2.js 34488 > static2/34488_td.html; +echo ' writing array for 34489 '; + node makeTDcells2.js 34489 > static2/34489_td.html; +echo ' writing array for 34490 '; + node makeTDcells2.js 34490 > static2/34490_td.html; +echo ' writing array for 34491 '; + node makeTDcells2.js 34491 > static2/34491_td.html; +echo ' writing array for 34492 '; + node makeTDcells2.js 34492 > static2/34492_td.html; +echo ' writing array for 34493 '; + node makeTDcells2.js 34493 > static2/34493_td.html; +echo ' writing array for 34494 '; + node makeTDcells2.js 34494 > static2/34494_td.html; +echo ' writing array for 34495 '; + node makeTDcells2.js 34495 > static2/34495_td.html; +echo ' writing array for 34496 '; + node makeTDcells2.js 34496 > static2/34496_td.html; +echo ' writing array for 34497 '; + node makeTDcells2.js 34497 > static2/34497_td.html; +echo ' writing array for 34498 '; + node makeTDcells2.js 34498 > static2/34498_td.html; +echo ' writing array for 34499 '; + node makeTDcells2.js 34499 > static2/34499_td.html; +echo ' writing array for 34500 '; + node makeTDcells2.js 34500 > static2/34500_td.html; +echo ' writing array for 34501 '; + node makeTDcells2.js 34501 > static2/34501_td.html; +echo ' writing array for 34502 '; + node makeTDcells2.js 34502 > static2/34502_td.html; +echo ' writing array for 34503 '; + node makeTDcells2.js 34503 > static2/34503_td.html; +echo ' writing array for 34504 '; + node makeTDcells2.js 34504 > static2/34504_td.html; +echo ' writing array for 34505 '; + node makeTDcells2.js 34505 > static2/34505_td.html; +echo ' writing array for 34506 '; + node makeTDcells2.js 34506 > static2/34506_td.html; +echo ' writing array for 34507 '; + node makeTDcells2.js 34507 > static2/34507_td.html; +echo ' writing array for 34508 '; + node makeTDcells2.js 34508 > static2/34508_td.html; +echo ' writing array for 34509 '; + node makeTDcells2.js 34509 > static2/34509_td.html; +echo ' writing array for 34510 '; + node makeTDcells2.js 34510 > static2/34510_td.html; +echo ' writing array for 34511 '; + node makeTDcells2.js 34511 > static2/34511_td.html; +echo ' writing array for 34512 '; + node makeTDcells2.js 34512 > static2/34512_td.html; +echo ' writing array for 34513 '; + node makeTDcells2.js 34513 > static2/34513_td.html; +echo ' writing array for 34514 '; + node makeTDcells2.js 34514 > static2/34514_td.html; +echo ' writing array for 34515 '; + node makeTDcells2.js 34515 > static2/34515_td.html; +echo ' writing array for 34517 '; + node makeTDcells2.js 34517 > static2/34517_td.html; +echo ' writing array for 34518 '; + node makeTDcells2.js 34518 > static2/34518_td.html; +echo ' writing array for 34519 '; + node makeTDcells2.js 34519 > static2/34519_td.html; +echo ' writing array for 34520 '; + node makeTDcells2.js 34520 > static2/34520_td.html; +echo ' writing array for 34521 '; + node makeTDcells2.js 34521 > static2/34521_td.html; +echo ' writing array for 34522 '; + node makeTDcells2.js 34522 > static2/34522_td.html; +echo ' writing array for 34523 '; + node makeTDcells2.js 34523 > static2/34523_td.html; +echo ' writing array for 34524 '; + node makeTDcells2.js 34524 > static2/34524_td.html; +echo ' writing array for 34525 '; + node makeTDcells2.js 34525 > static2/34525_td.html; +echo ' writing array for 34526 '; + node makeTDcells2.js 34526 > static2/34526_td.html; +echo ' writing array for 34529 '; + node makeTDcells2.js 34529 > static2/34529_td.html; +echo ' writing array for 34530 '; + node makeTDcells2.js 34530 > static2/34530_td.html; +echo ' writing array for 34531 '; + node makeTDcells2.js 34531 > static2/34531_td.html; +echo ' writing array for 34532 '; + node makeTDcells2.js 34532 > static2/34532_td.html; +echo ' writing array for 34533 '; + node makeTDcells2.js 34533 > static2/34533_td.html; +echo ' writing array for 34534 '; + node makeTDcells2.js 34534 > static2/34534_td.html; +echo ' writing array for 34535 '; + node makeTDcells2.js 34535 > static2/34535_td.html; +echo ' writing array for 34536 '; + node makeTDcells2.js 34536 > static2/34536_td.html; +echo ' writing array for 34537 '; + node makeTDcells2.js 34537 > static2/34537_td.html; +echo ' writing array for 34538 '; + node makeTDcells2.js 34538 > static2/34538_td.html; +echo ' writing array for 34539 '; + node makeTDcells2.js 34539 > static2/34539_td.html; +echo ' writing array for 34540 '; + node makeTDcells2.js 34540 > static2/34540_td.html; +echo ' writing array for 34541 '; + node makeTDcells2.js 34541 > static2/34541_td.html; +echo ' writing array for 34542 '; + node makeTDcells2.js 34542 > static2/34542_td.html; +echo ' writing array for 34543 '; + node makeTDcells2.js 34543 > static2/34543_td.html; +echo ' writing array for 34544 '; + node makeTDcells2.js 34544 > static2/34544_td.html; +echo ' writing array for 34545 '; + node makeTDcells2.js 34545 > static2/34545_td.html; +echo ' writing array for 34546 '; + node makeTDcells2.js 34546 > static2/34546_td.html; +echo ' writing array for 34547 '; + node makeTDcells2.js 34547 > static2/34547_td.html; +echo ' writing array for 34548 '; + node makeTDcells2.js 34548 > static2/34548_td.html; +echo ' writing array for 34549 '; + node makeTDcells2.js 34549 > static2/34549_td.html; +echo ' writing array for 34550 '; + node makeTDcells2.js 34550 > static2/34550_td.html; +echo ' writing array for 34551 '; + node makeTDcells2.js 34551 > static2/34551_td.html; +echo ' writing array for 34552 '; + node makeTDcells2.js 34552 > static2/34552_td.html; +echo ' writing array for 34553 '; + node makeTDcells2.js 34553 > static2/34553_td.html; +echo ' writing array for 34554 '; + node makeTDcells2.js 34554 > static2/34554_td.html; +echo ' writing array for 34555 '; + node makeTDcells2.js 34555 > static2/34555_td.html; +echo ' writing array for 34556 '; + node makeTDcells2.js 34556 > static2/34556_td.html; +echo ' writing array for 34557 '; + node makeTDcells2.js 34557 > static2/34557_td.html; +echo ' writing array for 34558 '; + node makeTDcells2.js 34558 > static2/34558_td.html; +echo ' writing array for 34560 '; + node makeTDcells2.js 34560 > static2/34560_td.html; +echo ' writing array for 34561 '; + node makeTDcells2.js 34561 > static2/34561_td.html; +echo ' writing array for 34562 '; + node makeTDcells2.js 34562 > static2/34562_td.html; +echo ' writing array for 34563 '; + node makeTDcells2.js 34563 > static2/34563_td.html; +echo ' writing array for 34564 '; + node makeTDcells2.js 34564 > static2/34564_td.html; +echo ' writing array for 34565 '; + node makeTDcells2.js 34565 > static2/34565_td.html; +echo ' writing array for 34566 '; + node makeTDcells2.js 34566 > static2/34566_td.html; +echo ' writing array for 34567 '; + node makeTDcells2.js 34567 > static2/34567_td.html; +echo ' writing array for 34568 '; + node makeTDcells2.js 34568 > static2/34568_td.html; +echo ' writing array for 34569 '; + node makeTDcells2.js 34569 > static2/34569_td.html; +echo ' writing array for 34570 '; + node makeTDcells2.js 34570 > static2/34570_td.html; +echo ' writing array for 34571 '; + node makeTDcells2.js 34571 > static2/34571_td.html; +echo ' writing array for 34572 '; + node makeTDcells2.js 34572 > static2/34572_td.html; +echo ' writing array for 34573 '; + node makeTDcells2.js 34573 > static2/34573_td.html; +echo ' writing array for 34574 '; + node makeTDcells2.js 34574 > static2/34574_td.html; +echo ' writing array for 34575 '; + node makeTDcells2.js 34575 > static2/34575_td.html; +echo ' writing array for 34576 '; + node makeTDcells2.js 34576 > static2/34576_td.html; +echo ' writing array for 34577 '; + node makeTDcells2.js 34577 > static2/34577_td.html; +echo ' writing array for 34578 '; + node makeTDcells2.js 34578 > static2/34578_td.html; +echo ' writing array for 34579 '; + node makeTDcells2.js 34579 > static2/34579_td.html; +echo ' writing array for 34581 '; + node makeTDcells2.js 34581 > static2/34581_td.html; +echo ' writing array for 34582 '; + node makeTDcells2.js 34582 > static2/34582_td.html; +echo ' writing array for 34583 '; + node makeTDcells2.js 34583 > static2/34583_td.html; +echo ' writing array for 34584 '; + node makeTDcells2.js 34584 > static2/34584_td.html; +echo ' writing array for 34585 '; + node makeTDcells2.js 34585 > static2/34585_td.html; +echo ' writing array for 34586 '; + node makeTDcells2.js 34586 > static2/34586_td.html; +echo ' writing array for 34587 '; + node makeTDcells2.js 34587 > static2/34587_td.html; +echo ' writing array for 34588 '; + node makeTDcells2.js 34588 > static2/34588_td.html; +echo ' writing array for 34589 '; + node makeTDcells2.js 34589 > static2/34589_td.html; +echo ' writing array for 34590 '; + node makeTDcells2.js 34590 > static2/34590_td.html; +echo ' writing array for 34591 '; + node makeTDcells2.js 34591 > static2/34591_td.html; +echo ' writing array for 34592 '; + node makeTDcells2.js 34592 > static2/34592_td.html; +echo ' writing array for 34593 '; + node makeTDcells2.js 34593 > static2/34593_td.html; +echo ' writing array for 34594 '; + node makeTDcells2.js 34594 > static2/34594_td.html; +echo ' writing array for 34595 '; + node makeTDcells2.js 34595 > static2/34595_td.html; +echo ' writing array for 34596 '; + node makeTDcells2.js 34596 > static2/34596_td.html; +echo ' writing array for 34597 '; + node makeTDcells2.js 34597 > static2/34597_td.html; +echo ' writing array for 34598 '; + node makeTDcells2.js 34598 > static2/34598_td.html; +echo ' writing array for 34599 '; + node makeTDcells2.js 34599 > static2/34599_td.html; +echo ' writing array for 34600 '; + node makeTDcells2.js 34600 > static2/34600_td.html; +echo ' writing array for 34601 '; + node makeTDcells2.js 34601 > static2/34601_td.html; +echo ' writing array for 34602 '; + node makeTDcells2.js 34602 > static2/34602_td.html; +echo ' writing array for 34603 '; + node makeTDcells2.js 34603 > static2/34603_td.html; +echo ' writing array for 34604 '; + node makeTDcells2.js 34604 > static2/34604_td.html; +echo ' writing array for 34605 '; + node makeTDcells2.js 34605 > static2/34605_td.html; +echo ' writing array for 34606 '; + node makeTDcells2.js 34606 > static2/34606_td.html; +echo ' writing array for 34607 '; + node makeTDcells2.js 34607 > static2/34607_td.html; +echo ' writing array for 34608 '; + node makeTDcells2.js 34608 > static2/34608_td.html; +echo ' writing array for 34609 '; + node makeTDcells2.js 34609 > static2/34609_td.html; +echo ' writing array for 34610 '; + node makeTDcells2.js 34610 > static2/34610_td.html; +echo ' writing array for 34611 '; + node makeTDcells2.js 34611 > static2/34611_td.html; +echo ' writing array for 34612 '; + node makeTDcells2.js 34612 > static2/34612_td.html; +echo ' writing array for 34613 '; + node makeTDcells2.js 34613 > static2/34613_td.html; +echo ' writing array for 34614 '; + node makeTDcells2.js 34614 > static2/34614_td.html; +echo ' writing array for 34615 '; + node makeTDcells2.js 34615 > static2/34615_td.html; +echo ' writing array for 34616 '; + node makeTDcells2.js 34616 > static2/34616_td.html; +echo ' writing array for 34617 '; + node makeTDcells2.js 34617 > static2/34617_td.html; +echo ' writing array for 34618 '; + node makeTDcells2.js 34618 > static2/34618_td.html; +echo ' writing array for 34619 '; + node makeTDcells2.js 34619 > static2/34619_td.html; +echo ' writing array for 34620 '; + node makeTDcells2.js 34620 > static2/34620_td.html; +echo ' writing array for 34621 '; + node makeTDcells2.js 34621 > static2/34621_td.html; +echo ' writing array for 34623 '; + node makeTDcells2.js 34623 > static2/34623_td.html; +echo ' writing array for 34624 '; + node makeTDcells2.js 34624 > static2/34624_td.html; +echo ' writing array for 34625 '; + node makeTDcells2.js 34625 > static2/34625_td.html; +echo ' writing array for 34626 '; + node makeTDcells2.js 34626 > static2/34626_td.html; +echo ' writing array for 34627 '; + node makeTDcells2.js 34627 > static2/34627_td.html; +echo ' writing array for 34628 '; + node makeTDcells2.js 34628 > static2/34628_td.html; +echo ' writing array for 34629 '; + node makeTDcells2.js 34629 > static2/34629_td.html; +echo ' writing array for 34631 '; + node makeTDcells2.js 34631 > static2/34631_td.html; +echo ' writing array for 34632 '; + node makeTDcells2.js 34632 > static2/34632_td.html; +echo ' writing array for 34634 '; + node makeTDcells2.js 34634 > static2/34634_td.html; +echo ' writing array for 34636 '; + node makeTDcells2.js 34636 > static2/34636_td.html; +echo ' writing array for 34637 '; + node makeTDcells2.js 34637 > static2/34637_td.html; +echo ' writing array for 34638 '; + node makeTDcells2.js 34638 > static2/34638_td.html; +echo ' writing array for 34640 '; + node makeTDcells2.js 34640 > static2/34640_td.html; +echo ' writing array for 34641 '; + node makeTDcells2.js 34641 > static2/34641_td.html; +echo ' writing array for 34642 '; + node makeTDcells2.js 34642 > static2/34642_td.html; +echo ' writing array for 34643 '; + node makeTDcells2.js 34643 > static2/34643_td.html; +echo ' writing array for 34644 '; + node makeTDcells2.js 34644 > static2/34644_td.html; +echo ' writing array for 34646 '; + node makeTDcells2.js 34646 > static2/34646_td.html; +echo ' writing array for 34647 '; + node makeTDcells2.js 34647 > static2/34647_td.html; +echo ' writing array for 34648 '; + node makeTDcells2.js 34648 > static2/34648_td.html; +echo ' writing array for 34649 '; + node makeTDcells2.js 34649 > static2/34649_td.html; +echo ' writing array for 34650 '; + node makeTDcells2.js 34650 > static2/34650_td.html; +echo ' writing array for 34651 '; + node makeTDcells2.js 34651 > static2/34651_td.html; +echo ' writing array for 34652 '; + node makeTDcells2.js 34652 > static2/34652_td.html; +echo ' writing array for 34656 '; + node makeTDcells2.js 34656 > static2/34656_td.html; +echo ' writing array for 34657 '; + node makeTDcells2.js 34657 > static2/34657_td.html; +echo ' writing array for 34658 '; + node makeTDcells2.js 34658 > static2/34658_td.html; +echo ' writing array for 34659 '; + node makeTDcells2.js 34659 > static2/34659_td.html; +echo ' writing array for 34660 '; + node makeTDcells2.js 34660 > static2/34660_td.html; +echo ' writing array for 34661 '; + node makeTDcells2.js 34661 > static2/34661_td.html; +echo ' writing array for 34662 '; + node makeTDcells2.js 34662 > static2/34662_td.html; +echo ' writing array for 34663 '; + node makeTDcells2.js 34663 > static2/34663_td.html; +echo ' writing array for 34664 '; + node makeTDcells2.js 34664 > static2/34664_td.html; +echo ' writing array for 34665 '; + node makeTDcells2.js 34665 > static2/34665_td.html; +echo ' writing array for 34666 '; + node makeTDcells2.js 34666 > static2/34666_td.html; +echo ' writing array for 34667 '; + node makeTDcells2.js 34667 > static2/34667_td.html; +echo ' writing array for 34668 '; + node makeTDcells2.js 34668 > static2/34668_td.html; +echo ' writing array for 34670 '; + node makeTDcells2.js 34670 > static2/34670_td.html; +echo ' writing array for 34673 '; + node makeTDcells2.js 34673 > static2/34673_td.html; +echo ' writing array for 34674 '; + node makeTDcells2.js 34674 > static2/34674_td.html; +echo ' writing array for 34675 '; + node makeTDcells2.js 34675 > static2/34675_td.html; +echo ' writing array for 34676 '; + node makeTDcells2.js 34676 > static2/34676_td.html; +echo ' writing array for 34677 '; + node makeTDcells2.js 34677 > static2/34677_td.html; +echo ' writing array for 34678 '; + node makeTDcells2.js 34678 > static2/34678_td.html; +echo ' writing array for 34679 '; + node makeTDcells2.js 34679 > static2/34679_td.html; +echo ' writing array for 34680 '; + node makeTDcells2.js 34680 > static2/34680_td.html; +echo ' writing array for 34681 '; + node makeTDcells2.js 34681 > static2/34681_td.html; +echo ' writing array for 34682 '; + node makeTDcells2.js 34682 > static2/34682_td.html; +echo ' writing array for 34683 '; + node makeTDcells2.js 34683 > static2/34683_td.html; +echo ' writing array for 34684 '; + node makeTDcells2.js 34684 > static2/34684_td.html; +echo ' writing array for 34686 '; + node makeTDcells2.js 34686 > static2/34686_td.html; +echo ' writing array for 34687 '; + node makeTDcells2.js 34687 > static2/34687_td.html; +echo ' writing array for 34688 '; + node makeTDcells2.js 34688 > static2/34688_td.html; +echo ' writing array for 34689 '; + node makeTDcells2.js 34689 > static2/34689_td.html; +echo ' writing array for 34690 '; + node makeTDcells2.js 34690 > static2/34690_td.html; +echo ' writing array for 34691 '; + node makeTDcells2.js 34691 > static2/34691_td.html; +echo ' writing array for 34692 '; + node makeTDcells2.js 34692 > static2/34692_td.html; +echo ' writing array for 34693 '; + node makeTDcells2.js 34693 > static2/34693_td.html; +echo ' writing array for 34694 '; + node makeTDcells2.js 34694 > static2/34694_td.html; +echo ' writing array for 34695 '; + node makeTDcells2.js 34695 > static2/34695_td.html; +echo ' writing array for 34696 '; + node makeTDcells2.js 34696 > static2/34696_td.html; +echo ' writing array for 34697 '; + node makeTDcells2.js 34697 > static2/34697_td.html; +echo ' writing array for 34698 '; + node makeTDcells2.js 34698 > static2/34698_td.html; +echo ' writing array for 34699 '; + node makeTDcells2.js 34699 > static2/34699_td.html; +echo ' writing array for 34700 '; + node makeTDcells2.js 34700 > static2/34700_td.html; +echo ' writing array for 34701 '; + node makeTDcells2.js 34701 > static2/34701_td.html; +echo ' writing array for 34702 '; + node makeTDcells2.js 34702 > static2/34702_td.html; +echo ' writing array for 34703 '; + node makeTDcells2.js 34703 > static2/34703_td.html; +echo ' writing array for 34704 '; + node makeTDcells2.js 34704 > static2/34704_td.html; +echo ' writing array for 34705 '; + node makeTDcells2.js 34705 > static2/34705_td.html; +echo ' writing array for 34706 '; + node makeTDcells2.js 34706 > static2/34706_td.html; +echo ' writing array for 34707 '; + node makeTDcells2.js 34707 > static2/34707_td.html; +echo ' writing array for 34708 '; + node makeTDcells2.js 34708 > static2/34708_td.html; +echo ' writing array for 34709 '; + node makeTDcells2.js 34709 > static2/34709_td.html; +echo ' writing array for 34710 '; + node makeTDcells2.js 34710 > static2/34710_td.html; +echo ' writing array for 34711 '; + node makeTDcells2.js 34711 > static2/34711_td.html; +echo ' writing array for 34712 '; + node makeTDcells2.js 34712 > static2/34712_td.html; +echo ' writing array for 34713 '; + node makeTDcells2.js 34713 > static2/34713_td.html; +echo ' writing array for 34714 '; + node makeTDcells2.js 34714 > static2/34714_td.html; +echo ' writing array for 34715 '; + node makeTDcells2.js 34715 > static2/34715_td.html; +echo ' writing array for 34716 '; + node makeTDcells2.js 34716 > static2/34716_td.html; +echo ' writing array for 34717 '; + node makeTDcells2.js 34717 > static2/34717_td.html; +echo ' writing array for 34718 '; + node makeTDcells2.js 34718 > static2/34718_td.html; +echo ' writing array for 34719 '; + node makeTDcells2.js 34719 > static2/34719_td.html; +echo ' writing array for 34720 '; + node makeTDcells2.js 34720 > static2/34720_td.html; +echo ' writing array for 34721 '; + node makeTDcells2.js 34721 > static2/34721_td.html; +echo ' writing array for 34722 '; + node makeTDcells2.js 34722 > static2/34722_td.html; +echo ' writing array for 34723 '; + node makeTDcells2.js 34723 > static2/34723_td.html; +echo ' writing array for 34724 '; + node makeTDcells2.js 34724 > static2/34724_td.html; +echo ' writing array for 34725 '; + node makeTDcells2.js 34725 > static2/34725_td.html; +echo ' writing array for 34726 '; + node makeTDcells2.js 34726 > static2/34726_td.html; +echo ' writing array for 34727 '; + node makeTDcells2.js 34727 > static2/34727_td.html; +echo ' writing array for 34728 '; + node makeTDcells2.js 34728 > static2/34728_td.html; +echo ' writing array for 34729 '; + node makeTDcells2.js 34729 > static2/34729_td.html; +echo ' writing array for 34730 '; + node makeTDcells2.js 34730 > static2/34730_td.html; +echo ' writing array for 34731 '; + node makeTDcells2.js 34731 > static2/34731_td.html; +echo ' writing array for 34732 '; + node makeTDcells2.js 34732 > static2/34732_td.html; +echo ' writing array for 34733 '; + node makeTDcells2.js 34733 > static2/34733_td.html; +echo ' writing array for 34734 '; + node makeTDcells2.js 34734 > static2/34734_td.html; +echo ' writing array for 34735 '; + node makeTDcells2.js 34735 > static2/34735_td.html; +echo ' writing array for 34736 '; + node makeTDcells2.js 34736 > static2/34736_td.html; +echo ' writing array for 34737 '; + node makeTDcells2.js 34737 > static2/34737_td.html; +echo ' writing array for 34738 '; + node makeTDcells2.js 34738 > static2/34738_td.html; +echo ' writing array for 34740 '; + node makeTDcells2.js 34740 > static2/34740_td.html; +echo ' writing array for 34741 '; + node makeTDcells2.js 34741 > static2/34741_td.html; +echo ' writing array for 34742 '; + node makeTDcells2.js 34742 > static2/34742_td.html; +echo ' writing array for 34743 '; + node makeTDcells2.js 34743 > static2/34743_td.html; +echo ' writing array for 34744 '; + node makeTDcells2.js 34744 > static2/34744_td.html; +echo ' writing array for 34745 '; + node makeTDcells2.js 34745 > static2/34745_td.html; +echo ' writing array for 34746 '; + node makeTDcells2.js 34746 > static2/34746_td.html; +echo ' writing array for 34747 '; + node makeTDcells2.js 34747 > static2/34747_td.html; +echo ' writing array for 34748 '; + node makeTDcells2.js 34748 > static2/34748_td.html; +echo ' writing array for 34749 '; + node makeTDcells2.js 34749 > static2/34749_td.html; +echo ' writing array for 34750 '; + node makeTDcells2.js 34750 > static2/34750_td.html; +echo ' writing array for 34751 '; + node makeTDcells2.js 34751 > static2/34751_td.html; +echo ' writing array for 34752 '; + node makeTDcells2.js 34752 > static2/34752_td.html; +echo ' writing array for 34753 '; + node makeTDcells2.js 34753 > static2/34753_td.html; +echo ' writing array for 34754 '; + node makeTDcells2.js 34754 > static2/34754_td.html; +echo ' writing array for 34755 '; + node makeTDcells2.js 34755 > static2/34755_td.html; +echo ' writing array for 34756 '; + node makeTDcells2.js 34756 > static2/34756_td.html; +echo ' writing array for 34757 '; + node makeTDcells2.js 34757 > static2/34757_td.html; +echo ' writing array for 34758 '; + node makeTDcells2.js 34758 > static2/34758_td.html; +echo ' writing array for 34759 '; + node makeTDcells2.js 34759 > static2/34759_td.html; +echo ' writing array for 34760 '; + node makeTDcells2.js 34760 > static2/34760_td.html; +echo ' writing array for 34761 '; + node makeTDcells2.js 34761 > static2/34761_td.html; +echo ' writing array for 34762 '; + node makeTDcells2.js 34762 > static2/34762_td.html; +echo ' writing array for 34763 '; + node makeTDcells2.js 34763 > static2/34763_td.html; +echo ' writing array for 34764 '; + node makeTDcells2.js 34764 > static2/34764_td.html; +echo ' writing array for 34765 '; + node makeTDcells2.js 34765 > static2/34765_td.html; +echo ' writing array for 34766 '; + node makeTDcells2.js 34766 > static2/34766_td.html; +echo ' writing array for 34767 '; + node makeTDcells2.js 34767 > static2/34767_td.html; +echo ' writing array for 34768 '; + node makeTDcells2.js 34768 > static2/34768_td.html; +echo ' writing array for 34769 '; + node makeTDcells2.js 34769 > static2/34769_td.html; +echo ' writing array for 34770 '; + node makeTDcells2.js 34770 > static2/34770_td.html; +echo ' writing array for 34771 '; + node makeTDcells2.js 34771 > static2/34771_td.html; +echo ' writing array for 34772 '; + node makeTDcells2.js 34772 > static2/34772_td.html; +echo ' writing array for 34773 '; + node makeTDcells2.js 34773 > static2/34773_td.html; +echo ' writing array for 34774 '; + node makeTDcells2.js 34774 > static2/34774_td.html; +echo ' writing array for 34775 '; + node makeTDcells2.js 34775 > static2/34775_td.html; +echo ' writing array for 34776 '; + node makeTDcells2.js 34776 > static2/34776_td.html; +echo ' writing array for 34777 '; + node makeTDcells2.js 34777 > static2/34777_td.html; +echo ' writing array for 34778 '; + node makeTDcells2.js 34778 > static2/34778_td.html; +echo ' writing array for 34779 '; + node makeTDcells2.js 34779 > static2/34779_td.html; +echo ' writing array for 34780 '; + node makeTDcells2.js 34780 > static2/34780_td.html; +echo ' writing array for 34781 '; + node makeTDcells2.js 34781 > static2/34781_td.html; +echo ' writing array for 34782 '; + node makeTDcells2.js 34782 > static2/34782_td.html; +echo ' writing array for 34783 '; + node makeTDcells2.js 34783 > static2/34783_td.html; +echo ' writing array for 34784 '; + node makeTDcells2.js 34784 > static2/34784_td.html; +echo ' writing array for 34785 '; + node makeTDcells2.js 34785 > static2/34785_td.html; +echo ' writing array for 34786 '; + node makeTDcells2.js 34786 > static2/34786_td.html; +echo ' writing array for 34787 '; + node makeTDcells2.js 34787 > static2/34787_td.html; +echo ' writing array for 34788 '; + node makeTDcells2.js 34788 > static2/34788_td.html; +echo ' writing array for 34789 '; + node makeTDcells2.js 34789 > static2/34789_td.html; +echo ' writing array for 34790 '; + node makeTDcells2.js 34790 > static2/34790_td.html; +echo ' writing array for 34791 '; + node makeTDcells2.js 34791 > static2/34791_td.html; +echo ' writing array for 34792 '; + node makeTDcells2.js 34792 > static2/34792_td.html; +echo ' writing array for 34793 '; + node makeTDcells2.js 34793 > static2/34793_td.html; +echo ' writing array for 34794 '; + node makeTDcells2.js 34794 > static2/34794_td.html; +echo ' writing array for 34795 '; + node makeTDcells2.js 34795 > static2/34795_td.html; +echo ' writing array for 34796 '; + node makeTDcells2.js 34796 > static2/34796_td.html; +echo ' writing array for 34797 '; + node makeTDcells2.js 34797 > static2/34797_td.html; +echo ' writing array for 34798 '; + node makeTDcells2.js 34798 > static2/34798_td.html; +echo ' writing array for 34799 '; + node makeTDcells2.js 34799 > static2/34799_td.html; +echo ' writing array for 34800 '; + node makeTDcells2.js 34800 > static2/34800_td.html; +echo ' writing array for 34801 '; + node makeTDcells2.js 34801 > static2/34801_td.html; +echo ' writing array for 34802 '; + node makeTDcells2.js 34802 > static2/34802_td.html; +echo ' writing array for 34803 '; + node makeTDcells2.js 34803 > static2/34803_td.html; +echo ' writing array for 34804 '; + node makeTDcells2.js 34804 > static2/34804_td.html; +echo ' writing array for 34805 '; + node makeTDcells2.js 34805 > static2/34805_td.html; +echo ' writing array for 34806 '; + node makeTDcells2.js 34806 > static2/34806_td.html; +echo ' writing array for 34807 '; + node makeTDcells2.js 34807 > static2/34807_td.html; +echo ' writing array for 34808 '; + node makeTDcells2.js 34808 > static2/34808_td.html; +echo ' writing array for 34809 '; + node makeTDcells2.js 34809 > static2/34809_td.html; +echo ' writing array for 34810 '; + node makeTDcells2.js 34810 > static2/34810_td.html; +echo ' writing array for 34811 '; + node makeTDcells2.js 34811 > static2/34811_td.html; +echo ' writing array for 34812 '; + node makeTDcells2.js 34812 > static2/34812_td.html; +echo ' writing array for 34813 '; + node makeTDcells2.js 34813 > static2/34813_td.html; +echo ' writing array for 34814 '; + node makeTDcells2.js 34814 > static2/34814_td.html; +echo ' writing array for 34815 '; + node makeTDcells2.js 34815 > static2/34815_td.html; +echo ' writing array for 34816 '; + node makeTDcells2.js 34816 > static2/34816_td.html; +echo ' writing array for 34817 '; + node makeTDcells2.js 34817 > static2/34817_td.html; +echo ' writing array for 34818 '; + node makeTDcells2.js 34818 > static2/34818_td.html; +echo ' writing array for 34819 '; + node makeTDcells2.js 34819 > static2/34819_td.html; +echo ' writing array for 34820 '; + node makeTDcells2.js 34820 > static2/34820_td.html; +echo ' writing array for 34821 '; + node makeTDcells2.js 34821 > static2/34821_td.html; +echo ' writing array for 34822 '; + node makeTDcells2.js 34822 > static2/34822_td.html; +echo ' writing array for 34823 '; + node makeTDcells2.js 34823 > static2/34823_td.html; +echo ' writing array for 34824 '; + node makeTDcells2.js 34824 > static2/34824_td.html; +echo ' writing array for 34825 '; + node makeTDcells2.js 34825 > static2/34825_td.html; +echo ' writing array for 34826 '; + node makeTDcells2.js 34826 > static2/34826_td.html; +echo ' writing array for 34827 '; + node makeTDcells2.js 34827 > static2/34827_td.html; +echo ' writing array for 34828 '; + node makeTDcells2.js 34828 > static2/34828_td.html; +echo ' writing array for 34829 '; + node makeTDcells2.js 34829 > static2/34829_td.html; +echo ' writing array for 34830 '; + node makeTDcells2.js 34830 > static2/34830_td.html; +echo ' writing array for 34831 '; + node makeTDcells2.js 34831 > static2/34831_td.html; +echo ' writing array for 34832 '; + node makeTDcells2.js 34832 > static2/34832_td.html; +echo ' writing array for 34833 '; + node makeTDcells2.js 34833 > static2/34833_td.html; +echo ' writing array for 34834 '; + node makeTDcells2.js 34834 > static2/34834_td.html; +echo ' writing array for 34835 '; + node makeTDcells2.js 34835 > static2/34835_td.html; +echo ' writing array for 34836 '; + node makeTDcells2.js 34836 > static2/34836_td.html; +echo ' writing array for 34837 '; + node makeTDcells2.js 34837 > static2/34837_td.html; +echo ' writing array for 34838 '; + node makeTDcells2.js 34838 > static2/34838_td.html; +echo ' writing array for 34839 '; + node makeTDcells2.js 34839 > static2/34839_td.html; +echo ' writing array for 34840 '; + node makeTDcells2.js 34840 > static2/34840_td.html; +echo ' writing array for 34841 '; + node makeTDcells2.js 34841 > static2/34841_td.html; +echo ' writing array for 34842 '; + node makeTDcells2.js 34842 > static2/34842_td.html; +echo ' writing array for 34843 '; + node makeTDcells2.js 34843 > static2/34843_td.html; +echo ' writing array for 34844 '; + node makeTDcells2.js 34844 > static2/34844_td.html; +echo ' writing array for 34845 '; + node makeTDcells2.js 34845 > static2/34845_td.html; +echo ' writing array for 34846 '; + node makeTDcells2.js 34846 > static2/34846_td.html; +echo ' writing array for 34847 '; + node makeTDcells2.js 34847 > static2/34847_td.html; +echo ' writing array for 34848 '; + node makeTDcells2.js 34848 > static2/34848_td.html; +echo ' writing array for 34849 '; + node makeTDcells2.js 34849 > static2/34849_td.html; +echo ' writing array for 34850 '; + node makeTDcells2.js 34850 > static2/34850_td.html; +echo ' writing array for 34851 '; + node makeTDcells2.js 34851 > static2/34851_td.html; +echo ' writing array for 34852 '; + node makeTDcells2.js 34852 > static2/34852_td.html; +echo ' writing array for 34853 '; + node makeTDcells2.js 34853 > static2/34853_td.html; +echo ' writing array for 34854 '; + node makeTDcells2.js 34854 > static2/34854_td.html; +echo ' writing array for 34855 '; + node makeTDcells2.js 34855 > static2/34855_td.html; +echo ' writing array for 34856 '; + node makeTDcells2.js 34856 > static2/34856_td.html; +echo ' writing array for 34857 '; + node makeTDcells2.js 34857 > static2/34857_td.html; +echo ' writing array for 34858 '; + node makeTDcells2.js 34858 > static2/34858_td.html; +echo ' writing array for 34859 '; + node makeTDcells2.js 34859 > static2/34859_td.html; +echo ' writing array for 34860 '; + node makeTDcells2.js 34860 > static2/34860_td.html; +echo ' writing array for 34861 '; + node makeTDcells2.js 34861 > static2/34861_td.html; +echo ' writing array for 34862 '; + node makeTDcells2.js 34862 > static2/34862_td.html; +echo ' writing array for 34863 '; + node makeTDcells2.js 34863 > static2/34863_td.html; +echo ' writing array for 34864 '; + node makeTDcells2.js 34864 > static2/34864_td.html; +echo ' writing array for 34866 '; + node makeTDcells2.js 34866 > static2/34866_td.html; +echo ' writing array for 34867 '; + node makeTDcells2.js 34867 > static2/34867_td.html; +echo ' writing array for 34868 '; + node makeTDcells2.js 34868 > static2/34868_td.html; +echo ' writing array for 34869 '; + node makeTDcells2.js 34869 > static2/34869_td.html; +echo ' writing array for 34870 '; + node makeTDcells2.js 34870 > static2/34870_td.html; +echo ' writing array for 34871 '; + node makeTDcells2.js 34871 > static2/34871_td.html; +echo ' writing array for 34872 '; + node makeTDcells2.js 34872 > static2/34872_td.html; +echo ' writing array for 34873 '; + node makeTDcells2.js 34873 > static2/34873_td.html; +echo ' writing array for 34874 '; + node makeTDcells2.js 34874 > static2/34874_td.html; +echo ' writing array for 34875 '; + node makeTDcells2.js 34875 > static2/34875_td.html; +echo ' writing array for 34876 '; + node makeTDcells2.js 34876 > static2/34876_td.html; +echo ' writing array for 34877 '; + node makeTDcells2.js 34877 > static2/34877_td.html; +echo ' writing array for 34878 '; + node makeTDcells2.js 34878 > static2/34878_td.html; +echo ' writing array for 34880 '; + node makeTDcells2.js 34880 > static2/34880_td.html; +echo ' writing array for 34881 '; + node makeTDcells2.js 34881 > static2/34881_td.html; +echo ' writing array for 34882 '; + node makeTDcells2.js 34882 > static2/34882_td.html; +echo ' writing array for 34883 '; + node makeTDcells2.js 34883 > static2/34883_td.html; +echo ' writing array for 34884 '; + node makeTDcells2.js 34884 > static2/34884_td.html; +echo ' writing array for 34885 '; + node makeTDcells2.js 34885 > static2/34885_td.html; +echo ' writing array for 34886 '; + node makeTDcells2.js 34886 > static2/34886_td.html; +echo ' writing array for 34887 '; + node makeTDcells2.js 34887 > static2/34887_td.html; +echo ' writing array for 34888 '; + node makeTDcells2.js 34888 > static2/34888_td.html; +echo ' writing array for 34889 '; + node makeTDcells2.js 34889 > static2/34889_td.html; +echo ' writing array for 34890 '; + node makeTDcells2.js 34890 > static2/34890_td.html; +echo ' writing array for 34892 '; + node makeTDcells2.js 34892 > static2/34892_td.html; +echo ' writing array for 34894 '; + node makeTDcells2.js 34894 > static2/34894_td.html; +echo ' writing array for 34895 '; + node makeTDcells2.js 34895 > static2/34895_td.html; +echo ' writing array for 34897 '; + node makeTDcells2.js 34897 > static2/34897_td.html; +echo ' writing array for 34898 '; + node makeTDcells2.js 34898 > static2/34898_td.html; +echo ' writing array for 34899 '; + node makeTDcells2.js 34899 > static2/34899_td.html; +echo ' writing array for 34900 '; + node makeTDcells2.js 34900 > static2/34900_td.html; +echo ' writing array for 34902 '; + node makeTDcells2.js 34902 > static2/34902_td.html; +echo ' writing array for 34903 '; + node makeTDcells2.js 34903 > static2/34903_td.html; +echo ' writing array for 34904 '; + node makeTDcells2.js 34904 > static2/34904_td.html; +echo ' writing array for 34905 '; + node makeTDcells2.js 34905 > static2/34905_td.html; +echo ' writing array for 34909 '; + node makeTDcells2.js 34909 > static2/34909_td.html; +echo ' writing array for 34910 '; + node makeTDcells2.js 34910 > static2/34910_td.html; +echo ' writing array for 34911 '; + node makeTDcells2.js 34911 > static2/34911_td.html; +echo ' writing array for 34912 '; + node makeTDcells2.js 34912 > static2/34912_td.html; +echo ' writing array for 34913 '; + node makeTDcells2.js 34913 > static2/34913_td.html; +echo ' writing array for 34914 '; + node makeTDcells2.js 34914 > static2/34914_td.html; +echo ' writing array for 34915 '; + node makeTDcells2.js 34915 > static2/34915_td.html; +echo ' writing array for 34916 '; + node makeTDcells2.js 34916 > static2/34916_td.html; +echo ' writing array for 34917 '; + node makeTDcells2.js 34917 > static2/34917_td.html; +echo ' writing array for 34918 '; + node makeTDcells2.js 34918 > static2/34918_td.html; +echo ' writing array for 34919 '; + node makeTDcells2.js 34919 > static2/34919_td.html; +echo ' writing array for 34920 '; + node makeTDcells2.js 34920 > static2/34920_td.html; +echo ' writing array for 34922 '; + node makeTDcells2.js 34922 > static2/34922_td.html; +echo ' writing array for 34923 '; + node makeTDcells2.js 34923 > static2/34923_td.html; +echo ' writing array for 34924 '; + node makeTDcells2.js 34924 > static2/34924_td.html; +echo ' writing array for 34925 '; + node makeTDcells2.js 34925 > static2/34925_td.html; +echo ' writing array for 34926 '; + node makeTDcells2.js 34926 > static2/34926_td.html; +echo ' writing array for 34927 '; + node makeTDcells2.js 34927 > static2/34927_td.html; +echo ' writing array for 34928 '; + node makeTDcells2.js 34928 > static2/34928_td.html; +echo ' writing array for 34929 '; + node makeTDcells2.js 34929 > static2/34929_td.html; +echo ' writing array for 34930 '; + node makeTDcells2.js 34930 > static2/34930_td.html; +echo ' writing array for 34931 '; + node makeTDcells2.js 34931 > static2/34931_td.html; +echo ' writing array for 34932 '; + node makeTDcells2.js 34932 > static2/34932_td.html; +echo ' writing array for 34933 '; + node makeTDcells2.js 34933 > static2/34933_td.html; +echo ' writing array for 34934 '; + node makeTDcells2.js 34934 > static2/34934_td.html; +echo ' writing array for 34935 '; + node makeTDcells2.js 34935 > static2/34935_td.html; +echo ' writing array for 34936 '; + node makeTDcells2.js 34936 > static2/34936_td.html; +echo ' writing array for 34937 '; + node makeTDcells2.js 34937 > static2/34937_td.html; +echo ' writing array for 34938 '; + node makeTDcells2.js 34938 > static2/34938_td.html; +echo ' writing array for 34939 '; + node makeTDcells2.js 34939 > static2/34939_td.html; +echo ' writing array for 34940 '; + node makeTDcells2.js 34940 > static2/34940_td.html; +echo ' writing array for 34942 '; + node makeTDcells2.js 34942 > static2/34942_td.html; +echo ' writing array for 34943 '; + node makeTDcells2.js 34943 > static2/34943_td.html; +echo ' writing array for 34944 '; + node makeTDcells2.js 34944 > static2/34944_td.html; +echo ' writing array for 34945 '; + node makeTDcells2.js 34945 > static2/34945_td.html; +echo ' writing array for 34946 '; + node makeTDcells2.js 34946 > static2/34946_td.html; +echo ' writing array for 34947 '; + node makeTDcells2.js 34947 > static2/34947_td.html; +echo ' writing array for 34948 '; + node makeTDcells2.js 34948 > static2/34948_td.html; +echo ' writing array for 34949 '; + node makeTDcells2.js 34949 > static2/34949_td.html; +echo ' writing array for 34950 '; + node makeTDcells2.js 34950 > static2/34950_td.html; +echo ' writing array for 34951 '; + node makeTDcells2.js 34951 > static2/34951_td.html; +echo ' writing array for 34952 '; + node makeTDcells2.js 34952 > static2/34952_td.html; +echo ' writing array for 34953 '; + node makeTDcells2.js 34953 > static2/34953_td.html; +echo ' writing array for 34955 '; + node makeTDcells2.js 34955 > static2/34955_td.html; +echo ' writing array for 34956 '; + node makeTDcells2.js 34956 > static2/34956_td.html; +echo ' writing array for 34957 '; + node makeTDcells2.js 34957 > static2/34957_td.html; +echo ' writing array for 34958 '; + node makeTDcells2.js 34958 > static2/34958_td.html; +echo ' writing array for 34959 '; + node makeTDcells2.js 34959 > static2/34959_td.html; +echo ' writing array for 34960 '; + node makeTDcells2.js 34960 > static2/34960_td.html; +echo ' writing array for 34962 '; + node makeTDcells2.js 34962 > static2/34962_td.html; +echo ' writing array for 34963 '; + node makeTDcells2.js 34963 > static2/34963_td.html; +echo ' writing array for 34964 '; + node makeTDcells2.js 34964 > static2/34964_td.html; +echo ' writing array for 34965 '; + node makeTDcells2.js 34965 > static2/34965_td.html; +echo ' writing array for 34966 '; + node makeTDcells2.js 34966 > static2/34966_td.html; +echo ' writing array for 34967 '; + node makeTDcells2.js 34967 > static2/34967_td.html; +echo ' writing array for 34968 '; + node makeTDcells2.js 34968 > static2/34968_td.html; +echo ' writing array for 34969 '; + node makeTDcells2.js 34969 > static2/34969_td.html; +echo ' writing array for 34970 '; + node makeTDcells2.js 34970 > static2/34970_td.html; +echo ' writing array for 34971 '; + node makeTDcells2.js 34971 > static2/34971_td.html; +echo ' writing array for 34972 '; + node makeTDcells2.js 34972 > static2/34972_td.html; +echo ' writing array for 34973 '; + node makeTDcells2.js 34973 > static2/34973_td.html; +echo ' writing array for 34974 '; + node makeTDcells2.js 34974 > static2/34974_td.html; +echo ' writing array for 34975 '; + node makeTDcells2.js 34975 > static2/34975_td.html; +echo ' writing array for 34976 '; + node makeTDcells2.js 34976 > static2/34976_td.html; +echo ' writing array for 34977 '; + node makeTDcells2.js 34977 > static2/34977_td.html; +echo ' writing array for 34978 '; + node makeTDcells2.js 34978 > static2/34978_td.html; +echo ' writing array for 34979 '; + node makeTDcells2.js 34979 > static2/34979_td.html; +echo ' writing array for 34980 '; + node makeTDcells2.js 34980 > static2/34980_td.html; +echo ' writing array for 34981 '; + node makeTDcells2.js 34981 > static2/34981_td.html; +echo ' writing array for 34982 '; + node makeTDcells2.js 34982 > static2/34982_td.html; +echo ' writing array for 34983 '; + node makeTDcells2.js 34983 > static2/34983_td.html; +echo ' writing array for 34984 '; + node makeTDcells2.js 34984 > static2/34984_td.html; +echo ' writing array for 34985 '; + node makeTDcells2.js 34985 > static2/34985_td.html; +echo ' writing array for 34986 '; + node makeTDcells2.js 34986 > static2/34986_td.html; +echo ' writing array for 34987 '; + node makeTDcells2.js 34987 > static2/34987_td.html; +echo ' writing array for 34988 '; + node makeTDcells2.js 34988 > static2/34988_td.html; +echo ' writing array for 34989 '; + node makeTDcells2.js 34989 > static2/34989_td.html; +echo ' writing array for 34990 '; + node makeTDcells2.js 34990 > static2/34990_td.html; +echo ' writing array for 34991 '; + node makeTDcells2.js 34991 > static2/34991_td.html; +echo ' writing array for 34993 '; + node makeTDcells2.js 34993 > static2/34993_td.html; +echo ' writing array for 34994 '; + node makeTDcells2.js 34994 > static2/34994_td.html; +echo ' writing array for 34995 '; + node makeTDcells2.js 34995 > static2/34995_td.html; +echo ' writing array for 34996 '; + node makeTDcells2.js 34996 > static2/34996_td.html; +echo ' writing array for 34997 '; + node makeTDcells2.js 34997 > static2/34997_td.html; +echo ' writing array for 34998 '; + node makeTDcells2.js 34998 > static2/34998_td.html; +echo ' writing array for 34999 '; + node makeTDcells2.js 34999 > static2/34999_td.html; +echo ' writing array for 35000 '; + node makeTDcells2.js 35000 > static2/35000_td.html; +echo ' writing array for 35001 '; + node makeTDcells2.js 35001 > static2/35001_td.html; +echo ' writing array for 35002 '; + node makeTDcells2.js 35002 > static2/35002_td.html; +echo ' writing array for 35003 '; + node makeTDcells2.js 35003 > static2/35003_td.html; +echo ' writing array for 35004 '; + node makeTDcells2.js 35004 > static2/35004_td.html; +echo ' writing array for 35005 '; + node makeTDcells2.js 35005 > static2/35005_td.html; +echo ' writing array for 35006 '; + node makeTDcells2.js 35006 > static2/35006_td.html; +echo ' writing array for 35007 '; + node makeTDcells2.js 35007 > static2/35007_td.html; +echo ' writing array for 35008 '; + node makeTDcells2.js 35008 > static2/35008_td.html; +echo ' writing array for 35009 '; + node makeTDcells2.js 35009 > static2/35009_td.html; +echo ' writing array for 35010 '; + node makeTDcells2.js 35010 > static2/35010_td.html; +echo ' writing array for 35011 '; + node makeTDcells2.js 35011 > static2/35011_td.html; +echo ' writing array for 35012 '; + node makeTDcells2.js 35012 > static2/35012_td.html; +echo ' writing array for 35013 '; + node makeTDcells2.js 35013 > static2/35013_td.html; +echo ' writing array for 35014 '; + node makeTDcells2.js 35014 > static2/35014_td.html; +echo ' writing array for 35015 '; + node makeTDcells2.js 35015 > static2/35015_td.html; +echo ' writing array for 35016 '; + node makeTDcells2.js 35016 > static2/35016_td.html; +echo ' writing array for 35017 '; + node makeTDcells2.js 35017 > static2/35017_td.html; +echo ' writing array for 35018 '; + node makeTDcells2.js 35018 > static2/35018_td.html; +echo ' writing array for 35019 '; + node makeTDcells2.js 35019 > static2/35019_td.html; +echo ' writing array for 35020 '; + node makeTDcells2.js 35020 > static2/35020_td.html; +echo ' writing array for 35021 '; + node makeTDcells2.js 35021 > static2/35021_td.html; +echo ' writing array for 35022 '; + node makeTDcells2.js 35022 > static2/35022_td.html; +echo ' writing array for 35023 '; + node makeTDcells2.js 35023 > static2/35023_td.html; +echo ' writing array for 35024 '; + node makeTDcells2.js 35024 > static2/35024_td.html; +echo ' writing array for 35025 '; + node makeTDcells2.js 35025 > static2/35025_td.html; +echo ' writing array for 35026 '; + node makeTDcells2.js 35026 > static2/35026_td.html; +echo ' writing array for 35027 '; + node makeTDcells2.js 35027 > static2/35027_td.html; +echo ' writing array for 35028 '; + node makeTDcells2.js 35028 > static2/35028_td.html; +echo ' writing array for 35029 '; + node makeTDcells2.js 35029 > static2/35029_td.html; +echo ' writing array for 35030 '; + node makeTDcells2.js 35030 > static2/35030_td.html; +echo ' writing array for 35031 '; + node makeTDcells2.js 35031 > static2/35031_td.html; +echo ' writing array for 35032 '; + node makeTDcells2.js 35032 > static2/35032_td.html; +echo ' writing array for 35033 '; + node makeTDcells2.js 35033 > static2/35033_td.html; +echo ' writing array for 35034 '; + node makeTDcells2.js 35034 > static2/35034_td.html; +echo ' writing array for 35035 '; + node makeTDcells2.js 35035 > static2/35035_td.html; +echo ' writing array for 35036 '; + node makeTDcells2.js 35036 > static2/35036_td.html; +echo ' writing array for 35037 '; + node makeTDcells2.js 35037 > static2/35037_td.html; +echo ' writing array for 35038 '; + node makeTDcells2.js 35038 > static2/35038_td.html; +echo ' writing array for 35039 '; + node makeTDcells2.js 35039 > static2/35039_td.html; +echo ' writing array for 35040 '; + node makeTDcells2.js 35040 > static2/35040_td.html; +echo ' writing array for 35041 '; + node makeTDcells2.js 35041 > static2/35041_td.html; +echo ' writing array for 35042 '; + node makeTDcells2.js 35042 > static2/35042_td.html; +echo ' writing array for 35043 '; + node makeTDcells2.js 35043 > static2/35043_td.html; +echo ' writing array for 35044 '; + node makeTDcells2.js 35044 > static2/35044_td.html; +echo ' writing array for 35045 '; + node makeTDcells2.js 35045 > static2/35045_td.html; +echo ' writing array for 35046 '; + node makeTDcells2.js 35046 > static2/35046_td.html; +echo ' writing array for 35047 '; + node makeTDcells2.js 35047 > static2/35047_td.html; +echo ' writing array for 35048 '; + node makeTDcells2.js 35048 > static2/35048_td.html; +echo ' writing array for 35049 '; + node makeTDcells2.js 35049 > static2/35049_td.html; +echo ' writing array for 35050 '; + node makeTDcells2.js 35050 > static2/35050_td.html; +echo ' writing array for 35051 '; + node makeTDcells2.js 35051 > static2/35051_td.html; +echo ' writing array for 35052 '; + node makeTDcells2.js 35052 > static2/35052_td.html; +echo ' writing array for 35053 '; + node makeTDcells2.js 35053 > static2/35053_td.html; +echo ' writing array for 35054 '; + node makeTDcells2.js 35054 > static2/35054_td.html; +echo ' writing array for 35055 '; + node makeTDcells2.js 35055 > static2/35055_td.html; +echo ' writing array for 35056 '; + node makeTDcells2.js 35056 > static2/35056_td.html; +echo ' writing array for 35057 '; + node makeTDcells2.js 35057 > static2/35057_td.html; +echo ' writing array for 35059 '; + node makeTDcells2.js 35059 > static2/35059_td.html; +echo ' writing array for 35060 '; + node makeTDcells2.js 35060 > static2/35060_td.html; +echo ' writing array for 35061 '; + node makeTDcells2.js 35061 > static2/35061_td.html; +echo ' writing array for 35062 '; + node makeTDcells2.js 35062 > static2/35062_td.html; +echo ' writing array for 35063 '; + node makeTDcells2.js 35063 > static2/35063_td.html; +echo ' writing array for 35064 '; + node makeTDcells2.js 35064 > static2/35064_td.html; +echo ' writing array for 35066 '; + node makeTDcells2.js 35066 > static2/35066_td.html; +echo ' writing array for 35067 '; + node makeTDcells2.js 35067 > static2/35067_td.html; +echo ' writing array for 35068 '; + node makeTDcells2.js 35068 > static2/35068_td.html; +echo ' writing array for 35069 '; + node makeTDcells2.js 35069 > static2/35069_td.html; +echo ' writing array for 35070 '; + node makeTDcells2.js 35070 > static2/35070_td.html; +echo ' writing array for 35071 '; + node makeTDcells2.js 35071 > static2/35071_td.html; +echo ' writing array for 35072 '; + node makeTDcells2.js 35072 > static2/35072_td.html; +echo ' writing array for 35073 '; + node makeTDcells2.js 35073 > static2/35073_td.html; +echo ' writing array for 35074 '; + node makeTDcells2.js 35074 > static2/35074_td.html; +echo ' writing array for 35075 '; + node makeTDcells2.js 35075 > static2/35075_td.html; +echo ' writing array for 35076 '; + node makeTDcells2.js 35076 > static2/35076_td.html; +echo ' writing array for 35077 '; + node makeTDcells2.js 35077 > static2/35077_td.html; +echo ' writing array for 35078 '; + node makeTDcells2.js 35078 > static2/35078_td.html; +echo ' writing array for 35079 '; + node makeTDcells2.js 35079 > static2/35079_td.html; +echo ' writing array for 35080 '; + node makeTDcells2.js 35080 > static2/35080_td.html; +echo ' writing array for 35081 '; + node makeTDcells2.js 35081 > static2/35081_td.html; +echo ' writing array for 35082 '; + node makeTDcells2.js 35082 > static2/35082_td.html; +echo ' writing array for 35083 '; + node makeTDcells2.js 35083 > static2/35083_td.html; +echo ' writing array for 35084 '; + node makeTDcells2.js 35084 > static2/35084_td.html; +echo ' writing array for 35085 '; + node makeTDcells2.js 35085 > static2/35085_td.html; +echo ' writing array for 35086 '; + node makeTDcells2.js 35086 > static2/35086_td.html; +echo ' writing array for 35087 '; + node makeTDcells2.js 35087 > static2/35087_td.html; +echo ' writing array for 35088 '; + node makeTDcells2.js 35088 > static2/35088_td.html; +echo ' writing array for 35089 '; + node makeTDcells2.js 35089 > static2/35089_td.html; +echo ' writing array for 35090 '; + node makeTDcells2.js 35090 > static2/35090_td.html; +echo ' writing array for 35091 '; + node makeTDcells2.js 35091 > static2/35091_td.html; +echo ' writing array for 35092 '; + node makeTDcells2.js 35092 > static2/35092_td.html; +echo ' writing array for 35093 '; + node makeTDcells2.js 35093 > static2/35093_td.html; +echo ' writing array for 35094 '; + node makeTDcells2.js 35094 > static2/35094_td.html; +echo ' writing array for 35095 '; + node makeTDcells2.js 35095 > static2/35095_td.html; +echo ' writing array for 35096 '; + node makeTDcells2.js 35096 > static2/35096_td.html; +echo ' writing array for 35097 '; + node makeTDcells2.js 35097 > static2/35097_td.html; +echo ' writing array for 35098 '; + node makeTDcells2.js 35098 > static2/35098_td.html; +echo ' writing array for 35099 '; + node makeTDcells2.js 35099 > static2/35099_td.html; +echo ' writing array for 35100 '; + node makeTDcells2.js 35100 > static2/35100_td.html; +echo ' writing array for 35101 '; + node makeTDcells2.js 35101 > static2/35101_td.html; +echo ' writing array for 35103 '; + node makeTDcells2.js 35103 > static2/35103_td.html; +echo ' writing array for 35104 '; + node makeTDcells2.js 35104 > static2/35104_td.html; +echo ' writing array for 35105 '; + node makeTDcells2.js 35105 > static2/35105_td.html; +echo ' writing array for 35106 '; + node makeTDcells2.js 35106 > static2/35106_td.html; +echo ' writing array for 35107 '; + node makeTDcells2.js 35107 > static2/35107_td.html; +echo ' writing array for 35108 '; + node makeTDcells2.js 35108 > static2/35108_td.html; +echo ' writing array for 35109 '; + node makeTDcells2.js 35109 > static2/35109_td.html; +echo ' writing array for 35110 '; + node makeTDcells2.js 35110 > static2/35110_td.html; +echo ' writing array for 35111 '; + node makeTDcells2.js 35111 > static2/35111_td.html; +echo ' writing array for 35112 '; + node makeTDcells2.js 35112 > static2/35112_td.html; +echo ' writing array for 35113 '; + node makeTDcells2.js 35113 > static2/35113_td.html; +echo ' writing array for 35114 '; + node makeTDcells2.js 35114 > static2/35114_td.html; +echo ' writing array for 35115 '; + node makeTDcells2.js 35115 > static2/35115_td.html; +echo ' writing array for 35116 '; + node makeTDcells2.js 35116 > static2/35116_td.html; +echo ' writing array for 35117 '; + node makeTDcells2.js 35117 > static2/35117_td.html; +echo ' writing array for 35118 '; + node makeTDcells2.js 35118 > static2/35118_td.html; +echo ' writing array for 35119 '; + node makeTDcells2.js 35119 > static2/35119_td.html; +echo ' writing array for 35120 '; + node makeTDcells2.js 35120 > static2/35120_td.html; +echo ' writing array for 35121 '; + node makeTDcells2.js 35121 > static2/35121_td.html; +echo ' writing array for 35123 '; + node makeTDcells2.js 35123 > static2/35123_td.html; +echo ' writing array for 35124 '; + node makeTDcells2.js 35124 > static2/35124_td.html; +echo ' writing array for 35125 '; + node makeTDcells2.js 35125 > static2/35125_td.html; +echo ' writing array for 35126 '; + node makeTDcells2.js 35126 > static2/35126_td.html; +echo ' writing array for 35128 '; + node makeTDcells2.js 35128 > static2/35128_td.html; +echo ' writing array for 35130 '; + node makeTDcells2.js 35130 > static2/35130_td.html; +echo ' writing array for 35131 '; + node makeTDcells2.js 35131 > static2/35131_td.html; +echo ' writing array for 35132 '; + node makeTDcells2.js 35132 > static2/35132_td.html; +echo ' writing array for 35134 '; + node makeTDcells2.js 35134 > static2/35134_td.html; +echo ' writing array for 35135 '; + node makeTDcells2.js 35135 > static2/35135_td.html; +echo ' writing array for 35136 '; + node makeTDcells2.js 35136 > static2/35136_td.html; +echo ' writing array for 35137 '; + node makeTDcells2.js 35137 > static2/35137_td.html; +echo ' writing array for 35138 '; + node makeTDcells2.js 35138 > static2/35138_td.html; +echo ' writing array for 35140 '; + node makeTDcells2.js 35140 > static2/35140_td.html; +echo ' writing array for 35141 '; + node makeTDcells2.js 35141 > static2/35141_td.html; +echo ' writing array for 35142 '; + node makeTDcells2.js 35142 > static2/35142_td.html; +echo ' writing array for 35143 '; + node makeTDcells2.js 35143 > static2/35143_td.html; +echo ' writing array for 35144 '; + node makeTDcells2.js 35144 > static2/35144_td.html; +echo ' writing array for 35146 '; + node makeTDcells2.js 35146 > static2/35146_td.html; +echo ' writing array for 35147 '; + node makeTDcells2.js 35147 > static2/35147_td.html; +echo ' writing array for 35148 '; + node makeTDcells2.js 35148 > static2/35148_td.html; +echo ' writing array for 35149 '; + node makeTDcells2.js 35149 > static2/35149_td.html; +echo ' writing array for 35151 '; + node makeTDcells2.js 35151 > static2/35151_td.html; +echo ' writing array for 35152 '; + node makeTDcells2.js 35152 > static2/35152_td.html; +echo ' writing array for 35153 '; + node makeTDcells2.js 35153 > static2/35153_td.html; +echo ' writing array for 35154 '; + node makeTDcells2.js 35154 > static2/35154_td.html; +echo ' writing array for 35155 '; + node makeTDcells2.js 35155 > static2/35155_td.html; +echo ' writing array for 35156 '; + node makeTDcells2.js 35156 > static2/35156_td.html; +echo ' writing array for 35157 '; + node makeTDcells2.js 35157 > static2/35157_td.html; +echo ' writing array for 35158 '; + node makeTDcells2.js 35158 > static2/35158_td.html; +echo ' writing array for 35159 '; + node makeTDcells2.js 35159 > static2/35159_td.html; +echo ' writing array for 35160 '; + node makeTDcells2.js 35160 > static2/35160_td.html; +echo ' writing array for 35161 '; + node makeTDcells2.js 35161 > static2/35161_td.html; +echo ' writing array for 35162 '; + node makeTDcells2.js 35162 > static2/35162_td.html; +echo ' writing array for 35163 '; + node makeTDcells2.js 35163 > static2/35163_td.html; +echo ' writing array for 35164 '; + node makeTDcells2.js 35164 > static2/35164_td.html; +echo ' writing array for 35165 '; + node makeTDcells2.js 35165 > static2/35165_td.html; +echo ' writing array for 35166 '; + node makeTDcells2.js 35166 > static2/35166_td.html; +echo ' writing array for 35170 '; + node makeTDcells2.js 35170 > static2/35170_td.html; +echo ' writing array for 35171 '; + node makeTDcells2.js 35171 > static2/35171_td.html; +echo ' writing array for 35172 '; + node makeTDcells2.js 35172 > static2/35172_td.html; +echo ' writing array for 35173 '; + node makeTDcells2.js 35173 > static2/35173_td.html; +echo ' writing array for 35174 '; + node makeTDcells2.js 35174 > static2/35174_td.html; +echo ' writing array for 35175 '; + node makeTDcells2.js 35175 > static2/35175_td.html; +echo ' writing array for 35176 '; + node makeTDcells2.js 35176 > static2/35176_td.html; +echo ' writing array for 35177 '; + node makeTDcells2.js 35177 > static2/35177_td.html; +echo ' writing array for 35178 '; + node makeTDcells2.js 35178 > static2/35178_td.html; +echo ' writing array for 35181 '; + node makeTDcells2.js 35181 > static2/35181_td.html; +echo ' writing array for 35182 '; + node makeTDcells2.js 35182 > static2/35182_td.html; +echo ' writing array for 35183 '; + node makeTDcells2.js 35183 > static2/35183_td.html; +echo ' writing array for 35184 '; + node makeTDcells2.js 35184 > static2/35184_td.html; +echo ' writing array for 35186 '; + node makeTDcells2.js 35186 > static2/35186_td.html; +echo ' writing array for 35187 '; + node makeTDcells2.js 35187 > static2/35187_td.html; +echo ' writing array for 35189 '; + node makeTDcells2.js 35189 > static2/35189_td.html; +echo ' writing array for 35190 '; + node makeTDcells2.js 35190 > static2/35190_td.html; +echo ' writing array for 35191 '; + node makeTDcells2.js 35191 > static2/35191_td.html; +echo ' writing array for 35192 '; + node makeTDcells2.js 35192 > static2/35192_td.html; +echo ' writing array for 35193 '; + node makeTDcells2.js 35193 > static2/35193_td.html; +echo ' writing array for 35194 '; + node makeTDcells2.js 35194 > static2/35194_td.html; +echo ' writing array for 35195 '; + node makeTDcells2.js 35195 > static2/35195_td.html; +echo ' writing array for 35196 '; + node makeTDcells2.js 35196 > static2/35196_td.html; +echo ' writing array for 35197 '; + node makeTDcells2.js 35197 > static2/35197_td.html; +echo ' writing array for 35198 '; + node makeTDcells2.js 35198 > static2/35198_td.html; +echo ' writing array for 35199 '; + node makeTDcells2.js 35199 > static2/35199_td.html; +echo ' writing array for 35200 '; + node makeTDcells2.js 35200 > static2/35200_td.html; +echo ' writing array for 35201 '; + node makeTDcells2.js 35201 > static2/35201_td.html; +echo ' writing array for 35202 '; + node makeTDcells2.js 35202 > static2/35202_td.html; +echo ' writing array for 35203 '; + node makeTDcells2.js 35203 > static2/35203_td.html; +echo ' writing array for 35204 '; + node makeTDcells2.js 35204 > static2/35204_td.html; +echo ' writing array for 35205 '; + node makeTDcells2.js 35205 > static2/35205_td.html; +echo ' writing array for 35206 '; + node makeTDcells2.js 35206 > static2/35206_td.html; +echo ' writing array for 35207 '; + node makeTDcells2.js 35207 > static2/35207_td.html; +echo ' writing array for 35208 '; + node makeTDcells2.js 35208 > static2/35208_td.html; +echo ' writing array for 35209 '; + node makeTDcells2.js 35209 > static2/35209_td.html; +echo ' writing array for 35210 '; + node makeTDcells2.js 35210 > static2/35210_td.html; +echo ' writing array for 35212 '; + node makeTDcells2.js 35212 > static2/35212_td.html; +echo ' writing array for 35213 '; + node makeTDcells2.js 35213 > static2/35213_td.html; +echo ' writing array for 35214 '; + node makeTDcells2.js 35214 > static2/35214_td.html; +echo ' writing array for 35215 '; + node makeTDcells2.js 35215 > static2/35215_td.html; +echo ' writing array for 35216 '; + node makeTDcells2.js 35216 > static2/35216_td.html; +echo ' writing array for 35217 '; + node makeTDcells2.js 35217 > static2/35217_td.html; +echo ' writing array for 35218 '; + node makeTDcells2.js 35218 > static2/35218_td.html; +echo ' writing array for 35219 '; + node makeTDcells2.js 35219 > static2/35219_td.html; +echo ' writing array for 35220 '; + node makeTDcells2.js 35220 > static2/35220_td.html; +echo ' writing array for 35221 '; + node makeTDcells2.js 35221 > static2/35221_td.html; +echo ' writing array for 35222 '; + node makeTDcells2.js 35222 > static2/35222_td.html; +echo ' writing array for 35223 '; + node makeTDcells2.js 35223 > static2/35223_td.html; +echo ' writing array for 35224 '; + node makeTDcells2.js 35224 > static2/35224_td.html; +echo ' writing array for 35225 '; + node makeTDcells2.js 35225 > static2/35225_td.html; +echo ' writing array for 35226 '; + node makeTDcells2.js 35226 > static2/35226_td.html; +echo ' writing array for 35227 '; + node makeTDcells2.js 35227 > static2/35227_td.html; +echo ' writing array for 35228 '; + node makeTDcells2.js 35228 > static2/35228_td.html; +echo ' writing array for 35229 '; + node makeTDcells2.js 35229 > static2/35229_td.html; +echo ' writing array for 35230 '; + node makeTDcells2.js 35230 > static2/35230_td.html; +echo ' writing array for 35232 '; + node makeTDcells2.js 35232 > static2/35232_td.html; +echo ' writing array for 35233 '; + node makeTDcells2.js 35233 > static2/35233_td.html; +echo ' writing array for 35234 '; + node makeTDcells2.js 35234 > static2/35234_td.html; +echo ' writing array for 35235 '; + node makeTDcells2.js 35235 > static2/35235_td.html; +echo ' writing array for 35236 '; + node makeTDcells2.js 35236 > static2/35236_td.html; +echo ' writing array for 35237 '; + node makeTDcells2.js 35237 > static2/35237_td.html; +echo ' writing array for 35238 '; + node makeTDcells2.js 35238 > static2/35238_td.html; +echo ' writing array for 35239 '; + node makeTDcells2.js 35239 > static2/35239_td.html; +echo ' writing array for 35240 '; + node makeTDcells2.js 35240 > static2/35240_td.html; +echo ' writing array for 35241 '; + node makeTDcells2.js 35241 > static2/35241_td.html; +echo ' writing array for 35242 '; + node makeTDcells2.js 35242 > static2/35242_td.html; +echo ' writing array for 35243 '; + node makeTDcells2.js 35243 > static2/35243_td.html; +echo ' writing array for 35244 '; + node makeTDcells2.js 35244 > static2/35244_td.html; +echo ' writing array for 35245 '; + node makeTDcells2.js 35245 > static2/35245_td.html; +echo ' writing array for 35246 '; + node makeTDcells2.js 35246 > static2/35246_td.html; +echo ' writing array for 35247 '; + node makeTDcells2.js 35247 > static2/35247_td.html; +echo ' writing array for 35248 '; + node makeTDcells2.js 35248 > static2/35248_td.html; +echo ' writing array for 35249 '; + node makeTDcells2.js 35249 > static2/35249_td.html; +echo ' writing array for 35250 '; + node makeTDcells2.js 35250 > static2/35250_td.html; +echo ' writing array for 35251 '; + node makeTDcells2.js 35251 > static2/35251_td.html; +echo ' writing array for 35252 '; + node makeTDcells2.js 35252 > static2/35252_td.html; +echo ' writing array for 35253 '; + node makeTDcells2.js 35253 > static2/35253_td.html; +echo ' writing array for 35254 '; + node makeTDcells2.js 35254 > static2/35254_td.html; +echo ' writing array for 35255 '; + node makeTDcells2.js 35255 > static2/35255_td.html; +echo ' writing array for 35256 '; + node makeTDcells2.js 35256 > static2/35256_td.html; +echo ' writing array for 35257 '; + node makeTDcells2.js 35257 > static2/35257_td.html; +echo ' writing array for 35258 '; + node makeTDcells2.js 35258 > static2/35258_td.html; +echo ' writing array for 35259 '; + node makeTDcells2.js 35259 > static2/35259_td.html; +echo ' writing array for 35260 '; + node makeTDcells2.js 35260 > static2/35260_td.html; +echo ' writing array for 35261 '; + node makeTDcells2.js 35261 > static2/35261_td.html; +echo ' writing array for 35262 '; + node makeTDcells2.js 35262 > static2/35262_td.html; +echo ' writing array for 35263 '; + node makeTDcells2.js 35263 > static2/35263_td.html; +echo ' writing array for 35264 '; + node makeTDcells2.js 35264 > static2/35264_td.html; +echo ' writing array for 35265 '; + node makeTDcells2.js 35265 > static2/35265_td.html; +echo ' writing array for 35266 '; + node makeTDcells2.js 35266 > static2/35266_td.html; +echo ' writing array for 35267 '; + node makeTDcells2.js 35267 > static2/35267_td.html; +echo ' writing array for 35268 '; + node makeTDcells2.js 35268 > static2/35268_td.html; +echo ' writing array for 35269 '; + node makeTDcells2.js 35269 > static2/35269_td.html; +echo ' writing array for 35270 '; + node makeTDcells2.js 35270 > static2/35270_td.html; +echo ' writing array for 35271 '; + node makeTDcells2.js 35271 > static2/35271_td.html; +echo ' writing array for 35272 '; + node makeTDcells2.js 35272 > static2/35272_td.html; +echo ' writing array for 35273 '; + node makeTDcells2.js 35273 > static2/35273_td.html; +echo ' writing array for 35274 '; + node makeTDcells2.js 35274 > static2/35274_td.html; +echo ' writing array for 35275 '; + node makeTDcells2.js 35275 > static2/35275_td.html; +echo ' writing array for 35276 '; + node makeTDcells2.js 35276 > static2/35276_td.html; +echo ' writing array for 35277 '; + node makeTDcells2.js 35277 > static2/35277_td.html; +echo ' writing array for 35278 '; + node makeTDcells2.js 35278 > static2/35278_td.html; +echo ' writing array for 35279 '; + node makeTDcells2.js 35279 > static2/35279_td.html; +echo ' writing array for 35280 '; + node makeTDcells2.js 35280 > static2/35280_td.html; +echo ' writing array for 35281 '; + node makeTDcells2.js 35281 > static2/35281_td.html; +echo ' writing array for 35282 '; + node makeTDcells2.js 35282 > static2/35282_td.html; +echo ' writing array for 35283 '; + node makeTDcells2.js 35283 > static2/35283_td.html; +echo ' writing array for 35284 '; + node makeTDcells2.js 35284 > static2/35284_td.html; +echo ' writing array for 35285 '; + node makeTDcells2.js 35285 > static2/35285_td.html; +echo ' writing array for 35286 '; + node makeTDcells2.js 35286 > static2/35286_td.html; +echo ' writing array for 35287 '; + node makeTDcells2.js 35287 > static2/35287_td.html; +echo ' writing array for 35288 '; + node makeTDcells2.js 35288 > static2/35288_td.html; +echo ' writing array for 35289 '; + node makeTDcells2.js 35289 > static2/35289_td.html; +echo ' writing array for 35290 '; + node makeTDcells2.js 35290 > static2/35290_td.html; +echo ' writing array for 35291 '; + node makeTDcells2.js 35291 > static2/35291_td.html; +echo ' writing array for 35292 '; + node makeTDcells2.js 35292 > static2/35292_td.html; +echo ' writing array for 35293 '; + node makeTDcells2.js 35293 > static2/35293_td.html; +echo ' writing array for 35294 '; + node makeTDcells2.js 35294 > static2/35294_td.html; +echo ' writing array for 35295 '; + node makeTDcells2.js 35295 > static2/35295_td.html; +echo ' writing array for 35296 '; + node makeTDcells2.js 35296 > static2/35296_td.html; +echo ' writing array for 35297 '; + node makeTDcells2.js 35297 > static2/35297_td.html; +echo ' writing array for 35298 '; + node makeTDcells2.js 35298 > static2/35298_td.html; +echo ' writing array for 35299 '; + node makeTDcells2.js 35299 > static2/35299_td.html; +echo ' writing array for 35300 '; + node makeTDcells2.js 35300 > static2/35300_td.html; +echo ' writing array for 35301 '; + node makeTDcells2.js 35301 > static2/35301_td.html; +echo ' writing array for 35302 '; + node makeTDcells2.js 35302 > static2/35302_td.html; +echo ' writing array for 35303 '; + node makeTDcells2.js 35303 > static2/35303_td.html; +echo ' writing array for 35304 '; + node makeTDcells2.js 35304 > static2/35304_td.html; +echo ' writing array for 35305 '; + node makeTDcells2.js 35305 > static2/35305_td.html; +echo ' writing array for 35306 '; + node makeTDcells2.js 35306 > static2/35306_td.html; +echo ' writing array for 35307 '; + node makeTDcells2.js 35307 > static2/35307_td.html; +echo ' writing array for 35308 '; + node makeTDcells2.js 35308 > static2/35308_td.html; +echo ' writing array for 35309 '; + node makeTDcells2.js 35309 > static2/35309_td.html; +echo ' writing array for 35310 '; + node makeTDcells2.js 35310 > static2/35310_td.html; +echo ' writing array for 35311 '; + node makeTDcells2.js 35311 > static2/35311_td.html; +echo ' writing array for 35312 '; + node makeTDcells2.js 35312 > static2/35312_td.html; +echo ' writing array for 35313 '; + node makeTDcells2.js 35313 > static2/35313_td.html; +echo ' writing array for 35314 '; + node makeTDcells2.js 35314 > static2/35314_td.html; +echo ' writing array for 35315 '; + node makeTDcells2.js 35315 > static2/35315_td.html; +echo ' writing array for 35316 '; + node makeTDcells2.js 35316 > static2/35316_td.html; +echo ' writing array for 35317 '; + node makeTDcells2.js 35317 > static2/35317_td.html; +echo ' writing array for 35318 '; + node makeTDcells2.js 35318 > static2/35318_td.html; +echo ' writing array for 35319 '; + node makeTDcells2.js 35319 > static2/35319_td.html; +echo ' writing array for 35320 '; + node makeTDcells2.js 35320 > static2/35320_td.html; +echo ' writing array for 35321 '; + node makeTDcells2.js 35321 > static2/35321_td.html; +echo ' writing array for 35322 '; + node makeTDcells2.js 35322 > static2/35322_td.html; +echo ' writing array for 35323 '; + node makeTDcells2.js 35323 > static2/35323_td.html; +echo ' writing array for 35324 '; + node makeTDcells2.js 35324 > static2/35324_td.html; +echo ' writing array for 35325 '; + node makeTDcells2.js 35325 > static2/35325_td.html; +echo ' writing array for 35326 '; + node makeTDcells2.js 35326 > static2/35326_td.html; +echo ' writing array for 35327 '; + node makeTDcells2.js 35327 > static2/35327_td.html; +echo ' writing array for 35328 '; + node makeTDcells2.js 35328 > static2/35328_td.html; +echo ' writing array for 35329 '; + node makeTDcells2.js 35329 > static2/35329_td.html; +echo ' writing array for 35330 '; + node makeTDcells2.js 35330 > static2/35330_td.html; +echo ' writing array for 35331 '; + node makeTDcells2.js 35331 > static2/35331_td.html; +echo ' writing array for 35332 '; + node makeTDcells2.js 35332 > static2/35332_td.html; +echo ' writing array for 35333 '; + node makeTDcells2.js 35333 > static2/35333_td.html; +echo ' writing array for 35334 '; + node makeTDcells2.js 35334 > static2/35334_td.html; +echo ' writing array for 35335 '; + node makeTDcells2.js 35335 > static2/35335_td.html; +echo ' writing array for 35336 '; + node makeTDcells2.js 35336 > static2/35336_td.html; +echo ' writing array for 35337 '; + node makeTDcells2.js 35337 > static2/35337_td.html; +echo ' writing array for 35338 '; + node makeTDcells2.js 35338 > static2/35338_td.html; +echo ' writing array for 35339 '; + node makeTDcells2.js 35339 > static2/35339_td.html; +echo ' writing array for 35340 '; + node makeTDcells2.js 35340 > static2/35340_td.html; +echo ' writing array for 35342 '; + node makeTDcells2.js 35342 > static2/35342_td.html; +echo ' writing array for 35343 '; + node makeTDcells2.js 35343 > static2/35343_td.html; +echo ' writing array for 35344 '; + node makeTDcells2.js 35344 > static2/35344_td.html; +echo ' writing array for 35345 '; + node makeTDcells2.js 35345 > static2/35345_td.html; +echo ' writing array for 35346 '; + node makeTDcells2.js 35346 > static2/35346_td.html; +echo ' writing array for 35348 '; + node makeTDcells2.js 35348 > static2/35348_td.html; +echo ' writing array for 35349 '; + node makeTDcells2.js 35349 > static2/35349_td.html; +echo ' writing array for 35350 '; + node makeTDcells2.js 35350 > static2/35350_td.html; +echo ' writing array for 35351 '; + node makeTDcells2.js 35351 > static2/35351_td.html; +echo ' writing array for 35353 '; + node makeTDcells2.js 35353 > static2/35353_td.html; +echo ' writing array for 35354 '; + node makeTDcells2.js 35354 > static2/35354_td.html; +echo ' writing array for 35355 '; + node makeTDcells2.js 35355 > static2/35355_td.html; +echo ' writing array for 35356 '; + node makeTDcells2.js 35356 > static2/35356_td.html; +echo ' writing array for 35357 '; + node makeTDcells2.js 35357 > static2/35357_td.html; +echo ' writing array for 35358 '; + node makeTDcells2.js 35358 > static2/35358_td.html; +echo ' writing array for 35359 '; + node makeTDcells2.js 35359 > static2/35359_td.html; +echo ' writing array for 35360 '; + node makeTDcells2.js 35360 > static2/35360_td.html; +echo ' writing array for 35361 '; + node makeTDcells2.js 35361 > static2/35361_td.html; +echo ' writing array for 35362 '; + node makeTDcells2.js 35362 > static2/35362_td.html; +echo ' writing array for 35363 '; + node makeTDcells2.js 35363 > static2/35363_td.html; +echo ' writing array for 35364 '; + node makeTDcells2.js 35364 > static2/35364_td.html; +echo ' writing array for 35365 '; + node makeTDcells2.js 35365 > static2/35365_td.html; +echo ' writing array for 35366 '; + node makeTDcells2.js 35366 > static2/35366_td.html; +echo ' writing array for 35367 '; + node makeTDcells2.js 35367 > static2/35367_td.html; +echo ' writing array for 35368 '; + node makeTDcells2.js 35368 > static2/35368_td.html; +echo ' writing array for 35369 '; + node makeTDcells2.js 35369 > static2/35369_td.html; +echo ' writing array for 35370 '; + node makeTDcells2.js 35370 > static2/35370_td.html; +echo ' writing array for 35371 '; + node makeTDcells2.js 35371 > static2/35371_td.html; +echo ' writing array for 35372 '; + node makeTDcells2.js 35372 > static2/35372_td.html; +echo ' writing array for 35373 '; + node makeTDcells2.js 35373 > static2/35373_td.html; +echo ' writing array for 35374 '; + node makeTDcells2.js 35374 > static2/35374_td.html; +echo ' writing array for 35375 '; + node makeTDcells2.js 35375 > static2/35375_td.html; +echo ' writing array for 35376 '; + node makeTDcells2.js 35376 > static2/35376_td.html; +echo ' writing array for 35377 '; + node makeTDcells2.js 35377 > static2/35377_td.html; +echo ' writing array for 35378 '; + node makeTDcells2.js 35378 > static2/35378_td.html; +echo ' writing array for 35379 '; + node makeTDcells2.js 35379 > static2/35379_td.html; +echo ' writing array for 35380 '; + node makeTDcells2.js 35380 > static2/35380_td.html; +echo ' writing array for 35381 '; + node makeTDcells2.js 35381 > static2/35381_td.html; +echo ' writing array for 35382 '; + node makeTDcells2.js 35382 > static2/35382_td.html; +echo ' writing array for 35383 '; + node makeTDcells2.js 35383 > static2/35383_td.html; +echo ' writing array for 35384 '; + node makeTDcells2.js 35384 > static2/35384_td.html; +echo ' writing array for 35385 '; + node makeTDcells2.js 35385 > static2/35385_td.html; +echo ' writing array for 35386 '; + node makeTDcells2.js 35386 > static2/35386_td.html; +echo ' writing array for 35387 '; + node makeTDcells2.js 35387 > static2/35387_td.html; +echo ' writing array for 35388 '; + node makeTDcells2.js 35388 > static2/35388_td.html; +echo ' writing array for 35389 '; + node makeTDcells2.js 35389 > static2/35389_td.html; +echo ' writing array for 35390 '; + node makeTDcells2.js 35390 > static2/35390_td.html; +echo ' writing array for 35391 '; + node makeTDcells2.js 35391 > static2/35391_td.html; +echo ' writing array for 35392 '; + node makeTDcells2.js 35392 > static2/35392_td.html; +echo ' writing array for 35393 '; + node makeTDcells2.js 35393 > static2/35393_td.html; +echo ' writing array for 35394 '; + node makeTDcells2.js 35394 > static2/35394_td.html; +echo ' writing array for 35395 '; + node makeTDcells2.js 35395 > static2/35395_td.html; +echo ' writing array for 35396 '; + node makeTDcells2.js 35396 > static2/35396_td.html; +echo ' writing array for 35397 '; + node makeTDcells2.js 35397 > static2/35397_td.html; +echo ' writing array for 35398 '; + node makeTDcells2.js 35398 > static2/35398_td.html; +echo ' writing array for 35399 '; + node makeTDcells2.js 35399 > static2/35399_td.html; +echo ' writing array for 35400 '; + node makeTDcells2.js 35400 > static2/35400_td.html; +echo ' writing array for 35401 '; + node makeTDcells2.js 35401 > static2/35401_td.html; +echo ' writing array for 35402 '; + node makeTDcells2.js 35402 > static2/35402_td.html; +echo ' writing array for 35403 '; + node makeTDcells2.js 35403 > static2/35403_td.html; +echo ' writing array for 35404 '; + node makeTDcells2.js 35404 > static2/35404_td.html; +echo ' writing array for 35405 '; + node makeTDcells2.js 35405 > static2/35405_td.html; +echo ' writing array for 35406 '; + node makeTDcells2.js 35406 > static2/35406_td.html; +echo ' writing array for 35407 '; + node makeTDcells2.js 35407 > static2/35407_td.html; +echo ' writing array for 35408 '; + node makeTDcells2.js 35408 > static2/35408_td.html; +echo ' writing array for 35409 '; + node makeTDcells2.js 35409 > static2/35409_td.html; +echo ' writing array for 35410 '; + node makeTDcells2.js 35410 > static2/35410_td.html; +echo ' writing array for 35411 '; + node makeTDcells2.js 35411 > static2/35411_td.html; +echo ' writing array for 35412 '; + node makeTDcells2.js 35412 > static2/35412_td.html; +echo ' writing array for 35413 '; + node makeTDcells2.js 35413 > static2/35413_td.html; +echo ' writing array for 35414 '; + node makeTDcells2.js 35414 > static2/35414_td.html; +echo ' writing array for 35415 '; + node makeTDcells2.js 35415 > static2/35415_td.html; +echo ' writing array for 35416 '; + node makeTDcells2.js 35416 > static2/35416_td.html; +echo ' writing array for 35417 '; + node makeTDcells2.js 35417 > static2/35417_td.html; +echo ' writing array for 35418 '; + node makeTDcells2.js 35418 > static2/35418_td.html; +echo ' writing array for 35419 '; + node makeTDcells2.js 35419 > static2/35419_td.html; +echo ' writing array for 35420 '; + node makeTDcells2.js 35420 > static2/35420_td.html; +echo ' writing array for 35421 '; + node makeTDcells2.js 35421 > static2/35421_td.html; +echo ' writing array for 35422 '; + node makeTDcells2.js 35422 > static2/35422_td.html; +echo ' writing array for 35423 '; + node makeTDcells2.js 35423 > static2/35423_td.html; +echo ' writing array for 35424 '; + node makeTDcells2.js 35424 > static2/35424_td.html; +echo ' writing array for 35425 '; + node makeTDcells2.js 35425 > static2/35425_td.html; +echo ' writing array for 35426 '; + node makeTDcells2.js 35426 > static2/35426_td.html; +echo ' writing array for 35427 '; + node makeTDcells2.js 35427 > static2/35427_td.html; +echo ' writing array for 35428 '; + node makeTDcells2.js 35428 > static2/35428_td.html; +echo ' writing array for 35429 '; + node makeTDcells2.js 35429 > static2/35429_td.html; +echo ' writing array for 35430 '; + node makeTDcells2.js 35430 > static2/35430_td.html; +echo ' writing array for 35431 '; + node makeTDcells2.js 35431 > static2/35431_td.html; +echo ' writing array for 35432 '; + node makeTDcells2.js 35432 > static2/35432_td.html; +echo ' writing array for 35433 '; + node makeTDcells2.js 35433 > static2/35433_td.html; +echo ' writing array for 35434 '; + node makeTDcells2.js 35434 > static2/35434_td.html; +echo ' writing array for 35435 '; + node makeTDcells2.js 35435 > static2/35435_td.html; +echo ' writing array for 35436 '; + node makeTDcells2.js 35436 > static2/35436_td.html; +echo ' writing array for 35437 '; + node makeTDcells2.js 35437 > static2/35437_td.html; +echo ' writing array for 35438 '; + node makeTDcells2.js 35438 > static2/35438_td.html; +echo ' writing array for 35439 '; + node makeTDcells2.js 35439 > static2/35439_td.html; +echo ' writing array for 35440 '; + node makeTDcells2.js 35440 > static2/35440_td.html; +echo ' writing array for 35441 '; + node makeTDcells2.js 35441 > static2/35441_td.html; +echo ' writing array for 35442 '; + node makeTDcells2.js 35442 > static2/35442_td.html; +echo ' writing array for 35443 '; + node makeTDcells2.js 35443 > static2/35443_td.html; +echo ' writing array for 35444 '; + node makeTDcells2.js 35444 > static2/35444_td.html; +echo ' writing array for 35445 '; + node makeTDcells2.js 35445 > static2/35445_td.html; +echo ' writing array for 35446 '; + node makeTDcells2.js 35446 > static2/35446_td.html; +echo ' writing array for 35447 '; + node makeTDcells2.js 35447 > static2/35447_td.html; +echo ' writing array for 35448 '; + node makeTDcells2.js 35448 > static2/35448_td.html; +echo ' writing array for 35449 '; + node makeTDcells2.js 35449 > static2/35449_td.html; +echo ' writing array for 35450 '; + node makeTDcells2.js 35450 > static2/35450_td.html; +echo ' writing array for 35468 '; + node makeTDcells2.js 35468 > static2/35468_td.html; +echo ' writing array for 35469 '; + node makeTDcells2.js 35469 > static2/35469_td.html; +echo ' writing array for 35470 '; + node makeTDcells2.js 35470 > static2/35470_td.html; +echo ' writing array for 35471 '; + node makeTDcells2.js 35471 > static2/35471_td.html; +echo ' writing array for 35472 '; + node makeTDcells2.js 35472 > static2/35472_td.html; +echo ' writing array for 35473 '; + node makeTDcells2.js 35473 > static2/35473_td.html; +echo ' writing array for 35474 '; + node makeTDcells2.js 35474 > static2/35474_td.html; +echo ' writing array for 35480 '; + node makeTDcells2.js 35480 > static2/35480_td.html; +echo ' writing array for 35482 '; + node makeTDcells2.js 35482 > static2/35482_td.html; +echo ' writing array for 35483 '; + node makeTDcells2.js 35483 > static2/35483_td.html; +echo ' writing array for 35484 '; + node makeTDcells2.js 35484 > static2/35484_td.html; +echo ' writing array for 35485 '; + node makeTDcells2.js 35485 > static2/35485_td.html; +echo ' writing array for 35486 '; + node makeTDcells2.js 35486 > static2/35486_td.html; +echo ' writing array for 35487 '; + node makeTDcells2.js 35487 > static2/35487_td.html; +echo ' writing array for 35488 '; + node makeTDcells2.js 35488 > static2/35488_td.html; +echo ' writing array for 35489 '; + node makeTDcells2.js 35489 > static2/35489_td.html; +echo ' writing array for 35490 '; + node makeTDcells2.js 35490 > static2/35490_td.html; +echo ' writing array for 35491 '; + node makeTDcells2.js 35491 > static2/35491_td.html; +echo ' writing array for 35492 '; + node makeTDcells2.js 35492 > static2/35492_td.html; +echo ' writing array for 35493 '; + node makeTDcells2.js 35493 > static2/35493_td.html; +echo ' writing array for 35495 '; + node makeTDcells2.js 35495 > static2/35495_td.html; +echo ' writing array for 35497 '; + node makeTDcells2.js 35497 > static2/35497_td.html; +echo ' writing array for 35498 '; + node makeTDcells2.js 35498 > static2/35498_td.html; +echo ' writing array for 35499 '; + node makeTDcells2.js 35499 > static2/35499_td.html; +echo ' writing array for 35500 '; + node makeTDcells2.js 35500 > static2/35500_td.html; +echo ' writing array for 35501 '; + node makeTDcells2.js 35501 > static2/35501_td.html; +echo ' writing array for 35502 '; + node makeTDcells2.js 35502 > static2/35502_td.html; +echo ' writing array for 35503 '; + node makeTDcells2.js 35503 > static2/35503_td.html; +echo ' writing array for 35504 '; + node makeTDcells2.js 35504 > static2/35504_td.html; +echo ' writing array for 35505 '; + node makeTDcells2.js 35505 > static2/35505_td.html; +echo ' writing array for 35507 '; + node makeTDcells2.js 35507 > static2/35507_td.html; +echo ' writing array for 35509 '; + node makeTDcells2.js 35509 > static2/35509_td.html; +echo ' writing array for 35510 '; + node makeTDcells2.js 35510 > static2/35510_td.html; +echo ' writing array for 35514 '; + node makeTDcells2.js 35514 > static2/35514_td.html; +echo ' writing array for 35515 '; + node makeTDcells2.js 35515 > static2/35515_td.html; +echo ' writing array for 35517 '; + node makeTDcells2.js 35517 > static2/35517_td.html; +echo ' writing array for 35518 '; + node makeTDcells2.js 35518 > static2/35518_td.html; +echo ' writing array for 35519 '; + node makeTDcells2.js 35519 > static2/35519_td.html; +echo ' writing array for 35520 '; + node makeTDcells2.js 35520 > static2/35520_td.html; +echo ' writing array for 35521 '; + node makeTDcells2.js 35521 > static2/35521_td.html; +echo ' writing array for 35522 '; + node makeTDcells2.js 35522 > static2/35522_td.html; +echo ' writing array for 35524 '; + node makeTDcells2.js 35524 > static2/35524_td.html; +echo ' writing array for 35525 '; + node makeTDcells2.js 35525 > static2/35525_td.html; +echo ' writing array for 35529 '; + node makeTDcells2.js 35529 > static2/35529_td.html; +echo ' writing array for 35530 '; + node makeTDcells2.js 35530 > static2/35530_td.html; +echo ' writing array for 35532 '; + node makeTDcells2.js 35532 > static2/35532_td.html; +echo ' writing array for 35533 '; + node makeTDcells2.js 35533 > static2/35533_td.html; +echo ' writing array for 35534 '; + node makeTDcells2.js 35534 > static2/35534_td.html; +echo ' writing array for 35535 '; + node makeTDcells2.js 35535 > static2/35535_td.html; +echo ' writing array for 35536 '; + node makeTDcells2.js 35536 > static2/35536_td.html; +echo ' writing array for 35537 '; + node makeTDcells2.js 35537 > static2/35537_td.html; +echo ' writing array for 35538 '; + node makeTDcells2.js 35538 > static2/35538_td.html; +echo ' writing array for 35539 '; + node makeTDcells2.js 35539 > static2/35539_td.html; +echo ' writing array for 35540 '; + node makeTDcells2.js 35540 > static2/35540_td.html; +echo ' writing array for 35541 '; + node makeTDcells2.js 35541 > static2/35541_td.html; +echo ' writing array for 35542 '; + node makeTDcells2.js 35542 > static2/35542_td.html; +echo ' writing array for 35543 '; + node makeTDcells2.js 35543 > static2/35543_td.html; +echo ' writing array for 35544 '; + node makeTDcells2.js 35544 > static2/35544_td.html; +echo ' writing array for 35545 '; + node makeTDcells2.js 35545 > static2/35545_td.html; +echo ' writing array for 35547 '; + node makeTDcells2.js 35547 > static2/35547_td.html; +echo ' writing array for 35548 '; + node makeTDcells2.js 35548 > static2/35548_td.html; +echo ' writing array for 35549 '; + node makeTDcells2.js 35549 > static2/35549_td.html; +echo ' writing array for 35550 '; + node makeTDcells2.js 35550 > static2/35550_td.html; +echo ' writing array for 35551 '; + node makeTDcells2.js 35551 > static2/35551_td.html; +echo ' writing array for 35552 '; + node makeTDcells2.js 35552 > static2/35552_td.html; +echo ' writing array for 35553 '; + node makeTDcells2.js 35553 > static2/35553_td.html; +echo ' writing array for 35554 '; + node makeTDcells2.js 35554 > static2/35554_td.html; +echo ' writing array for 35555 '; + node makeTDcells2.js 35555 > static2/35555_td.html; +echo ' writing array for 35556 '; + node makeTDcells2.js 35556 > static2/35556_td.html; +echo ' writing array for 35557 '; + node makeTDcells2.js 35557 > static2/35557_td.html; +echo ' writing array for 35558 '; + node makeTDcells2.js 35558 > static2/35558_td.html; +echo ' writing array for 35559 '; + node makeTDcells2.js 35559 > static2/35559_td.html; +echo ' writing array for 35560 '; + node makeTDcells2.js 35560 > static2/35560_td.html; +echo ' writing array for 35561 '; + node makeTDcells2.js 35561 > static2/35561_td.html; +echo ' writing array for 35562 '; + node makeTDcells2.js 35562 > static2/35562_td.html; +echo ' writing array for 35563 '; + node makeTDcells2.js 35563 > static2/35563_td.html; +echo ' writing array for 35564 '; + node makeTDcells2.js 35564 > static2/35564_td.html; +echo ' writing array for 35565 '; + node makeTDcells2.js 35565 > static2/35565_td.html; +echo ' writing array for 35566 '; + node makeTDcells2.js 35566 > static2/35566_td.html; +echo ' writing array for 35567 '; + node makeTDcells2.js 35567 > static2/35567_td.html; +echo ' writing array for 35568 '; + node makeTDcells2.js 35568 > static2/35568_td.html; +echo ' writing array for 35569 '; + node makeTDcells2.js 35569 > static2/35569_td.html; +echo ' writing array for 35570 '; + node makeTDcells2.js 35570 > static2/35570_td.html; +echo ' writing array for 35571 '; + node makeTDcells2.js 35571 > static2/35571_td.html; +echo ' writing array for 35572 '; + node makeTDcells2.js 35572 > static2/35572_td.html; +echo ' writing array for 35573 '; + node makeTDcells2.js 35573 > static2/35573_td.html; +echo ' writing array for 35574 '; + node makeTDcells2.js 35574 > static2/35574_td.html; +echo ' writing array for 35575 '; + node makeTDcells2.js 35575 > static2/35575_td.html; +echo ' writing array for 35576 '; + node makeTDcells2.js 35576 > static2/35576_td.html; +echo ' writing array for 35577 '; + node makeTDcells2.js 35577 > static2/35577_td.html; +echo ' writing array for 35578 '; + node makeTDcells2.js 35578 > static2/35578_td.html; +echo ' writing array for 35579 '; + node makeTDcells2.js 35579 > static2/35579_td.html; +echo ' writing array for 35580 '; + node makeTDcells2.js 35580 > static2/35580_td.html; +echo ' writing array for 35581 '; + node makeTDcells2.js 35581 > static2/35581_td.html; +echo ' writing array for 35582 '; + node makeTDcells2.js 35582 > static2/35582_td.html; +echo ' writing array for 35583 '; + node makeTDcells2.js 35583 > static2/35583_td.html; +echo ' writing array for 35584 '; + node makeTDcells2.js 35584 > static2/35584_td.html; +echo ' writing array for 35585 '; + node makeTDcells2.js 35585 > static2/35585_td.html; +echo ' writing array for 35586 '; + node makeTDcells2.js 35586 > static2/35586_td.html; +echo ' writing array for 35587 '; + node makeTDcells2.js 35587 > static2/35587_td.html; +echo ' writing array for 35588 '; + node makeTDcells2.js 35588 > static2/35588_td.html; +echo ' writing array for 35589 '; + node makeTDcells2.js 35589 > static2/35589_td.html; +echo ' writing array for 35590 '; + node makeTDcells2.js 35590 > static2/35590_td.html; +echo ' writing array for 35591 '; + node makeTDcells2.js 35591 > static2/35591_td.html; +echo ' writing array for 35592 '; + node makeTDcells2.js 35592 > static2/35592_td.html; +echo ' writing array for 35593 '; + node makeTDcells2.js 35593 > static2/35593_td.html; +echo ' writing array for 35594 '; + node makeTDcells2.js 35594 > static2/35594_td.html; +echo ' writing array for 35595 '; + node makeTDcells2.js 35595 > static2/35595_td.html; +echo ' writing array for 35596 '; + node makeTDcells2.js 35596 > static2/35596_td.html; +echo ' writing array for 35597 '; + node makeTDcells2.js 35597 > static2/35597_td.html; +echo ' writing array for 35598 '; + node makeTDcells2.js 35598 > static2/35598_td.html; +echo ' writing array for 35599 '; + node makeTDcells2.js 35599 > static2/35599_td.html; +echo ' writing array for 35600 '; + node makeTDcells2.js 35600 > static2/35600_td.html; +echo ' writing array for 35602 '; + node makeTDcells2.js 35602 > static2/35602_td.html; +echo ' writing array for 35603 '; + node makeTDcells2.js 35603 > static2/35603_td.html; +echo ' writing array for 35604 '; + node makeTDcells2.js 35604 > static2/35604_td.html; +echo ' writing array for 35605 '; + node makeTDcells2.js 35605 > static2/35605_td.html; +echo ' writing array for 35606 '; + node makeTDcells2.js 35606 > static2/35606_td.html; +echo ' writing array for 35607 '; + node makeTDcells2.js 35607 > static2/35607_td.html; +echo ' writing array for 35608 '; + node makeTDcells2.js 35608 > static2/35608_td.html; +echo ' writing array for 35612 '; + node makeTDcells2.js 35612 > static2/35612_td.html; +echo ' writing array for 35613 '; + node makeTDcells2.js 35613 > static2/35613_td.html; +echo ' writing array for 35614 '; + node makeTDcells2.js 35614 > static2/35614_td.html; +echo ' writing array for 35615 '; + node makeTDcells2.js 35615 > static2/35615_td.html; +echo ' writing array for 35616 '; + node makeTDcells2.js 35616 > static2/35616_td.html; +echo ' writing array for 35617 '; + node makeTDcells2.js 35617 > static2/35617_td.html; +echo ' writing array for 35618 '; + node makeTDcells2.js 35618 > static2/35618_td.html; +echo ' writing array for 35619 '; + node makeTDcells2.js 35619 > static2/35619_td.html; +echo ' writing array for 35620 '; + node makeTDcells2.js 35620 > static2/35620_td.html; +echo ' writing array for 35621 '; + node makeTDcells2.js 35621 > static2/35621_td.html; +echo ' writing array for 35622 '; + node makeTDcells2.js 35622 > static2/35622_td.html; +echo ' writing array for 35623 '; + node makeTDcells2.js 35623 > static2/35623_td.html; +echo ' writing array for 35624 '; + node makeTDcells2.js 35624 > static2/35624_td.html; +echo ' writing array for 35625 '; + node makeTDcells2.js 35625 > static2/35625_td.html; +echo ' writing array for 35626 '; + node makeTDcells2.js 35626 > static2/35626_td.html; +echo ' writing array for 35627 '; + node makeTDcells2.js 35627 > static2/35627_td.html; +echo ' writing array for 35628 '; + node makeTDcells2.js 35628 > static2/35628_td.html; +echo ' writing array for 35629 '; + node makeTDcells2.js 35629 > static2/35629_td.html; +echo ' writing array for 35630 '; + node makeTDcells2.js 35630 > static2/35630_td.html; +echo ' writing array for 35631 '; + node makeTDcells2.js 35631 > static2/35631_td.html; +echo ' writing array for 35632 '; + node makeTDcells2.js 35632 > static2/35632_td.html; +echo ' writing array for 35633 '; + node makeTDcells2.js 35633 > static2/35633_td.html; +echo ' writing array for 35634 '; + node makeTDcells2.js 35634 > static2/35634_td.html; +echo ' writing array for 35635 '; + node makeTDcells2.js 35635 > static2/35635_td.html; +echo ' writing array for 35636 '; + node makeTDcells2.js 35636 > static2/35636_td.html; +echo ' writing array for 35637 '; + node makeTDcells2.js 35637 > static2/35637_td.html; +echo ' writing array for 35638 '; + node makeTDcells2.js 35638 > static2/35638_td.html; +echo ' writing array for 35639 '; + node makeTDcells2.js 35639 > static2/35639_td.html; +echo ' writing array for 35640 '; + node makeTDcells2.js 35640 > static2/35640_td.html; +echo ' writing array for 35641 '; + node makeTDcells2.js 35641 > static2/35641_td.html; +echo ' writing array for 35642 '; + node makeTDcells2.js 35642 > static2/35642_td.html; +echo ' writing array for 35643 '; + node makeTDcells2.js 35643 > static2/35643_td.html; +echo ' writing array for 35644 '; + node makeTDcells2.js 35644 > static2/35644_td.html; +echo ' writing array for 35645 '; + node makeTDcells2.js 35645 > static2/35645_td.html; +echo ' writing array for 35646 '; + node makeTDcells2.js 35646 > static2/35646_td.html; +echo ' writing array for 35647 '; + node makeTDcells2.js 35647 > static2/35647_td.html; +echo ' writing array for 35648 '; + node makeTDcells2.js 35648 > static2/35648_td.html; +echo ' writing array for 35649 '; + node makeTDcells2.js 35649 > static2/35649_td.html; +echo ' writing array for 35650 '; + node makeTDcells2.js 35650 > static2/35650_td.html; +echo ' writing array for 35651 '; + node makeTDcells2.js 35651 > static2/35651_td.html; +echo ' writing array for 35652 '; + node makeTDcells2.js 35652 > static2/35652_td.html; +echo ' writing array for 35653 '; + node makeTDcells2.js 35653 > static2/35653_td.html; +echo ' writing array for 35654 '; + node makeTDcells2.js 35654 > static2/35654_td.html; +echo ' writing array for 35655 '; + node makeTDcells2.js 35655 > static2/35655_td.html; +echo ' writing array for 35657 '; + node makeTDcells2.js 35657 > static2/35657_td.html; +echo ' writing array for 35658 '; + node makeTDcells2.js 35658 > static2/35658_td.html; +echo ' writing array for 35659 '; + node makeTDcells2.js 35659 > static2/35659_td.html; +echo ' writing array for 35660 '; + node makeTDcells2.js 35660 > static2/35660_td.html; +echo ' writing array for 35662 '; + node makeTDcells2.js 35662 > static2/35662_td.html; +echo ' writing array for 35664 '; + node makeTDcells2.js 35664 > static2/35664_td.html; +echo ' writing array for 35665 '; + node makeTDcells2.js 35665 > static2/35665_td.html; +echo ' writing array for 35666 '; + node makeTDcells2.js 35666 > static2/35666_td.html; +echo ' writing array for 35667 '; + node makeTDcells2.js 35667 > static2/35667_td.html; +echo ' writing array for 35668 '; + node makeTDcells2.js 35668 > static2/35668_td.html; +echo ' writing array for 35669 '; + node makeTDcells2.js 35669 > static2/35669_td.html; +echo ' writing array for 35670 '; + node makeTDcells2.js 35670 > static2/35670_td.html; +echo ' writing array for 35671 '; + node makeTDcells2.js 35671 > static2/35671_td.html; +echo ' writing array for 35672 '; + node makeTDcells2.js 35672 > static2/35672_td.html; +echo ' writing array for 35673 '; + node makeTDcells2.js 35673 > static2/35673_td.html; +echo ' writing array for 35674 '; + node makeTDcells2.js 35674 > static2/35674_td.html; +echo ' writing array for 35675 '; + node makeTDcells2.js 35675 > static2/35675_td.html; +echo ' writing array for 35676 '; + node makeTDcells2.js 35676 > static2/35676_td.html; +echo ' writing array for 35677 '; + node makeTDcells2.js 35677 > static2/35677_td.html; +echo ' writing array for 35678 '; + node makeTDcells2.js 35678 > static2/35678_td.html; +echo ' writing array for 35679 '; + node makeTDcells2.js 35679 > static2/35679_td.html; +echo ' writing array for 35680 '; + node makeTDcells2.js 35680 > static2/35680_td.html; +echo ' writing array for 35681 '; + node makeTDcells2.js 35681 > static2/35681_td.html; +echo ' writing array for 35682 '; + node makeTDcells2.js 35682 > static2/35682_td.html; +echo ' writing array for 35683 '; + node makeTDcells2.js 35683 > static2/35683_td.html; +echo ' writing array for 35684 '; + node makeTDcells2.js 35684 > static2/35684_td.html; +echo ' writing array for 35685 '; + node makeTDcells2.js 35685 > static2/35685_td.html; +echo ' writing array for 35686 '; + node makeTDcells2.js 35686 > static2/35686_td.html; +echo ' writing array for 35687 '; + node makeTDcells2.js 35687 > static2/35687_td.html; +echo ' writing array for 35688 '; + node makeTDcells2.js 35688 > static2/35688_td.html; +echo ' writing array for 35689 '; + node makeTDcells2.js 35689 > static2/35689_td.html; +echo ' writing array for 35690 '; + node makeTDcells2.js 35690 > static2/35690_td.html; +echo ' writing array for 35691 '; + node makeTDcells2.js 35691 > static2/35691_td.html; +echo ' writing array for 35692 '; + node makeTDcells2.js 35692 > static2/35692_td.html; +echo ' writing array for 35693 '; + node makeTDcells2.js 35693 > static2/35693_td.html; +echo ' writing array for 35694 '; + node makeTDcells2.js 35694 > static2/35694_td.html; +echo ' writing array for 35695 '; + node makeTDcells2.js 35695 > static2/35695_td.html; +echo ' writing array for 35696 '; + node makeTDcells2.js 35696 > static2/35696_td.html; +echo ' writing array for 35697 '; + node makeTDcells2.js 35697 > static2/35697_td.html; +echo ' writing array for 35698 '; + node makeTDcells2.js 35698 > static2/35698_td.html; +echo ' writing array for 35699 '; + node makeTDcells2.js 35699 > static2/35699_td.html; +echo ' writing array for 35700 '; + node makeTDcells2.js 35700 > static2/35700_td.html; +echo ' writing array for 35701 '; + node makeTDcells2.js 35701 > static2/35701_td.html; +echo ' writing array for 35702 '; + node makeTDcells2.js 35702 > static2/35702_td.html; +echo ' writing array for 35703 '; + node makeTDcells2.js 35703 > static2/35703_td.html; +echo ' writing array for 35704 '; + node makeTDcells2.js 35704 > static2/35704_td.html; +echo ' writing array for 35705 '; + node makeTDcells2.js 35705 > static2/35705_td.html; +echo ' writing array for 35706 '; + node makeTDcells2.js 35706 > static2/35706_td.html; +echo ' writing array for 35707 '; + node makeTDcells2.js 35707 > static2/35707_td.html; +echo ' writing array for 35708 '; + node makeTDcells2.js 35708 > static2/35708_td.html; +echo ' writing array for 35709 '; + node makeTDcells2.js 35709 > static2/35709_td.html; +echo ' writing array for 35710 '; + node makeTDcells2.js 35710 > static2/35710_td.html; +echo ' writing array for 35711 '; + node makeTDcells2.js 35711 > static2/35711_td.html; +echo ' writing array for 35712 '; + node makeTDcells2.js 35712 > static2/35712_td.html; +echo ' writing array for 35713 '; + node makeTDcells2.js 35713 > static2/35713_td.html; +echo ' writing array for 35714 '; + node makeTDcells2.js 35714 > static2/35714_td.html; +echo ' writing array for 35715 '; + node makeTDcells2.js 35715 > static2/35715_td.html; +echo ' writing array for 35716 '; + node makeTDcells2.js 35716 > static2/35716_td.html; +echo ' writing array for 35717 '; + node makeTDcells2.js 35717 > static2/35717_td.html; +echo ' writing array for 35718 '; + node makeTDcells2.js 35718 > static2/35718_td.html; +echo ' writing array for 35719 '; + node makeTDcells2.js 35719 > static2/35719_td.html; +echo ' writing array for 35720 '; + node makeTDcells2.js 35720 > static2/35720_td.html; +echo ' writing array for 35721 '; + node makeTDcells2.js 35721 > static2/35721_td.html; +echo ' writing array for 35722 '; + node makeTDcells2.js 35722 > static2/35722_td.html; +echo ' writing array for 35723 '; + node makeTDcells2.js 35723 > static2/35723_td.html; +echo ' writing array for 35724 '; + node makeTDcells2.js 35724 > static2/35724_td.html; +echo ' writing array for 35725 '; + node makeTDcells2.js 35725 > static2/35725_td.html; +echo ' writing array for 35726 '; + node makeTDcells2.js 35726 > static2/35726_td.html; +echo ' writing array for 35727 '; + node makeTDcells2.js 35727 > static2/35727_td.html; +echo ' writing array for 35728 '; + node makeTDcells2.js 35728 > static2/35728_td.html; +echo ' writing array for 35729 '; + node makeTDcells2.js 35729 > static2/35729_td.html; +echo ' writing array for 35730 '; + node makeTDcells2.js 35730 > static2/35730_td.html; +echo ' writing array for 35731 '; + node makeTDcells2.js 35731 > static2/35731_td.html; +echo ' writing array for 35733 '; + node makeTDcells2.js 35733 > static2/35733_td.html; +echo ' writing array for 35734 '; + node makeTDcells2.js 35734 > static2/35734_td.html; +echo ' writing array for 35735 '; + node makeTDcells2.js 35735 > static2/35735_td.html; +echo ' writing array for 35736 '; + node makeTDcells2.js 35736 > static2/35736_td.html; +echo ' writing array for 35737 '; + node makeTDcells2.js 35737 > static2/35737_td.html; +echo ' writing array for 35738 '; + node makeTDcells2.js 35738 > static2/35738_td.html; +echo ' writing array for 35739 '; + node makeTDcells2.js 35739 > static2/35739_td.html; +echo ' writing array for 35740 '; + node makeTDcells2.js 35740 > static2/35740_td.html; +echo ' writing array for 35741 '; + node makeTDcells2.js 35741 > static2/35741_td.html; +echo ' writing array for 35742 '; + node makeTDcells2.js 35742 > static2/35742_td.html; +echo ' writing array for 35743 '; + node makeTDcells2.js 35743 > static2/35743_td.html; +echo ' writing array for 35744 '; + node makeTDcells2.js 35744 > static2/35744_td.html; +echo ' writing array for 35745 '; + node makeTDcells2.js 35745 > static2/35745_td.html; +echo ' writing array for 35746 '; + node makeTDcells2.js 35746 > static2/35746_td.html; +echo ' writing array for 35747 '; + node makeTDcells2.js 35747 > static2/35747_td.html; +echo ' writing array for 35748 '; + node makeTDcells2.js 35748 > static2/35748_td.html; +echo ' writing array for 35749 '; + node makeTDcells2.js 35749 > static2/35749_td.html; +echo ' writing array for 35750 '; + node makeTDcells2.js 35750 > static2/35750_td.html; +echo ' writing array for 35751 '; + node makeTDcells2.js 35751 > static2/35751_td.html; +echo ' writing array for 35752 '; + node makeTDcells2.js 35752 > static2/35752_td.html; +echo ' writing array for 35753 '; + node makeTDcells2.js 35753 > static2/35753_td.html; +echo ' writing array for 35754 '; + node makeTDcells2.js 35754 > static2/35754_td.html; +echo ' writing array for 35756 '; + node makeTDcells2.js 35756 > static2/35756_td.html; +echo ' writing array for 35758 '; + node makeTDcells2.js 35758 > static2/35758_td.html; +echo ' writing array for 35759 '; + node makeTDcells2.js 35759 > static2/35759_td.html; +echo ' writing array for 35760 '; + node makeTDcells2.js 35760 > static2/35760_td.html; +echo ' writing array for 35761 '; + node makeTDcells2.js 35761 > static2/35761_td.html; +echo ' writing array for 35762 '; + node makeTDcells2.js 35762 > static2/35762_td.html; +echo ' writing array for 35763 '; + node makeTDcells2.js 35763 > static2/35763_td.html; +echo ' writing array for 35764 '; + node makeTDcells2.js 35764 > static2/35764_td.html; +echo ' writing array for 35765 '; + node makeTDcells2.js 35765 > static2/35765_td.html; +echo ' writing array for 35766 '; + node makeTDcells2.js 35766 > static2/35766_td.html; +echo ' writing array for 35767 '; + node makeTDcells2.js 35767 > static2/35767_td.html; +echo ' writing array for 35768 '; + node makeTDcells2.js 35768 > static2/35768_td.html; +echo ' writing array for 35769 '; + node makeTDcells2.js 35769 > static2/35769_td.html; +echo ' writing array for 35770 '; + node makeTDcells2.js 35770 > static2/35770_td.html; +echo ' writing array for 35771 '; + node makeTDcells2.js 35771 > static2/35771_td.html; +echo ' writing array for 35772 '; + node makeTDcells2.js 35772 > static2/35772_td.html; +echo ' writing array for 35773 '; + node makeTDcells2.js 35773 > static2/35773_td.html; +echo ' writing array for 35774 '; + node makeTDcells2.js 35774 > static2/35774_td.html; +echo ' writing array for 35775 '; + node makeTDcells2.js 35775 > static2/35775_td.html; +echo ' writing array for 35776 '; + node makeTDcells2.js 35776 > static2/35776_td.html; +echo ' writing array for 35777 '; + node makeTDcells2.js 35777 > static2/35777_td.html; +echo ' writing array for 35778 '; + node makeTDcells2.js 35778 > static2/35778_td.html; +echo ' writing array for 35779 '; + node makeTDcells2.js 35779 > static2/35779_td.html; +echo ' writing array for 35780 '; + node makeTDcells2.js 35780 > static2/35780_td.html; +echo ' writing array for 35781 '; + node makeTDcells2.js 35781 > static2/35781_td.html; +echo ' writing array for 35782 '; + node makeTDcells2.js 35782 > static2/35782_td.html; +echo ' writing array for 35783 '; + node makeTDcells2.js 35783 > static2/35783_td.html; +echo ' writing array for 35784 '; + node makeTDcells2.js 35784 > static2/35784_td.html; +echo ' writing array for 35785 '; + node makeTDcells2.js 35785 > static2/35785_td.html; +echo ' writing array for 35786 '; + node makeTDcells2.js 35786 > static2/35786_td.html; +echo ' writing array for 35787 '; + node makeTDcells2.js 35787 > static2/35787_td.html; +echo ' writing array for 35788 '; + node makeTDcells2.js 35788 > static2/35788_td.html; +echo ' writing array for 35789 '; + node makeTDcells2.js 35789 > static2/35789_td.html; +echo ' writing array for 35790 '; + node makeTDcells2.js 35790 > static2/35790_td.html; +echo ' writing array for 35791 '; + node makeTDcells2.js 35791 > static2/35791_td.html; +echo ' writing array for 35792 '; + node makeTDcells2.js 35792 > static2/35792_td.html; +echo ' writing array for 35793 '; + node makeTDcells2.js 35793 > static2/35793_td.html; +echo ' writing array for 35794 '; + node makeTDcells2.js 35794 > static2/35794_td.html; +echo ' writing array for 35795 '; + node makeTDcells2.js 35795 > static2/35795_td.html; +echo ' writing array for 35796 '; + node makeTDcells2.js 35796 > static2/35796_td.html; +echo ' writing array for 35797 '; + node makeTDcells2.js 35797 > static2/35797_td.html; +echo ' writing array for 35798 '; + node makeTDcells2.js 35798 > static2/35798_td.html; +echo ' writing array for 35799 '; + node makeTDcells2.js 35799 > static2/35799_td.html; +echo ' writing array for 35800 '; + node makeTDcells2.js 35800 > static2/35800_td.html; +echo ' writing array for 35801 '; + node makeTDcells2.js 35801 > static2/35801_td.html; +echo ' writing array for 35802 '; + node makeTDcells2.js 35802 > static2/35802_td.html; +echo ' writing array for 35803 '; + node makeTDcells2.js 35803 > static2/35803_td.html; +echo ' writing array for 35804 '; + node makeTDcells2.js 35804 > static2/35804_td.html; +echo ' writing array for 35805 '; + node makeTDcells2.js 35805 > static2/35805_td.html; +echo ' writing array for 35806 '; + node makeTDcells2.js 35806 > static2/35806_td.html; +echo ' writing array for 35807 '; + node makeTDcells2.js 35807 > static2/35807_td.html; +echo ' writing array for 35808 '; + node makeTDcells2.js 35808 > static2/35808_td.html; +echo ' writing array for 35809 '; + node makeTDcells2.js 35809 > static2/35809_td.html; +echo ' writing array for 35810 '; + node makeTDcells2.js 35810 > static2/35810_td.html; +echo ' writing array for 35811 '; + node makeTDcells2.js 35811 > static2/35811_td.html; +echo ' writing array for 35812 '; + node makeTDcells2.js 35812 > static2/35812_td.html; +echo ' writing array for 35813 '; + node makeTDcells2.js 35813 > static2/35813_td.html; +echo ' writing array for 35814 '; + node makeTDcells2.js 35814 > static2/35814_td.html; +echo ' writing array for 35815 '; + node makeTDcells2.js 35815 > static2/35815_td.html; +echo ' writing array for 35816 '; + node makeTDcells2.js 35816 > static2/35816_td.html; +echo ' writing array for 35817 '; + node makeTDcells2.js 35817 > static2/35817_td.html; +echo ' writing array for 35818 '; + node makeTDcells2.js 35818 > static2/35818_td.html; +echo ' writing array for 35819 '; + node makeTDcells2.js 35819 > static2/35819_td.html; +echo ' writing array for 35820 '; + node makeTDcells2.js 35820 > static2/35820_td.html; +echo ' writing array for 35821 '; + node makeTDcells2.js 35821 > static2/35821_td.html; +echo ' writing array for 35822 '; + node makeTDcells2.js 35822 > static2/35822_td.html; +echo ' writing array for 35823 '; + node makeTDcells2.js 35823 > static2/35823_td.html; +echo ' writing array for 35824 '; + node makeTDcells2.js 35824 > static2/35824_td.html; +echo ' writing array for 35825 '; + node makeTDcells2.js 35825 > static2/35825_td.html; +echo ' writing array for 35826 '; + node makeTDcells2.js 35826 > static2/35826_td.html; +echo ' writing array for 35827 '; + node makeTDcells2.js 35827 > static2/35827_td.html; +echo ' writing array for 35828 '; + node makeTDcells2.js 35828 > static2/35828_td.html; +echo ' writing array for 35829 '; + node makeTDcells2.js 35829 > static2/35829_td.html; +echo ' writing array for 35830 '; + node makeTDcells2.js 35830 > static2/35830_td.html; +echo ' writing array for 35831 '; + node makeTDcells2.js 35831 > static2/35831_td.html; +echo ' writing array for 35832 '; + node makeTDcells2.js 35832 > static2/35832_td.html; +echo ' writing array for 35833 '; + node makeTDcells2.js 35833 > static2/35833_td.html; +echo ' writing array for 35834 '; + node makeTDcells2.js 35834 > static2/35834_td.html; +echo ' writing array for 35835 '; + node makeTDcells2.js 35835 > static2/35835_td.html; +echo ' writing array for 35836 '; + node makeTDcells2.js 35836 > static2/35836_td.html; +echo ' writing array for 35837 '; + node makeTDcells2.js 35837 > static2/35837_td.html; +echo ' writing array for 35838 '; + node makeTDcells2.js 35838 > static2/35838_td.html; +echo ' writing array for 35839 '; + node makeTDcells2.js 35839 > static2/35839_td.html; +echo ' writing array for 35840 '; + node makeTDcells2.js 35840 > static2/35840_td.html; +echo ' writing array for 35841 '; + node makeTDcells2.js 35841 > static2/35841_td.html; +echo ' writing array for 35842 '; + node makeTDcells2.js 35842 > static2/35842_td.html; +echo ' writing array for 35843 '; + node makeTDcells2.js 35843 > static2/35843_td.html; +echo ' writing array for 35845 '; + node makeTDcells2.js 35845 > static2/35845_td.html; +echo ' writing array for 35846 '; + node makeTDcells2.js 35846 > static2/35846_td.html; +echo ' writing array for 35847 '; + node makeTDcells2.js 35847 > static2/35847_td.html; +echo ' writing array for 35848 '; + node makeTDcells2.js 35848 > static2/35848_td.html; +echo ' writing array for 35849 '; + node makeTDcells2.js 35849 > static2/35849_td.html; +echo ' writing array for 35850 '; + node makeTDcells2.js 35850 > static2/35850_td.html; +echo ' writing array for 35851 '; + node makeTDcells2.js 35851 > static2/35851_td.html; +echo ' writing array for 35852 '; + node makeTDcells2.js 35852 > static2/35852_td.html; +echo ' writing array for 35853 '; + node makeTDcells2.js 35853 > static2/35853_td.html; +echo ' writing array for 35856 '; + node makeTDcells2.js 35856 > static2/35856_td.html; +echo ' writing array for 35857 '; + node makeTDcells2.js 35857 > static2/35857_td.html; +echo ' writing array for 35858 '; + node makeTDcells2.js 35858 > static2/35858_td.html; +echo ' writing array for 35859 '; + node makeTDcells2.js 35859 > static2/35859_td.html; +echo ' writing array for 35860 '; + node makeTDcells2.js 35860 > static2/35860_td.html; +echo ' writing array for 35861 '; + node makeTDcells2.js 35861 > static2/35861_td.html; +echo ' writing array for 35862 '; + node makeTDcells2.js 35862 > static2/35862_td.html; +echo ' writing array for 35863 '; + node makeTDcells2.js 35863 > static2/35863_td.html; +echo ' writing array for 35864 '; + node makeTDcells2.js 35864 > static2/35864_td.html; +echo ' writing array for 35865 '; + node makeTDcells2.js 35865 > static2/35865_td.html; +echo ' writing array for 35866 '; + node makeTDcells2.js 35866 > static2/35866_td.html; +echo ' writing array for 35867 '; + node makeTDcells2.js 35867 > static2/35867_td.html; +echo ' writing array for 35868 '; + node makeTDcells2.js 35868 > static2/35868_td.html; +echo ' writing array for 35869 '; + node makeTDcells2.js 35869 > static2/35869_td.html; +echo ' writing array for 35870 '; + node makeTDcells2.js 35870 > static2/35870_td.html; +echo ' writing array for 35871 '; + node makeTDcells2.js 35871 > static2/35871_td.html; +echo ' writing array for 35872 '; + node makeTDcells2.js 35872 > static2/35872_td.html; +echo ' writing array for 35873 '; + node makeTDcells2.js 35873 > static2/35873_td.html; +echo ' writing array for 35874 '; + node makeTDcells2.js 35874 > static2/35874_td.html; +echo ' writing array for 35875 '; + node makeTDcells2.js 35875 > static2/35875_td.html; +echo ' writing array for 35876 '; + node makeTDcells2.js 35876 > static2/35876_td.html; +echo ' writing array for 35877 '; + node makeTDcells2.js 35877 > static2/35877_td.html; +echo ' writing array for 35878 '; + node makeTDcells2.js 35878 > static2/35878_td.html; +echo ' writing array for 35879 '; + node makeTDcells2.js 35879 > static2/35879_td.html; +echo ' writing array for 35880 '; + node makeTDcells2.js 35880 > static2/35880_td.html; +echo ' writing array for 35881 '; + node makeTDcells2.js 35881 > static2/35881_td.html; +echo ' writing array for 35882 '; + node makeTDcells2.js 35882 > static2/35882_td.html; +echo ' writing array for 35883 '; + node makeTDcells2.js 35883 > static2/35883_td.html; +echo ' writing array for 35884 '; + node makeTDcells2.js 35884 > static2/35884_td.html; +echo ' writing array for 35885 '; + node makeTDcells2.js 35885 > static2/35885_td.html; +echo ' writing array for 35886 '; + node makeTDcells2.js 35886 > static2/35886_td.html; +echo ' writing array for 35887 '; + node makeTDcells2.js 35887 > static2/35887_td.html; +echo ' writing array for 35888 '; + node makeTDcells2.js 35888 > static2/35888_td.html; +echo ' writing array for 35889 '; + node makeTDcells2.js 35889 > static2/35889_td.html; +echo ' writing array for 35890 '; + node makeTDcells2.js 35890 > static2/35890_td.html; +echo ' writing array for 35891 '; + node makeTDcells2.js 35891 > static2/35891_td.html; +echo ' writing array for 35892 '; + node makeTDcells2.js 35892 > static2/35892_td.html; +echo ' writing array for 35893 '; + node makeTDcells2.js 35893 > static2/35893_td.html; +echo ' writing array for 35894 '; + node makeTDcells2.js 35894 > static2/35894_td.html; +echo ' writing array for 35895 '; + node makeTDcells2.js 35895 > static2/35895_td.html; +echo ' writing array for 35896 '; + node makeTDcells2.js 35896 > static2/35896_td.html; +echo ' writing array for 35897 '; + node makeTDcells2.js 35897 > static2/35897_td.html; +echo ' writing array for 35898 '; + node makeTDcells2.js 35898 > static2/35898_td.html; +echo ' writing array for 35899 '; + node makeTDcells2.js 35899 > static2/35899_td.html; +echo ' writing array for 35900 '; + node makeTDcells2.js 35900 > static2/35900_td.html; +echo ' writing array for 35901 '; + node makeTDcells2.js 35901 > static2/35901_td.html; +echo ' writing array for 35902 '; + node makeTDcells2.js 35902 > static2/35902_td.html; +echo ' writing array for 35903 '; + node makeTDcells2.js 35903 > static2/35903_td.html; +echo ' writing array for 35904 '; + node makeTDcells2.js 35904 > static2/35904_td.html; +echo ' writing array for 35905 '; + node makeTDcells2.js 35905 > static2/35905_td.html; +echo ' writing array for 35906 '; + node makeTDcells2.js 35906 > static2/35906_td.html; +echo ' writing array for 35907 '; + node makeTDcells2.js 35907 > static2/35907_td.html; +echo ' writing array for 35908 '; + node makeTDcells2.js 35908 > static2/35908_td.html; +echo ' writing array for 35909 '; + node makeTDcells2.js 35909 > static2/35909_td.html; +echo ' writing array for 35910 '; + node makeTDcells2.js 35910 > static2/35910_td.html; +echo ' writing array for 35911 '; + node makeTDcells2.js 35911 > static2/35911_td.html; +echo ' writing array for 35912 '; + node makeTDcells2.js 35912 > static2/35912_td.html; +echo ' writing array for 35913 '; + node makeTDcells2.js 35913 > static2/35913_td.html; +echo ' writing array for 35915 '; + node makeTDcells2.js 35915 > static2/35915_td.html; +echo ' writing array for 35916 '; + node makeTDcells2.js 35916 > static2/35916_td.html; +echo ' writing array for 35917 '; + node makeTDcells2.js 35917 > static2/35917_td.html; +echo ' writing array for 35918 '; + node makeTDcells2.js 35918 > static2/35918_td.html; +echo ' writing array for 35919 '; + node makeTDcells2.js 35919 > static2/35919_td.html; +echo ' writing array for 35921 '; + node makeTDcells2.js 35921 > static2/35921_td.html; +echo ' writing array for 35922 '; + node makeTDcells2.js 35922 > static2/35922_td.html; +echo ' writing array for 35923 '; + node makeTDcells2.js 35923 > static2/35923_td.html; +echo ' writing array for 35925 '; + node makeTDcells2.js 35925 > static2/35925_td.html; +echo ' writing array for 35926 '; + node makeTDcells2.js 35926 > static2/35926_td.html; +echo ' writing array for 35927 '; + node makeTDcells2.js 35927 > static2/35927_td.html; +echo ' writing array for 35928 '; + node makeTDcells2.js 35928 > static2/35928_td.html; +echo ' writing array for 35929 '; + node makeTDcells2.js 35929 > static2/35929_td.html; +echo ' writing array for 35930 '; + node makeTDcells2.js 35930 > static2/35930_td.html; +echo ' writing array for 35931 '; + node makeTDcells2.js 35931 > static2/35931_td.html; +echo ' writing array for 35932 '; + node makeTDcells2.js 35932 > static2/35932_td.html; +echo ' writing array for 35933 '; + node makeTDcells2.js 35933 > static2/35933_td.html; +echo ' writing array for 35934 '; + node makeTDcells2.js 35934 > static2/35934_td.html; +echo ' writing array for 35935 '; + node makeTDcells2.js 35935 > static2/35935_td.html; +echo ' writing array for 35936 '; + node makeTDcells2.js 35936 > static2/35936_td.html; +echo ' writing array for 35937 '; + node makeTDcells2.js 35937 > static2/35937_td.html; +echo ' writing array for 35938 '; + node makeTDcells2.js 35938 > static2/35938_td.html; +echo ' writing array for 35939 '; + node makeTDcells2.js 35939 > static2/35939_td.html; +echo ' writing array for 35940 '; + node makeTDcells2.js 35940 > static2/35940_td.html; +echo ' writing array for 35941 '; + node makeTDcells2.js 35941 > static2/35941_td.html; +echo ' writing array for 35942 '; + node makeTDcells2.js 35942 > static2/35942_td.html; +echo ' writing array for 35943 '; + node makeTDcells2.js 35943 > static2/35943_td.html; +echo ' writing array for 35944 '; + node makeTDcells2.js 35944 > static2/35944_td.html; +echo ' writing array for 35945 '; + node makeTDcells2.js 35945 > static2/35945_td.html; +echo ' writing array for 35946 '; + node makeTDcells2.js 35946 > static2/35946_td.html; +echo ' writing array for 35947 '; + node makeTDcells2.js 35947 > static2/35947_td.html; +echo ' writing array for 35948 '; + node makeTDcells2.js 35948 > static2/35948_td.html; +echo ' writing array for 35949 '; + node makeTDcells2.js 35949 > static2/35949_td.html; +echo ' writing array for 35950 '; + node makeTDcells2.js 35950 > static2/35950_td.html; +echo ' writing array for 35952 '; + node makeTDcells2.js 35952 > static2/35952_td.html; +echo ' writing array for 35953 '; + node makeTDcells2.js 35953 > static2/35953_td.html; +echo ' writing array for 35954 '; + node makeTDcells2.js 35954 > static2/35954_td.html; +echo ' writing array for 35956 '; + node makeTDcells2.js 35956 > static2/35956_td.html; +echo ' writing array for 35957 '; + node makeTDcells2.js 35957 > static2/35957_td.html; +echo ' writing array for 35958 '; + node makeTDcells2.js 35958 > static2/35958_td.html; +echo ' writing array for 35959 '; + node makeTDcells2.js 35959 > static2/35959_td.html; +echo ' writing array for 35960 '; + node makeTDcells2.js 35960 > static2/35960_td.html; +echo ' writing array for 35961 '; + node makeTDcells2.js 35961 > static2/35961_td.html; +echo ' writing array for 35962 '; + node makeTDcells2.js 35962 > static2/35962_td.html; +echo ' writing array for 35963 '; + node makeTDcells2.js 35963 > static2/35963_td.html; +echo ' writing array for 35964 '; + node makeTDcells2.js 35964 > static2/35964_td.html; +echo ' writing array for 35965 '; + node makeTDcells2.js 35965 > static2/35965_td.html; +echo ' writing array for 35966 '; + node makeTDcells2.js 35966 > static2/35966_td.html; +echo ' writing array for 35979 '; + node makeTDcells2.js 35979 > static2/35979_td.html; +echo ' writing array for 35980 '; + node makeTDcells2.js 35980 > static2/35980_td.html; +echo ' writing array for 35981 '; + node makeTDcells2.js 35981 > static2/35981_td.html; +echo ' writing array for 35982 '; + node makeTDcells2.js 35982 > static2/35982_td.html; +echo ' writing array for 35983 '; + node makeTDcells2.js 35983 > static2/35983_td.html; +echo ' writing array for 35984 '; + node makeTDcells2.js 35984 > static2/35984_td.html; +echo ' writing array for 35985 '; + node makeTDcells2.js 35985 > static2/35985_td.html; +echo ' writing array for 35986 '; + node makeTDcells2.js 35986 > static2/35986_td.html; +echo ' writing array for 35987 '; + node makeTDcells2.js 35987 > static2/35987_td.html; +echo ' writing array for 35988 '; + node makeTDcells2.js 35988 > static2/35988_td.html; +echo ' writing array for 35989 '; + node makeTDcells2.js 35989 > static2/35989_td.html; +echo ' writing array for 35990 '; + node makeTDcells2.js 35990 > static2/35990_td.html; +echo ' writing array for 35991 '; + node makeTDcells2.js 35991 > static2/35991_td.html; +echo ' writing array for 35992 '; + node makeTDcells2.js 35992 > static2/35992_td.html; +echo ' writing array for 35993 '; + node makeTDcells2.js 35993 > static2/35993_td.html; +echo ' writing array for 35994 '; + node makeTDcells2.js 35994 > static2/35994_td.html; +echo ' writing array for 35997 '; + node makeTDcells2.js 35997 > static2/35997_td.html; +echo ' writing array for 35998 '; + node makeTDcells2.js 35998 > static2/35998_td.html; +echo ' writing array for 36000 '; + node makeTDcells2.js 36000 > static2/36000_td.html; +echo ' writing array for 36001 '; + node makeTDcells2.js 36001 > static2/36001_td.html; +echo ' writing array for 36002 '; + node makeTDcells2.js 36002 > static2/36002_td.html; +echo ' writing array for 36003 '; + node makeTDcells2.js 36003 > static2/36003_td.html; +echo ' writing array for 36004 '; + node makeTDcells2.js 36004 > static2/36004_td.html; +echo ' writing array for 36005 '; + node makeTDcells2.js 36005 > static2/36005_td.html; +echo ' writing array for 36006 '; + node makeTDcells2.js 36006 > static2/36006_td.html; +echo ' writing array for 36007 '; + node makeTDcells2.js 36007 > static2/36007_td.html; +echo ' writing array for 36011 '; + node makeTDcells2.js 36011 > static2/36011_td.html; +echo ' writing array for 36013 '; + node makeTDcells2.js 36013 > static2/36013_td.html; +echo ' writing array for 36014 '; + node makeTDcells2.js 36014 > static2/36014_td.html; +echo ' writing array for 36015 '; + node makeTDcells2.js 36015 > static2/36015_td.html; +echo ' writing array for 36017 '; + node makeTDcells2.js 36017 > static2/36017_td.html; +echo ' writing array for 36018 '; + node makeTDcells2.js 36018 > static2/36018_td.html; +echo ' writing array for 36019 '; + node makeTDcells2.js 36019 > static2/36019_td.html; +echo ' writing array for 36020 '; + node makeTDcells2.js 36020 > static2/36020_td.html; +echo ' writing array for 36021 '; + node makeTDcells2.js 36021 > static2/36021_td.html; +echo ' writing array for 36022 '; + node makeTDcells2.js 36022 > static2/36022_td.html; +echo ' writing array for 36023 '; + node makeTDcells2.js 36023 > static2/36023_td.html; +echo ' writing array for 36024 '; + node makeTDcells2.js 36024 > static2/36024_td.html; +echo ' writing array for 36025 '; + node makeTDcells2.js 36025 > static2/36025_td.html; +echo ' writing array for 36027 '; + node makeTDcells2.js 36027 > static2/36027_td.html; +echo ' writing array for 36028 '; + node makeTDcells2.js 36028 > static2/36028_td.html; +echo ' writing array for 36029 '; + node makeTDcells2.js 36029 > static2/36029_td.html; +echo ' writing array for 36030 '; + node makeTDcells2.js 36030 > static2/36030_td.html; +echo ' writing array for 36031 '; + node makeTDcells2.js 36031 > static2/36031_td.html; +echo ' writing array for 36032 '; + node makeTDcells2.js 36032 > static2/36032_td.html; +echo ' writing array for 36033 '; + node makeTDcells2.js 36033 > static2/36033_td.html; +echo ' writing array for 36034 '; + node makeTDcells2.js 36034 > static2/36034_td.html; +echo ' writing array for 36035 '; + node makeTDcells2.js 36035 > static2/36035_td.html; +echo ' writing array for 36036 '; + node makeTDcells2.js 36036 > static2/36036_td.html; +echo ' writing array for 36037 '; + node makeTDcells2.js 36037 > static2/36037_td.html; +echo ' writing array for 36038 '; + node makeTDcells2.js 36038 > static2/36038_td.html; +echo ' writing array for 36039 '; + node makeTDcells2.js 36039 > static2/36039_td.html; +echo ' writing array for 36040 '; + node makeTDcells2.js 36040 > static2/36040_td.html; +echo ' writing array for 36041 '; + node makeTDcells2.js 36041 > static2/36041_td.html; +echo ' writing array for 36042 '; + node makeTDcells2.js 36042 > static2/36042_td.html; +echo ' writing array for 36043 '; + node makeTDcells2.js 36043 > static2/36043_td.html; +echo ' writing array for 36044 '; + node makeTDcells2.js 36044 > static2/36044_td.html; +echo ' writing array for 36045 '; + node makeTDcells2.js 36045 > static2/36045_td.html; +echo ' writing array for 36046 '; + node makeTDcells2.js 36046 > static2/36046_td.html; +echo ' writing array for 36049 '; + node makeTDcells2.js 36049 > static2/36049_td.html; +echo ' writing array for 36050 '; + node makeTDcells2.js 36050 > static2/36050_td.html; +echo ' writing array for 36051 '; + node makeTDcells2.js 36051 > static2/36051_td.html; +echo ' writing array for 36053 '; + node makeTDcells2.js 36053 > static2/36053_td.html; +echo ' writing array for 36054 '; + node makeTDcells2.js 36054 > static2/36054_td.html; +echo ' writing array for 36055 '; + node makeTDcells2.js 36055 > static2/36055_td.html; +echo ' writing array for 36056 '; + node makeTDcells2.js 36056 > static2/36056_td.html; +echo ' writing array for 36058 '; + node makeTDcells2.js 36058 > static2/36058_td.html; +echo ' writing array for 36059 '; + node makeTDcells2.js 36059 > static2/36059_td.html; +echo ' writing array for 36061 '; + node makeTDcells2.js 36061 > static2/36061_td.html; +echo ' writing array for 36062 '; + node makeTDcells2.js 36062 > static2/36062_td.html; +echo ' writing array for 36064 '; + node makeTDcells2.js 36064 > static2/36064_td.html; +echo ' writing array for 36065 '; + node makeTDcells2.js 36065 > static2/36065_td.html; +echo ' writing array for 36068 '; + node makeTDcells2.js 36068 > static2/36068_td.html; +echo ' writing array for 36069 '; + node makeTDcells2.js 36069 > static2/36069_td.html; +echo ' writing array for 36070 '; + node makeTDcells2.js 36070 > static2/36070_td.html; +echo ' writing array for 36071 '; + node makeTDcells2.js 36071 > static2/36071_td.html; +echo ' writing array for 36072 '; + node makeTDcells2.js 36072 > static2/36072_td.html; +echo ' writing array for 36095 '; + node makeTDcells2.js 36095 > static2/36095_td.html; +echo ' writing array for 36096 '; + node makeTDcells2.js 36096 > static2/36096_td.html; +echo ' writing array for 36098 '; + node makeTDcells2.js 36098 > static2/36098_td.html; +echo ' writing array for 36099 '; + node makeTDcells2.js 36099 > static2/36099_td.html; +echo ' writing array for 36100 '; + node makeTDcells2.js 36100 > static2/36100_td.html; +echo ' writing array for 36101 '; + node makeTDcells2.js 36101 > static2/36101_td.html; +echo ' writing array for 36102 '; + node makeTDcells2.js 36102 > static2/36102_td.html; +echo ' writing array for 36103 '; + node makeTDcells2.js 36103 > static2/36103_td.html; +echo ' writing array for 36104 '; + node makeTDcells2.js 36104 > static2/36104_td.html; +echo ' writing array for 36105 '; + node makeTDcells2.js 36105 > static2/36105_td.html; +echo ' writing array for 36106 '; + node makeTDcells2.js 36106 > static2/36106_td.html; +echo ' writing array for 36107 '; + node makeTDcells2.js 36107 > static2/36107_td.html; +echo ' writing array for 36109 '; + node makeTDcells2.js 36109 > static2/36109_td.html; +echo ' writing array for 36110 '; + node makeTDcells2.js 36110 > static2/36110_td.html; +echo ' writing array for 36111 '; + node makeTDcells2.js 36111 > static2/36111_td.html; +echo ' writing array for 36112 '; + node makeTDcells2.js 36112 > static2/36112_td.html; +echo ' writing array for 36113 '; + node makeTDcells2.js 36113 > static2/36113_td.html; +echo ' writing array for 36114 '; + node makeTDcells2.js 36114 > static2/36114_td.html; +echo ' writing array for 36115 '; + node makeTDcells2.js 36115 > static2/36115_td.html; +echo ' writing array for 36116 '; + node makeTDcells2.js 36116 > static2/36116_td.html; +echo ' writing array for 36117 '; + node makeTDcells2.js 36117 > static2/36117_td.html; +echo ' writing array for 36118 '; + node makeTDcells2.js 36118 > static2/36118_td.html; +echo ' writing array for 36119 '; + node makeTDcells2.js 36119 > static2/36119_td.html; +echo ' writing array for 36120 '; + node makeTDcells2.js 36120 > static2/36120_td.html; +echo ' writing array for 36121 '; + node makeTDcells2.js 36121 > static2/36121_td.html; +echo ' writing array for 36122 '; + node makeTDcells2.js 36122 > static2/36122_td.html; +echo ' writing array for 36123 '; + node makeTDcells2.js 36123 > static2/36123_td.html; +echo ' writing array for 36124 '; + node makeTDcells2.js 36124 > static2/36124_td.html; +echo ' writing array for 36125 '; + node makeTDcells2.js 36125 > static2/36125_td.html; +echo ' writing array for 36126 '; + node makeTDcells2.js 36126 > static2/36126_td.html; +echo ' writing array for 36127 '; + node makeTDcells2.js 36127 > static2/36127_td.html; +echo ' writing array for 36128 '; + node makeTDcells2.js 36128 > static2/36128_td.html; +echo ' writing array for 36129 '; + node makeTDcells2.js 36129 > static2/36129_td.html; +echo ' writing array for 36130 '; + node makeTDcells2.js 36130 > static2/36130_td.html; +echo ' writing array for 36131 '; + node makeTDcells2.js 36131 > static2/36131_td.html; +echo ' writing array for 36132 '; + node makeTDcells2.js 36132 > static2/36132_td.html; +echo ' writing array for 36133 '; + node makeTDcells2.js 36133 > static2/36133_td.html; +echo ' writing array for 36134 '; + node makeTDcells2.js 36134 > static2/36134_td.html; +echo ' writing array for 36135 '; + node makeTDcells2.js 36135 > static2/36135_td.html; +echo ' writing array for 36136 '; + node makeTDcells2.js 36136 > static2/36136_td.html; +echo ' writing array for 36137 '; + node makeTDcells2.js 36137 > static2/36137_td.html; +echo ' writing array for 36138 '; + node makeTDcells2.js 36138 > static2/36138_td.html; +echo ' writing array for 36139 '; + node makeTDcells2.js 36139 > static2/36139_td.html; +echo ' writing array for 36142 '; + node makeTDcells2.js 36142 > static2/36142_td.html; +echo ' writing array for 36143 '; + node makeTDcells2.js 36143 > static2/36143_td.html; +echo ' writing array for 36144 '; + node makeTDcells2.js 36144 > static2/36144_td.html; +echo ' writing array for 36145 '; + node makeTDcells2.js 36145 > static2/36145_td.html; +echo ' writing array for 36146 '; + node makeTDcells2.js 36146 > static2/36146_td.html; +echo ' writing array for 36147 '; + node makeTDcells2.js 36147 > static2/36147_td.html; +echo ' writing array for 36148 '; + node makeTDcells2.js 36148 > static2/36148_td.html; +echo ' writing array for 36149 '; + node makeTDcells2.js 36149 > static2/36149_td.html; +echo ' writing array for 36150 '; + node makeTDcells2.js 36150 > static2/36150_td.html; +echo ' writing array for 36151 '; + node makeTDcells2.js 36151 > static2/36151_td.html; +echo ' writing array for 36152 '; + node makeTDcells2.js 36152 > static2/36152_td.html; +echo ' writing array for 36154 '; + node makeTDcells2.js 36154 > static2/36154_td.html; +echo ' writing array for 36155 '; + node makeTDcells2.js 36155 > static2/36155_td.html; +echo ' writing array for 36156 '; + node makeTDcells2.js 36156 > static2/36156_td.html; +echo ' writing array for 36157 '; + node makeTDcells2.js 36157 > static2/36157_td.html; +echo ' writing array for 36158 '; + node makeTDcells2.js 36158 > static2/36158_td.html; +echo ' writing array for 36159 '; + node makeTDcells2.js 36159 > static2/36159_td.html; +echo ' writing array for 36160 '; + node makeTDcells2.js 36160 > static2/36160_td.html; +echo ' writing array for 36161 '; + node makeTDcells2.js 36161 > static2/36161_td.html; +echo ' writing array for 36162 '; + node makeTDcells2.js 36162 > static2/36162_td.html; +echo ' writing array for 36163 '; + node makeTDcells2.js 36163 > static2/36163_td.html; +echo ' writing array for 36164 '; + node makeTDcells2.js 36164 > static2/36164_td.html; +echo ' writing array for 36165 '; + node makeTDcells2.js 36165 > static2/36165_td.html; +echo ' writing array for 36166 '; + node makeTDcells2.js 36166 > static2/36166_td.html; +echo ' writing array for 36167 '; + node makeTDcells2.js 36167 > static2/36167_td.html; +echo ' writing array for 36168 '; + node makeTDcells2.js 36168 > static2/36168_td.html; +echo ' writing array for 36169 '; + node makeTDcells2.js 36169 > static2/36169_td.html; +echo ' writing array for 36170 '; + node makeTDcells2.js 36170 > static2/36170_td.html; +echo ' writing array for 36171 '; + node makeTDcells2.js 36171 > static2/36171_td.html; +echo ' writing array for 36172 '; + node makeTDcells2.js 36172 > static2/36172_td.html; +echo ' writing array for 36173 '; + node makeTDcells2.js 36173 > static2/36173_td.html; +echo ' writing array for 36174 '; + node makeTDcells2.js 36174 > static2/36174_td.html; +echo ' writing array for 36175 '; + node makeTDcells2.js 36175 > static2/36175_td.html; +echo ' writing array for 36176 '; + node makeTDcells2.js 36176 > static2/36176_td.html; +echo ' writing array for 36177 '; + node makeTDcells2.js 36177 > static2/36177_td.html; +echo ' writing array for 36178 '; + node makeTDcells2.js 36178 > static2/36178_td.html; +echo ' writing array for 36179 '; + node makeTDcells2.js 36179 > static2/36179_td.html; +echo ' writing array for 36180 '; + node makeTDcells2.js 36180 > static2/36180_td.html; +echo ' writing array for 36181 '; + node makeTDcells2.js 36181 > static2/36181_td.html; +echo ' writing array for 36182 '; + node makeTDcells2.js 36182 > static2/36182_td.html; +echo ' writing array for 36183 '; + node makeTDcells2.js 36183 > static2/36183_td.html; +echo ' writing array for 36184 '; + node makeTDcells2.js 36184 > static2/36184_td.html; +echo ' writing array for 36185 '; + node makeTDcells2.js 36185 > static2/36185_td.html; +echo ' writing array for 36188 '; + node makeTDcells2.js 36188 > static2/36188_td.html; +echo ' writing array for 36189 '; + node makeTDcells2.js 36189 > static2/36189_td.html; +echo ' writing array for 36191 '; + node makeTDcells2.js 36191 > static2/36191_td.html; +echo ' writing array for 36192 '; + node makeTDcells2.js 36192 > static2/36192_td.html; +echo ' writing array for 36194 '; + node makeTDcells2.js 36194 > static2/36194_td.html; +echo ' writing array for 36195 '; + node makeTDcells2.js 36195 > static2/36195_td.html; +echo ' writing array for 36196 '; + node makeTDcells2.js 36196 > static2/36196_td.html; +echo ' writing array for 36197 '; + node makeTDcells2.js 36197 > static2/36197_td.html; +echo ' writing array for 36198 '; + node makeTDcells2.js 36198 > static2/36198_td.html; +echo ' writing array for 36199 '; + node makeTDcells2.js 36199 > static2/36199_td.html; +echo ' writing array for 36200 '; + node makeTDcells2.js 36200 > static2/36200_td.html; +echo ' writing array for 36201 '; + node makeTDcells2.js 36201 > static2/36201_td.html; +echo ' writing array for 36203 '; + node makeTDcells2.js 36203 > static2/36203_td.html; +echo ' writing array for 36204 '; + node makeTDcells2.js 36204 > static2/36204_td.html; +echo ' writing array for 36205 '; + node makeTDcells2.js 36205 > static2/36205_td.html; +echo ' writing array for 36206 '; + node makeTDcells2.js 36206 > static2/36206_td.html; +echo ' writing array for 36207 '; + node makeTDcells2.js 36207 > static2/36207_td.html; +echo ' writing array for 36208 '; + node makeTDcells2.js 36208 > static2/36208_td.html; +echo ' writing array for 36209 '; + node makeTDcells2.js 36209 > static2/36209_td.html; +echo ' writing array for 36210 '; + node makeTDcells2.js 36210 > static2/36210_td.html; +echo ' writing array for 36211 '; + node makeTDcells2.js 36211 > static2/36211_td.html; +echo ' writing array for 36212 '; + node makeTDcells2.js 36212 > static2/36212_td.html; +echo ' writing array for 36213 '; + node makeTDcells2.js 36213 > static2/36213_td.html; +echo ' writing array for 36214 '; + node makeTDcells2.js 36214 > static2/36214_td.html; +echo ' writing array for 36215 '; + node makeTDcells2.js 36215 > static2/36215_td.html; +echo ' writing array for 36216 '; + node makeTDcells2.js 36216 > static2/36216_td.html; +echo ' writing array for 36217 '; + node makeTDcells2.js 36217 > static2/36217_td.html; +echo ' writing array for 36218 '; + node makeTDcells2.js 36218 > static2/36218_td.html; +echo ' writing array for 36219 '; + node makeTDcells2.js 36219 > static2/36219_td.html; +echo ' writing array for 36220 '; + node makeTDcells2.js 36220 > static2/36220_td.html; +echo ' writing array for 36221 '; + node makeTDcells2.js 36221 > static2/36221_td.html; +echo ' writing array for 36222 '; + node makeTDcells2.js 36222 > static2/36222_td.html; +echo ' writing array for 36223 '; + node makeTDcells2.js 36223 > static2/36223_td.html; +echo ' writing array for 36224 '; + node makeTDcells2.js 36224 > static2/36224_td.html; +echo ' writing array for 36226 '; + node makeTDcells2.js 36226 > static2/36226_td.html; +echo ' writing array for 36227 '; + node makeTDcells2.js 36227 > static2/36227_td.html; +echo ' writing array for 36228 '; + node makeTDcells2.js 36228 > static2/36228_td.html; +echo ' writing array for 36229 '; + node makeTDcells2.js 36229 > static2/36229_td.html; +echo ' writing array for 36230 '; + node makeTDcells2.js 36230 > static2/36230_td.html; +echo ' writing array for 36231 '; + node makeTDcells2.js 36231 > static2/36231_td.html; +echo ' writing array for 36232 '; + node makeTDcells2.js 36232 > static2/36232_td.html; +echo ' writing array for 36233 '; + node makeTDcells2.js 36233 > static2/36233_td.html; +echo ' writing array for 36234 '; + node makeTDcells2.js 36234 > static2/36234_td.html; +echo ' writing array for 36235 '; + node makeTDcells2.js 36235 > static2/36235_td.html; +echo ' writing array for 36236 '; + node makeTDcells2.js 36236 > static2/36236_td.html; +echo ' writing array for 36238 '; + node makeTDcells2.js 36238 > static2/36238_td.html; +echo ' writing array for 36239 '; + node makeTDcells2.js 36239 > static2/36239_td.html; +echo ' writing array for 36240 '; + node makeTDcells2.js 36240 > static2/36240_td.html; +echo ' writing array for 36241 '; + node makeTDcells2.js 36241 > static2/36241_td.html; +echo ' writing array for 36242 '; + node makeTDcells2.js 36242 > static2/36242_td.html; +echo ' writing array for 36243 '; + node makeTDcells2.js 36243 > static2/36243_td.html; +echo ' writing array for 36244 '; + node makeTDcells2.js 36244 > static2/36244_td.html; +echo ' writing array for 36245 '; + node makeTDcells2.js 36245 > static2/36245_td.html; +echo ' writing array for 36246 '; + node makeTDcells2.js 36246 > static2/36246_td.html; +echo ' writing array for 36247 '; + node makeTDcells2.js 36247 > static2/36247_td.html; +echo ' writing array for 36248 '; + node makeTDcells2.js 36248 > static2/36248_td.html; +echo ' writing array for 36249 '; + node makeTDcells2.js 36249 > static2/36249_td.html; +echo ' writing array for 36250 '; + node makeTDcells2.js 36250 > static2/36250_td.html; +echo ' writing array for 36251 '; + node makeTDcells2.js 36251 > static2/36251_td.html; +echo ' writing array for 36252 '; + node makeTDcells2.js 36252 > static2/36252_td.html; +echo ' writing array for 36253 '; + node makeTDcells2.js 36253 > static2/36253_td.html; +echo ' writing array for 36255 '; + node makeTDcells2.js 36255 > static2/36255_td.html; +echo ' writing array for 36256 '; + node makeTDcells2.js 36256 > static2/36256_td.html; +echo ' writing array for 36257 '; + node makeTDcells2.js 36257 > static2/36257_td.html; +echo ' writing array for 36258 '; + node makeTDcells2.js 36258 > static2/36258_td.html; +echo ' writing array for 36259 '; + node makeTDcells2.js 36259 > static2/36259_td.html; +echo ' writing array for 36260 '; + node makeTDcells2.js 36260 > static2/36260_td.html; +echo ' writing array for 36261 '; + node makeTDcells2.js 36261 > static2/36261_td.html; +echo ' writing array for 36262 '; + node makeTDcells2.js 36262 > static2/36262_td.html; +echo ' writing array for 36263 '; + node makeTDcells2.js 36263 > static2/36263_td.html; +echo ' writing array for 36264 '; + node makeTDcells2.js 36264 > static2/36264_td.html; +echo ' writing array for 36265 '; + node makeTDcells2.js 36265 > static2/36265_td.html; +echo ' writing array for 36266 '; + node makeTDcells2.js 36266 > static2/36266_td.html; +echo ' writing array for 36267 '; + node makeTDcells2.js 36267 > static2/36267_td.html; +echo ' writing array for 36268 '; + node makeTDcells2.js 36268 > static2/36268_td.html; +echo ' writing array for 36269 '; + node makeTDcells2.js 36269 > static2/36269_td.html; +echo ' writing array for 36270 '; + node makeTDcells2.js 36270 > static2/36270_td.html; +echo ' writing array for 36271 '; + node makeTDcells2.js 36271 > static2/36271_td.html; +echo ' writing array for 36272 '; + node makeTDcells2.js 36272 > static2/36272_td.html; +echo ' writing array for 36273 '; + node makeTDcells2.js 36273 > static2/36273_td.html; +echo ' writing array for 36295 '; + node makeTDcells2.js 36295 > static2/36295_td.html; +echo ' writing array for 36296 '; + node makeTDcells2.js 36296 > static2/36296_td.html; +echo ' writing array for 36297 '; + node makeTDcells2.js 36297 > static2/36297_td.html; +echo ' writing array for 36298 '; + node makeTDcells2.js 36298 > static2/36298_td.html; +echo ' writing array for 36299 '; + node makeTDcells2.js 36299 > static2/36299_td.html; +echo ' writing array for 36300 '; + node makeTDcells2.js 36300 > static2/36300_td.html; +echo ' writing array for 36301 '; + node makeTDcells2.js 36301 > static2/36301_td.html; +echo ' writing array for 36302 '; + node makeTDcells2.js 36302 > static2/36302_td.html; +echo ' writing array for 36303 '; + node makeTDcells2.js 36303 > static2/36303_td.html; +echo ' writing array for 36304 '; + node makeTDcells2.js 36304 > static2/36304_td.html; +echo ' writing array for 36305 '; + node makeTDcells2.js 36305 > static2/36305_td.html; +echo ' writing array for 36306 '; + node makeTDcells2.js 36306 > static2/36306_td.html; +echo ' writing array for 36307 '; + node makeTDcells2.js 36307 > static2/36307_td.html; +echo ' writing array for 36308 '; + node makeTDcells2.js 36308 > static2/36308_td.html; +echo ' writing array for 36310 '; + node makeTDcells2.js 36310 > static2/36310_td.html; +echo ' writing array for 36311 '; + node makeTDcells2.js 36311 > static2/36311_td.html; +echo ' writing array for 36312 '; + node makeTDcells2.js 36312 > static2/36312_td.html; +echo ' writing array for 36314 '; + node makeTDcells2.js 36314 > static2/36314_td.html; +echo ' writing array for 36315 '; + node makeTDcells2.js 36315 > static2/36315_td.html; +echo ' writing array for 36316 '; + node makeTDcells2.js 36316 > static2/36316_td.html; +echo ' writing array for 36317 '; + node makeTDcells2.js 36317 > static2/36317_td.html; +echo ' writing array for 36318 '; + node makeTDcells2.js 36318 > static2/36318_td.html; +echo ' writing array for 36319 '; + node makeTDcells2.js 36319 > static2/36319_td.html; +echo ' writing array for 36320 '; + node makeTDcells2.js 36320 > static2/36320_td.html; +echo ' writing array for 36321 '; + node makeTDcells2.js 36321 > static2/36321_td.html; +echo ' writing array for 36322 '; + node makeTDcells2.js 36322 > static2/36322_td.html; +echo ' writing array for 36323 '; + node makeTDcells2.js 36323 > static2/36323_td.html; +echo ' writing array for 36324 '; + node makeTDcells2.js 36324 > static2/36324_td.html; +echo ' writing array for 36325 '; + node makeTDcells2.js 36325 > static2/36325_td.html; +echo ' writing array for 36326 '; + node makeTDcells2.js 36326 > static2/36326_td.html; +echo ' writing array for 36327 '; + node makeTDcells2.js 36327 > static2/36327_td.html; +echo ' writing array for 36328 '; + node makeTDcells2.js 36328 > static2/36328_td.html; +echo ' writing array for 36329 '; + node makeTDcells2.js 36329 > static2/36329_td.html; +echo ' writing array for 36330 '; + node makeTDcells2.js 36330 > static2/36330_td.html; +echo ' writing array for 36331 '; + node makeTDcells2.js 36331 > static2/36331_td.html; +echo ' writing array for 36332 '; + node makeTDcells2.js 36332 > static2/36332_td.html; +echo ' writing array for 36333 '; + node makeTDcells2.js 36333 > static2/36333_td.html; +echo ' writing array for 36334 '; + node makeTDcells2.js 36334 > static2/36334_td.html; +echo ' writing array for 36335 '; + node makeTDcells2.js 36335 > static2/36335_td.html; +echo ' writing array for 36336 '; + node makeTDcells2.js 36336 > static2/36336_td.html; +echo ' writing array for 36337 '; + node makeTDcells2.js 36337 > static2/36337_td.html; +echo ' writing array for 36339 '; + node makeTDcells2.js 36339 > static2/36339_td.html; +echo ' writing array for 36340 '; + node makeTDcells2.js 36340 > static2/36340_td.html; +echo ' writing array for 36341 '; + node makeTDcells2.js 36341 > static2/36341_td.html; +echo ' writing array for 36342 '; + node makeTDcells2.js 36342 > static2/36342_td.html; +echo ' writing array for 36343 '; + node makeTDcells2.js 36343 > static2/36343_td.html; +echo ' writing array for 36344 '; + node makeTDcells2.js 36344 > static2/36344_td.html; +echo ' writing array for 36345 '; + node makeTDcells2.js 36345 > static2/36345_td.html; +echo ' writing array for 36346 '; + node makeTDcells2.js 36346 > static2/36346_td.html; +echo ' writing array for 36347 '; + node makeTDcells2.js 36347 > static2/36347_td.html; +echo ' writing array for 36348 '; + node makeTDcells2.js 36348 > static2/36348_td.html; +echo ' writing array for 36349 '; + node makeTDcells2.js 36349 > static2/36349_td.html; +echo ' writing array for 36350 '; + node makeTDcells2.js 36350 > static2/36350_td.html; +echo ' writing array for 36351 '; + node makeTDcells2.js 36351 > static2/36351_td.html; +echo ' writing array for 36352 '; + node makeTDcells2.js 36352 > static2/36352_td.html; +echo ' writing array for 36353 '; + node makeTDcells2.js 36353 > static2/36353_td.html; +echo ' writing array for 36354 '; + node makeTDcells2.js 36354 > static2/36354_td.html; +echo ' writing array for 36355 '; + node makeTDcells2.js 36355 > static2/36355_td.html; +echo ' writing array for 36356 '; + node makeTDcells2.js 36356 > static2/36356_td.html; +echo ' writing array for 36357 '; + node makeTDcells2.js 36357 > static2/36357_td.html; +echo ' writing array for 36358 '; + node makeTDcells2.js 36358 > static2/36358_td.html; +echo ' writing array for 36359 '; + node makeTDcells2.js 36359 > static2/36359_td.html; +echo ' writing array for 36360 '; + node makeTDcells2.js 36360 > static2/36360_td.html; +echo ' writing array for 36361 '; + node makeTDcells2.js 36361 > static2/36361_td.html; +echo ' writing array for 36362 '; + node makeTDcells2.js 36362 > static2/36362_td.html; +echo ' writing array for 36364 '; + node makeTDcells2.js 36364 > static2/36364_td.html; +echo ' writing array for 36365 '; + node makeTDcells2.js 36365 > static2/36365_td.html; +echo ' writing array for 36366 '; + node makeTDcells2.js 36366 > static2/36366_td.html; +echo ' writing array for 36368 '; + node makeTDcells2.js 36368 > static2/36368_td.html; +echo ' writing array for 36369 '; + node makeTDcells2.js 36369 > static2/36369_td.html; +echo ' writing array for 36370 '; + node makeTDcells2.js 36370 > static2/36370_td.html; +echo ' writing array for 36371 '; + node makeTDcells2.js 36371 > static2/36371_td.html; +echo ' writing array for 36372 '; + node makeTDcells2.js 36372 > static2/36372_td.html; +echo ' writing array for 36373 '; + node makeTDcells2.js 36373 > static2/36373_td.html; +echo ' writing array for 36374 '; + node makeTDcells2.js 36374 > static2/36374_td.html; +echo ' writing array for 36375 '; + node makeTDcells2.js 36375 > static2/36375_td.html; +echo ' writing array for 36376 '; + node makeTDcells2.js 36376 > static2/36376_td.html; +echo ' writing array for 36378 '; + node makeTDcells2.js 36378 > static2/36378_td.html; +echo ' writing array for 36379 '; + node makeTDcells2.js 36379 > static2/36379_td.html; +echo ' writing array for 36381 '; + node makeTDcells2.js 36381 > static2/36381_td.html; +echo ' writing array for 36382 '; + node makeTDcells2.js 36382 > static2/36382_td.html; +echo ' writing array for 36383 '; + node makeTDcells2.js 36383 > static2/36383_td.html; +echo ' writing array for 36384 '; + node makeTDcells2.js 36384 > static2/36384_td.html; +echo ' writing array for 36385 '; + node makeTDcells2.js 36385 > static2/36385_td.html; +echo ' writing array for 36386 '; + node makeTDcells2.js 36386 > static2/36386_td.html; +echo ' writing array for 36387 '; + node makeTDcells2.js 36387 > static2/36387_td.html; +echo ' writing array for 36388 '; + node makeTDcells2.js 36388 > static2/36388_td.html; +echo ' writing array for 36389 '; + node makeTDcells2.js 36389 > static2/36389_td.html; +echo ' writing array for 36390 '; + node makeTDcells2.js 36390 > static2/36390_td.html; +echo ' writing array for 36391 '; + node makeTDcells2.js 36391 > static2/36391_td.html; +echo ' writing array for 36392 '; + node makeTDcells2.js 36392 > static2/36392_td.html; +echo ' writing array for 36393 '; + node makeTDcells2.js 36393 > static2/36393_td.html; +echo ' writing array for 36394 '; + node makeTDcells2.js 36394 > static2/36394_td.html; +echo ' writing array for 36395 '; + node makeTDcells2.js 36395 > static2/36395_td.html; +echo ' writing array for 36396 '; + node makeTDcells2.js 36396 > static2/36396_td.html; +echo ' writing array for 36397 '; + node makeTDcells2.js 36397 > static2/36397_td.html; +echo ' writing array for 36398 '; + node makeTDcells2.js 36398 > static2/36398_td.html; +echo ' writing array for 36399 '; + node makeTDcells2.js 36399 > static2/36399_td.html; +echo ' writing array for 36400 '; + node makeTDcells2.js 36400 > static2/36400_td.html; +echo ' writing array for 36401 '; + node makeTDcells2.js 36401 > static2/36401_td.html; +echo ' writing array for 36402 '; + node makeTDcells2.js 36402 > static2/36402_td.html; +echo ' writing array for 36403 '; + node makeTDcells2.js 36403 > static2/36403_td.html; +echo ' writing array for 36404 '; + node makeTDcells2.js 36404 > static2/36404_td.html; +echo ' writing array for 36406 '; + node makeTDcells2.js 36406 > static2/36406_td.html; +echo ' writing array for 36407 '; + node makeTDcells2.js 36407 > static2/36407_td.html; +echo ' writing array for 36408 '; + node makeTDcells2.js 36408 > static2/36408_td.html; +echo ' writing array for 36409 '; + node makeTDcells2.js 36409 > static2/36409_td.html; +echo ' writing array for 36410 '; + node makeTDcells2.js 36410 > static2/36410_td.html; +echo ' writing array for 36411 '; + node makeTDcells2.js 36411 > static2/36411_td.html; +echo ' writing array for 36412 '; + node makeTDcells2.js 36412 > static2/36412_td.html; +echo ' writing array for 36413 '; + node makeTDcells2.js 36413 > static2/36413_td.html; +echo ' writing array for 36414 '; + node makeTDcells2.js 36414 > static2/36414_td.html; +echo ' writing array for 36415 '; + node makeTDcells2.js 36415 > static2/36415_td.html; +echo ' writing array for 36416 '; + node makeTDcells2.js 36416 > static2/36416_td.html; +echo ' writing array for 36417 '; + node makeTDcells2.js 36417 > static2/36417_td.html; +echo ' writing array for 36418 '; + node makeTDcells2.js 36418 > static2/36418_td.html; +echo ' writing array for 36419 '; + node makeTDcells2.js 36419 > static2/36419_td.html; +echo ' writing array for 36420 '; + node makeTDcells2.js 36420 > static2/36420_td.html; +echo ' writing array for 36421 '; + node makeTDcells2.js 36421 > static2/36421_td.html; +echo ' writing array for 36422 '; + node makeTDcells2.js 36422 > static2/36422_td.html; +echo ' writing array for 36423 '; + node makeTDcells2.js 36423 > static2/36423_td.html; +echo ' writing array for 36424 '; + node makeTDcells2.js 36424 > static2/36424_td.html; +echo ' writing array for 36426 '; + node makeTDcells2.js 36426 > static2/36426_td.html; +echo ' writing array for 36427 '; + node makeTDcells2.js 36427 > static2/36427_td.html; +echo ' writing array for 36428 '; + node makeTDcells2.js 36428 > static2/36428_td.html; +echo ' writing array for 36429 '; + node makeTDcells2.js 36429 > static2/36429_td.html; +echo ' writing array for 36430 '; + node makeTDcells2.js 36430 > static2/36430_td.html; +echo ' writing array for 36431 '; + node makeTDcells2.js 36431 > static2/36431_td.html; +echo ' writing array for 36432 '; + node makeTDcells2.js 36432 > static2/36432_td.html; +echo ' writing array for 36433 '; + node makeTDcells2.js 36433 > static2/36433_td.html; +echo ' writing array for 36434 '; + node makeTDcells2.js 36434 > static2/36434_td.html; +echo ' writing array for 36435 '; + node makeTDcells2.js 36435 > static2/36435_td.html; +echo ' writing array for 36437 '; + node makeTDcells2.js 36437 > static2/36437_td.html; +echo ' writing array for 36438 '; + node makeTDcells2.js 36438 > static2/36438_td.html; +echo ' writing array for 36439 '; + node makeTDcells2.js 36439 > static2/36439_td.html; +echo ' writing array for 36440 '; + node makeTDcells2.js 36440 > static2/36440_td.html; +echo ' writing array for 36441 '; + node makeTDcells2.js 36441 > static2/36441_td.html; +echo ' writing array for 36442 '; + node makeTDcells2.js 36442 > static2/36442_td.html; +echo ' writing array for 36443 '; + node makeTDcells2.js 36443 > static2/36443_td.html; +echo ' writing array for 36444 '; + node makeTDcells2.js 36444 > static2/36444_td.html; +echo ' writing array for 36445 '; + node makeTDcells2.js 36445 > static2/36445_td.html; +echo ' writing array for 36448 '; + node makeTDcells2.js 36448 > static2/36448_td.html; +echo ' writing array for 36449 '; + node makeTDcells2.js 36449 > static2/36449_td.html; +echo ' writing array for 36450 '; + node makeTDcells2.js 36450 > static2/36450_td.html; +echo ' writing array for 36451 '; + node makeTDcells2.js 36451 > static2/36451_td.html; +echo ' writing array for 36452 '; + node makeTDcells2.js 36452 > static2/36452_td.html; +echo ' writing array for 36453 '; + node makeTDcells2.js 36453 > static2/36453_td.html; +echo ' writing array for 36454 '; + node makeTDcells2.js 36454 > static2/36454_td.html; +echo ' writing array for 36457 '; + node makeTDcells2.js 36457 > static2/36457_td.html; +echo ' writing array for 36459 '; + node makeTDcells2.js 36459 > static2/36459_td.html; +echo ' writing array for 36460 '; + node makeTDcells2.js 36460 > static2/36460_td.html; +echo ' writing array for 36461 '; + node makeTDcells2.js 36461 > static2/36461_td.html; +echo ' writing array for 36463 '; + node makeTDcells2.js 36463 > static2/36463_td.html; +echo ' writing array for 36464 '; + node makeTDcells2.js 36464 > static2/36464_td.html; +echo ' writing array for 36467 '; + node makeTDcells2.js 36467 > static2/36467_td.html; +echo ' writing array for 36468 '; + node makeTDcells2.js 36468 > static2/36468_td.html; +echo ' writing array for 36471 '; + node makeTDcells2.js 36471 > static2/36471_td.html; +echo ' writing array for 36472 '; + node makeTDcells2.js 36472 > static2/36472_td.html; +echo ' writing array for 36473 '; + node makeTDcells2.js 36473 > static2/36473_td.html; +echo ' writing array for 36474 '; + node makeTDcells2.js 36474 > static2/36474_td.html; +echo ' writing array for 36476 '; + node makeTDcells2.js 36476 > static2/36476_td.html; +echo ' writing array for 36477 '; + node makeTDcells2.js 36477 > static2/36477_td.html; +echo ' writing array for 36478 '; + node makeTDcells2.js 36478 > static2/36478_td.html; +echo ' writing array for 36479 '; + node makeTDcells2.js 36479 > static2/36479_td.html; +echo ' writing array for 36480 '; + node makeTDcells2.js 36480 > static2/36480_td.html; +echo ' writing array for 36481 '; + node makeTDcells2.js 36481 > static2/36481_td.html; +echo ' writing array for 36482 '; + node makeTDcells2.js 36482 > static2/36482_td.html; +echo ' writing array for 36483 '; + node makeTDcells2.js 36483 > static2/36483_td.html; +echo ' writing array for 36484 '; + node makeTDcells2.js 36484 > static2/36484_td.html; +echo ' writing array for 36486 '; + node makeTDcells2.js 36486 > static2/36486_td.html; +echo ' writing array for 36487 '; + node makeTDcells2.js 36487 > static2/36487_td.html; +echo ' writing array for 36488 '; + node makeTDcells2.js 36488 > static2/36488_td.html; +echo ' writing array for 36489 '; + node makeTDcells2.js 36489 > static2/36489_td.html; +echo ' writing array for 36492 '; + node makeTDcells2.js 36492 > static2/36492_td.html; +echo ' writing array for 36493 '; + node makeTDcells2.js 36493 > static2/36493_td.html; +echo ' writing array for 36494 '; + node makeTDcells2.js 36494 > static2/36494_td.html; +echo ' writing array for 36497 '; + node makeTDcells2.js 36497 > static2/36497_td.html; +echo ' writing array for 36498 '; + node makeTDcells2.js 36498 > static2/36498_td.html; +echo ' writing array for 36499 '; + node makeTDcells2.js 36499 > static2/36499_td.html; +echo ' writing array for 36500 '; + node makeTDcells2.js 36500 > static2/36500_td.html; +echo ' writing array for 36502 '; + node makeTDcells2.js 36502 > static2/36502_td.html; +echo ' writing array for 36503 '; + node makeTDcells2.js 36503 > static2/36503_td.html; +echo ' writing array for 36508 '; + node makeTDcells2.js 36508 > static2/36508_td.html; +echo ' writing array for 36509 '; + node makeTDcells2.js 36509 > static2/36509_td.html; +echo ' writing array for 36510 '; + node makeTDcells2.js 36510 > static2/36510_td.html; +echo ' writing array for 36514 '; + node makeTDcells2.js 36514 > static2/36514_td.html; +echo ' writing array for 36515 '; + node makeTDcells2.js 36515 > static2/36515_td.html; +echo ' writing array for 36516 '; + node makeTDcells2.js 36516 > static2/36516_td.html; +echo ' writing array for 36517 '; + node makeTDcells2.js 36517 > static2/36517_td.html; +echo ' writing array for 36518 '; + node makeTDcells2.js 36518 > static2/36518_td.html; +echo ' writing array for 36519 '; + node makeTDcells2.js 36519 > static2/36519_td.html; +echo ' writing array for 36520 '; + node makeTDcells2.js 36520 > static2/36520_td.html; +echo ' writing array for 36521 '; + node makeTDcells2.js 36521 > static2/36521_td.html; +echo ' writing array for 36522 '; + node makeTDcells2.js 36522 > static2/36522_td.html; +echo ' writing array for 36523 '; + node makeTDcells2.js 36523 > static2/36523_td.html; +echo ' writing array for 36524 '; + node makeTDcells2.js 36524 > static2/36524_td.html; +echo ' writing array for 36526 '; + node makeTDcells2.js 36526 > static2/36526_td.html; +echo ' writing array for 36528 '; + node makeTDcells2.js 36528 > static2/36528_td.html; +echo ' writing array for 36529 '; + node makeTDcells2.js 36529 > static2/36529_td.html; +echo ' writing array for 36530 '; + node makeTDcells2.js 36530 > static2/36530_td.html; +echo ' writing array for 36531 '; + node makeTDcells2.js 36531 > static2/36531_td.html; +echo ' writing array for 36532 '; + node makeTDcells2.js 36532 > static2/36532_td.html; +echo ' writing array for 36533 '; + node makeTDcells2.js 36533 > static2/36533_td.html; +echo ' writing array for 36535 '; + node makeTDcells2.js 36535 > static2/36535_td.html; +echo ' writing array for 36536 '; + node makeTDcells2.js 36536 > static2/36536_td.html; +echo ' writing array for 36537 '; + node makeTDcells2.js 36537 > static2/36537_td.html; +echo ' writing array for 36538 '; + node makeTDcells2.js 36538 > static2/36538_td.html; +echo ' writing array for 36539 '; + node makeTDcells2.js 36539 > static2/36539_td.html; +echo ' writing array for 36540 '; + node makeTDcells2.js 36540 > static2/36540_td.html; +echo ' writing array for 36541 '; + node makeTDcells2.js 36541 > static2/36541_td.html; +echo ' writing array for 36542 '; + node makeTDcells2.js 36542 > static2/36542_td.html; +echo ' writing array for 36543 '; + node makeTDcells2.js 36543 > static2/36543_td.html; +echo ' writing array for 36544 '; + node makeTDcells2.js 36544 > static2/36544_td.html; +echo ' writing array for 36545 '; + node makeTDcells2.js 36545 > static2/36545_td.html; +echo ' writing array for 36546 '; + node makeTDcells2.js 36546 > static2/36546_td.html; +echo ' writing array for 36547 '; + node makeTDcells2.js 36547 > static2/36547_td.html; +echo ' writing array for 36548 '; + node makeTDcells2.js 36548 > static2/36548_td.html; +echo ' writing array for 36549 '; + node makeTDcells2.js 36549 > static2/36549_td.html; +echo ' writing array for 36550 '; + node makeTDcells2.js 36550 > static2/36550_td.html; +echo ' writing array for 36551 '; + node makeTDcells2.js 36551 > static2/36551_td.html; +echo ' writing array for 36552 '; + node makeTDcells2.js 36552 > static2/36552_td.html; +echo ' writing array for 36553 '; + node makeTDcells2.js 36553 > static2/36553_td.html; +echo ' writing array for 36554 '; + node makeTDcells2.js 36554 > static2/36554_td.html; +echo ' writing array for 36555 '; + node makeTDcells2.js 36555 > static2/36555_td.html; +echo ' writing array for 36556 '; + node makeTDcells2.js 36556 > static2/36556_td.html; +echo ' writing array for 36557 '; + node makeTDcells2.js 36557 > static2/36557_td.html; +echo ' writing array for 36558 '; + node makeTDcells2.js 36558 > static2/36558_td.html; +echo ' writing array for 36567 '; + node makeTDcells2.js 36567 > static2/36567_td.html; +echo ' writing array for 36568 '; + node makeTDcells2.js 36568 > static2/36568_td.html; +echo ' writing array for 36569 '; + node makeTDcells2.js 36569 > static2/36569_td.html; +echo ' writing array for 36570 '; + node makeTDcells2.js 36570 > static2/36570_td.html; +echo ' writing array for 36571 '; + node makeTDcells2.js 36571 > static2/36571_td.html; +echo ' writing array for 36572 '; + node makeTDcells2.js 36572 > static2/36572_td.html; +echo ' writing array for 36573 '; + node makeTDcells2.js 36573 > static2/36573_td.html; +echo ' writing array for 36574 '; + node makeTDcells2.js 36574 > static2/36574_td.html; +echo ' writing array for 36575 '; + node makeTDcells2.js 36575 > static2/36575_td.html; +echo ' writing array for 36576 '; + node makeTDcells2.js 36576 > static2/36576_td.html; +echo ' writing array for 36577 '; + node makeTDcells2.js 36577 > static2/36577_td.html; +echo ' writing array for 36578 '; + node makeTDcells2.js 36578 > static2/36578_td.html; +echo ' writing array for 36579 '; + node makeTDcells2.js 36579 > static2/36579_td.html; +echo ' writing array for 36580 '; + node makeTDcells2.js 36580 > static2/36580_td.html; +echo ' writing array for 36581 '; + node makeTDcells2.js 36581 > static2/36581_td.html; +echo ' writing array for 36582 '; + node makeTDcells2.js 36582 > static2/36582_td.html; +echo ' writing array for 36583 '; + node makeTDcells2.js 36583 > static2/36583_td.html; +echo ' writing array for 36584 '; + node makeTDcells2.js 36584 > static2/36584_td.html; +echo ' writing array for 36585 '; + node makeTDcells2.js 36585 > static2/36585_td.html; +echo ' writing array for 36586 '; + node makeTDcells2.js 36586 > static2/36586_td.html; +echo ' writing array for 36587 '; + node makeTDcells2.js 36587 > static2/36587_td.html; +echo ' writing array for 36588 '; + node makeTDcells2.js 36588 > static2/36588_td.html; +echo ' writing array for 36589 '; + node makeTDcells2.js 36589 > static2/36589_td.html; +echo ' writing array for 36590 '; + node makeTDcells2.js 36590 > static2/36590_td.html; +echo ' writing array for 36591 '; + node makeTDcells2.js 36591 > static2/36591_td.html; +echo ' writing array for 36592 '; + node makeTDcells2.js 36592 > static2/36592_td.html; +echo ' writing array for 36593 '; + node makeTDcells2.js 36593 > static2/36593_td.html; +echo ' writing array for 36595 '; + node makeTDcells2.js 36595 > static2/36595_td.html; +echo ' writing array for 36596 '; + node makeTDcells2.js 36596 > static2/36596_td.html; +echo ' writing array for 36597 '; + node makeTDcells2.js 36597 > static2/36597_td.html; +echo ' writing array for 36598 '; + node makeTDcells2.js 36598 > static2/36598_td.html; +echo ' writing array for 36599 '; + node makeTDcells2.js 36599 > static2/36599_td.html; +echo ' writing array for 36600 '; + node makeTDcells2.js 36600 > static2/36600_td.html; +echo ' writing array for 36601 '; + node makeTDcells2.js 36601 > static2/36601_td.html; +echo ' writing array for 36602 '; + node makeTDcells2.js 36602 > static2/36602_td.html; +echo ' writing array for 36603 '; + node makeTDcells2.js 36603 > static2/36603_td.html; +echo ' writing array for 36604 '; + node makeTDcells2.js 36604 > static2/36604_td.html; +echo ' writing array for 36605 '; + node makeTDcells2.js 36605 > static2/36605_td.html; +echo ' writing array for 36606 '; + node makeTDcells2.js 36606 > static2/36606_td.html; +echo ' writing array for 36607 '; + node makeTDcells2.js 36607 > static2/36607_td.html; +echo ' writing array for 36608 '; + node makeTDcells2.js 36608 > static2/36608_td.html; +echo ' writing array for 36609 '; + node makeTDcells2.js 36609 > static2/36609_td.html; +echo ' writing array for 36610 '; + node makeTDcells2.js 36610 > static2/36610_td.html; +echo ' writing array for 36611 '; + node makeTDcells2.js 36611 > static2/36611_td.html; +echo ' writing array for 36612 '; + node makeTDcells2.js 36612 > static2/36612_td.html; +echo ' writing array for 36613 '; + node makeTDcells2.js 36613 > static2/36613_td.html; +echo ' writing array for 36614 '; + node makeTDcells2.js 36614 > static2/36614_td.html; +echo ' writing array for 36615 '; + node makeTDcells2.js 36615 > static2/36615_td.html; +echo ' writing array for 36616 '; + node makeTDcells2.js 36616 > static2/36616_td.html; +echo ' writing array for 36617 '; + node makeTDcells2.js 36617 > static2/36617_td.html; +echo ' writing array for 36618 '; + node makeTDcells2.js 36618 > static2/36618_td.html; +echo ' writing array for 36619 '; + node makeTDcells2.js 36619 > static2/36619_td.html; +echo ' writing array for 36620 '; + node makeTDcells2.js 36620 > static2/36620_td.html; +echo ' writing array for 36621 '; + node makeTDcells2.js 36621 > static2/36621_td.html; +echo ' writing array for 36622 '; + node makeTDcells2.js 36622 > static2/36622_td.html; +echo ' writing array for 36623 '; + node makeTDcells2.js 36623 > static2/36623_td.html; +echo ' writing array for 36624 '; + node makeTDcells2.js 36624 > static2/36624_td.html; +echo ' writing array for 36625 '; + node makeTDcells2.js 36625 > static2/36625_td.html; +echo ' writing array for 36626 '; + node makeTDcells2.js 36626 > static2/36626_td.html; +echo ' writing array for 36627 '; + node makeTDcells2.js 36627 > static2/36627_td.html; +echo ' writing array for 36629 '; + node makeTDcells2.js 36629 > static2/36629_td.html; +echo ' writing array for 36630 '; + node makeTDcells2.js 36630 > static2/36630_td.html; +echo ' writing array for 36631 '; + node makeTDcells2.js 36631 > static2/36631_td.html; +echo ' writing array for 36632 '; + node makeTDcells2.js 36632 > static2/36632_td.html; +echo ' writing array for 36633 '; + node makeTDcells2.js 36633 > static2/36633_td.html; +echo ' writing array for 36634 '; + node makeTDcells2.js 36634 > static2/36634_td.html; +echo ' writing array for 36635 '; + node makeTDcells2.js 36635 > static2/36635_td.html; +echo ' writing array for 36636 '; + node makeTDcells2.js 36636 > static2/36636_td.html; +echo ' writing array for 36638 '; + node makeTDcells2.js 36638 > static2/36638_td.html; +echo ' writing array for 36639 '; + node makeTDcells2.js 36639 > static2/36639_td.html; +echo ' writing array for 36640 '; + node makeTDcells2.js 36640 > static2/36640_td.html; +echo ' writing array for 36641 '; + node makeTDcells2.js 36641 > static2/36641_td.html; +echo ' writing array for 36642 '; + node makeTDcells2.js 36642 > static2/36642_td.html; +echo ' writing array for 36643 '; + node makeTDcells2.js 36643 > static2/36643_td.html; +echo ' writing array for 36644 '; + node makeTDcells2.js 36644 > static2/36644_td.html; +echo ' writing array for 36645 '; + node makeTDcells2.js 36645 > static2/36645_td.html; +echo ' writing array for 36646 '; + node makeTDcells2.js 36646 > static2/36646_td.html; +echo ' writing array for 36647 '; + node makeTDcells2.js 36647 > static2/36647_td.html; +echo ' writing array for 36648 '; + node makeTDcells2.js 36648 > static2/36648_td.html; +echo ' writing array for 36649 '; + node makeTDcells2.js 36649 > static2/36649_td.html; +echo ' writing array for 36650 '; + node makeTDcells2.js 36650 > static2/36650_td.html; +echo ' writing array for 36651 '; + node makeTDcells2.js 36651 > static2/36651_td.html; +echo ' writing array for 36653 '; + node makeTDcells2.js 36653 > static2/36653_td.html; +echo ' writing array for 36654 '; + node makeTDcells2.js 36654 > static2/36654_td.html; +echo ' writing array for 36656 '; + node makeTDcells2.js 36656 > static2/36656_td.html; +echo ' writing array for 36657 '; + node makeTDcells2.js 36657 > static2/36657_td.html; +echo ' writing array for 36682 '; + node makeTDcells2.js 36682 > static2/36682_td.html; +echo ' writing array for 36683 '; + node makeTDcells2.js 36683 > static2/36683_td.html; +echo ' writing array for 36684 '; + node makeTDcells2.js 36684 > static2/36684_td.html; +echo ' writing array for 36685 '; + node makeTDcells2.js 36685 > static2/36685_td.html; +echo ' writing array for 36686 '; + node makeTDcells2.js 36686 > static2/36686_td.html; +echo ' writing array for 36687 '; + node makeTDcells2.js 36687 > static2/36687_td.html; +echo ' writing array for 36688 '; + node makeTDcells2.js 36688 > static2/36688_td.html; +echo ' writing array for 36689 '; + node makeTDcells2.js 36689 > static2/36689_td.html; +echo ' writing array for 36690 '; + node makeTDcells2.js 36690 > static2/36690_td.html; +echo ' writing array for 36691 '; + node makeTDcells2.js 36691 > static2/36691_td.html; +echo ' writing array for 36692 '; + node makeTDcells2.js 36692 > static2/36692_td.html; +echo ' writing array for 36693 '; + node makeTDcells2.js 36693 > static2/36693_td.html; +echo ' writing array for 36694 '; + node makeTDcells2.js 36694 > static2/36694_td.html; +echo ' writing array for 36695 '; + node makeTDcells2.js 36695 > static2/36695_td.html; +echo ' writing array for 36696 '; + node makeTDcells2.js 36696 > static2/36696_td.html; +echo ' writing array for 36697 '; + node makeTDcells2.js 36697 > static2/36697_td.html; +echo ' writing array for 36698 '; + node makeTDcells2.js 36698 > static2/36698_td.html; +echo ' writing array for 36699 '; + node makeTDcells2.js 36699 > static2/36699_td.html; +echo ' writing array for 36700 '; + node makeTDcells2.js 36700 > static2/36700_td.html; +echo ' writing array for 36701 '; + node makeTDcells2.js 36701 > static2/36701_td.html; +echo ' writing array for 36702 '; + node makeTDcells2.js 36702 > static2/36702_td.html; +echo ' writing array for 36703 '; + node makeTDcells2.js 36703 > static2/36703_td.html; +echo ' writing array for 36704 '; + node makeTDcells2.js 36704 > static2/36704_td.html; +echo ' writing array for 36705 '; + node makeTDcells2.js 36705 > static2/36705_td.html; +echo ' writing array for 36706 '; + node makeTDcells2.js 36706 > static2/36706_td.html; +echo ' writing array for 36709 '; + node makeTDcells2.js 36709 > static2/36709_td.html; +echo ' writing array for 36710 '; + node makeTDcells2.js 36710 > static2/36710_td.html; +echo ' writing array for 36711 '; + node makeTDcells2.js 36711 > static2/36711_td.html; +echo ' writing array for 36712 '; + node makeTDcells2.js 36712 > static2/36712_td.html; +echo ' writing array for 36713 '; + node makeTDcells2.js 36713 > static2/36713_td.html; +echo ' writing array for 36714 '; + node makeTDcells2.js 36714 > static2/36714_td.html; +echo ' writing array for 36715 '; + node makeTDcells2.js 36715 > static2/36715_td.html; +echo ' writing array for 36716 '; + node makeTDcells2.js 36716 > static2/36716_td.html; +echo ' writing array for 36717 '; + node makeTDcells2.js 36717 > static2/36717_td.html; +echo ' writing array for 36718 '; + node makeTDcells2.js 36718 > static2/36718_td.html; +echo ' writing array for 36719 '; + node makeTDcells2.js 36719 > static2/36719_td.html; +echo ' writing array for 36720 '; + node makeTDcells2.js 36720 > static2/36720_td.html; +echo ' writing array for 36721 '; + node makeTDcells2.js 36721 > static2/36721_td.html; +echo ' writing array for 36722 '; + node makeTDcells2.js 36722 > static2/36722_td.html; +echo ' writing array for 36723 '; + node makeTDcells2.js 36723 > static2/36723_td.html; +echo ' writing array for 36724 '; + node makeTDcells2.js 36724 > static2/36724_td.html; +echo ' writing array for 36725 '; + node makeTDcells2.js 36725 > static2/36725_td.html; +echo ' writing array for 36726 '; + node makeTDcells2.js 36726 > static2/36726_td.html; +echo ' writing array for 36727 '; + node makeTDcells2.js 36727 > static2/36727_td.html; +echo ' writing array for 36728 '; + node makeTDcells2.js 36728 > static2/36728_td.html; +echo ' writing array for 36729 '; + node makeTDcells2.js 36729 > static2/36729_td.html; +echo ' writing array for 36730 '; + node makeTDcells2.js 36730 > static2/36730_td.html; +echo ' writing array for 36731 '; + node makeTDcells2.js 36731 > static2/36731_td.html; +echo ' writing array for 36732 '; + node makeTDcells2.js 36732 > static2/36732_td.html; +echo ' writing array for 36733 '; + node makeTDcells2.js 36733 > static2/36733_td.html; +echo ' writing array for 36734 '; + node makeTDcells2.js 36734 > static2/36734_td.html; +echo ' writing array for 36735 '; + node makeTDcells2.js 36735 > static2/36735_td.html; +echo ' writing array for 36736 '; + node makeTDcells2.js 36736 > static2/36736_td.html; +echo ' writing array for 36737 '; + node makeTDcells2.js 36737 > static2/36737_td.html; +echo ' writing array for 36738 '; + node makeTDcells2.js 36738 > static2/36738_td.html; +echo ' writing array for 36739 '; + node makeTDcells2.js 36739 > static2/36739_td.html; +echo ' writing array for 36740 '; + node makeTDcells2.js 36740 > static2/36740_td.html; +echo ' writing array for 36741 '; + node makeTDcells2.js 36741 > static2/36741_td.html; +echo ' writing array for 36742 '; + node makeTDcells2.js 36742 > static2/36742_td.html; +echo ' writing array for 36743 '; + node makeTDcells2.js 36743 > static2/36743_td.html; +echo ' writing array for 36744 '; + node makeTDcells2.js 36744 > static2/36744_td.html; +echo ' writing array for 36745 '; + node makeTDcells2.js 36745 > static2/36745_td.html; +echo ' writing array for 36746 '; + node makeTDcells2.js 36746 > static2/36746_td.html; +echo ' writing array for 36747 '; + node makeTDcells2.js 36747 > static2/36747_td.html; +echo ' writing array for 36748 '; + node makeTDcells2.js 36748 > static2/36748_td.html; +echo ' writing array for 36749 '; + node makeTDcells2.js 36749 > static2/36749_td.html; +echo ' writing array for 36750 '; + node makeTDcells2.js 36750 > static2/36750_td.html; +echo ' writing array for 36751 '; + node makeTDcells2.js 36751 > static2/36751_td.html; +echo ' writing array for 36752 '; + node makeTDcells2.js 36752 > static2/36752_td.html; +echo ' writing array for 36753 '; + node makeTDcells2.js 36753 > static2/36753_td.html; +echo ' writing array for 36755 '; + node makeTDcells2.js 36755 > static2/36755_td.html; +echo ' writing array for 36758 '; + node makeTDcells2.js 36758 > static2/36758_td.html; +echo ' writing array for 36759 '; + node makeTDcells2.js 36759 > static2/36759_td.html; +echo ' writing array for 36760 '; + node makeTDcells2.js 36760 > static2/36760_td.html; +echo ' writing array for 36761 '; + node makeTDcells2.js 36761 > static2/36761_td.html; +echo ' writing array for 36762 '; + node makeTDcells2.js 36762 > static2/36762_td.html; +echo ' writing array for 36763 '; + node makeTDcells2.js 36763 > static2/36763_td.html; +echo ' writing array for 36764 '; + node makeTDcells2.js 36764 > static2/36764_td.html; +echo ' writing array for 36765 '; + node makeTDcells2.js 36765 > static2/36765_td.html; +echo ' writing array for 36766 '; + node makeTDcells2.js 36766 > static2/36766_td.html; +echo ' writing array for 36767 '; + node makeTDcells2.js 36767 > static2/36767_td.html; +echo ' writing array for 36768 '; + node makeTDcells2.js 36768 > static2/36768_td.html; +echo ' writing array for 36769 '; + node makeTDcells2.js 36769 > static2/36769_td.html; +echo ' writing array for 36770 '; + node makeTDcells2.js 36770 > static2/36770_td.html; +echo ' writing array for 36771 '; + node makeTDcells2.js 36771 > static2/36771_td.html; +echo ' writing array for 36772 '; + node makeTDcells2.js 36772 > static2/36772_td.html; +echo ' writing array for 36773 '; + node makeTDcells2.js 36773 > static2/36773_td.html; +echo ' writing array for 36774 '; + node makeTDcells2.js 36774 > static2/36774_td.html; +echo ' writing array for 36775 '; + node makeTDcells2.js 36775 > static2/36775_td.html; +echo ' writing array for 36776 '; + node makeTDcells2.js 36776 > static2/36776_td.html; +echo ' writing array for 36777 '; + node makeTDcells2.js 36777 > static2/36777_td.html; +echo ' writing array for 36778 '; + node makeTDcells2.js 36778 > static2/36778_td.html; +echo ' writing array for 36780 '; + node makeTDcells2.js 36780 > static2/36780_td.html; +echo ' writing array for 36781 '; + node makeTDcells2.js 36781 > static2/36781_td.html; +echo ' writing array for 36782 '; + node makeTDcells2.js 36782 > static2/36782_td.html; +echo ' writing array for 36783 '; + node makeTDcells2.js 36783 > static2/36783_td.html; +echo ' writing array for 36784 '; + node makeTDcells2.js 36784 > static2/36784_td.html; +echo ' writing array for 36787 '; + node makeTDcells2.js 36787 > static2/36787_td.html; +echo ' writing array for 36788 '; + node makeTDcells2.js 36788 > static2/36788_td.html; +echo ' writing array for 36789 '; + node makeTDcells2.js 36789 > static2/36789_td.html; +echo ' writing array for 36790 '; + node makeTDcells2.js 36790 > static2/36790_td.html; +echo ' writing array for 36791 '; + node makeTDcells2.js 36791 > static2/36791_td.html; +echo ' writing array for 36792 '; + node makeTDcells2.js 36792 > static2/36792_td.html; +echo ' writing array for 36793 '; + node makeTDcells2.js 36793 > static2/36793_td.html; +echo ' writing array for 36794 '; + node makeTDcells2.js 36794 > static2/36794_td.html; +echo ' writing array for 36795 '; + node makeTDcells2.js 36795 > static2/36795_td.html; +echo ' writing array for 36796 '; + node makeTDcells2.js 36796 > static2/36796_td.html; +echo ' writing array for 36797 '; + node makeTDcells2.js 36797 > static2/36797_td.html; +echo ' writing array for 36798 '; + node makeTDcells2.js 36798 > static2/36798_td.html; +echo ' writing array for 36799 '; + node makeTDcells2.js 36799 > static2/36799_td.html; +echo ' writing array for 36800 '; + node makeTDcells2.js 36800 > static2/36800_td.html; +echo ' writing array for 36802 '; + node makeTDcells2.js 36802 > static2/36802_td.html; +echo ' writing array for 36803 '; + node makeTDcells2.js 36803 > static2/36803_td.html; +echo ' writing array for 36804 '; + node makeTDcells2.js 36804 > static2/36804_td.html; +echo ' writing array for 36805 '; + node makeTDcells2.js 36805 > static2/36805_td.html; +echo ' writing array for 36807 '; + node makeTDcells2.js 36807 > static2/36807_td.html; +echo ' writing array for 36809 '; + node makeTDcells2.js 36809 > static2/36809_td.html; +echo ' writing array for 36810 '; + node makeTDcells2.js 36810 > static2/36810_td.html; +echo ' writing array for 36811 '; + node makeTDcells2.js 36811 > static2/36811_td.html; +echo ' writing array for 36812 '; + node makeTDcells2.js 36812 > static2/36812_td.html; +echo ' writing array for 36813 '; + node makeTDcells2.js 36813 > static2/36813_td.html; +echo ' writing array for 36814 '; + node makeTDcells2.js 36814 > static2/36814_td.html; +echo ' writing array for 36815 '; + node makeTDcells2.js 36815 > static2/36815_td.html; +echo ' writing array for 36817 '; + node makeTDcells2.js 36817 > static2/36817_td.html; +echo ' writing array for 36825 '; + node makeTDcells2.js 36825 > static2/36825_td.html; +echo ' writing array for 36826 '; + node makeTDcells2.js 36826 > static2/36826_td.html; +echo ' writing array for 36829 '; + node makeTDcells2.js 36829 > static2/36829_td.html; +echo ' writing array for 36830 '; + node makeTDcells2.js 36830 > static2/36830_td.html; +echo ' writing array for 36831 '; + node makeTDcells2.js 36831 > static2/36831_td.html; +echo ' writing array for 36833 '; + node makeTDcells2.js 36833 > static2/36833_td.html; +echo ' writing array for 36850 '; + node makeTDcells2.js 36850 > static2/36850_td.html; +echo ' writing array for 36877 '; + node makeTDcells2.js 36877 > static2/36877_td.html; +echo ' writing array for 36976 '; + node makeTDcells2.js 36976 > static2/36976_td.html; +echo ' writing array for 36987 '; + node makeTDcells2.js 36987 > static2/36987_td.html; +echo ' writing array for 36988 '; + node makeTDcells2.js 36988 > static2/36988_td.html; +echo ' writing array for 37593 '; + node makeTDcells2.js 37593 > static2/37593_td.html; +echo ' writing array for 39326 '; + node makeTDcells2.js 39326 > static2/39326_td.html; +echo ' writing array for 39390 '; + node makeTDcells2.js 39390 > static2/39390_td.html; +echo ' writing array for 39640 '; + node makeTDcells2.js 39640 > static2/39640_td.html;