text
stringlengths
6
9.38M
create table TeacherTable( ID int identity(1,1) primary key, TeacherID int not null, TeacherName varchar(100) not null, Department varchar(100) not null, Post varchar(100) not null );
use stackoverflowSep; #vista che isola i close votes (validi solo su domande) DROP TABLE closevotes_mv; CREATE TABLE closevotes_mv ( c_postID INTEGER NOT NULL , c_ownerID INTEGER NOT NULL , c_postDate DATETIME NOT NULL , c_voteDate DATETIME NOT NULL , cts_voteDate DATE NOT NULL , c_voteID INTEGER NOT NULL PRIMARY KEY , INDEX pID (c_postID) , INDEX oID (c_ownerID) , INDEX pDate (c_postDate) , INDEX vDate (c_voteDate) , INDEX v_ts_Date (cts_voteDate) , UNIQUE INDEX vID (c_voteID) , INDEX user_datavoto (c_ownerID, cts_voteDate) ); INSERT INTO closevotes_mv SELECT Posts.Id, Posts.OwnerUserId, Posts.CreationDate, Votes.CreationDate, date(Votes.CreationDate), Votes.Id FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 6 ; #vista che isola i deletion votes DROP TABLE deletionvotes_mv; CREATE TABLE deletionvotes_mv ( del_postID INTEGER NOT NULL , del_ownerID INTEGER NOT NULL , del_postDate DATETIME NOT NULL , del_voteDate DATETIME NOT NULL , delts_voteDate DATE NOT NULL , del_voteID INTEGER NOT NULL PRIMARY KEY , INDEX pID (del_postID) , INDEX oID (del_ownerID) , INDEX pDate (del_postDate) , INDEX vDate (del_voteDate) , INDEX v_ts_Date (delts_voteDate) , UNIQUE INDEX vID (del_voteID) , INDEX user_datavoto (del_ownerID, delts_voteDate) ); INSERT INTO deletionvotes_mv SELECT Posts.Id, Posts.OwnerUserId, Posts.CreationDate, Votes.CreationDate, date(Votes.CreationDate), Votes.Id FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 10 ; #vista che isola i favorite votes DROP TABLE favoritevotes_mv; CREATE TABLE favoritevotes_mv ( f_postID INTEGER NOT NULL , f_ownerID INTEGER NOT NULL , f_postDate DATETIME NOT NULL , f_voteDate DATETIME NOT NULL , fts_voteDate DATE NOT NULL , f_voteID INTEGER NOT NULL PRIMARY KEY , INDEX pID (f_postID) , INDEX oID (f_ownerID) , INDEX pDate (f_postDate) , INDEX vDate (f_voteDate) , INDEX v_ts_Date (fts_voteDate) , UNIQUE INDEX vID (f_voteID) , INDEX user_datavoto (f_ownerID, fts_voteDate) ); INSERT INTO favoritevotes_mv SELECT Posts.Id, Posts.OwnerUserId, Posts.CreationDate, Votes.CreationDate, date(Votes.CreationDate), Votes.Id FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 5 ; #vista che isola i moderator review votes DROP TABLE modreviewvotes_mv; CREATE TABLE modreviewvotes_mv ( m_postID INTEGER NOT NULL , m_ownerID INTEGER NOT NULL , m_postDate DATETIME NOT NULL , m_voteDate DATETIME NOT NULL , mts_voteDate DATE NOT NULL , m_voteID INTEGER NOT NULL PRIMARY KEY , INDEX pID (m_postID) , INDEX oID (m_ownerID) , INDEX pDate (m_postDate) , INDEX vDate (m_voteDate) , INDEX v_ts_Date (mts_voteDate) , UNIQUE INDEX vID (m_voteID) , INDEX user_datavoto (m_ownerID, mts_voteDate) ); INSERT INTO modreviewvotes_mv SELECT Posts.Id, Posts.OwnerUserId, Posts.CreationDate, Votes.CreationDate, date(Votes.CreationDate), Votes.Id FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 15 ; #vista che isola i reopen votes DROP TABLE reopenvotes_mv; CREATE TABLE reopenvotes_mv ( ro_postID INTEGER NOT NULL , ro_ownerID INTEGER NOT NULL , ro_postDate DATETIME NOT NULL , ro_voteDate DATETIME NOT NULL , rots_voteDate DATE NOT NULL , ro_voteID INTEGER NOT NULL PRIMARY KEY , INDEX pID (ro_postID) , INDEX oID (ro_ownerID) , INDEX pDate (ro_postDate) , INDEX vDate (ro_voteDate) , INDEX v_ts_Date (rots_voteDate) , UNIQUE INDEX vID (ro_voteID) , INDEX user_datavoto (ro_ownerID, rots_voteDate) ); INSERT INTO reopenvotes_mv SELECT Posts.Id, Posts.OwnerUserId, Posts.CreationDate, Votes.CreationDate, date(Votes.CreationDate), Votes.Id FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 7 ; #vista che isola gli undeletion votes DROP TABLE undeletionvotes_mv; CREATE TABLE undeletionvotes_mv ( udel_postID INTEGER NOT NULL , udel_ownerID INTEGER NOT NULL , udel_postDate DATETIME NOT NULL , udel_voteDate DATETIME NOT NULL , udelts_voteDate DATE NOT NULL , udel_voteID INTEGER NOT NULL PRIMARY KEY , INDEX pID (udel_postID) , INDEX oID (udel_ownerID) , INDEX pDate (udel_postDate) , INDEX vDate (udel_voteDate) , INDEX v_ts_Date (udelts_voteDate) , UNIQUE INDEX vID (udel_voteID) , INDEX user_datavoto (udel_ownerID, udelts_voteDate) ); INSERT INTO undeletionvotes_mv SELECT Posts.Id, Posts.OwnerUserId, Posts.CreationDate, Votes.CreationDate, date(Votes.CreationDate), Votes.Id FROM Posts INNER JOIN Votes ON Posts.Id = Votes.PostId WHERE Votes.VoteTypeId = 11 ;
/* 随机函数:rand()   在查询分析器中执行:select rand(),可以看到结果会是类似于这样的随机小数:0.36361513486289558,像这样的小数在实际应用中用得不多,一般要取随机数都会取随机整数。 那就看下面的两种随机取整数的方法:     */ select rand(); # 0.31140765204225446 select rand()*100000; # 92640.38614243305 select round(rand(),4)*100000; # 69780.0000 select round(round(rand(),4)*100000); # 70980 select floor(5.1); # 5 select floor(5.5); # 5 select floor(5.6); # 5 select floor(5.9); # 5 select floor(6.0); # 6 select floor(rand()*100000); select ceiling(5.3); # 6 select ceiling(6.0); # 6 select ceiling(6.1); # 7 select ceiling(rand() * 100000); -- 表oneself.`category`插入数据 truncate table `oneself-study`.`category`; insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('医',0, 1, 1, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('法',0, 1, 2, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('商',0, 1, 3, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('农',0, 1, 4, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('工',0, 1, 5, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('政',0, 1, 6, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('建',0, 1, 7, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('金融',0, 1, 8, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('数学',0, 1, 9, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000)); insert into `oneself-study`.`category` (`name`,`parent_id`,`is_parent`,`sort`,`create_time`,`create_by`,`update_time`,`update_by`) values('初等数学',(SELECT * FROM (select id from `oneself-study`.`category` where name = '数学') as a), 0, 1, SYSDATE() , floor(rand()*100000), SYSDATE(), floor(rand()*100000));
UPDATE BEHANDLING SET behandling_type = 'FØRSTEGANGSBEHANDLING' WHERE id = '1106052';
--Quantidade de cartões ativos em 08/2018: 22.431 --Quantidade de cpfs ativos em 08/2018: 22.369 --Quantidade de cartões ativos em 08/2018, com limite de saque extra: 15.517 --Quantidade de cpfs ativos em 08/2018, com limite de saque extra: 15.509 --Quantidade de cartões ativos em 08/2019: 24.528 --Quantidade de cpfs ativos em 08/2019: 24.455 --Quantidade de cartões ativos em 08/2018, com limite de saque extra: 16.484 --Quantidade de cpfs ativos em 08/2018, com limite de saque extra: 16.470 select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cadastro_unico, avg(cm.qtde_mes_deposito) as media_meses_deposito from sc_analise.tbl_cartoes_mes cm inner join sc_opr.tbl_crt crt on cm.cartao = crt.cd_crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc where mes = 8 and ano = 2019 and ativo = 'S' and sc_opr.get_limite_concedido_tempo(crt.cd_crt, 1, '2019-08-31') > 0; --Quantidade de novos cartoes emitidos de 01/09/2018 a 31/08/2019: 14.685 --Quantidade de novos cpfs emitidos de 01/09/2018 a 31/08/2019: 14.308 select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cadastro_unico from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc where crt.dt_inc_usr >= '2018-09-01' and crt.dt_inc_usr < '2019-09-01' and not exists (select 1 from sc_cad.tbl_fnc fnc2 where fnc2.cd_cun = fnc.cd_cun and fnc2.dt_inc_usr < '2018-09-01'); --Quantidade de novos cartoes emitidos e ativados de 01/09/2018 a 31/08/2019: 13.688 --Quantidade de novos cpfs emitidos e ativados de 01/09/2018 a 31/08/2019: 13.411 select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cadastro_unico from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc where crt.dt_inc_usr >= '2018-09-01' and crt.dt_inc_usr < '2019-09-01' and crt.dt_pri_dps_crt is not null and not exists (select 1 from sc_cad.tbl_fnc fnc2 where fnc2.cd_cun = fnc.cd_cun and fnc2.dt_inc_usr < '2018-09-01'); --Quantidade de novos cartoes emitidos, ativados e com limite de saque extra de 01/09/2018 a 31/08/2019: 7.498 --Quantidade de novos cpfs emitidos, ativados e com limite de saque extra de 01/09/2018 a 31/08/2019: 7.397 select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cadastro_unico from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc where crt.dt_inc_usr >= '2018-09-01' and crt.dt_inc_usr < '2019-09-01' and crt.dt_pri_dps_crt is not null and exists (select 1 from sc_opr.tbl_hlm hlm where crt.cd_crt = hlm.cd_crt and hlm.cd_tlt = 1 and hlm.vl_cnc_lmt_atl > 0) and not exists (select 1 from sc_cad.tbl_fnc fnc2 where fnc2.cd_cun = fnc.cd_cun and fnc2.dt_inc_usr < '2018-09-01'); --Quantidade de novos cartoes emitidos, ativados, com limite de saque extra e que realizaram operação de 01/09/2018 a 31/08/2019: 3.456 --Quantidade de novos cpfs emitidos, ativados e com limite de saque extra e que realizaram operação de 01/09/2018 a 31/08/2019: 3.432 select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cadastro_unico from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc inner join sc_opr.tbl_pls pls on crt.cd_crt = pls.cd_crt inner join sc_opr.tbl_opr opr on pls.cd_pls = opr.cd_pls and opr.cd_top = 5 and opr.st_opr = 2 where crt.dt_inc_usr >= '2018-09-01' and crt.dt_inc_usr < '2019-09-01' and crt.dt_pri_dps_crt is not null and exists (select 1 from sc_opr.tbl_hlm hlm where crt.cd_crt = hlm.cd_crt and hlm.cd_tlt = 1 and hlm.vl_cnc_lmt_atl > 0) and not exists (select 1 from sc_cad.tbl_fnc fnc2 where fnc2.cd_cun = fnc.cd_cun and fnc2.dt_inc_usr < '2018-09-01'); --Quantidade de transações PRÉ-PAGO de 01/09/2018 a 31/08/2019: 516.349 --Quantidade de cartões com transações de 01/09/2018 a 31/08/2019: 34.908 --Quantidade de cpfs com transações de 01/09/2018 a 31/08/2019: 32.683 --Quantidade de operações por cartão: 15 --Valor médio das operacoes: 534,35 --Tipos de operações consideradas: SAQUE, COMPRA A DÉBITO e COMPRA A VISTA select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cpfs, count(distinct opr.cd_opr) as qtde_operacoes, count(distinct opr.cd_opr) / count(distinct crt.cd_crt) as qtde_transacoes_por_cartao, count(distinct opr.cd_opr) / count(distinct fnc.cd_cun) as qtde_transacoes_por_cpf, avg(opr.vl_opr) as valor_medio_operacoes from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc inner join sc_opr.tbl_pls pls on crt.cd_crt = pls.cd_crt inner join sc_opr.tbl_opr opr on opr.cd_pls = pls.cd_pls where opr.dt_opr >= '2018-09-01' and opr.dt_opr < '2019-09-01' and opr.cd_top in (4, 25, 27); --Quantidade de transações SAQUE EXTRA de 01/09/2018 a 31/08/2019: 120.639 --Quantidade de cartões com transações de 01/09/2018 a 31/08/2019: 16.181 --Quantidade de cpfs com transações de 01/09/2018 a 31/08/2019: 15.878 --Quantidade de operações por cartão: 7 --Valor médio das operacoes: 365,57 --Tipos de operações consideradas: SAQUE EXTRA select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cpfs, count(distinct opr.cd_opr) as qtde_operacoes, count(distinct opr.cd_opr) / count(distinct crt.cd_crt) as qtde_transacoes_por_cartao, count(distinct opr.cd_opr) / count(distinct fnc.cd_cun) as qtde_transacoes_por_cpf, avg(vl_opr - (vl_jrs_opr + vl_trf_opr + vl_iof_opr)) as valor_medio_operacoes from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc inner join sc_opr.tbl_pls pls on crt.cd_crt = pls.cd_crt inner join sc_opr.tbl_opr opr on opr.cd_pls = pls.cd_pls where opr.dt_opr >= '2018-09-01' and opr.dt_opr < '2019-09-01' and opr.cd_top in (5); select count(distinct crt.cd_crt) as qtde_cartoes, count(distinct fnc.cd_cun) as qtde_cadastro_unico from sc_opr.tbl_crt crt inner join sc_cad.tbl_fnc fnc on crt.cd_fnc = fnc.cd_fnc inner join sc_analise.tbl_cartoes_mes cm on crt.cd_crt = cm.cartao and cm.mes = 8 and cm.ano = 2019 where crt.dt_inc_usr >= '2018-09-01' and crt.dt_inc_usr < '2019-09-01' and cm.ativo = 'S' and crt.dt_pri_dps_crt is not null and not exists (select 1 from sc_cad.tbl_fnc fnc2 where fnc2.cd_cun = fnc.cd_cun and fnc2.dt_inc_usr < '2018-09-01');
USE ims; CREATE TABLE `credit_card` ( `CreditCardID` int(10) unsigned NOT NULL, `CardType` varchar(45) DEFAULT NULL, `CardNumber` varchar(45) DEFAULT NULL, `ExpMonth` varchar(45) DEFAULT NULL, `ExpYear` year(4) DEFAULT NULL, PRIMARY KEY (`CreditCardID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/* Name: Amount of internal clicks berk Data source: 4 Created By: Admin Last Update At: 2016-02-19T13:26:47.985684+00:00 */ SELECT date_time, page_url, count(*) FROM (TABLE_QUERY(djomniture:cipomniture_djmansionglobal,'CONCAT(REPLACE(table_id,"_","-"),"-01") BETWEEN STRFTIME_UTC_USEC("{{startdate}}", "%Y-%m-01") and STRFTIME_UTC_USEC("{{enddate}}", "%Y-%m-31")')) WHERE post_prop10 = 'berkshire_hathaway_widget' AND DATE(date_time) >= DATE('{{startdate}}') AND DATE('{{startdate}}') >= DATE('2015-02-01') AND DATE(date_time) <= DATE('{{enddate}}') GROUP BY page_url,date_time ORDER BY page_url limit 30
--修改人:吴生火 --修改时间:2012-11-11 --修改内容:财务公司开户账号位数 insert into fc_param (PARAM_CODE, PARAM_NAME, PARAM_VALUE, RMK, COL_ADD1, COL_ADD2, WINDOW_NAME) values ( 'sys_acc_num', '内部账号位数是否取16位', '1', '0为内部账号位数取20位1为内部账号位数取16位', '', '', ''); commit;
--修改日期:2012.11.30 --修改人:祁继鸿 --修改内容:user00035243 --修改原因:对银行授信待审批列表,在当前位置地址多了“审批”二字需要去掉 update bt_approve_business set business_name='银行额度申请占用' where business_name='银行额度申请占用审批'; update bt_approve_business set business_name='银行额度录入' where business_name='银行额度录入审批'; update bt_approve_business set business_name='银行额度分配' where business_name='银行额度分配审批'; update bt_approve_business set business_name='银行额度调剂' where business_name='银行额度调剂审批'; update bt_approve_business set business_name='内部额度录入' where business_name='内部额度录入审批'; update bt_approve_business set business_name='内部额度申请占用' where business_name='内部额度申请占用审批'; update bt_approve_business set business_name='内部额度追加' where business_name='内部额度追加审批'; commit; /
CREATE TABLE IF NOT EXISTS `tb_grpusers_files` ( `id_grpusers_files` int(11) NOT NULL AUTO_INCREMENT, `pathfile` varchar(300) NOT NULL, `id_group` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_grpusers_files`), FOREIGN KEY (id_group) REFERENCES tb_group(id_group), FOREIGN KEY (id_user) REFERENCES tb_user(id_user) )
--Problem 06 SUM + WHERE SELECT DepositGroup ,SUM(DepositAmount) AS TotalSum FROM WizzardDeposits WHERE MagicWandCreator = 'Ollivander family' GROUP BY DepositGroup
drop table if exists upx_db_itensmenu; drop table if exists upx_db_menu; drop table if exists upx_db_sysarquivo; drop table if exists upx_db_sysarqmod; drop table if exists upx_db_sysprikey; drop table if exists upx_db_sysforkey; drop table if exists upx_db_syssequencia; drop table if exists upx_db_sysindices; drop table if exists upx_db_syscadind; drop table if exists upx_db_syscampo; drop table if exists upx_db_sysarqcamp; create temporary table upx_db_sysarquivo as select * from db_sysarquivo limit 0; create temporary table upx_db_sysarqmod as select * from db_sysarqmod limit 0; create temporary table upx_db_syscampo as select * from db_syscampo limit 0; create temporary table upx_db_sysprikey as select * from db_sysprikey limit 0; create temporary table upx_db_sysforkey as select * from db_sysforkey limit 0; create temporary table upx_db_syssequencia as select * from db_syssequencia limit 0; create temporary table upx_db_sysindices as select * from db_sysindices limit 0; create temporary table upx_db_syscadind as select * from db_syscadind limit 0; create temporary table upx_db_sysarqcamp as select * from db_sysarqcamp limit 0; create temporary table upx_db_itensmenu as select * from db_itensmenu limit 0; create temporary table upx_db_menu as select * from db_menu limit 0; insert into upx_db_itensmenu values ( 10332 ,'Configuração da Nota' ,'Configuração da Nota' ,'' ,'1' ,'1' ,'Configura o estrutural da nota' ,'true' ), ( 10333 ,'Inclusão' ,'Inclusão' ,'edu4_configuraestruturanota001.php?db_opcao=1' ,'1' ,'1' ,'Inclui a configuração da nota' ,'true' ), ( 10334 ,'Alteração' ,'Alteração' ,'edu4_configuraestruturanota001.php?db_opcao=2' ,'1' ,'1' ,'Altera a configuração da nota' ,'true' ), ( 10335 ,'Exclusão' ,'Exclusão' ,'edu4_configuraestruturanota001.php?db_opcao=3' ,'1' ,'1' ,'Exclui a configuração da nota' ,'true' ); insert into upx_db_menu values ( 1100791 ,1100857 ,19 ,7159 ), ( 1100857 ,1100858 ,4 ,7159 ), ( 1100857 ,1100859 ,5 ,7159 ), ( 1100857 ,1100860 ,6 ,7159 ), ( 3470 ,1100865 ,43 ,7159 ), ( 1100865 ,1100866 ,5 ,7159 ), ( 1100865 ,1100867 ,6 ,7159 ), ( 9081 ,10332 ,4 ,7159 ), ( 10332 ,10333 ,1 ,7159 ), ( 10332 ,10334 ,2 ,7159 ), ( 10332 ,10335 ,3 ,7159 ), ( 1100865 ,10331 ,7 ,7159 ); insert into db_itensmenu select * from upx_db_itensmenu where not exists ( select 1 from db_itensmenu where db_itensmenu.id_item = upx_db_itensmenu.id_item); insert into db_menu select * from upx_db_menu where not exists ( select 1 from db_menu where db_menu.id_item = upx_db_menu.id_item and db_menu.id_item_filho = upx_db_menu.id_item_filho and db_menu.modulo = upx_db_menu.modulo ); insert into upx_db_sysarquivo values (3990, 'avaliacaoestruturanotapadrao', 'Configuração da Nota na secretaria de educação.', 'ed139', '2016-11-10', 'Configuração da Nota', 0, 'f', 'f', 'f', 'f' ); insert into upx_db_sysarqmod values (1008004,3990); insert into upx_db_syscampo values (22148,'ed139_sequencial','int4','Código','0', 'Código',10,'f','f','f',1,'text','Código'), (22149,'ed139_db_estrutura','int4','Estrutural da nota','0', 'Estrutural',10,'f','f','f',1,'text','Estrutural'), (22150,'ed139_ativo','bool','Se a configuração esta ativa.','f', 'Ativo',1,'f','f','f',5,'text','Ativo'), (22151,'ed139_arredondamedia','bool','Se deve arredondar a média.','f', 'Arredonda média',1,'f','f','f',5,'text','Arredonda média'), (22152,'ed139_regraarredondamento','int4','Se houver, usa a regra de arredondamento aplicada. ','0', 'Regra de arredondamento',10,'t','f','f',1,'text','Regra de arredondamento'), (22153,'ed139_observacao','varchar(300)','Observação','', 'Observação',300,'t','t','f',0,'text','Observação'), (22154,'ed139_ano','int4','Ano que a configuração é aplicada','0', 'Ano',10,'f','f','f',1,'text','Ano'); insert into upx_db_sysarqcamp values (3990,22148,1,0), (3990,22149,2,0), (3990,22150,3,0), (3990,22151,4,0), (3990,22152,5,0), (3990,22153,6,0), (3990,22154,7,0); insert into upx_db_sysprikey values(3990,22148,1,22148); insert into upx_db_sysforkey values (3990,22149,1,898,0), (3990,22152,1,3368,0); insert into upx_db_syssequencia values(1000619, 'avaliacaoestruturanotapadrao_ed139_sequencial_seq', 1, 1, 9223372036854775807, 1, 1); insert into upx_db_sysindices values (4390,'avaliacaoestruturanotapadrao_db_estrutura_in',3990,'0'), (4391,'avaliacaoestruturanotapadrao_regraarredondamento_in',3990,'0'), (4392,'avaliacaoestruturanotapadrao_ano_in',3990,'0'); insert into upx_db_syscadind values (4390,22149,1), (4391,22152,1), (4392,22154,1); insert into db_sysarquivo select * from upx_db_sysarquivo where not exists ( select 1 from db_sysarquivo where db_sysarquivo.codarq = upx_db_sysarquivo.codarq); insert into db_sysarqmod select * from upx_db_sysarqmod where not exists ( select 1 from db_sysarqmod where db_sysarqmod.codarq = upx_db_sysarqmod.codarq); insert into db_syscampo select * from upx_db_syscampo where not exists ( select 1 from db_syscampo where db_syscampo.codcam = upx_db_syscampo.codcam); insert into db_sysarqcamp select * from upx_db_sysarqcamp where not exists ( select 1 from db_sysarqcamp where db_sysarqcamp.codcam = upx_db_sysarqcamp.codcam); insert into db_sysprikey select * from upx_db_sysprikey where not exists( select 1 from db_sysprikey where db_sysprikey.codarq = upx_db_sysprikey.codarq and db_sysprikey.codcam = upx_db_sysprikey.codcam); insert into db_sysforkey select * from upx_db_sysforkey where not exists( select 1 from db_sysforkey where db_sysforkey.codarq = upx_db_sysforkey.codarq and db_sysforkey.codcam = upx_db_sysforkey.codcam); insert into db_syssequencia select * from upx_db_syssequencia where not exists( select 1 from db_syssequencia where db_syssequencia.codsequencia = upx_db_syssequencia.codsequencia); insert into db_sysindices select * from upx_db_sysindices where not exists( select 1 from db_sysindices where db_sysindices.codind = upx_db_sysindices.codind); insert into db_syscadind select * from upx_db_syscadind where not exists( select 1 from db_syscadind where db_syscadind.codind = upx_db_syscadind.codind); update db_sysarqcamp set codsequencia = 1000619 where codarq = 3990 and codcam = 22148; update db_syscampo set nulo = 't' where codcam = 1009219; delete from db_syscampodep where codcam = 1009219; delete from db_syscampodef where codcam = 1009219; select fc_executa_ddl('CREATE SEQUENCE escola.avaliacaoestruturanotapadrao_ed139_sequencial_seq INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 1 CACHE 1;'); CREATE TABLE IF NOT EXISTS escola.avaliacaoestruturanotapadrao( ed139_sequencial int4 NOT NULL default 0, ed139_db_estrutura int4 NOT NULL default 0, ed139_ativo bool NOT NULL default 'f', ed139_arredondamedia bool NOT NULL default 'f', ed139_regraarredondamento int4 default null, ed139_observacao varchar(300) , ed139_ano int4 default 0, CONSTRAINT avaliacaoestruturanotapadrao_sequ_pk PRIMARY KEY (ed139_sequencial), CONSTRAINT avaliacaoestruturanotapadrao_estrutura_fk FOREIGN KEY (ed139_db_estrutura) REFERENCES configuracoes.db_estrutura, CONSTRAINT avaliacaoestruturanotapadrao_regraarredondamento_fk FOREIGN KEY (ed139_regraarredondamento) REFERENCES escola.regraarredondamento ); select fc_executa_ddl(' CREATE INDEX avaliacaoestruturanotapadrao_db_estrutura_in ON avaliacaoestruturanotapadrao(ed139_db_estrutura); CREATE INDEX avaliacaoestruturanotapadrao_ano_in ON avaliacaoestruturanotapadrao(ed139_ano); CREATE INDEX avaliacaoestruturanotapadrao_regraarredondamento_in ON avaliacaoestruturanotapadrao(ed139_regraarredondamento); '); select fc_executa_ddl('alter table formaavaliacao alter COLUMN ed37_i_escola drop not null;');
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 29, 2020 at 09:36 PM -- Server version: 10.1.38-MariaDB -- PHP Version: 7.3.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `s_crswitzer1` -- DELIMITER $$ -- -- Procedures -- CREATE DEFINER=`root`@`localhost` PROCEDURE `customerContactAssign` (`customerCount` INT, `EndOfCount` INT) BEGIN DECLARE ContactValue INT DEFAULT 1 ; DECLARE rowCursor INT DEFAULT 1 ; DECLARE IfCounter INT DEFAULT 1 ; DECLARE OrginalValue INT DEFAULT 1 ; SET OrginalValue = customerCount ; WHILE rowCursor <= EndOfCount DO IF rowCursor > customerCount THEN SET IfCounter = IfCounter + 1 ; SET ContactValue = 1 ; SET customerCount = OrginalValue * IfCounter ; END IF ; UPDATE `contact` SET contact.customerID = ContactValue WHERE contact.ContactID = rowCursor ; SET rowCursor = rowCursor + 1 ; SET ContactValue = ContactValue + 1 ; END WHILE ; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `jobSiteContactAssign` (`EndOfCount` INT) BEGIN DECLARE siteContactValue INT DEFAULT 1 ; DECLARE rowCursor INT DEFAULT 1 ; DECLARE siteContactCount INT DEFAULT 1 ; SET siteContactCount =( SELECT COUNT(*) FROM contact ) +1 ; SET siteContactValue = siteContactCount / 2 ; WHILE rowCursor <= EndOfCount DO UPDATE `job_site` SET job_site.siteContact = siteContactValue WHERE job_site.JobSiteID = rowCursor ; SET rowCursor = rowCursor + 1 ; SET siteContactValue = siteContactValue + 1 ; END WHILE ; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `jobSiteCustomerAssign` (`EndOfCount` INT) BEGIN DECLARE repairValue INT DEFAULT 1 ; DECLARE rowCursor INT DEFAULT 1 ; DECLARE IfCounter INT DEFAULT 1 ; WHILE rowCursor <= EndOfCount DO UPDATE `job_site` SET job_site.customerID = rowCursor WHERE job_site.JobSiteID = rowCursor ; SET rowCursor = rowCursor + 1 ; END WHILE ; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `MDAssign` (`customerCount` INT, `EndOfCount` INT) BEGIN DECLARE CustValue INT DEFAULT 1 ; DECLARE rowCursor INT DEFAULT 1 ; DECLARE IfCounter INT DEFAULT 1 ; DECLARE OrginalValue INT DEFAULT 1 ; SET OrginalValue = customerCount ; WHILE rowCursor <= EndOfCount DO IF rowCursor > customerCount THEN SET IfCounter = IfCounter + 1 ; SET CustValue = 1 ; SET customerCount = OrginalValue * IfCounter ; END IF ; UPDATE `machinery` SET machinery.customerID = CustValue WHERE machinery.MachineryID = rowCursor ; SET rowCursor = rowCursor + 1 ; SET CustValue = CustValue + 1 ; END WHILE ; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `priceOfRepairsAssign` (`EndOfCount` INT) BEGIN DECLARE repairValue INT DEFAULT 1 ; DECLARE rowCursor INT DEFAULT 1 ; DECLARE IfCounter INT DEFAULT 1 ; DECLARE OrginalValue INT DEFAULT 1 ; WHILE rowCursor <= EndOfCount DO UPDATE `machinery` SET machinery.priceOfRepairs = repairValue WHERE machinery.MachineryID = rowCursor ; SET rowCursor = rowCursor + 1 ; SET repairValue = repairValue + 1 ; END WHILE ; END$$ DELIMITER ; -- -------------------------------------------------------- -- -- Table structure for table `contact` -- CREATE TABLE `contact` ( `ContactID` int(11) NOT NULL, `customerID` int(11) DEFAULT NULL, `Title` varchar(5) DEFAULT NULL, `firstName` varchar(50) DEFAULT NULL, `lastName` varchar(50) DEFAULT NULL, `Department` varchar(100) DEFAULT NULL, `Address1` varchar(100) DEFAULT NULL, `Address2` varchar(50) DEFAULT NULL, `City` varchar(25) DEFAULT NULL, `State` varchar(10) DEFAULT NULL, `Zip` varchar(15) DEFAULT NULL, `Phone` varchar(20) DEFAULT NULL, `faxNumber` varchar(20) DEFAULT NULL, `email` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `contact` -- INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (1, 1, 'JOE', 'Eddy', 'Lover', NULL, '415 South Transit Street', NULL, 'Lockport', 'NY', '14094', '(716) 625-6933', '(716) 625-6983 Fax', 'elover@glynngroup.com '), (2, 2, 'Mr', 'Louis', 'Iannettoni', '', '1841 Lemoyne Avenue ', '', 'Syracuse', 'NY', '13208', '315-454-3231', '315-454-8559 Fax ', 'louis@meloon.com'), (3, 3, 'Mr', 'David', 'Stultz', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (4, 4, 'Mr', 'Eric', 'Hoard', 'Attn: Judy Craft', '3601 Gauley Turnpike', '', 'Heater', 'WV', '26627', '304-765-4254', '304-765-4285 Fax', 'eric.hoard@weyerhaeuser.com'), (5, 5, 'Mr', 'Matt', 'Norris', '', '8980 Route. 108 ', 'Suite D', 'Columbia', 'MD', '21045', '410-772-2220', '410-772-2221 Fax', 'mattnorris@TQCI.net '), (6, 6, 'Mr', 'Satish', 'Korpe', '', '9244 E. Hampton Drive, Suite 615', '', 'Capital Heights', 'MD', '20743', '301-336-6857', '301-336-6899 Fax ', ''), (7, 7, 'Mr', 'John', 'Longstreth', '', '4477 E. Fifth Avenue', '', 'Columbus', 'OH', '43219', '614-338-8501', '614-338-8514 Fax ', ''), (8, 8, 'Mr', 'Jeff', 'Wiebold', '', '9231 Rumsey Road ', '', 'Columbia', 'MD', '21045', '410-381-0232', '410-381-8908 Fax', 'kirsten.tollefsen@cardno.com'), (9, 9, 'Mr', 'Anthony', 'Fragale', '', 'PO Box 426', '1000 Church Street', 'Boomer', 'WV', '25031', '(304) 779-2131', '(304) 779-2859 Fax', 'a_fragale@esmerassociates.com'), (10, 10, 'Mr', 'Joe', 'Waldinsperger', '', '35 Vantage Point Drive', '', 'Rochester', 'NY', '14624', '1-800-828-1470', '585-352-7359 Fax ', 'evac@westconinc.com'), (11, 11, 'Mr', 'Diane ', 'Tice', '', '2400 O\'Connell Blvd., Door 24', '', 'Ft. Carson', 'CO', '80913-2528', '(719) 526-5755', '(719) 526-8994', ''), (12, 12, 'Mr', 'Mike', '', '', '14801 County Road 22', '', 'Findley', 'OH', '45840', '419-425-6500', '', ''), (13, 13, 'Mr', 'Drema', 'Underwood', '', 'PO Box 9367', '', 'South Charleston', 'WV', '25309', '304-766-8062', '304-766-8105 Fax', 'brian.randolph@ahernwv.com'), (14, 14, 'Mr', 'Ron', 'Kral', 'Attn: Accounts Payable Department', 'The First National Building', '660 Woodward Ave. Suite 2430', 'Detroit', 'MI', '48226-3514', '313-963-2721', '313-963-2736 Fax', 'rkral@somateng.com'), (15, 15, 'Mr', 'Ron', 'Kral', 'Attn: Accounts Payable Department', 'The First National Building', '660 Woodward Ave. Suite 2430', 'Detroit ', 'MI', '48226-3514', '313-963-2721', '313-963-2736 Fax', 'rkral@somateng.com'), (16, 16, 'Mr', 'Tiffany', 'Dmytryszyn', 'Attn: Accounts Payable Department', 'The First National Building', '660 Woodward Ave. Suite 2430', 'Detroit', 'MI', '48226-3514', '313-963-2721', '313-963-2736 Fax', 'jschmitzer@somateng.com'), (17, 17, 'Mr', 'Lou', 'Northhouse', '', '4705 Clyde Park Avenue SW', '', 'Grand Rapids', 'MI', '49509', '616-406-1756', '616-406-1749 Fax', ''), (18, 18, 'Mr', 'Jim', 'Wimer ', '', '1241 Brusselles Street', '', 'St. Marys', 'PA', '15857', '814-781-3630', '814-781-6035 Fax ', ''), (19, 19, 'Mr', 'Dale', 'Wessel', '', 'PO Box 609', '', 'Columbus', 'NE', '68602-0609', '402-563-6369', '402-563-6398 Fax', 'dale.wessel@vishay.com'), (20, 20, 'Mr', 'Jack', 'Deitz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026', '614-876-1700', '614-876-1899 Fax', ''), (21, 21, 'Mr', 'Mark', 'Gessel', '', 'PO Box 9367', '', 'South Charleston', 'WV', '25309', '(304) 766-8062', '(304) 766-8105 Fax', ''), (22, 22, 'Mr', 'Craig', 'Mays', '', '112 Dennis Drive', '', 'Lexington', 'KY', '40503', '859-277-5300', '859-277-5058 Fax', 'cmays@cbceng.com'), (23, 23, 'Mr', 'Mark', 'Griffith', '', '139 Aristocrat Drive', '', 'Florence', 'KY', '41042', '(859) 371-3314', ' (859) 371-2655 Fax', 'mgriffith@allritereadymix.com'), (24, 24, 'Mr', 'Alvin ', 'Banner', '', '112 Dennis Drive', '', 'Lexington', 'KY', '40503', '859-277-5300 ', '859-277-5058 Fax', 'bgillespie@cbceng.com'), (25, 25, 'Mr', 'Robbie', 'Robertson', '', '106 Industry Road', '', 'Richmond', 'KY', '40475', '(859) 623-4238', '859-623-4255 Fax', 'hendrix_rick@hotmail.com'), (26, 26, 'Mr', 'Joe', 'Freeman', '', 'PO Box 183', '', 'Grays Knob', 'KY', '40829', '(606) 573-6836', '606-573-4735Fax', 'poynter@harlanonline.net'), (27, 27, 'Mr', 'Don', 'Nolan', '', '101 Third Street', '', 'Manchester', 'KY', '40962', '(606) 598-5248', '606-599-1178 Fax', 'drn1013rd@yahoo.com'), (28, 28, 'Mr', 'Dan', 'Hollman', '', 'PO Box 18433', '', 'Erlanger', 'KY', '41018', '859- 635-1350', '859- 635-1391 Fax', 'hydration@fuse.net'), (29, 29, 'Mr', 'Leo', 'Miller', '', 'PO Box 488', '', 'Harlan', 'KY', '40831', '606-573-4300', '606-573-6722 Fax', 'lmiller@leomillerengineering.com'), (30, 30, 'Mr', 'Olusegun', 'Akomolede', '', '6531 West Chester Road', '', 'West Chester', 'OH', '45069', '513-755-7879', '513-755-8923 Fax', ''), (31, 31, 'Mr', 'Greg', 'Middleton ', '', 'PO Box 141', '', 'Dry Ridge', 'KY', '41035', '859-824-5097', '859-824-5130 Fax', 'grantcoconcrete@fuse.net'), (32, 32, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (33, 33, 'Mr', 'Lester', 'Chase ', '', '123 CR 101', '', 'South Bethlehem', 'NY', '12161', '518-767-2269', '518-289-9263 Fax ', ''), (34, 34, 'Mr', 'Tracye', 'Avant', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-553-6300', '(248) 324-5178 Fax', ''), (35, 35, 'Mr', 'Denise', 'Reed', '', '7941 New Carlisle Pike', '', 'Huber Heights', 'OH', '45424', '937-878-2170', '937-878-8780 Fax ', 'wisemand@contechbridge.com'), (36, 36, 'Mr', 'James', 'Minear', '', 'PO Box 296', '', 'Marietta', 'OH', '45750', '740-373-6861', '740-373-6832 Fax', 'pawnee1@roadrunner.com'), (37, 37, 'Mr', 'Lisa', 'Young', '', 'PO Box 889', '', 'Morgantown', 'WV', '26507', '(304) 296-2562', '(304) 296-8739 Fax', 'dryan@triadeng.com'), (38, 38, 'Mr', 'TJ', 'Karns', '', '11830 Brookpark Road', '', 'Cleveland', 'OH', '44130-1177', '(216) 362-1850', '(216) 265-7833 Fax', 'John Harkness 216-362-1850 x 334'), (39, 39, 'Mr', 'Scott', 'Hynes', '', '1061 G-Trumbull Avenue', '', 'Girard', 'OH', '44420', '(330) 759-0288', '(330) 759-0923 Fax', ''), (40, 40, 'Mr', 'Kristy', 'Kennedy', '', '6190 Enterprise Court', '', 'Dublin', 'OH', '43016', '614-793-2226', '614-793-2410 Fax', ''), (41, 41, 'Mr', 'Ron', 'Hull', '', '169 Quarry Road', '', 'Chambersburg', 'PA', '17201', '717-709-6243', '814-766-4433 Fax', 'rhull@valleyquarries.com'), (42, 42, 'Mr', 'Jeff', 'Henning', '', '601 South 10th Street, Suite 300', '', 'Allentown', 'PA', '18103', '610-351-9815', '610-351-9816 Fax ', 'jbasilone@blend-pro.com'), (43, 43, 'Mr', 'Bob', 'Lourash', '', '8401 Power Road', '', 'Clinton ', 'IL', '61727', '217-937-3503', '', ''), (44, 44, 'Mr', 'Vince', 'Wheeler', '', '3401 Midlink Drive ', '', 'Kalamazoo', 'MI', '49048', '269-384-9980', '269-384-9981 Fax', 'Lwachowski@tourneyconsulting.com'), (45, 45, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (46, 46, 'Mr', 'Larry', 'Kitko', '', '1750 W. College Ave.', '', 'State College', 'PA', '16801-0155', '814-278-6935', '814-238-8409 Fax', 'gradziak@hrico.com'), (47, 47, 'Mr', 'Larry ', 'Kitko', '', '1750 W. College Avenue', 'P.O. Box 155', 'State College', 'PA', '16801-0155', '814-238-5071', '814-238-0131 Fax', ''), (48, 48, 'Mr', 'Shawn', 'Schoedel', 'Attn: Shawn Schoedel', '102 Sky Lane', '', 'Tarentum', 'PA', '15084', '724-265-4600 x 1316 ', '724-265-3323 Fax', ''), (49, 49, 'Mr', 'Bob', 'Kurtz', '', '1201 Five Springs Road', ' ', 'Charlottesville', 'VA', '22902', '434-296-7989', '434-293-7139 Fax', 'bob.kurtz@cellularmaterials.com '), (50, 50, 'Mr', 'Mary', 'Fry', '', '7266 Park Circle Drive ', '', 'Hanover', 'MD', '21076', '410-782-9150', '410-782-9155 Fax', 'mfry@cathedralstone.com'), (51, 51, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (52, 52, 'Mr', 'Wayne', 'Baumgartner', '', '7500 Municipal Drive ', '', 'Orlando', 'FL', '32819', '407-248-9208 x 204', '772-264-2467 Fax ', 'wbaumgartner@johnson-bros.com'), (53, 53, 'Mr', 'Zeerak', 'Paydawy', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-324-5355 Ed dire', '(248) 324-5178 Fax', 'zpaydawy@nthconsultants.com'), (54, 54, 'Mr', 'Richard', 'Ritz', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'rdolence@braymanconstruction.com'), (55, 55, 'Mr', 'Aaron', 'Donham', '', 'PO Box 1532', '', 'Clarksburg', 'WV', '26301', '304-624-4108', '304-624-7831 Fax', 'adonham@thrashereng.com'), (56, 56, 'Mr', 'William', 'Gross', '', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '(412) 262-2022', '412-262-1979 Fax', 'wgross@jeffzell.com'), (57, 57, 'Mr', 'Pam', 'Barnes', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341 Pam', '(724) 696-4952 Fax', ''), (58, 58, 'Mr', 'Ron', 'Gibson', '', '1682 Marion Williamsport Road East', '', 'Marion', 'OH', '43302', '(740) 387-9224', '(740)382-6454 Fax', 'wickline.nikkol@us.sika.com'), (59, 59, 'Mr', 'Dan', 'John', '', '850 Poplar Street', '', 'Pittsburgh', 'PA', '15220', '412-922-4001 ', '412-922-4043 Fax', 'dan.john@psiusa.com'), (60, 60, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'bangelo@thelenassoc.com'), (61, 61, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'bangelo@thelenassoc.com'), (62, 62, 'Mr', 'Stephen', 'Bennett', '', '422 Codell Dr.', '', 'Lexington', 'KY', '40509', '(859) 509-4998', '859- 299-2481 Fax', 'kpryse@thelenassoc.com'), (63, 63, 'Mr', 'Jim', 'Stewart', '', 'P.O. Box 308', '', 'Mt. Sterling', 'KY', '40353', '(859) 498-0092', '(859) 498-0093 Fax ', 'jstewart@thewalkercompany.com'), (64, 64, 'Mr', 'Rob', 'Peck', '', '1762 Watterson Trail ', '', 'Louisville', 'KY', '40299', '502-493-7100', '502-493-8190 Fax', 'rpeck@gemeng.com'), (65, 65, 'Mr', 'David ', 'Hastings', '', '1115 Delaware Avenue, Suite 200', '', 'Lexington', 'KY', '40505', '859-233-9050', '859-252-7373 Fax ', 'kmccarthy@bristolgrp.com'), (66, 66, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (67, 67, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (68, 68, 'Mr', 'Bob', 'Osteride', 'NiSource Accounts Payable', 'PO Box 30130', '', 'College Station', 'TX', '77842', '1-877-629-6286', '979-691-6557 Fax Jes', 'NiSourceAP@sourcenetsolutions.com'), (69, 69, 'Mr', 'Anthony', 'DeMaio', 'API', '2345 Morton Road ', '', 'Pittsburgh', 'PA', '15241', '412-335-0170/412-257', '412-257-0327 Fax ', 'csi_api@msn.com'), (70, 70, 'Mr', 'Chad', 'Eckert', 'Blue Water St. Marys ', '118 Access Road ', '', 'St. Marys', 'PA', '15857', '(814) 781-6262', '(814) 781-3196 Fax', ''), (71, 71, 'Mr', 'Scott', 'Stephens', '', 'PO Box 545', '', 'Wayne', 'WV', '25570', '304-522-7625', '304-522-9819 Fax ', ''), (72, 72, 'Mr', 'Rich', 'Evans', '', '6375 Shier Rings Road, Suite F', '', 'Dublin', 'OH', '43016-1344', '614-761-4700 x 4352', '614-761-8630 Fax', ''), (73, 73, 'Mr', 'Anthony', 'Montella', '', '2001 Blount Road ', 'Florida Headquarters', 'Pompano Beach', 'FL', '33069', '800-526-1769/954-984', '954-984-9559 Fax ', 'klawrence@structural.net'), (74, 74, 'Mr', 'Sanjeev', 'Prakash', 'Great Lakes Soil & Environmental ', '600 Territorial Drive, Suite G', '', 'Bolingbrook', 'IL', '60440', '630-754-8700', '630-754-8705 Fax', 'cpasternak@interra.com'), (75, 75, 'Mr', 'James', 'Lasko', '', '2200 Asbury Road ', '', 'Erie', 'PA', '16506', '814-835-6000', '814-838-4960 Fax', 'jlasko@eriez.com'), (76, 76, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (77, 77, 'Mr', 'Donald', 'Lampus', '', 'PO Box 167', '', 'Springdale', 'PA', '15144-0167', '412-362-3800', '724-274-2181 Fax', ''), (78, 78, 'Mr', 'Dan', 'Cagle', '', '2984 Kirila Drive ', '', 'Hermitage', 'PA', '16148', '724-342-9415', '724-342-9416 Fax', 'dan4cag@adelphia.net'), (79, 79, 'Mr', 'Daniel', 'Farabaugh', '', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '412-751-4001', '412-751-4003 Fax ', 'fetlabs@aol.com'), (80, 80, 'Mr', 'Dave', 'McVaney', 'Attn: Dave McVaney', '302 Buchtel Common, ASEC-210', 'Department of Civil Engineering', 'Akron', 'OH', '44305', '330-972-7295', '330-972-6020 Fax', 'dmcvane@uakron.edu'), (81, 81, 'Mr', 'John ', 'Pipher', '', '1229 Lowman Road ', '', 'Lowman', 'NY', '14861', '607-737-0281', '607-737-0349 Fax', 'chemunglab@gmail.com'), (82, 82, 'Mr', 'Dina', 'Graber', '', '37 Franklin Street, Suite 400', '', 'Buffalo', 'NY', '14202', '716-853-2611 x 126 D', '716-853-2619 Fax', 'purchase.buffalo@applusrtd.com'), (83, 83, 'Mr', 'Ben', 'James ', '', 'PO Box 515, 466 Lakeview Drive ', '', 'Dahlonega', 'GA', '30533', '706-867-7751', '706-867-9203 Fax ', ''), (84, 84, 'Mr', 'John ', 'Pipher', '', '1229 Lowman Road ', '', 'Lowman', 'NY', '14861', '607-737-0281', '607-737-0349 Fax', ''), (85, 85, 'Mr', 'Adil', 'Wahab', '', '835 N. Main Street', '', 'Franklin', 'OH', '45005', '937-746-3634', '937-746-3635 Fax', ''), (86, 86, 'Mr', 'Abdul', 'Shakoor', 'Geology Department', 'PO Box 5190', '', 'Kent', 'OH', '44242', '330-672-2968', '330-672-7949 Fax ', ''), (87, 87, 'Mr', 'Daryl', 'Skeeter', '', '206 W. Water Street', '', 'Addison', 'NY', '14801', '(607) 359-3436', '607-527-4405 Fax', ''), (88, 88, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '(607) 529-3235 ext. ', '(607) 529-3434 Fax', ''), (89, 89, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '(607) 529-3235 ext. ', '(607) 529-3434 Fax', ''), (90, 90, 'Mr', 'Bill', 'Koniowka', 'Material Lab ', '1220 Washington Ave. Building #7', '', 'Albany', 'NY', '12201', '(518) 457-5623', '(518) 457-8171 Fax', ''), (91, 91, 'Mr', 'Chris ', 'Pridemore ', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1309', '614-275-1354 Fax', ''), (92, 92, 'Mr', 'Chris ', 'Pridemore ', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1308', '614-275-1354 Fax', 'alexander.dettloff@dot.state.oh.us'), (93, 93, 'Mr', 'Beverly', 'Burchan', '', '5719 Limaburg Road ', '', 'Burlington ', 'KY', '41005', '859-371-4005', '859-371-8206 Fax ', ''), (94, 94, 'Mr', 'Mark', 'Bingham', '', 'PO Box 51', '', 'Dayton', 'OH', '45401-0051', '937-236-8805', '937-237-9947 Fax', 'tsortman@bowser-morner.com'), (95, 95, 'Mr', 'Gregory', 'Bills', '', '1501 East Kilgore Road', '', 'Kalamazoo', 'MI', '49001', '269-337-3900/269-207', '269-337-3958 Fax/269', 'billsg1@michigan.gov'), (96, 96, 'Mr', 'Karen', 'Rose', '', '23450 Regencey Park Drive', '', 'Warren', 'MI', '48089', '586-755-0900', '586-755-7456 Fax', ''), (97, 97, 'Mr', 'Paul', 'Dykta', '', '1739 Grange Road', '', 'Charleroi', 'PA', '15022', '724-239-6488', '724-437-4136 Fax', 'uniontown@gavcomaterials.com'), (98, 98, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (99, 99, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'www.rcssusa.com'), (100, 100, 'Mr', 'Terry', 'McElfresh', '', '2650 Hamilton-Eaton Road', '', 'Hamilton', 'OH', '45011', '(513) 863-1384', '(513) 896-2079 Fax', ''), (101, 101, 'Mr', 'Tim', 'Harris', '', '3221 SR 5 ', '', 'Ashland', 'KY', '41102', '606-326-1070', '606-326-1077 Fax', ''), (102, 102, 'Mr', 'Ed', 'Tadrass', '', '4899 Prince William Parkway', '', 'Woodbridge', 'VA', '22192', '703-730-4160', '703-730-4170 Fax ', ''), (103, 103, 'Mr', 'Yan', 'Xu', '', '3100 Willow Springs Road', 'PO Box 3247', 'Central Point', 'OR', '97502', '541-665-7227', '541-664-9547 Fax', 'yanx@ericksonaircrane.com'), (104, 104, 'Mr', 'Jim', 'Hersick', '( Formally Americast )', '405 Corning Way', '', 'Martinsburg', 'WV', '25405', '304-267-5660', '304-264-9944 Fax', ''), (105, 105, 'Mr', 'Ronald', 'Kral', 'Attn: A/P Code: CV151', '41780 Six Mile Road', '', 'Northville', 'MI', '48168-3459', '216-344-4058', '216-344-4044 Fax Ron', 'rkral@nthconsultants.com '), (106, 106, 'Mr', 'Joe', 'Hughes', '', '3335 W. Ridge Pike', '', 'Pottstown', 'PA', '19464', '(610) 495-6255', '(610) 495-7353 Fax', 'rkauffman@dbaengineering.com'), (107, 107, 'Mr', 'Chris ', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '171-787-1037', '717-783-5955 Fax', 'chneely@state.pa.us'), (108, 108, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717) 787-1037', '(717) 783-5955 Fax', 'chneely@state.pa.gov'), (109, 109, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717) 787-1037', '(717) 783-5955 Fax', 'chneely@state.pa.us'), (110, 110, 'Mr', 'Helen', 'Grzib', '', '8004 Lincoln Dr. West', 'Suite A', 'Marlton', 'NJ', '8053', '856-985-3400', '856-935-7700 Fax', 'leof@sjaconstruction.com'), (111, 111, 'Mr', 'Dan', 'Stanisky', '', '850 Poplar Street', '', 'Pittsburgh', 'PA', '15220', '412-922-4000 x 403', '412-922-4230 Fax', 'dan.stanisky@psiusa.com'), (112, 112, 'Mr', 'John', 'McLaughlin', 'Graphite Materials Division', '215 Stackpole Street', '', 'St. Marys', 'PA', '15857', '(814) 781-1234', '(814) 781-8570 Fax', ''), (113, 113, 'Mr', 'Debbie', 'Hassell', '', 'The Bottom', 'SABA', 'Neth. Antilles', '', '', '011-599-520-6503', '', 'hesnv@yahoo.com '), (114, 114, 'Mr', 'Jamie', 'Smith', '', '930 Cass Street', '', 'New Castle ', 'PA', '16101', '724-657-8787', '724-657-1990 Fax ', 'droberts@alphatelecom.com '), (115, 115, 'Mr', 'Justin', 'Van Meeteren', '', '1515 East I-30 Service Road', '', 'Royse City ', 'TX', '75189', '972-636-20900', '972-636-3789 Fax', 'jvanmeeteren@omicranes.com'), (116, 116, 'Mr', 'Dotty', 'DeBrouse', '', 'PO Box 402', '1022 Haley Drive', 'Mineral', 'VA', '23117', '(540) 894-2808 - Dot', '(540) 894-2813 - Fax', 'dotty_debrouse@dom.com'), (117, 117, 'Mr', 'Emily', 'Theil ', '', 'PO Box 614', '', 'Oranjestad', 'Aruba', '', '011-297-588-1122', '011-297-583-1545 Fax', 'anthony@theilcorp.aw'), (118, 118, 'Mr', 'Jose', 'Wernet', '', 'Sahara Blanco 2', '', 'Barcadera z/n', 'Aruba', '', '011-297-585-8423', '011-297-585-1233 Fax', 'jwernet@atco.aw'), (119, 119, 'Mr', 'Donna', 'Kelly', '', '1913 Atlantic Avenue', '', 'Manasquan', 'NJ', '8736', '732-292-2500', '732-292-2650 Fax ', ''), (120, 120, 'Mr', 'Jeffrey', 'Laninger', 'ATTN: Jeffrey Laninger', '1952 Waddle Road, Suite 203', '', 'State College', 'PA', '16803', '814-237-1444', '814-237-4491 Fax/814', ''), (121, 121, 'Mr', 'Dan', 'Robinson', '', 'PO Box 663', '164 N. Main', 'Wellsville', 'NY', '14895', '(585) 593-2741 Ext. ', '(585) 593-3207 Fax', ''), (122, 122, 'Mr', 'Karen', 'Duffell', '', 'PO Box 500', '', 'Punxsutawney', 'PA', '15767-0500', '814-938-7411', '814-938-7474 Fax', 'kduffell@proformpm.com'), (123, 123, 'Mr', 'Bill', 'Hagstotz', '', '3025 Castor Avenue', '', 'Philadelphia', 'PA', '19134', '215-739-5491', '215-739-5492 Fax ', 'adrienne@castormaterials.com'), (124, 124, 'Mr', 'Eric', 'DeJaegner', '', '1316 Front Avenue NW, Suite 117', '', 'Grand Rapids', 'MI', '49504', '616-459-0204', '616-459-0626 Fax ', 'matthew.brozowski@psiusa.com'), (125, 125, 'Mr', 'Lisa', 'Limerick ', '', '915 Maple Grove Drive, Suite 206', '', 'Fredericksburg', 'VA', '22407', '540-785-6100', '540-785-3577 Fax', 'jmccarthy@ecslimited.com'), (126, 126, 'Mr', 'Chris', 'Gengle', '', '05481 US 31 South', '', 'Charlevoix', 'MI', '49720', '231-547-6595', '231-547-9171 Fax ', 'jamie@rdi-rock.com'), (127, 127, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (128, 128, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (129, 129, 'Mr', 'Tim', 'Kirby', '', '153 Williams Highway', '', 'Parkersburg', 'WV', '26105', '304-295-1016/304-731', '304-295-9658 Fax', ''), (130, 130, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'Mark.Horsley@VDOT.virginia.gov'), (131, 131, 'Mr', 'George', 'Wargo', '', '2018 Waverly Street', '', 'Pittsburgh', 'PA', '15218', '412-351-6465', '412-351-6401 Fax ', ''), (132, 132, 'Mr', 'David', 'Stinnette', 'Attn: David Stinnette', '15871 City View Drive, Suite 200', '', 'Midlothian', 'VA', '23113', '804-794-0571', '804-794-2635 Fax ', 'dstinnette@balzer.com '), (133, 133, 'Mr', 'Doug', 'Ross', '', '13750 Sunrise Valley Drive', '', 'Herndon', 'VA', '20171', '(703) 713-1900', '(703) 713-1910 Fax', ''), (134, 134, 'Mr', 'Barry', 'Gensimore', '', '660 Axemann Road', '', 'Pleasant Gap', 'PA', '16823', '814-548-7090', '814-933-1411 Fax ', 'hvbp.barry@comcast.net'), (135, 135, 'Mr', 'Brian', 'Porterfield', '', '21740 Beaumeade Circle, #150', '', 'Ashburn', 'VA', '20147', '703-729-1416', '703-858-1858 Fax', ''), (136, 136, 'Mr', 'Patsy', 'Smith', '', 'Rt. 1, Box 74 ', '', 'Poca', 'WV', '25159', '304-755-5000', '304-755-0657 Fax', 'phil@ctswv.com'), (137, 137, 'Mr', 'Jim', 'Fichtelman', 'Formally Arrow Concrete', '5 Highland Avenue, STE C', '', 'Bethlehem', 'PA', '18017', '610-837-4366', '610-867-3785 Fax', ''), (138, 138, 'Mr', 'Dennis', 'Mitchell', 'College of Science & Technology', '1201 Locust Avenue', '', 'Fairmont', 'WV', '26554', '304-367-4795', '304-367-4934 Fax ', ''), (139, 139, 'Mr', 'Rita', 'O\'Shea', '', '2559 Brandt School Road', 'Heritage Center, Suite 200', 'Wexford ', 'PA', '15090', '724-933-7260', '724-933-6058 Fax', 'jisaacks@cambergroup.com'), (140, 140, 'Mr', 'Mohammed', 'Asghar', 'College of Applied Science & Engineering', '2220 Victory Parkway', '765 Baldwin Hall, 2850 Campus Way', 'Cincinnati', 'OH', '45221-0071', '513-556-6553 - Sec. ', '513-556-2599 Fax', 'asgharm@ucmail.uc.edu'), (141, 141, 'Mr', 'Larry', 'Ellenberger', '', '8180 Woodbury Pike ', '', 'Roaring Spring ', 'PA', '16673', '724-422-1573 Larry C', '814-224-2185 Fax ', ''), (142, 142, 'Mr', 'Tom', 'Sekelsky', '', '21 Maple Avenue', '', 'Corry', 'PA', '16407', '(814) 665-8221', '(814) 664-9571 Fax', 'ron@corrycontract.com'), (143, 143, 'Mr', 'Mark ', 'Moyer', ' ', '127 NESL Drive', '', 'New Enterprise', 'PA', '16664', '814-224-6870', '814-766-0234 Fax', 'mmoyer@nesl.com'), (144, 144, 'Mr', 'Ronald ', 'Shortsleeve ', '', '58 Prospect Street', '', 'Auburn', 'NY', '13021', '315-252-7214', '315-252-7859 Fax', 'w_atkinson@sunnycrest.com'), (145, 145, 'Mr', 'Chris', 'Kenney', '', 'PO Box 156', '', 'Baldwinsville', 'NY', '13027', '315-638-2706', '315-638-1544 Fax', 'cmk@kenneygeotechnical.com'), (146, 146, 'Mr', 'Patricia', 'Zimmer', '', 'PO Box 10005', '', 'Erie', 'PA', '16514', '(814) 456-7027', '(814) 454-0737 Fax', ''), (147, 147, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (148, 148, 'Mr', 'Samdra', 'Miller', 'Attn: Accounts Payable ', '35 Vantage Point Drive', '', 'Rochester', 'NY', '14624', '585-352-9720', '585-352-7359 Fax ', 'smiller@transcat.com'), (149, 149, 'Mr', 'Noah', 'Hostetler', '', '3308 State Route 352', '', 'Corning', 'NY', '14830', '607-562-3301', '607-562-3011 Fax', ''), (150, 150, 'Mr', 'Garrick', 'Sander', '', '175 Lamont Street', '', 'New Cumberland', 'PA', '17070', '717-774-7461', '717-774-1844 Fax ', ''), (151, 151, 'Mr', 'John', 'Dingeldein', '', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '440-256-6500', '440-256-6507 Fax', ''), (152, 152, 'Mr', 'Brent ', 'Bowly', '', 'PO Box 1448', '', 'St. Albans', 'WV', '25177', '(304) 722-4237', '(304) 722-4230 Fax', 'www.ordersconstruction.com '), (153, 153, 'Mr', 'Lisa', 'May', '', '11362 Steckert Bridge Road ', '', 'Roscommon', 'MI', '48653', '989-390-1756', '989-345-1100 Fax ', 'jpmay@michigansurveys.com '), (154, 154, 'Mr', 'Lou', 'Ziolkowski', '', '8840E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (155, 155, 'Mr', 'Scot', 'Gilb', '', '21 Hartweg Avenue', '', 'Fort Thomas', 'KY', '41075', '859-322-3027', '859-441-2715 Fax', 'gibsco@us.hilti.com'), (156, 156, 'Mr', 'Vonda', 'Freeman', '', '4989 Cleveland Street', '', 'Virginia Beach', 'VA', '23462', '757-456-2220', '757-473-2204 Fax ', ''), (157, 157, 'Mr', 'Mike', 'Felber', '', 'PO Box 799', '', 'Berea', 'OH', '44017', '440-239-2015', '440-239-2000 Fax', 'mfelber@fastenersetc.com'), (158, 158, 'Mr', 'John', 'Ashworth', '', 'PO Box 358', '', 'Akron', 'NY', '14001', '(716) 542-2011', '607-962-5968 Fax', ''), (159, 159, 'Mr', 'Tom', 'Medvick', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '304-344-0821 Tom', '304-342-4711 Fax', ''), (160, 160, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0576', '614-848-6712 Fax', 'jbukey@DLZ.com'), (161, 161, 'Mr', 'Steve', 'Rhodes', '', 'PO Box 66', '', 'Russellton', 'PA', '15076', '724-265-4600 ', '724-265-3323 Fax', 'sschoedel@jbfayco.com'), (162, 162, 'Mr', 'Steve ', 'Tracy', '', '267 Eberl Street', '', 'St. Marys', 'PA', '15857', '814-781-7004', '814-781-6957 fax', ''), (163, 163, 'Mr', 'John', 'Raider', '', 'PO Box 69', '', 'Zelienople', 'PA', '16063', '724-452-6260', '724-452-8923 Fax', 'amy.vonarx@jjkennedyinc.com'), (164, 164, 'Mr', 'Justin', 'Stewart', '', '4031 Allport Cutoff', '', 'Morrisdale', 'PA', '16858', '814-342-7090', '814-342-7099 Fax ', 'jstewart@geotechengineering.com'), (165, 165, 'Mr', 'Anthony', 'Gale ', 'Attn: Carol Norris', 'PO Box 34', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'agale@nesl.com '), (166, 166, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (167, 167, 'Mr', 'Layne', 'Miller', '', 'PO Box 310', '', 'Meshoppen', 'PA', '18630', '607-425-6916 Cell', '570-833-5698 Fax', ''), (168, 168, 'Mr', 'Andy', 'Molek', '', '1877 Route 2023', '', 'Monongahela', 'PA', '15063', '724-258-4450 ext 325', '724-258-4202 Fax', ''), (169, 169, 'Mr', 'Norma', 'Maddox', 'Accounts Payable Department', 'PO Box 98100, DL Clark Bldg.', '503 Martindale Street', 'Pittsburgh', 'PA', '15212', '412-462-9300', '412-462-3002 Fax ', ''), (170, 170, 'Mr', 'Larry ', 'Kitko', '', '1750 W. College Avenue', 'P.O. Box 155', 'State College', 'PA', '16801-0155', '814-238-5071', '814-238-0131 Fax', ''), (171, 171, 'Mr', 'Terry ', 'Daniel', '', '7455 New Ridge Rd., Suite T', 'Corporate Headquarters', 'Hanover', 'MD', '21076', '410-850-7000', '410-850-4111 Fax', 'tdaniel@structural.net'), (172, 172, 'Mr', 'Terry', 'Daniel ', '', '7455 New Ridge Road, Suite T ', 'Corporate Headquarters ', 'Hanover', 'MD', '21076-3143', '800-899-1016', '410-850-7000 Ext. 33', 'tdaniel@structural.net'), (173, 173, 'Mr', 'Kelly', 'Nowinski', '', '5690 Camp Road', '', 'Hamburg', 'NY', '14075', '716-649-3260', '716-649-3217 Fax', 'joet@glakesconcrete.com'), (174, 174, 'Mr', 'Becky', 'Carroll', '', 'PO Box 44548', '2860 Fisher Road ', 'Columbus', 'OH', '43204', '614-276-8123', '614-276-6377 Fax', 'scoombs@ctleng.com'), (175, 175, 'Mr', 'Jim', 'Smith', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '(304) 344-0821', '(304) 342-4711 Fax', ''), (176, 176, 'Mr', 'Matt', 'Loudin', '', 'PO Box 968', '', 'Clarksburg', 'WV', '26301', '(304) 592-5577', '(304) 592-5578 Fax', 'erexroad@centralsupplywv.com'), (177, 177, 'Mr', 'Kristen ', 'Pifer', '', 'PO Box 348', '', 'Winona', 'MN', '55987', '330-630-1501', '330-630-1420 Fax ', 'rywhite@fastenal.com'), (178, 178, 'Mr', 'Linda', 'Warner ', '', '60 Miller Street', '', 'Cortland', 'NY', '13045', '607-758-7182', '607-758-7188 Fax', ''), (179, 179, 'Mr', 'Martin', 'Gomez', '', 'PO Box CR56766, Suite 567', 'Baillou Hill Sporting Complex', 'Nassau, Bahamas', '', '', '242-322-8341x 2610 M', '242-322-2611 Fax ', 'fpacheco@cartellone.com.ar'), (180, 180, 'Mr', 'Angela', 'Droullard', '', 'PO Box 32996', '', 'Detroit', 'MI', '48232', '519-737-1216 x261 An', '519-737-6464 Fax ', ''), (181, 181, 'Mr', 'Dave', 'Sabol', '', '5555 Canal Road ', '', 'Cleveland', 'OH', '44125', '(216) 447-1335 x 127', '(216) 642-7008 Fax', ''), (182, 182, 'Mr', 'John', 'Raider', '', 'PO Box 69', '', 'Zelienople', 'PA', '16063', '(724) 452-6260', '(724) 452-8923 Fax', 'Matt.Manning@JJKennedyInc.com'), (183, 183, 'Mr', 'Joe', 'Frezza', '', '597 Cherryville Road', '', 'Flemington', 'NJ', '8822', '908-782-5720', '908-788-8922 Fax ', 'monnettell@comcast.net'), (184, 184, 'Mr', 'John', 'Farkas', '', '5160 Main Street', '', 'Whitehall', 'PA', '18052', '610-261-3452', '610-261-3448 Fax', 'john.farkas@lafarge.com'), (185, 185, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (186, 186, 'Mr', 'Gordon', 'Mooney', '', '34 Forest Park Avenue', '', 'North Billerica', 'MA', '1862', '978-670-2361', '978-671-6423 Fax', ''), (187, 187, 'Mr', 'Sue', 'Mazzoli', '', '51 Bentley Street', '', 'Markham ON', 'Canada', 'L3R 3L1', '416-491-7001', '905-940-1711 Fax', ''), (188, 188, 'Mr', 'Tom', 'Paullet', 'Waste Management ', '3100 Hill Road ', '', 'South Park Twp.', 'PA', '15129', '724-348-7013', '724-348-4512 Fax ', 'tpaullet@wm.com'), (189, 189, 'Mr', 'William', 'Gross', '', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '(412) 262-2022', '412-262-1979 Fax', ''), (190, 190, 'Mr', 'David', 'Richards', '', '759 Northgate Circle', 'Northgate Industrial Park ', 'New Castle', 'PA', '16105', '724-658-3003', '724-658-4486 Fax ', ''), (191, 191, 'Mr', 'Curt', 'Roupe', '', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '(419) 324-2222/419-2', '(419) 241-1808 Fax', 'tmiller@ttlassoc.com'), (192, 192, 'Mr', 'Brian', 'Devine', '', '5400 Limestone Road', '', 'Wilmington ', 'DE', '19808', '302-239-6634', '302-239-8485 Fax', ' '), (193, 193, 'Mr', 'David', 'Jablonsky', '', '268 E. Scotland Drive', '', 'Bear', 'DE', '19701', '(302) 836-5304 x 108', '(302) 836-5458 Fax', ''), (194, 194, 'Mr', 'Doug', 'Conroy', '', 'PO Box 234', '', 'Middlebranch', 'OH', '44652', '330-966-0444 Ext. 20', '(330) 966-8505 Fax', ''), (195, 195, 'Mr', 'Scott', 'Sanders', '', '4 Barlo Circle', 'PO Box 432', 'Dillsburg', 'PA', '17019-0432', '717-432-3429', '717-432-7343 FAX', 's.sanders@lobarassoc.com'), (196, 196, 'Mr', 'George', 'Snyder ', '', 'PO Box 378', '7321 State Rt. 251', 'Victor', 'NY', '14564', '585-924-2050/1-800-8', '585-924-2084 Fax', 'PATRICK.SPENCER@ITT.COM'), (197, 197, 'Mr', 'Kevin', 'Flick', '', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '703-471-8400', '703-471-5292 Fax', ''), (198, 198, 'Mr', 'Kevin', 'Dubnicki', '', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '(734) 453-7900', '(734) 453-0724 Fax', ''), (199, 199, 'Mr', 'Aaron', 'Donham', '', 'PO Box 1532', '', 'Clarksburg', 'WV', '26301', '304-624-4108', '304-624-7831 Fax', 'adonham@thrashereng.com'), (200, 200, 'Mr', 'Chris', 'Hollihan', '', '150 East Brook Lane', '', 'Butler', 'PA', '16002', '724-477-5100', '724-477-5101 Fax', 'jcoyle@jspi.com'), (201, 201, 'Mr', 'Missy', 'Bechel', '', 'PO Box 396', '', 'Somerset', 'WI', '54025', '715-247-3364', '715-247-3638 Fax ', ''), (202, 202, 'Mr', 'Chris', 'Standish', '', '3445-A Box Hill Corporate Center Drive ', '', 'Abingdon', 'MD', '21009', '410-515-9446', '410-515-4895 Fax ', 'CStandish@mragta.com'), (203, 203, 'Mr', 'Joseph', 'Kirchner ', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 Jeremy ', '770-360-0520 Fax', ''), (204, 204, 'Mr', 'Bob', 'Yogus', '', 'PO Box 1000', '615 West Highland Avenue', 'Ebensburg', 'PA', '15931', '(814) 472-7700 ext.', '(814) 472-4221 Fax', ''), (205, 205, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'bangelo@thelenassoc.com'), (206, 206, 'Mr', 'Sandi', 'Kreider', '', '8260 Johnson Road', '', 'Erie', 'PA', '16509', '814-864-3443', '814-864-2191 Fax', 'wpsinc@live.com'), (207, 207, 'Mr', 'Jim', 'Valenti', '', '205 West Washington Street', '', 'New Castle', 'PA', '16101', '(724) 658-6638', '724 658-6636 FAX', 'rmesol.faddis.com'), (208, 208, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (209, 209, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (210, 210, 'Mr', 'Cathy', 'Mercer', '', 'PO Box 270', '', 'Pounding Mill', 'VA', '24609', '276-964-7000', '276-964-4752 Fax', ''), (211, 211, 'Mr', 'Debbie', 'Miles', '', '1557 Limestone Road', '', 'Summerville', 'PA', '15864-3819', '814-379-3706', '814-379-3531 Fax', 'cmil@windstream.net'), (212, 212, 'Mr', 'Glenn', 'Garren', '', '1601 Northeast Columbia Blvd. ', '', 'Portland', 'OR', '97211', '503-288-8100', '503-288-9017 Fax', 'glenng@coastcrane.com'), (213, 213, 'Mr', 'Howard', 'Owens', 'Inc.', '180 Lexington Avenue, Second Floor', '', 'Passaic', 'NJ', '7055', '973-365-1555', '973-365-1553 Fax ', 'howardo.icc@gmail.com '), (214, 214, 'Mr', 'Harry', 'McGhee', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'hmcghee@nesl.com'), (215, 215, 'Mr', 'Jeff', 'Parrent', '', 'Civil & Environmental Engineering Dept.', '', 'Lexington', 'VA', '24450', '(540) 464-7331', '(540) 464-7618 Fax', 'ParrentJL@vmi.edu'), (216, 216, 'Mr', 'Ronald', 'Capuano', '', 'PO Box 103', '', 'Ridgway', 'PA', '15853', '814-772-9279', '814-772-3319 Fax', 'ronaldcapuano@windstream.net'), (217, 217, 'Mr', 'Christy', 'Boudreau', '', 'PO Box 2289', '', 'San Marcos', 'CA', '92079-2049', '760-736-3232', '760-736-4051 Fax ', 'accountspayable@eldoradostone.com'), (218, 218, 'Mr', 'Dave', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax ', 'gtcinfo@gtcpgh.com'), (219, 219, 'Mr', 'Gary ', 'Hallum', '', '838 Cherry Street', '', 'Blanchester', 'OH', '45107', '937-783-2476', '937-783-2539 Fax ', 'ghallum@ccpi-inc.com'), (220, 220, 'Mr', 'Paul', 'Tubridy', 'Dept. of Civil & Mechanical Engineering', 'Mahan Bldg. #752', 'Thayer Road ', 'West Point', 'NY', '10996', '845-938-2436 Mike ', '845-938-5522 Fax/845', 'paul.Tubridy@usma.edu'), (221, 221, 'Mr', 'Ralph', 'Porter', '', 'PO Box 390', '', 'Waverly', 'NY', '14892', '(607) 565-2452', '(607) 565-8670 Fax', ''), (222, 222, 'Mr', 'Bill', 'Lash', 'Mid-Atlantic ', '3369 Paxtonville Road', '', 'Middleburg', 'PA', '17842', '570-837-1774', '(570) 837-1184 Fax', 'blash@us-concrete.com'), (223, 223, 'Mr', 'Macky', 'Kramer', '', '357 East Walnut Street', '', 'Lockhaven', 'PA', '17745', '(570) 748-7747', '(570) 748-5777 Fax', 'jsnook@centreconcrete.com'), (224, 224, 'Mr', 'Joe', 'Boyd', 'Attn: Accounts Payable ', '3015 Dumbarton Road', '', 'Richmond', 'VA', '23228', '804-264-2701', '804-262-8994 Fax', 'dstanisky@fandr.com'), (225, 225, 'Mr', 'Jim', 'Wolyniec Jr.', '', 'PO Box 666', '', 'Williamsport', 'PA', '17703', '570-236-4428', '570-326-4012 Fax', 'scott@wolyniec.com'), (226, 226, 'Mr', 'Matt ', 'Pfirsch', '', 'PO Box 376', '', 'Falls Creek ', 'PA', '15840', '814-371-3113', '814-375-9054 Fax', 'mr.pfrisch@dubrookinc.com'), (227, 227, 'Mr', 'Jenny', 'Brem', '', 'PO Box 376', '', 'Falls Creek', 'PA', '15840', '814-371-3113', '814-375-9054 Fax', 'ia.mayo@dubrookinc.com'), (228, 228, 'Mr', 'Robert', 'Jeffrey', '', '4160 Pleasant Valley Road', '', 'Chantilly', 'VA', '20151-1226', '(703) 631-9630', '(703) 631-6041 Fax', 'chan.tin@burgessniple.com'), (229, 229, 'Mr', 'Michele', 'Katsarelis', '', '13250 James Madison Parkway ', '', 'King George ', 'VA', '22485', '540-775-9550', '540-775-4667 Fax', 'jmorris@rowematerials.com'), (230, 230, 'Mr', 'Donna', 'Cutshaw', '', '11023 Dennis W Kerns Parkway', '', 'King George', 'VA', '22485', '540-775-2275', '540-775-2563 Fax', ''), (231, 231, 'Mr', 'Bob', 'Osterride', 'NiSource Accounts Payable', 'PO Box 30130', '', 'College Station', 'TX', '77842', '1-877-629-6286', '979-691-6557 Fax Jes', 'NiSourceAP@sourcenetsolutions.com'), (232, 232, 'Mr', 'Bob', 'Osteride', 'NiSource Accounts Payable', 'PO Box 30130', '', 'College Station', 'TX', '77842', '1-877-629-6286', '979-691-6557 Fax Jes', 'NiSourceAP@sourcenetsolutions.com'), (233, 233, 'Mr', 'Dennis', 'Davids', '', '7555 East Collins Road', '', 'Morris', 'IL', '60450', '203-577-7819', '815-942-5631 Fax', 'dldavids@energysolutions.com'), (234, 234, 'Mr', 'Maria', 'Luna', '', '1110 Lockwood Drive ', '', 'Houston', 'TX', '77020', '713-674-3000', '713-673-8035 Fax', 'mkey@certex.com'), (235, 235, 'Mr', 'Bob', 'Osteride', 'NiSource Accounts Payable', 'PO Box 30130', '', 'College Station', 'TX', '77842', '1-877-629-6286', '979-691-6557 Fax Jes', 'NiSourceAP@sourcenetsolutions.com'), (236, 236, 'Mr', 'Paul', 'Pridemore', '', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '216-839-7213', '216-839-7213 Fax ', 'richard.paponetti@basf.com'), (237, 237, 'Mr', 'Michael', 'Wright', '', '910 Century Drive', '', 'Mechanicsburg', 'PA', '17055', '717-458-0800', '717-458-0801 Fax', 'mikew@advantageengineering.net'), (238, 238, 'Mr', 'Debra ', 'Bruckner', '', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '845-496-1600', '845-496-1398 Fax ', 'erodriguez@advancetesting.com '), (239, 239, 'Mr', 'Dina', 'Graber', '', '37 Franklin Street, Suite 400', '', 'Buffalo', 'NY', '14202', '716-853-2611 x 126 D', '716-853-2619 Fax', ''), (240, 240, 'Mr', 'Paul', 'Pridemore', '', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '216-839-7213', '216-839-7213 Fax ', 'richard.paponetti@basf.com'), (241, 241, 'Mr', 'Dina', 'Graber', '', '37 Franklin Street, Suite 400', '', 'Buffalo', 'NY', '14202', '716-853-2611 x 126 D', '716-853-2619 Fax', ''), (242, 242, 'Mr', 'Mike ', 'Ryan', 'A Division of John Maneely Company', 'PO Box 608', 'One Council Avenue', 'Wheatland', 'PA', '16121', '724-983-2591 ', '724-346-7089 Fax', 'tlapikas@sharontube.com'), (243, 243, 'Mr', 'Sherry', 'Woods', '', '1325 Liberty Street', '', 'Erie', 'PA', '16502', '814-456-4287', '814-456-4280 Fax', 'gferver@ebcind.com '), (244, 244, 'Mr', 'Robert', 'Watson', '', '12225 Gresham Road', '', 'Titusville', 'PA', '16354', '814-827-6041', '814-827-0021 Fax', 'titusvillesupply@u.s.a.choice.net'), (245, 245, 'Mr', 'Sheila', 'Sennet', 'Attn:Sheila Sennet, Lab Operation', '8534 Yankee Street', 'Suite 2 C', 'Dayton', 'OH', '45458-1864', '937-435-3200', '(937) 435-5162 Fax', 'sennet@testechinc.com'), (246, 246, 'Mr', 'Nicole', 'Crouse', '', '7950 Castleway Drive, Suite 100', '', 'Indianapolis', 'IN', '46250', '317-326-6000', '317-326-2385 Fax', 'gheuer@pinnacleindy.com'), (247, 247, 'Mr', 'Courtney', 'Stodolak', '', '4471 M-61', '', 'Standish', 'MI', '48658', '989-846-6601', '989-846-6607 Fax ', 'aball@ssi-mi.com '), (248, 248, 'Mr', 'Courtney', 'Stodolak', '', '4471 M-61', '', 'Standish', 'MI', '48658', '989-846-6601', '989-846-6607 Fax ', 'aball@ssi-mi.com '), (249, 249, 'Mr', 'James', 'McElhinny', '', '8913 State Street', '', 'Kinsman', 'OH', '44428', '330-876-2171', '330-876-0393 Fax', ''), (250, 250, 'Mr', 'Kimberly ', 'Ripoly', '', '385 River Road ', '', 'Wheeling', 'WV', '26003', '304-277-4720', '304-277-2081 Fax', 'gmartin@concretefabricatorsinc.com'), (251, 251, 'Mr', 'James', 'Fichtelman', 'c/o VDR 100948', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-867-3785', '304-485-1882 - Fax', 'Accounting.Services@essroc.com'), (252, 252, 'Mr', 'Don', 'Lehnerd', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax/724', ''), (253, 253, 'Mr', 'Ben', 'O\'Dorisio', '', '45825 Hwy 96 East ', '', 'Pueblo', 'CO', '81006', '719-549-5226', '719-549-5444 Fax', ''), (254, 254, 'Mr', 'Gary', 'Classen', '', '31770 Gonzaga Road', '', 'Gustine', 'CA', '95322', '209-827-5148', '209-827-5114 Fax', ''), (255, 255, 'Mr', 'Muriel', 'Ouellet', '', '105 rue de la fonderie', '', 'Mont-Joli (QC)', 'Canada', 'G5H 1W2', '418-775-4358', '418-775-7223 Fax ', 'mouellet@bradken.com'), (256, 256, 'Mr', 'Virginia ', 'Woody', '', '318 Seaboard Lane, Suite 106', '', 'Franklin', 'TN', '37067', '615-771-2560', '615-771-2551 Fax', ''), (257, 257, 'Mr', 'David', 'Turner', '', 'PO Box 6103', '', 'Morgantown', 'WV', '26506', '304-293-3031', '304-293-7109 Fax', 'david.turner@mail.wvu.edu'), (258, 258, 'Mr', 'Frank', 'Welsh ', '', '2701 Carolean Industrial Drive ', '', 'State College', 'PA', '16801', '(814) 231-8845 x 108', '814-231-8846 Fax', 'dpeglow@cmtlabs.net'), (259, 259, 'Mr', 'Tim', 'Mahalko', '', 'PO Box 1708', '', 'York', 'PA', '17405', '(717) 848-2831', '(717) 848-5565 Fax', 'dmyers@yorkbuilding.com'), (260, 260, 'Mr', 'Paul', 'Matticks', '', '1205 Mid Valley Drive ', '', 'Jessup', 'PA', '18434', '570-307-0965', '570-307-0962 Fax', 'pmatticks@fabcorinc.com'), (261, 261, 'Mr', 'Craig', 'Joss', '', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '610-313-3227', '610-313-9667 Fax', 'mheely@appliedtesting.com'), (262, 262, 'Mr', 'Craig', 'Joss', '', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '610-313-3227', '610-313-9667 Fax', 'mheely@appliedtesting.com'), (263, 263, 'Mr', 'Brian', 'Kelly', '', '340 Strayer Street', '', 'Johnstown', 'PA', '15906', '814-536-6630', '814-536-5730 Fax ', 'brianckellypls@verizon.net '), (264, 264, 'Mr', 'Craig', 'Joss', '', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '610-313-3227', '610-313-9667 Fax', 'mheely@appliedtesting.com'), (265, 265, 'Mr', 'Marty', 'Clark', '', 'PO Box 265', '', 'Annapolis Junction', 'MD', '20701', '301-725-1456', '301-725-1268 Fax ', ''), (266, 266, 'Mr', 'James', 'Fischer', '', 'PO Box 489', '', 'Evansville', 'WY', '82636-0489', '307-472-0001', '307-235-7056 Fax/307', 'james.fischer@bakerhughes.com'), (267, 267, 'Mr', 'Shawn', 'Painter', '', '3290 Susquehanna Trail', '', 'York', 'PA', '17406', '(717) 764-8521', '', 'spainter@wagman.com'), (268, 268, 'Mr', 'Steve', 'Skolnick', '', '150 Meadowlands Parkway', 'Third Floor', 'Secaucus', 'NJ', '07094-1589', '973-483-0722', '973-483-7544 Fax', ''), (269, 269, 'Mr', 'Dan', 'Mottinger', '', '720 South 45th Street', '', 'Boulder', 'CO', '80305', '303-263-5139', '', ''), (270, 270, 'Mr', 'Rod', 'Burk', '', '966 Perry Highway ', '', 'Mercer', 'PA', '16137', '724-748-3045', '724-748-3045 Fax', ''), (271, 271, 'Mr', 'James', 'Richard', '', 'P.O. Box 2508', '', 'Charleston', 'WV', '25329', '(304) 342-4171', '(304) 342-4175', ''), (272, 272, 'Mr', 'Shar', 'Snyder', '', '1302 Slate Hill Road ', '', 'Camp Hill', 'PA', '17011', '717-763-1900', '717-763-1911 Fax ', ''), (273, 273, 'Mr', 'Tracy', 'Bruce', '', '930 Cass Street', '', 'New Castle ', 'PA', '16101', '724-652-5566', '724-652-8290 Fax ', 'tbruce@brucenadmerrilees.com'), (274, 274, 'Mr', 'Larry', 'Kitko', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', 'lkitko@hrico.com '), (275, 275, 'Mr', 'Jim', 'Schroeder', '', '3100 N Mc Carthy ', '', 'Appleton ', 'WI', '54913', '920-832-4223', '920-832-4219 Fax', 'jschroeder@piercemfg.com'), (276, 276, 'Mr', 'Tom', 'Pierce', '', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '419-324-2222', '419-241-1808 Fax', ''), (277, 277, 'Mr', 'Scott', 'Reichert', '', '2210 Manchester Road', '', 'Erie', 'PA', '16506', '(814) 838-2011', '814-766-4045 Fax', ''), (278, 278, 'Mr', 'Harry', 'Sauve', '', '6050 Melbourne Rd.', '', 'Saginaw ', 'MI', '48604', '989-753-6176', '989-753-1875 Fax', 'hjs@r-rreadymix.com'), (279, 279, 'Mr', 'Tim', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', 'tlautenbach@mateco.com '), (280, 280, 'Mr', 'Tamara', 'Virginia', '', 'PO Box 1299', '', 'Hopewell', 'VA', '23860', '804-452-5691', '904-586-6524 Fax/804', 'james.fenn@vonik.com'), (281, 281, 'Mr', 'John', 'Benkart', '', '2583 Rochester Road', '', 'Cranberry Twp.', 'PA', '16066', '724-776-1580', '724-776-1593 Fax', 'benkartrigging@zoominternet.net'), (282, 282, 'Mr', 'Sheila', 'Baines', '', '3737 Nansemond Parkway', '', 'Suffolk', 'VA', '23435', '757-538-2761', '757-538-8342 Fax ', 'sbaines@nansemondprecast.com'), (283, 283, 'Mr', 'Tim', 'English ', 'ATTN: Tom Liegey', '1952 Waddle Road, Suite 203', '', 'State College', 'PA', '16803', '814-237-1444 Office', '814-237-4491 Fax/814', 'jso@goh-inc.com'), (284, 284, 'Mr', 'Bryon', 'Janas', '', '34600 Solon Road', '', 'Solon', 'OH', '44139', '440-248-0100 ', '440-248-1001 Fax', 'bjanas@erico.com'), (285, 285, 'Mr', 'Jon', 'Meddaugh', '', '3600 Renie School Road ', '', 'Traverse City', 'MI', '49685', '231-218-0602 Jon ', '231-943-5534 Fax', ''), (286, 286, 'Mr', 'Trent', 'Gages', '', '2900 Community College Avenue', '', 'Cleveland', 'OH', '44115', '216-987-4384', '216-987-4396 Fax ', 'trent.gages@tri-c.edu'), (287, 287, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (288, 288, 'Mr', 'Kathy', 'Schweitzer', '', 'Kentucky Transportation Center', '176 Raymond Building ', 'Lexington', 'KY', '40506-0281', '859-257-7381', '(859) 257-1815 Fax', ''), (289, 289, 'Mr', 'Donna', 'Wilson', '', '6555 South Dixie Highway', '', 'Erie', 'MI', '48133', '734-848-1112', '734-848-3317 Fax ', 'dtrimmer @orttool.com '), (290, 290, 'Mr', 'Shawn', 'West-Meister', '', 'PO Box 45', '', 'Plymouth', 'OH', '44865', '419-687-8237', '419-687-5185 Fax', ''), (291, 291, 'Mr', 'Eric', 'Zell', '', '412 S. Lafayette Blvd.', '', 'South Bend', 'IN', '46601', '(574) 232-4388', '(574) 232-4333 Fax', 'sringhoffer@wpenvironmental.com'), (292, 292, 'Mr', 'Maggie ', 'Love ', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', 'pbarnes@gulisek.com'), (293, 293, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (294, 294, 'Mr', 'Waty', 'Yirka', '', '12750 Twinbrook Parkway', '', 'Rockville', 'MD', '20852', '301-881-2545', '301-881-0814 Fax', 'jchafin@amtengineering.com '), (295, 295, 'Mr', 'Terry', 'Daniel', '', '7455 New Ridge Rd., Suite T', 'Corporate Headquarters', 'Hanover', 'MD', '21076', '410-850-7000', '410-850-4111 Fax', 'tdaniel@structural.net'), (296, 296, 'Mr', 'Sam', 'Kimanu', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', 'les@ebaengineering.com'), (297, 297, 'Mr', 'Shannon', 'Apple', 'DBA American Dry Mix ', '16 Greenmeadow Drive, Suite 112', '', 'Timonium', 'MD', '21093', '410-561-8770 x 711 S', '410-561-7780 Fax', 'todd@uscproducts.com'), (298, 298, 'Mr', 'Brittney ', 'Emerson', '', '1 John Marshall Drive ', '', 'Huntington', 'WV', '25755', '304-696-5450', '304-696-5454 Fax ', 'dial11@marshall.edu'), (299, 299, 'Mr', 'Brittney ', 'Emerson', '', '1 John Marshall Drive', '', 'Huntington ', 'WV', '25755', '304-696-5450', '304-696-5454 Fax', 'dial11@marshall.edu'), (300, 300, 'Mr', 'Brittney ', 'Emerson', '', '1 John Marshall Drive ', '', 'Huntington', 'WV', '25755', '304-696-5450', '304-696-5454 Fax ', 'dial11@marshall.edu'), (301, 301, 'Mr', 'MaryJane', 'Irwin', '', 'PO Box 1585', '1794 Moxahala Avenue', 'Zanesville', 'OH', '43702-1585', '740-453-0721 ', '740-455-2305 Fax ', 'emorrison@shellyandsands.com '), (302, 302, 'Mr', 'Karen ', 'Grooms', 'District 9 ', 'PO Box 467', '', 'Chillicothe', 'OH', '45601', '740-774-8931', '740-773-3081 Fax', 'karen.grooms@dot.state.oh.us'), (303, 303, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (304, 304, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (305, 305, 'Mr', 'Lou ', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (306, 306, 'Mr', 'Dan', 'Stanko', '', '200 Third Avenue', '', 'Carnegie', 'PA', '15106', '908-656-4338', '908-534-6785 Fax ', 'dstanko@keyenvir.com'), (307, 307, 'Mr', 'Sheila ', 'Sennet', '', '8534 Yankee Street', '', 'Dayton', 'OH', '45458-1864', '937-435-3200', '(937) 435-5162 Fax', 'sennet@testechinc.com'), (308, 308, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (309, 309, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (310, 310, 'Mr', 'Debra ', 'Bruckner', '', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '845-496-1600', '845-496-1398 Fax ', 'erodriguez@advancetesting.com '), (311, 311, 'Mr', 'Desi', 'Trabucco', '', '702 Freeport Road', 'SR 1001', 'Cheswick', 'PA', '15024', '724-274-0160', '724-274-0167 Fax ', 'ekaufman@walshgroup.com'), (312, 312, 'Mr', 'Jack', 'Deitz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '614-846-1700 Ext. 32', '614-876-1899 Fax', ''), (313, 313, 'Mr', 'Becky', 'Carroll', '', 'PO Box 44548', '2860 Fisher Road ', 'Columbus', 'OH', '43204', '614-276-8123', '614-276-6377 Fax', ''), (314, 314, 'Mr', 'Timothy ', 'Hayes', '', '2 International Plaza', 'Suite 540', 'Philadelphia', 'PA', '19113', '215-669-6216', '215-937-6734 Fax', 'timothy.hayes@phl.org'), (315, 315, 'Mr', 'Ned', 'Glysson', '', 'PO Box 1462', '', 'Ann Arbor', 'MI', '48106', '734-761-6900', '734-761-8016 Fax', 'ned@elastizell.com '), (316, 316, 'Mr', 'Jack', 'Sattelmeier', '', '46555 Humboldt Drive', 'Suite 100', 'Novi', 'MI', '48377', '248-669-5140', '248-669-5147 Fax', ''), (317, 317, 'Mr', 'Julie', 'Nap', '', '1950 Ravine Road ', '', 'Kalamazoo', 'MI', '49004', '269-344-7690', '269-344-7693 Fax', 'jnap@superiorprecast.com '), (318, 318, 'Mr', 'Bobbi', 'McNeal', '', '2088 S. Arlington Road ', '', 'Akron', 'OH', '44306', '330-786-3191 Bobbie ', '330-786-3199 Fax ', ''); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (319, 319, 'Mr', 'Sandie', 'Moody', 'Attn: Sandie Moody', 'PO Box 6103', '', 'Morgantown', 'WV', '26506', '304-293-3031', '304-293-7109 Fax', 'jwahick@mix.wvu.edu'), (320, 320, 'Mr', 'Greg', 'Sipola', 'Attn: Mr. Greg Sipola', '1393 Wheaton Drive', 'Suite 800', 'Troy', 'MI', '48083', '(248) 528-1655', '248-528-1702 Fax', 'mitchell.olaughlin@psiusa.com'), (321, 321, 'Mr', 'Sia', 'Ravan', '', '3546 Engineering Bldg.', '', 'East Lansing', 'MI', '48824', '517-355-5107', '517-432-1827 Fax ', ''), (322, 322, 'Mr', 'Jim', 'Shovely', '', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '419-324-2222', '419-241-1808 Fax', 'jelliott@ttassoc.com'), (323, 323, 'Mr', 'Susan ', 'Brown', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-0629 Fax', 'stuber@sme-usa.com'), (324, 324, 'Mr', 'Sia', 'Ravan', '', '3546 Engineering Bldg.', '', 'East Lansing', 'MI', '48824', '517-355-5107', '517-432-1827 Fax ', ''), (325, 325, 'Mr', 'Jill', 'Irwin', '', 'PO Box 39', '', 'Carrollton', 'MI', '48724', '989-792-8734/989-754', '989-792-8737 Fax', 'mjhorn@irockproducts.com'), (326, 326, 'Mr', 'Angie', 'Hall', 'c/o VDR 100948', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '814-238-1781', '(814) 238-4323 Fax', 'Accounting.Services@essroc.com'), (327, 327, 'Mr', 'Rohan', 'Perch', '', '56 Grumbacher Road, Suite D', '', 'York', 'PA', '17406', '717-767-4788', '717-767-5658 Fax', 'jjoines@ecslimited.com'), (328, 328, 'Mr', 'Jeffrey', 'Germann', '', '433 S. Pottsville Pike, Rt.61', '', 'Shoemakersville', 'PA', '19555', '(610) 562-3076', '610-562-2084 Fax', 'jeff.german@oldcastle.com'), (329, 329, 'Mr', 'Mark', 'Miller', '', '401 West End Avenue', '', 'Manheim', 'PA', '17545', '717-665-2000', '717-665-2861 Fax', 'schneebl@harringtonhoist.com'), (330, 330, 'Mr', 'Greg', 'Quandel', '', 'PO Box 220', '', 'Minersville', 'PA', '17954', '(570) 544-2261', '(570) 544-5736 Fax', 'gquandel@yahoo.com'), (331, 331, 'Mr', 'Russ', 'Mitchell', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (332, 332, 'Mr', 'Dennis', 'Rhodes', '', 'PO Box 156', '', 'Hanover', 'PA', '17331', '(717) 637-2288 x 237', '(717) 637-1180 Fax', 'mderadorff@hanover.concrete.com'), (333, 333, 'Mr', 'Dennis ', 'Rhodes', '', '35 Constitution Ave.', '', 'Shrewsbury', 'PA', '17361', '(717) 235-3807', '(717) 637-1180 Fax', 'mderadorff@hanoverconcrete.com'), (334, 334, 'Mr', 'Mark', 'Miller', '', '401 West End Avenue', '', 'Manheim', 'PA', '17545', '717-665-2000', '717-665-2861 Fax', 'schneebl@harringtonhoist.com'), (335, 335, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (336, 336, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '127 NESL Drive', '', 'New Enterprise', 'PA', '16664', '814-224-6870', '814-766-0234 Fax', 'mmoyer@nesl.com'), (337, 337, 'Mr', 'Doug', 'Clevenger', '', '859 Cleveland Ave.', '', 'Chambersburg', 'PA', '17201', '(717) 267-4580', '(717) 267-0915 Fax', ''), (338, 338, 'Mr', 'John', 'McLaughlin', '', '215 Stackpole Street', '', 'St. Marys', 'PA', '15857', '(814) 781-1234', '(814) 781-8643 Fax ', 'john.mclaughkin@mersen.com'), (339, 339, 'Mr', 'Crystal', 'Young', '', '317 Buena Vista Highway', '', 'Wilcox', 'PA', '15870', '814-929-5805', '814-929-5806 Fax', 'wlowe@pccpm.com'), (340, 340, 'Mr', 'Georgina', 'Jackson', '(HIF-1)', '1201 New Jersey Avenue,S.E.', 'Seventh Floor, Room E73-102', 'Washington', 'DC', '20590', '202-366-0102', '202-366-3988 Fax/202', 'gudimetta@yahoo.com'), (341, 341, 'Mr', 'Bob', 'Dolence', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (342, 342, 'Mr', 'Steve', 'Hobbs', '', '13478 Chandler Road ', '', 'Omaha', 'NE', '68138', '402-556-2171', '', 'marcel.niederhauser@leister.com'), (343, 343, 'Mr', 'Debbie', 'Lear Guerrero', '', '2220 Engineers Road', '', 'Belle Chasse', 'LA', '70037', '206-762-3700', '206-762-5003 Fax ', ''), (344, 344, 'Mr', 'Bill', 'Ramsey', '', '275 Southwest Avenue', '', 'Tallmadge', 'OH', '44278', '330-630-6239', '330-633-4939 Fax ', ''), (345, 345, 'Mr', 'Marlene', 'Carter', 'Attn: Marlene', '401 South Washington Square,', 'Suite 103', 'Lansing', 'MI', '48933', '517-913-5800', '517-913-5830 Fax', 'www.aecom.com'), (346, 346, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0576', '614-848-6712 Fax', 'jbukey@DLZ.com'), (347, 347, 'Mr', 'Lynn', 'Williams', '', 'One Denso Road ', '', 'Battlecreek', 'MI', '49015', '269-565-1586 Lynn', '269-968-7205 Fax', 'lisa-burns@denso-diam.com'), (348, 348, 'Mr', 'Dave', 'Seymour', 'Attn: Paul Cameron (Certs)', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (349, 349, 'Mr', 'Judy', 'Hartman', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303-0824', '248-454-6880 Judy', '248-454-6345 Fax', 'mailto:mgarrison@hrc-engr.com'), (350, 350, 'Mr', 'Tori', 'Vanderhaar', '', '4950 White Lake Road', '', 'Clarkston', 'MI', '48346', '248-625-8080 ', '248-625-0978 Fax', ''), (351, 351, 'Mr', 'Ted', 'Scholl', '', '298 Keystone Drive', '', 'Bethlehem', 'PA', '18020', '(610) 837-9696 x 472', '(610) 837-8420 Fax', 'joebasilone@daytonsuperior.com'), (352, 352, 'Mr', 'Scott', 'Hynes', '', '1061 Suite G Trumbull Avenue', '', 'Girard', 'OH', '44420', '(330) 759-0288', '(330) 759-0923 Fax', 'scott.hynes@psiusa.com'), (353, 353, 'Mr', 'Tom', 'Green', '', '34600 Solon Road', '', 'Solon', 'OH', '44139', '440-248-0100 ', '440-542-7226 Fax', 'rcalmeise@erico.com '), (354, 354, 'Mr', 'Tom', 'Green', '', '34600 Solon Road', '', 'Solon', 'OH', '44139', '440-248-0100', '440-542-7226 Fax', 'rcalmeise@erico.com '), (355, 355, 'Mr', 'John', 'Kent', '', 'PO Box 889', '', 'Morgantown', 'PA', '26507', '(304) 296-2562', '(304) 296-8739 Fax', 'dhooper@triadeng.com'), (356, 356, 'Mr', 'Mike', 'Rind', '', '6015 Pleasant Valley Road ', '', 'Irwin', 'PA', '15642', '724-637-3552', '724-744-4234 Fax ', 'mrind@wm.com'), (357, 357, 'Mr', 'Lou', 'Ziolowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'dirk.tagawa@noaa.gov'), (358, 358, 'Mr', 'Brad', 'Bryant', '', 'PO Box 572', '', 'Hattisburg', 'MS', '39403', '601-544-7811', '601-544-2005 Fax', ''), (359, 359, 'Mr', 'Steve', 'Robins', '', '1648 Petersburg Road', '', 'Hebron', 'KY', '41048', '859-586-8890', '859-586-8891 Fax', ''), (360, 360, 'Mr', 'Pam', 'Barnes', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', 'pam.barnes@gulisek.com'), (361, 361, 'Mr', 'Jude', 'Cernica', '', '7240 Glenwood Avenue', '', 'Boardman', 'OH', '44512', '330-758-2100', '330-758-6100 Fax ', ''), (362, 362, 'Mr', 'Maurika', 'Lake ', '', '3085 Interstate Parkway', '', 'Brunswick', 'OH', '44212', '330-220-8900', '330-220-8944 Fax', 'mlake@ctleng.com '), (363, 363, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (364, 364, 'Mr', 'Donald', 'Blasland', '', '6544 Fremont Road ', '', 'East Syracuse', 'NY', '13057', '(315) 437-1420', '(315) 437-1752 Fax', 'pwlabsinc@hotmail.com'), (365, 365, 'Mr', 'Lori', 'Haskell', '', '3784 Commers Court, Suite 300 ', '', 'North Tonawanda', 'NY', '14120', '716-694-8657', '716-694-8638 Fax', 'charles.forth@psiusa.com'), (366, 366, 'Mr', 'Gary', 'Lenviel', '', 'PO Box 160', 'Route 67', 'Swords Creek', 'VA', '24649', '(276) 873-6816', '(276) 873-4809 Fax', ''), (367, 367, 'Mr', 'Charles', 'Davis', '', 'PO Box 134', '', 'Pounding Mill', 'VA', '24637', '(276) 964-6755', '(276) 963-2021 Fax', 'jadkins@quikrete.com'), (368, 368, 'Mr', 'Eric', 'Hess', '', 'PO Box 282', '', 'Pounding Mill', 'VA', '24637', '276-971-7740', 'No Fax', 'melissa@lighthouseengineering'), (369, 369, 'Mr', 'Phillip ', 'Reed', '', 'PO Box 519', '', 'Nitro', 'WV', '25143', '304-755-8291', '304-755-2636 Fax', 'cindy.morgan@terradon.com'), (370, 370, 'Mr', 'Zachary', 'Cochran', '', '8112 Riverside Drive', '', 'Oakwood', 'VA', '24631', '(276) 498-3836', '(276) 498-4317 Fax', ''), (371, 371, 'Mr', 'Herbert', 'Parsons', 'Attn: Kathy Mehaffey', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '1-304-558-9857', '703-991-8727 Fax', 'SWH.A.Bennette@WV.gov'), (372, 372, 'Mr', 'Tony', 'Blair', '', 'PO Box 16098', '', 'Louisville', 'KY', '40256-0098', '(502) 448-2920', '(502) 448-3134 Fax', ''), (373, 373, 'Mr', 'Mike', 'Sminchak', '', '2390 Advanced Business Center Drive ', '', 'Columbus', 'OH', '43228', '614-527-7656', '614-527-7489 Fax', 'sminchak@dhdcinc.com'), (374, 374, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (375, 375, 'Mr', 'Rex', 'Cooper', '', 'PO Box 3048', '', 'Warrenton', 'VA', '20188', '540-349-4746', '540-347-4755 Fax', 'sales@cooperinstruments.com'), (376, 376, 'Mr', 'Bobby', 'Barnes', 'Laboratories, PC', 'PO Box 2067', '', 'Hickory', 'NC', '28603', '828-256-3000', '828-256-6921 Fax ', ''), (377, 377, 'Mr', 'Diana', 'Heil', '', '2061 Young Street', '', 'East Troy', 'WI', '53120', '262-642-8201', '262-642-8486 Fax', 'rjones@plymouth.com'), (378, 378, 'Mr', 'AJ', 'Steeber', '', '300 South Cedar Avenue', '', 'Rialto', 'CA', '92376-9102', '909-820-6800', '909-873-3765 Fax ', ''), (379, 379, 'Mr', 'Andrew', 'Solak', '', 'PO Box 1017', '', 'Binghamton', 'NY', '13902', '607- 778-5074', '607-778-5481 Fax ', ''), (380, 380, 'Mr', 'Dick', 'Schorr', '', '1275 Kinnear Road ', '', 'Columbus', 'OH', '43212', '614-340-1690 x 2635', '614-487-3704 Fax ', 'jshotwell@metamateria.com'), (381, 381, 'Mr', 'Will', 'Bechwith', '', '470 B Conway Court, Suite 8', '', 'Lexington', 'KY', '40511', '859-455-8530', '859-455-8630 Fax', ''), (382, 382, 'Mr', 'Jim', 'Campbell', '', '2001 Millwood Pike', '', 'Winchester', 'VA', '22602', '(540) 667-2301', '(540) 667-3430 Fax', 'b_showers@yahoo.com'), (383, 383, 'Mr', 'Dave ', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax', 'gtcinfo@gtcpgh.com'), (384, 384, 'Mr', 'Glenn', 'Bush', 'Lower Mon Area Lab', '1811 Schoonmaker Avenue', '', 'Monessen', 'PA', '15062', '724-684-7462 Sandra', '724-684-7590 Fax', 'glenn.bush@usace.army.mil'), (385, 385, 'Mr', 'William ', 'Maize ', '', 'PO Box 277', '508 Cedar Street', 'Pioneer', 'OH', '43554', '419-737-9808 ', '419-737-9400 Fax', 'bill.maize@premieradmix.com'), (386, 386, 'Mr', 'Karen', 'Moriearty', '', 'PO Box 2566', '2307 Oregon Street', 'Oshkosh', 'WI', '54903-2566', '920-235-9151', '920-233-9483 Fax', 'mkempen@defense.oshkoshcorp.com'), (387, 387, 'Mr', 'Mike ', 'Lofton', '', '65 N Nimitz Hwy, Pier 14', '', 'Honolulu', 'HI', '96817', '808-479-8517', '808-583-1703 Fax', 'lofton@amarinecorp.com'), (388, 388, 'Mr', 'Ben', 'James ', '', 'PO Box 755', '', 'Boiling Springs', 'NC', '28017', '704-434-6551', '', ''), (389, 389, 'Mr', 'Kevin', 'Smith', '', '614 Norwalk Avenue, SW', '', 'Roanoke', 'VA', '24016', '540-537-8203', '540-345-6989 Fax ', ''), (390, 390, 'Mr', 'Denny', 'Weisenberger', '', '80 Commerce Drive', '', 'Norwalk', 'OH', '44857', '(419) 668-8167', '(419) 663-0627 Fax', 'jcross@nciprecast.com'), (391, 391, 'Mr', 'Debbie', 'Klinger', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-324-5329', '248-324-5178 Fax', 'dklinger@nthconsultnats.com'), (392, 392, 'Mr', 'Jonathan', 'Chang', '', '3201 Arch Street, Suite 400', '', 'Philadelphia', 'PA', '19104', '215-895-2996/215-895', '215-895-1363 Fax', 'gmh28@drexel.edu'), (393, 393, 'Mr', 'George', 'Pappas', '', '800 Lancaster Avenue, Civil Egr.', 'Tolentine Hall, Room 139', 'Villanova', 'PA', '19085', '610-519-7036', '610-519-6754 Fax', 'jeffrey.cook@villanova.edu'), (394, 394, 'Mr', 'Matt', 'Diller', '', '859 Cleveland Ave.', '', 'Chambersburg', 'PA', '17201', '(717) 267-4580', '(717) 267-0915 Fax', 'mdiller@nitterhouse.com'), (395, 395, 'Mr', 'Tracey', 'Miller', '', 'PO Box 117', '50 Refton Road', 'Refton', 'PA', '17568', '717-806-2444', '717-806-0961 Fax ', 'Tim.Groff@qualitystoneveneer.com'), (396, 396, 'Mr', 'Kevin', 'Dubnidki', '', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '734-453-7900', '734-453-0724 Fax', ''), (397, 397, 'Mr', 'Jeff', 'Paul', '', '1907 Linden Ave.', '', 'Zanesville', 'OH', '43701', '740-297-4474', '740-297-8836 Fax', ''), (398, 398, 'Mr', 'Lillian', 'Moncur', '', 'PO Box 527464', '', 'Miami', 'FL', '33152', '242-356-0568/242-356', '242-394-4488 Fax', 'etsbahamas@gmail.com (Lambert)'), (399, 399, 'Mr', 'Lillian', 'Moncur', '', 'PO Box 527464', '', 'Miami', 'FL', '33152', '242-356-0568/242-356', '242-394-4488 Fax', ''), (400, 400, 'Mr', 'Melvin', 'Garrett', '', '5917 Dixie Highway', '', 'Saginaw', 'MI', '48601', '989-777-0435 x 17303', '989-921-6270 Fax', 'mark.meddaugh@oldcastleapg.com'), (401, 401, 'Mr', 'Jim', 'Toto', '', '1929 Larchmont Ave. NE', '', 'Warren', 'OH', '44483', '330-372-3716 x 101', '330-372-5594 Fax', 'James.Toto@rescoproducts.com'), (402, 402, 'Mr', 'Chris ', 'Arthurs', 'County Engineers Office', '832 Front Avenue SW', '', 'New Philadelphia', 'OH', '44663', '330-339-6648', '330-339-6687 Fax', 'engineer@co.tuscarawas.oh.us'), (403, 403, 'Mr', 'Ken', 'Karenbauer', '', '416 Chicora Road ', '', 'Butler', 'PA', '16001', '724-287-1964', '724-287-3070 Fax ', 'ken@keyprecastandsupply.com'), (404, 404, 'Mr', 'Robert', 'Homan', '', 'PO Box 2641', '600 North 18th Street', 'Birminham', 'AL', '35291', '205-257-4153', '205-257-2988 Fax', ''), (405, 405, 'Mr', 'Terry', 'Creel', '', '1000 Access Road ', '', 'Pascagoula', 'MS', '39568-0149', '228-935-6163 Terry', '228-933-9108 Fax', 'Sean.auge@ngc.com'), (406, 406, 'Mr', 'Ryan', 'Yoraschek', '', '120 Woodward Avenue', '', 'New Haven', 'CT', '6512', '203-468-4513', '203-468-4517 Fax', ''), (407, 407, 'Mr', 'Ben', 'James ', '', 'PO Box 515, 516 Lakeview Drive ', '', 'Dahlonega', 'GA', '30533', '706-867-7751', '706-867-9203 Fax ', ''), (408, 408, 'Mr', 'Shawn', 'Millard', '', 'PO Box 205', '', 'Muncy', 'PA', '17756', '570-649-5188', '570-649-5850 Fax ', ''), (409, 409, 'Mr', 'Luis', 'Duran', 'Av. Adolfo Lopez Mateos No. 179B,', 'Col. Playa Norte CP. 24129', 'Ciudad del Carmen', 'Campeche', 'Mexico', '', '52-938-382-5173 x 22', '52-938-382-5195 Fax', 'avaldesa@grupor.com.mx'), (410, 410, 'Mr', 'Beverly', 'Taylor', '', '374 Monarch Avenue', '', 'Ajax, Ontario', 'Canada', 'L1S 2G8', '905-683-3100 x 1326', '905-683-4264 Fax', ''), (411, 411, 'Mr', 'Larry', 'Jackson', '', '9284 Balboa Avenue', '', 'San Diego', 'CA', '92123', '619-553-6053', '619-533-7229 Fax', ''), (412, 412, 'Mr', 'Tom', 'Nebinski', '', '1150 Gezon Parkway', '', 'Wyoming', 'MI', '49509', '616-257-2700', '616-257-2800 Fax', ''), (413, 413, 'Mr', 'Ray', 'Tritt', '', '14941 Liberty Hi Road', '', 'Bowling Green', 'OH', '43402', '419-354-2030', '419-354-1052 Fax', ''), (414, 414, 'Mr', 'Sharon', 'Dalton', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 ', '770-360-0520 Fax', ''), (415, 415, 'Mr', 'Mark', 'Moyer', 'Attn: Mare Moyer', '127 Nesl Drive', '', 'Roaring Spring ', 'PA', '16673', '814-224-6870', '814-766-0234 Fax ', 'dmeyers@nesl.com'), (416, 416, 'Mr', 'Mike', 'Bierman', '', 'PO Box FL 150', 'Flatts Bermuda FL, BX', 'Bermuda', '', '', '(441) 293-1171', '(441) 293-8929 Fax', 'mbierman@ibl.bm'), (417, 417, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'kpryse@thelenassoc.com'), (418, 418, 'Mr', 'William', 'Gross', '', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '(412) 262-2022', '412-262-1979 Fax', 'www.jeffzell.com'), (419, 419, 'Mr', 'Kyle', 'Lewis', '', '802 South Maitland Avenue', '', 'Pasco', 'WA', '99301', '509-454-4657', '509-545-8103 Fax', ''), (420, 420, 'Mr', 'Amy', 'Boltz', 'Attn: Acccounts Payable', '3015 Dumbarton Road', '', 'Richmond', 'VA', '23228', '910-323-9832', '910-323-5455 Fax', ''), (421, 421, 'Mr', 'Steve ', 'Seymour', '', 'PO Box 91', '', 'Monroeton', 'PA', '18832', '570-265-5015', '570-265-5148 Fax', ''), (422, 422, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '(412) 823-7600', '(412) 823-8999 Fax', 'rorourke@geotechnics.net'), (423, 423, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '(412) 823-7600', '(412) 823-8999 Fax', 'rorourke@geotechnics.net'), (424, 424, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '(412) 823-7600', '(412) 823-8999 Fax', 'rorourke@geotechnics.net'), (425, 425, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '(412) 823-7600', '(412) 823-8999 Fax', 'rorourke@geotechnics.net'), (426, 426, 'Mr', 'Greg', 'Huffman', '', '338 Muskingum Drive ', '', 'Marietta', 'OH', '45750', '740-568-3935', '740-373-7317 Fax ', 'Greg.Huffman@dot.state.oh.us'), (427, 427, 'Mr', 'Kevin ', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '(412) 823-7600', '(412) 823-8999 Fax', 'rorourke@geotechnics.net'), (428, 428, 'Mr', 'Kevin ', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '(412) 823-7600', '(412) 823-8999 Fax', 'rorourke@geotechnics.net'), (429, 429, 'Mr', 'Mark J.', 'Klos', '', '720 Brickworks Drive ', 'Leetsdale Industrial Park', 'Leetsdale ', 'PA', '15056', '724-252-6384', '724-266-5807 Fax', 'mklos@centria.com '), (430, 430, 'Mr', 'Kevin', 'Corvin', '', 'PO Box 102', '', 'Mt. Braddock', 'PA', '15456', '336-969-3533', '336-969-3566 Fax ', 'tgranson@cavertwire.com'), (431, 431, 'Mr', 'Paul', 'McGee', '', 'One McCandless Avenue', '', 'Pittsburgh', 'PA', '15201-2631', '412-782-7330 ', '412-782-7343 Fax ', 'hbittner@wabtec.com'), (432, 432, 'Mr', 'Kris', 'Karl', '', 'PO Box 5270', '', 'Cleveland', 'OH', '44101', '216-361-5000', '216-361-3325 Fax', 'mlanna@mctechreadymix.com'), (433, 433, 'Mr', 'Louis', 'D\'Alessio', '', '20 Thomas Avenue', '', 'Shrewsbury', 'NJ', '07702-4022', '732-450-2488', '732-450-2490 Fax ', 'cpminc@netsync.net'), (434, 434, 'Mr', 'David', 'Spallina', '(Formally Elam)', 'PO Box 337', '', 'Mt. Morris', 'NY', '14510', '585-658-2248', '585-658-4054 Fax', 'jbarenozoo@gmail.com'), (435, 435, 'Mr', 'Sebrina', 'Ward', '', '4308 North George Street', '', 'Manchester', 'PA', '17345', '717-266-6740 ', '717-764-2864 Fax ', ''), (436, 436, 'Mr', 'Steve', 'Daughenbaugh', 'ATTN: Steve Daughenbaugh', '1952 Waddle Road, Suite 203', '', 'State College', 'PA', '16803', '814-237-1444', '814-237-4491 Fax/814', 'etb@goh-inc.com'), (437, 437, 'Mr', 'Fadil', 'Abdelfatah', '', 'PO Box 70263', '', 'Washington', 'DC', '20024', '202-863-0911', '202-863-0944 Fax ', 'oscarv@fmcassoc.com'), (438, 438, 'Mr', 'Mike', 'Docherty', '', '632 Hunt Valley Road ', '', 'New Kensington', 'PA', '15068', '724-335-6000', '724-335-3834 Fax ', ''), (439, 439, 'Mr', 'Mark', 'Hawkins ', '', '780 Rt 910', '', 'Cheswick', 'PA', '15024', '412-828-0400', '412-828-0300 FAX', ''), (440, 440, 'Mr', 'Toby', 'Cowan ', '', '810 N. Fort Wayne Road ', '', 'Rushville', 'IN', '46173', '765-932-3058', '765-932-2461 Fax ', 'dsweet@mccrearyconcrete.com'), (441, 441, 'Mr', 'Bob', 'Thomson', '', '1109 Commercial Drive, Suite 2 ', '', 'Lexington', 'KY', '40505', '859-455-8530', '859-455-8630 Fax', 'wvbeckwith@terracon.com'), (442, 442, 'Mr', 'Steve', 'Antos', '', '10340 Pleasant Street, Suite 400', '', 'Noblesville', 'IN', '46060', '317-776-1828', '317-773-6227 Fax', 'santos@ciireadymix.com'), (443, 443, 'Mr', 'Mike ', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (444, 444, 'Mr', 'John', 'O\'Conner', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'b_paranzino@brayman.com'), (445, 445, 'Mr', 'Beth', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248) 486-5100', '(248) 486-5050 Fax', 'cwu@cticompanies.com '), (446, 446, 'Mr', 'Al', 'Kossow', '', '1615 N. Westwood Ave.', '', 'Toledo', 'OH', '43607', '419-530-3165', '419-530-3166 Fax Al', 'akossow@eng.utoledo.edu'), (447, 447, 'Mr', 'Beth ', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248) 486-5100', '(248) 486-5050 Fax', 'tmarsik@cticompanies.com'), (448, 448, 'Mr', 'Beth', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248) 486-5100', '(248) 486-5050 Fax', 'tmarsik@cticompanies.com '), (449, 449, 'Mr', 'Beth', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248) 486-5100', '(248) 486-5050 Fax', 'tmarsik@cticompanies.com '), (450, 450, 'Mr', 'Beth', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248) 486-5100', '(248) 486-5050 Fax', 'tmarsik@cticompanies.com '), (451, 451, 'Mr', 'Bob', 'Durecki', '', 'PO Box 9160', '', 'Grand Rapids', 'MI', '49509', '(616) 538-9000', '(616) 538-8877 Fax', ''), (452, 452, 'Mr', 'Gayle', 'Kirkbride', 'Division of Mar-Zane Materials Lab ', 'PO Box 366', '', 'Williamstown ', 'WV', '26187', '740-453-0721', '740-455-3144 Fax', 'emorrison@shellyandsands.com'), (453, 453, 'Mr', 'Chris', 'Apperson', '', 'PO Box 908', '', 'Nitro', 'WV', '25143', '304-755-1401', '304-755-1404 Fax', 'chris.apperson@tritonwv.com '), (454, 454, 'Mr', 'Mark ', 'Logger', '', '801 West Main Street', '', 'Carnegie', 'PA', '15106', '412-276-0583/412-276', '412-276-0718 Fax ', 'mcadez@mabeech.com'), (455, 455, 'Mr', 'Michael ', 'Moredock ', '', 'PO Box 2279', 'Research Division', 'West Lafayette', 'IN', '47906', '765-463-1521 x 231', '765-497-1665 Fax ', 'mmoredock@indot.in.gov'), (456, 456, 'Mr', 'Gloria', 'Beard', 'Attn: Gloria Beard', '3076 N. Blackstock Road', '', 'Spartanburg', 'SC', '29301', '864-576-3230 ', '864-587-8828 Fax ', ''), (457, 457, 'Mr', 'Sandra', 'Parr', '', 'Bldg 2044 Petlenton Ave', '', 'Joint Base Lewis McChord', 'WA', '98433', '253-967-5420', '253-967-7342 Fax', 'rodney.damaso@us.army.mil'), (458, 458, 'Mr', 'Mitch', 'Kruzel', '', '13101 Eckles Road', '', 'Plymouth', 'MI', '48170', '734-582-0300', '734-582-0100 Fax', ''), (459, 459, 'Mr', 'Mike', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (460, 460, 'Mr', 'Karen', 'Morlan', '', '1420 Front Street', '', 'Grand Rapids', 'MI', '49504-3221', '616-464-1800', '616-464-1189 Fax', 'MorlanK@michigan.gov'), (461, 461, 'Mr', 'Mary', '', '', '4700 Annapolis Road ', '', 'Bladensburg', 'MD', '20710', '301-927-8300', '301-779-8924 Fax ', 'modi6868@hotmail.com'), (462, 462, 'Mr', 'Kathy', 'Mehaffey', '', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '304-558-9857', '304-558-0253 Fax', 'kathy.l.mehaffey@wv.gov'), (463, 463, 'Mr', 'Steven', 'Cutter', '', '43760 Trade Center Place, Suite 110', '', 'Sterling', 'VA', '20166', '703-478-0055', '703-478-0137 Fax', 'dvalle@mragta.com'), (464, 464, 'Mr', 'Christine', 'Timura', '', '111 Hoganas Way', '', 'Hollsopple', 'PA', '15935', '814-479-3539 Christi', '814-479-2003 Fax', 'james.cordek@nah.com'), (465, 465, 'Mr', 'Jon', 'Belkowitz', '', '173 Woodcrest Drive ', '', 'Freehold', 'NJ', '7728', '732-804-8996 Cell Wh', '732-252-6994 Fax ', 'jon.belkowitz@gmail.com '), (466, 466, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717) 787-1037', '', 'chneely@state.pa.us'), (467, 467, 'Mr', 'Jeff', 'Hodgson', '', '1527 North 2000 West', '', 'Ogden', 'UT', '84404', '801-866-1860', '801-732-2097 Fax', 'jeff.hodgson@peterseninc.com '), (468, 468, 'Mr', 'Dale', 'Diaz', '', '13701 S. Kenton Avenue', '', 'Crestwood', 'IL', '60445', '708-371-4330', '708-371-9986 Fax ', 'censcale@aol.com '), (469, 469, 'Mr', 'Curt', 'Roupe', '', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '419-241-0114', '419-241-0146 Fax', ''), (470, 470, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (471, 471, 'Mr', 'Michael', 'Kelley', '', '1550 Coraopolis Heights Road', '', 'Moon Township', 'PA', '15108', '412-490-4000', '724-770-5520 Mike ', 'madishj@novachem.com'), (472, 472, 'Mr', 'Gib', 'Weller', 'ATTN: Gib Weller', '1952 Waddle Road, Suite 203 ', '', 'State College', 'PA', '16803', '(814) 237-1444', '814-237-4491 Fax/814', ''), (473, 473, 'Mr', 'Ryan', 'Wagner', '', '102 Sky Lane', '', 'Tarentum', 'PA', '15084', '724-265-4600 x 1316 ', '724-265-3323 Fax', ''), (474, 474, 'Mr', 'Jamie', 'North', '', '81 Railcar Road ', '', 'Warren', 'PA', '16365', '814-432-3184', '814-437-1110 Fax ', ''), (475, 475, 'Mr', 'Gary', 'Wenczel', '', '283 Dupont Hall', '', 'Newark', 'DE', '19716', '(302) 831-2442', '(302) 831-3640 Fax', 'wenczel@udel.edu'), (476, 476, 'Mr', 'Brian', 'Hibdon', '', '32121 Schoolcraft Road ', '', 'Livonia', 'MI', '48150', '734-522-0300', '734-522-0308 Fax ', 'brianh@tymeengineering.com'), (477, 477, 'Mr', 'Denise', 'Wenk ', '', '18101 West Nine Mile Road', '', 'Southfield', 'MI', '48075', '(248) 483-5163 Att: ', '(248) 569-3302', 'cornacchiam@michigan.gov'), (478, 478, 'Mr', 'Pat', 'Belan', '', '8165 Graphic Drive NE', '', 'Bellmont', 'MI', '49306-9448', '616-866-0815', '616-866-1890 Rich Fa', 'rtimmer@williamsform.com'), (479, 479, 'Mr', 'Harm', 'Hamstra', '', '3097 Lansing Road ', '', 'Charlotte', 'MI', '48813', '517-645-0111', '517-645-0090 Fax', 'harm@cdhughes.net'), (480, 480, 'Mr', 'Lynn', 'Grimm', '', '6845 Erie Avenue NW', 'PO Box 578', 'Canal Fulton', 'OH', '44614-0578', '(330) 854-4511', '(330) 854-6664 Fax', 'lgrimm@lindsayconcrete.com '), (481, 481, 'Mr', 'Tom ', 'Freda', 'Attn: Tom Freda', '720 Greencrest Drive ', '', 'Westerville', 'OH', '43081-4902', '614-895-1400', '614-895-1171 Fax ', 'tpatrilla@gci.2000.com'), (482, 482, 'Mr', 'Tim', 'Salai', '', 'RD 6 Box 2015', '', 'Mt. Pleasant', 'PA', '15666', '724-547-0120', '724-547-0939 Fax', 'scott.salai@gmail.com'), (483, 483, 'Mr', 'John', 'Raider', '', 'PO Box 69', '', 'Zelienople', 'PA', '16063', '(724) 452-6260', '(724) 452-8923 Fax', 'matt.manning@jjkennedyinc.com'), (484, 484, 'Mr', 'Steve ', 'Tutokey', '', '3600 Neville Road', '', 'Pittsburgh', 'PA', '15225', '412-777-0700', '412-777-0727 Fax ', ''), (485, 485, 'Mr', 'Jim', 'Maloney', '', '416 W. Ritter Street', '', 'Seven Mile', 'OH', '45062', '513-726-5678', '513-726-5679 Fax ', 'trmurray221@yahoo.com'), (486, 486, 'Mr', 'Jeff', 'Stocker', '', 'PO Box 873', '', 'Gnadenhutten', 'OH', '44629', '740-254-1018', '740-254-1019 Fax', 'jstocker@hughes.net'), (487, 487, 'Mr', 'Jody', 'Sucharski', '', '5500 New Albany Road', '', 'Columbus', 'OH', '43054', '614-775-4559', '614-775-4901 FAX', 'tstrchl@emht.com'), (488, 488, 'Mr', 'Todd', 'Klockner', '', '6350 Presidential Gateway', '', 'Columbus', 'OH', '43231', '614-823-4949', '614-823-4990 Fax', 'toddk@resourceinternational.com'), (489, 489, 'Mr', 'Sheila', 'Sennet', 'Attn: Sheila Sennet, Lab Operations', '8534 Yankee Street', 'Suite 2 C', 'Dayton', 'OH', '45458-1864', '(937) 435-3200', '(937) 435-5162 Fax', 'sennet@testechinc.com'), (490, 490, 'Mr', 'Beth', 'Boland', '', '1419 Alexandria Pike', '', 'Ft. Thomas', 'KY', '41075', '859-781-0831', '859-781-1085 Fax', 'jcrockett@trenwa.com'), (491, 491, 'Mr', 'William', 'Wynne', '', '9885 Rockside Road ', 'Rt. 145', 'Valley View', 'OH', '44125', '216-573-0955', '216-573-0963 Fax', 'monicaw@resourceinternational.com'), (492, 492, 'Mr', 'Mark', 'Bingham', '', 'PO Box 51', '', 'Dayton', 'OH', '45401-0051', '937-236-8805', '937-237-9947 Fax', 'jfletcher@bowser-morner.com'), (493, 493, 'Mr', 'John', 'Dingeldein', '', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '(440) 256-6500', '(440) 256-6507 Fax', 'molenaar@sme-usa.com'), (494, 494, 'Mr', 'John', 'Dingeldein', '', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '(440) 256-6500', '(440) 256-6507 Fax', 'molenaar@sme-usa.com'), (495, 495, 'Mr', 'John', 'Dingeldein', '', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '440-256-6500', '440-256-6507 Fax', 'molenaar@sme-usa.com'), (496, 496, 'Mr', 'John', 'Dingeldein', '', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '440-256-6500', '440-256-6507 Fax', 'molenaar@sme-usa.com'), (497, 497, 'Mr', 'Amber', 'Contini', '', '2384 Brightwood Rd SE', '', 'New Philadelphia', 'OH', '44663', '330-339-4113', '330-339-1166 Fax', 'katiemoss@richindustriesinc.com'), (498, 498, 'Mr', 'Tom', 'Cerreto', '', '34600 Solon Road', 'Atn: Tom Cerreto', 'Solon', 'OH', '44139', '440-248-0100 Ext. 38', '440-248-1527 Fax', 'kellyd.summit@att.net'), (499, 499, 'Mr', 'Rick', 'Solak', '', '797 South State Route 19', '', 'Fremont', 'OH', '43420', '419-334-2650 x 381 R', '419-334-9445 Fax ', 'rsolak@wahlref.com '), (500, 500, 'Mr', 'Michael', 'Clinton', '', '5400 Limestone Road', '', 'Wilmington ', 'DE', '19808', '302-239-6634', '302-239-8485 Fax', 'mclinton@duffnet.com'), (501, 501, 'Mr', 'Jason', 'Gabler', '', '44 Spleen Road ', '', 'Ridgway', 'PA', '15853', '814-772-5363', '814-772-5353 Fax ', 'jjgabler@advantagempi.com'), (502, 502, 'Mr', 'Dan', 'Corner', '', '511 West Water Street', '', 'Cincinnati', 'OH', '45202', '(513) 684-8247 Dan', '(513) 684-8222 Fax', ''), (503, 503, 'Mr', 'John', 'Dingeldein', '', '7700 Clocktower Drive', '', 'Kirtland', 'OH', '44094', '440-525-7277', '440-525-7639 Fax', 'lcurry@lakelandcc.edu'), (504, 504, 'Mr', 'Lynn', 'Lagana', 'Formally Dynamic Technology, Inc. ', 'PO Box 559', '', 'Hartland', 'MI', '48353-0559', '810-225-4601', '810-225-4602 Fax ', ''), (505, 505, 'Mr', 'Kathy', 'Mehaffey', '', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '304-558-9857', '304-558-0253 Fax ', 'sammy.j.searls@wv.gov'), (506, 506, 'Mr', 'Janna', 'Korhorn', '', '3515 Cleburne Road ', '', 'Spring Hill', 'TN', '37174', '931-486-2145', '931-486-2186 Fax', 'bcbrown@hss-mms.com'), (507, 507, 'Mr', 'Ray', 'Carter', '', '4212 Jenny Lake Trail', '', 'Keller', 'TX', '76244', '817-431-9458', '817-431-3601 Fax ', 'raycarter@cartercrane.com'), (508, 508, 'Mr', 'Terry', 'Creel', '', '1000 Access Road ', '', 'Pascagoula', 'MS', '39568-0149', '228-935-6163 Terry', '228-933-9108 Fax', 'Howard.Westfaul@hii-ingalls.com '), (509, 509, 'Mr', 'Becky', 'Pandice', 'Attn: Accounting - Job# ', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (510, 510, 'Mr', 'Kevin', 'Kleen', '', '1648 Petersburg Road', '', 'Hebron', 'KY', '41048', '859-586-8890', '859-586-8891 Fax', ''), (511, 511, 'Mr', 'Carolyn', 'Lieb', '', '234 Merlo Road', '', 'Mineral Point', 'PA', '15942', '814-322-1545', '814-322-1549 Fax', ''), (512, 512, 'Mr', 'Pat', 'Belan', '', '8165 Graphic Drive NE', '', 'Bellmont', 'MI', '49306-9448', '616-866-0815', '616-866-1890 Rich Fa', 'rtimmer@williamsform.com'), (513, 513, 'Mr', 'Jennifer', 'Collis', '', '601 Canal Road ', '', 'Cleveland', 'OH', '44113', '216-515-4493 Jennife', '216-566-3837 Fax ', ''), (514, 514, 'Mr', 'Dave', 'Gonso', '', 'PO Box 1047', '', 'Findlay', 'OH', '45839-1047', '419-424-8377 Dave', '(419) 424-8300 Fax', ''), (515, 515, 'Mr', 'John', 'Moran', '', '6737 Dogwood Road', '', 'Baltimore', 'MD', '21207', '410-298-2669', '410-298-4086 Fax', 'jmoran@c-p-rinc.com'), (516, 516, 'Mr', 'Dave', 'Roebuck', '', 'Southpoint Business Park', '4 Grandview Circle', 'Canonsburg', 'PA', '15317', '724-916-0300', '724-916-0315 FAX', 'droebuck@agesinc.com'), (517, 517, 'Mr', 'John', 'Moran', '', '6737 Dogwood Road', '', 'Baltimore', 'MD', '21207', '410-298-2669', '410-298-4086 Fax', 'jmoran@c-p-rinc.com'), (518, 518, 'Mr', 'John', 'Moran', '', '6737 Dogwood Road', '', 'Baltimore', 'MD', '21207', '410-298-2669', '410-298-4086 Fax', 'jmoran@c-p-rinc.com'), (519, 519, 'Mr', 'Sam', 'Kimanu', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 ', '410-358-7213 Fax', 'sam.kimani@ebaengineering.com'), (520, 520, 'Mr', 'John', 'Moran', '', '6737 Dogwood Road', '', 'Baltimore', 'MD', '21207', '410-298-2669', '410-298-4086 Fax', 'jmoran@c-p-rinc.com'), (521, 521, 'Mr', 'Bill', 'Boskovich', '', '285 Kappa Drive, STE 300', '', 'Pittsburgh', 'PA', '15238', '412-449-0700', '412-449-0704 Fax ', ''), (522, 522, 'Mr', 'Nancy', 'Klemm', '', '60 Gibb Road', '', 'Franklin', 'PA', '16323', '814-437-5114', '814-437-5114 Fax ', ''), (523, 523, 'Mr', 'Michelle', 'Jones', 'College of Engineering & Applied Science', '765 Baldwin Hall, 2850 Campus Way', '', 'Cincinnati', 'OH', '45221', '513-556-6553 - Sec. ', '513-556-5056 Fax/513', 'asgharm@ucmail.uc.edu'), (524, 524, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'kpryse@thelenassoc.com'), (525, 525, 'Mr', 'Tony', 'Swan', '', '454 CR-33', '', 'Oak Hill', 'OH', '60642', '(740) 682-7755', '(740) 682-6767 Fax', 'aswann@plibrico.com'), (526, 526, 'Mr', 'Rick', 'Solak', '', '100 South Third Street', '', 'Evan City', 'PA', '16033', '724-538-5006', '724-538-9118 Fax', ''), (527, 527, 'Mr', 'Brian', 'Collins', '', 'PO Box 243', '', 'Chillicothe', 'OH', '45601', '740-775-6450', '740-775-6498 Fax ', 'bcollins@stdcar.com'), (528, 528, 'Mr', 'Phic', 'Czirr', '', 'PO Box 200', '', 'Paris', 'KY', '40362', '859-987-3670', '859-987-0727 Fax', ''), (529, 529, 'Mr', 'Marty ', 'Maxey', '', '700 Wescor Rd', '', 'Hawesville', 'KY', '42348', '270-927-8606', '260-927-8611 Fax', 'mmaxey@walshgroup.com'), (530, 530, 'Mr', 'Bruce', 'Hottle, VP', '', 'PO Box 585', '', 'Somerset', 'PA', '15501', '(814) 445-5794', '(814) 445-3241 Fax', 'conpipe@msn.com'), (531, 531, 'Mr', 'Kim', 'Godfrey', '', 'PO Box 429', '', 'New Eagle', 'PA', '15067', '724- 258-3670', '724-258-2595 Fax', ''), (532, 532, 'Mr', 'Kim', 'Godfrey', '', 'PO Box 429', '', 'New Eagle', 'PA', '15067', '724-258-3670', '724-258-2595 Fax', 'rabed@therm-o-rock.com'), (533, 533, 'Mr', 'John', 'Sakson', 'John Sakson/ Laboratory Manager', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '(412) 262-2022', '412-262-1979 Fax', 'mmurphy@jeffzell.com'), (534, 534, 'Mr', 'John', 'Blair', '', '912 Morris Street', '', 'Charleston ', 'WV', '25301', '304-344-0821', '304-342-4711 Fax ', ''), (535, 535, 'Mr', 'Galen', 'Cloud', '', '16945 Northchase Drive, Suite 100', '', 'Houston', 'TX', '77060', '281-618-7274 Galen', '281-447-4106 Fax ', 'gcloud@lighthousehouston.com '), (536, 536, 'Mr', 'Shawn', 'Sheehan', '', '6411 Granger Road ', '', 'Independence', 'OH', '44131', '216-369-0198', '216-369-0197 Fax ', ''), (537, 537, 'Mr', 'Crystal', 'Rays', 'Attn: Accounts Payable ', '3015 Dumbarton Road', '', 'Richmond', 'VA', '23228', '804-264-2701', '804-262-8994 Fax ', ''), (538, 538, 'Mr', 'Luda', 'Budilovsky', '', '1133 West 18th Street', '', 'Erie', 'PA', '16502', '814-459-2720 x133', '814-455-3751 Fax', 'john@erisco-wire.com'), (539, 539, 'Mr', 'Lois', 'Quinn', '', '4839 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '(412) 923-2255 -Eric', '412-788-1169 Fax', ''), (540, 540, 'Mr', 'Dave', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax ', 'davet@gtcpgh.com'), (541, 541, 'Mr', 'Scott', 'Steiner', '', '2663 Eaton Rapids Road', '', 'Lansing', 'MI', '48911', '517-887-9181', '517-887-2666 Fax', 'neumann@sme-usa.com'), (542, 542, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Avenue', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'kpryse@thelenassoc.com'), (543, 543, 'Mr', 'Susan ', 'Elliott', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303', '248-454-6880 ', '248-745-2990 Fax', 'selliott@hrc-engr.com'), (544, 544, 'Mr', 'Scott', 'Hubbard', '', '2420 Pontiac Lake Road', '', 'Waterford', 'MI', '48328', '(248) 858-4865', '(248) 335-2921 Fax', 'shubbard@rcoc.org'), (545, 545, 'Mr', 'Dan', 'Howe', 'Attn: Accounts Payable Department', '660 Woodward Ave. Suite 2430', '', 'Detroit', 'MI', '48226-3514', '734-946-4966', '(734) 946-1147 Fax ', 'tbowling@somateng.com'), (546, 546, 'Mr', 'Randy', 'Guy', '', '1746 Charlestown Road ', '', 'Minden City', 'MI', '48456', '920-419-6361', 'No Fax Yet', 'rguy@rvtcorp.com'), (547, 547, 'Mr', 'Tom', 'Smith', '', '50 Johns Street', '', 'Johnstown ', 'PA', '15901', '814-361-2060', '814-361-2061 Fax', ''), (548, 548, 'Mr', 'Susan ', 'Brown', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '(734) 454-9900', '(734) 454-0629 Fax', 'brown@sme-usa.com'), (549, 549, 'Mr', 'Bill', 'Boskovich', '', '285 Kappa Drive, STE 300', '', 'Pittsburgh', 'PA', '15238', '412-449-0700', '412-449-0704 Fax ', ''), (550, 550, 'Mr', 'Jarrod', 'Tezik', '', '632 Hunt Valley Road ', '', 'New Kensington', 'PA', '15068', '724-335-6000', '724-335-3834 Fax ', 'jarrod@swankco.com '), (551, 551, 'Mr', 'Heath', 'Shirey', '', 'PO Box 1708', '', 'York', 'PA', '17405', '(717) 848-2381', '(717) 848-5565 Fax', ''), (552, 552, 'Mr', 'Harry', 'McGhee', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (553, 553, 'Mr', 'Bob', 'Mauthe', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', ''), (554, 554, 'Mr', 'Douglass', 'Gruber', '', '950 Smile Way', '', 'York', 'PA', '17405', '(717) 848-2831', '(717) 848-5565 Fax', 'dougg@yorkbuilding.com'), (555, 555, 'Mr', 'Bob', 'Dolence', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (556, 556, 'Mr', 'Brian', 'Reed', '', '1801 River Drive ', '', 'Moline', 'IL', '61265', '309-797-3232', '309-797-3377 Fax', 'brian.reed@kone.com'), (557, 557, 'Mr', 'Brian', 'Herron', '', '182 Susquehanna Avenue', '', 'Exeter', 'PA', '18643', '570-655-5574 x 3171', '570-414-2640 Fax', 'bgazda@pridemobility.com'), (558, 558, 'Mr', 'Matt', 'Spoleti', '', '39 Utter Avenue', 'New York Headquarters', 'Hawthorne', 'NJ', '7506', '800-966-9856', '973-636-2701 Fax', 'mspoleti@structural.net'), (559, 559, 'Mr', 'Don', 'Lehnerd', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax/724', 'r_dolence@brayman.com'), (560, 560, 'Mr', 'Rowena', 'Martin', '', 'PO Box F-42498-411', '', 'Freeport', 'Grand', 'Bahamas', '242-350-4000', '242-350-4010 Fax ', 'cwilson@gbshipyard.com '), (561, 561, 'Mr', 'Bill', 'Boskovich', '', '285 Kappa Drive, STE 300', '', 'Pittsburgh', 'PA', '15238', '412-449-0700', '412-449-0704 Fax ', ''), (562, 562, 'Mr', 'Becky', 'Pandice', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (563, 563, 'Mr', 'Rob', 'Rouse', '', '1040 Perry Highway ', '', 'Mercer', 'PA', '16137', '724-372-3897', '724-748-3599 Fax', 'procurement@clearwaterconstruction.com'), (564, 564, 'Mr', 'Chester', 'Covert', 'Formally ATC Associates', '8100 Snowville Road', '', 'Brecksville', 'OH', '44141', '440-838-7177', '440-838-7181 Fax ', 'chester.covert@cardno.com'), (565, 565, 'Mr', 'Ray', 'Vitori', '', '102 Sky Lane', '', 'Tarentum', 'PA', '15084', '724-265-4600', '724-265-3323 Fax', ''), (566, 566, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-6870', '814-766-0234 Fax', 'mmoyer@nesl.com'), (567, 567, 'Mr', 'Pam', 'Barnes', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', 'pam.barnes@gulisek.com'), (568, 568, 'Mr', 'Paul', 'Dykta', '', '1739 Grange Road', '', 'Charleroi', 'PA', '15022', '724-239-6488', '724-437-4136 Fax', 'coach@goldeneagleconst.com'), (569, 569, 'Mr', 'Frank', 'Zottola', '', '595 Pittsburgh Rd', '', 'Butler', 'PA', '16002', '724-586-2020', '724-586-5880 Fax', 'frankzottola@yahoo.com'), (570, 570, 'Mr', 'Terry ', 'Hurst', '', '11001 Bluegrass Parkway, Suite 250', '', 'Louisville', 'KY', '40299', '(800) 776-2832/502-7', '502-267-4072 Fax', 'Ricardo.Rodriguez@atcassociates.com'), (571, 571, 'Mr', 'Dave', 'Adams', '', 'P. O. Box 228', '', 'Chillicothe', 'OH', '45601', '(740) 773-2172', '(740) 773-2176 Fax', 'dave.adams@hanson.biz'), (572, 572, 'Mr', 'Darrin', 'Izer', '', 'PO Box 1029', '', 'Crestwood', 'KY', '40014', '(502) 241-9441', '(502) 241-0931 Fax', 'dizer@ernstconcrete.com'), (573, 573, 'Mr', 'Jim', 'Bumen', '', '3218 South Bridge St.', '', 'Chillicothe', 'OH', '45601', '(740) 663-2659', '(740) 663-2017 Fax', 'juliebstewart@yahoo.com'), (574, 574, 'Mr', 'Tom', 'Kasee', '', 'PO Box 15527', '425 Shepherd Ave.', 'Cincinnati', 'OH', '45215', '513-554-1700 ', '513-554-0092 Fax', 'scox@sawbrooksteel.com '), (575, 575, 'Mr', 'Keith', 'Pryse', '', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '859-746-9400', '859-746-9408 Fax', 'mpiller@thelenassoc.com'), (576, 576, 'Mr', 'Jeff', 'Gilland', '', '4001 Bixby Road', '', 'Groveport', 'OH', '43125', '(614) 836-4200', '(614) 836-4226 Fax', 'jlgilland@aep.com'), (577, 577, 'Mr', 'Sandy', 'Greenbaum', '', '994 Longfield Ave.', '', 'Louisville', 'KY', '40215', '(502) 361-8447', '(502) 361-4793 Fax', 'srg@geo-engineers.com'), (578, 578, 'Mr', 'Coy', 'Gibson', '', '3600 Litchfield Road', '', 'Cecila', 'KY', '42724-9640', '(270) 737-8296', '(270) 737-7277 Fax', 'jimmyn@kyconcrete.com'), (579, 579, 'Mr', 'Joe', 'Grygiel', '', '375 Burma Rd', '', 'Oakland', 'CA', '94607', '412-631-3067', '412-299-7734 Fax', 'jgrygiel@americanbridge.net'), (580, 580, 'Mr', 'Dave', 'Adams', '', '1111 East Main Street', '', 'Chilicothe', 'OH', '45601', '740-773-2172', '740-773-2176 Fax', 'john.houk@hanson.biz'), (581, 581, 'Mr', 'Mike ', 'Ionata', '', '600 Hayden Circle', '', 'Allentown', 'PA', '18109', '610-264-1430', '610-264-1430 Fax (P', 'LVAvionics@verizon.net'), (582, 582, 'Mr', 'Darrell', 'Griffith', 'Billing: Deborah Hardesty', '100 Piper Lane', '', 'Alabaster', 'AL', '35007', '205-664-2077', '205-664-4077 Fax', 'dgriffith@kanawhascales.com'), (583, 583, 'Mr', 'Diana', 'Adams', 'Next Systems, Inc. ', '22 Deer Park Drive ', '', 'East Longmeadow', 'MA', '1028', '800-943-4403', '413-525-6182 Fax', 'Diana@nextsystemsinc.com'), (584, 584, 'Mr', 'Steve', 'Gustin', '', '3425 Grant Drive', '', 'Lebanon', 'OH', '45036', 'PHONES DISCONNECTED', '513-228-3483 Fax', 'Tax ID # 30-0135155'), (585, 585, 'Mr', 'Michael', 'Pittenger', '', '8150 Sterling Court', '', 'Mentor', 'OH', '44060', '440-951-9000', '440-951-7487 Fax', 'mpittenger@ctconsultants.com'), (586, 586, 'Mr', 'Larry', 'McCune', '', 'PO Box 70', '', 'Thompson', 'OH', '44086', '(440) 298-3232 x 311', '440-951-1921 Fax', 'smalinowski@rwsidley.com'), (587, 587, 'Mr', 'Mark', 'Haynes', '', '1768 William Street', '', 'Buffalo', 'NY', '14206', '(716) 897-1904', '(716) 893-5427 Fax', ''), (588, 588, 'Mr', 'Brenda', 'Naye', '', 'P.O. Box 185', '', 'Sutton', 'WV', '26601', '304-750-2203', '304-750-2204 Fax', 'nathanm@wvdsl.net'), (589, 589, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hillard', 'OH', '43026-0550', '614-876-1700 ', '614-876-1899 Fax', ''), (590, 590, 'Mr', 'Lisa', 'Jones', '', '3209 Frederic St', '', 'Pascagoula ', 'MS', '39567', '228-762-4691', '', 'lisa.m.jones@noaa.gov'), (591, 591, 'Mr', 'Bob', 'Valore', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (592, 592, 'Mr', 'Melissa', 'Morena', '', '2340 Navarre Road S.W.', '', 'Canton', 'OH', '44706', '(330) 454-1113', '(330) 454-8770 Fax', 'steve@nceltd.net'), (593, 593, 'Mr', 'Nora', 'Adams ', '', '444 W. Third Street', 'Room 11-423', 'Dayton', 'OH', '45402', '937-512-2183', '937-512-2475 Fax', 'larry.wanamaker@sinclair.edu'), (594, 594, 'Mr', 'Zachary', 'Cochran', '(A Cochran Company)', '8112 Riverside Drive', '', 'Oakwood', 'VA', '24631', '(276) 498-3836', '(606) 639-2144 Fax', ''), (595, 595, 'Mr', 'James', 'Price', '', '119 West Range Road', '', 'Pineville', 'LA', '71360', '318-290-6410', '318-290-6411 Fax', 'James.L.Price@NG.Army.Mil'), (596, 596, 'Mr', 'Lydia', 'Gerard', '', '130 Brookhollow ', '', 'Harahan', 'LA', '70123', '504-733-9822', '504-734-0602 Fax ', ''), (597, 597, 'Mr', 'Todd', 'Labit', '', '1196 Petroleum Parkway', '', 'Broussard', 'LA', '70518', '337-837-1676', '337-837-6599 Fax', 'todd.labit@fot.com'), (598, 598, 'Mr', 'Debra', 'Boulton', 'dba Pan Pacific Products', 'Rt.4, Box 371, Hwy 3', '', 'Broken Bow', 'OK', '74728', '800-872-1085', '580-584-6230 Fax', 'debrab@panpacificproducts.com'), (599, 599, 'Mr', 'Tom', 'Williams', '', '21505 Greenoak Way', '', 'Sterling', 'VA', '20166', '(703) 421-4000', '(703) 421-8000 Fax', 'twilliams@gctonline.net'), (600, 600, 'Mr', 'Dirk', 'Smith', '', '265 Harrodsburg Road', '', 'Lexington', 'KY', '40504', '859-381-1000', '859-381-1005 Fax', 'rds@ermc2'), (601, 601, 'Mr', 'Surinder', 'Singh', '', '10110 Molecular Way', 'Suite 304', 'Rockville', 'MD', '20850', '301-424-8696', '204-499-8917 Fax', 'surinder@emc2engineers.com'), (602, 602, 'Mr', 'Judy', 'Heinrich', '', '9 Collan Park', '', 'Honesdale', 'PA', '18431', '570-253-4090', '570-223-2057 Fax Jud', 'jheinrich@leewardconstruction.com'), (603, 603, 'Mr', 'Tom', 'Williams', '', '21505 Greenoak Way', '', 'Sterling', 'VA', '20166', '(703) 421-4000', '(703) 421-8000 Fax', 'twilliams@gctonline.net'), (604, 604, 'Mr', 'Kimberly', 'Moore', '', '350 South Governor Printz Blvd. ', '', 'Lester', 'PA', '19029', '610-362-0210', '610-362-0211 Fax ', 'akm@comcast.net'), (605, 605, 'Mr', 'Joe ', 'Brickner', 'Attn: Linda Price / Renee Frey', '130 Derry Court', '', 'York', 'PA', '17406', '717-764-7700', '717-764-4129 Fax', 'jbrickner@archtest.com'), (606, 606, 'Mr', 'Brad', 'Minemyer ', 'Attn: Brad Minemyer ', '260 Laurel Ridge Road', 'Waste Management', 'Johnstown', 'PA', '15909', '814-749-9065', '814-749-0090 Fax', ''), (607, 607, 'Mr', 'Amanda', 'Kritzer', 'Allegheny/Clearfield Division', '409 3rd Street', '', 'Falls Creek', 'PA', '15840', '814-371-0184 ', '(814) 371-4640 Fax', 'AKritzer@netshapetech.com'), (608, 608, 'Mr', 'Amanda', 'Kritzer', 'Allegheny/Clearfield Division', '409 3rd Street', '', 'Falls Creek', 'PA', '15840', '814-372-1302', '(814) 371-4640 Fax', 'AKritzer@netshapetech.com'), (609, 609, 'Mr', 'Dean', 'Marshall', '', 'PO Box 69', '', 'Zelienople', 'PA', '16063', '724-452-6260', '724-452-8923 Fax', 'mattmanning@jjkennedyinc.com'), (610, 610, 'Mr', 'Steve', 'Huff', '', '733 Fairmont Road', '', 'Morgantown', 'WV', '26501', '304-292-1135 ', '304-296-9302 Fax ', 'shuff@ctleng.com'), (611, 611, 'Mr', 'Kasey ', 'Jackson', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'E_Ring@Brayman.com'), (612, 612, 'Mr', 'Dan', 'Matesic', '', '3447 East Carson Street', '', 'Pittsburgh', 'PA', '15203', '412-481-0280', '412-481-3442 Fax', ''), (613, 613, 'Mr', 'Tom', 'Sortman', '', 'PO Box 51', '', 'Dayton', 'OH', '45401', '937-236-8805 x253 -T', '937-237- 9947 Fax', 'RALLEN@Bowser-Morner.com'), (614, 614, 'Mr', 'Nancy', 'Grable', '', 'PO Box 88', '', 'Conneaut', 'OH', '44030', '440-599-7005', '440-599-7575 Fax', 'nancy@neoindustriesinc.com'), (615, 615, 'Mr', 'Ryan', 'Rhodes', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (616, 616, 'Mr', 'Rick', 'Witt', '', '4733 Rockwell Road ', '', 'Winchester', 'KY', '40391', '859-274-3447', '859-745-3013 Fax ', ''), (617, 617, 'Mr', 'David', 'Frazier', '', '2685 Gilchrist Road', '', 'Akron', 'OH', '44305', '(330) 733-6748', '(330) 733-6749 Fax', ''), (618, 618, 'Mr', 'Brian', 'Lehigh', 'District 11 ', '2201 Reiser Avenue', '', 'New Philadelphia', 'OH', '44663', '330-308-3913', '330-308-6996 Fax', 'brian.lehigh@dot.state.oh.us'), (619, 619, 'Mr', 'Jeremy', 'Lynn', '', '69338 Omo Road ', '', 'Armada', 'MI', '48005', '810-772-7573', '810-341-7573 Fax', 'kfriske@rowepsc.com'), (620, 620, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (621, 621, 'Mr', 'Mike', 'McCarthy', '', '248 East County Line Road', '', 'Hatboro', 'PA', '19040', '215-783-2238', '215-443-8362 Fax', 'mmccarthy@delvalconcrete.com'), (622, 622, 'Mr', 'Larry', 'Reznicek ', '', '30701 West 10 Mile Road, Suite 500', '', 'Farmington Hills ', 'MI', '48336', '248-788-8000', '248-592-9130 Fax', ''), (623, 623, 'Mr', 'Greg ', 'Mitchel', '', '206 Roosevelt Hall', '', 'Ypsilanti', 'MI', '48197', '734-487-1849 College', '734-487-8755 Fax/734', 'jstein@emich.edu'), (624, 624, 'Mr', 'Gregg ', 'Mitchell', '', '118 Sill Hall', '', 'Ypsilanti', 'MI', '48197', '734-487-1849 College', '734-487-8755 Fax/734', ''), (625, 625, 'Mr', 'Rich', 'Sanders', '', '5177 Louisville St.', '', 'Louisville', 'OH', '44641', '(330) 456-8369', '330-456-7828 Fax', ''), (626, 626, 'Mr', 'Sandy', 'Hurban', '', 'PO Box 3004', '', 'Conneaut Lake', 'PA', '16316', '814-382-0373', '814-382-0375 Fax', 'shurban@qespavements.com'), (627, 627, 'Mr', 'Nick ', 'Campanella', '', '4579 Navarre Road SW', '', 'Canton', 'OH', '44706', '(330) 478-0081', '(330) 478-3267 Fax', 'kevin.maynard@psi.usa.com'), (628, 628, 'Mr', 'Kurt', 'Seidler', '', '1470 Churchill-Hubbard Road ', '', 'Youngstown', 'OH', '44505', '330-746-4482', '330-259-3560 Fax ', 'kurt@seidlerengineering.com'), (629, 629, 'Mr', 'Louise', 'Bena', '', '6670 Beta Drive ', '', 'Mayfield Village', 'OH', '44143', '440-604-9943', '440-604-9992 Fax ', 'lhbena@firstenergycorp.com'), (630, 630, 'Mr', 'Frank', 'Hutto', '', '1736 Hemphill Road', '', 'Waynesville', 'NC', '28786', '828-734-1011', '828-926-2229 Fax', ''), (631, 631, 'Mr', 'Jeff', 'Lebo', '', '8261 Old Derry Street', '', 'Hummelstown', 'PA', '17036-9308', '(717) 566-5066', '(717) 566-4166 Fax', ''), (632, 632, 'Mr', 'Rodney', 'Smith', '', '150 Carley Court ', '', 'Georgetown', 'KY', '40324', '502-868-6221', '502-863-0834 Fax', ''), (633, 633, 'Mr', 'Shannon', 'Stevens', '', '5725 Kanawha Turnpike SW', ' ', 'South Charleston ', 'WV', '25309', '304-766-8062', '304-766-7396 Fax', 'sps@kokosing.biz'), (634, 634, 'Mr', 'Stephen', 'Bennett', '', '422 Codell Dr.', '', 'Lexington', 'KY', '40509', '(859) 509-4998', '859- 299-2481 Fax', 'flloyd@smeinc.com'), (635, 635, 'Mr', 'Brian', 'Territ', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'B_Terriit.Brayman.com'), (636, 636, 'Mr', 'Tammy', 'Spaniel', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'c_enciso@braymanconstruction.com'); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (637, 637, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (638, 638, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (639, 639, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (640, 640, 'Mr', 'Ed', 'Bostaph', '', '98 South Fraley Street', '', 'Kane', 'PA', '16735', '814-837-7743', '814-837-9155 Fax', 'jdunn@highlanderenergy.com'), (641, 641, 'Mr', 'Tom', 'Stewart', '', 'PO Box 300', '', 'Parker', 'PA', '16049', '724-399-2992', '724-399-2480 Fax', 'twtewart@ufpi.com'), (642, 642, 'Mr', 'Jim', 'Thomas', '', '1561 E. Washington ST.', '', 'Louisville', 'KY', '40206', '(502) 581-1443', '(502) 581-9653 Fax', 'jthomas@alliedrm.com'), (643, 643, 'Mr', 'Shayne', 'Brashear', '', 'PO Box 54846 ', '', 'Lexington', 'KY', '40555-4846', '859-309-6021', '1-888-792-3121 Fax', 'croucher@csikentucky.com'), (644, 644, 'Mr', 'Wendy', 'Milliman', '', 'PO Box 429', '', 'Dorton', 'KY', '41520', '606-639-4484', '606-639-4482 Fax ', 's.williamson@wrightconcrete.com'), (645, 645, 'Mr', 'Anna', 'Hayes-Bruce', '', 'Hwy 133 Wilson Damn Road ', 'Power Service Shop #2', 'Muscle Shoals', 'AL', '35661', '256-386-2715', '256-386-3657 Fax', 'cmkillen@tva.gov'), (646, 646, 'Mr', 'Serge', 'Vaillancourt', 'Service De Comptabilite', '105 Abraham-Martin #500', '', 'Quebec', 'Canada', 'G1K 8N1', '418-694-1414', '418-694-2074 Fax', 'serge.vaillancourt@groupocean.com'), (647, 647, 'Mr', 'Brandon', 'Clayton', '', 'PO Box 348', '', 'Winona', 'MN', '55987', '828-456-9695', '828-456-5505 Fax', ''), (648, 648, 'Mr', 'Kyle', 'Smith ', 'Attn: Kyle Smith', '47 Walnut Street, Suite 300', '', 'Johnstown', 'PA', '15901', '814-361-2060', '814-361-2061 Fax ', ''), (649, 649, 'Mr', 'Scott', 'Hartzel', '', '255 Glen Drive ', '', 'Manchester', 'PA', '17345', '717-266-4173', '717-266-5083 Fax', ''), (650, 650, 'Mr', 'J', 'Alvarez', '', '8081 W. 21 Lane ', '', 'Hialeah', 'FL', '33016', '305-822-5792', '305-362-3125 Fax ', 'JAlvarez@kelilabs.com'), (651, 651, 'Mr', 'Linda', 'Valentino', 'A Division of John Maneely Company', 'PO Box 608', 'One Council Avenue', 'Wheatland', 'PA', '16161-0608', '724-983-2591 ', '724-346-7089 Fax', ''), (652, 652, 'Mr', 'Kevin', 'Lang ', '', '2100 Poland Avenue', '', 'Youngstown', 'OH', '44514', '800-624-2867', '330-744-3218 Fax ', 'klang@stress.com'), (653, 653, 'Mr', 'Linda', 'Valentino', 'A Division of John Maneely Company', 'PO Box 608', 'One Council Avenue', 'Wheatland', 'PA', '16161-0608', '724-983-2591 ', '724-346-7089 Fax', 'chris.mcallister@jmcsteel.com'), (654, 654, 'Mr', 'Rob', 'Whitmire', '', '6220 E. Schaaf Road', '', 'Independence', 'OH', '44131', '216-524-0999', '216-328-9066 Fax', 'jdeyling@digheg.com'), (655, 655, 'Mr', 'Tom', 'Gagen', '', '302 North Belt East', '', 'Swamsea', 'IL', '62226', '618-277-0329', '618-277-0196 Fax', ''), (656, 656, 'Mr', 'Diana', 'Kingsley', '', '92 Otis Street', '', 'Rome', 'NY', '13441', '315-334-7603', '315-334-7660 Fax', 'mary.petrilli@tek.com'), (657, 657, 'Mr', 'Mike', 'Kukula', '', '7864 Root Road', '', 'North Ridgeville', 'OH', '44039', '440-327-3200', '440-327-3204 Fax', 'ghorachek@branamfastening.com '), (658, 658, 'Mr', 'Jeff', 'Kless', '', '3301 Sutton Road ', '', 'Adrian', 'MI', '49221', '517-264-8148', '517-264-4007 Fax', 'Kristi.Larzelere@wacker.com'), (659, 659, 'Mr', 'Mark', 'Weber', '', '422 Codell Drive', '', 'Lexington', 'KY', '40509', '859-509-4998', '859-299-2481 Fax', ''), (660, 660, 'Mr', 'Jon', 'Siembor', 'Attn: Accounts Payable', '6065 Parkland Blvd.', '', 'Cleveland', 'OH', '44124', '440-947-2000 / 440-9', '440-947-2099 Fax/440', 'bskaggs@generalaluminum.com'), (661, 661, 'Mr', 'Dung ', 'Tran', '', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '703-471-8400', '703-471-5292 Fax', 'jpatel@ecslimited.com'), (662, 662, 'Mr', 'Jerry ', 'Weaver', '', '100 Sky Lane', '', 'Tarentum', 'PA', '15084', '724-265-4600', '724-265-3323 Fax', 'thicks@jbfayco.com '), (663, 663, 'Mr', 'Becky', 'Pandice', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', 'paul.peterson@trumbullcorp.com'), (664, 664, 'Mr', 'Kathy', 'Mehaffey', 'Materials Control, Soil & Testing Div.', '190 Dry Branch Road ', '', 'Charleston', 'WV', '25306', '304-238-1165', '304-558-0253 Fax ', ''), (665, 665, 'Mr', 'Daniel', 'Farabaugh', '', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '412-751-4001', '412-751-4003 Fax ', 'fetlabs@aol.com'), (666, 666, 'Mr', 'Fred', 'Smith', '', '2313 State Route 18', '', 'Wampum', 'PA', '16157', '724-535-4397', '724-535-1137 Fax ', ''), (667, 667, 'Mr', 'Nunzio', 'Staph', '', '1409 Moravia Street', '', 'New Castle', 'PA', '16101', '(724)658-5656', '(724)658-5659', ''), (668, 668, 'Mr', 'Shane ', 'Barshear', '', '250 Gold Rush Road', '', 'Lexington ', 'KY', '40503', '859-497-2319', '888-792-3121 Fax', 'sbrashear@csikentucky.com'), (669, 669, 'Mr', 'Tim ', 'Cartwright', 'Attn: Mike Monnier', '4900 Webster Street', '', 'Dayton', 'OH', '45414', '937-275-8700 x 190 M', '937-275-9566 Fax', 'dcridlin@barsplice.com'), (670, 670, 'Mr', 'Todd', 'Phillips', '', '4354 South Range Road ', '', 'New Middletown', 'OH', '44442', '330-542-2585', '330-542-2586 Fax ', 'toddatjet@aol.com '), (671, 671, 'Mr', 'Colby', 'DeHoff', '', '1400 South Mahoning Avenue', '', 'Alliance', 'OH', '44601', '800-947-2837 ', '330-823-5502 Fax ', 'cdehoff@wgpaver.com'), (672, 672, 'Mr', 'Anthony', 'Gale', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'agale@nesl.com'), (673, 673, 'Mr', 'Dave', 'Harpster', '', '307 Fairfield Road ', '', 'Montoursville', 'PA', '17754', '(570) 433-3186', '570-433-4408 Fax', 'twales@centreconcrete.com'), (674, 674, 'Mr', 'Lynn', 'Wilson', 'Accounts Payable', 'Pioneer Center', '', 'Alfred', 'NY', '14802', '607-587-4398', '607-587-4255 Fax', 'PariseNC@alfredstate.edu'), (675, 675, 'Mr', 'Lorraine', 'Monette', '', '2400 Boston Street, Suite 200', '', 'Baltimore', 'MD', '21224', '410-779-2259', '410-779-2005 Fax', 'lmonette@dap.com'), (676, 676, 'Mr', 'Frank', 'Biter', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', ''), (677, 677, 'Mr', 'Shannon', 'Stevens', '', 'PO Box 226', '17531 Waterford Bldg. 2', 'Fredericktown', 'OH', '43019', '304-766-8062', '304-766-8105 Fax ', 'sps@kokosing.biz'), (678, 678, 'Mr', 'Harry', 'Zumbrum', '', '1742 Sixth Avenue', '', 'York', 'PA', '17403-2675', '717-843-0081', '717-846-4193 Fax', ''), (679, 679, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (680, 680, 'Mr', 'Lori', 'Hanks', '', '12801 Universal Drive ', '', 'Taylor', 'MI', '48180', '734-947-4000', '734-947-4004 Fax ', 'ahimick@cglift.com'), (681, 681, 'Mr', 'Jerry', 'Hill', '', '925 Tollgate Road ', 'Chicago Headquarters', 'Elgin', 'IL', '60123', '847-429-1648', '847-429-9903 Fax', 'jhill@structural.net'), (682, 682, 'Mr', 'Kyle', 'Smith ', 'Attn: Kyle Smith', '47 Walnut Street, Suite 300', '', 'Johnstown', 'PA', '15901', '814-361-2060', '814-361-2061 Fax ', ''), (683, 683, 'Mr', 'Randy', 'Evans', '', '900 St. Bernard Parkway', '', 'Braithwaite', 'LA', '70040', '504-682-5245', '504-682-5296 Fax ', ''), (684, 684, 'Mr', 'Cristen', 'Jordan', '', 'PO Box 9870', '', 'Richmond ', 'VA', '23228-9870', '804-261-3700', '804-261-0418 Fax ', 'mail@vlsc.com '), (685, 685, 'Mr', 'Beth', 'Tefke', '', '3445-A Box Hill Corporate Center', '', 'Abington', 'MD', '21009', '410-515-9446', '410-515-4895 Fax/302', 'creith@mragta.com'), (686, 686, 'Mr', 'Fred', 'Wood', '', '445 Daubenspeck Road', '', 'Parker', 'PA', '16049', '724-753-2657', '', ''), (687, 687, 'Mr', 'Jenn', 'Morris', '', '2453 Cades Way, Suite C', '', 'Vista', 'CA', '92081', '760-536-0227', '760-536-0233 Fax', 'jenmorris@techmastertest.com'), (688, 688, 'Mr', 'Eddie', 'Khanthavong ', '', '1400 Willow Pass Court', '', 'Concord', 'CA', '94520', '925-798-8900', '925-798-8905 Fax ', ''), (689, 689, 'Mr', 'Robert ', 'St. John', '', '6955 San Tomas Road', '', 'Elkridge ', 'MD', '21075', '800-899-1016', '410-850-4111 Fax', 'dmaurer@structural.net'), (690, 690, 'Mr', 'Robert', 'St. John ', '', '6955 San Tomas Road ', ' ', 'Elkridge', 'MD', '21075', '800-899-1016', '410-850-4111 Fax ', 'dmaurer@structural.net'), (691, 691, 'Mr', 'Chuck ', 'Cartier', '', '210 e. Nam Heron RD', '', 'FBKS', 'AK', '99701', '907-451-0200 ', '907-451-8480 Fax', 'chuckc@alaskarubber.com'), (692, 692, 'Mr', 'Ivan ', 'Reynolds', '', 'PO Box 700', '', 'Paul ', 'ID', '83347', '208-428-2115', '208-438-8288 Fax', 'ireynolds@amalsugar.com'), (693, 693, 'Mr', 'John', 'Lee', '', '7002 Commerce ', '', 'El Paso', 'TX', '79915', '915-778-5233', '915-779-8301 Fax ', 'jlee@rkci.com'), (694, 694, 'Mr', 'Mike', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (695, 695, 'Mr', 'Mike', 'Ash ', '', '6205 Schumacher Park Drive', '', 'West Chester', 'OH', '45069', '(513) 777-9890', '513-777-9070 Fax', 'esperber@altwitzig.com'), (696, 696, 'Mr', 'Katie', 'Tackett', '', '702 South First Street', '', 'Ironton', 'OH', '45638', '724-443-1533', '724-443-8733 Fax 724', 'd_hartley@brayman.com'), (697, 697, 'Mr', 'Mike', 'Rose', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-477-0549 Fax', ''), (698, 698, 'Mr', 'Sherry', 'Diegel', '', '37500 Northline Road ', '', 'Romulus', 'MI', '48174', '734-941-3008', '724-941-1666 Fax', ''), (699, 699, 'Mr', 'Dave', 'Erikson', '', '8951 Schaefer Highway', '', 'Detroit', 'MI', '48228', '313-933-5050', '313-933-1965 Fax ', 'derickson@Quikrete.com'), (700, 700, 'Mr', 'Andy', 'Molek', '', '1877 Route 2023', '', 'Monongahela', 'PA', '15063', '724-258-4450 ext 325', '724-258-4202 Fax', 'pghflexicore@gmail.com'), (701, 701, 'Mr', 'Justin', 'Bryan', '', 'PO Box 272', '1263 Chartiers Ave.', 'McKees Rocks', 'PA', '15136', '412-331-1630', '412-331-8668 Fax', 'justinbryan@bryanmaterialsgroup.com'), (702, 702, 'Mr', 'Becky', 'Pandice', 'Attn: Accounting - Job# ', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', 'mark.geist@trumballcorp.net'), (703, 703, 'Mr', 'Jamie', 'Preston', 'Open Joist 2000', '3778 Oneida Valley Road', '', 'Emlenton', 'PA', '16373', '724-867-0495', '(724) 867-0676 Fax', 'jpreston@ufpi.com'), (704, 704, 'Mr', 'Mark', 'Geist', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', 'kkilmer@trumbullcorp.comn'), (705, 705, 'Mr', 'Dana ', 'Pinkerton', '', '1707 E. Anaheim Street', '', 'Wilmington', 'CA', '90744', '310-824-8535', '310-834-2991 Fax ', 'dana@wirerope.tv'), (706, 706, 'Mr', 'Rick', 'Ryel', '', 'PO Box 1398', '', 'Ashtabula ', 'OH ', '44005-1398', '440-992-2997', '440-992-1311 Fax ', ''), (707, 707, 'Mr', 'Jacob', 'Chumbley', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314', 'esperber@altwitzig.com'), (708, 708, 'Mr', 'Sheila', 'Sennet', 'Attn: Sheila Sennet, Lab Operations', '8534 Yankee Street', 'Suite 2 C', 'Dayton', 'OH', '45458', '937-435-3200', '937-435-5162', 'shsennet@testechinc.com'), (709, 709, 'Mr', 'Sherry', 'Justice', '', 'PO Box 498', '', 'Imperial', 'PA', '15126', '724-899-2085', '724-899-2086 Fax ', ''), (710, 710, 'Mr', 'Duane', 'McCortney', '', 'PO Box 968', '', 'Clarksburg', 'WV', '26302', '304-592-5577', '304-592-5530 Fax ', 'jspankus@centralsupplywv.com'), (711, 711, 'Mr', 'Sam', 'Kimanu', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 61', '410-358-7213 Fax', 'samkimani@ebaengineering.com'), (712, 712, 'Mr', 'Gib', 'Weller', 'ATTN: Gib Weller', '1952 Waddle Road, Suite 203 ', '', 'State College', 'PA', '16803', '(814) 237-1444', '814-237-4491 Fax/814', 'djm@goh-inc.com'), (713, 713, 'Mr', 'Steven', 'Cutter', '', '43760 Trade Center Place, Suite 110', '', 'Sterling', 'VA', '20166', '703-478-0055', '703-478-0137 Fax', 'dvalle@mragta.com'), (714, 714, 'Mr', 'Thomas', 'Knight', '', '8303 Quarry Road ', '', 'Manassas', 'VA', '20110', '703-367-9456', '703-335-6100 Fax', 'tjk131961@yahoo.com '), (715, 715, 'Mr', 'Mike', 'McGaw', '', 'PO Box 26268', 'Send Cert copy Here', 'Fairview Park', 'OH', '44126', '216-521-3490', '216-433-8300 Fax ', 'mike@mcgawrech.com'), (716, 716, 'Mr', 'Mike', 'McGaw', '', 'PO Box 26268', 'Send Cert copy Here', 'Fairview Park', 'OH', '44126', '216-521-3490', '216-521-3491 Fax ', 'mike@mcgawrech.com'), (717, 717, 'Mr', 'Paul', 'Pridemore', '', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '216-839-7213', '216-839-7213 Fax ', 'richard.paponetti@basf.com'), (718, 718, 'Mr', 'Mike', 'Ohanian', 'Formally(Barr Engineering)', '2271 Scranton Road ', '', 'Cleveland', 'OH', '44113', '216-400-6230', '216-400-6238 Fax', 'mohanian@barreng.com'), (719, 719, 'Mr', 'Greg', 'Staresinic', '', '629 E. Butler Road ', '', 'Butler', 'PA', '16002', '724-316-6518', '724-431-0630 Fax', 'dmatkoskey@nasw.biz'), (720, 720, 'Mr', 'Mark ', 'Clossman', '', '720 Greecrest Drive', '', 'Westerville', 'OH', '43081-4902', '614-895-1400', '614-895-1171 Fax', ''), (721, 721, 'Mr', 'Ron', 'Spicer', '', 'PO Box 859', '', 'State College', 'PA', '16801', '(814) 238-2471', '814-238-2914 Fax', 'rspicer@centreconcrete.com '), (722, 722, 'Mr', 'Doug', 'Lobdell', '', '400 E. William Street', '', 'Delaware', 'OH', '43015', '740-833-8333', '740-833-8097 Fax', 'doug.lobell@dot.state.oh.us'), (723, 723, 'Mr', 'Eric', 'Sperber', '', '6205 Schumacher Drive ', '', 'West Chester', 'OH', '45069', '513-777-9890 ', '513-777-9070 Fax ', 'esperber@altwitzig.com'), (724, 724, 'Mr', 'Cathy', 'Mock ', 'Attn: Oregon Field Basin ', '1501 Stampede Avenue', '', 'Cody', 'WY', '82414', '307-272-4561 ', '713-513-4161 Fax', 'abchristman@marathonoil.com'), (725, 725, 'Mr', 'Rebecca', 'Walker', '', '4411 The 25 Way NE, Ste 350', '', 'Albuquerque', 'NM', '87109', '505-449-6570', '505-345-8303 Rebecca', 'rebecca.a.walker@boeing.com '), (726, 726, 'Mr', 'Pete', 'Douglas', '', '632 Hunt Valley Road', '', 'New Kensington', 'PA', '15068', '724-335-6000', '724-355-3834 Fax', ''), (727, 727, 'Mr', 'John', 'Barbati', '', '301 City county Bldg', '414 Grant Street', 'Pittsburgh', 'PA', '15219', '412-255-6789', '412-255-2226 Fax', ''), (728, 728, 'Mr', 'Paul', 'Musante', '', '7845 Chestnut Ridge Road ', '', 'Hubbard', 'OH', '44425-9702', '330-534-5017 x 260 P', '330-534-0197 Fax', 'chris_mariani@warfab.com'), (729, 729, 'Mr', 'Doug', 'Lobdell', '', '4310 East 5th Ave', '', 'Columbus', 'OH', '43219', '740-833-8333', '', ''), (730, 730, 'Mr', 'Pam', '', '', '1305 Oberlin Avenue', '', 'Lorain', 'OH', '44052', '440-245-6826', '440-244-0414 Fax', 'andrew.watkins@usmail.becotek.com'), (731, 731, 'Mr', 'Joe', 'Oester', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'j_oester@brayman.com'), (732, 732, 'Mr', 'Deb', 'Parus', '', '50500 Design Lane', '', 'Shelby Twp', 'MI', '48315', '586-731-1628', '586-731-7007', 'jniedz@stressconindustries.com'), (733, 733, 'Mr', 'Kevin', 'Vander Wilp', '', '1420 Front Avenue NW', '', 'Grand Rapids', 'MI', '49504', '616-464-1800', '616-464-1189 Fax', 'morlank@michigan.gov'), (734, 734, 'Mr', 'Dave', 'Gonso', '', 'PO Box 1047', '', 'Findlay', 'OH', '45839-1047', '419-424-8377 Dave', '(419) 424-8300 Fax', 'nate.bair@ads-pipe.com'), (735, 735, 'Mr', 'Kevin ', 'Vander Wilp', '', '2660 Leonard Street NE', '', 'Grand Rapids', 'MI', '49505', '616-464-1800', '616-464-1189 FAX', 'MorlanK@michigan.gov'), (736, 736, 'Mr', 'Amadeo', 'Piccinini', '', '30066 Little Mack', '', 'Roseville', 'MI', '48066', '586-294-6430', '586-294-6912 Fax', '1bagleason@gmail.com'), (737, 737, 'Mr', 'Chip', 'Toth', '', '6480 Grand Haven Road', '', 'Muskegon', 'MI', '49441', '(231) 798-4127', '(231) 798-1383 Fax', 'jerickson@soilsandstructures.com'), (738, 738, 'Mr', 'Jon', 'Meddaugh', '', '2302 South M-18', '', 'Beaverton', 'MI', '48612', '231-943-5503', '231-943-5534 Fax', 'jmeddaugh@teamelmers.com'), (739, 739, 'Mr', 'Tim', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', ''), (740, 740, 'Mr', 'Deb', 'Parus', '', '50500 Design Lane', '', 'Shelby Twp', 'MI', '48315', '586-731-1628', '586-731-7007 Fax', ''), (741, 741, 'Mr', 'Andy', 'East', '', '5119 Catlett Road', '', 'Midland', 'VA', '22728', '540-439-3266 ', '540-439-1232 Fax', 'aeast@smithmidland.com'), (742, 742, 'Mr', 'Michele ', 'Scales', '', '3400 Southwest Blvd', '', 'Grove City', 'OH', '43123', '614-875-8200', '614-875-1175', 'jnorth@cjmahan.com'), (743, 743, 'Mr', 'Brian ', 'Janas', '', '34600 Solon Road', '', 'Solon', 'OH', '44139', '440-248-0100', '440-248-1001 Fax', 'bjanas@erico.com'), (744, 744, 'Mr', 'Dave ', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax', 'gtcinfo@gtcpgh.com'), (745, 745, 'Mr', 'Carolyn', 'Lieb', '', '234 Merlo Road', '', 'Mineral Point', 'PA', '15942', '814-322-1545', '814-322-1549 Fax', ''), (746, 746, 'Mr', 'Kinga', 'Blum', '', 'PO Box 385', '', 'Meadow Lands', 'PA', '15347', '724-222-3855', '724-250-7450 Fax ', 'mingocreek@comcast.net'), (747, 747, 'Mr', 'Rob', 'Rouse', '', '1040 Perry Highway ', '', 'Mercer', 'PA', '16137', '724-372-3897', '724-748-3599 Fax', ''), (748, 748, 'Mr', 'Tony', 'Daughtry', '', '6889 Peachtree Industral Blvd', 'Suite Q', 'Norcross ', 'GA', '30092', '404-474-8874', 'No Fax Just E-mail', 'tony.daughtry@genesistechnologyusa.com'), (749, 749, 'Mr', 'Craig ', 'Schlauch', 'Attn: Accounts Payable', '6065 Parkland Blvd', '', 'Cleveland', 'OH', '44124', '330-297-1225 ', '330-297-1373 Fax', 'rroliff@generalaluminum.com'), (750, 750, 'Mr', 'Kevin', 'Samms', '', '1504 N. Gettysburg Avenue', '', 'Dayton', 'OH', '45417-9518', '800-666-6706', '(937) 492-8434 Fax', 'kevin.samms@hanson.com'), (751, 751, 'Mr', 'Bonnie', 'Blaeininger', '', 'PO Box 609', '', 'Sidney', 'OH', '45365', '937-492-4134 x 1175 ', '937-498-1883 Fax ', 'mbalazs@rossal.com'), (752, 752, 'Mr', 'Scott', 'Marshall', '', '886 McKinley Ave.', '', 'Columbus ', 'OH', '43222', '614-989-2284', '614-228-7065 Fax', 'smm@kokosing.biz'), (753, 753, 'Mr', 'Joey ', 'Deuer', '', '3434 Encrete Lane', '', 'Moraine', 'OH', '45439', '937-299-1213', '937-299-0120 Fax', 'tuftug@aol.com'), (754, 754, 'Mr', 'Todd ', 'Klockner', '', '6350 Presidental Gateway', '', 'Columbus', 'OH', '43231', '614-823-4949', '614-823-4990 Fax', 'todd@resourceinternational.com'), (755, 755, 'Mr', 'Michael ', 'Clinton', '', '5400 Limestone Road', '', 'Wilmington', 'DE', '19808', '302-239-6634', '302-239-8485 Fax', 'mclinton@duffnet.com'), (756, 756, 'Mr', 'Krista', 'Settlage', '', '1717 North McCullough St.', '', 'Lima', 'OH', '45801', '419-999-6907', '419-222-6877 Fax', 'Kris. Settlage@dot.state.oh.us'), (757, 757, 'Mr', 'Darin', 'Shick', '', '166 Windy Hill Lane', '', 'Winchester', 'VA', '22602', '540-667-3750', '540-667-3730 Fax', 'tprice@ecslimited.com'), (758, 758, 'Mr', 'Kurtis', 'Parker', 'Kurtis Parker', 'PO Box 589', '', 'Lindsay', 'OK', '73052', '405-919-3626', '', ''), (759, 759, 'Mr', 'Milton', 'Wills', 'Attn: Milton Wills', '412 Montemar Avenue', '', 'Catonsville', 'MD', '21228', '410-788-4331', '410-788-4331Fax Also', ''), (760, 760, 'Mr', 'Gary ', 'Orr', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (761, 761, 'Mr', 'Deb', 'Parus', '', '50500 Design Lane', '', 'Shelby Twp', 'MI', '48315', '586-731-1628/269-998', '586-731-7007 Fax', ''), (762, 762, 'Mr', 'Becky', 'Pandice', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (763, 763, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (764, 764, 'Mr', 'Doug ', 'Harris', '', '1409 Monravia Street', '', 'New Castle', 'PA', '16101', '724-658-5656', '724-658-5659 Fax', 'dharris@cbsconcrete.com'), (765, 765, 'Mr', 'David', 'Welsh', '', 'PO Box 3369', 'Rt. 40 Narrows Park ', 'La Vale', 'MD', '21502', '(301) 724-2000', '(301) 724-6416 Fax', 'J.Steiner@atlanticbbn.net'), (766, 766, 'Mr', 'Sravan', 'Krovidi', '', '14424 Albemarle Point Place, Suite 115', '', 'Chantilly', 'VA', '20151', '703-488-3700', '703-488-3701 Fax', 'Sravan.Krovidi@amec.com'), (767, 767, 'Mr', 'Bill', 'Chilli', '', 'PO Box 97', '', 'Wampum', 'PA', '16157', '724-535-4374', '724-535-8166 FAX', 'bchilli@zoominternet.net'), (768, 768, 'Mr', 'Mike ', 'Fulcomer', '', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '540-854-2145', '540-854-2146 Fax', 'mike.fulcomer@aerojet.com'), (769, 769, 'Mr', 'Mike', 'Fulcomer', '', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '540-854-2145', '540-854-2146 Fax', 'mike.fulcomer@aerojet.com'), (770, 770, 'Mr', 'Mark', 'Hagen', '', '8000 Beechcraft Avenue', '', 'Gaithersburg', 'MD', '20879', '301-948-4450', '301-948-8273 Fax ', 'mmiller@concretegeneral.com'), (771, 771, 'Mr', 'Bill', 'Tantlinger', '', '632 Hunt Valley Road ', '', 'New Kensington', 'PA', '15068', '724-335-6000', '724-335-3834 Fax ', ''), (772, 772, 'Mr', 'Dave ', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax', 'gtcinfo@gtcpgh.com'), (773, 773, 'Mr', 'Lisa', '', '', '1933 Babcock Blvd.', '', 'Pittsburgh', 'PA', '15209', '412-589-5433', '412-821-2554 Fax', 'pittsburghmobileconcrete@hotmail.com'), (774, 774, 'Mr', 'Joe', 'Dimiceli', '', '9303 Center Street ', '', 'Manassas', 'VA', '20110-5547', '703-366-3000', '703-366-3400 Fax ', ''), (775, 775, 'Mr', 'Les', 'Schrieber', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', 'jeff@ebaengineering.com '), (776, 776, 'Mr', 'Josh', 'Evans', '', '1805 Horseshoe Pike', '', 'Honeybrook', 'Pa', '19344', '610-269-4685 Josh Ev', '610-942-2629 fax', ''), (777, 777, 'Mr', 'Mike ', 'Fulcomer', '', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '540-854-2145', '540-854-2146', 'mike.fulcomer@aerojet.com'), (778, 778, 'Mr', 'Mike ', 'Fulcomer', '', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '540-854-2145', '540-854-2146', 'mike.fulcomer@aerojet.com'), (779, 779, 'Mr', 'Mike', 'Fulcomer', '', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '540-854-2145', '540-854-2146', 'mike.fulcomer@aerojet.com'), (780, 780, 'Mr', 'Jim', 'Fichtelwan ', ' Formally Essroc ', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-297-4366', '610-867-3785 Fax ', 'mike.hannah@essroc.com'), (781, 781, 'Mr', 'Robert ', 'Fransisco', 'Division of Aracoma Company', 'PO Box 2251', '', 'Parkersburg', 'WV', '26102', '304-485-1708', '304-485-1709 FAX', ''), (782, 782, 'Mr', 'Nick', 'Buchan', 'Attn: Nick Buchan', 'PO Box 93', 'Route 22 West', 'Blairsville', 'PA', '15717', '724-459-5950 ', '724-459-9151 Fax', 'bv_qcmanger@acmiller.com'), (783, 783, 'Mr', 'Kerri', 'Allgauer', '', '3445-A Box Hill Corp Center Drive', ' ', 'Abingdon', 'MD', '21009', '410-515-9446', '410-792-7395 fax', 'jrisso@mragta.com'), (784, 784, 'Mr', 'Robert', 'Hiss', '', '4960 Vulcan Ave.', 'Suite C', 'Columbus', 'OH', '43228', '(614) 876-8000 ext 2', '(614) 876-0548 Fax', 'bob.hiss@psiusa.com'), (785, 785, 'Mr', 'Mary', 'Petrilli', '', '92 Otis Street', '', 'Rome', 'NY', '13441', '315-334-7610', '315-334-7660', ''), (786, 786, 'Mr', 'Rom', ' Graham', 'Eastern Region', '3576 West 4th Street', '', 'Williamsport', 'PA', '17701', '570-326-9031 ', '570-322-2183 Fax', ''), (787, 787, 'Mr', 'Andrew', 'Kohler ', '', '32 Griffith Way ', 'Dutchess County Airport', 'Wappingers Falls', 'NY', '12590', '845-463-6500 x 134 ', '845-463-5687 Fax ', ''), (788, 788, 'Mr', 'Jeff', 'Obermeyer', '', '597 85th Avenue', '', 'Oakland', 'CA', '94621', '510-562-2953', '510-562-9757 Fax ', 'Jeff@WCWR.com'), (789, 789, 'Mr', 'Mark', 'Clossman', '', '720 Greencrest Drive ', '', 'Westerville', 'OH', '43081-4902', '614-895-1400', '614-895-1171 Fax ', ''), (790, 790, 'Mr', 'Zack ', 'Bright', '', '9090 Junction Drive', 'Suite 9', 'Annapolis Junction', 'MD', '20701', '410-792-9446', '410-792-7395 FAX', ''), (791, 791, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0040', '614-848-6712 Fax', 'srobinson@dlz.com'), (792, 792, 'Mr', 'Paul', 'McGee', '', 'One McCandless Avenue', '', 'Pittsburgh', 'PA', '15201-2631', '412-782-7330', '412-782-7308 Fax', ''), (793, 793, 'Mr', 'Dave ', 'Tappendorf', '', '501 Mercury Drive', '', 'Champange', 'IL', '61822', '217-359-2128', '', ''), (794, 794, 'Mr', 'Mike', 'Stiger', '', '17793 Street, Highway 231', '', 'Nevada', 'OH', '44849', '740-482-2313', '740-482-2895 Fax ', ''), (795, 795, 'Mr', 'Mark', 'Salveter', '', '5599 Webster Street ', '', 'Dayton', 'OH', '45404', '937-898-1200 ', '937-898-1230 Fax', 'Jean.JanekAPSIUSA.com'), (796, 796, 'Mr', 'Scott', 'Steiner', '', '2663 Eaton Rapids Road', '', 'Plymouth', 'MI', '48911', '517-887-9181', '517-887-2666 Fax', 'neumann@SME-USA.COM'), (797, 797, 'Mr', 'Mark ', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '804-224-6870', '814-766-0234 Fax', 'mmoyer@nesl.com '), (798, 798, 'Mr', 'Steve ', 'Blankenship', '', '50500 Design Lane', '', 'Shelby Twp', 'MI', '48315', '586-731-1628', '586-731-7007 Fax', 'bspycher@stress-con.com'), (799, 799, 'Mr', 'Judy', 'Hartman', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303-0824', '248-454-6880 Judy', '248-454-6345 Fax', 'selliott@hrc-engr.com'), (800, 800, 'Mr', 'Brian', 'Dill', '', '200 Keystone Drive', '', 'Telford ', 'PA', '18696', '215-257-2255', '215-453-5813 Fax', 'brian.dill@oldcastle.com'), (801, 801, 'Mr', 'Tim', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '616-456-5469', '616-456-5784', ''), (802, 802, 'Mr', 'Chuck', 'Brumbaugh', '', '1280 Business Park Drive', '', 'Traverse City', 'MI', '49686', '231-933-5110', '231-941-4603 Fax', 'cdbrumbaugh@goslingczubak.com'), (803, 803, 'Mr', 'Tim', 'Graham', 'Eastern Region', '3576 West 4th Street', '', 'Williamsport', 'PA', '17701', '570-326-9031', '570-322-2183 Fax', ''), (804, 804, 'Mr', 'Rob', 'Rouse', '', '1040 Perry Highway ', '', 'Mercer', 'PA', '16137', '724-372-3897', '724-748-3599 Fax', 'jpthewes@verizon.net'), (805, 805, 'Mr', 'Larry', 'Kitko', '', '1750 W. College Street', '', 'State College', 'PA', '16801', '814-238-5071', '814-238-0131 Fax', ''), (806, 806, 'Mr', 'Larry', 'Roels', 'Attn: Kiana', '1332 N. Miller Street', '', 'Anaheim', 'CA', '21076', '714-891-9080', '714-897-0163 Fax', 'lroels@structural.net'), (807, 807, 'Mr', 'Jack', 'Bielata', '', '100 Blackstone Ave.', '', 'Jamestown', 'NY', '14701', '(716) 665-5410', '(716) 665-5152 Fax', 'douglash@bbei.com'), (808, 808, 'Mr', 'Ted', 'Webster', '', '350 Golden Oak Parkway', '', 'Oakwood Village', 'OH', '44146', '440-439-5821 ', '440-439-1544 Fax', 'ted@geotechservicesinc.com'), (809, 809, 'Mr', 'Mark ', 'Lunn Jr', '', '100 Clearfield Road', '', 'Cabot', 'PA', '16023-9521', '724-352-4471', '724-352-3590 fax', 'scrawford@armstrongcement.com'), (810, 810, 'Mr', 'Pam', 'Barnes', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', ''), (811, 811, 'Mr', 'Roy', 'Painter', '', 'Engineering District 12-0', 'PO Box 69180', 'Harrisburg', 'PA', '17106', '(717) 787-1037', '724-439-7434 Fax', 'tlappa@pa.gov'), (812, 812, 'Mr', 'Scott', 'Rodgers', '', '864 Croft Road', '', 'Greensburg ', 'PA', '15601', '724-668-8000', '724-668-2272 Fax', ''), (813, 813, 'Mr', 'Brian', 'Miller', '', '864 Croft Road ', '', 'Greensburg', 'PA', '15601', '724-668-8000', '724-668-2272 Fax ', ''), (814, 814, 'Mr', 'Bill', 'Johnston', '', '4155-A Lisa Drive ', '', 'Tipp City', 'OH', '45371', '937-669-4500', '937-669-4566 Fax ', 'bill.johnston@mvmtc.com'), (815, 815, 'Mr', 'Steve', 'Grimaldi', '', '103 Coraopolis Road', '', 'Coraopolis', 'PA', '15108', '412-771-5340', '412-771-5336 Fax', 'sgrimaldi@gts-labs.com'), (816, 816, 'Mr', 'Ryan', 'Mcneel', '', '1120 William Flynn Hwy.', '', 'Glenshaw', 'PA', '15116', '412-486-1600 ', '412-781-7840 Fax', ''), (817, 817, 'Mr', 'Mark', 'Campbell ', '', '5600 Forward Avenue', '', 'Pittsburgh', 'PA', '15217', '412-475-5450 Bob\'s c', '724-438-2634 Fax', ''), (818, 818, 'Mr', 'David', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax', 'gtcinfo@gtcpgh.com'), (819, 819, 'Mr', 'Brad', 'Croyts', '', '632 Hunt Valley Road', '', 'New Kensington', 'PA', '', '724-335-6000', '', ''), (820, 820, 'Mr', 'Steve', 'Kent', 'Attn: Steven Kent', '7070 Highview Dr.', '', 'Coal Township', 'PA', '77866', '570-797-2200', '', 'sd4kent@gmail.com'), (821, 821, 'Mr', 'Tim', 'Quick', '', 'PO Box 155', '', 'State College', 'Pa', '16801', 'Tim Quick', '814-238-0131', 'DDavis@hriinc.com'), (822, 822, 'Mr', 'Bill', 'Pedorski', 'c/o VDR 100948', '5 Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-867-3785', '304-485-1882 - Fax', 'jsantone@essrocreadymix.com'), (823, 823, 'Mr', 'Brian', 'Janas', '', '34600 Solon Road', '', 'Solon', 'OH', '44139', '440-248-0100 ', '440-248-1001 Fax', 'bjanas@erico.com'), (824, 824, 'Mr', 'Don', 'McQueen', '', 'PO Box 968', 'Mail Drop 1025', 'Richland', 'WA', '99354', '509-377-8603', '509-377-8219 Fax', 'mjcharney@energy-northwest.com'), (825, 825, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (826, 826, 'Mr', 'Kyle ', 'Butts', '', 'PO Box 2670', '', 'Catoosa ', 'OK', '74015-2670', '918-582-1807', '918-582-4349 Fax', ''), (827, 827, 'Mr', 'Nate', 'Regier', '', 'PO Box 2670', '', 'Catoosa', 'OK', '74015-2670', '918-582-1807', '918-582-4349 Fax', 'nate@hollowaywirerope.com'), (828, 828, 'Mr', 'Nate', 'Regier', '', 'PO Box 2670', '', 'Catoosa ', 'OK', '74015-2670', '918-582-1807', '918-582-4349 Fax', ''), (829, 829, 'Mr', 'Nate', 'Regier', '', 'PO Box 2670', '', 'Catoosa', 'OK', '74015-2670', '918-582-1807', '918-582-4349 Fax', 'nate@hollowaywirerope.com'), (830, 830, 'Mr', 'Ron', 'Toth', '', '351 Cypress Lane', '', 'El Cajon', 'CA', '92020', '619-440-8181', '619-440-8653 fax', ''), (831, 831, 'Mr', 'Daniel', 'Farabaugh', '', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '412-751-4001', '412-751-4003 Fax ', 'fetlabs@aol.com'), (832, 832, 'Mr', 'Alvin', 'Banner', '', '125 Westpark Road', '', 'Centerville', 'OH', '45459', '(937) 428-6150', '(937) 428-6154 Fax', 'billrobertson@cbceng.com'), (833, 833, 'Mr', 'Hal', 'Richard', '(Hanson Pipe & Precast)', '1500 Haul Road', '', 'Columbus', 'OH', '43207', '(614) 445-3830', '(614) 445-3839 Fax', ' '), (834, 834, 'Mr', 'Kevin', 'Reichert', '', 'PO Box 44', ' ', 'Wapakoneta', 'OH', '45895', '419-738-1447', '(419) 738-7670 Fax', 'rknapp@ctleng.com'), (835, 835, 'Mr', 'Dave', 'Backstrom', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorourke@geotechnics.net'), (836, 836, 'Mr', 'Dave ', 'Backstrom', '', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorourke@geotechnics.net'), (837, 837, 'Mr', 'Kim', 'Meadows', '', '5088 Washington Street W', '', 'Charleston', 'WV', '25313', '304-776-7473', '304-776-6426 Fax', 'hwoods@elrobinson.com'), (838, 838, 'Mr', 'Brian', 'Montarti', '', '5 Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '304-485-2191 x303 Ma', '610-867-3785 Fax ', 'jerry.spence@essroc.com'), (839, 839, 'Mr', 'Matt', 'Farley', '', 'PO Box 2438', '', 'Beckley', 'WV', '25802', '304-252-6575 ', '304-252-9345 Fax', ''), (840, 840, 'Mr', 'Jackie', 'Lycans', 'Jackie Lycans', '87 Grose Lane', '', 'Summersville', 'WV', '26651', '304-872-8110', '304-872-7110 Fax', 'info@mountainstatebridge.com'), (841, 841, 'Mr', 'Ken', 'Meffe', '', '7925 Empire Parkway', '', 'Macedonia', 'OH', '44056-2144', '(330) 467-7890', '(330) 467-7984 Fax', ''), (842, 842, 'Mr', 'Ed', 'Sullivan', '', 'PO Box 4039', '', 'Sciotoville', 'OH', '45662', '(740) 776-3238', '(740) 776-6553 Fax', 'sullivanel@koppers.com'), (843, 843, 'Mr', 'Ed', 'Sullivan', '', 'PO Box 4039', '', 'Sciotoville', 'OH', '45662', '(740) 776-3238', '(740) 776-6553 Fax', 'sullivanel@koppers.com'), (844, 844, 'Mr', 'Tim ', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (845, 845, 'Mr', 'Tom', 'Sortman', '', 'PO Box 51', '', 'Dayton', 'OH', '45401', '937-236-8805 x 219 M', '937-237- 9947 Fax', 'tsortman@bowser-morner.com'), (846, 846, 'Mr', 'Ana', 'Manz', 'Accounts Payable', '901 Woody Hayes Dr.', '2010 Blankenship Hall', 'Columbus', 'OH', '43210', '614-292-2771', '614-292-3780 Fax', 'smith2629@osu.edu'), (847, 847, 'Mr', 'Adam ', 'Zeeman', '', '101 Seventh Street', '', 'Winchester', 'KY', '40391', '(859) 744-9481', '(859) 744-9571 Fax', 'ckelly@gateprecast.com'), (848, 848, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026', '614-876-1700 Ext. 3', '614-876-1899 Fax', ''), (849, 849, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (850, 850, 'Mr', 'Jack ', 'Deitz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (851, 851, 'Mr', 'Dale ', 'Crowl', '', '5500 Transportation Blvd.', '', 'Garfield Heights', 'OH', '44125', 'Office (216) 584-217', '(216) 584-2272 Fax', 'dale.crowl@dot.state.oh.us'), (852, 852, 'Mr', 'Beth', 'Taylor', '', '51331 W.Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248)486-5100', '(248)486-5050', 'tmarsik@cticompanies.com'), (853, 853, 'Mr', 'Kim ', 'Ruckman', 'Formally-Soil Nail Launcher, Inc.', 'PO Box 4709', '', 'Grand Junction ', 'CO', '81502', '970-210-6170', '970-245-7737 Fax', ''), (854, 854, 'Mr', 'Eric ', 'Hessen', 'Formally-Soil Nail Launcher, Inc.', '3751 Midway Road', '', 'Hermantown', 'MN', '55810', '970-210-6170', '970-245-7737 Fax', 'jr@gsi.com'), (855, 855, 'Mr', 'Kim', 'Ruckman', 'Formally-Soil Nail Launcher, Inc.', 'PO Box 4709', '', 'Grand Junction', 'CO', '81502', '970-210-6170', '970-245-7737 Fax', 'nate@soilnaillauncher.com'), (856, 856, 'Mr', 'Shayne', 'Brashear', '', 'PO Box 54846', '', 'Lexington', 'KY', '40555-4846', '859-309-6021', '1-888-792-3121 fax', ''), (857, 857, 'Mr', 'George', 'Clark', '', '4004 Wesbrook Mall', '', 'Vancouver BC', 'CA', 'V6T 2A3', '604-222-1047', '604-222-1074 Fax', 'gsclark@triumf.ca'), (858, 858, 'Mr', 'Todd', 'McKinniss', '', '1500 Haul Road', '', 'Columbus', 'OH', '43207', '614-445-3830', '614-445-3839', ''), (859, 859, 'Mr', 'Tom', 'Williams', '', '21505 Greenoak Way', '', 'Sterling', 'VA', '20166', '(703) 421-4000', '(703) 421-8000', 'twilliams@gctonline.net'), (860, 860, 'Mr', 'Joe ', 'Brickner', 'Attn: Linda Price / Renee Frey', '130 Derry Court', '', 'York', 'PA', '17406', '717-764-7700', '717-764-4129 Fax', 'jbrickner@archtest.com'), (861, 861, 'Mr', 'William', 'Mehalick', '', '1192 Perry Valley Road', '', 'Liverpool', 'PA', '17045', '717-444-3043', '717-444-9995 Fax', 'bstlabs@pa.net'), (862, 862, 'Mr', 'John', 'Sakson ', '', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '(412) 262-2022', '412-262-1979 Fax', 'jsakson@jeffzell.com'), (863, 863, 'Mr', 'Dilawar', 'Alvi', '', '1031 Fourth Avenue', '', 'Coraopolis', 'PA', '15108', '412-262-2022', '412-262-1979 Fax', 'jsakson@jeffzell.com'), (864, 864, 'Mr', 'Brian', 'Montarti', '', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-297-4366', '610-867-3785 Fax ', 'chris.wright@essroc.com'), (865, 865, 'Mr', 'Bryan', 'Struble', '', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1329', '614-887-4027 Fax ', 'prasad.kudlapur@dot.state.oh.us'), (866, 866, 'Mr', 'Ahmed', 'Ali', '', '13500 Reeck Road', '', 'Southgate', 'MI', '48195', '734-759-1600', '734-282-6556 Fax', ''), (867, 867, 'Mr', 'Julius', 'Lawerence ', 'Accounts Payable - 1948WCB', 'PO Box 44440', '', 'Detroit', 'MI', '48244-0440', '(313) 897-1117', '(313) 897-1090 Fax', ''), (868, 868, 'Mr', 'Dave', 'Litzner', '', '14113 M-28', '', 'Newberry', 'MI', '49868', '(906) 293-5168', '(906) 293-3331 Fax', 'litzned1@michigan.gov'), (869, 869, 'Mr', 'David', 'Ashenfelter', '', '271 W. McCoy Road', 'PO Box 618', 'Gaylord', 'MI', '49735', '989- 732-3584', '989- 732-6391 Fax', 'djames@wadetrim.com'), (870, 870, 'Mr', 'Josh', 'Gollschall', '', '1202 N. Mitchell', '', 'Cadillac', 'MI', '49601', '231-468-3456', '231-846-0986 Fax', 'jgottschall@preinnewhof.com'), (871, 871, 'Mr', 'Josh', 'Gottschall', '', '1 Madison Avenue', '', 'Cadillac', 'MI', '49601', '(231) 775-7755', '(231) 775-3135 Fax', 'josh.gottschall@wilcox.usa'), (872, 872, 'Mr', 'Rob', 'Arnot', '', '8265 White Lake Road', '', 'White Lake', 'MI', '48386', '(248) 620-7400 ', '(248) 620-7402 Fax', 'mwojtalewicz@mackconcrete.com'), (873, 873, 'Mr', 'Zeerak', 'Paydawy', ' ', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '248-324-5372', '734-524-0927 Fax', 'zpaydawy@nthconsultants.com'), (874, 874, 'Mr', 'Chuck', 'Gemayel', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-0629 Fax', 'graves@sme-usa.com'), (875, 875, 'Mr', 'Patty', 'Swiss', '', '607 East Lake Street', '', 'Harbor Springs', 'MI', '49740', '(231) 526-2119', '(231) 526-7257 Fax', 'benchmark607@gmail.com'), (876, 876, 'Mr', 'Russ ', 'Bennett', '', '218 E. Morley Drive ', '', 'Saginaw', 'MI', '48601', '989- 755-6777', '989-755-6775 Fax', ''), (877, 877, 'Mr', 'Chad', 'Richards', '', '9333 Dearborn St.', '', 'Detroit', 'MI', '48209', '(313) 849-4571', '(313) 849-4555 Fax', 'crrichard@vcsmc.com '), (878, 878, 'Mr', 'Terry ', 'Daniels', 'AKA : Structural Technologies, LLC', '7455 New Ridge Road', 'Suite T', 'Hanover', 'MD', '21076', '800-899-1016', '410-850-4111 Fax', 'rheitzmann@structural.net '), (879, 879, 'Mr', 'Mike', 'Ash ', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (880, 880, 'Mr', 'Sean', 'Pesz', '', '1 Little Harbor Road ', '', 'Woods Hole', 'MA', '02543-1099', '508-457-3241', '508-457-3400 Fax ', 'Sean.O.Pesz2@USCG.MIL'), (881, 881, 'Mr', 'Jay', 'Matthews', '', '3045 CR 401', '', 'Alvarado', 'TX', '76009', '817-761-2303', '817-761-2393 Fax', 'jay.matthews@halliburton.com'), (882, 882, 'Mr', 'Chuck', 'Green', '100 East Highway 7', '', '', 'Duncan', 'OK', '73536', '580-656-0128', '580-251-3607-fax', 'chuck.green@halliburton.com'), (883, 883, 'Mr', 'Jerry', 'Pafquariell', '', 'One University Place ', '', 'Chester', 'PA', '19013-5792', '610-499-4089', '610-499-4461 Fax ', 'Vlbrown@widener.edu'), (884, 884, 'Mr', 'Mike', 'Little', 'ATTN: Bob Fulton', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', 'jason.maffeo@trumbullcorp.com'), (885, 885, 'Mr', 'Joan', 'Orr', '', '201 Iron Valley Drive', '', 'Lebanon', 'PA', '17042', '717-279-7409 Opt 3', '717-279-7411 Fax', 'randypeiffer@yahoo.com'), (886, 886, 'Mr', 'Chris ', 'Howat', '', 'PO Box 430', '', 'Woodstown', 'NJ', '8098', '856-769-8244', '856-769-5629', 'chowat@repierson.com'), (887, 887, 'Mr', 'Jerome', 'Guy', '', '3212 Pike Street', '', 'Harrisburg', 'PA', '17111', '717-561-1623', '717-561-1623 Fax Als', 'jguy@hcea.com'), (888, 888, 'Mr', 'Todd', 'Sack', '', '2400 Market Street, Suite 1', '', 'Philadelphia', 'PA', '19103-3031', '215-561-5100', '215-561-5101 Fax ', 'tsack@bresslergroup.com'), (889, 889, 'Mr', 'Brian', 'Hollis', '', 'PO Box HM 1190', 'Hamilton HM EX', 'Bermuda', '', '', '441-232-2000', '441-236-2978 Fax', 'Brian@sal.bm'), (890, 890, 'Mr', 'Susan', 'Bawn', '', '3 Meadow Lane', 'Devonshire DV08', 'Bermuda', '', '', '441-236-4373', '441-236-2544 Fax ', 'SBawn@correia.bm'), (891, 891, 'Mr', 'Lisa', 'Amba', '', '1150 Aviation Place', '', 'San Fernando', 'CA', '91340', '818-221-6200 Lisa', '818-837-8062 Fax', 'hparkhani@pharmavite.net'), (892, 892, 'Mr', 'Robert', 'St. John', '', '6955 San Tomas Road ', 'Baltimore Headquarters', 'Elkridge', 'MD', '21075', '410-365-5065 Bobs Ce', '410-850-4111 Fax', ''), (893, 893, 'Mr', 'Jesus ', 'Cado D.', 'Department of Purchasing', 'Manuel Avila Camacho # 5256 Piso 7', 'Mocambo, Boca del rio', 'Veracruz', 'Mexico', '94298', '52 (833-219-3990ext ', '', 'jesuscado@saam.com.mx'), (894, 894, 'Mr', 'Al', 'Sumption ', '', '4055 S. Saginaw Road', '', 'Midland', 'MI', '48640', '989-496-2440', '989-496-2465 Fax', 'Asumption@geraceconstruction.com '), (895, 895, 'Mr', 'Steve', 'Williamson', '', 'PO Box 429', '', 'Dorton', 'KY', '41520', '606-639-4484', '606-639-4482 Fax ', 's.williamson@wrightconcrete.com'), (896, 896, 'Mr', 'Kathy', 'Mehaffey', '', '190 Dry Branch Road ', '', 'Charleston', 'WV', '25306', '304-558-9857', '304-558-0253 Fax ', ''), (897, 897, 'Mr', 'Jay ', 'Marsh', '', '1 Moore Avenue', '', 'Buckhannon', 'WV', '26201', '304-472-7140', '304-472-6239 Fax', ''), (898, 898, 'Mr', 'Jay', 'Whitt', 'c/o VDR 100948', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-837-4366', '610-867-3785 Fax', 'Accounting.Services@essroc.com'), (899, 899, 'Mr', 'Michael ', 'Mazzoli', '', '4960 Vulcan Avenue', 'Suite C', 'Columbus', 'OH', '43228', '614-876-8000 office', '614-876-0548 Fax', 'mike.mazzoli@psiusa.com'), (900, 900, 'Mr', 'Frank', 'Teamor', '', 'PO Box 272', '1263 Chartiers Ave.', 'McKees Rocks', 'PA', '15136', '(412) 331-1630', '(412) 331-8668 Fax', 'frank_bryan_tech@yahoo.com'), (901, 901, 'Mr', 'John', 'McCarthy', '', '500 Bursca Drive Suite 506', '', 'Bridgeville ', 'PA', '15017', '412-206-1470', '412-221-3131 Fax', ''), (902, 902, 'Mr', 'Curtis', 'Beverage', '', '5600 Forward Avenue', '', 'Pittsburgh ', 'PA', '15217', '412-475-5450 Bob\'s C', '724-438-2634 Fax', 'cbeveridge@walshgroup.com '), (903, 903, 'Mr', 'Dan', 'Ulrich', '', '2940 Parkview Drive', '', 'Petoskey', 'MI', '49770', '(231) 348-1180', '(231) 348-1185 Fax', 'nilsl@ndgconsulting.com'), (904, 904, 'Mr', 'Zeerak', 'Paydawy', ' ', '11675 Belden Court', '', 'Lovonia', 'MI', '48150', '248-324-5372', '734-524-0927 Fax', 'zpaydawy@nthconsultants.com'), (905, 905, 'Mr', 'Zeerak', 'Paydawy', '', '11675 Belden Court', '', 'Lovonia', 'MI', '48150', '248-324-5372', '734-524-0927 Fax', 'zpaydawy@nthconsultants.com'), (906, 906, 'Mr', 'Casey', 'Grzybowsko', '', '2780 Brenner Pike', '', 'Bellefonte', 'PA', '16823', '724-378-3900', '724-378-3940 Fax', 'cgrzybowski@mccrossin.com'), (907, 907, 'Mr', 'Kim', 'Ruckman', 'Formally-Soil Nail Launcher, Inc.', 'PO Box 4709', '', 'Grand Junction', 'CO', '81502', '970-210-6170', '970-245-7737 Fax', 'nate@soilnaillauncher.com'), (908, 908, 'Mr', 'Jim', 'Lupomech', '', '8550 S. 137th Cir. Suite 2', '', 'Omaha', 'NE', '68138', '402-331-1411', '402-331-6160 Fax', 'jlupomech@cntralscales.com'), (909, 909, 'Mr', 'Dave', 'Sharp', '', '1510 Pacific Street', '', 'Union City', 'CA', '94587', '510-487-1155', '510-487-4466 Fax', 'www.hecopacific.com'), (910, 910, 'Mr', 'Eric', 'Michener', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-0629 Fax', 'chamburn@sme-usa.com'), (911, 911, 'Mr', 'Rob', 'Rouse', '', '1040 Perry Highway', '', 'Mercer', 'PA', '16137', '724-372-3897', '724-748-3599 Fax', ''), (912, 912, 'Mr', 'Rich', 'Wilson', 'Consolidated Construction Testing Labs', '197 Wilson Switchback', '', 'St. Marys', 'PA', '15857', '814-590-1375 Rich Ce', '814-389-1192 Fax ', ''), (913, 913, 'Mr', 'Bob', 'Gottschall', '', '307 Fairfield Road ', '', 'Montoursville', 'PA', '17754', '(570) 433-3186', '570-433-4408 Fax', ''), (914, 914, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '127 Nesl Drive', '', 'Roaring Spring ', 'PA', '16673', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (915, 915, 'Mr', 'Christine', 'Patrick', '', '6001 Antoine Drive ', '', 'Houston', 'TX', '77091', '713-682-1711', '713-684-1553 Fax Chr', 'www.ceilcotecc.com'), (916, 916, 'Mr', 'Randy', 'Slapnicker', '', '300 Edwards Street', '', 'Madison', 'OH', '44057', '(440) 428-2105', '(440) 428-8829 Fax', 'alankrupa@chemmasters.net'), (917, 917, 'Mr', 'Joe', 'Lileas', '', '201 Columbia Road', '', 'Valley City', 'OH', '44280', '1-800-482-3111', '330-483-3507 Fax', 'jlileas@mackconcrete.com'), (918, 918, 'Mr', 'Scott', 'Pack', '', '2301 Progress St.', '', 'Dover', 'OH', '44622', '(800) 824-2092', '(330) 725-4750 Fax', 'tsurrarrer@shellyco.com'), (919, 919, 'Mr', 'Dennis', 'Sanderson ', '', '1125 Valley Belt Road', '', 'Brooklyn Heights', 'OH', '44131', '(216) 741-7007', '216-741-7011 Fax', 'dwh@stlohio.com'), (920, 920, 'Mr', 'Rod', 'Watkin', '', '6600 Ridge Road', '', 'Wadsworth ', 'OH', '44281', '330-576-1750', '330-576-1755 Fax', 'jgray@tapcocompanies.com'), (921, 921, 'Mr', 'Shawn', 'McGee', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', 'smcgee@hullinc.com'), (922, 922, 'Mr', 'Shawn', 'McGee', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', 'smcgee@hullinc.com'), (923, 923, 'Mr', 'Shawn', 'McGee', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', 'smcgee@hullinc.com'), (924, 924, 'Mr', 'Dawn', '', '( AKA:Structural Preservation Systems)', '280 West Jefferson', '', 'Trenton', 'MI', '48183', '734-282-7760', '', ''), (925, 925, 'Mr', 'Rob ', 'Kilgore', '', '1809 South Elmira Avenue', '', 'Russellville', 'AR', '72802', '479-968-3422', '479-968-8404 Fax', 'robert.kilgore@motion-ind.com'), (926, 926, 'Mr', 'Bhasker', 'Vamadeva', '', '11 Cragwood Road ', '', 'Avenel', 'NJ', '7001', '732-381-0900', '732-827-2320 Fax', 'bhasker_vamadeva@gentek.ca'), (927, 927, 'Mr', 'Kelly', 'Goff', '', 'PO Box 968', '', 'Clarksburg', 'WV', '26302', '304-592-5577', '304-592-5530 Fax', ''), (928, 928, 'Mr', 'Greg', 'Huffman ', 'District # 5 ', '9600 Jackson Town Road SE', '', 'Jacksontown ', 'OH', '43030', '740-323-4400', '740-323-5292 Fax', ''), (929, 929, 'Mr', 'David', 'Backstrom', '', '544 Braddock Ave', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorourke@geotechnics.net'), (930, 930, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorourke@geotechnics.net'), (931, 931, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorouke@geotechnics.net'), (932, 932, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorouke@geotechnics.net'), (933, 933, 'Mr', 'Kevin ', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorouke@geotechnics.net'), (934, 934, 'Mr', 'Ray', 'France', '', '3739 Shawnee Road', '', 'Lima', 'OH', '45806', '(419) 999-5660', '(419) 999-6029 Fax', 'ray.france@psiusa.com'), (935, 935, 'Mr', 'Robin', 'Lamb', '', '2800 Corporate Exchange Drive,', 'Suite 240', 'Columbus', 'OH', '43231', '614-714-0270', '614-714-0322 Fax', 'jolivieri@barreng.com'), (936, 936, 'Mr', 'Robin', 'Lamb', '', '2800 Corporate Exchange Drive,', 'Suite 240', 'Columbus', 'OH', '43231', '614-714-0270', '614-714-0322 Fax', 'sconley@barreng.com '), (937, 937, 'Mr', 'Rich', 'Werner', '', '635 Alpha Drive', '', 'Pittsburgh', 'PA', '15238', '412-963-1900', '412-963-1926 Fax', 'rwerner@itls.com'), (938, 938, 'Mr', 'Bobby', 'Deshetler', '', '10101 Superior Way', '', 'Amelia', 'VA', '23002', '804-561-9255x112', '804-561-5819 Fax', ''), (939, 939, 'Mr', 'Pete', 'Douglass', '', '632 Hunt Valley Road ', '', 'New Kensington', 'PA', '15068', '724-335-6000', '724-335-3834 Fax ', ''), (940, 940, 'Mr', 'Paul', 'Pridemore', '', '23700 Chagrin Blvd.', '', 'Beachwood', 'OH', '44122', '216-839-7213', '216-839-7213 Fax', 'richard.paponetti@basf.com'), (941, 941, 'Mr', 'Sonja', 'Taylor', 'Accounts Payable MS C2200', 'PO Box 4867', ' ', 'Engelwood', 'CO', '80155-4867', '303-269-6237', '303-369-6743 Fax', 'ar@eilon-engineering.com (Eilon)'), (942, 942, 'Mr', 'Nick', 'Gerald', '', '5555 Canal Road ', '', 'Cleveland', 'OH', '44125', '(216) 447-1335', '(216) 642-7008 Fax', ''), (943, 943, 'Mr', 'Matt', 'McIntosh', '', 'PO Box 348', '', 'Winona', 'MN', '', '330-630-1501', '330-630-1420 Fax', 'wayne.wheeler2ge.com'), (944, 944, 'Mr', 'Terri', 'Burts', '', '14788 NE 95th Street', '', 'Redmond ', 'WA', '98052', '425-821-0902', '530-268-1203 Fax', 'terri.burts@microprecision.com'), (945, 945, 'Mr', 'Denise ', 'Castine', '', '22835 Industrial Place', '', 'Grass Valley ', 'CA', '95949', '530-268-1860', '530-268-1203 Fax', 'dcastine@microprecision.com'), (946, 946, 'Mr', 'Hugh', 'Swearman', '', '101 Bellevue Road', '', 'Pittsburgh', 'PA', '15229', '412-931-6393', '412-931-2820 Fax', 'hsearman@earthincorp.com'), (947, 947, 'Mr', 'Ed', 'Lover', '', '415 South Transit Street', '', 'Lockport', 'NY', '14094', '716-625-6933', '716-625-6983 Fax', 'elover@glynngroup.com'), (948, 948, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorouke@geotechnics.net'), (949, 949, 'Mr', 'Valerie', 'Glover', '', '150 Dominion Drive ', '', 'Somerset', 'PA', '15501', '814-443-9455', '814-443-9470 Fax ', 'warren@guychemical.com'), (950, 950, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com '), (951, 951, 'Mr', 'Bob', 'Yogus', '', 'PO Box 1000', '615 West Highland Avenue', 'Ebensburg', 'PA', '15931', '(814) 472-7700 ext.', '(814) 472-4221 Fax', 'greg.letzo@lrkimball.com'), (952, 952, 'Mr', 'John', 'Raider', '', 'PO Box 69', '', 'Zelienople', 'PA', '16063', '(724) 452-6260', '(724) 452-8923 Fax', 'dean.marshall@jjkennedyinc.com'), (953, 953, 'Mr', 'Bob', 'Yogus', '', 'PO Box 1000', '615 West Highland Avenue', 'Ebensburg', 'PA', '15931', '(814) 472-7700 ext.', '(814) 472-4221 Fax', 'yogusr@lrkimball.com'), (954, 954, 'Mr', 'Brenda', 'Dixon', '', '740 Laurel Run Road ', '', 'West Decatur', 'PA', '16878', '814-342-5203', '814-342-1489 Fax ', 'michelle_gracely@yahoo.com'); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (955, 955, 'Mr', 'Steve', 'Daughenbaugh', 'ATTN: Steve Daughenbaugh', '1952 Waddle Road, Suite 203', '', 'State College', 'PA', '16803', '814-237-1444', '814-237-4491 Fax/814', 'sed@goh-inc.com'), (956, 956, 'Mr', 'Ron', 'Spicer', '', 'PO Box 859', '2280 East College Avenue', 'State College', 'PA', '16804', '(814) 238-2471', '814-238-2914 Fax', 'rspicer@centreconcrete.com'), (957, 957, 'Mr', 'Bob ', 'Yogus', '', 'PO Box 1000', '', 'Ebensburg', 'PA', '15931', '(814) 472-7700 ext. ', '(814) 472-4221 Fax', 'dana.charney@lrkimball.com'), (958, 958, 'Mr', 'William ', 'Anderson', '', 'PO Box 398', '', 'Columbus', 'OH', '43216', '614-449-3366', '614-542-3680 Fax', 'billa@andersonconcrete.com'), (959, 959, 'Mr', 'Brian ', 'Hickey', 'Attn: Brian Hickey', '906 N. Clark Ave', '', 'Ashland', 'OH', '44805', '419-207-7037', '614-887-4349', 'Brian.Hickey@dot.state.oh.us'), (960, 960, 'Mr', 'Doris', 'Gold', '', '7777 Glades Road, Suite 200 ', '', 'Boca Raton', 'FL', '33434', '561-330-9300 x107 Do', '561-330-9355 Fax ', 'www.stellarmaterials.com'), (961, 961, 'Mr', 'Mike', 'Kroon', '', '7601 West 79 Street', '', 'Bridgeview', 'IL', '60455', '1-888-422-4089/517-4', '713-260-7851 Fax ', 'MPBall@superiormaterials.net'), (962, 962, 'Mr', 'Kurt', 'Rupe', '', '1915 N. 12th Street', '', 'Toledo ', 'OH', '43604', '419-324-2222', '419-241-1808 Fax', 'sheisey@ttlassoc.com'), (963, 963, 'Mr', 'Kurt', 'Roupe', '', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '419-324-2222', '419-241-1808 Fax', 'Jdonville@ttlassoc.com'), (964, 964, 'Mr', 'Derek ', 'Hunderman', '', '3373 Busch Drive SW', '', 'Grandville ', 'MI', '49418', '(616) 457-4920', '(616) 457-6440 Fax', 'MTenharmsel@kerkstra.com'), (965, 965, 'Mr', 'Linda ', 'Barnes', 'Linda P Barnes', '12257 South Wadsworth BLVD', '', 'Littleton ', 'CO', '80127', '303-977-3000', '303-971-5635 Fax', 'linda.p.barns@lmco.com'), (966, 966, 'Mr', 'Whitney', 'Allgood', '', 'PO Box 138', '', 'Evanston ', 'WY', '82931', '307-789-0596', '307-789-0598 Fax', 'sc@caltechsupply.com'), (967, 967, 'Mr', 'Jim', 'Walters', '', '6503 19th Street East, Unit F ', 'West Florida Headquarters', 'Sarasota', 'FL', '34243', '941-444-3866', '941-758-9099 Fax', 'hwhite@structural.net'), (968, 968, 'Mr', 'Gary', 'Gibilisco', 'Attn: Gary Gibilisco', 'Plasma Physics Lab', 'US Route 1 North', 'Princeton ', 'NJ', '8543', '609-243-3386', '609-243-2799 Fax', 'ggibilisco@pppl.gov'), (969, 969, 'Mr', 'Gary ', 'Gibilisco', 'Attn: Gary Gibilisco', 'Plasma Physics Lab', 'US Route 1 North', 'Princeton', 'NJ', '8543', '609-243-3386', '609-243-2799 Fax', 'ggibilis@pppl.gov'), (970, 970, 'Mr', 'Toni', 'Fiorelli', '', '6407 Arctic Spur Road', '', 'Anchorage', 'AK', '99518', '907-562-0707', '907-562-2426 Fax', 'jreeves@arcticwirerope.com'), (971, 971, 'Mr', 'Beth', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom ', 'MI', '48393', '248-486-5100', '248-486-5050 Fax', ''), (972, 972, 'Mr', 'Mike', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel ', 'IN', '46032', '317-875-7000', '317-870-0314 Fax', 'mash@altwitzig.com'), (973, 973, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-238-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (974, 974, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (975, 975, 'Mr', ' Jim', ' Tyger', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-238-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (976, 976, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (977, 977, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (978, 978, 'Mr', 'Jim ', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (979, 979, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (980, 980, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street ', '', 'Richmond ', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (981, 981, 'Mr', 'Jim', 'Tyger', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'dwilkins@pineinst.com'), (982, 982, 'Mr', ' Eric ', 'Hayes', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'ehayes@troxlerlabs.com'), (983, 983, 'Mr', 'Eric ', 'Hayes', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'ehayes@troxlerlabs.com'), (984, 984, 'Mr', 'Eric', 'Hayes', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'ehayes@troxlerlabs.com'), (985, 985, 'Mr', 'Eric', 'Hayes', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804328-3107', '804-328-3136 Fax', 'ehayes@troxlerlabs.com'), (986, 986, 'Mr', 'Eric', 'Hayes', '', '1401 E. Broad Street', '', 'Richmond ', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'ehayes@troxlerlabs.com'), (987, 987, 'Mr', 'Ishmal', 'Rafliff', '', '183 Tollage Creek', '', 'Pikeville ', 'KY', '41501', '606-432-0300', '606-433-1820 Fax', 'i.ratliff@ptsi.info'), (988, 988, 'Mr', 'Kevin', 'Johnson', '', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '410-847-3267 ', '410-847-3354 Fax', ''), (989, 989, 'Mr', 'Kevin', 'Johnson', '', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '410-847-3267 ', '410-847-3354 Fax', 'niles.mason@lafarge-na.com'), (990, 990, 'Mr', 'Ray', 'Bonaquiste', '', '108 Powers Court', '', 'Sterling', 'VA', '20166', '703-444-4200', '703-444-4368 Fax', 'aatt@erols.com'), (991, 991, 'Mr', 'Ron', 'Anthony', '', '16672 CR-66A', '', 'St. Marys', 'OH', '45885', '419-394-8870 ', '419-394-1604 Fax', 'ron.quality2@gmail.com'), (992, 992, 'Mr', 'Paul ', 'Pridemore', '', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '216-839-7213', '216-839-7213 Fax ', 'richard.paponetti@basf.com'), (993, 993, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'Brian.Cole@VDOT.Virginia.gov'), (994, 994, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'Ronald.Jackson@VDOT.Virginia.gov'), (995, 995, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'Mark.Horsley@VDOT.Virginia.gov'), (996, 996, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'D.Langreth@VDOT.Virginia.gov'), (997, 997, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'lora.adkins@VDOT.Virginia.gov'), (998, 998, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'Wayne.Bartholomew@VDOT.Virginia.'), (999, 999, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'Michael.Wells@VDOT.Virginia.gov'), (1000, 1000, 'Mr', 'Brian', 'Solkozy', 'Accounts Payable', '1720 Metropolitan Street', '', 'Pittsburgh', 'PA', '15233-2232', '412-475-1539/412-321', '412-321-4922 FAX', 'mfleury@mascaroconstruction.com'), (1001, 1001, 'Mr', 'Larry', 'Cartwright ', 'Civil & Environmental ', 'Frew Street, Porter Hall ', '', 'Pittsburgh', 'PA', '15213', '412-268-2954', '412-268-7813 Fax', 'cartwright@cmu.cedu'), (1002, 1002, 'Mr', 'Phil ', 'Gula', 'Attn: Phil Gula', 'Fort Dertick Test Branch', 'Building 1054 Patchel Street', 'Frederick ', 'MD', '21702', '301-619-7857', '301-619-6933 Fax', 'phil.gula@us.army.mil'), (1003, 1003, 'Mr', 'Alex', 'Sarant', '', '1601 Airport Road', '', 'Charlottesville', 'VA', '22911', '434-973-3232', '434-973-3238 Fax', 'bsorrell@ecslimited.com '), (1004, 1004, 'Mr', 'Lora', 'Adkins ', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'David. Guffey@VDOT.Virginia.gov'), (1005, 1005, 'Mr', 'Jason', 'Strong', '', '34000 Plymouth Road', '', 'Livonia', 'MI', '48150', '734-522-6711', '734-522-6427 Fax', 'Jason.Strong@ohm-advisors.com'), (1006, 1006, 'Mr', 'Beth', 'Gleason', ' ', '30066 Little Mack', '', 'Roseville', 'MI', '48066', '(586) 294-6430', '(586) 294-6912 Fax', 'beth@megaprecastinc.com'), (1007, 1007, 'Mr', 'Rick', 'Solak', '', '797 South State Route 19', '', 'Fremont', 'OH', '43420', '419-334-2650 x 381 R', '419-334-9445 Fax ', 'skarns@Wahlref.com '), (1008, 1008, 'Mr', 'Jon', 'Siembor', 'Attn: Accounts Payable', '6065 Parkland Blvd.', '', 'Cleveland', 'OH', '44124', '440-947-2000 / 440-9', '440-947-2099 Fax/440', 'bkeshavarm@generalaluminum.com'), (1009, 1009, 'Mr', 'Alex', 'Dumitrescu', 'c/o Purchasing Department', '955 Lake Road', '', 'Medina', 'OH', '44256', '330-721-6310', '330-723-4510 Fax', 'alex.dumitrescu@contmidgroup.com'), (1010, 1010, 'Mr', 'Judy', 'Hartman', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303-0824', '248-454-6880 Judy', '248-454-6345Fax', ''), (1011, 1011, 'Mr', 'Steve', 'Blankenship', '', '50500 Design Lane', '', 'Shelby Twp', 'MI', '48315', '586-731-1628', '586-731-7007 Fax', 'bspycher@stress-con.com'), (1012, 1012, 'Mr', 'Terrie', 'Cell', 'Attn: Randy Hazle', 'PO Box 265', '', 'Waverly', 'WV', '26184-0265', '304-464-4441', '(304) 464-4013 Fax', 'rhazle@carrconcrete.com'), (1013, 1013, 'Mr', 'Paul ', 'Pridemore', '', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '216-839-7500', '216-839-7213 Fax ', 'richard.paponetti@basf.com'), (1014, 1014, 'Mr', 'Anthony', 'Gale ', 'Attn: Carol Norris', 'PO Box 34', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-0222 Fax ', 'agale@nesl.com'), (1015, 1015, 'Mr', 'Anthony', 'Gale', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-0222 Fax ', 'agale@nesl.com'), (1016, 1016, 'Mr', 'Ernest', 'Doctor', '', '200 42nd Avenue North', '', 'Nashville', 'TN', '37209', '615-386-4428', '615-354-6689 Fax', 'e.doctor@shermandixie.com'), (1017, 1017, 'Mr', 'Robert ', 'McGlynn', 'LLC', 'PO Box 2040', '9658 State Route 43', 'Streetsboro', 'OH', '44241', '330-422-7555 / 330-4', '330-626-4530 Fax ', 'eileen.manna@basf.com '), (1018, 1018, 'Mr', 'Dave', 'Arnold', '', '201 Columbia Road', '', 'Valley City', 'OH', '44280', '(330) 483-3111 x 632', '(330) 483-3507 Fax', 'jtuttle@mackconcrete.com '), (1019, 1019, 'Mr', 'Brian', 'Struble ', '', 'PO Box 1134', '', 'Princeton', 'WV', '24740', '(304) 425-8955', '(304) 425-1171 Fax', 'bstruble@easternvault.net'), (1020, 1020, 'Mr', 'Joesph', 'Ingram', '', '865 Clinic Road', '', 'Ivydale ', 'WV', '25113', '304-286-4524 Office', '304-286-2506 Fax', ''), (1021, 1021, 'Mr', 'Marie', 'Haynes', '', '865 Clinic Road', '', 'Ivydale', 'WV', '25113', '(304) 286-4524 Offic', '(304) 286-2506 Fax', 'marie@accadcorp.com'), (1022, 1022, 'Mr', 'Sharon', 'Standish', 'dba / Packaged Systems', 'PO Box 9600 MS385', '', 'Auburn', 'WA', '98071-9600', '253-833-2777', '866-741-1982 Fax ', 'gui.shamblin@oldcastle.com'), (1023, 1023, 'Mr', 'Umesh', 'Deshpande', 'Metallurgical & Environmental Testing', '2221 Arbor Blvd.', '', 'Moraine', 'OH', '45439-1575', '937-294-2681', '937-296-7983 Fax', 'u.deshpande@yahoo.com'), (1024, 1024, 'Mr', 'Josh', 'Gottschall', '', '1 Madison Avenue', '', 'Cadillac', 'MI', '49601', '(231) 775-7755', '(231) 775-3135 Fax', 'josh.gottschall@wilcox.usa'), (1025, 1025, 'Mr', 'Fred', 'Hommel', 'Accounts Payable', '135 West Beaver Creak Road', 'PO Box 970', 'Richmond Hill', 'Ontario', 'L4B4R7', '416-423-1300', '416-423-5673 Fax', 'fphommel@vcsmc.com'), (1026, 1026, 'Mr', 'Jennifer', 'Cooper', '', '50500 Design Lane', '', 'Shelby Township', 'MI', '48315', '586-731-1628', '586-731-7007 Fax', 'jcooper@stress-con.com'), (1027, 1027, 'Mr', 'Chuck', 'Zugell', '', '520 State Road', 'Unit D', 'Bensalem ', 'PA', '19020', '215-254-6388', '267-523-5825 Fax', 'msemerad@walshgroup.com'), (1028, 1028, 'Mr', 'Kevin', 'Flick', 'Attn: Jack Patel ', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '703-471-8400', '703-471-5292 Fax', 'jpatel@ecslimited.com'), (1029, 1029, 'Mr', 'Susan', 'Parsons', 'Attn: A/P', 'P.O. Box 13527', '', 'Roanoke', 'VA', '24035-3527', '540-777-7600 A/P', '(304) 877-5987 Fax', ''), (1030, 1030, 'Mr', 'Billy', 'Lanthorn', '', '5837 Mary Ingles Highway', '', 'Melbourne', 'KY', '41059', '859-441-0068', '859-441-7986 Fax', 'blanthorn@prestressservices.com'), (1031, 1031, 'Mr', 'Robert', 'Post Jr.', '', '490 South Empire St.', '', 'Wilkes-Barre', 'PA', '18702', '', '', 'jbpostco.epix.net'), (1032, 1032, 'Mr', 'Luke ', 'Lance', '', '850 Poplar Street', '', 'Pittsburgh', 'PA', '15220', '573-259-3642 Luke', '', 'dan.stanisky@psiusa.com'), (1033, 1033, 'Mr', 'Gene', 'Sarff', '', '8250 5th Avenue South', '', 'Seattle', 'WA', '98108', '206-622-1151/1-800-6', '206-682-6651 Fax ', ''), (1034, 1034, 'Mr', 'Bruce', 'Coggesholl', '', '505 South Gillette Avenue', '', 'Gillette', 'WY', '82716-4203', '', '307-685-4555 Fax ', ''), (1035, 1035, 'Mr', 'David', 'Lafreniere', '', 'CMRL / Bldg. 367', '585 Wilson Road', 'Fort Belvoir ', 'VA', '22060-5824', '703-704-9819', '703-704-9683 Fax ', 'david1@bldg367.belvoir.army.mil'), (1036, 1036, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax ', 'Michael.Burton@VDOT.Virginia.gov'), (1037, 1037, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'David.Guffey@VDOT. Virginia.gov'), (1038, 1038, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'David.Guffey@VDOT.Virginia.gov'), (1039, 1039, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'David.Guffey@VDOT.Virginia.gov'), (1040, 1040, 'Mr', 'John', 'Raider', '', 'PO Box 69', '', 'Zelienople', 'PA', '16063', '724-452-6260', '724-452-8923 Fax', ''), (1041, 1041, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 - Fax', 'David.Guffey@VDOT.Virginia.gov'), (1042, 1042, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'Charles.Brown@VDOT.Virginia.gov'), (1043, 1043, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'David.Guffey@VDOT.Virginia.gov'), (1044, 1044, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'David.Guffey@VDOT.Virginia.gov'), (1045, 1045, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107 Lora', '804-328-3136 Fax', 'James.Broyles@VDOT.Virginia.gov'), (1046, 1046, 'Mr', 'Richard', 'Childs', '', '530 Edgemont Road', 'University Station-Research Council', 'Charlottsville', 'VA', '22903', '434-293-1983', '434-293-1990 ', 'Michael.Burton@VDOT.Virginia.gov'), (1047, 1047, 'Mr', 'Debbie', 'Palumbo', '', 'PO Box 6349', '', 'Plymouth', 'MI', '48170', '734-357-2143 Jeremy ', '734-357-0197 Fax', 'jchesterfield@mccoig.biz'), (1048, 1048, 'Mr', 'Tim', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', 'tlautenbach@mateco.com '), (1049, 1049, 'Mr', 'Jeff', 'Mikula', '', '361 First Street ', '', 'Manistee', 'MI', '49660', '(231) 723-1198', '(231) 723-1194 Fax', 'dfisk@abonmarche.com '), (1050, 1050, 'Mr', 'Adam', 'Gilde', '', 'PO Box 333', '', 'Lake City', 'MI', '49651', '(231) 825-2473', '(231) 825-8015 Fax', 'agilde@lcredimix.com'), (1051, 1051, 'Mr', 'Lyle', 'Peplinski', '', '3614 Lake Street', '', 'Kalamazoo', 'MI', '49048', '269-343-9600', '269-343-9601 Fax ', ''), (1052, 1052, 'Mr', 'Dave', 'Hollingworth', '', '2937 Atrium Drive, Suite 200', '', 'Okemos', 'MI', '48864', '800-678-9622', '517-393-1791 - Fax', ''), (1053, 1053, 'Mr', 'Chip ', 'Toth', '', '6480 Grand Haven Road', '', 'Muskegon', 'MI', '49441', '1-800-933-3959', '(231) 798-1383 Fax', 'etourre@soilsandstructures.com '), (1054, 1054, 'Mr', 'Tim', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', 'tlautenbach@mateco.com'), (1055, 1055, 'Mr', 'Tim', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', 'tlautenbach@mateco.com'), (1056, 1056, 'Mr', 'Tim ', 'Lautenbach', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', 'tlautenbach@mateco.com'), (1057, 1057, 'Mr', 'Katie', 'PrinzBach', '', '438 Island Pointe Lane ', '', 'Moneta', 'VA', '24121', '540-721-4029', '540-721-3762 Fax', 'prinzbach@jetbroadband.com'), (1058, 1058, 'Mr', 'Ebony', 'Waldo', 'Formally :Hanson Pipe & Precast ', '3801 Cook Blvd. ', '', 'Chesapeake', 'VA', '23323', '757-485-5228 x510 Eb', '757-487-2992 Fax', 'jbrabble@concretepandp.com'), (1059, 1059, 'Mr', 'Ed ', 'Bostaph', '', '98 South Fraley Street', '', 'Kane', 'PA', '16735', '814-837-7743', '814-837-9155 Fax', ''), (1060, 1060, 'Mr', 'Ed', 'Bostaph', '', '98 South Fraley Street', '', 'Kane', 'PA', '16735', '814-837-7743', '814-837-9155 Fax', ''), (1061, 1061, 'Mr', 'Brian', 'Janas', '', '34600 Solon Road', '', 'Solon', 'OH', '44139', '440-248-0100', '440-248-1001 Fax', 'bjanas@erico.com'), (1062, 1062, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1063, 1063, 'Mr', 'Jim', 'Aleksiejczyk', '', '201 Smith Township State Road', '', 'Burgettstown', 'PA', '15021-2113', '724-947-9401', '724-947-9601 Fax', ''), (1064, 1064, 'Mr', 'Carrie', 'Cheatham', '', '7211 Ogden Business Park', 'Suite 201', 'Wilmington', 'NC', '28411', '910-686-9114', '910-686-9666 Fax', 'CCheatham@ecslimited.com'), (1065, 1065, 'Mr', 'Greaber', '', 'Attn: Accounts Payable', '3015 Dumbarton Road', '', 'Richmond', 'VA', '23228', '804-264-2701', '804-264-1202 Fax', ''), (1066, 1066, 'Mr', 'Debbie', '', '', '2785 Manitowoc Road', '', 'Green Bay', 'WI', '54311-6633', '920-465-1313', '920-465-6430 Fax', ''), (1067, 1067, 'Mr', 'Michael', 'Davis', '', 'PO Box 7194', '', 'Macon', 'GA', '31209-7194', '478-474-2941', '478-471-0202 Fax', 'ptande@bellsouth.net'), (1068, 1068, 'Mr', 'Don', 'Bateman', '', '5400 Byrdhill Road ', 'Warren paving', 'Henrico', 'VA', '23228', '804-261-3700', '804-261-0418 Fax ', ''), (1069, 1069, 'Mr', 'Ed', 'Calhoun', '', '4201 State Rt. 51', '', 'Belle Vernon', 'PA', '15012', '(724) 929-2125', '(724) 929-3011 Fax', ''), (1070, 1070, 'Mr', 'Ed', 'Calhoun', '', '4201 State Rt. 51', '', 'Bell Vernon', 'PA', '15012', '724-929-2125', '724-929-3011 Fax', ''), (1071, 1071, 'Mr', 'Kin', 'Chung', '', '1801 Penn Avenue', '', 'Wyomissing Hills', 'PA', '19609', '(610) 670-9055', '(610) 678-2719 Fax', ''), (1072, 1072, 'Mr', 'Jeremy ', 'Graham', '', '143 Business Center Drive', '', 'Birmingham', 'AL', '35244', '205-283-6480 Jeremy ', '', ''), (1073, 1073, 'Mr', 'John', 'Rodriguez', '', 'East Broad Street', 'PO Box 550', 'Tamaqua', 'PA', '18252', '570-668-2040', '570-668-5910', ''), (1074, 1074, 'Mr', 'Chris', 'Shuman', '', '805 Wisteria Drive', '', 'South Charleston', 'WV', '25309', '(304) 565-3007', '(304) 565-3113 Fax', ''), (1075, 1075, 'Mr', 'Don', 'Emich', '', 'PO Box 7 Rt. 72N', '', 'East Petersburg', 'PA', '17520', '(717) 569-0441 Ext. ', '(717) 569-5066 Fax', ''), (1076, 1076, 'Mr', 'Keith', 'Davis', 'Communtation Components Div.', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '(804) 395-8265', '(804) 395-8241 Fax', ''), (1077, 1077, 'Mr', 'Keith', 'Davis', 'Communtation Components Div.', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '(804) 395-8265', '(804) 395-8241 Fax', ''), (1078, 1078, 'Mr', 'Keith', 'Davis', 'Communtation Components Div.', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '(804) 395-8265', '(804) 395-8241 Fax', ''), (1079, 1079, 'Mr', 'Andy', 'Palumbo', '', '5170 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '(412) 787-1266', '', ''), (1080, 1080, 'Mr', 'Phil', 'Young', '', 'PO Box 337', '', 'Byron Center', 'MI', '19315-0337', '616-878-3324', '616-878-3477 Fax', ''), (1081, 1081, 'Mr', 'John', 'White, VP', '', 'RD 4 Box 275', '', 'Muncy', 'PA', '17756', '(570) 546-2361', '(570) 546-7060 Fax', ''), (1082, 1082, 'Mr', 'Scott', '', '', 'PO Box 10896', '', 'Pittsburgh', 'PA', '15236', '724-258-5460', '724-258-5761 Fax', ''), (1083, 1083, 'Mr', 'Purviz', 'Saranshiem', '', '2000 Turner Street', '', 'Lansing', 'MI', '48906', '(517) 985-9180', '(517) 485-9583 Fax', ''), (1084, 1084, 'Mr', 'Greg', 'Browse', '', '4401 Camp Meeting Road', 'Suite 200', 'Center Valley', 'PA', '18034', '', '', ''), (1085, 1085, 'Mr', 'Greg', 'Browse', '', 'PO Box 177', '', 'Winfield', 'PA', '17889', '', '', ''), (1086, 1086, 'Mr', 'Carol', 'Bostic', '(Formerly Engineering Consulting Svcs)', '814 Greenbrier Circle', 'Suite A', 'Chesapeake', 'VA', '23320', '757-366-5100', '757-366-5203 Fax', ''), (1087, 1087, 'Mr', 'Greg', 'Leverance', '', '3352 128th Ave.', '', 'Holland', 'MI', '49424', '616-399-3500', '616-399-3777 Fax', ''), (1088, 1088, 'Mr', 'Jim', 'Ranck', '', '6045 Dixie Highway', '', 'Bridgeport', 'MI', '48722', '1-800-783-4661 Main ', '989-631-5070 Fax', ''), (1089, 1089, 'Mr', 'Bob', 'Stull', '', '2005 N. Center Avenue', '', 'Somerset', 'PA', '15501', '(814) 443-1671', '(814) 445-6729 Fax', ''), (1090, 1090, 'Mr', 'Peter', 'Chambers', 'Formally Hanson Pipe & Products', 'PO Box 71', '', 'Jessup', 'MD', '20794', '(410) 799-2600', '(410) 799-0436 Fax', ''), (1091, 1091, 'Mr', 'Rich', 'Gilson', '', 'PO Box 278', '205 Creek Road', 'Camp Hill', 'PA', '17001-0278', '(717) 795-9003', '', ''), (1092, 1092, 'Mr', 'Jack ', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (1093, 1093, 'Mr', 'Bob', 'Dufore', '', 'PO Box 155', '', 'State College', 'PA', '16801', '', '', ''), (1094, 1094, 'Mr', 'Bill', 'Frech', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', ''), (1095, 1095, 'Mr', 'Harold', '', '', 'PO Box 90', '', 'Muncy', 'PA', '17756', '(717) 584-2117', '', ''), (1096, 1096, 'Mr', '', 'Sherman', '', '15733 James Couzns Ave', '', 'Detroit', 'MI', '48238', '313-342-8871', '313-342-8879 Fax', ''), (1097, 1097, 'Mr', 'Con', 'Sinadinos', '', '', '', 'Australia', '', '', '613-9800-2200', '613-9800-2813', ''), (1098, 1098, 'Mr', 'Rick', 'Marker', '', '480 Pittsburgh Road', 'P.O. Box X', 'Uniontown', 'PA', '15401', '(724) 438-4581', '(724) 438-6998', ''), (1099, 1099, 'Mr', 'Joe ', 'Breeswine', '', '1499 Delp Drive', '', 'Harleysville', 'PA', '19438', '215-256-4201', '215-256-1787 Fax', ''), (1100, 1100, 'Mr', 'Jim', 'Jones', '', '4950 Mason Road', '', 'Howell', 'MI', '48843', '(517) 546-1005', '(517) 546-9991 Fax', ''), (1101, 1101, 'Mr', 'Noel', 'Hartley', '', 'PO Box 397', '', 'Middlesburg', 'PA', '17842', '', '', ''), (1102, 1102, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1103, 1103, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1104, 1104, 'Mr', 'Steve', 'Mileski', '', '1038 Ghent Road', '', 'Akron', 'OH', '44333', '(330) 666-5432', '(330) 666-4130 Fax', ''), (1105, 1105, 'Mr', '', '', '', '2060 Lincoln Way East', '', 'Chambersburg', 'PA', '17201', '(717) 263-7964', '(717) 263-7734 Fax', ''), (1106, 1106, 'Mr', 'Charles', 'Felmley', '', 'PO Box E', '5 Lake Ave.', 'Brocton', 'NY', '14716', '(716) 792-4616', '(716) 792-9998 Fax', ''), (1107, 1107, 'Mr', 'Mike', 'Petruziello', '', '8621 Station St', '', 'Mentor', 'OH', '44060', '440-974-9555', '440-974-3755 Fax', ''), (1108, 1108, 'Mr', 'Wes', 'Carson', '', 'PO Box 318', '', 'Muncy', 'PA', '17756', '(717) 546-7219', '(717) 546-6284 Fax', ''), (1109, 1109, 'Mr', 'Ken', 'Sharp', '', 'PO Box 156', '', 'Shelocta', 'PA', '15774', '(724) 354-3232', '(724) 354-2765 Fax', ''), (1110, 1110, 'Mr', 'Errol', 'Gilbert', '', '5066 South Sprinkle Road', '', 'Kalamazoo', 'MI', '49002-2050', '269-373-5500', '269-373-5594 Fax', ''), (1111, 1111, 'Mr', 'Steve', 'Mills', '', '4343 S Polaris Avenue', '', 'Las Vegas', 'NV', '89103', '702-597-9393', '', ''), (1112, 1112, 'Mr', 'John', 'Alexander', '', '70 John Street', '', 'Westminster', 'MD', '21157', '410-848-9030 Main Of', '410-876-0733', ''), (1113, 1113, 'Mr', 'Wes ', 'Vankuren', '', '1818 N. Main Street', '', 'Niles', 'OH', '44446', '(330) 505-1590', '', ''), (1114, 1114, 'Mr', 'Barry', 'Burkett', '', '4091 Saltsburg Rd.', '', 'Murrysville', 'PA', '15668', '412-798-3272', '', ''), (1115, 1115, 'Mr', 'Matthew', 'Thornton', '', '8211 Hermitage Road', '', 'Richmond', 'VA', '23228', '804-266-2199', '804-261-5569 Fax', ''), (1116, 1116, 'Mr', 'Robert ', 'Carter', '', '10282 Rocksprings Road', '', 'West Valley', 'NY', '14171-9799', '(716) 942-4815', '(716) 942-2031 Fax', ''), (1117, 1117, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'David.Guffey@VDOT.Virginia.gov'), (1118, 1118, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'D.Landreth@VDOT.Virginia.gov'), (1119, 1119, 'Mr', 'Bill', 'Tiger', '', '995 N. Market Street', '', 'East Palestine', 'OH', '44413', '1-800-783-3227', '330-426-2210 Fax', ''), (1120, 1120, 'Mr', 'Charles', 'Breedlove', '', '900 North Garver Road', '', 'Monroe', 'OH', '45050', '(513) 539-4000', '513-539-4255', ''), (1121, 1121, 'Mr', 'Brian', 'Janas', '', '34600 Solon Rd.', '', 'Solon', 'OH', '44139', '440-248-0100', '440-848-8521 Fax', 'bjanas@erico.com'), (1122, 1122, 'Mr', 'Allison', 'Berry', '', 'One Razor Blade Lane', '', 'Verona', 'VA', '24482', '540-248-8000', '540-248-9771 Fax', ''), (1123, 1123, 'Mr', 'Chris', 'Hann', '', '28329 Great Cove Rd.', '', 'Ft. Littleton', 'PA', '17223', '717-987-3118', '717-987-3665 Fax', 'georgehannandson@comcast.net'), (1124, 1124, 'Mr', 'Matthew', 'Thornton', '', '8211 Hermitage Road', '', 'Richmond', 'VA', '23228', '804-266-2199', '804-261-5569 Fax', ''), (1125, 1125, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '(804) 371-6731', '804-328-3136 Fax', ''), (1126, 1126, 'Mr', 'Lora ', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', ''), (1127, 1127, 'Mr', 'Thomas', 'Moore', 'Attn: Tom Moore', 'PO Box 89100', '', 'Pittsburgh', 'PA', '15227', '724-652-9330', '724-652-7714 Fax', ''), (1128, 1128, 'Mr', 'Craig ', 'Combs', '', '1101 S. Saginaw Street', '', 'Flint', 'MI', '48502', '(810) 766-7165 Main', '(810) 766-7249 Fax', ''), (1129, 1129, 'Mr', 'Judy', 'Hartman', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303-0824', '248-454-6880 Judy', '248-745-2990 Fax', 'tperkins@hrc-engr.com'), (1130, 1130, 'Mr', 'Brenda ', 'Eberly', '', '2116 Haslett Rd', '', 'Haslett', 'MI', '48840', '517-339-1014', '517-339-8047 FAX', ''), (1131, 1131, 'Mr', 'Matthew', 'Brozowski ', '', '960 West River Center Drive, Suite A', '', 'Comstock Park ', 'MI', '49321', '616-647-3004', '616-647-3005 Fax ', ''), (1132, 1132, 'Mr', 'Mustafa', 'Jwaida', '', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '(248) 486-5100', '(248) 486-5050 Fax', ''), (1133, 1133, 'Mr', 'Pat', 'Knoll', '', '6205 Schumacher Park Drive', '', 'West Chester', 'OH', '45069', '(513) 777-9890', '513-777-9070 FAX', ''), (1134, 1134, 'Mr', 'John', 'Jenkin', '', '6190 Enterprise Court', '', 'Dublin', 'OH', '43016', '614-793-2226', '614-793-2410 Fax', ''), (1135, 1135, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 - Fax', 'James.Broyles@VDOT.Virginia.gov'), (1136, 1136, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1137, 1137, 'Mr', 'Jim', 'Dauscher', '', '3900 Glover Road ', '', 'Easton', 'PA', '18040', '484-548-6225', '', ''), (1138, 1138, 'Mr', 'Brian', 'Chestnut', '', '34 Strohm Road', '', 'Shippensburg', 'PA', '17257', '(717) 532-5959', '(717) 532-7997 Fax', ''), (1139, 1139, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', ' ', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (1140, 1140, 'Mr', 'Vicki', 'Leister', 'Attn: Brad Minemyer ', '260 Laurel Ridge Road', 'Laurel Highlands Landfill, Inc.', 'Johnstown', 'PA', '15909', '724-479-3336/412-269', '724-479-8501 Fax/412', 'bminemyer@wm.com '), (1141, 1141, 'Mr', 'Fred', 'Steiner', 'Accounts Payable ', '5101 Evergreen Road ', '', 'Dearborn ', 'MI', '48128', '313-845-9621', '313-845-9866 Fax ', 'crichert@hfcc.edu'), (1142, 1142, 'Mr', 'Mark', 'Clossman', '', '720 Greencrest Drive', '', 'Westerville', 'OH', '43081-4902', '(614) 895-1400', '(614) 895-1171 Fax', 'mclossman@gci2000.com'), (1143, 1143, 'Mr', 'Aaron', 'Martin', '', '790 Morrison Road', '', 'Columbus', 'OH', '43230', '(614) 863-3113', '(614) 863-0475 Fax', 'samartin@terracon.com'), (1144, 1144, 'Mr', 'Bill', 'Feltz', '', 'PO Box 398', '', 'Columbus', 'OH', '43216-0398', '614-443-0123', '614-443-1921 Fax ', 'bfeltz@andersonconcrete.com'), (1145, 1145, 'Mr', 'Jerry ', 'Roberts', 'Accounts Payable', 'Municipal Building; Room 508', '166 S. High', 'Akron', 'OH', '44308', '330-375-2861', '330-375-2519 Fax', 'mhuber@akronohio.gov'), (1146, 1146, 'Mr', 'Lou', 'Wood', '', 'PO Box 362', '528 London Road', 'Delaware', 'OH', '43015', '(740) 369-7644', '(740) 363-7644 Fax', 'lwood@oberfields.com'), (1147, 1147, 'Mr', 'Mark', 'Clossman', '', '720 Greencrest Drive', '', 'Westerville', 'OH', '43081-4902', '(614) 895-1400', '(614) 895-1171 Fax', 'mclossman@gci200.com'), (1148, 1148, 'Mr', 'Bill', 'Heft', '', 'PO Box 698', '', 'Logan', 'OH', '43138', '(800) 848-2141', '(740) 385-9336 Fax', 'will_frasure@loganclaypipe.com'), (1149, 1149, 'Mr', 'Lynne', ' Henslee', '', '521 Fifth Ave', '', 'Chardon ', 'OH', '44024', '440-352-4700', '440-286-2092 Fax', ''), (1150, 1150, 'Mr', 'Gene', 'Short', 'Division of Shawndra Products', 'PO Box 488', '', 'Lima', 'NY', '14485', '585-624-4500', '585-624-5300 Fax', 'gene@shawndra.com'), (1151, 1151, 'Mr', 'Wayne', 'Murrock', '', 'PO Box 280', 'Eastwood Station', 'Syracuse', 'NY', '13206', '(315) 437-0305', '(315) 463-9134 Fax', 'rickroach@barnesandcone.com'), (1152, 1152, 'Mr', 'Chuck', 'Forth', '', '3784 Commerse Court, Suite 300 ', '', 'North Tonawanda', 'NY', '14120', '716-694-8657', '716-694-8638 Fax', ''), (1153, 1153, 'Mr', 'Donna', 'Hines', '', 'PO Box 356', '10987 Bennett State Road', 'Forestville', 'NY', '14062', '716-965-2731 ', '716-965-2764 Fax ', 'bailey032netsync.net '), (1154, 1154, 'Mr', 'Susan ', 'Parsons', 'Attn: A/P', 'P.O. Box 13527', '', 'Roanoke', 'VA', '24035-3527', '540-777-7600 A/P', '304-877-6845 Fax', 'm.tallamy@boxley.com'), (1155, 1155, 'Mr', 'Joe', 'Francis', '', '601 Ohio Avenue', '', 'Charleston', 'WV', '25302', '304-340-4277', '304-340-4278 Fax', 'jfrancis@americangeotechinc.com'), (1156, 1156, 'Mr', 'Lisa', 'Chioda', '', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-837-4366', '610-837-3785 Fax', 'carol.coleman@essroc.com'), (1157, 1157, 'Mr', 'Glenn', 'Christy', 'Formally Barboursville Testing Lab, Inc.', 'PO Box 43', '', 'Barboursville', 'WV', '25504', '304-757-0802', '304-757-0746 Fax', 'gchristy45@yahoo.com'), (1158, 1158, 'Mr', 'Jim', 'Smith', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '(304) 344-0821', '(304) 342-4711 Fax', ''), (1159, 1159, 'Mr', 'Jim', 'Smith', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '(304) 344-0821', '(304) 342-4711 Fax', ''), (1160, 1160, 'Mr', 'Paula', 'Grose', '', 'PO Box 519', '', 'Nitro', 'WV', '25143', '304-755-8291', '304-755-2636 Fax', 'bruce.frame@terradon.com'), (1161, 1161, 'Mr', 'Ali', 'Dastgheib', '', 'PO Box 889', '', 'Morgantown', 'WV', '26507', '(304) 296-2562', '(304) 296-8739 Fax', 'adastgheib@traideng.com'), (1162, 1162, 'Mr', 'Kathy', 'Mehaffey', '', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '304-558-9857 Kathy', '703-991-8727 Fax', ''), (1163, 1163, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1164, 1164, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (1165, 1165, 'Mr', 'Lou ', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1166, 1166, 'Mr', 'Lou ', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1167, 1167, 'Mr', 'John', 'Naypaver', '', '2 South Lafayette St', '', 'New Castle', 'PA', '16102', '724-658-1228', '724-658-8814 Fax', ''), (1168, 1168, 'Mr', 'Jeff', 'Parzych', '', '233 Chapel Drive ', '', 'Tallahassee', 'FL', '32304-3256', '850-445-0224 Jeff Ce', '', ''), (1169, 1169, 'Mr', 'Roger', '', '', '6061 Rt. 6N', '', 'Edinboro', 'PA', '16412', '', '', ''), (1170, 1170, 'Mr', 'Bob', 'Francisco', '', 'PO Box 359', '', 'Logan', 'WV', '25601', '', '', ''), (1171, 1171, 'Mr', 'Jeff', '', '', '143 Business Center Drive', '', 'Birmingham', 'AL', '35244', '205-283-6082 Jeff Ce', '', ''), (1172, 1172, 'Mr', 'Bill', 'Kernan', '', '44B State Street', '', 'Holley', 'NY', '14470', '(585) 638-0134', '(585) 638-0135 FAX', ''), (1173, 1173, 'Mr', 'Gene ', 'Sarvis', '', 'PO Box 509', '', 'Chambersburg', 'PA', '17201', '717-264-7146', '717-264-7634 Fax', ''), (1174, 1174, 'Mr', 'Bennie', 'McFerron', '', 'PO Box 32', '', 'Cincinnati', 'OH', '45241', '(513) 771-8830', '', ''), (1175, 1175, 'Mr', 'Lisa', 'Uschold', '', 'PO Box 405', '', 'Central Square', 'NY', '13036', '(315) 668-3868', '(315) 676-3150 Fax', ''), (1176, 1176, 'Mr', 'Kevin', 'Kelly', '', 'PO Box 562', '', 'Fallston', 'PA', '15066', '(724) 843-7315', '(724) 847-7079 Fax', ''), (1177, 1177, 'Mr', 'Bert', '', '', '1504 N. Gettysburg Ave.', '', 'Dayton', 'OH', '45427', '(937) 268-6706', '(937) 268-8321 Fax', ''), (1178, 1178, 'Mr', 'Tom', 'Matisko', '', '336 Bloomfield Street', 'Suite 201', 'Johnstown', 'PA', '15904', '(814) 266-6402', '(814) 266-6530 Fax', ''), (1179, 1179, 'Mr', 'David', 'Walsh', '', '11905 Bowman Drive, Suite 507', '', 'Fredericksburg', 'VA', '22408', '540-368-1414', '540-368-1444 Fax', 'dwalsh@hcea.com'), (1180, 1180, 'Mr', 'Dave', 'Sherman', '', '81 East Market Street', '', 'Buffalo', 'NY', '14604', '(716) 328-8870', '(716) 328-8348 Fax', ''), (1181, 1181, 'Mr', 'Jim', 'Stacy', '', '7525 E Main Road', '', 'Lima', 'NY', '14485', '(716) 624-1990', '(716) 624-2102 Fax', ''), (1182, 1182, 'Mr', 'Sharon', 'Dalton', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 Jeremy ', '770-360-0520 Fax', ''), (1183, 1183, 'Mr', 'Terry', '', '', '21101 Route 19', '', 'Cranberry Twp.', 'PA', '16066', '(412) 391-3673', '', ''), (1184, 1184, 'Mr', 'Michael', 'Nagle', '', '416 Ritter Street', '', '7 Mile', 'OH', '45062', '513-726-4371', '', ''), (1185, 1185, 'Mr', 'Mark', 'McFall', '', '1304 Buckley Road', '', 'N. Syracuse', 'NY', '13212', '315-460-4382 phone', '315-428-6530 fax', ''), (1186, 1186, 'Mr', 'Jim', 'Foss', '', '1501 Commerce Drive', '', 'Stow', 'OH', '44224', '(330) 384-4943', '', ''), (1187, 1187, 'Mr', 'Don', 'Blasland', '', 'PO Box 56', '5879 Fisher Road', 'East Syracuse', 'NY', '13057', '315-437-1420', '315-437-1752 Fax', ''), (1188, 1188, 'Mr', 'Mike ', 'Dale', '', 'Dept. 812', '850 Poplar Street', 'Pittsburgh', 'PA', '15220', '(412) 922-4001 ext. ', '', ''), (1189, 1189, 'Mr', 'Tim', 'Roberts', '', 'PO Box 610', '', 'Louisa', 'KY', '41230', '(304) 648-7131', '(304) 648-7290 Fax', ''), (1190, 1190, 'Mr', 'Todd', 'Dunn', '', 'James E. Gleason Building', '78 Lomb Memorial Drive', 'Rochester', 'NY', '14623-5604', '(716) 475-2900 (Todd', '(716) 475-5275', ''), (1191, 1191, 'Mr', 'Stan', 'Blas', '', '5167 South Park Ave', '', 'Hamburg', 'NY', '14075', '716-649-8110', '716-821-0163 Fax', ''), (1192, 1192, 'Mr', 'Neil', 'Zuern', '', '5167 S Park Avenue', '', 'Hamburg', 'NY', '14075', '716-649-8110', '716-821-0163 FAX', ''), (1193, 1193, 'Mr', 'Dave', 'Patterson', '', 'PO Box 1295', '', 'Williamsport', 'PA', '17703', '(717) 326-7077', '(717) 326-4990 Fax', ''), (1194, 1194, 'Mr', 'Larry', 'Shively', '', 'PO Box 600 ', '', 'Thornville', 'OH', '43076', '(614) 246-6315', '(614) 246-6810 Fax', ''), (1195, 1195, 'Mr', 'Keith', 'Pryse', '', '516 Enterprise Drive', '', 'Covington', 'KY', '41017', '(606) 341-1322', '(606) 341-0832 Fax', 'kpryse@thelenassoc.com'), (1196, 1196, 'Mr', 'Keith', 'Pryce', '', '516 Enterprise Drive', '', 'Covington', 'KY', '41017', '(606) 341-1322', '(606) 341 0832', 'kpryse@thelenassoc.com'), (1197, 1197, 'Mr', 'John ', 'Swab', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (1198, 1198, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (1199, 1199, 'Mr', 'Tom', 'Stoffick', 'c/o VDR 100948', 'Five Highland Avenue, Suite C', '', 'Bethlehem', 'PA', '18017', '610-837-4366', '610-867-3785 Fax', 'Accounting.Services@essroc.com'), (1200, 1200, 'Mr', 'Kerry', 'Hornyak', '', '1595 Route 422 E', '', 'Fenelton', 'PA', '16034', '724-283-6200', '724-283-1067 Fax', ''), (1201, 1201, 'Mr', 'Gary', 'Workman', '', 'PO Box 416', '', 'Nitro', 'WV', '25143', '(304) 755-8228', '(304) 755-8229 Fax', ''), (1202, 1202, 'Mr', 'Shane', 'Hicks', '', '107 Wooddale Drive ', '', 'Rocky Mount', 'VA', '24151', '540-483-3389', '540-484-0963 Fax', ''), (1203, 1203, 'Mr', 'Aaron', 'Teets', '', '10 N 3rd Street ', '', 'Oakland', 'MD', '21550', '301-334-2305', '301-334-2305 Fax ', ''), (1204, 1204, 'Mr', 'Stan', 'Ward', '', 'PO Box 398', '', 'Columbus', 'OH', '43223', '614-443-0123', '614-443-4001 Fax ', ''), (1205, 1205, 'Mr', 'Harvey', 'Stacy', '', 'PO Box 13070', '', 'Lexington', 'KY', '40583', '(304) 475-1403', '606-789-9108 Fax', ''), (1206, 1206, 'Mr', 'Mike', 'Calabrese', '', '1049 Camino Dos Rios', '', 'Thousand Oaks', 'CA', '91360', '805-373-4553', '805-373-4245 Fax', ''), (1207, 1207, 'Mr', 'Mark', 'Williams', '(Send Certs Here)', '', 'PO Box 1912', 'Beckley', 'WV', '25802', '(304) 877-6451', '(304) 877-5789 Fax', ''), (1208, 1208, 'Mr', 'Jim', 'Smith', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '(304) 344-0821', '(304) 342-4711 Fax', ''), (1209, 1209, 'Mr', 'Jeff', 'Maddy', '', 'PO Box 1400', '', 'St. Albans', 'WV', '25177', '(304) 727-4301 ext. ', '(304) 727-4306 Fax', 'jeff.maddy@peerlessblock.com'), (1210, 1210, 'Mr', 'Albert', 'Godfrey', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (1211, 1211, 'Mr', 'Dale', 'Wessel', '', 'PO Box 609', '', 'Columbus', 'NE', '68602-0609', '402-563-6369', '402-563-6398 Fax', 'dale.wessel@vishay.com'), (1212, 1212, 'Mr', 'Wayne', 'Rawlins', '', 'PO Box 142', '', 'St. Kitts', 'VI', '', '869-465-8664', '869-465-1857 Fax', 'wrawlins38@yahoo.com'), (1213, 1213, 'Mr', 'Dwight', 'McKoy', '', 'PO Box 142', '', 'St. Kitts', 'VI', '', '869-465-8664', '869-465-1857 Fax', ''), (1214, 1214, 'Mr', 'Frank', 'Welsh', '', '2701 Carolean Industrial Drive ', '', 'State College', 'PA', '16801', '(814) 231-8845', '(814) 231-8846 Fax', 'dpeglow@cmtlabsinc.com'), (1215, 1215, 'Mr', 'Ronald', 'Brewer', '', '438 Church Street', '', 'Girard', 'PA', '16417', '814-774-3573', '814-774-2854 Fax', 'plynch@jackburn.com'), (1216, 1216, 'Mr', 'Frank', 'Welsh', '', '2701 Carolean Industrial Drive ', '', 'State College', 'PA', '16801', '(814) 231-8845', '(814) 231-8846 Fax', 'dpeglow@cmtlabsinc.com'), (1217, 1217, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1218, 1218, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1219, 1219, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1220, 1220, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1221, 1221, 'Mr', 'Chris', 'Stapko', '', '415 Headquarters Drive , Suite 6', '', 'Millersville', 'MD', '21108', '410-987-7330', '410-987-2124 Fax ', 'kwsoil@aol.com '), (1222, 1222, 'Mr', 'Ray', 'Taylor', 'General James M. Gavin Plant', 'PO Box 301', '', 'Cheshire', 'OH', '45620', '740-367-9363', '740-367-0428 Fax', ''), (1223, 1223, 'Mr', 'Wendell', 'Shaw', '', '1054 B Brentwood Court', '', 'Lexington', 'KY', '40511', '(859) 253-9395', '(859) 255-9939 Fax', ''), (1224, 1224, 'Mr', 'Randy', 'Myers', '', '7100 Wilson Mills Rd.', '', 'Chesterland', 'OH', '44026', '440-423-0113', '440-423-1502 Fax', ''), (1225, 1225, 'Mr', 'Nabil', 'Al-Omaish', 'School of Engineering', '2000 Penning Rd', '', 'Ewing', 'NJ', '8628', '609-771-2267', '', ''), (1226, 1226, 'Mr', 'Thomas', 'Haydon III', '', '703 Old Lebanon Road', 'PO Box 175', 'Springfield', 'KY', '40069', '859-336-7096', '859-336-7533', ''), (1227, 1227, 'Mr', 'Rick', 'Grandinetti', '', 'PO Box 357', '', 'Bradford', 'PA', '16701', '(814) 362-4013', '(814) 362-5590 Fax', ''), (1228, 1228, 'Mr', 'Mark', 'Stouffer', 'Office of Materials Management', 'Soils and Foundation Section', '1600 West Broad Street', 'Columbus', 'OH', '43223', '(614) 275-1307', '(614) 275-1354 Fax', ''), (1229, 1229, 'Mr', 'Alex', 'Dettloff', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1308', '614-275-1354 Fax', ''), (1230, 1230, 'Mr', 'John', ' Hansen', '', '884 Mehring Way', '', 'Cincinnati', 'OH', '45202', '513-651-4007', '513-651-4009 Fax', ''), (1231, 1231, 'Mr', 'Terry', 'Berger', '', '2981 Carrollton Road', '', 'Saginaw', 'MI', '48604', '989- 755-8147', '989-755-5423 Fax', ''), (1232, 1232, 'Mr', 'Mark', 'Weber', '(Formerly Atlanta Testing & Eng)', '422 Codell Dr.', '', 'Lexington', 'KY', '40509', '(859) 509-4998', '859- 299-2481 Fax', ''), (1233, 1233, 'Mr', 'Jon', 'Lubahn', 'Division of CMS Energy', '135 West Trail Street', '', 'Jackson', 'MI', '49201', '(517) 788-7067', '(517) 788-1724 Fax', ''), (1234, 1234, 'Mr', 'Desi', '', '', 'PO Box 10896', '', 'Pittsburgh', 'PA', '15236', '412-384-1000', '724-258-5761 Fax', ''), (1235, 1235, 'Mr', 'Daniel', 'Crago', '', '11641 Mosteller Road', '', 'Cincinnati', 'OH', '45241', '(513) 771-0820', '(513) 771-3379 Fax', ''), (1236, 1236, 'Mr', 'Bruce', 'Ealey', '', '422 Codell Drive', '', 'Lexington', 'KY', '40509', '859-509-4998', '859-299-2481 Fax', ''), (1237, 1237, 'Mr', 'Rick', 'Carna', '', '203 W Washington Street', '', 'New Castle', 'PA', '16101', '(724) 652-7878', '(724) 657-8652 Fax', ''), (1238, 1238, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1239, 1239, 'Mr', 'Steve', 'Garrison', '', '399 Executive Drive ', '', 'Huntsville', 'AL', '35816', '', '', 'sgarrison@qore.net'), (1240, 1240, 'Mr', 'George ', 'Shupp ', '', '2815 Director\'s Row ', 'Suite 500', 'Orlando', 'FL', '32809', '407-859-8378 ', '407-859-9599 Fax ', 'gshupp@ecslimited.com '), (1241, 1241, 'Mr', 'Wilfredo', 'Sanchez Flores ', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'geotec@caribe.net'), (1242, 1242, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'jabenortiz@yahoo.com'), (1243, 1243, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 758-7830', 'moises_estrada2000@yahoo.com'), (1244, 1244, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '787-758-7830', '787-764-8553 Fax', 'fbravo@caribe.net'), (1245, 1245, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax ', 'edwin.gutierrez@usace.army.mil'), (1246, 1246, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1247, 1247, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1248, 1248, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '', '800-981-4133', '787-758-7830', ''), (1249, 1249, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax ', 'ksanders@schnabel-eng.com'), (1250, 1250, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'geopractic@prtc.net'), (1251, 1251, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 270033', '', 'San Juan', 'PR', '936', '787-792-8904', '787-782-7455 FAX', 'gmts@gmts-pr.com'), (1252, 1252, 'Mr', 'Michelle ', 'Machado ', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '787-758-7830', '787-764-8553 Fax', 'mmachado@mastergroup-pr.com'), (1253, 1253, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1254, 1254, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', 'tdl@geoconsult.us'), (1255, 1255, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', 'nmunoz@advancedsoil.net'), (1256, 1256, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1257, 1257, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'gloria.arroyo@cemex.com'), (1258, 1258, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan ', 'PR', '936', '800-981-4133', '787-764-8533 fax', 'mruizstgo@hotmail.com'), (1259, 1259, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '', '800-981-4133', '787-758-8553 Fax', ''), (1260, 1260, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1261, 1261, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1262, 1262, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8533 Fax', ''), (1263, 1263, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1264, 1264, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1265, 1265, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'william384@hotmail.com'), (1266, 1266, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan ', 'PR', '936', '800-981-4133', '787-764-8533 fax', 'rita.rivera@cemex.com '), (1267, 1267, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan ', 'PR', '', '800-981-4133', '787-764-8533 fax', 'rita.rivera@cemex.com'), (1268, 1268, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'lserrano@hotmail.com'), (1269, 1269, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787)764--8553', ''), (1270, 1270, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '787-758-7830', '787-764-8553 Fax', 'mvplaboratory@yahoo.com'), (1271, 1271, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'julissa.hidalgo@basf.com'), (1272, 1272, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'dcamacho@empresasmaster.com'), (1273, 1273, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'jarodriguezjust@yahoo.com'), (1274, 1274, 'Mr', 'Eladio ', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'jarodriguezjust@yahoo.com'), (1275, 1275, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'starread@coqui.net'), (1276, 1276, 'Mr', 'Mike ', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314 Fax', 'mash@altwitzig.com'), (1277, 1277, 'Mr', 'Frank', 'Williams', '', 'PO Box 13577', '3361 Successful Way', 'Dayton', 'OH', '45413-0577', '937-233-5555 Office', '937-233-9203 Fax', 'fwilliams@ernstconcrete.com'), (1278, 1278, 'Mr', 'Jim', 'Leach', '', '446 E. High Street, Suite 140', '', 'Lexington', 'KY', '40507', '859-252-7558', '859- 255-0940 Fax', 'JIMZIM1@Netscape.net'), (1279, 1279, 'Mr', 'Gary', 'Berkhouse', '', '95 Mound Park Drive', '', 'Springboro', 'OH', '45066', '937-748-2412 Ext. 63', '937-748-9748 Fax', ''), (1280, 1280, 'Mr', 'Liz', 'Jones', '', 'PO Box 70', '', 'Monroe', 'OH', '45050', '937-743-0650', '937-743-0651 Fax', 'jwhitlinger@centralrm.com '), (1281, 1281, 'Mr', 'Kathy', 'Cahall', '', '675 Oxford Street', '', 'Franklin', 'OH', '45005', '937-746-9941', '937-746-1528 Fax', ''); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (1282, 1282, 'Mr', 'Kevin', 'Samms', '', '4625 Hardin-Wapak Road', '', 'Sidney', 'OH', '45365', '(937) 492-9119', '(937) 492-8434 Fax', 'Greg.Craft@Hanson.biz '), (1283, 1283, 'Mr', 'Andrea', 'Swift', '', 'PO Box 5', '', 'West Alexandria', 'OH', '45381', '937-456-4539', '937-456-9247 Fax', 'petecitro@earthlink.net'), (1284, 1284, 'Mr', 'Mike', 'Ash ', '', '6205 Schumacher Park Drive', '', 'West Chester', 'OH', '45069', '(513) 777-9890', '513-777-9070 Fax', 'cincinnati@altwitzig.com'), (1285, 1285, 'Mr', 'Steve ', 'Causie', '', '201 Plains Road', '', 'Mason', 'MI', '48854', '517-676-3700', '517-676-3758 Fax', ''), (1286, 1286, 'Mr', 'Larry', 'Reznicek', '', '7601 West 79 Street', '', 'Bridgeview', 'IL', '60455', '708-458-0400', '708-563-3388 Fax ', 'mpball@superiormaterials.net'), (1287, 1287, 'Mr', 'Mike ', 'Collins', '', '23225 Mercantile Road', '', 'Beachwood', 'OH', '44122', '216-378-1490', '216-378-1497 Fax', 'mcollins @manniksmithgroup.com'), (1288, 1288, 'Mr', 'Frank', 'Biehl', '', '2365 Haggerty Road South, Suite 100', '', 'Canton', 'MI', '48188', '734-397-3100', '734-397-3131 Fax', 'TMoore@manniksmithgroup.com'), (1289, 1289, 'Mr', 'Frank', 'Biehl', '', '2365 Haggerty Road South, Suite 100', '', 'Canton', 'MI', '48188', '734-397-3100', '734-397-3131 Fax', ' '), (1290, 1290, 'Mr', 'Pam ', 'Brown', 'Billing: Pam Brown', '21355 Hatcher Avenue', '', 'Ferndale', 'MI', '48220', '248-399-2066', '248-399-2157 Fax', 'mikekeenan@mcdowasc.com'), (1291, 1291, 'Mr', 'Karen', 'Morlan', '', '2225 Olthoff Drive', '', 'Muskegon', 'MI', '49444', '231- 777-3451', '231- 777-3621-Fax', 'thompson15@michigan.gov'), (1292, 1292, 'Mr', 'Bill', 'Jackson', '', '#1 Public Works Drive', '', 'Waterford', 'MI', '48328', '(248) 858-0140', '(248) 452-2250 Fax', 'jacksonb@oakgov.com'), (1293, 1293, 'Mr', 'Jim ', 'Stoudt', 'Attn: Jim Stoudt', '1303 State Route 227', '', 'Oil City ', 'PA', '16301', '814-677-2093', '', ''), (1294, 1294, 'Mr', 'Curt', 'Roupe', '', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '419-324-2222', '419-241-1808 Fax', 'Jdonville@ttlassoc.com'), (1295, 1295, 'Mr', 'Jody', 'Eastwood', '', 'PO Box 580', '', 'Bay City', 'MI', '48707', '989-686-3100 / 800-3', '989-686-4329 Fax', 'www.wadetrim.com'), (1296, 1296, 'Mr', 'Brian', 'Bull', '', '7901 Sylvania Avenue ', '', 'Sylvania', 'OH', '43560', '419-841-3435', '419-841-0312 Fax (Te', 'bbull@AllOhioReadyMix.com'), (1297, 1297, 'Mr', 'William', 'Shank', '', '2020 Caldwell Street', '', 'Sandusky', 'OH', '44870', '419-625-9132', '419-625-1201 Fax', 'wrshank@spoerrprecast.com'), (1298, 1298, 'Mr', 'Steve', 'Hill', '', 'PO Box 453', '', 'Mabscott', 'WV', '25871', '304-252-0691', '304-252-0693 FAX', 'shill@wirefire.com'), (1299, 1299, 'Mr', 'Nelson', 'Hoy', '', 'PO Box 957', '', 'Waynesburg', 'PA', '15370', '(724) 852-1112', '(724) 852-1114 Fax', 'bargerj@windstream.net'), (1300, 1300, 'Mr', 'Chadley', 'Miller', 'Attn: Mr. Chadley Miller', 'PO Box 2049', '', 'Buckhannon', 'WV', '26201', '304-472-8890', '304-472-8897 - Fax', 'cmiller@jfallenco.com'), (1301, 1301, 'Mr', 'Chadley', 'Miller', 'Attn: Mr. Chadley Miller', 'PO Box 2049', '', 'Buckhannon', 'WV', '26201', '304-472-8890', '304-472-8897 - Fax', 'cmiller@jfallenco.com'), (1302, 1302, 'Mr', 'Chadley', 'Miller', 'Attn: Chadley Miller', 'PO Box 2049', '', 'Buckhannon', 'WV', '26201', '304-472-8890', '304-472-8897 Fax', 'cmiller@jfallenco.com'), (1303, 1303, 'Mr', 'Chris', 'Justice', '', 'PO Box 1388', '', 'Logan', 'WV', '25601', '(304) 752-2330', '(304) 752-7961 Fax', 'cjustice@loganconcrete.com'), (1304, 1304, 'Mr', 'Rick', 'Rhodes', '', '107 Industrial Road ', '', 'St. Albans', 'WV', '25177-1780', '304-727-7062', '304-722-1822 Fax', 'sherry@rhodesblock.com'), (1305, 1305, 'Mr', 'Greg', 'Maloney', '', '160 Gamma Drive', '', 'Pittsburgh', 'PA', '15238', '(412) 963-0303', '(412) 963-7620 Fax', 'drschmitt@sauereisen.com'), (1306, 1306, 'Mr', 'John', 'Tarr ', '', '45 Arden Road', '', 'Washington', 'PA', '15301', '724-222-4254', '724-222-2859 Fax', 'tinatarrconcrete@yahoo.com '), (1307, 1307, 'Mr', 'Kathy', 'Mehaffey', '', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '304-558-9857', '304-558-0253 Fax', 'williamt.farren@wvdot.gov'), (1308, 1308, 'Mr', 'Mary', 'Ford', '', 'HC 78 Box 6C (Rt. 20)', 'US Army Corps of Engineers ', 'Hinton', 'WV', '25951', '304-466-6950 ', '304-466-6951 Fax ', 'joseph.s.sprinkle@usace.army.mil'), (1309, 1309, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1310, 1310, 'Mr', 'Lou ', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1311, 1311, 'Mr', 'Rick', 'Solak', '', 'P.O. Box 1300', '', 'Warren', 'OH', '44482-1300', '330-372-3716', '330-372-5594 Fax', ''), (1312, 1312, 'Mr', 'Brian', 'Johnson', 'Attn: B. Johnson ', '3301 Atlantic Avenue', '', 'Raleigh', 'NC', '27604', '919-831-8010', '', 'LBJOHNSON@mactec.com'), (1313, 1313, 'Mr', 'Tamara', 'Gramlich', '', '19103 Gundle Road', '', 'Houston', 'TX', '77073', '800-435-2008', '', ''), (1314, 1314, 'Mr', 'Kathy', 'Cahall', '', '675 Oxford Road ', '', 'Franklin', 'OH', '45005', '937-746-9941', '937-746-1528 Fax', ''), (1315, 1315, 'Mr', 'Elaine', 'Struble', '', 'PO Box 362 ', '3416 Corwin Road ', 'Williamston', 'MI', '48895', '517-655-4602', '517-655-8042 Fax ', 'harmharnstras@kelcris.com'), (1316, 1316, 'Mr', 'Lance', 'Larue', '', '1000 Banksville Road', '', 'Pittsburgh', 'PA', '15216', '412-531-7111', '412-531-4334 Fax', ''), (1317, 1317, 'Mr', 'Chris', 'Riefler', '', '5225 Southwest Blvd.', '', 'Hamburg', 'NY', '14075', '716-649-6780', '716-649-7389 Fax', ''), (1318, 1318, 'Mr', '', '', '', '1277 Bridge Street', '', 'Alma', 'MI', '48801', '(989) 463-5476', '', ''), (1319, 1319, 'Mr', 'Bill', 'Robertson', '', '125 Westpark Road', '', 'Centerville', 'OH', '45459', '(937) 428-6150', '(937) 428-6154 Fax', ''), (1320, 1320, 'Mr', 'James', 'Lotts', '', '', '', 'Lima', 'OH', '', '419-221-5819', '419-221-5189 Fax', ''), (1321, 1321, 'Mr', 'John', 'Puskarich', 'Accounts Payable', '7777 Lockway East', '', 'Pittsburgh', 'PA', '15206', '', '', ''), (1322, 1322, 'Mr', 'Lisa', 'Uschold', '', '810 Sheridan Drive, Suite 200', '', 'Tonawanda', 'NY', '14150', '(716) 877-9577', '(716) 877-9629 Fax', ''), (1323, 1323, 'Mr', 'Lisa', 'Uschold', '', '810 Sheridan Drive, Suite 200', '', 'Tonawanda', 'NY', '14150', '(716) 877-9577', '(716) 877-9629 Fax', ''), (1324, 1324, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 266-2642', '(814) 269-6480 Fax -', ''), (1325, 1325, 'Mr', 'Larry', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '(814) 269-2427 - Lar', '(814) 269-6480 Fax -', ''), (1326, 1326, 'Mr', 'Tony', '', '', 'PO Box 6587', '', 'Wheeling', 'WV', '26003', '304-232-1040', '', ''), (1327, 1327, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '(607) 529-3235 ext. ', '(607) 529-3434 Fax', ''), (1328, 1328, 'Mr', 'Mike', 'Bell', '', '211 Franklin Street', '', 'Olean', 'NY', '14760', '(716) 372-6300', '(716) 372-6864 Fax', ''), (1329, 1329, 'Mr', 'Lewis', 'DiPietro', '', '10 Carriage St.', '', 'Heneoye', 'NY', '14472', '716-624-6801', '', ''), (1330, 1330, 'Mr', 'Kay', '', '', '792 W. Bagley Rd.', '', 'Berea', 'OH', '44012', '440-234-8985 Att: Na', '', ''), (1331, 1331, 'Mr', 'Chris', 'Reith', '', '18 Boulden Circle', 'Suite 36', 'New Castle', 'DE', '19720', '302-326-2100', '302-326-2399 Fax', 'creith@mragta.com'), (1332, 1332, 'Mr', 'Raj', 'Goyle', '', '115 Rauch Drive', '', 'Marietta', 'OH', '45750', '', '', ''), (1333, 1333, 'Mr', 'Steve', 'Davis', '', 'PO Box 2385', '', 'Elkins', 'WV', '26241', '(304) 253-8361', '', ''), (1334, 1334, 'Mr', 'Dave', 'Maneval', '', 'PO Box 699', '1525 Millville Road', 'Bloomsburg', 'PA', '17815', '', '', ''), (1335, 1335, 'Mr', 'Jesse', 'Chatman', '', '', '', 'Nicholasville', 'KY', '', '606-885-6001', '502-372-2326 Pager', ''), (1336, 1336, 'Mr', 'John ', 'Thrower, Sr.', '', '409 Saxonburg Blvd.', '', 'Saxonburg', 'PA', '16056-9405', '724-352-9421', '724-352-9512 Fax', ''), (1337, 1337, 'Mr', 'Richard', 'Decker', '', '7291 Knigh Settlement Road', '', 'Bath', 'NY', '14810', '607-776-7391', '607-776-3888 Fax', ''), (1338, 1338, 'Mr', 'Tom', 'Oess', '', '6301 Haggerty Road', '', 'Belleville', 'MI', '48111', '(734) 397-6300', '', 'Conditional Net 30'), (1339, 1339, 'Mr', 'Edward', 'Kelly', '', 'PO Box 150', '', 'Latrobe', 'PA', '15650', '(412) 537-5530', '', ''), (1340, 1340, 'Mr', 'Rick', 'Craddock', '', '4460 West Lake Forest Drive, Suite 200', '', 'Cinicnnati', 'OH', '45242', '513-588-1429', '513-489-6619 Fax', 'ejhanson@mactec.com'), (1341, 1341, 'Mr', 'Robert', 'Walts', '', 'Materials Bureau Bldg #7 State Campus', '1220 Washington Avenue', 'Albany', 'NY', '12232', '315-469-3285', '315-469-1614 Fax', ''), (1342, 1342, 'Mr', ' Bill', 'Thompson', '', '13005 Middletown Industrial Blvd.', 'Suite D', 'Louisville', 'KY', '40223', '502-244-3848', '502-244-3580 Fax', ''), (1343, 1343, 'Mr', 'John', 'Hansen', '', 'P.O. Box 75203', '', 'Cincinnati', 'OH', '45275-5203', '606-428-2400', '606-428-3354 fax', ''), (1344, 1344, 'Mr', 'Mike', 'Vitale', 'Formally (Robinson Concrete)', '3486 Franklin Street Road', '', 'Auburn', 'NY', '13021', '(315) 252-7227', '315-252-7595 Fax', 'brhodes@vitale-robinson.com'), (1345, 1345, 'Mr', 'Linda', 'Szary', '', '623 Bowser Road', '', 'Piscataway', 'NJ', '8854', '732-445-2232', '723-445-0577 Fax', 'ewass@rci.rutgers.edu'), (1346, 1346, 'Mr', 'Paul', 'Gregorczyk', '', '5167 South Park Avenue', '', 'Hamburg', 'NY', '14075', '(716) 649-8110', '(716) 821-0163 Fax', ''), (1347, 1347, 'Mr', 'Ryan', 'Huber', 'Div of Kerkstra Precast, Inc.', '1330 Chicago Drive', '', 'Jenison', 'MI', '49428', '616-224-6176', '616-457-6440 FAX', ''), (1348, 1348, 'Mr', 'Gary', 'Johnson', '', '2700 Marine Street', '', 'Louisville', 'KY', '40212', '502-776-8001', '', ''), (1349, 1349, 'Mr', 'Ann', 'Fariss', '', 'PO Box 4237', '3401 Forest Brook Rd.', 'Lynchburg', 'VA', '14502', '434-385-5028', '434-385-8943', ''), (1350, 1350, 'Mr', 'Dave', 'Simpson', '', '', '', 'McKees Rocks', 'PA', '', '412-771-4983', '', ''), (1351, 1351, 'Mr', 'Rose', 'Jones', '', '8500 Hadden Road', '', 'Twinsburg', 'OH', '44087', '(216) 963-3500', '(216) 963-3307 Fax', ''), (1352, 1352, 'Mr', 'Brian', 'Welsh', '', 'PO Box 52', '', 'Kersey', 'PA', '15846', '(814) 885-8517', '(814) 885-8498 Fax', ''), (1353, 1353, 'Mr', 'Mike', 'Burton', 'Research Center', '530 Edgemont Rd', '', 'Charlottsville', 'VA', '22903', '(804) 293-1983', '(804) 293-1990 Fax', ''), (1354, 1354, 'Mr', 'Jindu', '', '', 'Po Box 1028', '', 'Jamestown', 'NY', '14701', '(716) 487-1901', '', ''), (1355, 1355, 'Mr', 'Donna', 'Washburn', '', '12 McFaddden Road', '', 'Easton', 'PA', '18045', '610-559-9000 Ext. 23', '610-559-1919 FAX', ''), (1356, 1356, 'Mr', 'Monica', 'DiCiacco', '', 'PO Box 429', '', 'Lederach', 'PA', '19450', '215-256-7940', '215-256-7943 Fax ', ''), (1357, 1357, 'Mr', 'John', 'Camburn', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314 Fax', ''), (1358, 1358, 'Mr', 'Mike', 'Ash', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314 Fax', ''), (1359, 1359, 'Mr', 'Sam', 'Callaway', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-0314 Fax', ''), (1360, 1360, 'Mr', 'Larry', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '814-269-2427 Larry K', '814-269-2499 Fax', ''), (1361, 1361, 'Mr', 'Joel ', 'Curcio', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin ', 'OH', '', '614-793-8777', '614-793-9070 Fax', 'jcurcio@hullinc.com'), (1362, 1362, 'Mr', 'Jason', 'Wooten', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', ''), (1363, 1363, 'Mr', 'Judy', 'Hartman', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303-0824', '248-454-6880 Judy', '248-454-6345 Fax', ''), (1364, 1364, 'Mr', 'Howard', 'Flint', '', 'PO Box 1448', '', 'St. Albans', 'WV', '25177', '(304) 722-4237', '', ''), (1365, 1365, 'Mr', 'Terry', 'Gallion', 'Bluestone Resident office', 'Bluestone Dam', 'HC 78, Box 6C', 'Hinton', 'WV', '25957', '304-466-6950', '304-466-6951 Fax', ''), (1366, 1366, 'Mr', 'Greg', 'Fonarev', '', '33080 Industrial Road ', '', 'Livonia', 'MI', '48150', '734-422-8000 x101 Ac', '734-422-5342 Fax', 'information@rtilab.com'), (1367, 1367, 'Mr', 'Diane', 'Shiftlet', '', 'PO Box 1647', '', 'Charlottesville', 'VA', '22902-1647', '434-296-7181', '434-296-2139 Fax ', 'ssubotnik@allied-concrete.com'), (1368, 1368, 'Mr', 'Greg', 'Letsko', '', '615 W. Highland Avenue', 'PO Box 1000', 'Ebensburg', 'PA', '15931', '814-472-7700 x1600', '814-472-7712 Fax', ''), (1369, 1369, 'Mr', 'Dan', 'Clemens', '', '1520 East Main Street', '', 'Lansing', 'MI', '', '269-207-1531 Dan Cel', '', ''), (1370, 1370, 'Mr', 'Bob ', 'Yogus ', '', '615 W. Highland Avenue ', 'PO Box 1000', 'Ebensburg', 'PA', '15931', '814-472-7700', '814-472-7712 Fax', ''), (1371, 1371, 'Mr', 'Tom', 'Burns', '', '3520 Central Parkway', '', 'Cincinnati', 'OH', '45223', '513-569-1749 Tom Bur', '513-569-4689 Fax', ''), (1372, 1372, 'Mr', 'John', 'Roc', '', '3143 Production Drive', '', 'Fairfield', 'OH', '45014', '513-874-3733', '513-874-3967 Fax', 'tgibson@hamiltonsafe.com'), (1373, 1373, 'Mr', 'Phic', 'Czirr', '', 'PO Box 200', '', 'Paris', 'KY', '40362', '859-987-3670', '859-987-0727 Fax', ''), (1374, 1374, 'Mr', 'Brian', 'Kelly', '', '105 Mall Blvd.', 'Expo Mart 270-E', 'Monroeville', 'PA', '15146', '412-856-9700 Ext 101', '412-856-9749 Fax', 'brian.kelly@rizzoassoc.com'), (1375, 1375, 'Mr', 'Tim ', 'Goodall', '', '611 Lunken Park Drive', 'PO Box C', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1376, 1376, 'Mr', 'Terry', 'Galion', '', '2203 W. Dupont Avenue', '', 'Belle', 'WV', '25015', '304-949-1934', '304-949-1937 Fax', ''), (1377, 1377, 'Mr', 'Mike', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (1378, 1378, 'Mr', 'Mark', 'Hackney', '', 'One Haworth Center ', '', 'Holland', 'MI', '49423-9576', '616-393-1850', '616-393-1534 Fax ', 'www.haworth.com'), (1379, 1379, 'Mr', 'Nancy', 'Landsberger', 'Civil & Construction', '1903 W. Michigan Avenue', '', 'Kalamazoo', 'MI', '49008-5316', '616-387-5865 College', '269-276-3211 Fax', 'zimmermanc@groupwise.wmich.edu'), (1380, 1380, 'Mr', 'Jack', 'Abril', '', 'PO Box 17087', '', 'Cincinnati', 'OH', '45217', '(513) 242-3644', '(513) 242-7845 Fax', ''), (1381, 1381, 'Mr', 'John', 'Judd', '', '11435 Road 176', '', 'Paulding', 'OH', '45879', '419-399-4861', '419-399-5301 Fax', 'john.judd@lafarge-na.com'), (1382, 1382, 'Mr', 'John', 'Murray', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', 'jmurray@trumbullcorp.com'), (1383, 1383, 'Mr', 'Fred', 'Johns', '', '1 Willow Lane', '', 'East Texas', 'PA', '18017', '610-530-6177', '610-530-6119 Fax ', 'fred_johns@daytimer.com'), (1384, 1384, 'Mr', 'Bruce', 'Shelton', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (1385, 1385, 'Mr', 'Lisa', 'Hodge', '', '9901 Drag Strip Road ', '', 'Keithville', 'LA', '71047', '318-925-1020', '318-925-1033 Fax', ''), (1386, 1386, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1387, 1387, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1388, 1388, 'Mr', 'Keith', 'Doyle', '', '1409 Moravia Street', '', 'New Castle', 'PA', '16101', '724-981-4212', '724-981-4214 Fax', ''), (1389, 1389, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '607-962-8983', '607-529-3434 FAX', 'badams@dalholding.com'), (1390, 1390, 'Mr', 'Chris ', 'Pridemore ', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1308', '614-275-1354 Fax', 'alexander.dettloff@dot.state.oh.us'), (1391, 1391, 'Mr', 'Nunzio', 'Staph', '', '1409 Moravia Street', '', 'New Castle', 'PA', '16101', '(724) 658-5656', '(724) 658-5659 Fax', ''), (1392, 1392, 'Mr', 'Anthony', 'Gale', '', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'hmcghee@nesl.com'), (1393, 1393, 'Mr', 'Hugh', 'Swearman', '', '101 Bellevue Road', 'The Gristmill Suite 100', 'Pittsburgh', 'PA', '15229', '(412) 931-6393', '412-931-2820 Fax', 'hswearman@earthincorp.com'), (1394, 1394, 'Mr', 'Pat', 'Hofmann', '', '117 Marcia Street', '', 'Latrobe', 'PA', '15650', '724-537-6023', '724-537-6021 Fax', 'ph@ligonierconcrete.com'), (1395, 1395, 'Mr', 'Nathell', 'Grubbs', '', '550 E. Spring Street', '', 'Columbus', 'OH', '43215', '(614) 287-2641', '(614) 287-3644 Fax', 'ngrubbs@cscc.edu'), (1396, 1396, 'Mr', 'Ted', 'Bunting', '', '7657 Taylor Road', '', 'Reynoldsburg', 'OH', '43068', '614-575-2132', '614-575-1307 Fax', 'dhunt@buckeyereadymix.com'), (1397, 1397, 'Mr', 'Chris', 'Mulroy', '', 'PO Box 203', '', 'Canal Winchester', 'OH', '43110', '740-654-7398', '740-654-7426 Fax', ''), (1398, 1398, 'Mr', 'Chris', 'Mulroy ', '', 'PO Box 203', '7415 Diley Road', 'Canal Winchester', 'OH', '43110', '614-837-8444', '614-833-3250 Fax', 'rbabbert@ecbabbet.com'), (1399, 1399, 'Mr', 'Ron', 'Blanton', '', '201 Columbia Road', '', 'Valley City', 'OH', '44280', '(330) 483-3111', '(330) 483-3507 Fax', 'gdempsey@mackconcrete.com'), (1400, 1400, 'Mr', 'Holly', 'Fleegle', '', '975 Georges Station Road', 'Suite 100', 'Greensburg ', 'PA', '15601', '724-532-4800', '724-532-4801 Fax', 'dave.blasko@cmemgmt.com'), (1401, 1401, 'Mr', 'Anthony', 'Gale', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'hmcghee@nesl.com'), (1402, 1402, 'Mr', 'Denise', 'Napoli', '', '6910 Manlius Center Road', '', 'East Syracuse', 'NY', '13057', '(315) 437-1517', '(315) 434-9954 Fax', ''), (1403, 1403, 'Mr', 'Chris ', 'Smith', '', '830 Brigham Road', '', 'Dunkirk', 'NY', '14048', '800-916-9133', '716-363-8818 Fax', 'c.smith@dunkirkspecialtysteel.com'), (1404, 1404, 'Mr', 'Dina', 'Graber', '', '37 Franklin Street, Suite 400', '', 'Buffalo', 'NY', '14202', '716-853-2611 x 126 D', '716-853-2619 Fax', 'craig.witherell@applusrtd.com'), (1405, 1405, 'Mr', 'Dina', 'Graber', '', '37 Franklin Street, Suite 400', '', 'Buffalo', 'NY', '14202', '716-853-2611 x 126 D', '716-853-2619 Fax', 'www.qisi.com'), (1406, 1406, 'Mr', 'Dina', 'Graber', '', '37 Franklin Street, Suite 400', '', 'Buffalo', 'NY', '14202', '716-853-2611 x 126 D', '716-853-2619 Fax', 'plewis@qisi.com'), (1407, 1407, 'Mr', 'Mike', 'McGaw', '', 'PO Box 26268', '', 'Fairview Park', 'OH', '44126', '216-521-3490', '440-248-1527 Fax', ''), (1408, 1408, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1409, 1409, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1410, 1410, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1411, 1411, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1412, 1412, 'Mr', 'John', 'Ross', '', 'PO Box 903', '', 'Uniontown', 'PA', '15401', '724-438-4811 Bud Sca', '724-366-2254', ''), (1413, 1413, 'Mr', 'Christi', 'Walker', '', '2401 Edmund Road', 'PO Box 20', 'West Columbia', 'SC', '29171', '803-822-7576', '803-822-7586 Fax', 'lstockwell@harsco.com'), (1414, 1414, 'Mr', 'Don', 'Thomas', '', 'PO Box 325', '', 'Wheatland', 'PA', '16161', '(724) 347-2227', '(724) 347-2240 Fax', ''), (1415, 1415, 'Mr', 'John', 'Holmes', '', '6200 Frank Ave. N. W.', '', 'Canton', 'OH', '44720', '1-330-966-5461', '', ''), (1416, 1416, 'Mr', 'Michael', 'Nuckols', '', '6200 Elko Tract Road', '', 'Sandston', 'VA', '23150', '804-328-3029 ', '', ''), (1417, 1417, 'Mr', 'Kelly', 'Remick', '', '2199 Lapeer Ave', '', 'Port Huron', 'MI', '48060', '(810) 987-7770 ext. ', '810-987-9108 Fax ', 'deinsalac@muellerindustries. com '), (1418, 1418, 'Mr', 'Stephen', 'Cordeiro', '', '1 Lewiston Street', '', 'Fall River', 'MA', '2721', '508-678-5800', '508-678-5884 Fax', ''), (1419, 1419, 'Mr', 'Nick', 'Scanlon', '', '69 Empire Drive', '', 'St. Paul', 'MN', '55103', '651-280-4260', '651-288-4753 Fax ', ''), (1420, 1420, 'Mr', 'Michael', 'Pennington', '', 'Bldg. 9580, Main Bldg. ', '', 'McChord', 'WA', '98433', '253-966-0548', '253-967-7342 Fax', 'michael.pennington@us.army.mil'), (1421, 1421, 'Mr', 'Alex ', 'Gherghel', '(Applied Construction Technologies)', '1414 East Schaaf Road', '', 'Brooklyn Heights', 'OH', '44131', '(216) 459-8378', '216-459-8954 Fax', ''), (1422, 1422, 'Mr', 'Jim', 'Donathan', '', '25 W. Jefferson St.', '', 'Jefferson', 'OH', '44047', '(440) 567-3707', '(440) 576-5663 Fax', ''), (1423, 1423, 'Mr', 'Denise', 'Mula', '', '5185 Richmond Road', '', 'Bedford Heights', 'OH', '44146', '(216) 831-3800', '216-292-1465 Fax', ''), (1424, 1424, 'Mr', 'Rick', 'Buccini', '', 'PO Box 824', '', 'Lorain', 'OH', '44052', '(216) 244-1944', '', ''), (1425, 1425, 'Mr', 'Dave', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax', 'davet@gtcpgh.com'), (1426, 1426, 'Mr', 'Dr.', 'Cernica', '', '7240 Glenwood Ave.', '', 'Boardman', 'OH', '44512', '(216) 758-2100 - not', '', ''), (1427, 1427, 'Mr', 'Steve', 'Johnson', '', '178 Blackstone Avenue', '', 'Jamestown', 'NY', '14701', '716-665-5313 x 245', '716-665-5121 FAX', ''), (1428, 1428, 'Mr', 'Jeff', 'Zell', '', '1031 Fourth Ave.', '', 'Corapolis', 'PA', '15108', '412-262-2022', '', ''), (1429, 1429, 'Mr', 'Tim', 'Olsen', '', '3405 State Street', '', 'Erie', 'PA', '16508', '(814) 454-0195', '(814) 453-2020 Fax', ''), (1430, 1430, 'Mr', 'Louay', 'Mohammad', 'Accounting Services', 'PO Box 25115', '', 'Baton Rouge', 'LA', '70808', '225-578-3321', '', 'louaym@lsu.edu'), (1431, 1431, 'Mr', 'MaryJane', 'Irwin', '', 'PO Box 1585', '1794 Moxahala Avenue', 'Zanesville', 'OH', '43702-1585', '740-453-0721 ', '740-455-2305 Fax ', ''), (1432, 1432, 'Mr', 'Joe', 'Dacsko', '', '23700 Chargrin Boulevard', '', 'Cleveland', 'OH', '44122-5500', '(216) 831-5500', '(216) 831-6053', ''), (1433, 1433, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1434, 1434, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1435, 1435, 'Mr', 'John', 'Kilby', '', '106 Landsdowne Street', '', 'Blacksburg', 'VA', '24060', '(540) 951-0124', '', ''), (1436, 1436, 'Mr', 'Bill', 'Brickner', '', '223 Wilson Way', '', 'Lancaster', 'PA', '17603', '(717) 291-9560', '', ''), (1437, 1437, 'Mr', 'Duane', 'Moberg', 'Applied Research Lab', 'PO Box 30', '', 'State College', 'PA', '16804', '(814) 865-2904 (Duan', '(814) 863-6185 Fax', ''), (1438, 1438, 'Mr', 'Richard', 'Lawson', '', '10 Industrial Park Road', '', 'Monaca', 'PA', '15061', '724-728-3045', '724-728-1588 Fax', ''), (1439, 1439, 'Mr', 'Eric ', 'Michener', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-0629 Fax', 'emichener@sme-usa.com'), (1440, 1440, 'Mr', 'Dennis', 'Killmeyer', '', '32 Clark Street', '', 'Greensburg', 'PA', '15601', '(412) 837-0560', '', ''), (1441, 1441, 'Mr', 'K.Gerald', 'Zimmerman', '', '120 South Burrowes Street', '', 'University Park', 'PA', '13801-3857', '(814) 865-4981', '(814) 863-7304 Fax', ''), (1442, 1442, 'Mr', 'Mike ', 'Betting', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', 'joshua.fetcko@trumbullcorp.com'), (1443, 1443, 'Mr', 'Andrew', 'Bystry Jr.', '', '1811 Schoonmaker Avenue', '', 'Monessen', 'PA', '15062', '724-684-7462', '', 'andrew.bystry@usace.army.mil'), (1444, 1444, 'Mr', 'Midge ', 'Collier', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-371-6732', '', ''), (1445, 1445, 'Mr', 'David', 'Kurtanich', '', '1 University Plaza', '', 'Youngstown', 'OH', '44555', '330-941-3745 direct', '330-941-3287 Civil E', ''), (1446, 1446, 'Mr', 'Dick', 'Bauer', '', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '419-720-5254', '419-720-5255 Fax', 'info@thejajcompany.com'), (1447, 1447, 'Mr', 'Corry', 'Prunty', '', 'PO Box 627', '3530 Parkway Lane', 'Hilliard', 'OH', '43026', '(614) 777-6013', '(614) 777-6160 Fax', ''), (1448, 1448, 'Mr', 'Doug', 'Kline', '', 'PO Box 337', '', 'Middleburg', 'PA', '17842', '570-837-0430', '570-837-1591 Fax', ''), (1449, 1449, 'Mr', 'Pete', 'Armlovich', 'ATTN: 0005292', '5690 Camp Road', '', 'Hamburg', 'NY', '14075', '(716) 649-3260 Ext. ', '(716) 649-9542 Fax', ''), (1450, 1450, 'Mr', 'Pete', 'Armolovich', 'ATTN: 0005292', '5690 Camp Road', '', 'Hamburg', 'NY', '14075', '(716) 649-3260 Ext 1', '(716) 649-9542 Fax', ''), (1451, 1451, 'Mr', 'David', 'Kurtanich', '', '1 University Plaza', '', 'Youngstown', 'OH', '44555', '330-941-3745 direct ', '330-941-3287 Civil E', ''), (1452, 1452, 'Mr', 'Dennis', 'Sanderson', '', '1125 Valley Belt Road', '', 'Brooklyn Heights', 'OH', '44131', '216-741-7007', '216-741-7011 Fax', ''), (1453, 1453, 'Mr', 'Lyn', 'Crane', '', '701 Millers Run Road', '', 'Cuddy', 'PA', '15031-9742', '(412) 257-1800', '(412) 257-8380 Fax', ''), (1454, 1454, 'Mr', 'Bryan', 'Smith', '', '18015 St. Rt. 65', '', 'Jackson Center', 'OH', '45334', '937-596-6142 ext. 27', '937-596-6268 Fax', ''), (1455, 1455, 'Mr', 'David', 'Stultz', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1456, 1456, 'Mr', 'Rick', 'Halas', '', '5777 Lewiston Road', '', 'Lewiston', 'NY', '14092', '(716) 285-3211', '716-286-6931 Fax', ''), (1457, 1457, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1458, 1458, 'Mr', 'Jason', 'Webb', '', '500 Maryville Hwy', 'Building 1, Suite B', 'Seymour', 'TN', '37865', '865-573-6130', '865-573-6132 Fax', 'lmonday-GeoServices@charter.net'), (1459, 1459, 'Mr', 'David', 'Nicholson', '', '606 W 2nd Street ', '', 'Tifton', 'GA', '31794', '229-386-3079 David', '', ''), (1460, 1460, 'Mr', 'Shea', 'Carr', '', '11003 Bluegrass Parkway, Suite 690', '', 'Louisville', 'KY', '40299', '502-267-0700', '502-267-5900 FAX', ''), (1461, 1461, 'Mr', 'Dick', 'Bauer', '', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '419-720-5254', '419-720-5255 Fax', 'info@thejajcompany.com'), (1462, 1462, 'Mr', 'Eric', 'Robey', 'Div. of Information & Engineering Tech.', '4240 Campus Drive', 'Attn: Eric Robey', 'Lima', 'OH', '45804', '419-995-8000', '419-995-8095 Fax ', ''), (1463, 1463, 'Mr', 'Craig', 'Green', '', '6895 Ellicot Street Rd. (Rt. 63)', '', 'Pavilion', 'NY', '14525', '(585) 584-3132 ext ', '(585) 584-3466 Fax', ''), (1464, 1464, 'Mr', 'Eric', 'Albrecht', '', '3949 Forest Parkway, Suite 400', '', 'North Tonawanda', 'NY', '14120', '716-213-5832', '716-213-5850 Fax ', 'ealbrecht@unitedmaterialsllc.com'), (1465, 1465, 'Mr', 'Connie', 'Varsho', '', 'PO Box 2459', '', 'Youngstown', 'OH', '44509', '(330) 799-3221', '(330) 799-9098 Fax', ''), (1466, 1466, 'Mr', 'Joe', 'Lecker', '', 'PO Box 330', '', 'St. Marys', 'PA', '15857', '814-834-2470 Lori Ro', '814-834-6251 Fax ', ''), (1467, 1467, 'Mr', 'Jim', 'Mukanos', '', '889 Pennyslvania Avenue', '', 'Coraopolis', 'PA', '15108', '(412) 264-8835', '(412) 264-8849 FAX', ''), (1468, 1468, 'Mr', 'Aaron', 'Lavage ', '', '4000 Thousand Triangle Lane,Suite 200', '', 'Export', 'PA', '15632', '724-327-5200', '724-327-5280 Fax', 'rglenn@cecinc.com'), (1469, 1469, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1470, 1470, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1471, 1471, 'Mr', 'Lou ', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (1472, 1472, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (1473, 1473, 'Mr', 'Jim', 'Gagliardi', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (1474, 1474, 'Mr', 'Chuck', 'Dato', '', 'Fourth and Ross Streets', '', 'Pittsburgh', 'PA', '15219', '(412) 350-5929', '', ''), (1475, 1475, 'Mr', 'Jim', 'Fazalare', 'Cardinal Plant', '306 County Road 7 East', '', 'Brillant', 'OH', '43913-1089', '(740) 598-6589', '(740) 598-6602 Fax', ''), (1476, 1476, 'Mr', 'Bob', 'Rohn', '', 'PO Box 336', '', 'Alpena', 'MI', '49707', '(517) 354-4111', '', ''), (1477, 1477, 'Mr', 'Duane', 'Emmitt', '', 'PO Box 2001', '', 'Middleton', 'MA', '1949', '(330) 963-3500 ext. ', '330-963-3307', ''), (1478, 1478, 'Mr', 'Cullen', 'Wanbaugh', '', 'PO Box 3056', '', 'York', 'PA', '17402', '(717) 755-2933', '(717) 757-1574 Fax', ''), (1479, 1479, 'Mr', 'Mohammed', 'Naeem', '', '33000 Civic Center Drive', '', 'Livonia', 'MI', '48154', '(734) 466-2574', '(734) 466-2195 Fax', ''), (1480, 1480, 'Mr', 'Jim', 'Donajkowski', '', '5910 Scott Road', '', 'Hubbard Lake', 'MI', '49747', '(517) 727-2692', '', ''), (1481, 1481, 'Mr', 'Sean', 'Keenan', '', '2040 Dow Center', '', 'Midland', 'MI', '48674', '(989) 636-0789 (Mana', '(989) 638-9241 Fax', ''), (1482, 1482, 'Mr', 'Kelly', 'Dequire', '', '909 Linden Ave.', '', 'Rochester', 'NY', '14625', '(716) 586-3121 x221', '(716) 264-1498 Fax', ''), (1483, 1483, 'Mr', 'Randy', 'Best', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', ''), (1484, 1484, 'Mr', 'Norris', 'Pace', '', '1971 Gunnville Road', '', 'Lancaster', 'NY', '14086', '(716) 759-6911', '(716) 759-2949 Fax', ''), (1485, 1485, 'Mr', 'Janet', 'McCarroll, QC', '', 'RR 2 Box 311', '', 'Dallas', 'PA', '18612', '(717) 675-2717', '', ''), (1486, 1486, 'Mr', 'Gary', 'Rhinehart', '', 'PO Box 1453', '', 'Harrisburg', 'PA', '17105', '(717) 238-9331', '717-364-1640 Fax', ''), (1487, 1487, 'Mr', 'Mike', 'Urmson', '', 'PO Box 3000', '1818 North Main Street', 'Niles', 'OH', '44446', '(330) 652-2640', '(330) 652-4118 Fax', ''), (1488, 1488, 'Mr', 'Bob', 'Dostal', '', '10330 Brecksville Road', '', 'Brecksville', 'OH', '44141', '(440) 526-5600', '(440) 526-5601 Fax', ''), (1489, 1489, 'Mr', 'David', 'Jett', '', '3377 Hollenberg Drive', '', 'Bridgeton', 'MO', '63044', '(314) 739-2727', '', ''), (1490, 1490, 'Mr', 'Rick', 'Rotondo', '', 'PO Box 438', 'One Connelly Road', 'Emigsville', 'PA', '17318', '717-767-6868', '717-767-4023 Fax', ''), (1491, 1491, 'Mr', '', 'QC Manager', '', '3125 Soverign Drive', '', 'Lansing', 'MI', '48911', '(517) 394-5700', '', ''), (1492, 1492, 'Mr', 'Steve', 'Pulley', '', 'PO Box 128', '', 'Lancaster', 'NY', '14086', '(716) 685-2821', '716-685-2821 Fax sam', ''), (1493, 1493, 'Mr', 'Bob', 'Sabatini', '', 'PO Box 30', '', 'Bristol', 'PA', '19007', '(215) 788-5571', '(215) 788-5204 Fax', ''), (1494, 1494, 'Mr', 'Bob', 'Jeffery', '', '10215 Fernwood Road Suite 250', '', 'Bethesda', 'MD', '20817-1106', '(301) 564-9355', '(310) 530-6376 Fax', ''), (1495, 1495, 'Mr', 'Dave', 'Patterson', '', 'PO Box 1295', '', 'Williamsport', 'PA', '17703', '(570) 326-7077', '(570) 326-4990 Fax', ''), (1496, 1496, 'Mr', 'Bill', 'Tantlinger', '', 'PO Box 4096', '', 'New Kensington', 'PA', '15068', '(412) 335-6000', '(412) 335-3834 Fax', ''), (1497, 1497, 'Mr', 'Robert', 'Congleton', '', '613 Laco Drive ', '', 'Lexington', 'KY', '40510', '859-229-0816', '859-231-6184 Fax ', ''), (1498, 1498, 'Mr', 'William', 'Hanlon', '', 'PO Box 900', '262 South Water Street', 'Kittanning', 'PA', '16201', '724-548-8058', '724-548-8055 Fax ', 'rljohnson2001@windstream.net'), (1499, 1499, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hillard', 'OH', '43026-0550', '614-876-1700 ext 320', '614-876-1899 Fax', ''), (1500, 1500, 'Mr', 'Jackie', 'Patterson', '', '1101 Railroad Street', '', 'Monongahela', 'PA', '15063', '724-258-6900', '724-258-8075 Fax', ''), (1501, 1501, 'Mr', 'Kirk', 'Myers', '', 'PO Box 461', '', 'Hanover', 'PA', '17331', '717-632-7722', '717-630-8441 Fax', 'kmeyers@conewago.com'), (1502, 1502, 'Mr', 'Denny', 'Fry', '', '300 East Big Beaver Road', '', 'Troy', 'MI', '48083', '248-307-5867 (Discon', '248-307-5868 Fax (Di', 'dclugh@lear.com'), (1503, 1503, 'Mr', 'Carroll', 'Bowles', '', '14 Onion Blvd.', '', 'Shrewsbury', 'PA', '17361', '(717) 235-6351', '717-227-1259', ''), (1504, 1504, 'Mr', 'Tracy', 'Treneff', '', '620 Liberty Road', '', 'Delaware', 'OH', '43015', '740-363-1376', '740-363-1377 Fax', ''), (1505, 1505, 'Mr', 'Ashley', 'Weis', '', '215 Rainbow Street', '', 'Wadsworth', 'OH', '44281', '330-335-0606', '330-335-0908 Fax', ''), (1506, 1506, 'Mr', 'Gary', 'Sams', '', '1401 South Pine Avenue', '', 'Warren', 'OH', '44483', '330-393-4101', '330-393-4102 Fax', ''), (1507, 1507, 'Mr', 'Dave', 'Chilcote Sr.', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1508, 1508, 'Mr', 'Andy ', 'Rose', 'Engineering & Science', '450 Schoolhouse Road', '225 E &amp; S Building', 'Johnstown', 'PA', '15904', '814-269-7249', '814-269-7245 Fax', 'androse@pitt.edu'), (1509, 1509, 'Mr', 'Kerry', 'Hornyak', '', '1595 Route 422 E', '', 'Fenelton', 'PA', '16034', '724-283-6200', '724-283-1067 Fax', ''), (1510, 1510, 'Mr', 'Amit', 'Ghosh', '', 'Dow Herbert H Building', '3062 H.H. Dow 2136', 'An Arbor', 'MI', '48109-2136', '734-764-3322 Prof Gh', '734-764-4292 Dept. F', 'akg@umich.edu'), (1511, 1511, 'Mr', 'Dave', 'Rowland ', '', '637 E. Dixie Drive ', '', 'West Carroltown', 'OH', '45449', '937-847-9707', '937-847-9720 Fax ', ''), (1512, 1512, 'Mr', 'Alma', 'Long', '', 'PO Box 346', '', 'Evans City', 'PA', '16033-9362', '(724) 538-1114', '(724) 538-1119 Fax', ''), (1513, 1513, 'Mr', 'Butch', 'DeNunzio', '', '7865 Estate Mariendahl #11', '', 'St. Thomas', 'USVI', '802', '340-775-0100', '340-692-2889 Fax', 'g.moorehead@heavymaterialsvi.com'), (1514, 1514, 'Mr', 'Linda', 'Wade', '', '7865 Estate Mariendahl #11', '', 'St. Thomas', 'USVI', '802', '(340) 775-0100 Linda', '(340) 777-7499 Fax', 'g.moorehead@heavymaterialsvi.com'), (1515, 1515, 'Mr', 'Ken', 'Eastman', '', 'PO Box 1127 Christiansted', '', 'St. Croix', 'USVI', '821', '340-773-6651 Ken Hom', '340-778-1394 Fax ', 'caribbeanqualitycontrol@gmail.com'), (1516, 1516, 'Mr', 'Ken', 'Eastman', '', 'PO Box 1127 Christiansted', '', 'St. Croix', 'USVI', '821', '340-773-6651 Ken Hom', '340-778-1394 Fax ', 'caribbeanqualitycontrol@gmail.com'), (1517, 1517, 'Mr', 'Kenneth', 'Helliger', '', '72-B, Main Street', 'Roadtown', 'Tortola', 'BVI', 'VG1110', '284-494-6023', '284-494-4966 Fax', 'scp@skeltongroups.com'), (1518, 1518, 'Mr', 'Julio', 'King', '', 'PO Box 303483', '', 'St. Thomas', 'USVI', '803', '340-775-9813', '304-775-2016 Fax ', 'jking@jubking.com'), (1519, 1519, 'Mr', 'Fred', 'Mohammed, Jr.', '', 'PO Box 2354', 'Frederiksted', 'St. Croix', 'USVI', '841', '340-642-0859 Cell ', '', 'fredmohammed@yahoo.com '), (1520, 1520, 'Mr', 'Rosemary', '', '', 'PO Box 600122', '9-1 Estate Bellevue', 'St. Thomas', 'USVI', '801', '340-714-5435 Rosemar', '340-777-5779 Fax', 'don@stjohnvi.net'), (1521, 1521, 'Mr', 'Ken', 'Floyd', '', '', '', 'St. Thomas', 'USVI', '802', '340-332-5700 Ken', '', 'kfloyd@vipaving.net'), (1522, 1522, 'Mr', 'Tony', 'Coffett', '', '6501 Red Hook Plaza', 'Suite 201', 'St. Thomas', 'USVI', '802', '(340) 775-2072', '340-779-2207 Fax', 'dsmith@kraus-manning.com'), (1523, 1523, 'Mr', 'Roxane', 'Ritter', '', 'PO Box 3511 Road Town ', '', 'Tortola', 'BVI', 'VG1110', '284-494-3259', '284-494-5175 Fax/284', 'cballie@tortolaconcrete.com'), (1524, 1524, 'Mr', 'Paola', 'Flax', '', 'PO Box 1062 The Valley', '', 'Virgin Gorda', 'BVI', '', '284-495-5672', '284-495-5674 Fax ', 'tomm@redhorseconsructors.com'), (1525, 1525, 'Mr', 'Donald', 'Law', '', '9 - 10 Gallows', '', 'St. Croix', 'USVI', '820', '340-514-3500', '866-267-1882 Fax', 'donlaw@vitestengineers.com'), (1526, 1526, 'Mr', 'Jeanne', 'Zorne - Acct Payable', '', '1000 American Bridge Way', '', 'Coraopolis', 'PA', '15108', '412-631-1000', '412-631-2000 FAX', 'mbacon@abfacilities.com'), (1527, 1527, 'Mr', 'Kem', 'Ketcham', '', 'PO Box 7368', '', 'St. Thomas', 'VI', '801', '(340) 775-0100', '(340) 775-2926 Fax', ''), (1528, 1528, 'Mr', 'Kem', 'Ketcham', '', 'PO Box 7368', '', 'St. Thomas', 'VI', '801', '(340) 775-0100', '(340) 775-2926 Fax', ''), (1529, 1529, 'Mr', 'Tom', 'Fritz', '', '5430 West Tyson Avenue', '', 'Tampa', 'FL', '33611', '813-254-4127 Tim/Cat', '813-259-4754 Fax ', ''), (1530, 1530, 'Mr', 'Tom', 'Wilson', '', '97 Main Street', '', 'Fredonia', 'PA', '16124', '(724) 485-2511', '(724) 475-3057 Fax', 'tom.wilson@oldcastle.com'), (1531, 1531, 'Mr', 'Bob', 'Andrews', '', '811 West State Street', '', 'St. Johns', 'MI', '48879', '989-224-2642', '989-224-3455 Fax', ''), (1532, 1532, 'Mr', 'Melissa', 'DeSmith', '', '700 S. River Road', '', 'Waterville', 'OH', '43566', '419-878-7304', '419-878-7305 Fax', 'tbaugher@cct-inc.net'), (1533, 1533, 'Mr', 'Patrick', 'Cook', '', 'PO Box 2229', '', 'Kalamazoo', 'MI', '49003', '(269) 342-0136', '(269) 384-0194 Fax', 'pecook@consumersconcrete.com'), (1534, 1534, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0040', '614-848-6712 Fax', 'srobinson@dlz.com'), (1535, 1535, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0040', '614-848-6712 Fax', 'srobinson@dlz.com'), (1536, 1536, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0040', '614-848-6712 Fax', 'srobinson@dlz.com'), (1537, 1537, 'Mr', 'Dave', 'Hammontree', '', '7505 Highway M-71', '', 'Durand', 'MI', '48429', '989- 288-2661 Ext. 2', '989- 288-6918 Fax', ''), (1538, 1538, 'Mr', 'Bob', 'Washbaugh', '', '401 Kelton St.', '', 'Bay City', 'MI', '48706', '989-892-3545/800-222', '989- 892-4695 Fax', 'neil@ncp_inc.com'), (1539, 1539, 'Mr', 'Joel', 'Walter', '', '3120 Sovereign Dr. Suite C', '', 'Lansing', 'MI', '48911', '(517) 394-5700', '(517) 394-5796 Fax', 'joe.walter@psiusa.com'), (1540, 1540, 'Mr', 'Lou', 'Northouse', '', '4705 Clyde Park Avenue SW', '', 'Grand Rapids', 'MI', '49509', '616-406-1756', '616-406-1749 Fax', 'hugo@sme-usa.com'), (1541, 1541, 'Mr', 'Scott', 'Steiner', '', '2663 Eaton Rapids Road', '', 'Plymouth', 'MI', '48911', '517-887-9181', '517-887-2666 Fax', 'neumann@sme-usa.com'), (1542, 1542, 'Mr', 'Tina', 'Klein', 'Attn: Tina Klein', '36 S College Street', '', 'Akron', 'OH', '44325', '330-972-6591 Tina', '330-972-5564 Fax', ' '), (1543, 1543, 'Mr', 'Ben', 'Whitmire', '', '8950 N. Dixie Highway', '', 'Bluffton', 'OH', '45817', '419-358-6946 ', '419-358-6258 Fax ', 'ben@blufftonprecast.com '), (1544, 1544, 'Mr', 'Josh', 'Gottschall', '', '5859 Sherman Road', '', 'Saginaw', 'MI', '48604', '989- 752-6500', '989- 752-6600 Fax', ''), (1545, 1545, 'Mr', 'Robert', 'Tober', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '(734) 454-9900', '734-454-0629 Fax', 'tober@sme-usa.com'), (1546, 1546, 'Mr', 'Melissa', 'DeSmith', '', '700 S. River Road', '', 'Waterville', 'OH', '43566', '419-878-7304', '419-878-7305 Fax', 'mitch@cct-inc.net'), (1547, 1547, 'Mr', 'Destain', 'Gingell', '', '519 Huron Ave.', '', 'Port Huron', 'MI', '48060', '810-984-5596 ext 126', '810-984-8760 Fax', 'mail@bmjinc.com'), (1548, 1548, 'Mr', 'Dave', 'Shafer', '', '9266 Snows Lake Road', '', 'Greenville', 'MI', '48838', '616-754-5545', '616-754-5546 Fax', 'toviatt@highgradematerials.com'), (1549, 1549, 'Mr', 'Rick', 'Saum', '', '1919 E US 12', '', 'Michigan City', 'IN', '46360', '219-874-4217', '219-979-6728 Fax', 'rsaum@itwccna.com'), (1550, 1550, 'Mr', 'Aziz', 'Shandker', 'Accounts Payable Department', '1480 Ford Street', '', 'Maumee', 'OH', '43537', '419-794-3500', '313-875-2732 Fax/313', '9Z12K@lakeshoreeng.com'), (1551, 1551, 'Mr', 'Sam', 'Wagner', '', '10475 N. Ann Arbor Road', '', 'Milan', 'MI', '48160', '1-800-821-0265', '734-439-8311 Fax', 'dcwagner@provide.net'), (1552, 1552, 'Mr', 'Michael', 'Barber', '', '2235 Pipestone Road', '', 'Benton Harbor', 'MI', '49022', '(269) 925-0212', '(269) 925-5222 Fax', 'mbarber@monoceramics.com'), (1553, 1553, 'Mr', 'Jim', 'Dillingham', '(Also Nordlund & Associates)', '815 East Ludington Ave.', '', 'Ludington', 'MI', '49431', '231-843-3485', '(231) 843-7676 Fax', 'Jmordlun@t-one.net'), (1554, 1554, 'Mr', 'Rich', 'Van Nett', '', '2534 Black Creek Road', '', 'Muskegon', 'MI', '49444', '231-777-3447', '231-773-3453 FAX', 'rvannett@westshoreconsulting.com'), (1555, 1555, 'Mr', 'Dale', 'Raines', '', '17700 Fort Street', '', 'Riverview', 'MI', '48183', '(734) 285-7510', '(734) 285-7572 Fax', 'bflorek@charlesraines.com'), (1556, 1556, 'Mr', 'Mike', 'Myer', '', '665 Johnson Street', '', 'Alpena', 'MI', '49707', '(989) 356-9021 ', '(989) 356-8776 Fax', 'myerm@alpenacc.edu'), (1557, 1557, 'Mr', 'Andy', 'Wilk', '', '1435 Ford Avenue', '', 'Alpena', 'MI', '49707', '989- 354-4171', '989- 354-2223 Fax', 'andy.wilk@lafarge-na.com'), (1558, 1558, 'Mr', 'Rich ', 'Brewster', '', '401 Kelton Street', '', 'Bay City', 'MI', '48706', '989-892-3545', '898-892-4695 Fax', ''), (1559, 1559, 'Mr', 'Rich ', 'Brewster', '', '401 Kelton Street', '', 'Bay City ', 'MI', '48706', '989-892-3545', '989-892-4695 Fax', 'rbrewster@ncp-inc.com'), (1560, 1560, 'Mr', 'Scott', 'Boughner', '', '401 Kelton Street', '', 'Bay City', 'MI', '48706', '989-892-3545', '989-892-4695 Fax', 'rbrewster@ncp-inc.com'), (1561, 1561, 'Mr', 'Susan ', 'Brown', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '(734) 454-9900', '(734) 454-0629 Fax', 'emichener@sme-usa.com'), (1562, 1562, 'Mr', 'Susan', 'Brown', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '(734) 454-9900', '(734) 454-0629 Fax', 'emichener@sme-usa.com'), (1563, 1563, 'Mr', 'Josh', 'Gottschall', 'Formally:Wilcox Professional Service', '5859 Sherman Road', '', 'Saginaw ', 'MI', '48604', '989- 752-6500', '989- 752-6600 Fax', 'tjdorey@yahoo.com'), (1564, 1564, 'Mr', 'Josh', 'Gottschall', '', 'One Madison Avenue', '', 'Cadillac', 'MI', '49601', '(231) 775-7755', '(231) 775-3135 Fax', 'phowson@wilcoxassociates.com'), (1565, 1565, 'Mr', 'Jody', 'Odelberg', '', '1435 Ford Avenue', '', 'Alpena', 'MI', '49707', '989- 358-3237', '989- 354-2223 Fax', 'jody.odelberg@lafarge-na.com'), (1566, 1566, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1567, 1567, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1568, 1568, 'Mr', 'Lou ', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (1569, 1569, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'pouton389@aol.com'), (1570, 1570, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1571, 1571, 'Mr', '', '', '', '8439 Glazebrook Drive', '', 'Richmond', 'VA', '23228', '804-553-0244', '804-553-0272 Fax', ''), (1572, 1572, 'Mr', 'Tamara', 'Detillo', '', '4347 Jeffery Drive', '', 'Baton Rouge ', 'LA', '70816', '', '', ''), (1573, 1573, 'Mr', 'KB', 'van Oene', 'Civil Engineering', '150 W. University Blvd', '', 'Melbourne', 'FL', '32901', '321-674-7555', '321-674-7565 Paul\'s ', 'cosintin@fit.edu & kvanoene@fit.edu'), (1574, 1574, 'Mr', 'Jerry', 'Hoke', '', 'PO Box 498', '', 'Union', 'WV', '24983', '304-772-5736', '304-772-5736 *54 to ', ''), (1575, 1575, 'Mr', '', '', '', '164 North Main Street', 'PO Box 663', 'Wellsville', 'NY', '14895', '(585) 593-2741 Ext. ', '(585) 593-3207 Fax', ''), (1576, 1576, 'Mr', 'Aldo', 'Morelli', '', '259 Eberl St.', '', 'St. Marys', 'PA', '15857', '(814) 781-7333 EXT:', '(814) 834-9201 Fax', ''), (1577, 1577, 'Mr', 'Doug', 'Brooks', '', 'PO Box 400', '', 'New Stanton', 'PA', '15672', '724-925-3565 ', '724-925-2644 Fax', 'helenb@generalnuclearcorp.com'), (1578, 1578, 'Mr', 'Ed', 'Calhoun', '', '4201 State Rt. 51', '', 'Belle Vernon', 'PA', '15012', '412-382-8957 Office', '', ''), (1579, 1579, 'Mr', 'Carla', 'Palmieri', '', '690 Commonwealth Center', '11003 bluegrass Pky', 'Louisville', 'KY', '40299', '502-267-0700', '502-267-5900 FAX', ''), (1580, 1580, 'Mr', 'Ted', 'Keener', '', 'One Cook Place', '', 'Bridgman', 'MI', '49106', '(269) 465-5901 x70', '(269)- 466-2819 Fax', ''), (1581, 1581, 'Mr', 'Adam', 'Leadbetter', '', '143 Business Center Drive', '', 'Birmingham', 'AL', '35244', '205-283-6086 Ronnie ', '', ''), (1582, 1582, 'Mr', 'Jeff', '', '', '143 Business Center Drive', '', 'Birmingham', 'AL', '35244', '205-283-6082 Jeff Ce', '', ''), (1583, 1583, 'Mr', 'Jim', 'Vermillion', '', '13005 Middletown Industrial Blvd.', 'Suite D', 'Louisville', 'KY', '40223', '(502) 244-3848', '(502) 244-3580', ''), (1584, 1584, 'Mr', 'Larry', 'Green', '', '410 Rouser Road', '', 'Coraopolis', 'PA', '15108-2767', '(412) 459-8547', '', ''), (1585, 1585, 'Mr', 'Stan', 'Kochuba', '', '410 Rouser Road', '', 'Coraopolis', 'PA', '15108-2767', '(412) 269-7340', '', ''), (1586, 1586, 'Mr', 'Jerry', 'Halloran', '', 'PO Box 515 Solvay Road', '', 'Jamesville', 'NY', '13078', '315-492-4033', '', ''), (1587, 1587, 'Mr', 'Barry ', 'Fitzgerald', '', '1550 Connor Drive', '', 'South Park', 'PA', '15129', '724-348-4577', '724-348-8611', ''), (1588, 1588, 'Mr', 'Roger', 'Shepler', '', '2200 Military Road', '', 'Tonawanda', 'NY', '14150', '(716) 692-3680', '(716) 693-3402 Fax', ''), (1589, 1589, 'Mr', 'Dave', 'Dambrun', '', 'PO Box 635', '6716 Lansing Road', 'Diamond Dale', 'MI', '48821-0635', '(517) 646-7800', '', ''), (1590, 1590, 'Mr', 'Jamie', 'Kuchnicki', '', 'PO Box 80', '', 'Essexville', 'MI', '48732', '(989) 894-4581', '(989) 894-0520 Fax', ''), (1591, 1591, 'Mr', 'Ryan', 'Jackson', '', 'PO Box 09259', '9600 West Jefferson Avenue', 'Detroit', 'MI', '48209', '313-849-1890', '313-849-1893 Fax', ''), (1592, 1592, 'Mr', 'Jason', 'Piper', '', '921 South Jefferson', '', 'Midland', 'MI', '48641', '989-835-7187', '', ''), (1593, 1593, 'Mr', 'Ed', 'Smith', '', '975 John Street', '', 'West Henrietta', 'NY', '14586', '585-475-0450', '585-475-0469 FAX', ''), (1594, 1594, 'Mr', 'Charles', 'Lamange', '', '2696 Chicago Drive 3W', '', 'Grand Rapids', 'MI', '49509', '(616) 534-9645 x645', '(616) 534-0118 Fax', ''), (1595, 1595, 'Mr', 'Mike', 'Green', '', '156 Woodrow Avenue', '', 'St. Clairsville', 'OH', '43950', '(740) 695-9977 ext 1', '(740) 695-7298 Fax', ''), (1596, 1596, 'Mr', 'Jim', 'Wilhelm', 'PA Soil and Rock', '410 North 3rd Street', '', 'Youngwood', 'PA', '15697', '724-640-7916 Jim Cel', '724-853-3542 Home Of', ''), (1597, 1597, 'Mr', 'Sherry', 'O\'Brien', '', 'PO Box 37', '520 Peru Road', 'Groton', 'NY', '13073', '(607) 898-3188', '(607) 898-9903 Fax', ''), (1598, 1598, 'Mr', 'Brian', 'Kozlowicz', '', '45650 Grand River', '', 'Novi', 'MI', '48374', '(248) 348-2680', '(248) 348-2777 Fax', ''), (1599, 1599, 'Mr', 'Elaine', 'Boda', '', 'PO Box 66 ', '', 'Ruffelton', 'PA', '15076', '1-800-732-2420', '724-265-3323 Fax', ''), (1600, 1600, 'Mr', 'Russell', 'Bolyard', '', 'Rt. 26, Old Tunnelton Pike', 'PO Box 603', 'Kingwood', 'WV', '26537', '304-329-2594', '304-329-2447 FAX', ''), (1601, 1601, 'Mr', 'Tom', 'Hamilton', '', '2415 N Triphammer, Suite 3', '', 'Ithaca', 'NY', '14850', '(607) 266-0147', '(607) 266-6409 Fax', ''), (1602, 1602, 'Mr', 'Joel', 'Guanella', '', '1837 County Highway J', '', 'Chippewa Falls', 'WI', '54729', '715-832-0282', '', ''), (1603, 1603, 'Mr', 'Winston', 'Morris', '', '107 West 2nd Street', '', 'Maysville', 'KY', '41056', '606-564-5508', '', ''), (1604, 1604, 'Mr', 'Rick', 'Coon', '', '100 East Chapin', '', 'Cadillac', 'MI', '49601', '(616) 775-3487', '(616) 775-0301 Fax', ''), (1605, 1605, 'Mr', 'John', 'Reincke', 'M & T Div-Research Lab Section', 'Secondary Complex, 8885 Ricks Rd.', '', 'Lansing', 'MI', '48909', '(517) 373-2157', '', ''), (1606, 1606, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (1607, 1607, 'Mr', 'Don', 'Thomas', '', 'PO Box 325', '', 'Wheatland', 'PA', '16161', '(412) 347-2227', '(412) 347-2240 Fax', ''), (1608, 1608, 'Mr', 'Ryan ', 'Rasmussen', 'Engineering Manager/QC Dept.', '6600 Mount Elliott Avenue', '', 'Detroit', 'MI', '48211-2437', '', '', ''), (1609, 1609, 'Mr', 'Bob', 'Smith', '', 'RD2 Old Rt. 119', '', 'Homer City', 'PA', '15748', '(724) 349-5858', '', ''), (1610, 1610, 'Mr', 'Darren', 'Dusenbery', '', 'PO Box 1689', '', 'Saginaw', 'MI', '48605', '(517) 754-4717', '(517) 754-4440 Fax', ''), (1611, 1611, 'Mr', 'Meghana', 'Phadenif', '', '16000 Bells Bay Road', '', 'Charlevoix', 'MI', '49720', '231-237-1362', '231-547-6202 Fax', ''), (1612, 1612, 'Mr', 'Vince', 'Wojtyna', '', '2025 N. Wabash St.', '', 'Kokomo', 'IN', '46903', '765-457-7277', '765-868-9366 Fax', ''), (1613, 1613, 'Mr', 'Wayne ', 'Rosenberg', '', '4091 Saltsburg Road', 'Suite M', 'Murraysville', 'PA', '15668', '412-798-3272', '', ''), (1614, 1614, 'Mr', 'Donald', 'Dixon', '', '6512 A Basile Rowe', '', 'E. Syracuse', 'NY', '13057', '(315) 463-0088', '(315) 463-0754 Fax', ''), (1615, 1615, 'Mr', 'Bill', 'Pinkerton', 'Testing & Inspection Office', '33809 Michigan Ave.', '', 'Wayne', 'MI', '48184', '(734) 595-6504 ext.', '734-595-6556 Fax', ''), (1616, 1616, 'Mr', 'Kerry', 'Hornyak', '', '1595 Route 422 E', ' ', 'Fenelton', 'PA', '16034', '724-283-6200', '724-283-1067 Fax', ''); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (1617, 1617, 'Mr', 'Chuck', 'Thomas', '', '5305 M115', '', 'Cadillac', 'MI', '49601', '231-775-3761 ', '231-775-0072 Fax', ''), (1618, 1618, 'Mr', 'Tom', 'Lapikas', '', 'PO Box 492', '', 'Sharon', 'PA', '16146', '(724) 981-5200 x264 ', '(724) 981-5267 Fax', 'tlapikas@sharontube.com'), (1619, 1619, 'Mr', 'Larry ', 'Kitko', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '814-278-6928', '(814) 238-0131 Fax', ''), (1620, 1620, 'Mr', 'Steve', 'Spear', '', '516 Parkway View Drive', '', 'Pittsburgh', 'PA', '15205', '412-788-8308', '412-788-8370 Fax', ''), (1621, 1621, 'Mr', 'Dan', 'Powers', '', '3862 East Street', '', 'Pittsburgh', 'PA', '15214', '412-231-8600', '', ''), (1622, 1622, 'Mr', 'Ron', 'Donajkowski', '', '2151 Cass Rd.', '', 'Traverse City', 'MI', '49684', '231-946-9310', '231-946-8926 Fax', ''), (1623, 1623, 'Mr', 'Matt', 'Ray', 'Accounting Department ', '10 Wilson Road ', '', 'Eighty Four ', 'PA', '15126', '724-745-2288', '724-745-2268 Fax', 'matthew.ray@ipaper.com '), (1624, 1624, 'Mr', 'Mike', 'Capuzzi', '', '200 Hunt Valley Road', '', 'New Kensington', 'PA', '15068', '412-335-6000', '412-335-3834 Fax ', ''), (1625, 1625, 'Mr', 'Mike ', 'Rose', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314 Fax ', ''), (1626, 1626, 'Mr', 'Tim', 'Britton', ' Formerly Allegheny Clearfield', '114 Appalachian Drive', 'Fireman\'s Industrial Park', 'Clearfield', 'PA', '16830', '814-765-2474 ext. 13', '814-765-1530 Fax ', 'AKritzer@netshapetech.com'), (1627, 1627, 'Mr', 'Kim', 'Headley', '', '2426 Perry Highway', '', 'Hadley', 'PA', '16130', '724-253-3161 ext: 14', '724-253-3853 Fax', ''), (1628, 1628, 'Mr', 'Ray', 'Houghton', '', 'PO Box 1047', '', 'Findlay', 'OH', '45839', '(607) 565-3913 ext 2', '419-424-8300 FAX', ''), (1629, 1629, 'Mr', 'Jerry', 'Wolff', '', '140 E. 16th St. ', '', 'Erie', 'PA', '16503', '814-464-0262', '814-464-0268 Fax', 'jwolff@industrialpapers/inc.com'), (1630, 1630, 'Mr', 'Joe', 'Reed', '', '123 County Road 101', '', 'South Bethlehem', 'NY', '12161', '518-767-0650', '518-767-9390 Fax', ''), (1631, 1631, 'Mr', 'Gary', 'Kibbe', '', 'PO Box 1049', '', 'Holland', 'MI', '49422', '(616) 735-6500', '(616) 735-6700 FAX', 'gkibbe@challenge-mfg.com '), (1632, 1632, 'Mr', 'Gayle', 'Betten', '', '200 South Pioneer Blvd.', '', 'Springboro', 'OH', '45066-0430', '937-746-8500 x2004 G', '937-746-2524 Fax', ''), (1633, 1633, 'Mr', 'Elin', 'Jensen', 'Dept. of Civil Engineering', '', '2340 Haywood St.', 'Ann Arbor', 'MI', '48109', '734-763-9660 Will Ha', '', 'eajensen@engin.umich.edu'), (1634, 1634, 'Mr', 'Angela', 'Droullard', 'The Prestress Group ', 'PO Box 32996', '', 'Detroit', 'MI', '48232', '519-737-1216 x261 An', '519-737-6464 Fax ', ''), (1635, 1635, 'Mr', 'Jeremy', 'Ball', '', '19153 W. Howard City / Edmore Rd.', '', 'Howard City', 'MI', '49329', '231-937-7780', '231-937-2281Fax', ''), (1636, 1636, 'Mr', 'Larry', 'Reznicek', '', '7601 West 79 Street', '', 'Bridgeview', 'IL', '60455', '708-458-0400', '', ''), (1637, 1637, 'Mr', 'John', 'Guida', '', 'PO Box 8768', '', 'Houston', 'TX', '77249-8768', '713-692-915', '', ''), (1638, 1638, 'Mr', 'Lawson', 'Adams', 'Soil and Materials Lab', 'PO Box 54, Wellington Road', '', 'Basseterre, St. Kitts', 'VI', '', '869-456-2521 ext. 12', '869-465-5501', ''), (1639, 1639, 'Mr', 'Kem', 'Ketcham', '', 'PO Box 7368', '', 'St. Thomas', 'VI', '801', '(340) 775-0100', '(340) 775-2926 Fax', ''), (1640, 1640, 'Mr', 'John', 'Locke', '', 'Harbour View', 'Airport Road 160', 'St. Maarten', 'VI', '', '(011) 5995-20737', '27520- FAX', ''), (1641, 1641, 'Mr', 'Christy', '', '', '210-3A Altona Suite 201', '', 'St. Thomas', 'USVI', '802', '340-777-9644 ', '340-777-9630 Fax ', 'fwoods@viaaccess.net '), (1642, 1642, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-8553 Fax', 'smontill@pupr.edu'), (1643, 1643, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', 'impujals@yahoo.com '), (1644, 1644, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', 'lcarreras@act.dtop.gov.pr'), (1645, 1645, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'gcruz@cmt-PR.com'), (1646, 1646, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'javier.rodriguez@essroc.com'), (1647, 1647, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 366259', '', 'San Juan', 'PR', '', '(800) 981-4133', '(787) 764-8553 Fax', 'williamgranell@hotmail.com'), (1648, 1648, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'concrete@fernandobuxo.com '), (1649, 1649, 'Mr', '', '', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1650, 1650, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'dtorres@act.dtop.gov.pr'), (1651, 1651, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-7830', ''), (1652, 1652, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'm.curdero@emdi.net'), (1653, 1653, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '(787) 764-8553 Fax', 'mmgonzalez@emdi.net'), (1654, 1654, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', 'rrodriguez@geo-explor.com'), (1655, 1655, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'tdl@geoconsult.us'), (1656, 1656, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'jarodriguezjust@yahoo.com'), (1657, 1657, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'suelos@caribe.net'), (1658, 1658, 'Mr', '', '', '', 'GPO Box 366259', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1659, 1659, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1660, 1660, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8533 Fax', 'juanchi@macromixpr.com'), (1661, 1661, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'mcurdero@emdi.net'), (1662, 1662, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'nlazaro@centralindustrialpr.com'), (1663, 1663, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'lbarreto@act.dtop.gov.pr'), (1664, 1664, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'wsoil@prtc.net'), (1665, 1665, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', 'puntarenas@choicecable.net'), (1666, 1666, 'Mr', 'Miguel', 'Rivera', '', 'GPO Box 366259', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1667, 1667, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'jdespiau@despiau.net'), (1668, 1668, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'rdavila@geocim.com '), (1669, 1669, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'mocaconcretepoles@gmail.com '), (1670, 1670, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133 / 787', '(787) 764-8553 Fax', 'smontill@pupr.edu'), (1671, 1671, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'wfigueroa@mlprecast.com'), (1672, 1672, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'antrodriguez@act.dtop.gov.pr '), (1673, 1673, 'Mr', 'Adrianna ', 'Moertlbauer', '', '2 Penn Center West Blvd', 'Suite 430', 'Pittsburgh ', 'PA', '15276', '412-294-1011 Sue Fuc', '724-652-6664 Fax', 'adrianna.moertlbauer@rescoproducts.com'), (1674, 1674, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'cist@carmelo.com'), (1675, 1675, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax ', 'verivera@prtc.net'), (1676, 1676, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax ', 'verivera@prtc.net'), (1677, 1677, 'Mr', '', '', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-7830', 'mmgonzalez@emdi.net'), (1678, 1678, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'rrivera@qualityconcretemix.com'), (1679, 1679, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1680, 1680, 'Mr', 'Joel', 'Torres Cruz', 'Portugues & Bucana Residence Office', 'Jacksonville District Corp of Engineers', 'PO Box 7825', 'Ponce', 'PR', '00732-7825', '(787) 841-3181', '', ''), (1681, 1681, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 3633-7', '', 'San Juan', 'PR', '', '800-981-4133', '787-764-8553 Fax', ''), (1682, 1682, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-7830 Fax', ''), (1683, 1683, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1684, 1684, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1685, 1685, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1686, 1686, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1687, 1687, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '', '(787) 764-8553 Fax', ''), (1688, 1688, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1689, 1689, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1690, 1690, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1691, 1691, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1692, 1692, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1693, 1693, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1694, 1694, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1695, 1695, 'Mr', '', '', '', 'GPO Box 363307', '', 'San Juan', 'PR', '', '(800) 981-4133', '(787) 764-8553', ''), (1696, 1696, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1697, 1697, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1698, 1698, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1699, 1699, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'olgaromanvaldes@yahoo.com '), (1700, 1700, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'jarodriguezjust@yahoo.com'), (1701, 1701, 'Mr', 'Lisa', 'Campbell', '', 'PO Box 12', '', 'Mitchells ', 'VA', '22729', '540-829-7203', '540-829-5593 Fax', 'lhaun@dalholding.com '), (1702, 1702, 'Mr', 'Wasi', 'Kahn', 'Goverment Services Cluster', '2000 14th Street N.W.', '6th Floor', 'Washington', 'DC', '20009', '202-671-2316 Wasi', '202-673-6877 Fax/202', 'wasi.khan@dc.gov'), (1703, 1703, 'Mr', 'Irv', 'Fischer', '', '1202 Technology Drive, Suite D', '', 'Aberdeen', 'MD', '21001', '410-297-8108', '410-297-8151 Fax', 'majewicz@ecslimited.com'), (1704, 1704, 'Mr', 'Dung', 'Tran', '(Formerly Engineering Consulting Svcs)', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '703-471-8400', '703-834-5527 Fax', 'jpatel @ecslimited.com'), (1705, 1705, 'Mr', 'Dung', 'Tran', '', '14026 Thunderbolt Place, Suite 100', ' ', 'Chantilly', 'VA', '20151', '(703) 471-8400', '(703) 834-5527 Fax', 'jpatel @ecslimited.com'), (1706, 1706, 'Mr', 'Scott', 'Hanks', 'Attn: Scott Hanks', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '410-847-3267 ', '410-847-3354 Fax', 'Shawn.Kennedy@lafarge-na.com'), (1707, 1707, 'Mr', 'Mark', 'Anderson', '', '970 Mercer Rd.', '', 'Franklin', 'PA', '16323', '(814) 437-3013', '814-437-2497 Fax', 'fconcrete@csonline.net'), (1708, 1708, 'Mr', 'Lynda', 'DiNardo', '', '19218 Redwood Road', '', 'Cleveland', 'OH', '44110', '1-800-321-7628', '216-531-9596 Fax', 'dineenda@euclidchemical.com'), (1709, 1709, 'Mr', 'Nancy', 'Hornyak', '', 'PO Box 930', '', 'Fairview', 'PA', '16415', '(814) 474-4777', '(814) 474-2848 Fax', ''), (1710, 1710, 'Mr', 'Brian', 'Chestnut', '', '34 Strohm Road', '', 'Shippensburg', 'PA', '17257', '(717) 532-5959', '(717) 532-7997 Fax', 'bchestnut@lane-enterprises.com'), (1711, 1711, 'Mr', 'Tom', 'Zook', '', '2649 Front Mountain Road ', '', 'Bellville', 'PA', '17004', '717-483-6538', '717-483-6055 FAX', 'batch@bigvalleycreek.com'), (1712, 1712, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com '), (1713, 1713, 'Mr', 'Tom', 'Irwin', '', 'PO Box 438', 'One Connelly Road', 'Emigsville', 'PA', '17318', '717-767-6868', '717-767-4023 Fax', 'tom.irwin@oldcastleatg.com'), (1714, 1714, 'Mr', 'Helen', 'Grzib', '', '8004 Lincoln Dr. West', 'Suite A', 'Marlton', 'NJ', '8053', '856-985-3400', '856-935-7700 Fax', 'leof@sjaconstruction.com'), (1715, 1715, 'Mr', 'Chris', 'Gifford', ' ', 'PO Box 206', '', 'Thomasville', 'PA', '17364', '(717) 792-4700', '(717) 792-1599 Fax', 'ChrisG@YorkBuilding.com '), (1716, 1716, 'Mr', 'Cory', 'Rosenberger ', '', '635 Industrial Drive ', '', 'Easton', 'PA', '18042', '610-258-8737', '610-258-4884 Fax ', 'crosenberger@chrin.org'), (1717, 1717, 'Mr', 'Daniel', 'Fura', '', 'Citel', '3127 Research Drive', 'State College', 'PA', '16801', '814-865-9678 Dan ', '814-865-9668 Fax', 'dfura@engr.psu.edu'), (1718, 1718, 'Mr', 'Kevin', 'Martin', '', 'PO Box 759', '824 East Main St.', 'Ephrata', 'PA', '17522', '717-733-4823 ', '717-733-0959 Fax', 'chaus@weaverprecast.com'), (1719, 1719, 'Mr', 'Roger', 'Cleis', 'Fromally (Chase Specialty Coatings)', '295 University Avenue', '', 'Westwood', 'MA', '2090', '412-828-1500', '412-828-6639 Fax', 'rcleis@chasecorp.com'), (1720, 1720, 'Mr', 'Mike ', 'Cherry', '', '1059 Trout Run Road', '', 'St. Marys', 'PA', '15857', '814-781-3744', '814-781-3230 Fax', 'mcherry.advancedht@windstream.net'), (1721, 1721, 'Mr', 'John', 'Barbati', '', '4501 Centre Ave', '', 'Pittsburgh', 'PA', '15213-1501', '412-622-6943', '412-622-6944 Fax', 'john.barbati@pittsburghpa.gov'), (1722, 1722, 'Mr', 'Pam', 'Gavazzi', '', '259 Eberl Street', '', 'St. Marys', 'PA', '15857', '(814) 781-7333 EXT:', '(814) 834-9201 FAX', 'PGavazzi@stmaryscarbon.com'), (1723, 1723, 'Mr', 'Paul', 'Stumpf', '', '100 Brady Place', '', 'New Stanton ', 'PA', '15672', '724-925-9832', '724-925-8947 Fax', 'Paul@chdentinc.com'), (1724, 1724, 'Mr', 'Pam', 'Gavazzi', '', '259 Eberl Street', '', 'St. Marys', 'PA', '15857', '(814) 781-7333 EXT:', '(814) 834-9201 Fax', 'lreesman@stmaryscarbon.com'), (1725, 1725, 'Mr', 'Doug', 'Conroy', '', 'PO Box 234', '8282 Middlebranch Road', 'Middlebranch', 'OH', '44652', '330-966-8415 Ext. 20', '(330) 966-8505 Fax', 'viorel.arhire@essroc.com'), (1726, 1726, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1727, 1727, 'Mr', 'Mike', 'Ionata', '', '600 Hayden Circle', '', 'Allentown', 'PA', '18109', '610-264-1430', '', 'Techjet@RCN.com '), (1728, 1728, 'Mr', 'Martin', 'Shane', '', '5400 Byrdhill Road', 'PO Box 9870', 'Richmond', 'VA', '23226', '804-261-3700 VLS', '804-261-0418 FAX VLS', ''), (1729, 1729, 'Mr', 'Don', 'Turner', '', '2395 Highway 11', '', 'Pelham', 'AL', '35124', '1-866-621-1941', '205-620-9262 Fax', ''), (1730, 1730, 'Mr', '', '', '', 'PO Box 129', '', 'Cockeysville', 'MD', '21030', '(410) 527-1830', '', ''), (1731, 1731, 'Mr', 'Mike', 'Podusiwsky', 'Cuyahoga Road Products', '2100 West Third Street', '', 'Cleveland', 'OH', '44113', '(216) 241-2215', '(216) 241-1844 Fax', ''), (1732, 1732, 'Mr', 'Karen', 'Novak', '', 'Monroeville Facility', '600 Thomas Street', 'Monroeville', 'PA', '15146', '412-824-0678', '412-829-0387 Fax', ''), (1733, 1733, 'Mr', 'Kerry', 'Hornyak', '', '1595 Route 422 E', '', 'Fenelton', 'PA', '16034', '724-283-6200', '724-283-1067 Fax', ''), (1734, 1734, 'Mr', 'Peter', 'Balwant', '', '1025 Main Street Suite 634', '', 'Wheeling', 'WV', '26003', '304-233-9330', '304-233-9331', ''), (1735, 1735, 'Mr', 'Dale', 'Graley', '', '1000 River East Drive', '', 'Belle', 'WV', '25015', '(304) 926-7200', '(304) 925-0666 Fax', ''), (1736, 1736, 'Mr', 'Kevin', 'Baird, Plant Mgr', '', 'PO Box 62', '', 'Rochester', 'PA', '15074', '724- 774-5100', '724-774-9140 Fax', ''), (1737, 1737, 'Mr', '', '', '', '566 East Market Street', '', 'Harrisonburg', 'VA', '22801', '540-896-8852 Cell P', '540-896-8288', ''), (1738, 1738, 'Mr', 'John', 'Duffy', '', '219 Rock Street', '', 'Bluefield', 'WV', '24701', '(304) 327-4020 ', '', ''), (1739, 1739, 'Mr', 'John', 'Ross', '', 'PO Box 903', '', 'Uniontown', 'PA', '15401', '724-438-4811 Bud Sca', '724-439-2945 FAX Bud', ''), (1740, 1740, 'Mr', 'Mel ', 'Willis', '', '4160 Pleasant Valley Road', '', 'Chantilly', 'VA', '20151-1226', '(703) 631-9630', '(703) 631-6041 Fax', ''), (1741, 1741, 'Mr', 'Lisa', 'Haun', '', 'PO Box 12', '', 'Mitchells', 'VA', '22729', '540-829-5695', '', ''), (1742, 1742, 'Mr', 'Steve', 'Brown', '', 'PO Box 562 Front Street', '', 'Fallston', 'PA', '15066', '(724) 843-7315', '(724) 847-7079 Fax', ''), (1743, 1743, 'Mr', 'Russell', 'Marsh', '', '7816 Bethleham Rd', '', 'Manassas', 'VA', '22110', '(703) 361-4193', '(703) 361-8638 Fax', ''), (1744, 1744, 'Mr', 'Larry', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '(814) 266-2437 Larr', '(814) 269-6480 Fax -', ''), (1745, 1745, 'Mr', 'Larry ', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '814-269-2427 Larry K', '814-269-6480 Fax-Jim', ''), (1746, 1746, 'Mr', 'Ron', '', '', '3200 Patuxent River Road', '', 'Davidsonville', 'MD', '21035', '301-261-4730 Ext. 25', '', 'SCR@contractorsprecast.com'), (1747, 1747, 'Mr', 'Delbert', 'Johnson', '', 'Rt. 2 Box 136', '', 'Flemingsburg', 'KY', '41041', '(800) 544-8607', '(606) 845-7607 Fax', ''), (1748, 1748, 'Mr', 'Terry', 'Solomon', '', '1370 Ontario St.', 'Suite 1842', 'Cleveland', 'OH', '44113', '216-348-3800', '216-348-3896 Fax', ''), (1749, 1749, 'Mr', 'Kevin', 'Stahl', '', 'PO Box 10896', '', 'Pittsburgh', 'PA', '15236', '412-384-1000', '724-258-5761 Fax', ''), (1750, 1750, 'Mr', 'Doug', 'Finch', '(Formerly Engineering Consulting Svcs)', '11047 Pierson Drive', 'Suite G', 'Fredericksburg', 'VA', '22048', '(540) 785-6100', '(540) 785-3577 Fax', ''), (1751, 1751, 'Mr', 'Jennifer', 'Bilskis', '(Formerly Engineering Consulting Svcs)', '1600 Mountain Road', '', 'Glen Allen', 'VA', '23060', '', '', ''), (1752, 1752, 'Mr', 'Kazem ', 'Farhangi', '', '6997 Gateway Court', '', 'Manassas', 'VA', '22110', '(703) 818-8519', '(703) 361-3798 Fax', ''), (1753, 1753, 'Mr', 'Karim', 'Abdoras', '', 'PO Box 67100', '', 'Harrisburg', 'PA', '17106', '(717) 763-7212', '(717) 763-7211 Fax', ''), (1754, 1754, 'Mr', 'Bernie ', 'Vetter', '', '2122 Broening Highway', '', 'Baltimore ', 'MD', '21224', '410-631-2374', '410-631-5454 fax', ''), (1755, 1755, 'Mr', 'Pete', 'Kinzer', '', 'Po Box 195', '', 'West Middlesex', 'PA', '16159', '', '', ''), (1756, 1756, 'Mr', 'Terry', 'Williams', '', 'PO Box 540', '', 'Grafton', 'WV', '26354', '(304) 265-1240', '(304) 265-3733 Fax', ''), (1757, 1757, 'Mr', 'Mike', 'Stiely', '', '38 North Duke Street', '', 'York', 'PA', '17401', '717-880-5660', '717-845-5421 Fax', ''), (1758, 1758, 'Mr', 'Bill', 'Hamilton', '', 'PO Box 20911', '', 'Columbus', 'OH', '43220-0091', '', '', ''), (1759, 1759, 'Mr', 'David', 'Plyler', '', '158 Lindsay Road', '', 'Zelienople', 'PA', '16063', '724-452-8621', '724-452-0514 FAX', ''), (1760, 1760, 'Mr', 'Ramona', '', '', 'c/o Baltimore Packaging', '7670 Canton Center', 'Baltimore', 'MD', '21224', '704-553-3997', '', ''), (1761, 1761, 'Mr', 'Keith', 'Thornburg', '', '10930 Deerfield Road', '', 'Cincinnati', 'OH', '45242', '(513) 891-2000', '', ''), (1762, 1762, 'Mr', 'Dan', 'Blake', '', 'PO Box 2049', '', 'Buckhannon', 'WV', '26201', '(304) 472-8890', '(304) 472-8897 Fax', ''), (1763, 1763, 'Mr', 'Jamie', 'Robinson', '', 'PO Box 1536', '1717 13th Street', 'Ashland', 'KY', '41105', '(606) 325-2411', '(606) 324-5411 Fax', ''), (1764, 1764, 'Mr', 'Peyton', 'Cramer', '', 'Route 4 Box 226', '', 'Keyser', 'WV', '26726', '(304) 788-3213', '(304) 788-3232 Fax', ''), (1765, 1765, 'Mr', '', '', '', 'Beatty Avenue', '', 'Knox', 'PA', '16232', '(814) 797-1261', '', ''), (1766, 1766, 'Mr', 'Jay', 'Mazzoni', '', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '(502) 495-5800', '(502) 495-5801 Fax', ''), (1767, 1767, 'Mr', 'Jay', 'Mazzoni', '', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '(502) 495-5800', '(502) 495-5801 Fax', ''), (1768, 1768, 'Mr', 'Jay', 'Mazzoni', '', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '(502) 495-5800', '(502) 495-5801 Fax', ''), (1769, 1769, 'Mr', 'Steve', 'Cook', '', '4465 Brookfield Corp. Drive', '', 'Chantilly', 'VA', '22021', '(703) 968-4780', '(703) 968-4778 Fax', ''), (1770, 1770, 'Mr', 'Frank', 'Williams', '100 Pine Street', '', '', 'Colwyn', 'PA', '19023', '484-257-0010', '', ''), (1771, 1771, 'Mr', 'Mike', 'Birtic', '', '7815 Harvard Ave.', '', 'Cleveland', 'OH', '44105', '(216) 341-8096', '(216) 518-8180 Fax?', ''), (1772, 1772, 'Mr', 'Matt', 'Keeney', '', '3377 Hollenberg Drive', '', 'Bridgeton', 'MO', '63044', '(314) 739-2727', '', ''), (1773, 1773, 'Mr', 'Bill', 'Dominick', '', '4839 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '(412) 297-5246', '412-788-1169 Fax', ''), (1774, 1774, 'Mr', 'Christy', 'James', '', '12608 Almeda Drive', '', 'Strongsville', 'OH', '44136', '(216) 238-3331', '', ''), (1775, 1775, 'Mr', 'Chuck ', 'Lee', '', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '(616) 381-1550', '(616) 381-1711 Fax', ''), (1776, 1776, 'Mr', 'Tim', 'List', '', 'PO Box 325', '', 'Wheatland', 'PA', '16161', '(417) 347-2227', '', ''), (1777, 1777, 'Mr', 'Gerald', 'Zimmerman', '', '120 South Burrowes Street', '', 'University Park', 'PA', '16801-3857', '814-865-4780 Gerald ', '814-863-5615', ''), (1778, 1778, 'Mr', 'Tim', 'Park', '', 'PO Box 756', '132 Keyser Ave.', 'Petersburg', 'WV', '26847', '(304) 257-4664', '(304) 257-9338', ''), (1779, 1779, 'Mr', 'Larry', 'Shupe', 'Office of Finance/Accounting Division', 'County Administration Building', '', 'Upper Marlboro', 'MD', '20772', '', '', ''), (1780, 1780, 'Mr', 'Dan', 'Santone', '', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16501', '724-794-4451', '724-794-6820 Fax', ''), (1781, 1781, 'Mr', 'Dan', 'Santone', '', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16051', '724-794-4451', '724-794-6820 Fax', ''), (1782, 1782, 'Mr', 'Dan', 'Santone', '', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16501', '724-794-4451', '724-794-6820 Fax', ''), (1783, 1783, 'Mr', 'Dan', 'Santone', '', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16501', '724-794-4451', '724-794-6820 Fax', ''), (1784, 1784, 'Mr', 'Dan', 'Santone', '', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16057', '(724) 794-4451', '(724) 794-6820 Fax', ''), (1785, 1785, 'Mr', 'Dan ', 'Santone', '', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16501', '724-794-4451', '724-794-6820 Fax', ''), (1786, 1786, 'Mr', 'Kenny', '', '', '6350 Presidential Gateway', '', 'Colombus', 'OH', '43231', '614-823-4949', '', ''), (1787, 1787, 'Mr', 'Vince', 'Ujcich', '', '12034 134th Court NE, Suite 102', 'PO Box 230', 'Redmond', 'WA', '98073-0230', '(425) 372-1600', '', ''), (1788, 1788, 'Mr', 'Don', 'Buckbee', '', '9607 Dr. Perry Rd., Suite 102', '', 'Ijamsville', 'MD', '21754', '301-533-0755', '', ''), (1789, 1789, 'Mr', 'Pat', 'Kirby', '', 'PO Box 214', '', 'Cresson', 'PA', '16630', '(814) 886-7400', '(814) 886-2842 Fax', ''), (1790, 1790, 'Mr', 'Ewan', 'Tough', '', 'PO Box N4829', '', 'Nassau, Bahamas', '', '', '(242) 323-4966', '(242) 323-7656 Fax', ''), (1791, 1791, 'Mr', 'Wayne', 'Rosenburger', '', '1244-A Ridge Road', '', 'Apollo', 'PA', '15613', '(412) 478-3732', '', ''), (1792, 1792, 'Mr', 'Tom', 'Brooks', '', 'PO Box 889', '', 'Morgantown', 'WV', '26507', '(304) 296-2562', '(304) 296-8739 Fax', ''), (1793, 1793, 'Mr', '', '', '', 'PO Box 6774, 225 North Shore Drive ', '', 'Pittsburgh', 'PA', '15212-0774', '412-807-2000', '412-807-2006 Fax', ''), (1794, 1794, 'Mr', 'Bob', 'Cox', '', '800 Fifth Avenue', '', 'New Brighton', 'PA', '15066', '724-847-2440', '', ''), (1795, 1795, 'Mr', 'Leroy', 'Mazer', '', '30775 Bainbridge Road', '', 'Solon', 'OH', '44139', '440-349-2708', '', ''), (1796, 1796, 'Mr', 'Mike', 'Burton', '', '1401 E Broad ST', '', 'Richmond', 'VA', '23219', '(804) 786-3150', '', ''), (1797, 1797, 'Mr', 'Eric', 'Lalli', '', '201 Airport Road', '', 'Elkton', 'MD', '21921', '410-392-3200', '', ''), (1798, 1798, 'Mr', '', '', 'Washington Research Center', '7500 Grace Drive', '', 'Columbia', 'MD', '21044', '(410) 531-4000', '(410) 531-4367 Fax', ''), (1799, 1799, 'Mr', 'Lee', 'Metheney', '', 'PO Box 6002', '', 'Morgantown', 'WV', '26506-6002', '(304) 293-3111 x364', '', ''), (1800, 1800, 'Mr', 'Richard', 'Baumbach', '', 'PO Box 1708', '', 'York', 'PA', '17405', '(717) 848-2381', '', ''), (1801, 1801, 'Mr', 'Jim', 'Hersick', '', 'PO Box 120', '', 'Halltown', 'WV', '25423', '(304) 725-4025', '(304) 725-8525 Fax', ''), (1802, 1802, 'Mr', 'Jeff', 'Williams', 'Attn: Scott Hanks', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '412-847-3267', '410-847-3354 Fax', 'Shawn.Kennedy@lafarge-na.com'), (1803, 1803, 'Mr', 'Gary', 'Langerman', '', '6350 Presidential Gateway', '', 'Columbus', 'OH', '43231', '614-823-4949', '614-823-4990 Fax', ''), (1804, 1804, 'Mr', 'Kelly', 'Jones', '', '184 Gentry Road ', '', 'Elkins', 'NC', '28621', '336-526-6484', '253-928-2492 Fax ', 'Kelly.Jones@weyerhaeuser.com'), (1805, 1805, 'Mr', 'Jake', 'Zeller', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', ''), (1806, 1806, 'Mr', 'Jeff', 'Williams ', 'Attn: Scott Hanks', '300 East Joppa Road, Suite 200 ', '', 'Towson', 'MD', '21286', '410-847-3267 Jeff ', '410-847-3354 Fax', ''), (1807, 1807, 'Mr', 'Jeff', 'Williams ', 'Attn: Scott Hanks', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '410-847-3267 Jeff', '410-847-3354 Fax', ''), (1808, 1808, 'Mr', 'Jeff', 'Williams ', 'Attn: Scott Hanks ', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '410-847-3267 Jeff', '410-847-3354 Fax', ''), (1809, 1809, 'Mr', 'Julio', 'Pascella', '', '1500 Marblewood Avenue', '', 'Fairmount Heights', 'MD', '20743', '301-322-5190', '301-322-5197 Fax', ''), (1810, 1810, 'Mr', 'Rosanna', 'Puffenbarger', '', '43760 Trade Center Place Suite 110', '', 'Sterling', 'VA', '20166', '703-478-0055', '703-478-0137 Fax', ''), (1811, 1811, 'Mr', 'Abe', 'Turhan ', '', '7130 Ambassador Drive ', '', 'Allentown', 'PA', '18106', '610-366-3890 x 47106', '610-366-3895 Fax ', ''), (1812, 1812, 'Mr', 'Kathi', 'Moore', '', 'Florham Park Project ', '6438 City West Parkway', 'Eden Prairie', 'MN', '55344', '952-229-7121 Kathi M', '952-995-0276 Fax', ''), (1813, 1813, 'Mr', 'Rick ', 'Blaze', '', '2900 South Noah Drive', '', 'Saxonburg', 'PA', '16056', '724-352-2200', '', ''), (1814, 1814, 'Mr', 'Lora', 'Adkins', '', '1401 E. Broad Street', '', 'Richmond', 'VA', '23219', '804-328-3107', '804-328-3136 Fax', 'rosalinda.hurtado@vdot.virginia.gov'), (1815, 1815, 'Mr', 'Paula', 'Blatnica', '', '12 McClane Street', '', 'Cuddy', 'PA', '15031', '412-221-4500 x 2239 ', '412-221-3127 Fax', ''), (1816, 1816, 'Mr', 'Bruce', 'White', '', 'PO Drawer 768', '411 Alburn Street', 'Martinsburg', 'WV', '25401', '(304) 263-3327', '(304) 263-0142 Fax ', ''), (1817, 1817, 'Mr', 'Evan', 'Weaver', '', 'PO Box 12', '', 'Mitchells', 'VA', '22729', '540-829-7203', '540-829-5593 Fax', 'BliszKay@dalholding.com'), (1818, 1818, 'Mr', 'Dean', 'Dilbert', '', '70 Gum Springs Road ', '', 'Morgantown', 'WV', '25508', '304-296-1120 Ext. 20', '304-296-1569 FAX', ''), (1819, 1819, 'Mr', 'Bob', 'Yogus', '', 'PO Box 1000', '615 West Highland Avenue', 'Ebensburg', 'PA', '15931', '(814) 472-7700 ext.', '(814) 472-4221 Fax', 'yogusr@lrkimball.com'), (1820, 1820, 'Mr', 'Dave', 'Roebuck', '', 'Southpoint Business Park', '4 Grandview Circle', 'Canonsburg', 'PA', '15317', '724-916-0300', '724-916-0315 FAX', 'droebuck@agesinc.com'), (1821, 1821, 'Mr', 'Paul', 'Dykta', '', '1739 Grange Road', '', 'Charleroi', 'PA', '15022', '724-239-6488', '724-239-6489 Fax', 'gavcopm@goldeneagleconst.com'), (1822, 1822, 'Mr', 'Jack', 'Deitz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026', '614-876-1700 Ext. 3', '614-876-1899 Fax', 'jackdetz@netzero.com'), (1823, 1823, 'Mr', 'Henry', 'Nguyen', '', '9409 Innovations Drive', '', 'Manassas', 'VA', '20110', '703-396-6259', '703-396-6298 Fax', 'ttran@ecslimited.com'), (1824, 1824, 'Mr', 'Ronald', 'Heacock', '', 'PO Box 425', '3178 Phoenixville Pike', 'Devault', 'PA', '19432', '610-644-7338', '610-644-8682 Fax', 'pipe&precast@aol.com'), (1825, 1825, 'Mr', 'Arnold', 'Caffas', '', '570 Beatty Road ', '', 'Monroeville', 'PA', '15146', '412-372-4000', '412-372-4664 Fax ', 'ccaffas@pasoilrock.com'), (1826, 1826, 'Mr', 'Sam', 'Kimani', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', ''), (1827, 1827, 'Mr', 'Henry', 'Nguyen', '', '9409 Innovations Drive', '', 'Manassas', 'VA', '20110', '703-396-6259', '703-396-6298 Fax', 'ttran@ecslimited.com'), (1828, 1828, 'Mr', 'Tim', 'Kerby', '', '153 Williams Highway', '', 'Parkersburg', 'WV', '26105', '(304) 295-1016', '(304) 295-9658 Fax', 'timothy.kerby@psiusa.com'), (1829, 1829, 'Mr', 'Elliot ', 'James', '', '805 Wisteria Drive', '', 'South Charleston', 'WV', '25309', '304-884-7872 ', '(304) 565-3113 Fax', 'bobbyjames@frontier.com'), (1830, 1830, 'Mr', 'Matt', 'Loudin', '', 'PO Box 968', '', 'Clarksburg', 'WV', '26301', '(304) 592-5577', '(304) 592-5578 Fax', 'mrloudin@central supplywv.com '), (1831, 1831, 'Mr', 'Roger', 'Simar', '', 'PO Box 889', '', 'Morgantown', 'WV', '26507', '(304) 296-2562', '(304) 296-8739 Fax', 'triadeng@triadeng.com'), (1832, 1832, 'Mr', 'Glenna', 'Eplin', 'Material Controls, Soils & Text', '190 Dry Branch Road ', '', 'Charleston', 'WV', '25306', '304-528-5671', '304-528-5613 Fax Gle', 'randy.coyle@wv.gov'), (1833, 1833, 'Mr', 'David', 'Bracken', 'Attn: Kathy Mehaffey', 'Materials Soil Testing and Control', '190 Dry Branch Drive', 'Charleston', 'WV', '25301', '304-558-9857', '304-558-0253 Fax', 'johnathan.a.bailey@wv.gov'), (1834, 1834, 'Mr', 'John', 'Boggess', '', 'PO Box 544', '', 'Dunbar', 'WV', '25064', '(304) 768-9733 ', '(304) 768-9384 Fax', 'jboggess@wvpaving.com'), (1835, 1835, 'Mr', 'Herb', 'Parsons', '', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '304-558-9857 Kathy', '703-991-8727 Fax', 'timothy.w. ruppert@wv.gov'), (1836, 1836, 'Mr', 'Bruce', 'Alt', '', '436 Dominion Blvd', '', 'Mount Storm', 'WV', '26739', '304-259-4424 Bruce O', 'No Fax', 'bruce.d.alt@dom.com'), (1837, 1837, 'Mr', 'Mark ', 'Weber', '', '2020 Liberty Road', '', 'Lexington ', 'KY', '40505', '859-293-5518', '859-229-2481 Fax', 's.bennett@smeinc.com'), (1838, 1838, 'Mr', 'Mark', 'Weber', '', '2020 Liberty ', '', 'Lexington', 'KY', '40505', '859-293-5518', '859-299-2481 Fax', 's.bennett@smeinc.com'), (1839, 1839, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1840, 1840, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '(513) 321-0294 Fax', ''), (1841, 1841, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '(513) 321-0294 Fax', ''), (1842, 1842, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1843, 1843, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1844, 1844, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1845, 1845, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', 'tggoodall@terracon.com'), (1846, 1846, 'Mr', 'George', 'Gilliam', '', 'PO Box 1326', '', 'Somerset', 'KY', '42502', '606-451-8898', '606-451-8899 Fax', ''), (1847, 1847, 'Mr', 'Mike ', 'Pepper', '', 'PO Box 16098', '', 'Louisville', 'KY', '40256-0098', '(502) 448-2920', '(502) 448-3134 Fax', 'mpepper@icpcompany.net'), (1848, 1848, 'Mr', 'Chad', 'Kelly', '', '911 US Rt. 50', '', 'Milford', 'OH', '45150', '513-248-0090', '513-248-1872 Fax', 'chadkelley@sardiniaconcrete.com'), (1849, 1849, 'Mr', 'Scott', 'Wells', '', 'PO Box 28', '', 'West Liberty', 'KY', '41472', '606-743-3485', '606-743-2025 Fax/606', 'scott@wellsgroup.net'), (1850, 1850, 'Mr', 'MaryLou', 'Bessler', '', '1658 Production Drive ', '', 'Burlington', 'KY', '41005', '859-371-5542', '859-282-4012 Fax ', 'tom.seiter@boonereadymix.com'), (1851, 1851, 'Mr', 'Steve', 'Robins', '', '1648 Petersburg Road', '', 'Hebron', 'KY', '41048', '859-586-8890', '859-586-8891 Fax', 'kevin@harperco.com'), (1852, 1852, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1853, 1853, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1854, 1854, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1855, 1855, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1856, 1856, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncranes.com'), (1857, 1857, 'Mr', 'Curt', 'Roupe ', '', '1915 12th Street', '', 'Toledo', 'OH', '43624', '419-324-2222', '419-241-1808 Fax', ''), (1858, 1858, 'Mr', 'John', 'Horn', '', '125 N. Warren ST', '', 'W. Hazelton', 'PA', '18201', '(717) 455-3961', '', ''), (1859, 1859, 'Mr', 'Dave', 'McCoy', '', 'P.O. Box 2228', '', 'Youngstown', 'OH', '44504', '', '', ''), (1860, 1860, 'Mr', 'Butch', 'Dwyer', '', '301 Thorn Street', '', 'Coraopolis', 'PA', '15108', '(412) 299-6890', '(412) 299-7734 Fax', ''), (1861, 1861, 'Mr', 'Jim', 'Meyer', '', '505 King Avenue', '', 'Columbus', 'OH', '43201', '614-424-3282', '', ''), (1862, 1862, 'Mr', 'Lonnie', 'Johnston', '', '2900 South Noah Drive', '', 'Saxonburg', 'PA', '16056', '724-352-2200', '724-352-2290 Fax', 'l.johnston@castcon-stone.com'), (1863, 1863, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 269-2642', '(814) 269-6480 Fax', ''), (1864, 1864, 'Mr', 'Greg', 'Vidakovich', '', '1450 Scalp Avenue', '', 'Johnstown', 'PA', '15904', '(814) 269-2783', '', ''), (1865, 1865, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 269-2642', '(814) 269-6480 Fax', ''), (1866, 1866, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 269-2642', '(814) 269-6480 Fax', ''), (1867, 1867, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 269-2642', '(814) 269-6480 Fax', ''), (1868, 1868, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 269-2642', '(814) 269-6480 Fax', ''), (1869, 1869, 'Mr', 'Larry', 'Gless', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 266-2427 Larry', '(814) 269-6480 Fax -', ''), (1870, 1870, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 266-2874', '(814) 269-6480 Fax -', ''), (1871, 1871, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 266-2874', '(814) 269-6480 Fax -', ''), (1872, 1872, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 266-2874', '(814) 269-6480 Fax -', ''), (1873, 1873, 'Mr', 'Ken', 'Retzer', '', '1080 Harlem Road', '', 'Cheektowaga', 'NY', '14227', '(716) 825-6996', '', ''), (1874, 1874, 'Mr', 'Jim', 'Stoll', '', '9318 Erie Street SW', '', 'Navarre', 'OH', '44662', '(330) 756-3210 Ext:', '(330) 756-3220', ''), (1875, 1875, 'Mr', 'Lawerence', '', '', 'PO Box 149', '', 'Prichard', 'WV', '25555', '304-486-9185', '', ''), (1876, 1876, 'Mr', 'Jack', 'Patel', 'Attn: Patrick Everhart', '800 3rd ST NE', '', 'Washington', 'DC', '20002', '703-471-8400', '', ''), (1877, 1877, 'Mr', 'Lisa', 'Hanusiak', '', '168 W. Main St.', '', 'Clarksburg', 'WV', '26301', '304-624-8028', '304-624-0170 Fax', ''), (1878, 1878, 'Mr', 'Bruce', 'Wilberding', '', '1866 Woodslee Street', '', 'Troy', 'MI', '48083', '(313) 522-4665', '(313) 522-2807 Fax', ''), (1879, 1879, 'Mr', 'Krishy', 'Gopalapillai', 'Technical Support Engineer', '', '', 'Decatur ', 'GA', '', '770-987-5190 x 227', '', ''), (1880, 1880, 'Mr', 'David', 'Thomas', '', '8555 Old Steubenville Pike', '', 'Imperial', 'PA', '15126', '724-828-2800', '724-828-2828 Fax', 'gtcinfo@gtcpgh.com'), (1881, 1881, 'Mr', 'John', 'Gutierrez', '', '565 48th Street', '', 'Grand Rapids', 'MI', '49548', '(616) 534-8277', '', ''), (1882, 1882, 'Mr', 'Tom', 'Grumbine', '', '2696 Chicago Drive 3W', '', 'Grand Rapids', 'MI', '49509', '(616) 534-9645 ', '(616) 534-0118 Fax', ''), (1883, 1883, 'Mr', 'John', 'Lehman', '', '5350 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '# disconnected 4/21', '', ''), (1884, 1884, 'Mr', 'Jack ', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (1885, 1885, 'Mr', 'Jerry', 'Carter', '', 'PO Box 2049', '', 'Buckhannon', 'WV', '26201', '(304) 472-8890', '(304) 472-8897 Fax', ''), (1886, 1886, 'Mr', 'Jud', 'Arnold, Jr.', '', 'PO Box 18490', '', 'Erlanger', 'KY', '41018', '606-727-5554 Office', '', ''), (1887, 1887, 'Mr', 'Sharon', 'Dalton', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 Jeremy ', '770-360-0520', 'rlcraddock@mactec.com'), (1888, 1888, 'Mr', 'Don', 'Preece', '', '4033 Alum Creek Drive', '', 'Obetz', 'OH', '43207', '(614) 491-7643', '(614) 491-1877 Fax', ''), (1889, 1889, 'Mr', 'Rick', 'Marker', '', '480 Pittsburgh Road', 'PO Box X', 'Uniontown', 'PA', '15401', '(724) 438-4581 Ext.', '', ''), (1890, 1890, 'Mr', 'Charles', 'Walker', '', '780 N. Valley Road', '', 'Xenia', 'OH', '45385', '(937) 426-7795', '', ''), (1891, 1891, 'Mr', 'Mark', 'Martin', '', '4301 Dutch Ridge Road', '', 'Beaver', 'PA', '15009', '(412) 295-4285', '', ''), (1892, 1892, 'Mr', 'Bob', 'Price', '', '4839 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '(412) 923-2255', '412-788-1169 Fax', ''), (1893, 1893, 'Mr', 'QA Manager', '', '', '38955 Hills Tech Drive', '', 'Farmington Hills', 'MI', '48331', '(810) 553-5300', '(810) 489-0727 Fax', ''), (1894, 1894, 'Mr', 'Rich', 'Espenschied', '', '837 Seasons Road', '', 'Stow', 'OH', '44224', '(216) 528-0022', '', ''), (1895, 1895, 'Mr', 'Ernest', 'Dumas', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '(810) 553-6300', '(248) 324-5178 Fax', ''), (1896, 1896, 'Mr', 'Steve', 'Mileski', '', '1038 Ghent Road', '', 'Akron', 'OH', '44333', '(330) 666-5432', '(330) 666-1130 Fax', ''), (1897, 1897, 'Mr', 'Joe', 'Butarac, Mgr.', '', '4616 Novarre Road SW', '', 'Canton', 'OH', '44706', '(330) 478-0081', '(330) 478-3267 Fax', ''), (1898, 1898, 'Mr', 'Jeff', '', '', '3424 Oregon Avenue', '', 'Youngstown', 'OH', '44509', '330-793-7374', '330-533-5775 Fax', ''), (1899, 1899, 'Mr', 'Jim', 'Norton', '', '6350 Presidential Gateway', '', 'Colombus', 'OH', '43081', '614-823-4949', '', ''), (1900, 1900, 'Mr', 'Mark', 'Murphy', '', '3862 East Street', '', 'Pittsburgh', 'PA', '15214', '(412) 231-8600', '(412) 231-6950 Fax', ''), (1901, 1901, 'Mr', 'Bryan', 'Stocker', '', 'PO Box 176', '', 'Gnadenhutten', 'OH', '44629', '740-254-4626', '740-254-9108', ''), (1902, 1902, 'Mr', 'Bill', 'Durek', '', '3434 Encrete Lane', '', 'Dayton', 'OH', '45439', '(937) 299-1213', '(937) 299-0120 Fax', ''), (1903, 1903, 'Mr', 'Pam', 'Barnes', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', ''), (1904, 1904, 'Mr', 'Mark', 'Cvechko', '', '1500 Lake Shore Drive', '', 'Columbus', 'OH', '43204', '614-486-4383', '304-613-1774/304-677', ''), (1905, 1905, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1906, 1906, 'Mr', 'Steve', 'Caldwell', 'Accounts Payable - EC3 1C7D', 'PO Box 9752', '', 'Federal Way', 'WA', '98063-9777', '253-924-5385', '253-924-4321 Fax', 'john.rouse@weyerhaeuser.com'), (1907, 1907, 'Mr', 'David', 'Darwin', '', '426 Barell Avenue', '', 'Carlstadt', 'NJ', '7072', '201-386-8110 x 1126', '201-386-8155 Fax ', 'ddarwin@hycrete.com'), (1908, 1908, 'Mr', 'Clive', 'Hughes', '', 'PO Box 279', '', 'Louisa', 'KY', '41230', '(606) 673-4413', '(606) 673-4416 Fax', 'cmeadows@pandaengineers.com'), (1909, 1909, 'Mr', 'Amos', 'Hubbard', '', '1355 Keavy Road', '', 'London', 'KY', '40744', '606-864-7384', '606-878-9225 Fax', ''), (1910, 1910, 'Mr', 'John', 'Galloway', '', '441 Rockwood Avenue', '', 'Chesapeake', 'OH', '45619', '740-867-5758', '740-867-5758 Fax ', ''), (1911, 1911, 'Mr', 'Phil', 'Hopkins', '', '6875 Boneta Road', '', 'Medina', 'OH', '44256', '(330) 336-3109', '(330) 336-2882 Fax', ''), (1912, 1912, 'Mr', 'John', 'Butorac', 'Accounts Payable- Building A', 'PO Box 2500 C', '', 'Plymouth', 'MI', '48170', '734-455-3600', '734-354-7391 Fax', ''), (1913, 1913, 'Mr', 'Linda', 'Harmon', '', '850 West Smith Road; Building B', '', 'Medina', 'OH', '44256', '330-725-0205 Ext. 2', '330-725-5716 FAX', ''), (1914, 1914, 'Mr', 'Jack', 'Boschuk', '(Formerly J & L Testing)', '938 S Central Ave.', '', 'Cannonsburg', 'PA', '15317', '(724) 746-4441/724-4', '(724) 745-4261 Fax', ''), (1915, 1915, 'Mr', 'Stephanie', 'Cooley', '', '5240 Green\'s Dairy Road', '', 'Raleigh', 'NC', '27616', '919-873-2211', '919-873-9555 Fax', 'shcooley@terracon.com '), (1916, 1916, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinatti', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (1917, 1917, 'Mr', 'Laura ', 'Mellon', '', '801 McNeilly Road', '', 'Pittsburgh', 'PA', '15226', '(412) 344-5503', '(412) 344-8913 Fax', ''), (1918, 1918, 'Mr', 'Danielle', 'Powers', '', '95 Court Street', '', 'Portsmouth', 'NH', '3801', '603-433-6060', '603-436-0944 Fax ', ''), (1919, 1919, 'Mr', 'Roger', 'Simar', '', 'PO Box 889', '', 'Morgantown', 'WV', '26507', '(304) 296-2562', '(304) 296-8739 Fax', 'triadeng@triadeng.com'), (1920, 1920, 'Mr', 'Brian', 'Porterfield', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600', '770-360-0520 Fax', ''), (1921, 1921, 'Mr', 'Tim', 'Hess', '', 'PO Box 24305', '7900 New Carlisle Pike', 'Dayton', 'OH', '45424', '(937) 878-8666', '(937) 878-9293 Fax', ''), (1922, 1922, 'Mr', 'Tina', 'Porterfield', 'dba Bonsal American', '8201 Arrowridge Boulevard', '', 'Charlotte', 'NC', '28273', '1-800-738-1621', '(704) 529-5261 Fax', ''), (1923, 1923, 'Mr', 'Larry', 'Paul', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', ''), (1924, 1924, 'Mr', 'Sam', 'Kimanu', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', ''), (1925, 1925, 'Mr', 'Ann', 'Kitlinski', '', '3608 N. Progress Avenue', '', 'Harrisburg', 'PA', '17110', '717-652-8620', '717-651-0725 Fax ', ''), (1926, 1926, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'mrivera@atlanticpipe.com'), (1927, 1927, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1928, 1928, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '', '800-981-4133', '787-758-7830', ''), (1929, 1929, 'Mr', 'Eladio', 'Infante', '', 'PO Box 363307', '', 'San Juan', 'PR', '00936-3307', '787-758-7830', '787-764-8553', ''), (1930, 1930, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1931, 1931, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1932, 1932, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'sierracarlos@yahoo.com'), (1933, 1933, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'joseluis@geo-engineering.com'), (1934, 1934, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1935, 1935, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1936, 1936, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'same as Highway Authority Bayamon?'), (1937, 1937, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-7830', ''), (1938, 1938, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1939, 1939, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1940, 1940, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-7830', ''), (1941, 1941, 'Mr', 'Joel', 'Tubbs', '', '', '', 'Lexington', 'KY', '', '(205) 879-7899', '', ''), (1942, 1942, 'Mr', 'Gun', 'Utkam', '', '', '', 'Bahamas', 'Bahamas', '', '(242) 363-4760', '(242) 363-4761 Fax', ''), (1943, 1943, 'Mr', 'Tony', 'Angelino', '', '', '', 'Chester', 'PA', '', '(610) 447-8618', '', ''), (1944, 1944, 'Mr', 'Michael', 'Beattie', '', '12 Laboratory Drive', '', 'Reasearch Triangle Park', 'NC', '27709', '(919) 549-1813', '(919) 547-6025 Fax', ''), (1945, 1945, 'Mr', '', '', '', '190 Dry Ranch Road', '', 'Charleston', 'WV', '25306', '304-558-9857', '304-558-0253 Fax', ''), (1946, 1946, 'Mr', 'Stephanie ', 'Malone', '', 'P.O. Box 562', '800 Red Toad Road ', 'North East', 'MD', '21901', '443-674-8781', '443-674-8782 Fax', 'jbmcneal@verizon.net'), (1947, 1947, 'Mr', 'Josh', 'Shaw', '', '7841 Palace Drive ', '', 'Cincinnati', 'OH', '45249', '513-489-1460', '513-489-1470 Fax', ''), (1948, 1948, 'Mr', 'Matt', 'Farley', '', 'PO Box 2438', '', 'Beckley', 'WV', '25802', '304-252-6575 ', '304-252-9345 Fax', 'mfarley@vecelliogrogan.com'), (1949, 1949, 'Mr', 'Chris', 'Harter', 'Attn: Accounts Payable', '385 Waterfront Drive E', '', 'Homestead', 'PA', '15120', '412-476-2000', '412-476-2020 Fax', 'c.harter@gaiconsultants.com'), (1950, 1950, 'Mr', 'Shayne', 'Brashear', '', 'PO Box 54846', '', 'Lexington', 'KY', '40555-4846', '859-309-6021 ', '888-792-3121 Fax ', 'sbrashear@csikentucky.com'), (1951, 1951, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (1952, 1952, 'Mr', 'Lou', 'Ziolowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@roncrane.com'), (1953, 1953, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1954, 1954, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1955, 1955, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (1956, 1956, 'Mr', 'Kasey', 'Jackson', '', '1000 John Roebling Way', '', 'Saxonburg ', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (1957, 1957, 'Mr', 'Kasey', ' Jackson', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (1958, 1958, 'Mr', 'Doug', 'Lehnerd', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (1959, 1959, 'Mr', 'Don', 'Lehnerd', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (1960, 1960, 'Mr', 'Joseph', 'Haugen', '', '2860 Fisher Road', '', 'Columbus', 'OH', '43204', '614-276-8123', '614-276-6377', 'jhaugen@ctleng.com'), (1961, 1961, 'Mr', 'James', 'Hanson', '', '20321 Raven Drive ', '', 'Eagle River', 'AK', '99577', '907-696-0722', '907-694-0846 Fax', ''), (1962, 1962, 'Mr', 'Dana', '', '', '4613 West Streesboro', '', 'Richfield', 'OH', '44286', '(216) 659-6183', '(216) 659-9759 Fax', ''), (1963, 1963, 'Mr', 'Tim', 'Hendricks', '', '1805 Berks Road', '', 'Worchester', 'PA', '19440', '(610) 917-1167', '(610) 917-8973 Fax', ''), (1964, 1964, 'Mr', 'Robert', 'Jackle', '', 'PO Box 1547', '', 'Kernersville', 'NC', '27285', '888-442-7077', '252-799-0208 Fax', ''), (1965, 1965, 'Mr', 'Ray', 'Ong', '', 'PO Box 1658', '', 'Berwick', 'PA', '18603', '717-759-3540', '', ''), (1966, 1966, 'Mr', 'John', 'Sedlock', '', 'PO Box 370', '', 'Tad', 'WV', '25201', '304-926-8464', '304-926-8460 Fax', ''), (1967, 1967, 'Mr', 'Harry', 'Cook', '', '915 Campus Drive Swan 312', '', 'Big Rapids', 'MI', '49307', '231-591-2626', '231-592-2931 Shari W', ''), (1968, 1968, 'Mr', '', '', '', '600 Atlantic Ave.', '', 'Franklin', 'PA', '16323', '814-437-3726', '814-432-7556', ''), (1969, 1969, 'Mr', 'Aaron', 'Barnes', '', '230 Sawmill Run Blvd.', '', 'Pittsburgh', 'PA', '15226', '847-426-7495', '', ''), (1970, 1970, 'Mr', 'Roger', 'LaFrancis', '', '120 Tobin-Alfa Road', '', 'Crystal Falls', 'MI', '49920', '(906) 875-6644', '(906) 875-6264 Fax', ''), (1971, 1971, 'Mr', 'John ', 'Melonoski', '', 'PO Box 429', '681 Harleysville Pike', 'Lederach', 'PA', '19450', '215-256-7940 (Kelly)', '215-256-7943 Fax', ''), (1972, 1972, 'Mr', 'Eric', 'Heckert', '', '7880 West Central Ave.', '', 'Toledo', 'OH', '43617', '(419) 843-9118', '(419) 841-7055 Fax', ''), (1973, 1973, 'Mr', 'Mike', 'Foutz', '', '2905 Columbus Road N.E.', '', 'Canton', 'OH', '44706', '(330) 454-1113', '', ''), (1974, 1974, 'Mr', 'Doug', 'Timmis', '', '4841 Golfclub', '', 'Howell', 'MI', '48843', '(517) 546-1478', '', ''), (1975, 1975, 'Mr', 'John', 'Green', '', 'PO Box 14004', '', 'Pittsburgh', 'PA', '15239', '412-793-4385', '412-793-3212 Fax', ''), (1976, 1976, 'Mr', 'Lowell', 'Pratt', '', 'PO Box 612', '15151 Mill Pond Road', 'Big Rapids', 'MI', '49307', '(231) 796-8685', '(231) 796-3199', ''), (1977, 1977, 'Mr', 'Bob', 'Laria', '', 'PO Box 3188', '', 'Williamsport', 'PA', '11701', '(717) 327-4275 Bob L', '(717) 327-4274 Fax', ''), (1978, 1978, 'Mr', 'Nora', 'Kauffman', '', '3990 East Market Street', '', 'York', 'PA', '17402', '717-755-2933 ext. 23', '717-757-3808 Fax', ''), (1979, 1979, 'Mr', 'Tom', 'Arnold', '', '2633 Waterford Road', '', 'Marietta', 'OH', '45750', '(740) 373-3211 ext 2', '(740) 373-5409 Fax', ''), (1980, 1980, 'Mr', 'Dean', 'Dilbert', '', '276 Greenbag Road', '', 'Morgantown', 'WV', '26501', '304-296-1120 Ext: 20', '304-296-1569 Fax', ''), (1981, 1981, 'Mr', 'Mary', '', '', 'PO Box 518', '', 'Celoron', 'NY', '14720', '716-664-5108', '716-484-0100 Fax ', ''), (1982, 1982, 'Mr', 'Steve', 'Mitchell', '', '', '', 'Collegeville', 'PA', '', '610-489-8884', '610-489-1522 Fax ', 'transfleet101@aol.com'), (1983, 1983, 'Mr', 'Dan', 'Hunt', '', '7657 Taylor Road', '', 'Reynoldsburg', 'OH', '43068', '(614) 575-2132', '(740) 522-6759 Fax', ''), (1984, 1984, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'fvarpla13@yahoo.com'), (1985, 1985, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-758-7830', 'angeles.zayas@lagan-mail.com'), (1986, 1986, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1987, 1987, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'raul@jlipim.com'), (1988, 1988, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 (fax)', 'jafelo@yahoo.com'), (1989, 1989, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1990, 1990, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8533 Fax', 'castmaster.j.c@gmail.com'), (1991, 1991, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'JLIPIM@JLIPIM.com'), (1992, 1992, 'Mr', 'Eladio ', 'Infante', '', 'GPO Box 363307', '', 'San Juan ', 'PR ', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'JLIPIM@JLIPIM.Com'), (1993, 1993, 'Mr', 'Eladio', 'Infante ', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553 Fax', ''), (1994, 1994, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1995, 1995, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '800-981-4133', '787-764-8553', ''), (1996, 1996, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', ''), (1997, 1997, 'Mr', 'Eladio', 'Infante', '', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '(800) 981-4133', '(787) 764-8553 Fax', 'mcurdero@emdi.net'), (1998, 1998, 'Mr', 'Paul', 'Gersewski, Jr. ', '', '1088 M-32 East', '', 'Gaylord', 'MI', '49735', '989-742-4223 x 222', '989-732-3637 Fax', ''), (1999, 1999, 'Mr', 'Jason ', 'Strong', '', '34000 Plymouth Road', '', 'Livonia', 'MI', '48150', '734-522-6711', '734-522-6427 Fax', 'Jason.Strong@ohm-advisors.com'), (2000, 2000, 'Mr', 'Josh', 'Gottschall', '', '1 Madison Avenue', '', 'Cadillac', 'MI', '49601', '(231) 775-7755', '(231) 775-3135 Fax', 'joshg@wilcoxassociates.com'), (2001, 2001, 'Mr', 'Lauren', 'Sustic', '', 'PO Box 549', '', 'Highland', 'MI', '48357', '(248) 887-4173', '(248) 887-2755 Fax', 'lauren@advanceconcreteproducts.com'), (2002, 2002, 'Mr', 'Rick', 'Little', '', '3535 Grand Oak Drive', '', 'Howell', 'MI', '48843', '(517) 546-4250', '(517) 546-9628 Fax', 'jtedesco@livingstonroads.org'), (2003, 2003, 'Mr', 'Debbie', 'Champine', '', '14500 E 12 Mile Road', '', 'Warren', 'MI', '48088', '586-445-7012-Debbie', '586-445-7887 Fax', ''), (2004, 2004, 'Mr', 'Gloria', 'Dubay', '', '117 South Groesbeck Highway', '', 'Mt. Clemens ', 'MI', '48043', '586-463-8671', '586-463-8676 Fax', 'grogers@rcmcweb.org'), (2005, 2005, 'Mr', 'Greg', 'Martin', '', '5731 Wellington Road', '', 'Gainesville', 'VA', '20155', '703-754-5781', '703-754-5189 Fax ', 'Tim.Cole@aerojet.com'), (2006, 2006, 'Mr', 'Ed', 'Dorsey', '', '5112 Pegasus Court, Suite S', '', 'Frederick', 'MD', '21704', '301-668-4303', '301-668-3519 Fax', ''), (2007, 2007, 'Mr', 'Venisri', 'Nagulapabi', '', '14155 Sullyfield Circle, Suite A', '', 'Chantilly', 'VA', '20151', '703-817-1106', '703-817-1170 Fax', ''), (2008, 2008, 'Mr', 'David', 'Jablonsky', '', '268 E. Scotland Drive', '', 'Bear', 'DE', '19701', '(302) 836-5304 x 108', '(302) 836-5458 Fax', ''), (2009, 2009, 'Mr', 'Debbie', 'Klinger', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-324-5329', '248-324-5178 Fax', 'jljackson@nthconsultants.com '), (2010, 2010, 'Mr', 'Merilynn ', 'Kessi', '', '505 Blue Ball Road #160', '', 'Elkton', 'MD', '21921', '410-392-2300', '410-392-2324 Fax', 'info@aquafin.net'), (2011, 2011, 'Mr', 'Stuart', 'MacDonald ', '', '3111 Christy Way', 'Suite F ', 'Saginaw', 'MI', '48603', '989-249-1105', '989-249-1171 Fax', 'smacdonald@smactesting.com'), (2012, 2012, 'Mr', 'Tracy', 'Le Fevre', '', '1315 South Washington Ave.', '', 'Saginaw', 'MI', '48601', '989- 759-1413', '989-759-1563 FAX', ''), (2013, 2013, 'Mr', 'Mike', 'Garland', '', '4555 134th Avenue', '', 'Hamilton', 'MI', '49419', '1-800-486-2932', '269-751-6409 Fax', 'mgarland@glswalls.com'), (2014, 2014, 'Mr', 'Steve', 'Hawker', '', '2800 N. Elm Street', '', 'Jackson', 'MI', '49201', '(517) 780-7894', '(517) 780-7896 Fax', ''), (2015, 2015, 'Mr', 'Tim', 'Brutsche', '', 'PO Box 1031', '', 'Battle Creek', 'MI', '49016', '269-963-1554', '269-963-6109 Fax ', 'av8rmage@aol.com'), (2016, 2016, 'Mr', 'Scott', 'Shuler', '', '507 Derby Avenue', '', 'Bowling Green', 'OH', '43402', '(419) 353-7081', '(419) 354-4153 Fax', ''), (2017, 2017, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (2018, 2018, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (2019, 2019, 'Mr', 'Pat', 'Beaver', '', '7378 Cockrill Bend Blvd. ', '', 'Nashville ', 'TN', '37209', '(615) 350-8124', '(615) 350-8149 Fax ', ''), (2020, 2020, 'Mr', 'Mike', 'Rose', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '765-477-0549 Fax', ''), (2021, 2021, 'Mr', 'Bob', 'Bretch', '', 'PO Box 529', '', 'Carnegie', 'PA', '15106', '(412) 429-1212', '(412) 429-0191 Fax', ''), (2022, 2022, 'Mr', 'Dennis', 'Koteuski', '', 'PO Box 817', '', 'Novi', 'MI', '48376', '(248) 349-8710', '(248) 347-2589 Fax', ''), (2023, 2023, 'Mr', 'QA Manager', '', '', '900 North Garver Road', '', 'Monroe', 'OH', '45050', '(513) 539-4000', '(513) 539-4255', ''), (2024, 2024, 'Mr', 'Teresa', 'Harlan', '', 'PO Box 4217', '', 'Lancaster', 'PA', '17604', '(717) 391-8311', '(717) 391-8316 Fax', ''), (2025, 2025, 'Mr', 'Terry', 'Smid', '', '33414 Kelly Road', '', 'Clinton Township', 'MI', '48035', '(810) 791-7340', '(810) 791-1217 Fax', ''), (2026, 2026, 'Mr', 'QA Manager', '', '', '20415 Mack Ave', '', 'Grosse Pointe Woods', 'MI', '48236-1685', '(313) 884-5530', '', ''), (2027, 2027, 'Mr', 'Vick', '', '', 'PO Box 16334', '', 'Rocky River', 'OH', '44116', '440-333-4704', '440-333-3781 Fax', ''), (2028, 2028, 'Mr', 'Jim ', 'Trent', '', ' PO Box 709', '', 'Fostoria', 'OH', '44830', '419-435-3655', '419-435-2544 Fax', ''), (2029, 2029, 'Mr', 'Kevin', 'Clark', '', '19103 Gundle Road', '', 'Houston', 'TX', '77073', '(800) 435-2008', '(713) 875-6010 Fax', ''), (2030, 2030, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (2031, 2031, 'Mr', 'Rob', 'Higinbotham', '', 'PO Box 709', '', 'Masontown', 'PA', '15461', '(412) 583-8844', '(412) 583-1007 Fax', ''), (2032, 2032, 'Mr', 'Rob', 'Higinbotham', '', 'PO Box 709', '', 'Masontown', 'PA', '15461', '(412) 583-8844', '(412) 583-1007 Fax', ''), (2033, 2033, 'Mr', 'Pete ', 'Johnson', '', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '(616) 456-5469', '(616) 456-5784 Fax', ''), (2034, 2034, 'Mr', 'Ron', 'Robbins', '', '4950 White Lake Road', '', 'Clarkston', 'MI', '48016', '(248) 625-8080 (Ext', '(248) 625-7820 Fax', ''), (2035, 2035, 'Mr', 'Andrew', 'Taylor', '', '3377 Hollenberg Drive', '', 'Bridgeton', 'MO', '63044', '(314) 739-2727', '', ''), (2036, 2036, 'Mr', 'Matt', 'Keeney', '', '3377 Hollenberg Drive', '', 'Bridgeton', 'MO', '63044', '314-739-2727', '', ''), (2037, 2037, 'Mr', 'Andrew', 'Taylor', '', '3377 Hollenberg Drive', '', 'Bridgeton', 'MO', '63044', '(314) 739-2727', '', ''), (2038, 2038, 'Mr', 'Larry', 'Kenetski', '', '4839 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '(412) 292-1071 Bill ', '412-788-1169 Fax', ''), (2039, 2039, 'Mr', 'Brad ', 'Barnes', '', '1516 Timken Road', '', 'Wooster', 'OH', '44691', '1-800-686-1070', '', ''), (2040, 2040, 'Mr', 'Jeff', 'Stampel', '', 'PO Box 9173', '', 'Farmington Hills', 'MI', '48331', '248-553-6300', '(248) 324-5178 Fax', ''), (2041, 2041, 'Mr', 'Theresa', 'Marsik', '', '683 Airport Boulevard', 'Suite 5', 'Ann Arbor', 'MI', '48108', '(734) 994-3210', '(734) 994-3950', ''), (2042, 2042, 'Mr', 'Tim', 'Wells', '(Formerly Atlanta Testing & Eng)', '1019 Woodland Drive', '', 'Lima', 'OH', '45805', '859-509-4995 Tim', '859-299-2481 Fax', 'jfolsom@qore.net'), (2043, 2043, 'Mr', 'Brad', 'Parlotto', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-0629 Fax', ''), (2044, 2044, 'Mr', 'Jim', 'Anderson', '', '622 West Baltimore ', '', 'Detroit', 'MI', '48202', '(313) 874-2660 ext 1', '(313) 874-2650 FAX', ''), (2045, 2045, 'Mr', 'Sheila', 'Sennet', 'Attn: Sheila Sennet, Lab Operations', '8534 Yankee Street', 'Suite 2 C', 'Dayton', 'OH', '45458-1864', '937-435-3200', '(937) 435-5162 Fax', 'shsennet@testechinc.com'), (2046, 2046, 'Mr', 'Luke', 'McDougall', '', '73408 Van Dyke Avenue', '', 'Romeo', 'MI', '48065', '586-752-4541', '586-752-5231 Fax', ''), (2047, 2047, 'Mr', 'Marty', 'Dell', '', '1785 Rawsonville Road', '', 'Belleville', 'MI', '48111', '(313) 485-3181', '(313) 485-3228 Fax', ''), (2048, 2048, 'Mr', 'Rich', '', '', '1513 Ben Franklin Highway', '', 'Douglasville', 'PA', '19518', '610-323-0700', '610-323-2988 FAX', ''), (2049, 2049, 'Mr', 'Bill', 'Tobin', '', 'PO Box 448', '', 'Chester', 'PA', '19016', '(610) 874-1454', '(610) 874-5609 Fax', ''), (2050, 2050, 'Mr', 'Linda', 'Valentino', 'A Division of John Maneely Company', 'PO Box 608', 'One Council Avenue', 'Wheatland', 'PA', '16161', '724-983-2591 ', '724-346-7089 Fax', ''), (2051, 2051, 'Mr', 'Bud', 'Conners', '', '21 Stahl Point Road', '', 'Baltimore', 'MD', '21226', '(410) 354-0658', '(410) 355-1827 Fax', ''), (2052, 2052, 'Mr', 'Gary', 'Hahn', '', '9835 Portage Road', '', 'Portage', 'MI', '49002', '(616) 327-3532', '(616) 327-7679 fax', ''), (2053, 2053, 'Mr', 'Charlie', 'VanMeter', '', 'PO Box 129', '', 'Cockeysville', 'MD', '21020', '(410) 527-1830', '', ''), (2054, 2054, 'Mr', 'Kathy', 'Kelly', '', '7505 Mason King Court', '', 'Manassas', 'VA', '20109', '703-396-6000', '703-396-6090 FAX', ''), (2055, 2055, 'Mr', 'Michele', 'Cetola', '', 'PO Box 626', '', 'New Castle', 'DE', '19720', '302-654-6948', '302-656-9149 Fax ', ''), (2056, 2056, 'Mr', 'Brian', 'Biasutto', '', '21355 Hatcher Avenue', '', 'Ferndale', 'MI', '48220', '248-399-2066', '248-399-2157 Fax', ''), (2057, 2057, 'Mr', 'David', 'Jablonsky', '', '268 E. Scotland Drive', '', 'Bear', 'DE', '19701', '(302) 836-5304 x 108', '(302) 836-5458 Fax', ''), (2058, 2058, 'Mr', 'Jim ', 'Parsons', 'Attn: A/P Code: CV151', '41780 Six Mile Road', '', 'Northville', 'MI', '48168-3459', '248-324-5329', '248-324-5178 Fax', 'dklinger@nthconsultants.com'), (2059, 2059, 'Mr', 'Daniel', 'Francisco', '', '165 Bradstone Lane ', '', 'Harpers Ferry', 'WV', '25425', '304-725-9370', '304-728-5170 Fax', 'tracey.jones@aggregate-us.com'), (2060, 2060, 'Mr', 'Sris', '', '', '8551 Sudley Road', '', 'Manassas', 'VA', '20110', '703-392-7400', '703-330-1285 Fax', ''), (2061, 2061, 'Mr', 'Dan', 'Mix', 'Rinker Materials Corp.', '4200 Universal Drive', '', 'Diamond', 'OH', '44412', '330-654-2501', '330-654-3302', ''), (2062, 2062, 'Mr', 'Jeff', 'Elliott', '', '1810 N. 12th Street', '', 'Toledo', 'OH', '43624', '419-324-2222', '419-241-1808 Fax', ''), (2063, 2063, 'Mr', 'Harland', 'Couillard', '', 'PO Box 313', '', 'Escanaba', 'MI', '49829', '(906) 786-0934', '(906) 786-2622 Fax', ''), (2064, 2064, 'Mr', 'Diane ', 'Smith', '', 'PO Box 79', '', 'Shippack', 'PA', '19474', '610-323-6600', '610-222-4010 Fax AP', ''), (2065, 2065, 'Mr', 'Jake', 'Zeller', '', 'PO Box 155', '1750 W. College Ave.', 'State College', 'PA', '16801-0155', '(814) 238-5071', '(814) 238-0131 Fax', ''), (2066, 2066, 'Mr', 'Zeerak', 'Paydawy', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-324-5355 Ed dire', '(248) 324-5178 Fax', 'zpaydawy@nthconsultants.com'), (2067, 2067, 'Mr', 'Stan', 'Bennett', 'Attn: Accounts Payable-Shared Services ', 'PO Box 502168, Dept. 230', '', 'Atlanta', 'GA', '31150', '330-628-6670 x 12', '440-949-1206 Fax', 'stanley.bennett@oldcastleapg.com'), (2068, 2068, 'Mr', 'Ed', 'Johnson', '', '2138 King Road', '', 'Lapeer', 'MI', '48446', '(810) 667-6911', '(810) 245-5767 Fax', ''), (2069, 2069, 'Mr', 'Rick', 'Hall', '', 'RR5 Box 133', '', 'Mifflintown', 'PA', '17059', '717-436-0276', '717-436-2064 Fax', ''), (2070, 2070, 'Mr', 'Valerie', 'Fake', '', 'PO Box 9', '', 'Cockeysville', 'MD', '21030', '410-666-2350 x 120', '410-666-8781 Fax ', 'gmcelwee@cinderblockonline.com'), (2071, 2071, 'Mr', 'Larry ', 'Osborne', '', '20501 Goddard Road', '', 'Taylor', 'MI', '48180', '734-287-1000', '734-287-8132 Fax', 'www.wadetrim.com'), (2072, 2072, 'Mr', 'Simine', 'Regimand', '', '5908 Triangle Drive ', '', 'Raleigh', 'NC', '27617', '919-875-8371', '919-875-8328 Fax', 'marbelaez@instrotek.com'), (2073, 2073, 'Mr', 'Simine', 'Regimand', '', '5908 Triangle Drive ', '', 'Raleigh', 'NC', '27617', '919-875-8371', '919-875-8328 Fax', 'marbelaez@instrotek.com'), (2074, 2074, 'Mr', 'John', 'Moran', '', '6737 Dogwood Road', '', 'Baltimore', 'MD', '21207', '410-298-2669', '410-298-4086 Fax', 'jmoran@c-p-rinc.com'), (2075, 2075, 'Mr', 'Steve', 'Blankenship', '', '50500 Design Lane', '', 'Shelby Twp', 'MI', '48315', '586-731-1628', '586-731-7007 Fax', ''), (2076, 2076, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', 'mmoyer@nesl.com'), (2077, 2077, 'Mr', 'Jason', 'Webb', '', '500 Maryville Hwy', 'Building 1, Suite B', 'Seymour', 'TN', '37865', '865-573-6130', '865-573-6132 Fax', 'jwebb@geoservicesllc.com'), (2078, 2078, 'Mr', 'Brian', 'Biasutto', '', '21355 Hatcher Avenue', '', 'Ferndale', 'MI', '48220', '248-399-2066', '248-399-2157 Fax', 'brian.biasutto@mcdowasc.com'), (2079, 2079, 'Mr', 'Kevin ', 'Dubnicki', '', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '(734) 453-7900', '(734) 453-0724 Fax', 'zofia.sperka@psiusa.com'), (2080, 2080, 'Mr', 'Kevin', 'Dubnicki', '', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '(734) 453-7900', '(734) 453-0724 Fax', 'zofia.sperka@psiusa.com'), (2081, 2081, 'Mr', 'Kimberly', 'McCoy', '', 'PO Box 2007', '1006 E. Bank Street', 'Petersburg', 'VA', '23804', '804-732-8412 x 111', '804-862-4943 Fax ', ''), (2082, 2082, 'Mr', 'Zeerak ', 'Paydawy', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-553-6300', '248-324-5178 Fax', ''), (2083, 2083, 'Mr', 'John', 'Moran', '', '6737 Dogwood Road', '', 'Baltimore', 'MD', '21207', '410-298-2669', '410-298-4086 Fax', 'jmoran@c-p-rinc.com'), (2084, 2084, 'Mr', 'Anthony', 'Gale', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax', 'agale@nesl.com'), (2085, 2085, 'Mr', 'Heather', 'Miller', '', '173 Industrial Parkway North', 'Muncy Industrial Park', 'Muncy', 'PA', '17756', '(570) 546-7686', '(570) 546-7708 FAX', 'ken.smith@ads-pipe.com'), (2086, 2086, 'Mr', 'Joe', 'Brickner', 'Attn: Linda Price / Renee Frey', '130 Derry Court', '', 'York', 'PA', '17406', '717-764-7700', '717-764-4129 Fax', 'jbrickner@archtest.com'), (2087, 2087, 'Mr', 'Bob', 'Appleyard', '', 'PO Box 930313', '', 'Wixom ', 'MI', '48393', '248-669-9886', '248-669-3533 Fax', 'boba@chasenedrow.com'), (2088, 2088, 'Mr', 'Kevin ', 'Behn', '', '7331 Williams Ave. ', 'Suite # 300', 'Allentown ', 'PA', '18106', '610-481-9646', '610-481-0218 Fax', 'behnke@airproducts.com'), (2089, 2089, 'Mr', 'Ed ', 'Luke', '', 'PO Box 2013', '', 'Chambersburg', 'PA', '17202', '717-267-4505', '(717) 267-4518 Fax', 'eluke@nitterhouse.com '), (2090, 2090, 'Mr', 'Bernie', 'Schweibinz', '', '1588 Center Ave.', '', 'Jim Thorpe', 'PA', '18229', '570- 325-3293', '570- 325-3687 Fax', ''), (2091, 2091, 'Mr', 'Ron', 'Hull', '', '169 Quarry Road', '', 'Chambersburg', 'PA', '17201', '717-709-6243', '814-766-4433 Fax', 'bbender@valleyquarries.com'), (2092, 2092, 'Mr', 'Ed', 'Luke', '', 'PO Box 2013', '', 'Chambersburg', 'PA', '17201', '717-267-4505', '717-267-4518 Fax', 'eluke@nitterhouse.com'), (2093, 2093, 'Mr', 'David', 'Bryan', '', 'PO Box 272', '1263 Chartiers Ave.', 'McKees Rocks', 'PA', '15136', '412-331-1630', '412-331-1374/8668 Fa', 'ccikev@verizon.net'), (2094, 2094, 'Mr', 'Robert', 'Narchus', '', 'PO Box 150', '436 Casement Ave.', 'Painesville', 'OH', '44077', '(440) 352-9343', '(440) 352-3822 Fax', 'rnachus@rwsidley.com'), (2095, 2095, 'Mr', 'Chester', 'Olako', '', '3401 Market Street', '', 'Wheeling', 'WV', '26003', '304-233-2710', '304-233-2711 Fax', ''), (2096, 2096, 'Mr', 'Sheila', 'Sennet', 'Attn: Sheila Sennet, Lab Operations', '8534 Yankee Street', 'Suite 2 C', 'Dayton', 'OH', '45458-1864', '937-435-3200', '937-435-5162 Fax ', 'sennet@testechinc.com'), (2097, 2097, 'Mr', 'Sue', 'Bollenbacher', '', '309 Monroe Street', '', 'Monroeville', 'OH', '44847', '419-465-4611', '419-465-2866 Fax', 'sue@janottaherner.com'), (2098, 2098, 'Mr', 'Ron ', 'Stauffer', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-553-6300', '248-324-5178 Fax', 'rstauffer@nthconsultants.com'), (2099, 2099, 'Mr', 'Ron', 'Stauffer ', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', '', 'Northville', 'MI', '48168-3459', '248-553-6300', '248-324-5178 FAX', 'rstauffer@nthconsultants.com'), (2100, 2100, 'Mr', 'Scott ', 'Peterman', '', '333 Peterman Lane', '', 'Portage', 'MI', '49002', '269-327-1956', '269-324-1212 Fax', 'petermanconcrete@voyager.net'), (2101, 2101, 'Mr', 'George', 'Roest', '', '29800 West 8 Mile Road', '', 'Farmington Hills', 'MI', '48336', '(248) 474-0415 ', '(248) 474-5199 Fax', 'ccpi1928@sbcglobal.net'), (2102, 2102, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (2103, 2103, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (2104, 2104, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', ''), (2105, 2105, 'Mr', 'Lou', 'Ziolkowski', '', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', 'sales@rcssusa.com '), (2106, 2106, 'Mr', 'Melissa', 'Duvall', '', 'Accounts Payable ', 'PO Box 5784', 'Spartanburg', 'SC', '29304', '404-366-6270 xt: 241', '404-366-1738 FAX', ''), (2107, 2107, 'Mr', 'Brian', 'Ellis', '', 'Round House Lane', '', 'Mt. Vernon', 'OH', '43050', '740-397-9191', '740-397-5993 FAX', ''), (2108, 2108, 'Mr', 'Stan', 'Kocuba', '', '4201 State Rt. 51', '', 'Belle Vernon', 'PA', '15012', '(724) 929-2125', '724-929-3011 Fax', ''), (2109, 2109, 'Mr', 'Nick', 'Flores', '', '14554 Lee Road', '', 'Chantilly', 'VA', '20151', '(703) 378-7263', '(703) 378-7274 Fax', ''), (2110, 2110, 'Mr', 'John ', 'Ward', '', 'PO Box 400', '', 'Allen', 'KY', '41601', '606-874-9057 Vicki', '606-874-8010 Fax', ''), (2111, 2111, 'Mr', 'Sean', 'Murnane', '', 'PO Box 548', '', 'Waldorf', 'MD', '20604', '(301) 932-5034', '(301) 932-4003 Fax', ''), (2112, 2112, 'Mr', 'Damon', 'Board', '', '1026 South Wilson', '', 'Radcliff', 'KY', '40160', '(502) 351-3118', '(502) 351-3110 Fax', ''), (2113, 2113, 'Mr', 'Greg', 'Vidakovich', '', '1450 Scalp Avenue', '', 'Johnstown', 'PA', '15904', '(814) 269-2783', '', ''), (2114, 2114, 'Mr', 'John', 'Scott', '', '431 McNeilly Road (Rear)', '', 'Pittsburgh', 'PA', '15226', '412-341-2699', '412-341-2710 Fax', ''), (2115, 2115, 'Mr', 'Mike', 'Demyan', '', '925 N. Jerome Street', '', 'Allentown', 'PA', '18109-1927', '(610) 433-6871', '(610) 433-7594 Fax', ''), (2116, 2116, 'Mr', 'Ed ', 'Adkins', '', 'PO Box 608', '', 'Orrville', 'OH', '44667', '330-683-5060 Ext. 18', '330-683-0446 Fax', ''), (2117, 2117, 'Mr', 'Mike ', 'Covington', '', '5413 Airport Rd', '', 'Willamsburg', 'VA', '23185', '757-874-4140', '(757) 565-1250 Fax', ''), (2118, 2118, 'Mr', 'Sheila', 'Nettles', '', 'PO Box 271 ', '1355 15th Street', 'Franklin', 'PA', '16323', '(814) 432-2118', '(814) 432-2973 Fax', ''), (2119, 2119, 'Mr', 'Rob', 'Dillon', '', 'PO Box 1149', '', 'Lewisburg', 'WV', '24901-1149', '(304) 645-4056', '(304) 645-4489 Fax', ''), (2120, 2120, 'Mr', 'Fred', 'Dente', '', '57 Sherwood Trail', '', 'Saratoga Springs', 'NY', '12866', '(518) 587-2295', '(518) 587-2399 Fax', ''), (2121, 2121, 'Mr', 'Roger', 'McClellan', '', '112 Industrial Post', '', 'Sevierville', 'TN', '', '(615) 453-7125', '', ''), (2122, 2122, 'Mr', 'Larry', 'Kitko', '', '1750 W. College Avenue', 'P.O. Box 155', 'State College', 'PA', '16801-0155', '814-238-5071', '814-238-0131 Fax', ''), (2123, 2123, 'Mr', 'Sandy', 'Sanders', '', '1440 Selinda Ave.', '', 'Louisville', 'KY', '40213', '(502) 456-6930', '(502) 451-8823 Fax', ''), (2124, 2124, 'Mr', 'Brad', 'Broman', '', '233 Northpark Drive', 'West Hills Industrial Park', 'Kittanning', 'PA', '16201', '724-545-7850', '', ''), (2125, 2125, 'Mr', 'Jim', 'Hinch', '', '17531 Waterford Road', 'Building #2', 'Fredericktown', 'OH', '43019', '(740) 694-6315 x408 ', '', ''), (2126, 2126, 'Mr', 'Richard', 'Cory', '', 'PO Box 5806', '', 'Chesapeake', 'VA', '23324', '(757) 543-8832', '(757) 543-6605 Fax', ''), (2127, 2127, 'Mr', 'Chris', 'Cook', '', 'PO Box410', '', 'Bardstown', 'KY', '50005', '(800) 952-6460', '(502) 348-7709 Fax', ''), (2128, 2128, 'Mr', 'Mark', 'Clemens', '', 'PO Box 848', '', 'Bluefield', 'VA', '24605', '(276) 322-5467', '(276) 322-1510 Fax', ''), (2129, 2129, 'Mr', 'Jim', 'Martin', '', '5233 Wooster Road', '', 'Cincinnati', 'OH', '45226', '(513) 533-2160', '', ''), (2130, 2130, 'Mr', 'Tim', 'Swift', '', '451 Hungerford Dr, Suite 113', '', 'Rockville', 'MD', '20850', '301-738-5690', '301-738-5695 Fax', ''), (2131, 2131, 'Mr', 'Parris', 'McGheebey', '', 'Dept. of Civil Engineering', '5200 Perring Parkway', 'Baltimore ', 'MD', '21251', '443-885-3815', '410-319-3843 Fax', ''), (2132, 2132, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4400 Fax ', ''), (2133, 2133, 'Mr', 'Shawn', 'Dotson', '', 'PO Box 309', '', 'Newell', 'WV', '26050', '(304) 387-2700 ext 3', '', ''), (2134, 2134, 'Mr', 'William', 'Mitchell', 'Accounts Payable', 'PO Box 24400', '', 'Canton', 'OH', '44701-4400', '330-438-7031', '330-436-7088 Fax', ''), (2135, 2135, 'Mr', 'Lila', 'Triplett', '', '14221A Willard Road, St 500', '', 'Chantilly', 'VA', '20151', '703-263-0400', '703-263-9024 Fax', ''), (2136, 2136, 'Mr', 'Dave', 'Marnalse', '', '2255 Bailey Avenue', '', 'Buffalo', 'NY', '14211', '(716) 894-2255', '', ''), (2137, 2137, 'Mr', 'Jeff', 'Sydenstricker', '', '8711 West Phalia RD', '', 'Upper Marlboro', 'MD', '20772', '(301) 967-5721 Danny', '(301) 967-5724 Fax', ''), (2138, 2138, 'Mr', 'Dan', 'Condiles', '', '430 Bridge Street', '', 'Rahns', 'PA', '19426', '(610) 489-2646', '(610) 489-4195 Fax', ''), (2139, 2139, 'Mr', 'Steve', 'Montinieri', '', 'Box 515 AC', '', 'Pennington Gap', 'VA', '24277', '(540) 546-5118', '(540) 546-1202', ''), (2140, 2140, 'Mr', 'Jerry', 'Bach', '', 'PO Box 58643', '', 'Cincinnati', 'OH', '45258', '513-922-1125', '513-922-1520 Fax', ''), (2141, 2141, 'Mr', 'Vincent', 'Barone', '', '47 Hudson Street', '', 'Ossining', 'NY', '10562', '', '', ''), (2142, 2142, 'Mr', 'Terry', 'Martin', '', '1101 Railroad Street', '', 'Monongahela', 'PA', '15063', '(724) 258-6900', '(724) 258-8075 Fax', ''), (2143, 2143, 'Mr', 'Linda', 'Valentino', 'A Division of John Maneely Company', 'PO Box 608', 'One Council Avenue', 'Wheatland', 'PA', '16161', '724-983-2591 ', '724-346-7089 Fax', ''), (2144, 2144, 'Mr', 'Darrick', 'Kreischer', '', '941 Marcon Blvd', 'Suite 801', 'Allentown', 'PA', '18109', '610-366-7120', '717-458-0801Fax/610-', ''), (2145, 2145, 'Mr', 'Dan', 'Reddick', '', '12370 Jackson Twp Road 172', '', 'Findlay', 'OH', '45839-1047', '(419) 424-8222 ', '(419) 424-5208 Fax', ''), (2146, 2146, 'Mr', 'John ', 'Ward', '', 'PO Box 400', '', 'Allen', 'KY', '41601', '606-874-9057 ', '606-874-8010 Fax', ''), (2147, 2147, 'Mr', 'John', 'Rouse', 'Accounts Payable - EC3 1C7D', 'PO Box 9777', '', 'Federal Way', 'WA', '98063-9777', '253-924-5385', '253-924-4321 Fax', 'john.rouse@weyerhaeuser.com'), (2148, 2148, 'Mr', 'Doug', 'Ross', '', '13750 Sunrise Valley Drive', '', 'Herndon', 'VA', '20171', '(703) 713-1900', '(703) 713-1910 Fax', ''), (2149, 2149, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717( 787-1037', '717-783-5955 Fax', 'chneely@state.pa.us'), (2150, 2150, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717) 787-1037', '(717) 783-5955 Fax', 'chneely@state.pa.us'), (2151, 2151, 'Mr', 'Charlotte', 'Kelly', '', '453 W. McConkey Street', '', 'Shreve', 'OH', '44676', '330-567-2145 Sharon ', '330-567-2260', ''), (2152, 2152, 'Mr', 'Brian', 'Hibdon', '', '32121 Schoolcraft Road', '', 'Livonia', 'MI', '48150', '734-522-0300', '734-522-0308 Fax', 'brianh@tymeengineering.com'), (2153, 2153, 'Mr', 'Jack', 'Deitz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026', '614-876-1700 Ext. 3', '614-876-1899 Fax', ''), (2154, 2154, 'Mr', 'Bob', 'Mulichak', '', '4996 Freedom Way', '', 'Weirton', 'WV', '26062', '(304) 797-1411', '(304) 797-0043 Fax', ''), (2155, 2155, 'Mr', 'Dave', 'Brugger', '', 'PO Box 192', '', 'Girard', 'PA', '16417', '(814) 774-2664', '814-774-5394 Fax New', ''), (2156, 2156, 'Mr', 'Bill ', 'Chilli', '', 'PO Box 97', '', 'Wampum', 'PA', '16157', '724-535-4374', '724-535-8166 FAX', 'Bchilli@zoominternet.net'), (2157, 2157, 'Mr', 'Dan', 'Kribs', 'Formally:Inspecsol Engineering, Inc. ', '2055 Niagra Falls Blvd.', 'Suite #3', 'Niagra Falls', 'NY', '14304', '716-297-6150', '716-297-2265 Fax', 'rbentley@craworld.com'), (2158, 2158, 'Mr', 'Jennifer', 'Whitlow', '', 'Commerce Road', 'Rt. 11 Bypass', 'Staunton', 'VA', '24402-2249', '804-553-0244', '804-553-0272 Fax', 'stan@colonialscientific.com'), (2159, 2159, 'Mr', 'Brian', 'Gilkey', '', '3042 Lebanon Road', '', 'Manheim', 'PA', '17545', '412-973-7234', '717-664-0886 Fax', ''), (2160, 2160, 'Mr', 'JIm', 'Smith', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '(304) 334-0821', '(304)342-4711', ''), (2161, 2161, 'Mr', 'Jane', 'Troy', '', '480 West, Fifth Street', '', 'Bloomsburg', 'PA', '17815', '570-784-4100 x234', '570-784-4106 Fax', 'lynn.hoffman@rieterauto.com'), (2162, 2162, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2163, 2163, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2164, 2164, 'Mr', ' ', ' ', '', ' ', '', ' ', '', ' ', ' ', ' ', ''), (2165, 2165, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2166, 2166, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2167, 2167, 'Mr', '', '', '', '', '', '', '', '44086', '', '', ''), (2168, 2168, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2169, 2169, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2170, 2170, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2171, 2171, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2172, 2172, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2173, 2173, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2174, 2174, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2175, 2175, 'Mr', '', '', '', '', '', '', '', '', '', '', 'verivera@caribe.net'), (2176, 2176, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2177, 2177, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2178, 2178, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2179, 2179, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2180, 2180, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2181, 2181, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2182, 2182, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2183, 2183, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2184, 2184, 'Mr', '', 'Taylor', '', '', '', '', '', '', '', '', ''), (2185, 2185, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2186, 2186, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2187, 2187, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2188, 2188, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2189, 2189, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2190, 2190, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2191, 2191, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2192, 2192, 'Mr', 'Gaston', 'Botto', '', '2517 NW 21 Terrace, Unit 9', '', 'Miami', 'FL', '33142', '786-975-9573', '305-365-9376 Fax', 'gaston@miamimarinetech.com'), (2193, 2193, 'Mr', 'Curtis', 'Greenland', 'Attn: Carol Norris', 'PO Box 77', '', 'New Enterprise ', 'PA', '16664', '814-224-2121', '814-766-4400 Fax', 'cgreenland@nesl.com'), (2194, 2194, 'Mr', 'Michael', 'Bahnsen', '', '3100 S. Sam Houston Pky E.', '', 'Houston ', 'TX', '77047', '713-336-1486', '713-336-1487 Fax', 'mbahnsen@turbocare.com'), (2195, 2195, 'Mr', '', '', '', '', '', '', '', '', '', '', ''), (2196, 2196, 'Mr', 'Kyle', 'Butts', '', 'PO Box 2670', '', 'Catoosa ', 'OK', '74015-2670', '918-582-1807', '918-582-4349 Fax', ''), (2197, 2197, 'Mr', 'Mike', 'Ash', 'Attn: Mike Ash', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-3705 Fax', ''), (2198, 2198, 'Mr', 'Diane', 'Shiftlet', '', 'PO Box 1647', '', 'Charlottesville', 'VA', '22902-1647', '434-296-7181', '434-296-2139 Fax ', 'ssubotnik@allied-concrete.com'), (2199, 2199, 'Mr', 'Chuck', 'Dato', '', 'Fourth and Ross Streets', '', 'Pittsburgh', 'PA', '15219', '(412) 350-5929', '', ''), (2200, 2200, 'Mr', 'Stan', 'Bennett', 'Attn: Accounts Payable-Shared Services ', 'PO Box 502168, Dept. 230', '', 'Atlanta', 'GA', '31150', '330-628-6670 x 12', '440-949-1206 Fax', 'stanley.bennett@oldcastleapg.com'), (2201, 2201, 'Mr', 'Drema', 'Underwood', '', 'PO Box 9367', '', 'South Charleston', 'WV', '25309', '304-766-8062', '304-766-8105 Fax', 'brian.randolph@ahernwv.com'), (2202, 2202, 'Mr', 'Marlene', 'Carter', 'Attn: Marlene', '401 South Washington Square,', 'Suite 103', 'Lansing', 'MI', '48933', '517-913-5800', '517-913-5830 Fax', 'www.aecom.com'), (2203, 2203, 'Mr', 'Sris', '', '', '8551 Sudley Road', '', 'Manassas', 'VA', '20110', '703-392-7400', '703-330-1285 Fax', ''), (2204, 2204, 'Mr', 'Debra ', 'Bruckner', '', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '845-496-1600', '845-496-1398 Fax ', 'erodriguez@advancetesting.com '), (2205, 2205, 'Mr', 'Debra ', 'Bruckner', '', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '845-496-1600', '845-496-1398 Fax ', 'erodriguez@advancetesting.com '), (2206, 2206, 'Mr', 'Terry', 'McElfresh', '', 'PO Box 6044', '', 'Portland ', 'OR', '97208', '614-658-0050', '888-822-8819 Fax', ''), (2207, 2207, 'Mr', 'Dick', 'Bauer', '', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '419-720-5254', '419-720-5255 Fax', 'info@thejajcompany.com'), (2208, 2208, 'Mr', 'Dick', 'Bauer', '', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '419-720-5254', '419-720-5255 Fax', 'info@thejajcompany.com'), (2209, 2209, 'Mr', 'Chad', 'Forcellini', 'Attn: Nick Buchan', '9558 Route 22 West', '', 'Blairsville', 'PA', '15717', '724-459-5950', '724-459-3890 Fax', ''), (2210, 2210, 'Mr', 'Gary', 'Workman', '', 'PO Box 416', '', 'Nitro', 'WV', '25143', '(304) 755-8228', '(304) 755-8229 Fax', ''), (2211, 2211, 'Mr', 'Alma', 'Long', '', 'PO Box 346', '', 'Evans City', 'PA', '16033-9362', '(724) 538-1114', 'None', 'sales@aaconcreteproducts.com'), (2212, 2212, 'Mr', 'Adil', 'Wahab', '', '835 N. Main Street', '', 'Franklin', 'OH', '45005', '937-746-3634', '937-746-3635 Fax', ''), (2213, 2213, 'Mr', 'Mike', 'Ash', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314 Fax', ''), (2214, 2214, 'Mr', 'Sam', 'Callaway', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-876-0314 Fax', ''), (2215, 2215, 'Mr', 'John', 'Camburn', '', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '317-875-7000', '317-870-0314 Fax', ''), (2216, 2216, 'Mr', 'Shea', 'Carr', '', '11003 Bluegrass Parkway, Suite 690', '', 'Louisville', 'KY', '40299', '502-267-0700', '502-267-5900 FAX', ''), (2217, 2217, 'Mr', 'William', 'Mitchell', 'Accounts Payable', 'PO Box 24400', '', 'Canton', 'OH', '44701-4400', '330-438-7031', '330-436-7088 Fax', ''), (2218, 2218, 'Mr', 'Jim', 'Fazalare', 'Cardinal Plant', '306 County Road 7 East', '', 'Brillant', 'OH', '43913-1089', '(740) 598-6589', '(740) 598-6602 Fax', ''), (2219, 2219, 'Mr', 'Allison', 'Berry', '', 'One Razor Blade Lane', '', 'Verona', 'VA', '24482', '540-248-8000', '540-248-9771 Fax', ''), (2220, 2220, 'Mr', 'TJ', 'Karns', '', '11830 Brookpark Road', '', 'Cleveland', 'OH', '44130-1177', '(216) 362-1850', '(216) 265-7833 Fax', 'John Harkness 216-362-1850 x 334'), (2221, 2221, 'Mr', 'Stan', 'Ward', '', 'PO Box 398', '', 'Columbus', 'OH', '43223', '614-443-0123', '614-443-4001 Fax ', ''), (2222, 2222, 'Mr', 'Thomas', 'Smith', '', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '610-313-3227', '610-313-9667', 'tsmith@appliedtesting.com'), (2223, 2223, 'Mr', 'Bob', 'Francisco', '', 'PO Box 359', '', 'Logan', '21046', '25601', '', '', ''), (2224, 2224, 'Mr', 'Adam', 'Leadbetter', '', '143 Business Center Drive', '', 'Birmingham', 'AL', '35244', '205-283-6086 Ronnie ', '', ''), (2225, 2225, 'Mr', 'Charles', 'Breedlove', '', '900 North Garver Road', '', 'Monroe', 'OH', '45050', '(513) 539-4000', '513-539-4255', ''), (2226, 2226, 'Mr', 'George ', 'Shupp ', '', '2815 Director\'s Row ', 'Suite 500', 'Orlando', 'FL', '32809', '407-859-8378 ', '407-859-9599 Fax ', 'gshupp@ecslimited.com '), (2227, 2227, 'Mr', 'Sheila', 'Sennet', 'Attn: Sheila Sennet, Lab Operations', '531 E. Third St.', ' ', 'Dayton', 'OH', '45402', '937-435-3200', '(937) 435-5162 Fax', 'sheila.sennet@barreng.com'), (2228, 2228, 'Mr', 'John', 'Jenkin', '', '6190 Enterprise Court', '', 'Dublin', 'OH', '43016', '614-793-2226', '614-793-2410 Fax', ''), (2229, 2229, 'Mr', 'Kristy', 'Kennedy', '', '6190 Enterprise Court', '', 'Dublin', 'OH', '43016', '614-793-2226', '614-793-2410 Fax', ''), (2230, 2230, 'Mr', 'Kevin', 'Baird, Plant Mgr', '', 'PO Box 62', '', 'Rochester', 'PA', '15074', '724- 774-5100', '724-774-9140 Fax', ''), (2231, 2231, 'Mr', 'Doug', 'Kline', '', 'PO Box 337', '', 'Middleburg', 'PA', '17842', '570-837-0430', '570-837-1591 Fax', ''), (2232, 2232, 'Mr', 'Andrew', 'Watkins', '', '1305 Oberlin Avenue', '', 'Lorain', 'OH', '44052', '440-245-6826', '440-244-0414 Fax', 'andrew.watkins@usmail.becotek.com'), (2233, 2233, 'Mr', 'Bob', 'Rohn', '', 'PO Box 336', '', 'Alpena', 'MI', '49707', '(517) 354-4111', '', ''), (2234, 2234, 'Mr', 'Jack', 'Abril', '', 'PO Box 17087', '', 'Cincinnati', 'OH', '45217', '(513) 242-3644', '(513) 242-7845 Fax', ''), (2235, 2235, 'Mr', 'Tina', 'Porterfield', 'dba Bonsal American', '8201 Arrowridge Boulevard', '', 'Charlotte', 'NC', '28273', '1-800-738-1621', '(704) 529-5261 Fax', ''), (2236, 2236, 'Mr', 'Mark', 'Bingham', '', 'PO Box 51', '', 'Dayton', 'OH', '45401-0051', '937-236-8805', '937-237-9947 Fax', 'tsortman@bowser-morner.com'), (2237, 2237, 'Mr', 'Daniel', 'Francisco', '', '165 Bradstone Lane ', '', 'Harpers Ferry', 'WV', '25425', '304-725-9370', '304-728-5170 Fax', 'tracey.jones@aggregate-us.com'), (2238, 2238, 'Mr', 'Mike', 'Kukula', '', '7864 Root Road', '', 'North Ridgeville', 'OH', '44039', '440-327-3200', '440-327-3204 Fax', 'ghorachek@branamfastening.com '), (2239, 2239, 'Mr', 'Richard', 'Ritz', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', 'rdolence@braymanconstruction.com'), (2240, 2240, 'Mr', 'Albert', 'Godfrey', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax', ''), (2241, 2241, 'Mr', 'Don', 'Lehnerd', '', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '724-443-1533', '724-443-8733 Fax/724', ''), (2242, 2242, 'Mr', 'Andrew', 'Solak', '', 'PO Box 1017', '', 'Binghamton', 'NY', '13902', '607- 778-5074', '607-778-5481 Fax ', ''), (2243, 2243, 'Mr', 'Tracy', 'Bruce', '', '930 Cass Street', '', 'New Castle ', 'PA', '16101', '724-652-5566', '724-652-8290 Fax ', 'tbruce@brucenadmerrilees.com'), (2244, 2244, 'Mr', 'William', 'Mehalick', '', '1192 Perry Valley Road', '', 'Liverpool', 'PA', '17045', '717-444-3043', '717-444-9995 Fax', 'bstlabs@pa.net'), (2245, 2245, 'Mr', 'Dan', 'Hunt', '', '7657 Taylor Road', '', 'Reynoldsburg', 'OH', '43068', '(614) 575-2132', '(740) 522-6759 Fax', ''), (2246, 2246, 'Mr', 'John ', 'Ward', '', 'PO Box 400', '', 'Allen', 'KY', '41601', '606-874-9057 ', '606-874-8010 Fax', ''), (2247, 2247, 'Mr', 'Bruce ', 'Niswonger', '', 'PO Box 5', '', 'West Alexandria', 'OH', '45381', '937-456-4539', '937-456-9247 Fax', ' '), (2248, 2248, 'Mr', 'Cullen', 'Wanbaugh', '', 'PO Box 3056', '', 'York', 'PA', '17402', '(717) 755-2933', '(717) 757-1574 Fax', ''), (2249, 2249, 'Mr', 'Keith', 'Davis', 'Communtation Components Div.', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '(804) 395-8265', '(804) 395-8241 Fax', ''), (2250, 2250, 'Mr', 'Mark ', 'Frank', '', '5185 Richmond Road', '', 'Bedford Heights', 'OH', '44146', '(216) 831-3800', '216-292-1465 Fax', 'markf@cardinalfastener.com'), (2251, 2251, 'Mr', 'Rick ', 'Blaze', '', '2900 South Noah Drive', '', 'Saxonburg', 'PA', '16056', '724-352-2200', '', ''), (2252, 2252, 'Mr', 'Rudy', 'Vorkapickh', '', 'PO Box 102', '', 'Mt. Braddock', 'PA', '15465', '336-969-3533', '336-969-3566 Fax ', 'rvorkapich@carvertwire.com'), (2253, 2253, 'Mr', 'Don', 'Martin', 'Roger Dosland', '125 Westpark Road', '', 'Centerville ', 'OH', '45459', '937-428-6150', '937-428-6154 Fax', 'billrobertson@cbceng.com'), (2254, 2254, 'Mr', 'Bill', 'Robertson', 'Roger Dosland', '125 Westpark Road', '', 'Centerville', 'OH', '45459', '(937) 428-6150', '(937) 428-6154 Fax', ''), (2255, 2255, 'Mr', 'Craig', 'Mays', 'Roger Dosland', '125 Westpark Road', '', 'Centerville', 'OH', '45459', '937-428-6150', '937-428-6154', 'bgillespie@cbceng.com'), (2256, 2256, 'Mr', 'Bob', 'Kurtz', '', '1201 Five Springs Road', ' ', 'Charlottesville', 'VA', '22902', '434-296-7989', '434-293-7139 Fax', 'bob.kurtz@cellularmaterials.com '), (2257, 2257, 'Mr', 'Bob', 'Yogus', 'Formerly L. Robert Kimball', '615 West Highland Avenue', '', 'Ebensburg', 'PA', '15931', '(814) 472-7700 ext.', '(814) 472-4221 Fax', 'E-mail Invoice to joyce.fortna@lrkimball.com'), (2258, 2258, 'Mr', 'Bob ', 'Yogus ', 'Formerly L. Robert Kimball', '615 W. Highland Avenue ', '', 'Ebensburg', 'PA', '15931', '814-472-7700', '814-472-7712 Fax', ''), (2259, 2259, 'Mr', 'Bob', 'Yogus', 'Formerly L. Robert Kimball', '615 West Highland Avenue', '', 'Ebensburg', 'PA', '15931', '(814) 472-7700 x 60', '(814) 472-4221 Fax', ''), (2260, 2260, 'Mr', 'Phil', 'Young', '', 'PO Box 337', '', 'Byron Center', 'MI', '19315-0337', '616-878-3324', '616-878-3477 Fax', ''), (2261, 2261, 'Mr', 'Aaron', 'Teets', '', '10 N 3rd Street ', '', 'Oakland', 'MD', '21550', '301-334-2305', '301-334-2305 Fax ', ''), (2262, 2262, 'Mr', 'Charlotte', 'Kelly', '', '453 W. McConkey Street', '', 'Shreve', 'OH', '44676', '330-567-2145 Sharon ', '330-567-2260', ''), (2263, 2263, 'Mr', 'Gary', 'Kibbe', '', 'PO Box 1049', '', 'Holland', 'MI', '49422', '(616) 735-6500', '(616) 735-6700 FAX', 'gkibbe@challenge-mfg.com '), (2264, 2264, 'Mr', 'Todd', 'Harbin', '', 'PO Box 930313', '', 'Wixom ', 'MI', '48393', '248-669-9886', '248-669-3533 Fax', 'toddh@chasenedrow.com'), (2265, 2265, 'Mr', 'Brian ', 'Lisckay', '', 'PO Box 12', '10496 Quarry Dr.', 'Mitchells', 'VA', '22729', '540-829-7203', '540-829-5593 Fax', 'BliszKay@dalholding.com'), (2266, 2266, 'Mr', 'Clint ', 'Roof', '', 'PO Box 12', '', 'Mitchells ', 'VA', '22729', '540-829-7203', '540-829-5593 Fax', 'croof@dalholding.com '), (2267, 2267, 'Mr', 'Bennie', 'McFerron', '', 'PO Box 32', '', 'Cincinnati', 'OH', '45241', '(513) 771-8830', '', ''), (2268, 2268, 'Mr', 'Valerie', 'Fake', '', 'PO Box 9', '', 'Cockeysville', 'MD', '21030', '410-666-2350 x 120', '410-666-8781 Fax ', 'gmcelwee@cinderblockonline.com'), (2269, 2269, 'Mr', 'Craig ', 'Combs', '', '1101 S. Saginaw Street', '', 'Flint', 'MI', '48502', '(810) 766-7165 Main', '(810) 766-7249 Fax', ''), (2270, 2270, 'Mr', 'Mohammed', 'Naeem', '', '33000 Civic Center Drive', '', 'Livonia', 'MI', '48154', '(734) 466-2574', '(734) 466-2195 Fax', ''), (2271, 2271, 'Mr', 'Rob', 'Rouse', '', '1040 Perry Highway ', '', 'Mercer', 'PA', '16137', '724-372-3897', '724-748-3599 Fax', ''), (2272, 2272, 'Mr', 'John', 'Ashworth', '', 'PO Box 358', '', 'Akron', 'NY', '14001', '(716) 542-2011', '607-962-5968 Fax', ''), (2273, 2273, 'Mr', 'Lisa', 'Uschold', '', 'PO Box 405', '', 'Central Square', 'NY', '13036', '(315) 668-3868', '(315) 676-3150 Fax', ''), (2274, 2274, 'Mr', 'Jason', 'Jackson', '', '470 Drew Court', '', 'King of Prussia', 'PA', '19406', '610-731-0430', '610-731-0435 Fax', ''), (2275, 2275, 'Mr', 'Darrick', 'Kreischer', '', '941 Marcon Blvd', 'Suite 801', 'Allentown', 'PA', '18109', '610-366-7120', '717-458-0801Fax/610-', ''), (2276, 2276, 'Mr', 'Michael', 'Wright', '', '910 Century Drive', '', 'Mechanicsburg', 'PA', '17055', '717-458-0800', '717-458-0801 Fax', 'mikew@advantageengineering.net'), (2277, 2277, 'Mr', 'Zachary', 'Cochran', '', '8112 Riverside Drive', '', 'Oakwood', 'VA', '24631', '(276) 498-3836', '(276) 498-4317 Fax', ''), (2278, 2278, 'Mr', 'Nathell', 'Grubbs', '', '550 E. Spring Street', '', 'Columbus', 'OH', '43215', '(614) 287-2641', 'Use Email', 'ngrubbs@cscc.edu'), (2279, 2279, 'Mr', 'Danielle', 'Powers', '', '95 Court Street', '', 'Portsmouth', 'NH', '3801', '603-433-6060', '603-436-0944 Fax ', ''), (2280, 2280, 'Mr', 'Steve', 'Antos', '', '10340 Pleasant Street, Suite 400', '', 'Noblesville', 'IN', '46060', '317-776-1828', '317-773-6227 Fax', 'santos@ciireadymix.com'), (2281, 2281, 'Mr', 'Larry', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '814-269-2427 Larry K', '814-269-2499 Fax', ''), (2282, 2282, 'Mr', 'Larry', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '(814) 269-2427 - Lar', '(814) 269-6480 Fax -', ''), (2283, 2283, 'Mr', 'Jim', 'Mathers', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '(814) 266-2642', '(814) 269-6480 Fax -', ''), (2284, 2284, 'Mr', 'Larry', 'Kress', '', '100 CTC Drive', 'Procurement Vouchering', 'Johnstown', 'PA', '15904-1935', '(814) 266-2437 Larr', '(814) 269-6480 Fax -', ''), (2285, 2285, 'Mr', 'Kirk', 'Myers', '', 'PO Box 461', '', 'Hanover', 'PA', '17331', '717-632-7722', '717-630-8441 Fax', 'kmeyers@conewago.com'), (2286, 2286, 'Mr', 'Jon', 'Lubahn', 'Division of CMS Energy', '135 West Trail Street', '', 'Jackson', 'MI', '49201', '(517) 788-7067', '(517) 788-1724 Fax', ''), (2287, 2287, 'Mr', 'Larry ', 'Osborne', '', '20501 Goddard Road', '', 'Taylor', 'MI', '48180', '734-287-1000', '734-287-8132 Fax', 'www.wadetrim.com'), (2288, 2288, 'Mr', 'Denise', 'Reed', '', '7941 New Carlisle Pike', '', 'Huber Heights', 'OH', '45424', '937-878-2170', '937-878-8780 Fax ', 'wisemand@contechbridge.com'), (2289, 2289, 'Mr', 'Todd', 'McKinniss', '', '1500 Haul Road', '', 'Columbus', 'OH', '43207', '614-445-3830', '614-445-3839', ''), (2290, 2290, 'Mr', 'Michael', 'Pittenger', '', '8150 Sterling Court', '', 'Mentor', 'OH', '44060', '440-951-9000', '440-951-7487 Fax', 'mpittenger@ctconsultants.com'), (2291, 2291, 'Mr', 'Beth ', 'Taylor', '', '51331 W. Pontiac Trial', '', 'Wixom ', 'MI', '48393', '248-486-5100', '248-486-5050 Fax', 'tmarsik@cticompanies.com'), (2292, 2292, 'Mr', 'Beth', 'Taylor', '', '51331 W. Pontiac Trail', '', 'Wixom ', 'MI', '48393', '248-486-5100', '248-486-5050 Fax', ''), (2293, 2293, 'Mr', 'Becky', 'Carroll', '', 'PO Box 44548', '2860 Fisher Road ', 'Columbus', 'OH', '43204', '614-276-8123', '614-276-6377 Fax', ''), (2294, 2294, 'Mr', 'John', 'Pipher', '', '1229 Lowman Road ', '', 'Lowman', 'NY', '14861', '607-737-0281', '607-737-0349 Fax', 'chemunglab@gmail.com'), (2295, 2295, 'Mr', 'John ', 'Pipher', '', '1229 Lowman Road ', '', 'Lowman', 'NY', '14861', '607-737-0281', '607-737-0349 Fax', ''), (2296, 2296, 'Mr', 'Trent', 'Gages', '', '2900 Community College Avenue', '', 'Cleveland', 'OH', '44115', '216-987-4384', '216-987-4396 Fax ', 'trent.gages@tri-c.edu'), (2297, 2297, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '(607) 529-3235 ext. ', '(607) 529-3434 Fax', ''), (2298, 2298, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '(607) 529-3235 ext. ', '(607) 529-3434 Fax', ''), (2299, 2299, 'Mr', 'Roger', 'Burris', '', '2105 South Broadway', '', 'Pine City', 'NY', '14871', '(607) 529-3235 ext. ', '(607) 529-3434 Fax', ''), (2300, 2300, 'Mr', 'Fred', 'Johns', '', '1 Willow Lane', '', 'East Texas', 'PA', '18017', '610-530-6177', '610-530-6119 Fax ', 'fred_johns@daytimer.com'), (2301, 2301, 'Mr', 'Rick', 'Craddock', '', '4460 West Lake Forest Drive, Suite 200', '', 'Cinicnnati', 'OH', '45242', '513-588-1429', '513-489-6619 Fax', 'ejhanson@mactec.com'), (2302, 2302, 'Mr', 'Ted', 'Scholl', '', '298 Keystone Drive', '', 'Bethlehem', 'PA', '18020', '(610) 837-9696 x 472', '(610) 837-8420 Fax', 'joebasilone@daytonsuperior.com'), (2303, 2303, 'Mr', 'Abe', 'Turhan ', '', '7130 Ambassador Drive ', '', 'Allentown', 'PA', '18106', '610-366-3890 x 47106', '610-366-3895 Fax ', ''), (2304, 2304, 'Mr', 'Dan', 'Cagle', '', '2984 Kirila Drive ', '', 'Hermitage', 'PA', '16148', '724-342-9415', '724-342-9416 Fax', 'dan4cag@adelphia.net'), (2305, 2305, 'Mr', 'Lynn', 'Williams', '', 'One Denso Road ', '', 'Battlecreek', 'MI', '49015', '269-565-1586 Lynn', '269-968-7205 Fax', 'lisa-burns@denso-diam.com'), (2306, 2306, 'Mr', 'David', 'Lafreniere', '', 'CMRL / Bldg. 367', '585 Wilson Road', 'Fort Belvoir ', 'VA', '22060-5824', '703-704-9819', '703-704-9683 Fax ', 'david1@bldg367.belvoir.army.mil'), (2307, 2307, 'Mr', 'Julius', 'Lawerence ', 'Accounts Payable - 1948WCB', 'PO Box 44440', '', 'Detroit', 'MI', '48244-0440', '(313) 897-1117', '(313) 897-1090 Fax', ''), (2308, 2308, 'Mr', 'Desi', '', '', 'PO Box 10896', '', 'Pittsburgh', 'PA', '15236', '412-384-1000', '724-258-5761 Fax', ''), (2309, 2309, 'Mr', 'Kevin', 'Stahl', '', 'PO Box 10896', '', 'Pittsburgh', 'PA', '15236', '412-384-1000', '724-258-5761 Fax', ''); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (2310, 2310, 'Mr', 'Giorgi', 'Khardzeishvili', '', '425 Old Georges Road', '', 'North Brunswick', 'NJ', '8902', '732-658-1052', '', 'vpatel@distinct-esi.com'), (2311, 2311, 'Mr', 'Tom', 'Dixon', '', '740 Laurel Run Road ', '', 'West Decatur', 'PA', '16878', '814-342-5203', '814-342-1489 Fax ', ''), (2312, 2312, 'Mr', 'Justin', 'Bukey', '', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '614-888-0576', '614-848-6712 Fax', 'jbukey@DLZ.com'), (2313, 2313, 'Mr', 'Jamie', 'North', '', '81 Railcar Road ', '', 'Warren', 'PA', '16365', '814-432-3184', '814-437-1110 Fax ', ''), (2314, 2314, 'Mr', 'Steve', 'Robinson', '', '6121 Huntley Rd', '', 'Columbus', 'OH', '43229', '614-888-0040 x 1213 ', '614-848-6712', 'srobinson@dlz.com'), (2315, 2315, 'Mr', 'Dotty', 'DeBrouse', '', 'PO Box 402', '1022 Haley Drive', 'Mineral', 'VA', '23117', '(540) 894-2808 - Dot', '(540) 894-2813 - Fax', 'dotty_debrouse@dom.com'), (2316, 2316, 'Mr', 'Dave', 'Kintzing', '', '1740 Walton Road', 'Suite 200', 'Blue Bell', 'PA', '19422', '610-828-7472', '610-828-7593 Fax', ''), (2317, 2317, 'Mr', 'Chris ', 'Smith', '', '830 Brigham Road', '', 'Dunkirk', 'NY', '14048', '800-916-9133', '716-363-8818 Fax', 'c.smith@dunkirkspecialtysteel.com'), (2318, 2318, 'Mr', 'Brian', 'Devine', '', '5400 Limestone Road', '', 'Wilmington ', 'DE', '19808', '302-239-6634', '302-239-8485 Fax', 'bdevine@duffnet.com'), (2319, 2319, 'Mr', 'Mark', 'Griffiph', 'Formerly: Central Ready Mix ', 'PO Box 70', '', 'Monroe', 'OH', '45050', '513-402-5001 Main Of', '937-743-0651 Fax', 'mgriffiph@eagle-material.com'), (2320, 2320, 'Mr', 'Gregg ', 'Mitchell', '', '118 Sill Hall', '', 'Ypsilanti', 'MI', '48197', '734-487-1849 College', '734-487-8755 Fax/734', ''), (2321, 2321, 'Mr', 'Sam', 'Kimanu', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', 'les@ebaengineering.com'), (2322, 2322, 'Mr', 'Sam', 'Kimanu', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', ''), (2323, 2323, 'Mr', 'Sam', 'Kimani', '', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '410-358-7171 Ext. 30', '410-358-7213 Fax', 'sam.kimani@ebaengineering.com'), (2324, 2324, 'Mr', 'Gerald ', 'Feltmate', '', 'PO Box 127 /1325 Liberty Street', '200 Martha Street', 'Blairsville', 'PA', '15717', '814-456-4287 ', '814-456-4280 Fax', 'Gerry.Feltmate@specialty-bar.com'), (2325, 2325, 'Mr', 'Carol', 'Bostic', '(Formerly Engineering Consulting Svcs)', '814 Greenbrier Circle', 'Suite A', 'Chesapeake', 'VA', '23320', '757-366-5100', '757-366-5203 Fax', ''), (2326, 2326, 'Mr', 'Kevin', 'Flick', '', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '703-471-8400', '703-471-5292 Fax', ''), (2327, 2327, 'Mr', 'Kevin', 'Flick', '', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '703-471-8400', '703-471-5292 Fax', ''), (2328, 2328, 'Mr', 'Ned', 'Glysson', '', 'PO Box 1462', '', 'Ann Arbor', 'MI', '48106', '734-761-6900', '734-761-8016 Fax', 'ned@elastizell.com '), (2329, 2329, 'Mr', 'Brian', 'Ellis', '(United Aggregates Inc.)', 'Round House Lane', '', 'Mt. Vernon', 'OH', '43050', '740-397-9191', '740-397-5993 FAX', ''), (2330, 2330, 'Mr', 'Jon', 'Meddaugh', '', '2302 South M-18', '', 'Beaverton', 'MI', '48612', '231-943-5503', '231-943-5534 Fax', 'jmeddaugh@teamelmers.com'), (2331, 2331, 'Mr', 'Jon', 'Meddaugh', '', '3600 Renie School Road ', '', 'Traverse City', 'MI', '49685', '231-218-0602 Jon ', '231-943-5534 Fax', ''), (2332, 2332, 'Mr', 'Tim', 'Strohl', '', '5500 New Albany Road', '', 'Columbus', 'OH', '43054', '614-775-4559', '614-775-4896 FAX', 'tstrchl@emht.com'), (2333, 2333, 'Mr', 'Luda', 'Budilovsky', '', '1133 West 18th Street', '', 'Erie', 'PA', '16502', '814-459-2720 x133', '814-455-3751 Fax', 'john@erisco-wire.com'), (2334, 2334, 'Mr', 'Tom', 'Stoffick', 'Attn: VDR 100948', 'PO Box 100948', '', 'Lehigh Valley ', 'PA', '18002-1750', '610-837-4366', '610-867-3785 Fax', 'Accounting.Services@essroc.com'), (2335, 2335, 'Mr', 'Laura ', 'Mellon', '', '801 McNeilly Road', '', 'Pittsburgh', 'PA', '15226', '(412) 344-5503', '(412) 344-8913 Fax', ''), (2336, 2336, 'Mr', ' ', ' ', '', '1805 Horseshoe Pike', '', 'Honeybrook', 'Pa', '19344', '610-269-4685 ', '610-942-2629 fax', ''), (2337, 2337, 'Mr', 'Dennis', 'Mitchell', 'College of Science & Technology', '1201 Locust Avenue', '', 'Fairmont', 'WV', '26554', '304-367-4795', '304-367-4934 Fax ', ''), (2338, 2338, 'Mr', 'Daniel', 'Farabaugh', '', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '412-751-4001', '412-751-4003 Fax ', 'fetlabs@aol.com'), (2339, 2339, 'Mr', 'Kathi', 'Moore', '', 'Florham Park Project ', '6438 City West Parkway', 'Eden Prairie', 'MN', '55344', '952-229-7121 Kathi M', '952-995-0276 Fax', ''), (2340, 2340, 'Mr', 'Nancy', 'Klemm', '', '60 Gibb Road', '', 'Franklin', 'PA', '16323', '814-437-5114', '814-437-5114 Fax ', ''), (2341, 2341, 'Mr', 'Larry', 'Reznicek', '', '7601 West 79 Street', '', 'Bridgeview', 'IL', '60455', '708-458-0400', '', ''), (2342, 2342, 'Mr', 'Donna', 'Washburn', '', '12 McFaddden Road', '', 'Easton', 'PA', '18045', '610-559-9000 Ext. 23', '610-559-1919 FAX', ''), (2343, 2343, 'Mr', 'Ann', 'Kitlinski', '', '3608 N. Progress Avenue', '', 'Harrisburg', 'PA', '17110', '717-652-8620', '717-651-0725 Fax ', 'ftka@comcast.net'), (2344, 2344, 'Mr', 'Mike', 'Felber', '', 'PO Box 799', '', 'Berea', 'OH', '44017', '440-239-2015', '440-239-2000 Fax', 'mfelber@fastenersetc.com'), (2345, 2345, 'Mr', 'Steve', 'Davis', '', 'PO Box 2385', '', 'Elkins', 'WV', '26241', '(304) 253-8361', '', ''), (2346, 2346, 'Mr', 'Greg', 'Middleton ', '', 'PO Box 141', '', 'Dry Ridge', 'KY', '41035', '859-824-5097', '859-824-5130 Fax', 'grantcoconcrete@fuse.net'), (2347, 2347, 'Mr', 'Jim', 'Wilhelm', 'PA Soil and Rock', '410 North 3rd Street', '', 'Youngwood', 'PA', '15697', '724-640-7916 Jim Cel', '724-853-3542 Home Of', ''), (2348, 2348, 'Mr', 'Maggie ', 'Love ', '', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '(724) 696-3341', '(724) 696-4952 Fax', 'pbarnes@gulisek.com'), (2349, 2349, 'Mr', 'John', 'Roc', '', '3143 Production Drive', '', 'Fairfield', 'OH', '45014', '513-874-3733', '513-874-3967 Fax', 'tgibson@hamiltonsafe.com'), (2350, 2350, 'Mr', 'Ray', 'Houghton', '', 'PO Box 1047', '', 'Findlay', 'OH', '45839', '(607) 565-3913 ext 2', '419-424-8300 FAX', ''), (2351, 2351, 'Mr', 'Reece', 'Armitage', '', '9 Commercial Street', '', 'Hudson', 'NH', '3051', '330-467-7890', '(330) 467-7984 Fax', 'rarmitage@csitunnels.com'), (2352, 2352, 'Mr', 'Kevin', 'Samms', '', '4625 Hardin-Wapak Road', '', 'Sidney', 'OH', '45365', '(937) 492-9119', '937-268-8321 Fax', ' '), (2353, 2353, 'Mr', 'Craig', 'Green', '', '6895 Ellicot Street Rd. (Rt. 63)', '', 'Pavilion', 'NY', '14525', '(585) 584-3132 ext ', '(585) 584-3466 Fax', ''), (2354, 2354, 'Mr', 'Tim', 'Hess', '', 'PO Box 24305', '7900 New Carlisle Pike', 'Dayton', 'OH', '45424', '(937) 878-8666', '(937) 878-9293 Fax', ''), (2355, 2355, 'Mr', 'Jim', 'Ranck', '', '6045 Dixie Highway', '', 'Bridgeport', 'MI', '48722', '1-800-783-4661 Main ', '989-631-5070 Fax', ''), (2356, 2356, 'Mr', 'Shane', 'Hicks', '', '107 Wooddale Drive ', '', 'Rocky Mount', 'VA', '24151', '540-483-3389', '540-484-0963 Fax', ''), (2357, 2357, 'Mr', 'Crystal', 'Rays', 'Attn: Accounts Payable ', '3015 Dumbarton Road', '', 'Richmond', 'VA', '23228', '804-264-2701', '804-262-8994 Fax ', ''), (2358, 2358, 'Mr', 'Tom', 'Arnold', '', '2633 Waterford Road', '', 'Marietta', 'OH', '45750', '(740) 373-3211 ext 2', '(740) 373-5409 Fax', ''), (2359, 2359, 'Mr', 'Larry', 'Berry', '', '23450 Regencey Park Drive', '', 'Warren', 'MI', '48089', '586-755-0900', '586-755-7456 Fax', 'larryb@futurefencecompany.com'), (2360, 2360, 'Mr', 'Justin', 'DeLap', '', '500 Mill St ', '', 'Freeport', 'PA', '16229', '724-295-2800', '724-295-2815 Fax', 'jdelap@fuziontechnologies.us'), (2361, 2361, 'Mr', 'Gayle', 'Betten', '', '200 South Pioneer Blvd.', '', 'Springboro', 'OH', '45066-0430', '937-746-8500 x2004 G', '937-746-2524 Fax', ''), (2362, 2362, 'Mr', 'Bernie ', 'Vetter', '', '2122 Broening Highway', '', 'Baltimore ', 'MD', '21224', '410-631-2374', '410-631-5454 fax', ''), (2363, 2363, 'Mr', 'Bob', 'Stull', '', '2005 N. Center Avenue', '', 'Somerset', 'PA', '15501', '(814) 443-1671', '(814) 445-6729 Fax', ''), (2364, 2364, 'Mr', 'Kevin', 'Lichtenfels', '', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '412-823-7600', '412-823-8999 Fax', 'rorouke@geotechnics.net'), (2365, 2365, 'Mr', 'Kerri', 'Allgauer', '', '3445-A Box Hill Corp Center Drive', ' ', 'Abingdon', 'MD', '21009', '410-515-9446', '410-792-7395 fax', 'jrisso@mragta.com'), (2366, 2366, 'Mr', 'Chris', 'Reith', '', '18 Boulden Circle', 'Suite 36', 'New Castle', 'DE', '19720', '302-326-2100', '302-326-2399 Fax', 'creith@mragta.com'), (2367, 2367, 'Mr', 'Ted', 'Webster', '', '350 Golden Oak Parkway', '', 'Oakwood Village', 'OH', '44146', '440-439-5821 ', '440-439-1544 Fax', 'ted@geotechservicesinc.com'), (2368, 2368, 'Mr', 'Zack ', 'Bright', '', '9090 Junction Drive', 'Suite 9', 'Annapolis Junction', 'MD', '20701', '410-792-9446', '410-792-7395 FAX', ''), (2369, 2369, 'Mr', 'Al', 'Sumption ', '', '4055 S. Saginaw Road', '', 'Midland', 'MI', '48640', '989-496-2440', '989-496-2465 Fax', 'Asumption@geraceconstruction.com '), (2370, 2370, 'Mr', 'Nick', 'Bennett', 'Attn: Accounts Payable-Cement', 'PO Box 660140', '', 'Dallas', 'TX', '75266-0140', '610-837-4366', '610-867-3785 Fax', 'Nick.Bennett@essroc.com'), (2371, 2371, 'Mr', 'Steve', 'Robins', '', '1648 Petersburg Road', '', 'Hebron', 'KY', '41048', '859-586-8890', '859-586-8891 Fax', ''), (2372, 2372, 'Mr', 'Keith', 'Thornburg', '', '10930 Deerfield Road', '', 'Cincinnati', 'OH', '45242', '(513) 891-2000', '', ''), (2373, 2373, 'Mr', 'Tim', 'Harris', '', '3221 SR 5 ', '', 'Ashland', 'KY', '41102', '606-326-1070', '606-326-1077 Fax', ''), (2374, 2374, 'Mr', 'Mark', 'Hawkins ', '', '780 Rt 910', '', 'Cheswick', 'PA', '15024', '412-828-0400', '412-828-0300 FAX', ''), (2375, 2375, 'Mr', 'Mark', 'Hackney', '', 'One Haworth Center ', '', 'Holland', 'MI', '49423-9576', '616-393-1850', '616-393-1534 Fax ', 'www.haworth.com'), (2376, 2376, 'Mr', 'Fred', 'Steiner', 'Accounts Payable ', '5101 Evergreen Road ', '', 'Dearborn ', 'MI', '48128', '313-845-9621', '313-845-9866 Fax ', 'crichert@hfcc.edu'), (2377, 2377, 'Mr', 'David', 'Walsh', '', '11905 Bowman Drive, Suite 507', '', 'Fredericksburg', 'VA', '22408', '540-368-1414', '540-368-1444 Fax', 'dwalsh@hcea.com'), (2378, 2378, 'Mr', 'Phic', 'Czirr', '', 'PO Box 200', '', 'Paris', 'KY', '40362', '859-987-3670', '859-987-0727 Fax', ''), (2379, 2379, 'Mr', 'Phic', 'Czirr', '', 'PO Box 200', '', 'Paris', 'KY', '40362', '859-987-3670', '859-987-0727 Fax', ''), (2380, 2380, 'Mr', 'Jack ', 'Detz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 ', '(614) 876-1899 Fax', ''), (2381, 2381, 'Mr', 'Jack', 'Deitz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '614-846-1700 Ext. 32', '614-876-1899 Fax', ''), (2382, 2382, 'Mr', 'Jack', 'Detz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026', '614-876-1700 ', '614-876-1899 Fax', 'rtruman@hiwaypaving.com'), (2383, 2383, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026-0550', '(614) 876-1700 Ext.', '(614) 876-1899 Fax', ''), (2384, 2384, 'Mr', 'Jack', 'Detz', '', 'PO Box 550', '', 'Hilliard', 'OH', '43026', '614-876-1700 Ext. 3', '614-876-1899 Fax', 'jackdetz@netzero.com'), (2385, 2385, 'Mr', 'Jack', 'Dietz', '', 'PO Box 550', '', 'Hillard', 'OH', '43026-0550', '614-876-1700 ext 320', '614-876-1899 Fax', ''), (2386, 2386, 'Mr', 'Bob', 'Mulichak', '', '4996 Freedom Way', '', 'Weirton', 'WV', '26062', '(304) 797-1411', '(304) 797-0043 Fax', ''), (2387, 2387, 'Mr', 'Angela', 'Droullard', 'The Prestress Group ', 'PO Box 32996', '', 'Detroit', 'MI', '48232', '519-737-1216 x261 An', '519-737-6464 Fax ', ''), (2388, 2388, 'Mr', 'Phil', 'Hopkins', '', '6875 Boneta Road', '', 'Medina', 'OH', '44256', '(330) 336-3109', '(330) 336-2882 Fax', ''), (2389, 2389, 'Mr', 'Dave', 'Brugger', '', 'PO Box 192', '', 'Girard', 'PA', '16417', '(814) 774-2664', '814-774-5394 Fax New', ''), (2390, 2390, 'Mr', 'Collin', 'Sargent', 'Formerly Valley Concrete', '3401 Market Street', '', 'Wheeling', 'WV', '26003', '304-233-2710', '304-233-2711 Fax', ''), (2391, 2391, 'Mr', 'Larry', 'Kitko', '', '1750 W. College Ave.', '', 'State College', 'PA', '16801-0155', '814-278-6935', '814-238-8409 Fax', 'gradziak@hrico.com'), (2392, 2392, 'Mr', 'Judy', 'Hartman', '', 'PO Box 824', '', 'Bloomfield Hills', 'MI', '48303-0824', '248-454-6880 Judy', '248-454-6345 Fax', ''), (2393, 2393, 'Mr', 'Shawn', 'McGee', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', 'smcgee@hullinc.com'), (2394, 2394, 'Mr', 'Shawn', 'McGee', 'Attn: Accounts Payable', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', 'smcgee@hullinc.com'), (2395, 2395, 'Mr', 'Jason', 'Wooten', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', ''), (2396, 2396, 'Mr', 'Shawn', 'McGee', '', '6397 Emerald Pkwy Suite 200', '', 'Dublin', 'OH', '43016', '614-793-8777', '614-793-9070 Fax', 'jhenfling@hullinc.com'), (2397, 2397, 'Mr', 'David', 'Darwin', '', '426 Barell Avenue', '', 'Carlstadt', 'NJ', '7072', '201-386-8110 x 1126', '201-386-8155 Fax ', 'ddarwin@hycrete.com'), (2398, 2398, 'Mr', 'Connie', 'Varsho', '', 'PO Box 2459', '', 'Youngstown', 'OH', '44509', '(330) 799-3221', '(330) 799-9098 Fax', ''), (2399, 2399, 'Mr', 'Denny', 'Fry', '', '300 East Big Beaver Road', '', 'Troy', 'MI', '48083', '248-307-5867 (Discon', '248-307-5868 Fax (Di', 'dclugh@lear.com'), (2400, 2400, 'Mr', 'Jerry', 'Wolff', '', '140 E. 16th St. ', '', 'Erie', 'PA', '16503', '814-464-0262', '814-464-0268 Fax', 'jwolff@industrialpapers/inc.com'), (2401, 2401, 'Mr', 'Howard', 'Owens', ' ', '8899 E. 56th Street', '', 'Indianapolis ', 'IN ', '46249', '888-332-7336', '845-938-0357 Fax', 'lynden.crosbie@usma.edu'), (2402, 2402, 'Mr', 'Jon', 'Belkowitz', '', '173 Woodcrest Drive ', '', 'Freehold', 'NJ', '7728', '732-804-8996 Cell Wh', '732-252-6994 Fax ', 'jon.belkowitz@gmail.com '), (2403, 2403, 'Mr', 'Dave ', 'Peters', '', '6001 Antoine Drive ', '', 'Houston', 'TX', '77091', '440-234-2900', '713-684-1342 Fax', 'www.ceilcotecc.com'), (2404, 2404, 'Mr', 'James ', 'Richards', 'Great Lakes Soil & Environmental ', '24371 Catherine Industrial Dr.,', 'Suite 229', 'Novi', 'MI', '48375', '313-918-4492', '248-344-2115 Fax', 'djacob@interraservices.com'), (2405, 2405, 'Mr', 'George', 'Snyder ', '', 'PO Box 378', '7321 State Rt. 251', 'Victor', 'NY', '14564', '585-924-2050/1-800-8', '585-924-2084 Fax', 'PATRICK.SPENCER@ITT.COM'), (2406, 2406, 'Mr', 'Rick', 'Saum', '', '1919 E US 12', '', 'Michigan City', 'IN', '46360', '219-874-4217', '219-979-6728 Fax', 'rsaum@itwccna.com'), (2407, 2407, 'Mr', 'Ashley', 'Weis', '', '215 Rainbow Street', '', 'Wadsworth', 'OH', '44281', '330-335-0606', '330-335-0908 Fax', ''), (2408, 2408, 'Mr', 'Jack', 'Boschuk', '(Formerly J & L Testing)', '938 S Central Ave.', '', 'Cannonsburg', 'PA', '15317', '(724) 746-4441/724-4', '(724) 745-4261 Fax', 'jboschuk@jltlabs.com'), (2409, 2409, 'Mr', 'Ronald', 'Brewer', '', '438 Church Street', '', 'Girard', 'PA', '16417', '814-774-3573', '814-774-2854 Fax', ' rbrewer@jackburn.com'), (2410, 2410, 'Mr', 'Steve', 'Johnson', '', '178 Blackstone Avenue', '', 'Jamestown', 'NY', '14701', '716-665-5313 x 245', '716-665-5121 FAX', ''), (2411, 2411, 'Mr', 'Steve', 'Rhodes', '', 'PO Box 11351', '', 'Pittsburgh', 'PA', '15238', '724-265-4600 ', '724-265-3323 Fax', 'sschoedel@jbfayco.com'), (2412, 2412, 'Mr', 'Brenda ', 'Eberly', '', '2116 Haslett Rd', '', 'Haslett', 'MI', '48840', '517-339-1014', '517-339-8047 FAX', ''), (2413, 2413, 'Mr', 'Elaine', 'Struble', '', 'PO Box 362 ', '3416 Corwin Road ', 'Williamston', 'MI', '48895', '517-655-4602', '517-655-8042 Fax ', 'harmharnstras@kelcris.com'), (2414, 2414, 'Mr', 'Brian', 'Kelly', '', '340 Strayer Street', '', 'Johnstown', 'PA', '15906', '814-536-6630', '814-536-5730 Fax ', 'brianckellypls@verizon.net '), (2415, 2415, 'Mr', 'Abdul', 'Shakoor', 'Geology Department', 'PO Box 5190', '', 'Kent', 'OH', '44242', '330-672-2968', '330-672-7949 Fax ', ''), (2416, 2416, 'Mr', 'Derek ', 'Hunderman', '', '3373 Busch Drive SW', '', 'Grandville ', 'MI', '49418', '(616) 457-4920', '616-224-2651 Fax', 'MTenharmsel@kerkstra.com'), (2417, 2417, 'Mr', 'Peyton', 'Cramer', '', 'Route 4 Box 226', '', 'Keyser', 'WV', '26726', '(304) 788-3213', '(304) 788-3232 Fax', ''), (2418, 2418, 'Mr', '', '', '', 'Beatty Avenue', '', 'Knox', 'PA', '16232', '(814) 797-1261', '', ''), (2419, 2419, 'Mr', '', '', '', 'Beatty Avenue', '', 'Knox', 'PA', '16232', '(814) 797-1261', '', ''), (2420, 2420, 'Mr', 'Brad', 'Broman', '', '233 Northpark Drive', 'West Hills Industrial Park', 'Kittanning', 'PA', '16201', '724-545-7850', '', ''), (2421, 2421, 'Mr', 'Steve', 'Prosek', '', 'PO Box 226', '', 'Fredericktown', 'OH', '43019', '304-766-8062', '740-694-6868 Fax', ''), (2422, 2422, 'Mr', 'Jackie', 'Patterson', '', '1101 Railroad Street', '', 'Monongahela', 'PA', '15063', '724-258-6900', '724-258-8075 Fax', ''), (2423, 2423, 'Mr', 'Jeff', 'Williams', 'Attn: Scott Hanks', '300 East Joppa Road, Suite 200', '', 'Towson', 'MD', '21286', '412-847-3267', '410-847-3354 Fax', 'Shawn.Kennedy@lafarge-na.com'), (2424, 2424, 'Mr', 'Brian', 'Chestnut', '', '34 Strohm Road', '', 'Shippensburg', 'PA', '17257', '(717) 532-5959', '(717) 532-7997 Fax', ''), (2425, 2425, 'Mr', 'Jay', 'Mazzoni', '', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '(502) 495-5800', '(502) 495-5801 Fax', ''), (2426, 2426, 'Mr', 'Jay', 'Mazzoni', '', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '(502) 495-5800', '(502) 495-5801 Fax', ''), (2427, 2427, 'Mr', 'Jay', 'Mazzoni', '', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '(502) 495-5800', '(502) 495-5801 Fax', ''), (2428, 2428, 'Mr', 'Steve', 'Cook', '', '4465 Brookfield Corp. Drive', '', 'Chantilly', 'VA', '22021', '(703) 968-4780', '(703) 968-4778 Fax', ''), (2429, 2429, 'Mr', 'Corry', 'Prunty', '', 'PO Box 627', '3530 Parkway Lane', 'Hilliard', 'OH', '43026', '(614) 777-6013', '(614) 777-6160 Fax', ''), (2430, 2430, 'Mr', 'Leo', 'Miller', '', 'PO Box 488', '', 'Harlan', 'KY', '40831', '606-573-4300', '606-573-6722 Fax', 'lmiller@leomillerengineering.com'), (2431, 2431, 'Mr', 'Thomas', 'Moore', 'Attn: Tom Moore', 'PO Box 89100', '', 'Pittsburgh', 'PA', '15227', '724-652-9330', '724-652-7714 Fax', ''), (2432, 2432, 'Mr', 'Louay', 'Mohammad', 'Accounting Services', 'PO Box 25115', '', 'Baton Rouge', 'LA', '70808', '225-578-3321', '', 'louaym@lsu.edu'), (2433, 2433, 'Mr', 'Scott', 'Sanders', '', '4 Barlo Circle', 'PO Box 432', 'Dillsburg', 'PA', '17019-0432', '717-432-3429', '717-432-7343 FAX', 's.sanders@lobarassoc.com'), (2434, 2434, 'Mr', 'Sharon', 'Dalton', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 ', '770-360-0520 Fax', ''), (2435, 2435, 'Mr', 'Sharon', 'Dalton', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 Jeremy ', '770-360-0520 Fax', ''), (2436, 2436, 'Mr', 'Brian', 'Porterfield', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600', '770-360-0520 Fax', ''), (2437, 2437, 'Mr', 'Brian', 'Porterfield', '', '21740 Beaumeade Circle, #150', '', 'Ashburn', 'VA', '20147', '703-729-1416', '703-858-1858 Fax', ''), (2438, 2438, 'Mr', 'Joseph', 'Kirchner ', '', '1105 Lakewood Parkway, Suite 300', '', 'Alpharetta', 'GA', '30004', '770-360-0600 Jeremy ', '770-360-0520 Fax', ''), (2439, 2439, 'Mr', 'Michele ', 'Scales', '', '3400 Southwest Blvd', '', 'Grove City', 'OH', '43123', '614-875-8200', '614-875-1175 Fax', 'jnorth@cjmahan.com'), (2440, 2440, 'Mr', 'Michael', 'Clinton', '', '5400 Limestone Road', '', 'Wilmington', 'DE', '19808', '302-239-6634', '302-239-8485 Fax', 'mclinton@duffnet.com'), (2441, 2441, 'Mr', 'Dave', 'Hammontree', '', '7505 Highway M-71', '', 'Durand', 'MI', '48429', '989- 288-2661 Ext. 2', '989- 288-6918 Fax', ''), (2442, 2442, 'Mr', 'Brian', 'Solkozy', 'Accounts Payable', '1720 Metropolitan Street', '', 'Pittsburgh', 'PA', '15233-2232', '412-475-1539/412-321', '412-321-4922 FAX', 'mfleury@mascaroconstruction.com'), (2443, 2443, 'Mr', 'Joe', 'Dacsko', '', '23700 Chargrin Boulevard', '', 'Cleveland', 'OH', '44122-5500', '(216) 831-5500', '(216) 831-6053', ''), (2444, 2444, 'Mr', 'John', 'May', 'Formerly Warren Analytical Group', '511 W. Houghton Ave', 'Second Floor', 'Roscommon', 'MI', '48653', '989-390-1756', '989-345-1100 Fax ', 'jpmay@michigansurveys.com '), (2445, 2445, 'Mr', 'Janet', 'McCarroll, QC', '', 'RR 2 Box 311', '', 'Dallas', 'PA', '18612', '(717) 675-2717', '', ''), (2446, 2446, 'Mr', 'Gary', 'Rhinehart', '', 'PO Box 1453', '', 'Harrisburg', 'PA', '17105', '(717) 238-9331', '717-364-1640 Fax', ''), (2447, 2447, 'Mr', 'Kerry', 'Hornyak', '', '1595 Route 422 E', '', 'Fenelton', 'PA', '16034', '724-283-6200', '724-283-1067 Fax', ''), (2448, 2448, 'Mr', 'Kerry', 'Hornyak', '', '1595 Route 422 E', '', 'Fenelton', 'PA', '16034', '724-283-6200', '724-283-1067 Fax', ''), (2449, 2449, 'Mr', 'Dick', 'Schorr', '', '1275 Kinnear Road ', '', 'Columbus', 'OH', '43212', '614-340-1690 x 2635', '614-487-3704 Fax ', 'jshotwell@metamateria.com'), (2450, 2450, 'Mr', 'Tim', 'Swift', '', '451 Hungerford Dr, Suite 113', '', 'Rockville', 'MD', '20850', '301-738-5690', '301-738-5695 Fax', ''), (2451, 2451, 'Mr', 'Karen', 'Morlan', '', '1420 Front Street', '', 'Grand Rapids', 'MI', '49504-3221', '616-464-1800', '616-464-1189 Fax', 'MorlanK@michigan.gov'), (2452, 2452, 'Mr', 'Donna', 'Cutshaw', '', '11023 Dennis W Kerns Parkway', '', 'King George', 'VA', '22485', '540-775-2275', '540-775-2563 Fax', ''), (2453, 2453, 'Mr', 'Dave ', 'Tappendorf', '', '501 Mercury Drive', '', 'Champange', 'IL', '61822', '217-359-2128', '', ''), (2454, 2454, 'Mr', 'Matthew', 'Brozowski ', '', '960 West River Center Drive, Suite A', '', 'Comstock Park ', 'MI', '49321', '616-647-3004', '616-647-3005 Fax ', ''), (2455, 2455, 'Mr', 'Kinga', 'Blum', '', 'PO Box 385', '', 'Meadow Lands', 'PA', '15347', '724-222-3855', '724-250-7450 Fax ', 'mingocreek@comcast.net'), (2456, 2456, 'Mr', 'Rodney', 'Smith', '', '150 Carley Court ', '', 'Georgetown', 'KY', '40324', '502-868-6221', '502-863-0834 Fax', ''), (2457, 2457, 'Mr', 'Waty', 'Yirka', '', '12750 Twinbrook Parkway', '', 'Rockville', 'MD', '20852', '301-881-2545', '301-881-0814 Fax', 'jchafin@amtengineering.com '), (2458, 2458, 'Mr', 'Jackie', 'Hatfield', 'Formerly Mountaineer Testing Services, Inc.', '11 Hanna Farm Rd', '', 'Summersville', 'WV', '26651', '304-872-8110', '304-872-7110 Fax', 'info@mountainstatebridge.com'), (2459, 2459, 'Mr', 'Bill', 'Dominick', '', '400 Mosites Way', 'Suite 100', 'Pittsburgh', 'PA', '15205', '(412) 297-5246', '412-788-1169 Fax', ''), (2460, 2460, 'Mr', 'Jason', 'Hardy', '', '167 Anderson Rd.', '', 'Cranberry Twp.', 'PA', '16066', '724-453-2800', 'No Fax (Use E-Mail)', 'jason.hardy@naes.com'), (2461, 2461, 'Mr', 'Mike', 'McGaw', '', 'PO Box 26268', 'Send Cert copy Here', 'Fairview Park', 'OH', '44126', '216-521-3490', '216-521-3491 Fax ', 'mike@mcgawrech.com'), (2462, 2462, 'Mr', 'Mike', 'McGaw', '', 'PO Box 26268', 'Send Cert copy Here', 'Fairview Park', 'OH', '44126', '216-521-3490', '216-433-8300 Fax ', 'mike@mcgawrech.com'), (2463, 2463, 'Mr', 'Christy', 'James', '', '12608 Almeda Drive', '', 'Strongsville', 'OH', '44136', '(216) 238-3331', '', ''), (2464, 2464, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax ', ''), (2465, 2465, 'Mr', 'Harry', 'McGhee', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax ', ''), (2466, 2466, 'Mr', 'David', 'Stultz', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax ', ''), (2467, 2467, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax', 'mmoyer@nesl.com'), (2468, 2468, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax ', 'mmoyer@nesl.com'), (2469, 2469, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax ', ''), (2470, 2470, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '3912 Brumbaugh Road', '', 'New Enterprise', 'PA', '16664', '814-224-2121', '814-766-4402 Fax ', ''), (2471, 2471, 'Mr', 'Mark', 'Moyer', 'Attn: Carol Norris', '3912 Brumbaugh Road', ' ', 'New Enterprise', 'PA', '16664', '814-224-6870', '814-766-4402 Fax ', 'mmoyer@nesl.com'), (2472, 2472, 'Mr', 'Paula', 'Blatnica', '', '12 McClane Street', '', 'Cuddy', 'PA', '15031', '412-221-4500 x 2239 ', '412-221-3127 Fax', ''), (2473, 2473, 'Mr', 'Norma', 'Maddox', 'Accounts Payable Department', 'PO Box 98100, DL Clark Bldg.', '503 Martindale Street', 'Pittsburgh', 'PA', '15212', '412-462-9300', '412-462-3002 Fax ', ''), (2474, 2474, 'Mr', 'Michael', 'Kelley', '', '1550 Coraopolis Heights Road', '', 'Moon Township', 'PA', '15108', '412-490-4000', '724-770-5520 Mike ', 'madishj@novachem.com'), (2475, 2475, 'Mr', 'Tracye', 'Avant', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-553-6300', '(248) 324-5178 Fax', ''), (2476, 2476, 'Mr', 'Ron ', 'Stauffer', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-553-6300', '248-324-5178 Fax', 'rstauffer@nthconsultants.com'), (2477, 2477, 'Mr', 'Zeerak', 'Paydawy', 'Attn: A/P Code: CV151', '41780 Six Mile Road', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-553-6300', '248-324-5178 Fax', 'zpaydawy@nthconsultants.com'), (2478, 2478, 'Mr', 'Zeerak ', 'Paydawy', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-553-6300', '248-324-5178 Fax', ''), (2479, 2479, 'Mr', 'Debbie', 'Klinger', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-324-5329', '248-324-5178 Fax', 'dklinger@nthconsultnats.com'), (2480, 2480, 'Mr', 'Debbie', 'Klinger', 'Attn: A/P Code: CV151', '41780 Six Mile Road ', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-324-5329', '248-324-5178 Fax', 'jljackson@nthconsultants.com '), (2481, 2481, 'Mr', 'Jim ', 'Parsons', 'Attn: A/P Code: CV151', '41780 Six Mile Road', 'Suite 200', 'Northville', 'MI', '48168-3459', '248-324-5329', '248-324-5178 Fax', 'dklinger@nthconsultants.com'), (2482, 2482, 'Mr', 'Chuck ', 'Lee', '', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '(616) 381-1550', '(616) 381-1711 Fax', ''), (2483, 2483, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (2484, 2484, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (2485, 2485, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (2486, 2486, 'Mr', 'Bill', 'Koniowka', 'Material Lab ', '1220 Washington Ave. Building #7', '', 'Albany', 'NY', '12201', '(518) 457-5623', '(518) 457-8171 Fax', ''), (2487, 2487, 'Mr', 'Tim', 'Goodall', '', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '513-321-5816', '513-321-0294 Fax', ''), (2488, 2488, 'Mr', 'Tom', 'Medvick', '', '912 Morris Street', '', 'Charleston', 'WV', '25301', '304-344-0821 Tom', '304-342-4711 Fax', ''), (2489, 2489, 'Mr', 'Robert', 'Walts', '', 'Materials Bureau Bldg #7 State Campus', '1220 Washington Avenue', 'Albany', 'NY', '12232', '315-469-3285', '315-469-1614 Fax', ''), (2490, 2490, 'Mr', 'Rick', 'Halas', '', '5777 Lewiston Road', '', 'Lewiston', 'NY', '14092', '(716) 285-3211', '716-286-6931 Fax', ''), (2491, 2491, 'Mr', 'Chris ', 'Pridemore ', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1309', '614-275-1354 Fax', ''), (2492, 2492, 'Mr', 'Chris ', 'Pridemore ', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1308', '614-275-1354 Fax', 'alexander.dettloff@dot.state.oh.us'), (2493, 2493, 'Mr', 'Chris ', 'Pridemore ', 'Soils Division', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '614-275-1308', '614-275-1354 Fax', 'alexander.dettloff@dot.state.oh.us'), (2494, 2494, 'Mr', 'Greg', 'Jacot', '4D/Schuster\'s', '5190 Oster Road', '', 'Sheffield Lake ', 'OH', '44054', '440-949-1815', '440-949-1206 Fax', 'greg.jacot@oldcastleapg.com'), (2495, 2495, 'Mr', 'Brian', 'Dill', '', '200 Keystone Drive', '', 'Telford ', 'PA', '18696', '215-257-2255', '215-453-5813 Fax', 'brian.dill@oldcastle.com'), (2496, 2496, 'Mr', 'Brent ', 'Bowly', '', 'PO Box 1448', '', 'St. Albans', 'WV', '25177', '(304) 722-4237', '(304) 722-4230 Fax', 'www.ordersconstruction.com '), (2497, 2497, 'Mr', 'Howard', 'Flint', '', 'PO Box 1448', '', 'St. Albans', 'WV', '25177', '(304) 722-4237', '', ''), (2498, 2498, 'Mr', 'Bill', 'Ramsey', '', '275 Southwest Avenue', '', 'Tallmadge', 'OH', '44278', '330-630-6239', '330-633-4939 Fax ', ''), (2499, 2499, 'Mr', 'Clive', 'Hughes', '', 'PO Box 279', '', 'Louisa', 'KY', '41230', '(606) 673-4413', '(606) 673-4416 Fax', 'cmeadows@pandaengineers.com'), (2500, 2500, 'Mr', 'Dave', 'Rowland ', '', '637 E. Dixie Drive ', '', 'West Carroltown', 'OH', '45449', '937-847-9707', '937-847-9720 Fax ', ''), (2501, 2501, 'Mr', 'Terry', 'Martin', '', '1101 Railroad Street', '', 'Monongahela', 'PA', '15063', '(724) 258-6900', '(724) 258-8075 Fax', ''), (2502, 2502, 'Mr', 'Lila', 'Triplett', '', '14221A Willard Road, St 500', '', 'Chantilly', 'VA', '20151', '703-263-0400', '703-263-9024 Fax', ''), (2503, 2503, 'Mr', 'Brian', 'Kelly', '', '105 Mall Blvd.', 'Expo Mart 270-E', 'Monroeville', 'PA', '15146', '412-856-9700 Ext 101', '412-856-9749 Fax', 'brian.kelly@rizzoassoc.com'), (2504, 2504, 'Mr', 'James', 'Minear', '', 'PO Box 296', '', 'Marietta', 'OH', '45750', '740-373-6861', '740-373-6832 Fax', 'pawnee1@roadrunner.com'), (2505, 2505, 'Mr', 'Fernando', 'Roldan', '', '1321 Industrial Pkwy N STE 500', '', 'Brunswick', 'OH', '44212', '586-731-1628', '586-731-7007 Fax', 'fernando@penstress.com'), (2506, 2506, 'Mr', 'Anthony', 'Gale ', 'Formerly New Enterprise Stone & Lime', 'DBA PennStress', 'Box 597 ', 'Holidaysburg', 'PA', '16648', '814-224-2121', '814-766-4402 Fax ', 'agale@pennstress.com '), (2507, 2507, 'Mr', 'Chris', 'Neely', 'Highway Administration', '400 North Street', '7th Floor', 'Harrisburg', 'PA', '17120', '717-787-7267', '717-425-7677 Fax', 'chneely@pa.gov'), (2508, 2508, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717) 787-1037', '(717) 783-5955 Fax', 'chneely@state.pa.us'), (2509, 2509, 'Mr', 'Chris', 'Neely', '', 'PO Box 69180', '', 'Harrisburg', 'PA', '17106', '(717( 787-1037', '717-783-5955 Fax', 'chneely@state.pa.us'), (2510, 2510, 'Mr', 'Chad', 'Eckert', 'Blue Water St. Marys ', '118 Access Road ', '', 'St. Marys', 'PA', '15857', '(814) 781-6262', '(814) 781-3196 Fax', ''), (2511, 2511, 'Mr', 'Billy', 'Lanthorn', '', '5837 Mary Ingles Highway', '', 'Melbourne', 'KY', '41059', '859-441-0068', '859-441-7986 Fax', 'blanthorn@prestressservices.com'), (2512, 2512, 'Mr', 'Terry', 'Hauser', 'Formerly Erico Products ', '34600 Solon Rd.', '', 'Solon', 'OH', '44139', '440-248-0100', '440-848-8521 Fax', 'bjanas@erico.com'), (2513, 2513, 'Mr', 'David', 'Richards', '', '759 Northgate Circle', 'Northgate Industrial Park ', 'New Castle', 'PA', '16105', '724-658-3003', '724-658-4486 Fax ', ''), (2514, 2514, 'Mr', 'Julio', 'Pascella', '', '1500 Marblewood Avenue', '', 'Fairmount Heights', 'MD', '20743', '301-322-5190', '301-322-5197 Fax', ''), (2515, 2515, 'Mr', 'Ronald', 'Heacock', '', 'PO Box 425', '3178 Phoenixville Pike', 'Devault', 'PA', '19432', '610-644-7338', '610-644-8682 Fax', 'pipe&precast@aol.com'), (2516, 2516, 'Mr', 'Andy', 'Molek', '', '1877 Route 2023', '', 'Monongahela', 'PA', '15063', '724-258-4450 ext 325', '724-258-4202 Fax', ''), (2517, 2517, 'Mr', 'John', 'Butorac', 'Accounts Payable- Building A', 'PO Box 2500 C', '', 'Plymouth', 'MI', '48170', '734-455-3600', '734-354-7391 Fax', ''), (2518, 2518, 'Mr', 'Linda', 'Harmon', '', '850 West Smith Road; Building B', '', 'Medina', 'OH', '44256', '330-725-0205 Ext. 2', '330-725-5716 FAX', ''), (2519, 2519, 'Mr', 'Bryan', 'Smith', '', '18015 St. Rt. 65', '', 'Jackson Center', 'OH', '45334', '937-596-6142 ext. 27', '937-596-6268 Fax', ''), (2520, 2520, 'Mr', 'Brian', 'Miller', '', '864 Croft Road ', '', 'Greensburg', 'PA', '15601', '724-668-8000', '724-668-2272 Fax ', 'bmiller@plumcontractinginc.com'), (2521, 2521, 'Mr', 'Bruce', 'White', '', 'PO Drawer 768', '411 Alburn Street', 'Martinsburg', 'WV', '25401', '(304) 263-3327', '(304) 263-0142 Fax ', ''), (2522, 2522, 'Mr', 'Satish', 'Korpe', '', '9244 E. Hampton Drive, Suite 615', '', 'Capital Heights', 'MD', '20743', '301-336-6857', '301-336-6899 Fax ', ''), (2523, 2523, 'Mr', 'Tori', 'Vanderhaar', '', '4950 White Lake Road', '', 'Clarkston', 'MI', '48346', '248-625-8080 ', '248-625-0978 Fax', ''), (2524, 2524, 'Mr', 'Larry', 'Shupe', 'Office of Finance/Accounting Division', 'County Administration Building', '', 'Upper Marlboro', 'MD', '20772', '', '', ''), (2525, 2525, 'Mr', 'Katie', 'PrinzBach', '', '438 Island Pointe Lane ', '', 'Moneta', 'VA', '24121', '540-721-4029', '540-721-3762 Fax', 'prinzbach@jetbroadband.com'), (2526, 2526, 'Mr', 'Lori', 'Haskell', '', '3784 Commers Court, Suite 300 ', '', 'North Tonawanda', 'NY', '14120', '716-694-8657', '716-694-8638 Fax', 'charles.forth@psiusa.com'), (2527, 2527, 'Mr', 'Dave', 'Sabol', '', '5555 Canal Road ', '', 'Cleveland', 'OH', '44125', '(216) 447-1335 x 127', '(216) 642-7008 Fax', ''), (2528, 2528, 'Mr', '', 'QC Manager', '', '3125 Soverign Drive', '', 'Lansing', 'MI', '48911', '(517) 394-5700', '', ''), (2529, 2529, 'Mr', 'Kathy', 'Kelly', '', '7505 Mason King Court', '', 'Manassas', 'VA', '20109', '703-396-6000', '703-396-6090 FAX', ''), (2530, 2530, 'Mr', 'Ryan ', 'Rasmussen', 'Engineering Manager/QC Dept.', '6600 Mount Elliott Avenue', '', 'Detroit', 'MI', '48211-2437', '', '', ''), (2531, 2531, 'Mr', 'Bruce', 'Ealey', '', '422 Codell Drive', '', 'Lexington', 'KY', '40509', '859-509-4998', '859-299-2481 Fax', ''), (2532, 2532, 'Mr', 'Tim', 'Wells', '(Formerly Atlanta Testing & Eng)', '1019 Woodland Drive', '', 'Lima', 'OH', '45805', '859-509-4995 Tim', '859-299-2481 Fax', 'jfolsom@qore.net'), (2533, 2533, 'Mr', 'Ernie ', 'Kihl', '', '11801 S. Sam Houston Parkway', '', 'Houston ', 'TX', '77031', '832-295-5000', '832-295-5001 Fax', 'ernest.kihl@applusrtd.com'), (2534, 2534, 'Mr', 'Justin ', 'Gibbons', '', 'PO Box 3004', '405 Water Lake', 'Conneaut Lake', 'PA', '16316', '814-382-0373', '814-382-0375 Fax', 'jgibbons@qespavements.com'), (2535, 2535, 'Mr', 'Dina', 'Graber', '', '11801 S. Sam Houston Parkway', '', 'Houston ', 'TX', '77031', '832-295-5000', '832-295-5001 Fax', ''), (2536, 2536, 'Mr', 'Keith', 'Taylor', '', '11801 S. Sam Houston Parkway', '', 'Houston', 'TX', '77031', '832-295-5000', '832-295-5001 Fax', 'craig.witherell@applusrtd.com'), (2537, 2537, 'Mr', 'Keith', 'Taylor', '', '11801 S. Sam Houston Parkway', '', 'Houston', 'TX', '77031', '832-295-5000 ', '832-295-5001 Fax', 'craig.witherell@applusrtd.com'), (2538, 2538, 'Mr', 'Keith', 'Taylor', '', '11801 S. Sam Houston Parkway', '', 'Houston ', 'TX', '77031', '832-295-5000', '832-295-5001 Fax', 'craig.witherell@applusrtd.com'), (2539, 2539, 'Mr', 'Isaac', 'Puentes', '', '7002 Commerce ', '', 'El Paso', 'TX', '79915', '915-778-5233', '915-779-8301 Fax ', 'ipuentes@rkci.com'), (2540, 2540, 'Mr', 'John', ' ', '', 'PO Box 430', '', 'Woodstown', 'NJ', '8098', '856-769-8244', '856-769-8245 Fax', ''), (2541, 2541, 'Mr', 'Lynn', 'McGregor', 'Formally United Refractories', 'Penn Center West, Building 2, Suite430', '', 'Pittsburgh', 'PA', '15276', '412-494-4491', '412-494-4571 Fax', 'lynn.mcgregor@resoproducts.com'), (2542, 2542, 'Mr', 'Gary', 'Langerman', '', '6350 Presidential Gateway', '', 'Columbus', 'OH', '43231', '614-823-4949', '614-823-4990 Fax', ''), (2543, 2543, 'Mr', 'Eric', 'Robey', 'Div. of Information & Engineering Tech.', '4240 Campus Drive', 'Attn: Eric Robey', 'Lima', 'OH', '45804', '419-995-8000', '419-995-8095 Fax ', ''), (2544, 2544, 'Mr', 'Donald', 'Lampus', '', 'PO Box 167', '', 'Springdale', 'PA', '15144-0167', '412-362-3800', '724-274-2181 Fax', ''), (2545, 2545, 'Mr', 'Pete', 'Armlovich', 'ATTN: 0005292', '5690 Camp Road', '', 'Hamburg', 'NY', '14075', '(716) 649-3260 Ext. ', '(716) 649-9542 Fax', ''), (2546, 2546, 'Mr', 'Pete', 'Armolovich', 'ATTN: 0005292', '5690 Camp Road', '', 'Hamburg', 'NY', '14075', '(716) 649-3260 Ext 1', '(716) 649-9542 Fax', ''), (2547, 2547, 'Mr', 'Tracy', 'Treneff', '', '620 Liberty Road', '', 'Delaware', 'OH', '43015', '740-363-1376', '740-363-1377 Fax', ''), (2548, 2548, 'Mr', 'Diane ', 'Smith', '', 'PO Box 79', '', 'Shippack', 'PA', '19474', '610-323-6600', '610-222-4010 Fax AP', ''), (2549, 2549, 'Mr', 'Randy', 'Guy', '', '1746 Charlestown Road ', '', 'Minden City', 'MI', '48456', '920-419-6361', 'No Fax Yet', 'rguy@rvtcorp.com'), (2550, 2550, 'Mr', 'William', 'Hanlon', '', 'PO Box 900', '262 South Water Street', 'Kittanning', 'PA', '16201', '724-548-8058', '724-548-8055 Fax ', 'rljohnson2001@windstream.net'), (2551, 2551, 'Mr', 'Tim', 'Olsen', '', '3405 State Street', '', 'Erie', 'PA', '16508', '(814) 454-0195', '(814) 453-2020 Fax', ''), (2552, 2552, 'Mr', 'Monica', 'DiCiacco', '', 'PO Box 429', '', 'Lederach', 'PA', '19450', '215-256-7940', '215-256-7943 Fax ', ''), (2553, 2553, 'Mr', 'Greg', 'Fonarev', '', '33080 Industrial Road ', '', 'Livonia', 'MI', '48150', '734-422-8000 x101 Ac', '734-422-5342 Fax', 'information@rtilab.com'), (2554, 2554, 'Mr', 'Dave', 'Marshall', '', '365 Sunken Valley Road', '', 'Rural Valley', 'PA', '16249', '724-354-2677', '724-354-4574', 'djmrvc@windstream.net'), (2555, 2555, 'Mr', 'Bill', 'Boskovich', '', '285 Kappa Drive, STE 300', '', 'Pittsburgh', 'PA', '15238', '412-449-0700', '412-449-0704 Fax ', ''), (2556, 2556, 'Mr', 'Bill', 'Boskovich', '', '285 Kappa Drive, STE 300', '', 'Pittsburgh', 'PA', '15238', '412-449-0700', '412-449-0704 Fax ', ''), (2557, 2557, 'Mr', 'Bill', 'Boskovich', '', '285 Kappa Drive, STE 300', '', 'Pittsburgh', 'PA', '15238', '412-449-0700', '412-449-0704 Fax ', ''), (2558, 2558, 'Mr', 'Vince', 'Ujcich', '', '12034 134th Court NE, Suite 102', 'PO Box 230', 'Redmond', 'WA', '98073-0230', '(425) 372-1600', '', ''), (2559, 2559, 'Mr', 'Mike ', 'Pepper', 'Fromerly(Independent Concrete Pipe)', '200 42 Ave. North', '', 'Nashville', 'TN', '37209', '615-386-4428', '615-354-6689 Fax', ' '), (2560, 2560, 'Mr', 'Ernest', 'Doctor', '', '200 42nd Avenue North', '', 'Nashville', 'TN', '37209', '615-386-4428', '615-354-6689 Fax', 'edoctor@shermandixie.com'), (2561, 2561, 'Mr', 'Jennifer', 'Collis', '', '601 Canal Road ', '', 'Cleveland', 'OH', '44113', '216-515-4493 Jennife', '216-566-3837 Fax ', ''), (2562, 2562, 'Mr', 'Kurt', 'Seidler', '', '1470 Churchill-Hubbard Road ', '', 'Youngstown', 'OH', '44505', '330-746-4482', '330-259-3560 Fax ', 'kurt@seidlerengineering.com'), (2563, 2563, 'Mr', 'Doug', 'Conroy', '', 'PO Box 234', '8282 Middlebranch Road', 'Middlebranch', 'OH', '44652', '330-966-8415 Ext. 20', '(330) 966-8505 Fax', 'viorel.arhire@essroc.com'), (2564, 2564, 'Mr', 'Nora', 'Adams ', '', '444 W. Third Street', 'Room 11-423', 'Dayton', 'OH', '45402', '937-512-2183', '937-512-2475 Fax', 'larry.wanamaker@sinclair.edu'), (2565, 2565, 'Mr', 'Linda', 'Warner ', '', '60 Miller Street', '', 'Cortland', 'NY', '13045', '607-758-7182', '607-758-7188 Fax', ''), (2566, 2566, 'Mr', 'Mark', 'Williams', '(Send Certs Here)', '', 'PO Box 1912', 'Beckley', 'WV', '25802', '(304) 877-6451', '(304) 877-5789 Fax', ''), (2567, 2567, 'Mr', 'Brad', 'Parlotto', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-0629 Fax', ''), (2568, 2568, 'Mr', 'Jeremy', 'Hugo', '', '4705 Clyde Park Avenue SW', '', 'Grand Rapids', 'MI', '49509', '616-406-1756', '616-406-1749 Fax', 'hugo@sme-usa.com'), (2569, 2569, 'Mr', 'Seth', 'Molenaar', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '734-454-9900', '734-454-7685 Fax', 'molenaar@sme-usa.com'), (2570, 2570, 'Mr', 'Eric', 'Michener', '', '43980 Plymouth Oaks Blvd.', '', 'Plymouth ', 'MI', '48170', '734-454-9900', '734-454-0629', 'sherwood@sme-usa.com'), (2571, 2571, 'Mr', 'Mark', 'Murphy', '', '3862 East Street', '', 'Pittsburgh', 'PA', '15214', '(412) 231-8600', '(412) 231-6950 Fax', ''), (2572, 1, 'Mr', 'Ed Lover', '', NULL, NULL, NULL, NULL, NULL, NULL, '(716) 625-6933', '(716) 625-6983 Fax', NULL), (2573, 2, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-454-3231', '315-454-8559 Fax ', NULL), (2574, 3, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (2575, 4, 'Mr', 'John Noffsinger / Kate Bryant', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-765-4222/304-765', '304-765-4285 FAX', NULL), (2576, 5, 'Mr', 'Deryck Critchlow/Gordy/Matt Norris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-984-0141 Gordy c', '410-984-6750 Deryck ', NULL), (2577, 6, 'Mr', 'Satish Korpe ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-336-6857', '301-336-6899 Fax ', NULL), (2578, 7, 'Mr', 'Brian Hall / Steve Cannon ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-352-3972 Brian ', '334-324-2449 Steve ', NULL), (2579, 8, 'Mr', ' Kirsten Tollefsen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-381-0232 x 3714 ', '410-381-8908 Fax', NULL), (2580, 9, 'Mr', 'Anthony Fragale', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 779-2131', '(304) 779-2859 Fax', NULL), (2581, 10, 'Mr', 'Erich Russell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '503-598-8700 x 106', '503-598-4545 Fax ', NULL), (2582, 11, 'Mr', 'Diane Tice', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(719) 526-5755', '(719) 526-8994', NULL), (2583, 12, 'Mr', 'Mike ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-425-6500', '', NULL), (2584, 13, 'Mr', 'MarkGessel/RonLycans/JasonHunter ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-539-2680 Ron/304', '304-766-8105 Fax', NULL), (2585, 14, 'Mr', 'Ron Kral', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-741-2088', '', NULL), (2586, 15, 'Mr', 'Ron Kral', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-741-2088', '', NULL), (2587, 16, 'Mr', 'Jennifer Schmidtzer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-575-9230', '313-963-2736 Fax', NULL), (2588, 17, 'Mr', 'Lou Northhouse/Jeremy ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-406-1756', '616-293-0469 Fax ', NULL), (2589, 18, 'Mr', 'Jim Wimer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-781-3630 x 223 J', '814-781-8380 Fax', NULL), (2590, 19, 'Mr', 'Dale Wessel/Kaye Becher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '402-563-6425', '402-563-6252 Fax', NULL), (2591, 20, 'Mr', 'Jack Deitz/Rick Ramsey ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-3792 Rick Ce', '', NULL), (2592, 21, 'Mr', 'Jackie Hatfield / Trenton Bradshaw', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-749-7190/304-989', '(304) 766-8105 Fax', NULL), (2593, 22, 'Mr', 'Craig Mays', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-435-0164', '606-435-1022 Fax', NULL), (2594, 23, 'Mr', 'Mark Griffith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(859) 371-3314', ' (859) 371-2655 Fax', NULL), (2595, 24, 'Mr', 'Bruce Gillespie ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-277-5300', '859-277-5058 Fax ', NULL), (2596, 25, 'Mr', 'Rick Hendricks / Jessie Morgan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(859) 623-4238 / 859', '859-229-4209 Rick Ho', NULL), (2597, 26, 'Mr', 'Bob Rutherford', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 606-573-6836 ', '(606) 573-4735 Fax', NULL), (2598, 27, 'Mr', 'Don Nolan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 598-5248', '606-599-1178 Fax', NULL), (2599, 28, 'Mr', 'Dan Hollman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859- 635-1350', '859- 635-1391 Fax', NULL), (2600, 29, 'Mr', 'Charles Saylor ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-573-4300', '606-573-6722 Fax', NULL), (2601, 30, 'Mr', 'Olusegun Akomolede / Gert Wells', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-755-7879', '513-755-8923 Fax', NULL), (2602, 31, 'Mr', 'Greg Middleton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-824-5097', '859-824-5130 Fax', NULL), (2603, 32, 'Mr', 'Marty Mcguffin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '713-957-8191', '', NULL), (2604, 33, 'Mr', 'Lester Chase ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '518-767-2269/518-767', '518-289-9263 Fax / 5', NULL), (2605, 34, 'Mr', 'Tracye Avant ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-344-4040', '216-344-4044 Fax', NULL), (2606, 35, 'Mr', 'Dan Wiseman / Denise Reed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-393-1439 Dan ', '937-878-8780 Fax ', NULL), (2607, 36, 'Mr', 'James Minear / Karen Minear', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-667-7309', '740-667-7306 Fax', NULL), (2608, 37, 'Mr', 'Jobe Hope (aka John B. Hope)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-201-2325 Jobe', '304-755-1880 Fax', NULL), (2609, 38, 'Mr', 'Rocky Argento / Matthew Chambers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 362-1850 ', '(216) 898-6307 Fax', NULL), (2610, 39, 'Mr', 'Scott Hynes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-501-1161 Scott C', '(330) 759-0923 Fax', NULL), (2611, 40, 'Mr', 'Kristy Kennedy/Jason Hughes ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-771-8471', '513-771-8475 Fax ', NULL), (2612, 41, 'Mr', ' Nevin Wenger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-729-1826', ' ', NULL), (2613, 42, 'Mr', ' Joe Basilone ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-351-9815', '610-351-9816 Fax ', NULL), (2614, 43, 'Mr', 'Bob Lourash / Dave Phillips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '217-937-4341 Ashley', '', NULL), (2615, 44, 'Mr', 'Larry Wachowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-384-9980/269-370', '269-384-9981 Fax', NULL), (2616, 45, 'Mr', 'Jack Dietz/ Mindy Decarolis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-778-4305 Jack Ce', '(614) 876-1899 Fax/6', NULL), (2617, 46, 'Mr', 'Dan Force /Larry Kitko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-5095 Dan ', '814-571-5241 Larry', NULL), (2618, 47, 'Mr', 'Mark Orce ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-5215', '814-238-0131 Fax', NULL), (2619, 48, 'Mr', 'Shawn Schoedel/Paul Perlick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-336-2435/412-475', '724-265-3323 Fax', NULL), (2620, 49, 'Mr', 'Bob Kurtz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-296-7989 x 306 B', '434-293-7139 Fax', NULL), (2621, 50, 'Mr', 'Chris Henson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-782-9150', '410-782-9155 Fax', NULL), (2622, 51, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (2623, 52, 'Mr', 'Wayne Baumgartner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '407-575-3903 Cell ', '772-264-2467 Fax ', NULL), (2624, 53, 'Mr', 'Zeerak Paydawy/Jim Parsons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-324-5372 Zeerak ', '248-324-5304 Fax', NULL), (2625, 54, 'Mr', 'Bob Dolence / Richard Ritz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-357-9683 Insp./7', '724-443-8733 Fax', NULL), (2626, 55, 'Mr', 'Andy Kincell/ Aaron Doham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-624-4108 Andy ', '304-624-7831 Fax ', NULL), (2627, 56, 'Mr', 'Bill Gross / John Sakson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 262-2022', '412-262-1979 Fax', NULL), (2628, 57, 'Mr', 'Mike Oravetz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 640-2741 Mike', '(724) 696-4952 Fax', NULL), (2629, 58, 'Mr', 'Ron Gibson/Jenny Willis/Nikkol W. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 387-9224 x3048', '740-387-2139 Fax', NULL), (2630, 59, 'Mr', 'Mike Fisher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-922-4000(O) 412-', '412-922-4043 Fax', NULL), (2631, 60, 'Mr', 'Keith Pryse / David Linville ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-746-9400', '859-746-9408 Fax', NULL), (2632, 61, 'Mr', 'Keith Pryse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-746-9400', '859-746-9408 Fax', NULL), (2633, 62, 'Mr', 'Stephen Bennett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-4998 / 859-3', '859- 299-2481 Fax / ', NULL), (2634, 63, 'Mr', 'Jim Stewart/ Greg Spencer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(859) 498-0088 Lab ', '(859) 498-7444 Fax J', NULL), (2635, 64, 'Mr', 'Rob Peck ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-493-7100', '502-493-8190 Fax', NULL), (2636, 65, 'Mr', 'Ken Chambers/David Hastings', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-621-9468 Dave ', '859-252-7373 fax', NULL), (2637, 66, 'Mr', 'Nancy Couoh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '661-276-3644', '', NULL), (2638, 67, 'Mr', 'Tim Duffy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '262-542-0741', '', NULL), (2639, 68, 'Mr', 'Bob Osteride/Chris Adams/Randy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-867-8500/814-275', '814-282-1587 Bob Cel', NULL), (2640, 69, 'Mr', 'Anthony DeMaio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-335-0170/412-257', '412-257-0327 Fax ', NULL), (2641, 70, 'Mr', 'Chad Eckert / Amber Kepple', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 781-6262 x3', '(814) 781-3196 Fax', NULL), (2642, 71, 'Mr', 'Scott Stephens/Junior Salmons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-928-0998', '606-929-5668 Fax', NULL), (2643, 72, 'Mr', 'Rich Evans ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-761-4700 x 4352', '614-761-8630 Fax', NULL), (2644, 73, 'Mr', 'Wilma Rouke / Jonathan Mendez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '954-984-9555', '954-984-9559 Fax ', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (2645, 74, 'Mr', 'Craig Pasternak ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-231-2369 Craig\'s', '248-344-2115 Fax', NULL), (2646, 75, 'Mr', 'James Lasko ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-528-7476-Jim/ 81', '814-774-8120 Fax', NULL), (2647, 76, 'Mr', 'Tom Lower / Billie Stone ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '281-469-0040', '', NULL), (2648, 77, 'Mr', 'Jason Reynolds / Butch Pavlik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-362-3800 ', '724-274-2417 Fax', NULL), (2649, 78, 'Mr', 'Dan Cagle / Mike Gaia', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-962-7296 Cell Mi', '724-342-3405 Fax/724', NULL), (2650, 79, 'Mr', 'Michelle Brunni/Paul Medwig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-751-4001', '412-751-4003 Fax ', NULL), (2651, 80, 'Mr', 'Dave McVaney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-972-7295', '330-972-6020 Fax', NULL), (2652, 81, 'Mr', 'Todd Wagner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-857-9945 Todd', '607-529-3434 Fax', NULL), (2653, 82, 'Mr', 'Robert Milliman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-431-4291', '315-431-4292 Fax ', NULL), (2654, 83, 'Mr', 'Joseph Leotaud', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '704-394-2344', '', NULL), (2655, 84, 'Mr', 'John Piper / Earl Bailey ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', NULL), (2656, 85, 'Mr', 'Adil Wahab ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-746-3634', '937-746-3635 Fax', NULL), (2657, 86, 'Mr', 'Dr. Abdul Shakoor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-672-2968', '330-672-7949 Fax ', NULL), (2658, 87, 'Mr', 'Darryl Ellis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 359-3436', '607-527-4405 Fax', NULL), (2659, 88, 'Mr', 'Roger Burris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 529-3235 ext. ', '(607) 529-3434 Fax', NULL), (2660, 89, 'Mr', 'Walt Skinner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', NULL), (2661, 90, 'Mr', 'Bill Koniowka', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 324-3375', '', NULL), (2662, 91, 'Mr', 'Chris Pridemore/Sean Mulligan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1309 Chris', '614-275-1354 Fax / 6', NULL), (2663, 92, 'Mr', 'Chris Pridemore/Sean Mulligan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1309 Chris', '614-275-1354 Fax / 6', NULL), (2664, 93, 'Mr', 'Doug Alford / Tom Walton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-371-4005', '859-371-0186 Fax ', NULL), (2665, 94, 'Mr', 'Keith / Kevin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-236-8805 x 206 D', '937-237-9947 Fax / 9', NULL), (2666, 95, 'Mr', 'Jeff Bennett / Greg Bills', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-337-3900 Jeff/51', '(269) 337-3958 Fax/5', NULL), (2667, 96, 'Mr', 'Chuck Gernaski / Rick Russel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-755-0900 x 17 Jo', '586-755-7456 Fax', NULL), (2668, 97, 'Mr', 'Sam Campieri / Paul Dykta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-438-7430/724-350', '724-438-7435 Fax', NULL), (2669, 98, 'Mr', 'Steve/Pat Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (2670, 99, 'Mr', 'T. Weiss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '416-375-3918', '', NULL), (2671, 100, 'Mr', 'Mark Casper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 896-2066 / 206', '(513) 896-2079 Fax', NULL), (2672, 101, 'Mr', 'Tim Harris ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-326-1070', '606-326-1077 Fax', NULL), (2673, 102, 'Mr', 'Jeremy Clem ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-421-4000 x 1004', '703-431-8000 Fax ', NULL), (2674, 103, 'Mr', 'Yan Xu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '541-665-7227', '541-664-9547 Fax', NULL), (2675, 104, 'Mr', 'Jim Hersick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-267-5660', '304-264-9944 Fax', NULL), (2676, 105, 'Mr', 'Joe O\'Connell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-344-4040 Brian', '216-344-4044 Fax Ron', NULL), (2677, 106, 'Mr', 'Richard Kauffman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 495-6255 x 10', '(610) 495-7353 Fax', NULL), (2678, 107, 'Mr', 'Chris Neely', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-787-6546', '717-783-5955 Fax', NULL), (2679, 108, 'Mr', 'Chris Neely', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-787-6546 ', '(717) 783-5955 Fax', NULL), (2680, 109, 'Mr', 'Chris Neely', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-6546 ', '(717) 783-5955 Fax', NULL), (2681, 110, 'Mr', 'Leo Fisher / Joe Ware ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-416-7031 Cell Le', '215-755-4551 Fax ', NULL), (2682, 111, 'Mr', 'Dan Stanisky', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-922-4000 ', '412-922-4230 Fax', NULL), (2683, 112, 'Mr', 'John McLaughlin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-781-8259 Kathy /', '(814) 781-8570 Fax', NULL), (2684, 113, 'Mr', 'Robert Zagers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '011-599-520-6503', '', NULL), (2685, 114, 'Mr', 'Don Roberts ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-657-8787', '724-657-1990 Fax ', NULL), (2686, 115, 'Mr', 'Justin Van Meeteren', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '972-636-2090', '972-636-3789 Fax', NULL), (2687, 116, 'Mr', 'William Dunn (ext. 2916) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-894-2916 William', '(540) 894-2813 - Fax', NULL), (2688, 117, 'Mr', 'Anthony Theil / R. de Kok ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '011-297-594-2886', '011-297-583-1545 Fax', NULL), (2689, 118, 'Mr', 'ing. Jose A. Wernet ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '011-297-585-8423/011', '011-297-585-1233 Fax', NULL), (2690, 119, 'Mr', 'Erick K. Weigel ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-923-5000 x 37022', '610-923-5009 Fax ', NULL), (2691, 120, 'Mr', ' Gary Putt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-280-8696 Gary Ce', '814-237-4491 Fax', NULL), (2692, 121, 'Mr', 'Melissa Farley ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 593-2741 ext 2', '(585) 593-0488 Fax', NULL), (2693, 122, 'Mr', 'Karen Duffell / Bill Lantz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-938-7411', '814-938-7474 Fax', NULL), (2694, 123, 'Mr', 'Adrienne Stewart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-739-5491/215-852', '215-739-5492 Fax ', NULL), (2695, 124, 'Mr', 'Matt Brozowski ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-459-0204 / 616-2', '616-459-0626 Fax ', NULL), (2696, 125, 'Mr', 'Robert Ridgell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-785-6100', '540-785-3577 Fax', NULL), (2697, 126, 'Mr', 'Josh Manthei', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-657-1058 Josh Ma', '231-547-9171 Fax / ', NULL), (2698, 127, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', NULL), (2699, 128, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-866-639-7667', '1-866-809-6307 Fax ', NULL), (2700, 129, 'Mr', 'Danny Summers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-296-2810', '304-295-9658 Fax', NULL), (2701, 130, 'Mr', 'Mark Horsley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-856-8115', '804-328-3136 Fax', NULL), (2702, 131, 'Mr', 'George Wargo ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-351-6465', '412-351-6401 Fax ', NULL), (2703, 132, 'Mr', 'David Stinnette', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-218-5289 Cell ', '804-794-2635 Fax ', NULL), (2704, 133, 'Mr', 'Doug Ross/Nick Lang', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 713-1900', '(703) 713-1910 Fax', NULL), (2705, 134, 'Mr', 'Daniel Gensimore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-548-7090', '814-933-1411 Fax ', NULL), (2706, 135, 'Mr', 'Huntae Kim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '571-237-0590 Huntae ', '703-858-1858 Fax', NULL), (2707, 136, 'Mr', 'Phillip Hayes ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-419-5128 Jeff', '304-755-2349 Fax ', NULL), (2708, 137, 'Mr', 'Jim Sellers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-422-4841', '304-485-8818 Fax Jim', NULL), (2709, 138, 'Mr', 'Dennis Mitchell-Academic Lab Mang. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-367-4795', '304-367-4934 Fax ', NULL), (2710, 139, 'Mr', ' Jason Issacks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-282-2221', '724-287-1443 Fax ', NULL), (2711, 140, 'Mr', 'Mohammed Asghar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-556-4371-Mohamme', '513-556-5323 Fax', NULL), (2712, 141, 'Mr', 'Todd Monahan (Cell) 484-364-8329', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '484-247-3860', '814-224-2185 Fax ', NULL), (2713, 142, 'Mr', 'Ron Hodak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 665-8221 ', '(814) 664-9571 Fax', NULL), (2714, 143, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-766-0313', '814-766-0234 Fax', NULL), (2715, 144, 'Mr', 'Bill Atkinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-252-7214', '315-252-7859 Fax', NULL), (2716, 145, 'Mr', 'Chris Kenney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-638-2706/Chris\'s', '315-638-1544 Fax', NULL), (2717, 146, 'Mr', 'Geoff George', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 456-7027', '(814) 454-0737 Fax', NULL), (2718, 147, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (2719, 148, 'Mr', 'Samdra Miller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '585-352-9720', '585-352-7359 Fax ', NULL), (2720, 149, 'Mr', 'Dave Harpster/Toni Wales', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-447-7366 Noah Ce', '607-562-3011 Fax', NULL), (2721, 150, 'Mr', 'Joe Scavone/Todd Ruddle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-324-0937', '717-423-6310 Fax ', NULL), (2722, 151, 'Mr', 'John Dingeldein / Seth Molenaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-256-6500', '440-256-6507 Fax', NULL), (2723, 152, 'Mr', 'Brent Bowly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-545-7606 Brent ', '(304) 722-4230 Fax', NULL), (2724, 153, 'Mr', 'John May ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-240-2936', '989-345-1100 Fax ', NULL), (2725, 154, 'Mr', 'Abby Sanchez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '541-564-7279', 'Ref PO PORC60001316', NULL), (2726, 155, 'Mr', 'Scot Gilb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-322-3027', '859-441-2715 Fax', NULL), (2727, 156, 'Mr', 'Charlie Reimold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-456-2220', '757-473-2204 Fax ', NULL), (2728, 157, 'Mr', 'Renee Reitz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-239-2015', '440-239-2000 Fax', NULL), (2729, 158, 'Mr', 'John Ashworth ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-962-8864 / 716-8', '607-962-5968 Fax', NULL), (2730, 159, 'Mr', 'Richie Smith/Tom Medvick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-767-4595 Jeff B', '', NULL), (2731, 160, 'Mr', 'Justin Bukey/Jamie North ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-888-0576', '614-848-6712 Fax', NULL), (2732, 161, 'Mr', 'John Tolentino', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-712-9291 John\'s ', '412-767-4861 Fax', NULL), (2733, 162, 'Mr', 'Steven Tracy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 435-6541 ', '814-435-8501 fax', NULL), (2734, 163, 'Mr', 'Matt Manning ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-538-9169 Matt', '724-452-8923 Fax', NULL), (2735, 164, 'Mr', 'Justin Stewart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-342-7090 x 206 J', '814-342-7099 Fax ', NULL), (2736, 165, 'Mr', 'Anthony Gale ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121', '814-766-0222 Fax', NULL), (2737, 166, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', NULL), (2738, 167, 'Mr', 'Layne Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-425-6916 Cell', '570-833-5698 Fax', NULL), (2739, 168, 'Mr', 'Andy Molek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-258-0364 Andy', '', NULL), (2740, 169, 'Mr', 'Joe Donbrowski/Chad Lincoln (Safety) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-246-0330 x 127/4', '412-246-0341 Fax Joe', NULL), (2741, 170, 'Mr', 'Chris Holmes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-571-7879 Chris', '814-238-0131 Fax', NULL), (2742, 171, 'Mr', 'Terry Daniel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-850-7000', '410-850-4111 Fax', NULL), (2743, 172, 'Mr', 'Terry Daniel ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-850-7000 Ext. 33', '410-850-7000 Ext. 33', NULL), (2744, 173, 'Mr', 'Joe Troidl / Tony Puglishy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-649-3260', '716-649-3217 Fax', NULL), (2745, 174, 'Mr', 'Ben Campbell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-746-1140 ', '304-746-1143 Fax', NULL), (2746, 175, 'Mr', 'Jim Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 344-0821', '(304) 342-4711 Fax', NULL), (2747, 176, 'Mr', 'Randy Foster / Eric Rexroad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-203-7224 Matt/30', '(304) 592-5578 Fax30', NULL), (2748, 177, 'Mr', 'Ryan White ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-630-1501', '330-630-1420 Fax ', NULL), (2749, 178, 'Mr', 'Dave Verdon/Roberta Reynolds', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-758-7182', '607-758-7188 Fax', NULL), (2750, 179, 'Mr', 'Fabian Pacheco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '242-322-8341x 121 Fa', '242-322-2611 Fax ', NULL), (2751, 180, 'Mr', 'Fred Klaber/Don Earick/Carl Runyon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-829-3448/513-659', '513-829-4233 Fax ', NULL), (2752, 181, 'Mr', 'Dave Sabol/Steve Zimmer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-441-4329 Cell St', '(216) 642-7008 Fax', NULL), (2753, 182, 'Mr', 'Matt Manning', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-538-9169 Matt ', '(724) 452-8923 Fax', NULL), (2754, 183, 'Mr', 'Joe Frezza / Monnette Frezza', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-489-5273 Cell Jo', '908-788-8922 Fax ', NULL), (2755, 184, 'Mr', 'John Farkas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-428-9475 Cell Jo', '610-261-3448 Fax', NULL), (2756, 185, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '866-639-7667', '866-809-6307 Fax ', NULL), (2757, 186, 'Mr', 'Gordon Mooney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '978-857-1679 Cell ', '978-671-6423 Fax', NULL), (2758, 187, 'Mr', 'Sue Mazzoli / Ken Reghelini', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '416-491-7001', '905-940-1711 Fax', NULL), (2759, 188, 'Mr', 'Tom Paullet', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-7215 Cell ', '724-348-4512 Fax ', NULL), (2760, 189, 'Mr', 'Grant Sisk / Delawar Alvi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-816-6504 Grant ', '412-262-1979 Fax', NULL), (2761, 190, 'Mr', 'Jim Chill / Don Lane ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-651-0953 Jim Cel', '724-658-4486 Fax/330', NULL), (2762, 191, 'Mr', 'Tom Pearce/John Roust/Troy Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 324-2222/419-3', '419-241-1808 Fax /41', NULL), (2763, 192, 'Mr', 'Brian Devine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '302-239-6634', '302-239-8485 Fax', NULL), (2764, 193, 'Mr', 'Carl Phipps', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(302) 836-5304 x 108', '(302) 836-5458 Fax', NULL), (2765, 194, 'Mr', 'Rick Blackburn/Doug Conroy ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-966-0444 Ext. 20', '(330) 499-9275 Fax /', NULL), (2766, 195, 'Mr', 'Scott Sanders', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-418-5650 Scott C', '717-432-7343 FAX', NULL), (2767, 196, 'Mr', 'Patrick Spencer, David King', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '585-269-6493 Patrick', '585-269-6612 Patrick', NULL), (2768, 197, 'Mr', 'Abdalla Mohamed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-906-4276', '', NULL), (2769, 198, 'Mr', 'Kevin Dubnicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 453-7900', '(734) 453-0724 Fax', NULL), (2770, 199, 'Mr', 'Aaron Donham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-860-1924', '304-624-7831 Fax ', NULL), (2771, 200, 'Mr', 'Chris Hollihan/Mark Comstock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-477-5100', '724-477-5101 Fax / 7', NULL), (2772, 201, 'Mr', 'Jennifer Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '715-247-3364', '715-247-3638 Fax ', NULL), (2773, 202, 'Mr', 'Chris Standish', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-458-0309 Cell Ch', '410-515-4895 Fax ', NULL), (2774, 203, 'Mr', 'Joseph Kirchner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-255-3308 x 3732 ', '859-254-2327 Fax / 8', NULL), (2775, 204, 'Mr', 'Greg Letzo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ', '(814) 472-4221 Fax', NULL), (2776, 205, 'Mr', 'Keith Pryse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-746-9400', '859-746-9408 Fax', NULL), (2777, 206, 'Mr', 'Sandy Wurst / Brian Wurst', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-796-2114', '814-796-9007 Fax', NULL), (2778, 207, 'Mr', 'Robert Mesol / Mike Gibbons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 658-6638/724-3', '724 658-6636 FAX', NULL), (2779, 208, 'Mr', 'Tim Heath', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-275-0482', '', NULL), (2780, 209, 'Mr', 'Cory', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '727-343-5648', '', NULL), (2781, 210, 'Mr', 'Todd Young', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-964-7000', '276-964-4752 Fax', NULL), (2782, 211, 'Mr', 'Brad Miller/Brian Miller/Brent Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-379-3706 Brad', '814-379-3531 Fax', NULL), (2783, 212, 'Mr', 'Glenn Garren / Mike Dewyn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '503-970-6705 Cell ', '503-288-9017 Fax', NULL), (2784, 213, 'Mr', 'Howard Owens ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-938-2436 / 845-9', '845-446-0483 Fax How', NULL), (2785, 214, 'Mr', 'Harry McGhee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4256', '814-766-0316 Fax', NULL), (2786, 215, 'Mr', 'Jeff Parrent', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(540) 464-7331 ext. ', '(540) 464-7618 Fax', NULL), (2787, 216, 'Mr', 'Ronald Capuano', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-772-9279', '814-772-3319 Fax', NULL), (2788, 217, 'Mr', 'GaryFaehl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-597-1969 ', '717-597-0572 Fax', NULL), (2789, 218, 'Mr', 'Dave Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-6660', '724-828-2828 Fax', NULL), (2790, 219, 'Mr', 'Gary Hallum / Scott Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-783-2476 x 236', '937-783-2539 Fax ', NULL), (2791, 220, 'Mr', 'Mike Boss/Fred Meyer/Don Hoffman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-938-2436 Mike /8', '845-938-2591 Don / 8', NULL), (2792, 221, 'Mr', 'Ralph Porter, VP', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 565-2452', '(607) 565-8670 Fax', NULL), (2793, 222, 'Mr', 'Bill Lash / Kim Freed/Terry Matern', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 837-1774', '(570) 837-1184 Fax', NULL), (2794, 223, 'Mr', 'Jo Snook / Tim Gill / MackyKramer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 748-7747', '(570) 748-5777 Fax', NULL), (2795, 224, 'Mr', 'Joe Boyd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-996-0123 Joe / 5', '703-996-0124 Fax / 7', NULL), (2796, 225, 'Mr', 'Scott Baker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 326-4428', '(570) 326-4012 Fax', NULL), (2797, 226, 'Mr', 'Matt Pfirsch', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-371-3111', '814-371-6858 Matt\'s ', NULL), (2798, 227, 'Mr', 'Matt Pfrisch / Scott Reedy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-591-0239 Scott\'s', '814-371-6858 Matt\'s ', NULL), (2799, 228, 'Mr', 'Chan Tin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 631-9630/703-6', '(703) 631-6041 Fax', NULL), (2800, 229, 'Mr', 'Jim Morris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-379-9294', '540-710-0035 Fax', NULL), (2801, 230, 'Mr', 'Shawn Newgard ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-815-4369 Cell Sh', '540-775-2563 Fax', NULL), (2802, 231, 'Mr', 'Chris Adams / Greg Sloan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-867-8500/814-275', '814-282-1587 Bob Cel', NULL), (2803, 232, 'Mr', 'Chris Adams / Greg Sloan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-867-8500/814-275', '814-282-1587 Bob Cel', NULL), (2804, 233, 'Mr', 'Dennis Davids', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '203-577-7819', '815-942-5631 Fax', NULL), (2805, 234, 'Mr', 'Mike Key ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-425-1614', '205-428-9259 Fax', NULL), (2806, 235, 'Mr', 'Chris Adams/Greg Sloan/Randy B. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-867-8500/814-275', '814-282-1515 Greg', NULL), (2807, 236, 'Mr', 'Rick Paponetti/Paul Pridemore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-839-7280/216-839', '216-839-8801 Fax ', NULL), (2808, 237, 'Mr', 'Michael J. Wright / Dave Buckwalter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-458-0800', '717-458-0801 Fax/717', NULL), (2809, 238, 'Mr', 'Emily Rodriguez/Kevin Patton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-496-1600 x 216 E', '845-496-1398 Fax ', NULL), (2810, 239, 'Mr', 'Lou Schwab / Craig Witherell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-686-3710 / 716-4', '716-686-3716 Fax / 7', NULL), (2811, 240, 'Mr', 'Rick Paponetti/Paul Pridemore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-839-7280/216-839', '216-839-8801 Fax Pau', NULL), (2812, 241, 'Mr', 'Lou Schwab / Craig Witherell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-686-3710/716-465', '716-686-3710 Craig ', NULL), (2813, 242, 'Mr', ' Bob Williams ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-981-5200 ', '724-983-2226 Fax Bob', NULL), (2814, 243, 'Mr', ' Ryan Whipple', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-456-4287 x 2159 ', '814-456-4280 Fax', NULL), (2815, 244, 'Mr', 'Robert Watson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-827-6041', '814-827-0021 Fax', NULL), (2816, 245, 'Mr', ' Sheila Sennet', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-452-6788 Bruce P', ' ', NULL), (2817, 246, 'Mr', 'Greg Heuer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-326-6000', '317-326-2385 Fax', NULL), (2818, 247, 'Mr', 'Adam Ball ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-846-6601/989-484', '989-846-6607 Fax ', NULL), (2819, 248, 'Mr', 'Adam Ball ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-846-6601/989-484', '989-846-6607 Fax ', NULL), (2820, 249, 'Mr', 'James McElhinny/Bib McElhinny', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-876-2171', '330-876-0393 Fax', NULL), (2821, 250, 'Mr', 'Rod McConnell/Kim Ripoly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-277-4720', '304-277-2081 Fax', NULL), (2822, 251, 'Mr', 'James Fichtelman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-485-2115 x 305 J', '304-485-1882 Fax / ', NULL), (2823, 252, 'Mr', 'Gary Chesnoski / Don Lehnerd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-2123 Gary', '724-443-8733 Fax', NULL), (2824, 253, 'Mr', 'Ben O\'Dorisio / Lance Hillman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '719-549-5226', '719-549-5444 Fax / 7', NULL), (2825, 254, 'Mr', 'Don Price / Anthony Domoto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '209-827-5323', '209-827-9784 Fax', NULL), (2826, 255, 'Mr', 'Muriel Ouellet/Rene Dagenais', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '418-775-4358', '418-775-7223 Fax ', NULL), (2827, 256, 'Mr', 'Jeff Goble ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '615-771-2560', '615-771-2551 Fax', NULL), (2828, 257, 'Mr', 'Indrajit Ray/David Turner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-685-4440/304-293', '304-293-7109 Fax ', NULL), (2829, 258, 'Mr', 'Don Peglow ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-567-1018', '570-567-1017 Fax', NULL), (2830, 259, 'Mr', 'Darrell Myers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 845-5333 ', '(717) 848-5565 Fax/7', NULL), (2831, 260, 'Mr', 'Partick Meehann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-307-0965 x 526 /', '570-307-0962 Fax', NULL), (2832, 261, 'Mr', 'Melissa Heely / Thomas Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-313-3227', '610-313-9667 Fax/610', NULL), (2833, 262, 'Mr', 'Melissa Heely / Thomas Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-313-3227', '610-313-9667 Fax', NULL), (2834, 263, 'Mr', 'Brian Kelly ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-536-6630', '814-536-5730 Fax ', NULL), (2835, 264, 'Mr', 'Melissa Heely / Thomas Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-313-3227', '610-313-9667 Fax', NULL), (2836, 265, 'Mr', 'Marty Clark ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-725-1456', '301-725-1268 Fax ', NULL), (2837, 266, 'Mr', 'James Fischer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '307-233-0789 James', '', NULL), (2838, 267, 'Mr', 'Shawn Painter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814)758-7670 Shawn ', '', NULL), (2839, 268, 'Mr', 'David D\'Agostine / Ron Marshall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '973-483-0722', '973-483-7544 Fax', NULL), (2840, 269, 'Mr', 'Dan Mottinger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '303-263-5139', '', NULL), (2841, 270, 'Mr', 'Rod Burk ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-670-5164/724-967', '724-748-3045 Fax', NULL), (2842, 271, 'Mr', 'James Richard / Joe Cook (Lab)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 342-4171', '(304) 342-4175', NULL), (2843, 272, 'Mr', 'John Gardocki/ Jim McQuaid', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-763-1900', '717-763-1911 Fax', NULL), (2844, 273, 'Mr', 'Tracy Bruce ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-9903 Tracy C', '724-652-8290 Fax ', NULL), (2845, 274, 'Mr', 'Tim Quick / Larry Kitko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-5556 Tim ', '717-540-1523 Fax', NULL), (2846, 275, 'Mr', 'Jim Schroeder', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '920-832-4223', '920-832-4219 Fax', NULL), (2847, 276, 'Mr', 'Jeff Mandell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-351-4108 ', '419-241-1808 Fax', NULL), (2848, 277, 'Mr', 'Scott Reichert / John Stanick-GM', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 838-2011', '814-766-4045 Fax', NULL), (2849, 278, 'Mr', 'Harry Sauve', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989 529-7476 Harry\'s', '989-753-1875 Fax', NULL), (2850, 279, 'Mr', 'Dan Elliott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 724-619-6888 Dane 6', '(616) 456-5784 Fax', NULL), (2851, 280, 'Mr', 'Ebony Matthews', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-541-2117 Ebony', '804-541-7270 Fax', NULL), (2852, 281, 'Mr', 'John Benkart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-776-1580', '724-776-1593 Fax', NULL), (2853, 282, 'Mr', 'Sheila Baines', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-538-2761/757-438', '757-538-8342 Fax ', NULL), (2854, 283, 'Mr', 'Joe Liegey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-571-4756', '814-237-4491 Fax', NULL), (2855, 284, 'Mr', 'Terry Hauser', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-248-0100 x 2519 ', '440-848-8521 Fax', NULL), (2856, 285, 'Mr', 'Jon Meddaugh / Kyle Moir', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-218-0602 Jon / 2', '231-943-5534 Fax', NULL), (2857, 286, 'Mr', 'Trent Gages / Greg Puzio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-987-4389 Trent ', '216-987-4396 Fax ', NULL), (2858, 287, 'Mr', 'Eric Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '916-570-4261', '', NULL), (2859, 288, 'Mr', 'Timothy Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-257-7381', '(859) 257-1815 Fax', NULL), (2860, 289, 'Mr', 'Tim Pinney / Debbie Trimmer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-848-6845', '734-848-3317 Fax ', NULL), (2861, 290, 'Mr', 'Bill Fetzer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-687-8238', '419-687-5185 Fax ', NULL), (2862, 291, 'Mr', 'Eric Zell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(574) 232-4388', '(574) 232-4333 Fax', NULL), (2863, 292, 'Mr', 'Terry Kosteonik / Pam Barnes ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-640-7104', '724-696-4952 Fax', NULL), (2864, 293, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-6870 Mark (O', '814-766-0234 Fax', NULL), (2865, 294, 'Mr', 'Paul Garrett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-202-1183 Cell Pa', '276-889-4066 Fax / 2', NULL), (2866, 295, 'Mr', 'Rachel Amador/Michael Boris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-738-7659/281-478', '281-478-5900 Fax/281', NULL), (2867, 296, 'Mr', 'Sam Kimanu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 Ext. 30', '410-358-7213 Fax', NULL), (2868, 297, 'Mr', 'Todd Shackleford', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-365-5237 Todd', '410-561-8771 Fax', NULL), (2869, 298, 'Mr', 'Patrick Quinlan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-696-2695', '304-696-5454 Fax ', NULL), (2870, 299, 'Mr', 'Patrick Quinlan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-696-2695', '304-696-5454 Fax', NULL), (2871, 300, 'Mr', 'Patrick Quinlan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-696-2695', '304-696-5454 Fax ', NULL), (2872, 301, 'Mr', 'Tom Andreas ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-859-2131Tom', '740-859-2134 Fax ', NULL), (2873, 302, 'Mr', 'Karen Grooms', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-774-8933 Karen', '740-773-3081 Fax', NULL), (2874, 303, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816 / 513-6', '513-321-0294 Fax', NULL), (2875, 304, 'Mr', 'Joe Voltz MK1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-597-2030', 'RMA 7039', NULL), (2876, 305, 'Mr', 'Terry (Louie) Lewandowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '907-349-7610 / 907-2', '907-344-4513 Fax / 8', NULL), (2877, 306, 'Mr', 'Dan Stanko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '908-268-3116 Dan', '908-534-6785 Fax ', NULL), (2878, 307, 'Mr', 'Sheila Sennet', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-604-3083 Sheila', '(937) 435-5162 Fax', NULL), (2879, 308, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (2880, 309, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (2881, 310, 'Mr', 'Emily Rodriguez/Kevin Patton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-496-1600', '845-496-1398 Fax ', NULL), (2882, 311, 'Mr', 'Ethan Kaufman / Chuck Parish ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-773-1411/412-475', '724-274-0167 Fax/312', NULL), (2883, 312, 'Mr', 'Jack Dietz/Russ Welsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-946-5940 Russ', 'Jack\'s cell 614-778-', NULL), (2884, 313, 'Mr', 'Steve Combs/Mark Dixon/JeremyRose', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-552-9026 Cell Ma', '614-276-6377 Fax/304', NULL), (2885, 314, 'Mr', 'Timothy Hayes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-669-6216', '215-937-6734 Fax', NULL), (2886, 315, 'Mr', 'Ned Glysson- Dir. of Res. & Oper.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 426-6076', '(734) 426-6078 Fax', NULL), (2887, 316, 'Mr', 'Jack Sattelmeier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-669-5140 x 107 J', '248-669-5147 Fax', NULL), (2888, 317, 'Mr', 'Julie Nap ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-344-7690', '269-344-7693 Fax', NULL), (2889, 318, 'Mr', 'Bobbi McNeil / Jim Addessi ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-786-3191 Bobbi /', '330-786-3199 Fax ', NULL), (2890, 319, 'Mr', 'John Wattick / Indrajit Ray ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-302-3025 John', '304-293-7109 Fax ', NULL), (2891, 320, 'Mr', 'Greg Sipola', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-528-1655 ', '248-528-1702 Fax', NULL), (2892, 321, 'Mr', 'Sia Ravan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-432-4914 / 517-4', '517-432-4915 Fax ', NULL), (2893, 322, 'Mr', 'Jeff Elliot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-455-8600 ', '734-455-8608 FAX', NULL), (2894, 323, 'Mr', 'Eric Michener', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-454-9900/734-637', '419-897-0429 Fax', NULL), (2895, 324, 'Mr', 'Sia Ravan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-432-4914 / 517-4', '517-432-4915 Fax ', NULL), (2896, 325, 'Mr', 'Dan Hanson / Michael Horn ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-754-5861/ 989-75', '989-754-5551 Fax', NULL), (2897, 326, 'Mr', 'Angie Hall / Tom', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-238-1781', '(814) 238-4323 Fax', NULL), (2898, 327, 'Mr', 'Rohan Perch/Bill Friedah', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-767-4788', '717-767-5658 Fax', NULL), (2899, 328, 'Mr', 'Jeffrey Germann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-562-6421 Jeffery', '(610) 562-2084 Fax', NULL), (2900, 329, 'Mr', 'Brian Schnee/Guy Haney/Doug Alexander', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-665-2000 X 1154 ', '717-665-2861 Fax / x', NULL), (2901, 330, 'Mr', 'Symon / Ron Rowlands', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 544-2261', '(570) 544-5736 Fax', NULL), (2902, 331, 'Mr', 'Russ Mitchell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-6328 Russ', '412-807-2006 Fax', NULL), (2903, 332, 'Mr', 'Mark Deradorff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 637-2288 x 238', '(717) 637-1180 Fax', NULL), (2904, 333, 'Mr', 'Mark Deradorff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 637-2288 x 238', '(717) 637-1180 Fax', NULL), (2905, 334, 'Mr', 'Brian Schnee / Steve Emery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-665-2000 x1154 ', '717-665-2861 Fax / x', NULL), (2906, 335, 'Mr', 'Mike Cessna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-6877 / 814-2', '814-766-0228 Fax', NULL), (2907, 336, 'Mr', ' Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121 x 427', '814-766-4429 Fax', NULL), (2908, 337, 'Mr', 'Doug Clevengerl/Randy Varner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 267-4500 x 702', '(717) 267-0915 Fax/7', NULL), (2909, 338, 'Mr', 'John McLaughlin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 781-1234/814-7', '(814) 781-8643 Fax ', NULL), (2910, 339, 'Mr', 'Crystal Tutton / Tammy Colson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-929-5805', '814-929-5806 Fax', NULL), (2911, 340, 'Mr', 'Jagan Gudimetta/Jeevan Reddy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-963-4939 Jagan', '202-493-2070 Fax/703', NULL), (2912, 341, 'Mr', 'Bob Dolence', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-7371/412-287', '724-443-8733 Fax/724', NULL), (2913, 342, 'Mr', 'Steve Hobbs/Michael Gerdes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '402-556-2171', '', NULL), (2914, 343, 'Mr', 'Bily Shepard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '504-392-0442', '504-392-0107 Fax ', NULL), (2915, 344, 'Mr', 'Dave Beatty/Billy Harris ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-630-6239/330-630', '330-633-4939 Fax ', NULL), (2916, 345, 'Mr', 'Ron Erikson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '520-399-1925 Ron', '616-940-3760 Fax', NULL), (2917, 346, 'Mr', 'Justin Bukey/Jamie North ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-888-0576', '614-848-6712 Fax', NULL), (2918, 347, 'Mr', 'Brad Schmitz/John Rothwell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-565-8460 John', '269-968-7205 Fax', NULL), (2919, 348, 'Mr', 'Paul Cameron / Josh Fetcko ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-785-7843 x 111 P', '304-325-8812 Fax/814', NULL), (2920, 349, 'Mr', 'Marty Garrison/Susan Elloitt ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-454-6300 x 853 M', '248-745-2990 Fax Sus', NULL), (2921, 350, 'Mr', 'Tori Vanderhaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-625-8080 ', '248-625-0978 Fax', NULL), (2922, 351, 'Mr', 'Ted Scholl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 837-9696 x 472', '(610) 837-8420 Fax', NULL), (2923, 352, 'Mr', 'Scott Hynes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 759-0288', '(330) 759-0923 Fax', NULL), (2924, 353, 'Mr', 'Tom Calmeise/Rahn Calmeise', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '314-385-5577/216-857', '440-848-8482 Fax', NULL), (2925, 354, 'Mr', 'Hector Queredo/Rahn Calmeise ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '214-876-1801 Cell/21', '972-937-9841 ext 15 ', NULL), (2926, 355, 'Mr', 'David Hooper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-257-1325', '412-257-1329 Fax', NULL), (2927, 356, 'Mr', 'Mike Rind / Jerry Sabitini', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-637-3552 x 110 T', '724-744-4234 Fax ', NULL), (2928, 357, 'Mr', 'Dirk Tagawa / Rick Miller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '206-526-4627', '206-526-6744 Fax ', NULL), (2929, 358, 'Mr', 'Brad Bryant', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '601-544-7811', '601-544-2005 Fax', NULL), (2930, 359, 'Mr', 'Steve Robins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-200-5572 Steve\'s', '859-586-8891 Fax', NULL), (2931, 360, 'Mr', 'Pete Bernecky', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-640-6952 Pete\'s ', ' ', NULL), (2932, 361, 'Mr', 'Jude Cernica / John Cernica ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-758-2100', '330-758-6100 Fax ', NULL), (2933, 362, 'Mr', 'Maurika Lake ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-220-8900', '330-220-8944 Fax', NULL), (2934, 363, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (2935, 364, 'Mr', 'Donald Blasland ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(315) 437-1420', '(315) 437-1752 Fax', NULL), (2936, 365, 'Mr', 'Chuck Forth/John Tranter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '518-377-9841 John x1', '716-694-8638 Fax', NULL), (2937, 366, 'Mr', 'Gary Lenviel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(276) 873-6816', '(276) 873-4809 Fax', NULL), (2938, 367, 'Mr', 'Louis Cox', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(276) 964-6755', '(276) 963-2021 Fax', NULL), (2939, 368, 'Mr', 'Melissa Hess', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-964-6047', 'No Fax', NULL), (2940, 369, 'Mr', 'Phillip Reed / Cindy Morgan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-645-4636', '304-645-7614 Fax', NULL), (2941, 370, 'Mr', 'Zachary Cochran/Tony Matney ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-637-3021 Tony ', '(276) 498-4317 Fax', NULL), (2942, 371, 'Mr', 'Melissa Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-420-4698', ' ', NULL), (2943, 372, 'Mr', 'Tony Blair / Roger Parker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-864-2173 Tony', '606-864-9828 Fax', NULL), (2944, 373, 'Mr', 'Mike Sminchak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-527-7656', '614-527-7489 Fax', NULL), (2945, 374, 'Mr', 'Lou Ziolowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', NULL), (2946, 375, 'Mr', 'Mike Price / Rex Cooper ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-349-4746', '540-347-4755 Fax/540', NULL), (2947, 376, 'Mr', 'Steve Cash / Douglass Bell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '704-400-2758 Cell Bo', '828-256-6921 Fax/336', NULL), (2948, 377, 'Mr', 'Sandi Wiley / Rob Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '262-642-8201', '262-642-8486 Fax', NULL), (2949, 378, 'Mr', 'AJ Steeber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '909-820-6800 x 234 A', '909-873-3765 Fax ', NULL), (2950, 379, 'Mr', 'Andrew Solak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607- 778-5074', '607-778-5481 Fax ', NULL), (2951, 380, 'Mr', 'Jonelle Shotwell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-340-1690 x 2635', '614-487-3704 Fax ', NULL), (2952, 381, 'Mr', 'Will Beckwith / Rusty Klaber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-455-8530', '859-455-8630 Fax', NULL), (2953, 382, 'Mr', 'Jim Campbell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-667-2301', '(540) 667-3430 Fax', NULL), (2954, 383, 'Mr', 'Dave Thomas / Dave Sciullo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5318 David S', '724-828-2828 Fax/Bil', NULL), (2955, 384, 'Mr', 'Glen Bush', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-2522 Glenn B', ' ', NULL), (2956, 385, 'Mr', 'James Sobek ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-737-9808', '419-737-9400 Fax', NULL), (2957, 386, 'Mr', 'Mark Kempen/Ted Miller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '920-420-3574 Mark Ce', '920-233-9483 Fax/920', NULL), (2958, 387, 'Mr', 'Mike Lofton / Doug Fraser', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '808-479-8517', '808-583-1703 Fax', NULL), (2959, 388, 'Mr', 'Ben James ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '704-434-6551', '', NULL), (2960, 389, 'Mr', 'Kevin Smith / Frank Caldwell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-537-8203/540-345', '540-345-6989 Fax ', NULL), (2961, 390, 'Mr', 'Jason Cross', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 668-8167', '(419) 663-0627 Fax', NULL), (2962, 391, 'Mr', 'Phil Gauffreaut / Ryan Walters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '484-893-1440', '248-324-5178 Fax', NULL), (2963, 392, 'Mr', 'Jonathan Chang / Greg Hilley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-895-2996/895-234', '215-895-2996 Jonatha', NULL), (2964, 393, 'Mr', 'Jeffrey Cook Lab Manager', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-519-7009/610-519', '610-519-6754 Fax', NULL), (2965, 394, 'Mr', 'Matt Diller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-369-3773 ', '717-369-3729 Fax / 7', NULL), (2966, 395, 'Mr', 'Mike Winters / Tim Groff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-368-9855 Mike / ', '717-647-8558 Fax ', NULL), (2967, 396, 'Mr', 'Kevin Dubnicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-453-7900', '734-453-0724 Fax', NULL), (2968, 397, 'Mr', 'Jeff Paul', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-454-8173 Jeff\'s ', '740-297-8836 Fax', NULL), (2969, 398, 'Mr', 'Lambert Knowles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '242-477-7796 Cell La', '242-394-4488 Fax / 2', NULL), (2970, 399, 'Mr', 'Will Campbell / Lambert Knowles ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '242-322-1703/242-376', '', NULL), (2971, 400, 'Mr', 'Melvin Garrett / Rick Phillips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-666-6935 / 440-6', '440-949-1206 Fax/440', NULL), (2972, 401, 'Mr', ' Jim Toto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-372-3716 x 111', '330-372-5594 Fax', NULL), (2973, 402, 'Mr', 'Chris Arthurs/Mark Campbell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-339-6648', '330-339-6687 Fax', NULL), (2974, 403, 'Mr', 'Ken Karenbauer/Tedd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-287-1964', '724-287-3070 Fax ', NULL), (2975, 404, 'Mr', 'Robert Homan/J.R. White', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-664-6270 ', '205-257-2988 Fax', NULL), (2976, 405, 'Mr', 'Sean Auge/Steve Baker/Kevin Braun ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '228-935-1085 Sean', '228-935-5589 Steve', NULL), (2977, 406, 'Mr', 'BM1 Ryan Yoraschek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '203-627-7696 Ryan Ce', '203-468-4517 Fax/203', NULL), (2978, 407, 'Mr', 'Ben James ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '706-867-7751', '706-867-9203 Fax ', NULL), (2979, 408, 'Mr', 'Shawn Millard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-649-5188', '570-649-5850 Fax ', NULL), (2980, 409, 'Mr', 'L.A.E. Ariel Valdes Arenas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '52-938-382-5173 x 22', '52-938-382-5195 Fax', NULL), (2981, 410, 'Mr', 'Jim Wilson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '905-683-3100 x 1207', '905-683-4264 Fax', NULL), (2982, 411, 'Mr', 'Larry Jackson / Duane Sims ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '619-553-6053', '619-533-7229 Fax', NULL), (2983, 412, 'Mr', 'Tom Nebinski / Dick Gerke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-257-2700', '616-257-2800 Fax', NULL), (2984, 413, 'Mr', 'Kraig Brechbuhler/Eric Pedrosa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-354-2030', '419-354-1052 Fax', NULL), (2985, 414, 'Mr', 'Matt Demos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-253-2500 / 502-2', '502-253-2501 Fax', NULL), (2986, 415, 'Mr', 'Doug Meyers / Jim Tuck ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-444-3126 Doug', '814-766-7612 Fax / 8', NULL), (2987, 416, 'Mr', 'Mike Bierman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '441-293-0775', '(441) 293-8929 Fax', NULL), (2988, 417, 'Mr', 'Keith Pryse / Lee Czar/ Michael Pryse ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-226-0761/859-743', '859-746-9408 Fax/ 85', NULL), (2989, 418, 'Mr', 'William Gross / John Sakson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 262-2022', '412-262-1979 Fax', NULL), (2990, 419, 'Mr', 'Kyle Lewis / Lisa Graham ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '509-948-7405 Kyle Ce', '509-545-8103 Fax', NULL), (2991, 420, 'Mr', 'Amy Boltz / Bill Campbell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '910-323-9832', '910-323-5455 Fax', NULL), (2992, 421, 'Mr', 'Steve Seymour', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1/800-562-3235', '570-265-5148 Fax', NULL), (2993, 422, 'Mr', 'Kevin Lichtenfels/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 823-7600', '(412) 823-8999 Fax', NULL), (2994, 423, 'Mr', 'Kevin Lichtenfels/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 823-7600', '(412) 823-8999 Fax', NULL), (2995, 424, 'Mr', 'Kevin Lichtenfels/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 823-7600', '(412) 823-8999 Fax', NULL), (2996, 425, 'Mr', 'Kevin Lichtenfels/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 823-7600', '(412) 823-8999 Fax', NULL), (2997, 426, 'Mr', 'Greg Huffman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-568-3935', '740-373-7317 Fax ', NULL), (2998, 427, 'Mr', 'Kevin Lichtenfels/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 823-7600', '(412) 823-8999 Fax', NULL), (2999, 428, 'Mr', 'Dave Backstrom/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 823-7600', '(412) 823-8999 Fax', NULL), (3000, 429, 'Mr', 'Jason Walker ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-252-6384', '724-266-5807 Fax ', NULL), (3001, 430, 'Mr', 'Rudy Vorkapich / Chris Kearns', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-245-4042x557 Rud', '336-969-3566 Fax ', NULL), (3002, 431, 'Mr', 'Harold Bittner ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-782-7330 ext. 73', '412-782-7343 Fax ', NULL), (3003, 432, 'Mr', 'Mike LaManna ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-361-5000 / 216-2', '216-361-2279 Fax', NULL), (3004, 433, 'Mr', 'Chester VanArsdale', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-665-3515', '716-665-3517 Fax', NULL), (3005, 434, 'Mr', 'John Bareno ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '585-658-2248', '585-658-4054 Fax ', NULL), (3006, 435, 'Mr', 'Avyayam Dave/Jason Fowler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-767-6856', '717-764-2864 Fax ', NULL), (3007, 436, 'Mr', 'Ed Bouse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-419-2531 Ed Cell', '814-237-4491 Fax / 5', NULL), (3008, 437, 'Mr', 'Oscar Vazquez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '202-629-9755 x 1004 ', '202-863-0944 Fax / x', NULL), (3009, 438, 'Mr', 'Mike Capuzzi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-725-5203', '724-725-5204 Fax / 4', NULL), (3010, 439, 'Mr', 'Mark Hawkins / Scott Breninghouse ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-828-0400', '412-828-0300 FAX', NULL), (3011, 440, 'Mr', 'Dave Sweet ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '765-932-3058', '765-932-2461 Fax ', NULL), (3012, 441, 'Mr', 'Bob Thomson/Will Beckwith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-3967 Cell Wi', '859-455-8630 Fax', NULL), (3013, 442, 'Mr', 'Steve Antos ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-846-5841 ', '317-773-6227 Fax', NULL), (3014, 443, 'Mr', 'Mike Ash / Jason Bennett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '260-484-0813 Jason', '317-876-3705 Fax', NULL), (3015, 444, 'Mr', 'John O\'Conner/ Tim Taylor ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-7384 John ', '724-443-8733 Fax', NULL), (3016, 445, 'Mr', ' Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-284-8639/There', '248-486-5050 Fax', NULL), (3017, 446, 'Mr', 'Alan Kossow / Nich Kissoff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-530-3128 / 419-5', '419-530-3066 Fax', NULL), (3018, 447, 'Mr', 'Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-284-8639/There', '(248) 486-5050 Fax', NULL), (3019, 448, 'Mr', 'Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-284-8639/ Ther', '248-486-5050 Fax', NULL), (3020, 449, 'Mr', 'Theresa Marsik x206', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 486-5100', '(248) 486-5050 Fax', NULL), (3021, 450, 'Mr', 'Theresa Marsik ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-284-8639/There', '1-800-669-4234/248-4', NULL), (3022, 451, 'Mr', 'Bob Durecki ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 538-9000', '(616) 538-8877 Fax', NULL), (3023, 452, 'Mr', 'Lisa Thomas ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-374-6256 / 304-4', '740-374-6324 Fax / 3', NULL), (3024, 453, 'Mr', ' Mark Gessel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-755-1401', '304-755-1404 Fax', NULL), (3025, 454, 'Mr', 'Mark Lager', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-6382 Mark La', '412-276-0718 Fax', NULL), (3026, 455, 'Mr', 'Michael Moredock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '765-463-1521 x 231', '765-497-1665 Fax ', NULL), (3027, 456, 'Mr', 'Don Boyce ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '864-576-3230 x 327 D', '864-587-8828 Fax ', NULL), (3028, 457, 'Mr', 'Jean Schneider', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '253-967-7490', '253-966-4288 Fax / 2', NULL), (3029, 458, 'Mr', 'Mitch Kruzel/Kevin Surhigh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-582-0300', '734-582-0100 Fax/ 31', NULL), (3030, 459, 'Mr', 'Mark Lehmann / Bruce Shelton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-870-0314 Mike/51', '317-876-3705 Fax / 5', NULL), (3031, 460, 'Mr', 'Karen Morlan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-866-1057 / 616-6', '616-464-1189 Fax', NULL), (3032, 461, 'Mr', 'Wahied Modiwiryo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '240-375-2357', '301-454-0988 Fax', NULL), (3033, 462, 'Mr', ' Gary Stickley ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-289-2270 Todd / ', '304-558-0253 Fax / 7', NULL), (3034, 463, 'Mr', 'Steven Cutter ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-478-0055', '703-478-0137 Fax/70', NULL), (3035, 464, 'Mr', 'Jim Cordek / Tony Gresko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-479-3645 Jim/814', '814-479-2003 Fax', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (3036, 465, 'Mr', ' Whitney Belkowitz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-618-2572 Cell Jo', '732-252-6994 Fax ', NULL), (3037, 466, 'Mr', 'Chris Neely', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-6546 ', '(717) 783-5955 Fax', NULL), (3038, 467, 'Mr', 'Jeff Hodgson / Chad Cottle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '801-866-1860 Jeff / ', '801-732-2097 Fax', NULL), (3039, 468, 'Mr', 'Dale Diaz ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '708-371-4330', '708-371-9986 Fax ', NULL), (3040, 469, 'Mr', 'Tim Hoyes/Roger Quincy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-704-5459', '419-241-0146 Fax', NULL), (3041, 470, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-6870', '814-766-0234 Fax', NULL), (3042, 471, 'Mr', 'Rick Hughes/Dave Dillon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-770-2477/724-770', '724-770-5601 Fax/ 72', NULL), (3043, 472, 'Mr', 'Dave Myers / Mark Weaver ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-571-4324 Dave/57', '814-641-9533Field Of', NULL), (3044, 473, 'Mr', 'Ryan Wagner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-475-3908 Ryan', '724-265-3323 Fax', NULL), (3045, 474, 'Mr', 'Jamie North ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-432-3184', '814-437-1110 Fax ', NULL), (3046, 475, 'Mr', 'Gary Wenczel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '302-293-3883', '302-831-3640 Fax', NULL), (3047, 476, 'Mr', 'Brian Hibdon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-522-0300', '734-522-0308 Fax ', NULL), (3048, 477, 'Mr', 'Mike Cornacchia', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(586) 826-8992', '(586) 826-8996 Fax', NULL), (3049, 478, 'Mr', 'Pat Belan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-866-0815', '616-866-1890 Rich Fa', NULL), (3050, 479, 'Mr', 'Harm Hamstra', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-204-4900 Harm\'s ', '517-645-0090 Fax', NULL), (3051, 480, 'Mr', 'Lynn Grimm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 854-4511 ', '(330) 854-6664 Fax', NULL), (3052, 481, 'Mr', ' Tim Patrilla', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-965-1400', '330-623-7004 Tim Cel', NULL), (3053, 482, 'Mr', 'Scott Salai', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-547-0120 ', '724-547-0939 Fax', NULL), (3054, 483, 'Mr', 'Matt Manning ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-538-9169 Matt Ce', '(724) 452-8923 Fax', NULL), (3055, 484, 'Mr', 'Steve Tutokey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-777-0710 Steve/4', '412-777-0727 Fax ', NULL), (3056, 485, 'Mr', 'Tim Murray', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-255-4444 Tim\'s C', '513-726-5679 Fax ', NULL), (3057, 486, 'Mr', 'Jeff Stocker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-254-1018', '740-254-1019 Fax', NULL), (3058, 487, 'Mr', 'Tim Strohl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-775-4559/614-419', '614-775-4901 Fax / 6', NULL), (3059, 488, 'Mr', 'Todd Klockner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-823-3774', '614-865-3589 Fax', NULL), (3060, 489, 'Mr', 'Sheila Sennet', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 435-3200 / 937', '(937) 435-5162 Fax', NULL), (3061, 490, 'Mr', 'James Crockett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-814-9047 James', '859-567-5714 Fax', NULL), (3062, 491, 'Mr', 'Monica Williams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-573-0955', '216-573-0963 Fax', NULL), (3063, 492, 'Mr', 'Tom Sortman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-236-8805 x 253 T', '937-237-9947 Fax', NULL), (3064, 493, 'Mr', 'Seth Molenaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 256-6500', '(440) 256-6507 Fax', NULL), (3065, 494, 'Mr', 'Seth Molenaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 256-6500', '(440) 256-6507 Fax', NULL), (3066, 495, 'Mr', 'Seth Molenaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-256-6500', '440-256-6507 Fax', NULL), (3067, 496, 'Mr', 'Seth Molenaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-256-6500', '440-256-6507 Fax', NULL), (3068, 497, 'Mr', 'Jim Flaherty ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-339-4113', '330-339-1166 Fax', NULL), (3069, 498, 'Mr', 'Kelly Doolittle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-854-5388', '', NULL), (3070, 499, 'Mr', 'Stephen Karns ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-334-2650 x 318 ', '419-334-9445 Fax ', NULL), (3071, 500, 'Mr', 'Michael Clinton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-245-9100', '717-245-9656 Fax', NULL), (3072, 501, 'Mr', 'DeWayne Roheback', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-772-5363', '814-772-5353 Fax ', NULL), (3073, 502, 'Mr', 'MikeMarchioni/GaryWoeste/BrettDeters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 621-1500/513-2', '513-684-8290 Fax /51', NULL), (3074, 503, 'Mr', 'Carl Ellefsen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-525-7277', '440-525-7639 Fax', NULL), (3075, 504, 'Mr', 'Lynn Lagana / Beth Damschroder', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '810-225-4601', '810-225-4602 Fax ', NULL), (3076, 505, 'Mr', 'James Richards', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-539-1747 James C', '304-558-0253 Fax ', NULL), (3077, 506, 'Mr', 'Janna Korhorn / Ben Brown ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '931-486-2145', '931-486-2186 Fax', NULL), (3078, 507, 'Mr', 'Ray Carter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '817-431-9458', '817-431-3601 Fax ', NULL), (3079, 508, 'Mr', 'Howard Westfaul ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '228-935-7535 Howard ', '228-933-9108 Fax', NULL), (3080, 509, 'Mr', 'Angelo Castellano/Josh Marnhout', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-9642 Josh/41', '412-807-2006 Fax', NULL), (3081, 510, 'Mr', 'Kevin Kleen ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-393-2460', '859-586-8891 Fax', NULL), (3082, 511, 'Mr', 'John Drahnak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-322-1545 John ', '814-322-1549 Fax', NULL), (3083, 512, 'Mr', 'Pat Belan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-866-0815', '616-866-1890 Rich Fa', NULL), (3084, 513, 'Mr', 'Jennifer Collis / Manoj N. Kumar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-515-4493 Jennife', '216-566-3837 Fax ', NULL), (3085, 514, 'Mr', 'Dave Gonso', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-424-8377', ' ', NULL), (3086, 515, 'Mr', 'John Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', NULL), (3087, 516, 'Mr', 'Dave Roebuck ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-916-0300', '724-916-0315 FAX', NULL), (3088, 517, 'Mr', 'John Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', NULL), (3089, 518, 'Mr', 'John Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', NULL), (3090, 519, 'Mr', 'Sam Kimanu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 ', '410-358-7213 Fax', NULL), (3091, 520, 'Mr', 'John Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', NULL), (3092, 521, 'Mr', 'Chris Kurek/Jeff Csurilla', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-766-0734 Jeff', '412-449-0704 Fax ', NULL), (3093, 522, 'Mr', 'Nancy Klemm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-323-7901/814-437', '814-437-5114 Fax ', NULL), (3094, 523, 'Mr', 'Mohammed Asghar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mohammad 513-556-437', '513-556-2599 Fax/513', NULL), (3095, 524, 'Mr', 'Keith Pryse / Doug Fields ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-746-9400/513-617', '513-825-4756 Fax ', NULL), (3096, 525, 'Mr', 'Tony Swan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 682-7755 x25', '(740) 682-6767 Fax', NULL), (3097, 526, 'Mr', 'Rick Solak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-538-5006', '724-538-9118 Fax', NULL), (3098, 527, 'Mr', 'Kendall Skaggs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-775-6450 x123 Li', '740-775-6498 Fax ', NULL), (3099, 528, 'Mr', 'Jay Alig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-688-3381 Jay', '859-987-0727 Fax', NULL), (3100, 529, 'Mr', 'Marty Maxey ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '270-927-8606', '270-584-0265 Marty M', NULL), (3101, 530, 'Mr', 'Bruce Hottle/Gram Hottle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 445-5794', '(814) 445-3241 Fax', NULL), (3102, 531, 'Mr', 'Wane Rabe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 379-8604', '724-379-5181 Fax ', NULL), (3103, 532, 'Mr', 'Wane Rabe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-258-3670 ', '724-258-2595 Fax', NULL), (3104, 533, 'Mr', 'John Sakson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-262-2022', '412-262-1979 Fax', NULL), (3105, 534, 'Mr', 'John Blair/Jim Smith/Chris Morris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-344-0821 Jim Smi', '304-342-4711 Fax ', NULL), (3106, 535, 'Mr', 'Galen Cloud / Doug Potter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '281-447-4100', '281-448-0702 Fax Gal', NULL), (3107, 536, 'Mr', 'Shawn Sheehan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-369-0198', '216-369-0197 Fax ', NULL), (3108, 537, 'Mr', 'Matt Anderson / Joe Boyd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-930-4081Matt Cel', '703-996-0124 Fax / ', NULL), (3109, 538, 'Mr', 'John Daugherty / Jake Zacks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-459-2720 x 140', '814-455-3751 Fax', NULL), (3110, 539, 'Mr', 'Jim Richards / Jack Farar / Scott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-788-8026 Jim / 4', '412-788-1169 Fax/412', NULL), (3111, 540, 'Mr', 'Dave Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-828-2800 David', '724-828-2828 Fax ', NULL), (3112, 541, 'Mr', ' Todd Neumann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-887-9181', '517-887-2666 Fax', NULL), (3113, 542, 'Mr', 'Keith Pryse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-746-9400', ' ', NULL), (3114, 543, 'Mr', 'Marshall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-535-3405 Jeff', '248-745-2990 Fax ', NULL), (3115, 544, 'Mr', 'Scott Hubbard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 858-4865', '(248) 335-2921 Fax', NULL), (3116, 545, 'Mr', 'Brian Gondec', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-946-4966', '(734) 946-1147 Fax ', NULL), (3117, 546, 'Mr', 'Randy Guy / Jerry Schippa ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '920-419-6361', 'No Fax Yet', NULL), (3118, 547, 'Mr', 'Tom Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-361-2060', '814-361-2061 Fax', NULL), (3119, 548, 'Mr', 'Susan Brown', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 454-9900', '(734) 454-0629 Fax', NULL), (3120, 549, 'Mr', 'Mick Strouse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-770-8750 Mick ', '412-449-0704 Fax ', NULL), (3121, 550, 'Mr', 'Jarrod Tezik ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-2364 Jarrod ', '724-335-3834 Fax ', NULL), (3122, 551, 'Mr', 'Heath Shirey ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-698-4000 x 441', '(717) 848-5565 Fax', NULL), (3123, 552, 'Mr', 'Harry McGhee / John Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4256', '814-766-0316 Fax', NULL), (3124, 553, 'Mr', 'Bob Mauthe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-360-0076 Bob', '(814) 238-0131 Fax', NULL), (3125, 554, 'Mr', 'Douglass Gruber ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Doug 410-272-1515(O)', '410-272-2136 Fax', NULL), (3126, 555, 'Mr', 'Bob Dolence', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-443-1533', '724-443-8733 Fax', NULL), (3127, 556, 'Mr', 'Brian Reed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '309-797-3232 x 201 B', '309-797-3377 Fax', NULL), (3128, 557, 'Mr', 'Britain Gazda / Brian Herron', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-655-5574 x 1343 ', '570-414-2640 Fax', NULL), (3129, 558, 'Mr', 'Matt Spoleti / Rich Mohl ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-966-9856 / 973-6', '973-636-2701 Fax', NULL), (3130, 559, 'Mr', 'Don Lehnerd / Bob Dolence ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-443-1533 / 412-2', '724-443-8733 Fax/412', NULL), (3131, 560, 'Mr', 'Samuel Miller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '242-350-4000', '242-350-4010 Fax ', NULL), (3132, 561, 'Mr', 'Frank Biter / Ron McGinnis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-445-8496', '412-449-0694 Ron ', NULL), (3133, 562, 'Mr', 'Jessie Bietrich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-931-0203', '412-287-5444 Jessie ', NULL), (3134, 563, 'Mr', 'William Ingraham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-372-3897/724-216', '724-748-3599 Fax', NULL), (3135, 564, 'Mr', 'Chester Covert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-838-7177', '440-838-7181 Fax ', NULL), (3136, 565, 'Mr', ' Brett Forsythe ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-638-1272 Brett', '724-265-3323 Fax', NULL), (3137, 566, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-436-0099', '717-436-0202 Fax', NULL), (3138, 567, 'Mr', 'Dave Wiltrout', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-640-2624 Dave Wi', '724-696-4952 Fax', NULL), (3139, 568, 'Mr', 'Paul Dykta ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-239-6488', '(724) 239-6489 Fax', NULL), (3140, 569, 'Mr', 'Eric Zottola', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-585-4787 Eric Zo', ' ', NULL), (3141, 570, 'Mr', 'Terry Hurst', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-722-1401', '502-267-4072 Fax', NULL), (3142, 571, 'Mr', 'Dave Adams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740)-773-2172/740-6', '(740) 773-2176 Fax', NULL), (3143, 572, 'Mr', ' Darrin Izer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 241-9441 ', '(502) 241-0931 Fax', NULL), (3144, 573, 'Mr', 'Jim Bumen/Julie Stewart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 663-2659', '(740) 663-2017 Fax', NULL), (3145, 574, 'Mr', 'Steve Cox ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-554-1700 x 107 S', '513-554-0092 Fax', NULL), (3146, 575, 'Mr', 'Doug', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-825-4350', '513-825-4756 Fax', NULL), (3147, 576, 'Mr', 'Jeff Gilland/Jodi Miller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 836-4209 Jeff ', '(614) 836-4226 Fax', NULL), (3148, 577, 'Mr', 'Sandy Greenbaum', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 361-8447 x24 S', '(502) 361-4793 Fax /', NULL), (3149, 578, 'Mr', 'Jimmy Norton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '270-268-2345 Jimmy', '(270) 737-7277 Fax', NULL), (3150, 579, 'Mr', 'Joe Grygiel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-631-3067', '412-299-7734 Fax', NULL), (3151, 580, 'Mr', 'John Houk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-763-4039', '937-382-2199', NULL), (3152, 581, 'Mr', 'Mike Ionata/Wendy Danish', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-264-1430', '610-264-1430 Fax (P', NULL), (3153, 582, 'Mr', 'Darrell Griffith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-664-2077', '205-664-4077 Fax', NULL), (3154, 583, 'Mr', 'Diana Adams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '413-525-2705', '413-525-6182 Fax', NULL), (3155, 584, 'Mr', 'Steve Gustin ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PHONES DISCONNECTED', '513-228-3483 Fax', NULL), (3156, 585, 'Mr', 'Mark Miechowicz / Mike Pittenger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-951-9000 / 440-5', '440-951-7487 Fax / 4', NULL), (3157, 586, 'Mr', 'ScottMelanoski/Larry McCune', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 298-3232 ', '440-951-1921 Fax / 4', NULL), (3158, 587, 'Mr', 'Mark Haynes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-897-1904', '(716) 893-5427 Fax', NULL), (3159, 588, 'Mr', 'Nathan Mowery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-750-2203', '304-750-2204 Fax', NULL), (3160, 589, 'Mr', 'Bruce White', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-749-8898 Lab/ 30', '614-778-4305 Jack\'s ', NULL), (3161, 590, 'Mr', 'Lisa Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '228-549-1610(O) 251-', '', NULL), (3162, 591, 'Mr', 'Ernie Fisher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-812-1276 Ernie F', '724-443-8733 Fax', NULL), (3163, 592, 'Mr', 'Melissa Morena', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 454-1113', '(330) 454-8770 Fax', NULL), (3164, 593, 'Mr', 'Larry Wanamaker / Bill Krebs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-512-2441 / 937-5', '937-512-2475 Fax', NULL), (3165, 594, 'Mr', 'Zachary Cochran/Doug Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 639-4411 Gary ', '(606) 639-2144 Fax', NULL), (3166, 595, 'Mr', 'SFC James Price ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '318-290-6410', '318-290-6411 Fax', NULL), (3167, 596, 'Mr', 'Lydia Gerard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '504-733-9822', '504-734-0602 Fax ', NULL), (3168, 597, 'Mr', 'Todd Labit ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '337-837-1676 x 261 T', '337-837-6599 Fax', NULL), (3169, 598, 'Mr', 'Barry Samuels', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '580-584-6247 Ext. 27', '580-584-3099 Fax Bar', NULL), (3170, 599, 'Mr', 'Tom Williams / Raja El-Awar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 421-4000 / 757', '(703) 421-8000 Fax', NULL), (3171, 600, 'Mr', 'Richard Dirk Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-436-1111', '', NULL), (3172, 601, 'Mr', 'Hassan Akhlaghi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '240-455-8380', '301-330-2710 Fax', NULL), (3173, 602, 'Mr', 'Jeremy Walsh ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-840-8536 Jeremy', ' ', NULL), (3174, 603, 'Mr', 'Tom Williams / Raja El-Awar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 421-4000 / 757', '(703) 421-8000 Fax', NULL), (3175, 604, 'Mr', 'Kimberly Moore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-842-6875 Kimberl', '610-362-0211 Fax ', NULL), (3176, 605, 'Mr', ' Joe Brickner ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-764-7700 ', '717-764-4129 Fax', NULL), (3177, 606, 'Mr', 'Brad Minemyer/Doug Spade ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-749-9204/814-525', '814-749-0090 Fax', NULL), (3178, 607, 'Mr', 'Amanda Kritzer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-372-1302 Amanda ', '(814) 371-4640 Fax', NULL), (3179, 608, 'Mr', 'Amanada Kritzer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-371-0184 x1302 A', '(814) 371-4640 Fax', NULL), (3180, 609, 'Mr', 'Dean Marshall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-321-1666 Dean', '724-452-8923 Fax', NULL), (3181, 610, 'Mr', 'Steve Huff / Jim Gowarty', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-292-1135 / 304-3', '304-296-9302 Fax ', NULL), (3182, 611, 'Mr', 'Ernie Fischer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-443-1533', '724-443-1533 x 50326', NULL), (3183, 612, 'Mr', 'Jim Worsley / Ryan Huth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-481-0280', '412-481-3442 Fax', NULL), (3184, 613, 'Mr', 'Dave Urbanowski / Cindy Newton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-691-4800', '419-691-4805 Fax (D', NULL), (3185, 614, 'Mr', 'Nancy Grable / Tony Maukonen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-599-7005', '440-599-7575 Fax', NULL), (3186, 615, 'Mr', 'Ryan Rhodes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-443-1533 x 50204', '724-443-8733 Fax', NULL), (3187, 616, 'Mr', 'Rick Witt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-274-3447', '859-745-3013 Fax ', NULL), (3188, 617, 'Mr', 'Brenda Burbridge', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 733-6748', '(330) 733-6749 Fax', NULL), (3189, 618, 'Mr', 'Bryan Lehigh ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-308-3913 Bryan ', '330-308-6996 Fax / 3', NULL), (3190, 619, 'Mr', 'Jeremy Lynn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '810-772-7573 ', '810-341-7573 Fax', NULL), (3191, 620, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-6870 Mark/81', '814-766-4400 Fax / 8', NULL), (3192, 621, 'Mr', 'Mike McCarthy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-783-2238', '215-443-8362 Fax', NULL), (3193, 622, 'Mr', 'Mike Kroon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-361-0958 Mike Ce', '248-592-9130 Fax', NULL), (3194, 623, 'Mr', 'Greg Mitchel / James Stein', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-476-3156 Greg\'s ', '724-487-8755 Fax', NULL), (3195, 624, 'Mr', 'Greg Mitchel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-476-3156 Greg\'s ', '734-487-8755 Fax ', NULL), (3196, 625, 'Mr', 'Rich Sanders', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 456-2700', '330-456-4530 Fax', NULL), (3197, 626, 'Mr', 'Sandy Hurban ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-382-0373', '814-382-0375 Fax', NULL), (3198, 627, 'Mr', 'Nick Campanella', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 478-0081', '(330) 478-3267 Fax', NULL), (3199, 628, 'Mr', 'Kurt O. Seidler/Greg Cook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-746-4482', '330-259-3560 Fax ', NULL), (3200, 629, 'Mr', 'Louise Bena / H. Kasa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-604-9943', '440-604-9992 Fax ', NULL), (3201, 630, 'Mr', 'Frank Hutto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '828-734-1011', '828-926-2229 Fax', NULL), (3202, 631, 'Mr', 'Jeff Lebo / John Yingst', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 566-5066', '(717) 566-4166 Fax', NULL), (3203, 632, 'Mr', 'Rodney Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-868-6221', '502-863-0834 Fax', NULL), (3204, 633, 'Mr', 'Shannon Stevens', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-989-2263 Shannon', '304-766-7396', NULL), (3205, 634, 'Mr', 'Jerry Baber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-4998', ' ', NULL), (3206, 635, 'Mr', ' Jim Gagliardi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-461-4676 Jim', '724-443-8733 Fax', NULL), (3207, 636, 'Mr', 'Chris Enciso', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-3199 Chris', '724-443-8733 Fax', NULL), (3208, 637, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax / 5', NULL), (3209, 638, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax / 5', NULL), (3210, 639, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax / 5', NULL), (3211, 640, 'Mr', 'Ed Bostaph/ Mike Pomeroy/Henry ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-837-7743/814-598', '814-837-9155 Fax/814', NULL), (3212, 641, 'Mr', 'Tom Stewart/Steve Goodman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-399-2992', '724-399-2480 Fax', NULL), (3213, 642, 'Mr', 'Jim Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 581-1443', '(502) 581-9653 Fax ', NULL), (3214, 643, 'Mr', 'Shayne Brashear/Darin Croucher/Joe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-497-2319 Shayne/', '1-888-792-3121 Fax/8', NULL), (3215, 644, 'Mr', 'NathanBentley/JustinMoon/GregPennell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-639-4483/606-639', '606-639-8692 Fax / 6', NULL), (3216, 645, 'Mr', 'Charlotte Killen ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '256-386-2715', '256-386-3657 Fax', NULL), (3217, 646, 'Mr', 'Serge Vaillancourt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '418-931-4614 Cell Se', '418-694-7972 Fax ', NULL), (3218, 647, 'Mr', 'Brandon Clayton / Jolene Watford ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '828-456-9695', '828-456-5505 Fax', NULL), (3219, 648, 'Mr', 'JohnAlbright/AnthonyGale/TomSmith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4212 ', '814-766-0222 Fax', NULL), (3220, 649, 'Mr', 'Scott Hartzel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-266-4173', '717-266-5083 Fax', NULL), (3221, 650, 'Mr', 'J Alvarez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '305-822-5792 x 108', '305-362-3125 Fax ', NULL), (3222, 651, 'Mr', 'Matt Skilijo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-342-6851 x1285', '724-983-2226 Fax', NULL), (3223, 652, 'Mr', 'Kevin Lang ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-744-0809 x 157 K', '330-744-3218 Fax / 3', NULL), (3224, 653, 'Mr', 'Chris McAllister', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-373-6611 x 2443', '', NULL), (3225, 654, 'Mr', 'Rob Whitmire', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 524-2950', '216-524-4069 Fax', NULL), (3226, 655, 'Mr', 'Ron Clauson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '312-666-2989 Ron', '', NULL), (3227, 656, 'Mr', 'Mary Petrilli / Diana Kingsley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-334-7600 opt 5 t', '315-334-7660 Fax', NULL), (3228, 657, 'Mr', 'Kurt Triptow / Greg Horacek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-327-3200', '440-327-3204 Fax', NULL), (3229, 658, 'Mr', 'Kristi Larzelere / Spencer Ruffner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-264-8148 / 517-2', '517-264-0922 Fax Spe', NULL), (3230, 659, 'Mr', 'Stephen Bennett/Jacob Folsom ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-4998/859-536', '859-299-2481 Fax', NULL), (3231, 660, 'Mr', 'Dave Novotny / Dr. Ram', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-739-9300/419-739', '440-947-2099 Fax', NULL), (3232, 661, 'Mr', 'Dung Tran ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-471-8400', '703-471-5292 Fax', NULL), (3233, 662, 'Mr', 'DJ Swagger/ Jack Yon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-475-1773 Jack Yo', '724-265-3326 Fax', NULL), (3234, 663, 'Mr', 'Paul Peterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-9104 Cell Pa', '412-807-2006 Fax / 4', NULL), (3235, 664, 'Mr', 'William Gague', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-238-1166 / 304-2', '304-558-0253 Fax ', NULL), (3236, 665, 'Mr', 'Michelle Brunni/Paul Medwig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-751-4001', '412-751-4003 Fax ', NULL), (3237, 666, 'Mr', 'Fred Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-535-4397', '724-535-1137 Fax ', NULL), (3238, 667, 'Mr', 'Nunzio Staph / Keith Doyle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724)658-5656', '(724)658-5659', NULL), (3239, 668, 'Mr', 'Shane Barshear', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-309-6021 x 215', '888-792-3121 Fax', NULL), (3240, 669, 'Mr', 'Tim Cartwright', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-275-8700 x 190 M', '937-275-9566 Fax / x', NULL), (3241, 670, 'Mr', 'Todd Phillips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-542-2585', '330-542-2586 Fax ', NULL), (3242, 671, 'Mr', 'Colby DeHoff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-947-2837 x 233 o', '330-823-5502 Fax ', NULL), (3243, 672, 'Mr', 'Anthony Gale', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121 x 42', '814-766-0222 Fax / ', NULL), (3244, 673, 'Mr', 'Toni Wales', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-659-5888', '570-433-4408 Fax', NULL), (3245, 674, 'Mr', 'Nicole Parise / Tim Piotrowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-587-4616 Nicole', '607-587-4654 Fax', NULL), (3246, 675, 'Mr', 'Lorraine Monette / Paul Kurtz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-779-2259', '410-779-2005 Fax', NULL), (3247, 676, 'Mr', 'Frank Biter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-5098 Frank ', '(814) 238-0131 Fax', NULL), (3248, 677, 'Mr', 'Shannon Stevens ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-989-2263 Shannon', '304-766-8105 Fax ', NULL), (3249, 678, 'Mr', 'Harry Zumbrum / Barry Cook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-843-0081', '717-846-4193 Fax', NULL), (3250, 679, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3251, 680, 'Mr', 'Gabe Chavis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-947-4000 x 1126', '734-947-4004 Fax ', NULL), (3252, 681, 'Mr', 'Mike Szot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '847-980-5464 Mike Ce', '847-429-9903 Fax', NULL), (3253, 682, 'Mr', 'JohnAlbright/AnthonyGale/TomSmith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4212 ', '814-766-0222 Fax', NULL), (3254, 683, 'Mr', 'Randy Evans', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '504-682-4138 Randy', '504-682-5296 Fax ', NULL), (3255, 684, 'Mr', 'Cristen Jordan / Don Bateman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-261-3700', '804-261-0418 Fax ', NULL), (3256, 685, 'Mr', 'Eric Kussman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-286-8338 Eric\'s ', '410-515-4895 Fax', NULL), (3257, 686, 'Mr', 'Fred Wood / Jeff Wood ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-753-2657 / 724-6', '724-496-4380 Cell', NULL), (3258, 687, 'Mr', 'Jenn Morris ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '760-536-0227 x 19 Je', '760-536-0233 Fax', NULL), (3259, 688, 'Mr', 'Eddie Khanthavong', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '925-798-8900', '925-798-8905 Fax ', NULL), (3260, 689, 'Mr', 'Dennis Maurer / Chris Morrisey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-796-5000 / 410-9', '410-850-4111 Fax', NULL), (3261, 690, 'Mr', 'Dennis Maurer / Chris Morrisey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-796-5000 / 410-9', '410-850-4111 Fax ', NULL), (3262, 691, 'Mr', 'Chuck Cartier-General Manager', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '907-451-0200 ', '907-451-8480 Fax', NULL), (3263, 692, 'Mr', 'Ivan Reynolds', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '208-428-2155 x 5152 ', '208-438-8288 Fax', NULL), (3264, 693, 'Mr', 'Isaac Puentes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '915-525-5029', '915-779-8301 Fax ', NULL), (3265, 694, 'Mr', 'Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-875-7000/317-875', '317-876-3705 Fax / x', NULL), (3266, 695, 'Mr', 'Eric Sperber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 777-9890/513-9', '513-777-9070 Fax/317', NULL), (3267, 696, 'Mr', 'Dan Hartley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-414-4315 Katie T', ' (Phone)724-584-3564', NULL), (3268, 697, 'Mr', 'Mike Rose', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-727-2656 Mike Ro', '317-477-0549 Fax', NULL), (3269, 698, 'Mr', 'Dena Osborne', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-941-3008', '724-941-1666 Fax', NULL), (3270, 699, 'Mr', 'Dave Erikson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-933-5050', '313-933-1965 Fax ', NULL), (3271, 700, 'Mr', 'Andy Molek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-379-6800 Plant', '724-258-4202 Fax ', NULL), (3272, 701, 'Mr', 'Justin Bryan/Sam Tioher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-771-4001 ', '412-771-6824 Fax / 4', NULL), (3273, 702, 'Mr', 'Mark Geist', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-389-6892 Mark/ R', '412-807-2006 Fax', NULL), (3274, 703, 'Mr', 'Steve Harriett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-867-0495/724-867', '(724) 867-0676 Fax, ', NULL), (3275, 704, 'Mr', 'Kevin Kilmer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-7894 Mark Ce', '412-807-2006 Fax ', NULL), (3276, 705, 'Mr', 'Dana Pinkerton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '619-336-0342', '619-336-0343 Fax ', NULL), (3277, 706, 'Mr', 'Rick Ryel / Bill Vallas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-992-2997', '440-992-1311 Fax ', NULL), (3278, 707, 'Mr', 'Jacob Chumbley 260-413-0581', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '260-413-0581', 'Eric Sperber 513-967', NULL), (3279, 708, 'Mr', 'Sheila Sennet', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-604-3083 Sheila\'', ' ', NULL), (3280, 709, 'Mr', 'Sherry Justice ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-899-2085', '724-899-2086 Fax ', NULL), (3281, 710, 'Mr', 'Joe Spankus', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-709-8512 Joe ', '304-472-9588 Fax', NULL), (3282, 711, 'Mr', 'Sam Kimanu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171x6106/44', '410-358-7213 Fax', NULL), (3283, 712, 'Mr', 'Tim Kitko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-470-6979 Tim', '814-238-1360 Fax -Mi', NULL), (3284, 713, 'Mr', 'Steven Cutter ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-478-0055', '703-478-0137 Fax/70', NULL), (3285, 714, 'Mr', 'Thomas Knight ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-367-9456', '703-335-6100 Fax', NULL), (3286, 715, 'Mr', 'Mike McGaw/Dave Krauss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-433-5465 Dave ', '216-433-8300 Fax / 2', NULL), (3287, 716, 'Mr', 'Mike McGaw/Dave Krauss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-433-5465 Dave ', '216-433-8300 Fax / 2', NULL), (3288, 717, 'Mr', 'Dan Zojtko / Paul Pridemore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-839-7120 Paul ', '216-839-8801 Fax / 2', NULL), (3289, 718, 'Mr', 'Mike Ohanian ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-400-6230', '216-400-6238 Fax', NULL), (3290, 719, 'Mr', 'Greg Staresinic/ Darin Matkoskey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-431-0626 x 114', '724-431-0630 Fax', NULL), (3291, 720, 'Mr', 'Tom Freda', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-419-5005Steve Ca', '614-895-1171 Fax', NULL), (3292, 721, 'Mr', ' Barry Peters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 238-2471/ 814-', '814-238-2914 Fax', NULL), (3293, 722, 'Mr', 'Doug Lobdell 740-833-8333', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-833-8333', '740-833-8097 Fax', NULL), (3294, 723, 'Mr', 'Eric Sperber ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-777-9890 Eric ', '513-777-9070 Fax ', NULL), (3295, 724, 'Mr', 'Thor Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '307-272-4561/ 307-25', '713-513-4161 Fax', NULL), (3296, 725, 'Mr', 'Rebecca Walker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '505-353-3053', '505-345-8303 Rebecca', NULL), (3297, 726, 'Mr', 'Pete Douglas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5095 Pete', '724-335-3834 Fax', NULL), (3298, 727, 'Mr', 'John Barbati', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-622-6943/412-*47', '412-622-6944 Fax Joh', NULL), (3299, 728, 'Mr', 'Bob Garret', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-534-5017', '330-534-0197 Fax', NULL), (3300, 729, 'Mr', 'Doug Lobdell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-833-8333', '', NULL), (3301, 730, 'Mr', 'Andrew D. Watkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-245-6826 Ext. 21', '440-244-0414 Fax', NULL), (3302, 731, 'Mr', 'Joe Oester', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-0714 Joe Oe', '724-443-8733 Fax', NULL), (3303, 732, 'Mr', ' Brian Curtis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-381-1550 Brain C', '269-381-7117Fax', NULL), (3304, 733, 'Mr', 'Kevin Vander Wilp 616-464-6931', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-464-1800 / Dave ', '616-464-1189 Fax', NULL), (3305, 734, 'Mr', 'Dave Gonso', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 424-8377', ' ', NULL), (3306, 735, 'Mr', 'Jeremy Ball/Kevin Vander Wilp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-464-1800/616-464', '616-464-1189 Fax / 2', NULL), (3307, 736, 'Mr', 'Beth Gleason ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-294-6430', '586-294-6912 Fax', NULL), (3308, 737, 'Mr', 'Keith Benders / Jon Erickson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 798-4127 Chip', '(231) 798-1383 Fax', NULL), (3309, 738, 'Mr', 'Jon Meddaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-943-5503', '231-943-5534 Fax', NULL), (3310, 739, 'Mr', 'Tim Lautenbach/Dan Elliott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 456-5469', '(616) 456-5784 Fax', NULL), (3311, 740, 'Mr', 'Tom Grzeskowiak/ Mike Zavala', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-381-1550 Tom x 2', '269-381-4116 Fax Ste', NULL), (3312, 741, 'Mr', 'Andy East', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-439-3266 x 152 A', '540-439-1232 Fax', NULL), (3313, 742, 'Mr', 'Allen Clark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-325-3401 Allen\'s', '276-531-8033 Batch P', NULL), (3314, 743, 'Mr', 'Brian Janas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-248-0100 x 3760 ', '440-848-8521 Fax', NULL), (3315, 744, 'Mr', 'Slip Scillo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5514 Slip', '724-828-2828 Fax', NULL), (3316, 745, 'Mr', 'John Drahnak/ Troy 814-421-2969', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-322-1545, 814-4', '814-322-1549 Fax', NULL), (3317, 746, 'Mr', 'Mark Blum ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-263-0110', '724-250-7450 Fax', NULL), (3318, 747, 'Mr', 'Mike Baker / Jerry Mosteller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-372-3911 Jerry ,', '724-748-3599 Fax', NULL), (3319, 748, 'Mr', 'Tony Daughtry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '770-331-1323 Tony\'s ', '', NULL), (3320, 749, 'Mr', 'ale Phillips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-297-1225 x 104 C', '330-297-1373 Fax', NULL), (3321, 750, 'Mr', 'Kevin Samms ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-238-2762 Kevin C', '(937) 492-8434 Fax', NULL), (3322, 751, 'Mr', 'Robin Maxwell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-492-4134', '937-498-1883 Fax ', NULL), (3323, 752, 'Mr', 'Scott Marshall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-989-2284 Scott', '', NULL), (3324, 753, 'Mr', 'Dawn Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-299-1214', '937-299-0120 Fax', NULL), (3325, 754, 'Mr', 'Todd Klockner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-823-3774', '614-865-3589 Fax', NULL), (3326, 755, 'Mr', 'Michael Clinton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-245-9100', '717-245-9656 Fax', NULL), (3327, 756, 'Mr', 'Kris Settlage', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-999-6907', '419-222-6877 Fax', NULL), (3328, 757, 'Mr', 'Darin Shick/TimPrice/ScottStickley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-667-3750/540-974', '540-667-3730 Fax / x', NULL), (3329, 758, 'Mr', 'Kurtis Parker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '405-388-1479 Kurtis', '', NULL), (3330, 759, 'Mr', 'Milton Wills ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-788-4331', '410-788-4331Fax Also', NULL), (3331, 760, 'Mr', 'John McFarland', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-5559 Cell Jo', '304-744-7425 Fax ', NULL), (3332, 761, 'Mr', 'Tom Grzeskowiak/ Mike Zavala ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-381-1550 Tom -15', '269-381-4116 Fax Ste', NULL), (3333, 762, 'Mr', 'Dave Redd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-931-0203 ', '412-292-9630 Dave Re', NULL), (3334, 763, 'Mr', 'Cheryl Weston ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-937-7868 Mark ', '814-766-0234 Fax Mar', NULL), (3335, 764, 'Mr', 'Doug Harris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-556-9039', '724-658-5659 Fax', NULL), (3336, 765, 'Mr', 'George Steiner/Ryan Steiner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(301) 724-2000', '1-800-842-2807', NULL), (3337, 766, 'Mr', 'Farouk Azad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '571-436-0438-Farouk ', '703-488-3701 Fax', NULL), (3338, 767, 'Mr', 'Bill Chilli / Doug Stewart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-535-4374', '724-535-8166 FAX', NULL), (3339, 768, 'Mr', 'Mike Fulcomer/James Kelley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-854-2145', '540-854-2146 Fax', NULL), (3340, 769, 'Mr', 'Mike Fulcomer / James Kelley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-854-2145', '540-854-2146 Fax', NULL), (3341, 770, 'Mr', 'Mark Miller ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mike Hagen 301-252-0', '301-948-8273 Fax ', NULL), (3342, 771, 'Mr', 'Chris Cortese', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-7080 Chris C', ' ', NULL), (3343, 772, 'Mr', 'Jay Alig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-725-8889 Jay (Of', ' ', NULL), (3344, 773, 'Mr', 'Lisa Zelich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-613-5834 Lisa', '412-821-2554 Fax', NULL), (3345, 774, 'Mr', 'Joe Dimiceli/Kim Marcey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-366-3000', '703-366-3400 Fax', NULL), (3346, 775, 'Mr', 'Sam Kimani', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-504-6106 Sam Kim', '410-358-7213 Fax', NULL), (3347, 776, 'Mr', 'Josh Evans 484-364-1842', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '484-364-1842 Josh Ev', '610-942-2629 fax', NULL), (3348, 777, 'Mr', 'Mike Fulcomer / James Kelley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-854-2145', '540-854-2146', NULL), (3349, 778, 'Mr', 'Mike Fulcomer / James Kelley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-854-2145', '', NULL), (3350, 779, 'Mr', 'Mike Fulcomer/ James Kelley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-854-2145', '540-854-2145', NULL), (3351, 780, 'Mr', 'Michael Hannah / Butcher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-755-5300/Butcher', '304-755-5367 Fax', NULL), (3352, 781, 'Mr', 'Robert Fransisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-485-1708', '304-485-1709 FAX', NULL), (3353, 782, 'Mr', ' Nick Buchan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-459-5950 ex. 328', '724-459-9151 Fax', NULL), (3354, 783, 'Mr', 'Kerri Allgauer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-792-9446/Kerri c', '410-792-7395 FAX', NULL), (3355, 784, 'Mr', 'Robert Hiss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 876-8000 ext 2', '(614) 876-0548 Fax', NULL), (3356, 785, 'Mr', 'Allen Cuff 814-348-5659', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-348-5659', '', NULL), (3357, 786, 'Mr', 'Tim Quick, 814-574-5556 cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-326-9031', '814-574-5556 Tim Qui', NULL), (3358, 787, 'Mr', 'Michael Treuhaft', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-463-6500 x 139', '845-790-0131 Fax ', NULL), (3359, 788, 'Mr', 'Jeff Obermeyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '510-562-2953', '510-562-9757 Fax ', NULL), (3360, 789, 'Mr', 'Steve Campbell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-839-1255 Tom Fre', '614-895-1171 Fax S. ', NULL), (3361, 790, 'Mr', 'Zack Bright', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-792-9446', '410-792-7395 FAX', NULL), (3362, 791, 'Mr', 'Steven Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Steven 614-987-0216 ', '614-431-4024 Fax', NULL), (3363, 792, 'Mr', 'John Gailbraith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-782-7330 Harold ', '412-782-7308 Fax', NULL), (3364, 793, 'Mr', 'Jason Yambert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '217-369-1737 Jason Y', '', NULL), (3365, 794, 'Mr', 'Mike Stiger/Cathy Scheffler ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-482-2313', '740-482-2895 Fax ', NULL), (3366, 795, 'Mr', 'Mark Salveter ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-898-1200 x 11 Ma', '937-898-1230 Fax', NULL), (3367, 796, 'Mr', 'Todd Neumann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-887-9181', '517-887-2666 Fax', NULL), (3368, 797, 'Mr', 'Curt / Robert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-330-2435', '814-766-0234 Fax', NULL), (3369, 798, 'Mr', 'Michael Zavala / Barb Spycher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-873-4711', '313-873-4733 Fax', NULL), (3370, 799, 'Mr', 'Marshall / Suzanne Elliott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-535-3460 Suzanne', '248-745-2990 Fax Suz', NULL), (3371, 800, 'Mr', 'Brian Dill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '904-545-7504 Brian D', '', NULL), (3372, 801, 'Mr', 'Cory', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-813-8959 Taylor', '', NULL), (3373, 802, 'Mr', 'Jeff Kowalski/Chuck Brumbaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-946-9191 / 231-9', '231-941-4603 Fax', NULL), (3374, 803, 'Mr', 'Tim Quick, 814-574-5556 cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-326-9031', '814-574-5556 Tim Qui', NULL), (3375, 804, 'Mr', 'Rob Rouse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-372-3897 Rob', '724-748-3599 Fax', NULL), (3376, 805, 'Mr', 'Larry Kitko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-571-5241 Larry K', '', NULL), (3377, 806, 'Mr', 'Larry Roles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '714-981-1045 Larry ', '714-897-0163 Fax', NULL), (3378, 807, 'Mr', 'Jack Bielata', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 665-5410 x 164', '(716) 665-5152 Fax', NULL), (3379, 808, 'Mr', 'Tom Rainsberger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-857-0628 Tom\'s C', '440-439-1544 Fax', NULL), (3380, 809, 'Mr', 'Sam Crawford', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-352-4471 ext 107', '', NULL), (3381, 810, 'Mr', 'Mike Oravetz/ Mike Beck/Tim Meyers ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-696-3341 x 1609', '(724) 696-4952 Fax /', NULL), (3382, 811, 'Mr', 'Adam Piper / Toni Lappa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-439-7405-724-323', '724-439-7434 Fax', NULL), (3383, 812, 'Mr', 'Scott Rodgers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-906-1579 Scott R', '', NULL), (3384, 813, 'Mr', 'Scott Rodgers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-906-1579 Scott', ' ', NULL), (3385, 814, 'Mr', 'Bill Johnston ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-669-4500', '937-669-4566 Fax ', NULL), (3386, 815, 'Mr', 'Steve Grimaldi ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-771-5340', '412-771-5336 Fax', NULL), (3387, 816, 'Mr', 'Ryan Mcneel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-486-1600 x154', '412-781-7840 Fax ', NULL), (3388, 817, 'Mr', 'Bob Schur, Project Supervisor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' ', '724-438-2634 Fax', NULL), (3389, 818, 'Mr', 'Dave Thomas / Anthony Pastin ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5321 Dave\'s ', '724-887-0930', NULL), (3390, 819, 'Mr', 'Brad Croyts 412-818-8385', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'Brad 412-818-8385 Bi', NULL), (3391, 820, 'Mr', 'Steve Kent', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-797-2200', '', NULL), (3392, 821, 'Mr', 'Tim Quick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-5556 Tim Qui', '', NULL), (3393, 822, 'Mr', 'Jeff Santone', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-271-1612 / 412-2', '304-485-1882 - Fax', NULL), (3394, 823, 'Mr', 'Brian Janas/Terry Hauser x2519', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-248-0100 x 3760 ', '440-848-8521 Fax', NULL), (3395, 824, 'Mr', 'Mary Charney / Ron Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '509-377-8603', '509-377-8219 Fax', NULL), (3396, 825, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3397, 826, 'Mr', 'Kyle Butts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '316-942-2453', '316-942-2555 Fax', NULL), (3398, 827, 'Mr', 'Nate Regier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '316-942-2453', '316-942-2555 Fax', NULL), (3399, 828, 'Mr', 'Nate Regier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '316-942-2453', '316-342-2555 Fax', NULL), (3400, 829, 'Mr', 'Kyle Butts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '316-942-2453', '316-942-2555 Fax', NULL), (3401, 830, 'Mr', 'Ron Toth 619-540-9848 cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '619-540-9848 Ron Tot', '619-440-8653 fax', NULL), (3402, 831, 'Mr', 'Michelle Brunni/Paul Medwig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-751-4001', '412-751-4003 Fax ', NULL), (3403, 832, 'Mr', 'Don Martin / Bill Robertson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 428-6150/937-6', '(937) 428-6154 Fax', NULL), (3404, 833, 'Mr', 'Brian Bunnell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 445-3830 x 21', '(614) 445-3839 Fax', NULL), (3405, 834, 'Mr', 'Randy Knapp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-738-1447 x 1312 ', '(419) 738-7670 Fax', NULL), (3406, 835, 'Mr', 'Kevin Lichtenfels', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3407, 836, 'Mr', 'Dave Backstrom/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3408, 837, 'Mr', 'Heather Woods-Shaffer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-382-1722 Heather', '304-776-6426 Fax ', NULL), (3409, 838, 'Mr', 'Jerry Spence', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-733-1909 Jerry', '610-867-3785 Fax ', NULL), (3410, 839, 'Mr', 'Jim Bower', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 304-923-7752', ' ', NULL), (3411, 840, 'Mr', 'Jackie Hatfield Lycans ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-872-8110', '304-872-7110 Fax', NULL), (3412, 841, 'Mr', ' Reece Armitage', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Tom Schulster 603-32', '(330) 467-7984 Fax/3', NULL), (3413, 842, 'Mr', 'Ryan Rolfe / Mike McKerchen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 776-3238 x 17 ', '(740) 776-6553 Fax', NULL), (3414, 843, 'Mr', 'Ryan Rolfe / Mike McKerchen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 776-3238 x 17 ', '(740) 776-6553 Fax', NULL), (3415, 844, 'Mr', 'Tim Goodall / Roland Sparks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-266-8311 Roland ', '513-321-0294 Fax', NULL), (3416, 845, 'Mr', 'Charlie Bishop ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-233-0250 x 201 C', '937-237- 9947 Fax', NULL), (3417, 846, 'Mr', 'Shive Chaturvedi / Cindy Crawford ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-292-2617 Shive C', '614-292-2294 Fax / 6', NULL), (3418, 847, 'Mr', 'Chris Kelly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(859) 744-9481 x 255', '(859) 744-9571 Fax', NULL), (3419, 848, 'Mr', 'Jack Dietz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-778-4305 Jack\'s ', ' No Fax', NULL), (3420, 849, 'Mr', 'Denny Juna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-615-8296 Dennys ', ' ', NULL), (3421, 850, 'Mr', 'Jack Dietz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-264-0690 Jack Di', ' ', NULL), (3422, 851, 'Mr', 'Dale Crowl ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-584-2174', '(216) 584-2272 Fax', NULL), (3423, 852, 'Mr', 'Kevin Manual/Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-787-4073', '1-800-669-4234 / 248', NULL), (3424, 853, 'Mr', 'Phil Curtis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '970-640-5741', '970-245-7737 Fax', NULL), (3425, 854, 'Mr', 'Jr Lear', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '970-985-9473/970-216', '970-245-7737 Fax', NULL), (3426, 855, 'Mr', 'Eric Hessen/Nate Beard/Todd Hamilton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '970-985-9473/304-962', '970-245-7737 Fax / 6', NULL), (3427, 856, 'Mr', 'Shayne Brashear/Darin Croucher/Joe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-497-2319 Shayne/', '1-888-792-3121 Fax/8', NULL), (3428, 857, 'Mr', 'George Clark 604-222-7327', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '604-222-1047', '604-222-1074 Fax', NULL), (3429, 858, 'Mr', 'Jeff Richardson/Todd McKinniss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 614-445-3839 Jeff ', 'no Fax', NULL), (3430, 859, 'Mr', 'Tom Williams / Raja El-Awar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 421-4000 / 757', '(703) 421-8000', NULL), (3431, 860, 'Mr', ' Joe Brickner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-764-7700', '717-764-4129 Fax', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (3432, 861, 'Mr', 'William Mehalick ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-444-3043', '717-444-9995 Fax', NULL), (3433, 862, 'Mr', 'John Sakson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 262-2022', '412-262-1979 Fax', NULL), (3434, 863, 'Mr', 'John Sakson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-262-2022', '412-262-1979 Fax', NULL), (3435, 864, 'Mr', 'Bill Padorski/Chris Wright', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 412-292-4932 Bill', '(412) 431-7683 Fax', NULL), (3436, 865, 'Mr', 'Prasad Kudlapur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1329 Prasad', '614-887-4027 Fax ', NULL), (3437, 866, 'Mr', 'Ahmed Ali 734-341-7154 cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-759-1600', '734-282-6556 Fax', NULL), (3438, 867, 'Mr', 'Julius Lawrence ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-304-4979 Cell Ju', '(313) 897-1280 Fax/3', NULL), (3439, 868, 'Mr', 'David Litzner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(906) 293-5168', '906-293-3331 Fax', NULL), (3440, 869, 'Mr', 'David Ashenfelter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 732-3584', '989- 732-6391 Fax', NULL), (3441, 870, 'Mr', 'Josh Gollschall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-468-3456 ', '231-846-0986 Fax ', NULL), (3442, 871, 'Mr', 'Tom Dykowski / Josh Gottschall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '906-789-7800', '906-789-0100 Fax ', NULL), (3443, 872, 'Mr', 'Rob Arnot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 620-7400', '(248) 620-7402 Fax', NULL), (3444, 873, 'Mr', 'Zeerak Paydawy ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-324-5372 Zeerek ', '724-524-0927 Fax Zee', NULL), (3445, 874, 'Mr', 'Paul Schmichael Ext. 226', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-731-3100', '586-731-3582 Fax', NULL), (3446, 875, 'Mr', 'Patrick Wilson/Patty Swiss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 526-2119', '(231) 526-7257 Fax', NULL), (3447, 876, 'Mr', 'Russ Bennett ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 755-6777', '989-755-6775 Fax', NULL), (3448, 877, 'Mr', 'Chad Richards', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(313) 849-4571', '(313) 849-4555 Fax', NULL), (3449, 878, 'Mr', 'Dawn Lavigne', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-899-1016', '410-850-4111 Fax', NULL), (3450, 879, 'Mr', 'Dave Harness/Dan Dilk/Kellen Heavin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-875-7000/317-875', '317-876-3705 Fax / x', NULL), (3451, 880, 'Mr', 'Gene Mosher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '508-457-3312', '508-457-3400 Fax', NULL), (3452, 881, 'Mr', 'Jay Matthews', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '817-487-8693 Jay\'s C', '817-761-2393 Fax', NULL), (3453, 882, 'Mr', 'Chuck 580-251-3230', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '580-656-0128', '580-251-3607-fax', NULL), (3454, 883, 'Mr', 'Professor Vicky Brown ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-499-4607 Vicky', '610-499-4461 Fax/484', NULL), (3455, 884, 'Mr', 'Jason Maffeo/Rodney Wood', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-534-4331 / 412-2', '717-534-7379 Fax/Jas', NULL), (3456, 885, 'Mr', 'Randy Peiffer / Gregg Gers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-867-3992', '717-867-3999 Fax', NULL), (3457, 886, 'Mr', 'Chris Howat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-644-6370', '610-644-2930', NULL), (3458, 887, 'Mr', 'Jerome Guy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-561-1623/ Cell 4', '717-561-1623 Fax Als', NULL), (3459, 888, 'Mr', 'Todd Sack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-561-5100 x 1419', '215-561-5101 Fax ', NULL), (3460, 889, 'Mr', 'Brian Hollis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '441-232-2000', '441-238-2362 Fax/441', NULL), (3461, 890, 'Mr', 'Susan Bawn/Rich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '441-236-4373/441-236', '441-236-2544 Fax/441', NULL), (3462, 891, 'Mr', 'Vic Timar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '818-262-1236', '818-837-8062 Fax', NULL), (3463, 892, 'Mr', 'Robert St. John', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-796-5000/410-365', '410-796-8500 Fax', NULL), (3464, 893, 'Mr', 'Marco Pacheco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '52 (229)775-2227', '52 (229) 119-1175 Ma', NULL), (3465, 894, 'Mr', 'Al Sumption ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-496-2440 / 989-5', '989-496-2465 Fax', NULL), (3466, 895, 'Mr', 'John Browning / Steve Williamson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-239-3900 / 304-4', '304-239-3905 Fax ', NULL), (3467, 896, 'Mr', 'Brad Schmidt / Kathy Mehaffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-637-0220', '304-637-0296 Fax ', NULL), (3468, 897, 'Mr', 'Mark Cvechko/Jay Marsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-472-7140/304-677', '304-472-6239 Fax', NULL), (3469, 898, 'Mr', 'Jay Whitt / Eric Jackson / Dale Lewis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-705-3067 Jay Cel', '724-667-1067 Fax / 7', NULL), (3470, 899, 'Mr', 'Mike Mazzoli', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-496-9176 Mike Ce', '614-876-0548 Fax', NULL), (3471, 900, 'Mr', 'Frank Teamor/Thomas&Justin Bryan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 431-2700 ', '(412) 431-4648 Fax/4', NULL), (3472, 901, 'Mr', 'John McCarthy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-206-1553 John Mc', '', NULL), (3473, 902, 'Mr', 'Jake Gibas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-579-6593 Jake Gi', '724-438-2634 Fax', NULL), (3474, 903, 'Mr', 'Dan Ulrich ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 348-1180 x 100', '(231) 348-1185 Fax', NULL), (3475, 904, 'Mr', 'Zeerak Paydawy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-324-5372 Zeerak ', '734-524-0927 Fax', NULL), (3476, 905, 'Mr', 'Zeerak Paydawy ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-324-5372 Zeerek ', '734-524-0927 Fax', NULL), (3477, 906, 'Mr', 'Casey Grzybowsko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-378-3900', '724-378-3940 Fax', NULL), (3478, 907, 'Mr', 'Phil Curtis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '970-985-9473 Nate', '970-245-7737 Fax ', NULL), (3479, 908, 'Mr', 'Jim Lupomech', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Billing 1-800-819-28', '402-331-6160 Fax', NULL), (3480, 909, 'Mr', 'Dave Sharp ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '510-487-1155', '510-487-4466 Fax', NULL), (3481, 910, 'Mr', 'JohnCamburn/Errol Gilbert/Tim Flanters ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-323-3555/269-720', '269-323-3553 Fax / 2', NULL), (3482, 911, 'Mr', 'Mike Baker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-301-7429 Mike', '724-748-3599 Fax', NULL), (3483, 912, 'Mr', 'Rich Wilson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-590-1375 Rich Ce', '877-242-2016 Fax', NULL), (3484, 913, 'Mr', 'Bob Gottschall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 433-3186', '570-433-4408 Fax', NULL), (3485, 914, 'Mr', 'Gary / Steve Zelanko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-312-1849/570-752', '814-766-0234 Fax / 8', NULL), (3486, 915, 'Mr', 'Glen Nickelsen / Michelle Minadeo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-234-2900 x 120 G', '713-684-1342 Fax / 4', NULL), (3487, 916, 'Mr', 'Alan Krupa / Paul Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 428-2105', '(440) 428-8829 Fax', NULL), (3488, 917, 'Mr', 'Joe Lileas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 638-7680 x 731', '(330) 638-1277 Fax', NULL), (3489, 918, 'Mr', 'Scott Pack/Todd Surrarrer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(800) 824-2092 Ext ', '(330) 723-5690 Fax/3', NULL), (3490, 919, 'Mr', 'Dennis Sanderson / Don Hollenbaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 741-7007', '216-741-7011 Fax', NULL), (3491, 920, 'Mr', 'Dan Rash / Rod Watkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-724-4528 / 330-6', '814-333-6259 Fax', NULL), (3492, 921, 'Mr', 'Shawn McGee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-232-9945', '440-232-9946 Fax', NULL), (3493, 922, 'Mr', 'Shawn McGee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-232-9945', '440-232-9946 Fax', NULL), (3494, 923, 'Mr', 'Shawn McGee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-232-9945', '440-232-9946 Fax', NULL), (3495, 924, 'Mr', 'Dawn Lavigne', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-282-7760', '', NULL), (3496, 925, 'Mr', 'Rob Kilgore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '479-968-3422', '479-968-8404 Fax', NULL), (3497, 926, 'Mr', 'Bhasker Vamadeva', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-827-2397 Bhasker', '732-827-2320 Fax', NULL), (3498, 927, 'Mr', 'Kelly Goff / Keith Wegman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-636-5699 ext: Ba', '304-636-7293 Fax', NULL), (3499, 928, 'Mr', 'Ed Gebhart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-323-5290 Ed Gebh', '740-323-5292 Fax', NULL), (3500, 929, 'Mr', 'Dave Backstrom/Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3501, 930, 'Mr', 'Kevin Lichtenfels/ Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3502, 931, 'Mr', 'Kevin Lichtenfels/ Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3503, 932, 'Mr', 'Kevin Lichtenfels/ Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3504, 933, 'Mr', 'Kevin Lichtenfels/ Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3505, 934, 'Mr', 'Ray France', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 999-5660', '(419) 999-6029 Fax', NULL), (3506, 935, 'Mr', 'Eric Ward', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-892-0162 Lab', '614-892-0149 Fax ', NULL), (3507, 936, 'Mr', 'Eric Ward', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-892-0162 Lab', '614-892-0149 Fax ', NULL), (3508, 937, 'Mr', 'Rich Werner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-963-1900', '412-963-1926 Fax', NULL), (3509, 938, 'Mr', 'Allen Green', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-512-1707 Allen G', '804-561-5819 Fax', NULL), (3510, 939, 'Mr', 'Pete Douglass', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5095 Pete ', '724-335-3834 Fax ', NULL), (3511, 940, 'Mr', 'Paul Pridemore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-839-7280/216-839', '216-839-8801 Fax / 2', NULL), (3512, 941, 'Mr', 'David Parkinson / Dave Anderson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '805-944-8547 Eric Ch', '303-269-7049 Fax', NULL), (3513, 942, 'Mr', 'Andrew Craosmun', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 447-1335 x 115', '(216) 642-7008 Fax', NULL), (3514, 943, 'Mr', 'Wayne Wheeler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '705-748-8025 Jeff', '705-748-8020 fax', NULL), (3515, 944, 'Mr', 'Terri Burts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '425-821-0902', '530-268-1203 Fax', NULL), (3516, 945, 'Mr', 'Denise Castine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '530-268-1860', '530-268-1203 Fax', NULL), (3517, 946, 'Mr', 'Hugh Swearman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-551-3313', '412-931-2820 Fax', NULL), (3518, 947, 'Mr', 'Ed Lover', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-625-6933', '716-625-6983 Fax', NULL), (3519, 948, 'Mr', 'Kevin Lichtenfels/ Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (3520, 949, 'Mr', 'Lil Schrock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-443-9455', '814-443-9470 Fax ', NULL), (3521, 950, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-944-4605', '814-766-4426 Fax ', NULL), (3522, 951, 'Mr', 'Dana Charney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ext.', '(814) 472-4221 Fax', NULL), (3523, 952, 'Mr', 'Dean Marshall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-321-1666 Dean', '724-783-2492 Fax / 7', NULL), (3524, 953, 'Mr', 'Dana Charney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ext.', '(814) 472-4221 Fax', NULL), (3525, 954, 'Mr', 'Michelle Dixon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-342-5203', '814-342-1489 Fax ', NULL), (3526, 955, 'Mr', 'Brad Zook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-6413 Brad', '814-237-4491 Fax', NULL), (3527, 956, 'Mr', 'Garrick Rupp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-857-7690 ', '814-857-7692 Fax', NULL), (3528, 957, 'Mr', 'Dana Charney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ext. ', '(814) 472-4221 Fax', NULL), (3529, 958, 'Mr', 'William Anderson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-449-3366', '614-542-3680 Fax', NULL), (3530, 959, 'Mr', 'Brian Hickey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-207-7037 ', '614-887-4349', NULL), (3531, 960, 'Mr', 'Jeff Pchola', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '561-504-4305/561-504', '561-330-9355 Fax/561', NULL), (3532, 961, 'Mr', 'Marty Ball', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '810-240-9286 Marty', '248-592-9130 Fax ', NULL), (3533, 962, 'Mr', 'Scott Heisey / Chris Iott / Kurt Rupe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-324-2222 x0133 S', '419-241-1808 Fax', NULL), (3534, 963, 'Mr', 'Scott Heisey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-324-2222 x 0133 ', '419-241-1808 Fax', NULL), (3535, 964, 'Mr', 'Mark TenHarmsel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 457-4920', '(616) 457-6440 Fax', NULL), (3536, 965, 'Mr', 'Linda Barnes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '303-977-8480 Linda', '303-971-5635 Fax', NULL), (3537, 966, 'Mr', 'Whitney Allgood', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '307-789-0596', '307-789-0598 Fax', NULL), (3538, 967, 'Mr', 'Jim Walters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '941-444-3866', '941-758-9099 Fax', NULL), (3539, 968, 'Mr', 'Gary Gibilisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '609-243-3386', '609-243-2799 Fax', NULL), (3540, 969, 'Mr', 'Gary Gibilisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '609-243-3386', '609-243-2799 Fax', NULL), (3541, 970, 'Mr', 'Jill Reves/ Philip West', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '907-562-0707', '907-562-2426 Fax', NULL), (3542, 971, 'Mr', 'Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-284-8639/ Ther', '248-486-5050 Fax', NULL), (3543, 972, 'Mr', 'Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-875-7040 Dan', '317-870-0314 Fax / 3', NULL), (3544, 973, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', 'Clyde D. Landreth VD', NULL), (3545, 974, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', 'Brian Cole VDOT Cont', NULL), (3546, 975, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', 'Tommy Schinkel VDOT ', NULL), (3547, 976, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '824-458-6391 Pine', '', NULL), (3548, 977, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', 'Mike Burton VDOT Con', NULL), (3549, 978, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', 'Charle Brown VDOT Co', NULL), (3550, 979, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', '434-856-8105 Bill Wi', NULL), (3551, 980, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 Pine', 'Wayne Bartholomew VD', NULL), (3552, 981, 'Mr', 'Jim Tyger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-458-6391 -Pine', 'Ronald Jackson VDOT ', NULL), (3553, 982, 'Mr', 'Eric Hayes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-549-8661', '919-549-0761 Fax', NULL), (3554, 983, 'Mr', 'Eric Hayes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-549-8661', '919-549-0761 Fax', NULL), (3555, 984, 'Mr', 'Eric Hayes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-549-8661', '919-549-0761 Fax', NULL), (3556, 985, 'Mr', 'Eric Hayes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-549-8661', '919-549-0761 Fax', NULL), (3557, 986, 'Mr', 'Eric Hayes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-549-8661', '919-549-0761 Fax', NULL), (3558, 987, 'Mr', 'Ishmal Ratliff/ Judy Conley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-432-0300', '606-433-1820 Fax', NULL), (3559, 988, 'Mr', 'Niles Mason', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-829-2158 Kevin ', '410-847-3354 Fax', NULL), (3560, 989, 'Mr', 'Niles Mason', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Dave Brown 443-829-6', '410-612-0732 Fax', NULL), (3561, 990, 'Mr', 'Ray Bonaquiste', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-444-4200', '703-444-4368 Fax', NULL), (3562, 991, 'Mr', 'Ron Anthony / John Hirschfeld', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-738-6014', '', NULL), (3563, 992, 'Mr', ' Paul Pridemore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-839-7280/216-839', '216-839-7280/216-839', NULL), (3564, 993, 'Mr', 'Brian Cole', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-645-2275 Brian C', '276-669-4799 Fax / 2', NULL), (3565, 994, 'Mr', 'Ron Jackson / Bill Bratton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-899-4243 - Ron', '804-328-3136 Fax', NULL), (3566, 995, 'Mr', 'Bill Wise', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-856-8105 Bill W', '', NULL), (3567, 996, 'Mr', 'Clyde Landreth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-387-5517 / 540-3', '804-328-3136 Fax', NULL), (3568, 997, 'Mr', 'Robert Liberatore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-290-2531 Robert ', '804-328-3136 Fax ', NULL), (3569, 998, 'Mr', 'Wayne Bartholomew', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-925-2684 Wayne B', '804-328-3136 Fax / 7', NULL), (3570, 999, 'Mr', ' Susan Warr ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-524-6212 Susan ', '', NULL), (3571, 1000, 'Mr', 'Tony Sands', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-782-2319/412-303', '412-782-2376 Fax', NULL), (3572, 1001, 'Mr', 'Larry Cartwright ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-580-2793 Larry C', '412-268-7813 Fax', NULL), (3573, 1002, 'Mr', 'Phil Gula ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-619-7857 Phil', '301-619-6933 Fax/301', NULL), (3574, 1003, 'Mr', 'Tim Quesenberry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-973-3232 ', '434-973-3238 Fax', NULL), (3575, 1004, 'Mr', 'Paul Baldwin / David Guffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180 David', '804-328-3136 Fax / 8', NULL), (3576, 1005, 'Mr', 'Jason Strong', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-956-2020', '734-522-6427 Fax / C', NULL), (3577, 1006, 'Mr', 'Beth Gleason', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(586) 294-6430', '(586) 294-6912 Fax', NULL), (3578, 1007, 'Mr', 'Stephen Karns ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-334-6091 x 381 R', '419-334-9445 Fax ', NULL), (3579, 1008, 'Mr', 'Michele Bates', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-593-6225 / 419-7', '440-593-6269 Fax / 4', NULL), (3580, 1009, 'Mr', 'Alex Dumitrescu/Linda Peterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-721-6310/Alex 33', '330-723-4510 / Alex ', NULL), (3581, 1010, 'Mr', 'Sean Walsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-454-6300', '248-454-6359 Fax', NULL), (3582, 1011, 'Mr', 'Michael Zavala / Barb Spycher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-873-4711 Office', '313-873-4733 Fax', NULL), (3583, 1012, 'Mr', 'Randy Hazle ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 464-4441 ext. ', '(304) 464-4013 Fax', NULL), (3584, 1013, 'Mr', ' Paul Pridemore ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-839-7120 Paul ', '216-839-7213 Fax ', NULL), (3585, 1014, 'Mr', 'Anthony Gale ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 ', '814-766-0222 Fax ', NULL), (3586, 1015, 'Mr', 'Anthony Gale ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 ', '814-766-0222 Fax ', NULL), (3587, 1016, 'Mr', 'Ernest Doctor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '270-706-6689 Ernest', '270-268-6435 Cell Er', NULL), (3588, 1017, 'Mr', 'Robert Bryan McGlynn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-422-7561(O)330-9', '330-626-4530 Fax ', NULL), (3589, 1018, 'Mr', 'Renita Bell/Rob Thompson/Bill Wilson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-483-3161 x 6127 ', '330-483-0111 Fax/330', NULL), (3590, 1019, 'Mr', 'Jerry Phillips/Brian Struble', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 425-8955', '(304) 425-1171 Fax', NULL), (3591, 1020, 'Mr', 'Joseph Ingram', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-646-5442 Joe\'s C', '', NULL), (3592, 1021, 'Mr', 'Roger Neal ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 286-4524 Offic', '(304) 286-2506 Fax', NULL), (3593, 1022, 'Mr', 'Gui Shamblin / Mike Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-984-3333', '304-984-0908 Fax ', NULL), (3594, 1023, 'Mr', 'Bruce Lamping / Bart Redmon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-294-3212 / 937-4', '937-296-7983 Fax/937', NULL), (3595, 1024, 'Mr', 'Dan Kibbe / Josh Gottschall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-356-6375', '(231) 775-3135 Fax', NULL), (3596, 1025, 'Mr', 'Fred Hommel ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-237-1367', '231-547-6202 Fax ', NULL), (3597, 1026, 'Mr', 'Jennifer Cooper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-239-3463 Jennife', '989-755-4349 Fax ', NULL), (3598, 1027, 'Mr', 'Matthew Sumerad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-785-0801 / 717-7', '724-745-6179 Fax / 4', NULL), (3599, 1028, 'Mr', 'Kevin Flick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-471-8400 x 218 K', '703-834-5527 Fax Ke', NULL), (3600, 1029, 'Mr', 'Jim Peters / Dave Wood /Tom Miles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 877-5708 x 830', '(304) 877-5987 Fax', NULL), (3601, 1030, 'Mr', 'Billy Lanthorn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-991-8598', '859-441-7986 Fax', NULL), (3602, 1031, 'Mr', 'Bob Post', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-357-7678 Bob/ 57', '', NULL), (3603, 1032, 'Mr', 'Luke Lance', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '573-259-3642 Luke C', '412-287-3333 Chris S', NULL), (3604, 1033, 'Mr', 'Gene Sarff / Karen Lester', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '206-622-1151/1-800-6', '206-682-6651 Fax ', NULL), (3605, 1034, 'Mr', 'Alan Johnson/Bruce Coggesholl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '307-685-4615', '307-685-4555 Fax /30', NULL), (3606, 1035, 'Mr', 'David Lafreniere', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-704-9819', '703-704-9683 Fax ', NULL), (3607, 1036, 'Mr', 'Mike Burton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-293-1983', '804-328-3136 Fax ', NULL), (3608, 1037, 'Mr', 'Paul Baldwin / David Guffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '807-328-3180 David', '804-328-3136 Fax / 8', NULL), (3609, 1038, 'Mr', 'Paul Baldwin / David Guffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180 David ', '804-328-3136 Fax / 8', NULL), (3610, 1039, 'Mr', 'Paul Baldwin / David Guffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180 David', '804-328-3136 Fax / 8', NULL), (3611, 1040, 'Mr', 'Tim Milizia', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 357-9696/724-3', '724-463-7915 Fax', NULL), (3612, 1041, 'Mr', 'David Guffey/Keith Williams/Paul', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180 David/8', '804-328-3136 Fax/804', NULL), (3613, 1042, 'Mr', 'James Aylor / Charles Brown ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-829-7570 / 540-7', '540-829-7583 Charles', NULL), (3614, 1043, 'Mr', 'Paul Baldwin / David Guffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180 David ', '804-328-3136 Fax / 8', NULL), (3615, 1044, 'Mr', 'David Guffey / Keith Williams/Paul', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180 David/8', '804-328-3136 Fax / 8', NULL), (3616, 1045, 'Mr', 'John Mussel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-383-2162 / 724-2', '804-328-3136 Fax / B', NULL), (3617, 1046, 'Mr', 'Richard Childs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-293-1983/Richard', '434-293-1990', NULL), (3618, 1047, 'Mr', 'Jeremy Chesterfield ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-893-1215', '800-780-0023 Fax', NULL), (3619, 1048, 'Mr', 'Tim Lautenbach / Dan Elliot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 456-5469', '(616) 456-5784 Fax', NULL), (3620, 1049, 'Mr', 'Dennis Fisk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 723-1198', '(231) 723-1194 Fax', NULL), (3621, 1050, 'Mr', 'Adam Gilde / Derick Naderhood', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 825-2473', '(231) 825-8015 Fax', NULL), (3622, 1051, 'Mr', 'Lyle Peplinski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-343-9600', '269-343-9601 Fax ', NULL), (3623, 1052, 'Mr', 'Dave Hollingsworth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-216-1211 Dave\'s ', '517-347-7740 Fax', NULL), (3624, 1053, 'Mr', 'Eric Tourre', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-206-4064 Eric Ce', '231-943-0914 Fax', NULL), (3625, 1054, 'Mr', 'Tim Lautenbach', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 456-5469', '(616) 456-5784 Fax', NULL), (3626, 1055, 'Mr', 'Tim Lautenbach/ Dan Elliott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 456-5469', '(616) 456-5784 Fax', NULL), (3627, 1056, 'Mr', 'Tim Lautenbach/ Dan Elliot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 456-5469', '(616) 456-5784 Fax', NULL), (3628, 1057, 'Mr', 'Don PrinzBach', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-355-2301 Cell ', '', NULL), (3629, 1058, 'Mr', 'John Brabble', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-485-5228 ', '757-487-2992 Fax', NULL), (3630, 1059, 'Mr', 'Ed Bostaph', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-598-6515 Ed Cell', '814-837-9155 Fax/814', NULL), (3631, 1060, 'Mr', 'Ed Bostaph', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-598-6515 Ed Cell', '814-837-9155 Fax/814', NULL), (3632, 1061, 'Mr', 'Brian Janas ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-248-0100 x 3760 ', '440-848-8521 Fax ', NULL), (3633, 1062, 'Mr', 'Doug Devries', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-246-3008', '', NULL), (3634, 1063, 'Mr', 'Jim Aleksiejczyk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-947-9401', '724-947-9601 Fax', NULL), (3635, 1064, 'Mr', 'Carrie Cheatham / Kris Stamm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '910-686-9114', '910-686-9666 Fax', NULL), (3636, 1065, 'Mr', 'Greaber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '864-271-2840', '864-271-8124 Fax', NULL), (3637, 1066, 'Mr', 'Debbie/Tom Deer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '920-465-1313', '920-465-6430 Fax', NULL), (3638, 1067, 'Mr', 'Michael Davis / Chris Jernigan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '478-474-2941', '478-471-0202 Fax', NULL), (3639, 1068, 'Mr', 'Don Bateman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-261-3700', '804-261-0418 Fax ', NULL), (3640, 1069, 'Mr', 'Ed Calhoun', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 929-2125', '(724) 929-3011 Fax', NULL), (3641, 1070, 'Mr', 'Pete', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3642, 1071, 'Mr', 'Kin Chung', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 670-9055', '(610) 678-2719 Fax', NULL), (3643, 1072, 'Mr', 'Jeremy Graham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-283-6480 Jeremy ', '', NULL), (3644, 1073, 'Mr', 'John Rodriguez / Jim Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 498-9970 Marty', '(717) 325-8892 - Job', NULL), (3645, 1074, 'Mr', 'Chris Shuman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3646, 1075, 'Mr', 'Don Emich / Troy Custer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 569-0441 Ext. ', '(717) 569-5066 Fax', NULL), (3647, 1076, 'Mr', 'Keith Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(804) 395-8265 Ext:', '(804) 395-8241 Fax', NULL), (3648, 1077, 'Mr', 'Keith Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(804) 395-8265', '(804) 395-8241 Fax', NULL), (3649, 1078, 'Mr', 'Keith Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(804) 395-8265', '(804) 395-8241 Fax', NULL), (3650, 1079, 'Mr', 'Andy Palumbo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 787-1266', '', NULL), (3651, 1080, 'Mr', 'Phil Young, Plt. Mgr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 327-6113 - dis', '', NULL), (3652, 1081, 'Mr', 'John White', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 546-2361', '(570) 546-7060 Fax', NULL), (3653, 1082, 'Mr', 'Scott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-258-5460', '', NULL), (3654, 1083, 'Mr', 'Purviz Saranshiem', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 985-9180', '(517) 485-9583 Fax', NULL), (3655, 1084, 'Mr', 'Greg Browse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3656, 1085, 'Mr', 'Greg Browse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3657, 1086, 'Mr', 'Carol Bostic', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-366-5100', '757-366-5203 Fax', NULL), (3658, 1087, 'Mr', 'Greg Leverance / Brian Sinott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-399-3500', '616-399-3777 Fax', NULL), (3659, 1088, 'Mr', 'Jim Ranck/Jim Fernette', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-859-2714 Cell Ji', '989-631-5070 Fax', NULL), (3660, 1089, 'Mr', 'Bob Stull', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 443-1671', '(814) 445-6729 Fax', NULL), (3661, 1090, 'Mr', 'Pete Chambers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(410) 799-2600', '(410) 799-0436 Fax', NULL), (3662, 1091, 'Mr', 'Rich Gilson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3663, 1092, 'Mr', 'Jack Dietz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 667-0114 or 01', '(717) 677-0116', NULL), (3664, 1093, 'Mr', 'Bob Dufore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3665, 1094, 'Mr', 'Bill Frech / Lou', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 446-5620', '', NULL), (3666, 1095, 'Mr', 'Harold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-321-4522 Harold ', '724-654-5434', NULL), (3667, 1096, 'Mr', 'Dr. Sherman / Matt Hall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-342-8871', '313-342-8879 Fax', NULL), (3668, 1097, 'Mr', 'Bill Wells', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-477-7453', '', NULL), (3669, 1098, 'Mr', 'Rick Marker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 438-4581', '(724) 438-6998', NULL), (3670, 1099, 'Mr', 'Joe Breeswine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-256-4201', '215-256-1787 Fax', NULL), (3671, 1100, 'Mr', 'Jim Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 546-1005', '(517) 546-9991 Fax', NULL), (3672, 1101, 'Mr', 'Noel Hartely', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3673, 1102, 'Mr', 'Dave Chillcote, Sr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 695-4405', '', NULL), (3674, 1103, 'Mr', 'Kurt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-330-2435', '814-224-2121 x4364 M', NULL), (3675, 1104, 'Mr', 'Steve Mileski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 666-5432', '(330) 666-4130 Fax', NULL), (3676, 1105, 'Mr', 'Ingred', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 263-7964', '(717) 263-7734 Fax', NULL), (3677, 1106, 'Mr', 'Charles Felmley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 792-4616', '(716) 792-9998 Fax', NULL), (3678, 1107, 'Mr', 'Mike Tetruzizllo, Qual. Mgr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-974-9555 Ext. 10', '440-947-3755 Fax', NULL), (3679, 1108, 'Mr', 'Wes Carson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 546-7219', '(717) 546-6284 Fax', NULL), (3680, 1109, 'Mr', 'Doug Meyer / Brian Kishcock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 354-3232', '(724) 354-2765 Fax', NULL), (3681, 1110, 'Mr', 'Errol Gilbert / Greg Bills', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-373-5500', '269-373-5594 Fax', NULL), (3682, 1111, 'Mr', 'Steve Mills', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '702-597-9393', '', NULL), (3683, 1112, 'Mr', 'John Alexander / Chester Kulp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-898-0700', '', NULL), (3684, 1113, 'Mr', 'Wes Vankuren', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 505-1590', '', NULL), (3685, 1114, 'Mr', 'Barry Burkett / Jennifer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 467-4987', '', NULL), (3686, 1115, 'Mr', 'Matthew Thornton / Joe Clarke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-266-2199', '804-261-5569 Fax', NULL), (3687, 1116, 'Mr', 'Robert Cater', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 942-4006 Bra', '(716) 942-2031 Fax', NULL), (3688, 1117, 'Mr', 'David Guffey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3180', '804-328-3136 Fax', NULL), (3689, 1118, 'Mr', 'Clyde Landreth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-387-5467', '', NULL), (3690, 1119, 'Mr', 'Carol Balascio/William Holtz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-783-3227', '330-426-2210 Fax', NULL), (3691, 1120, 'Mr', 'Jim Hosea', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-539-4000', '', NULL), (3692, 1121, 'Mr', 'Brian Janas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-528-3760 Brian', '440-248-1527 Fax', NULL), (3693, 1122, 'Mr', 'Kevin Mawn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-248-8000', '540-248-9771 Fax', NULL), (3694, 1123, 'Mr', 'Chris Hann ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-987-3118-George ', '717-987-3665 Fax', NULL), (3695, 1124, 'Mr', 'Matthew Thornton / Joe Clarke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-266-2199', '804-261-5569 Fax', NULL), (3696, 1125, 'Mr', 'James Aylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-727-3233', '', NULL), (3697, 1126, 'Mr', 'Janice Ramsey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-332-9174', '', NULL), (3698, 1127, 'Mr', 'Thomas Moore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-651-4650 Tom Cel', '', NULL), (3699, 1128, 'Mr', 'Craig Combs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(810) 766-7165 x 262', '(810) 766-7249 Fax ', NULL), (3700, 1129, 'Mr', 'David Wilcox', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-454-6327 David W', '248-454-6327 David W', NULL), (3701, 1130, 'Mr', 'Brenda Eberly ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-721-0106', '517-721-0107 Fax', NULL), (3702, 1131, 'Mr', 'Matt Brozowski / Ed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-647-3004', '616-647-3005 Fax ', NULL), (3703, 1132, 'Mr', 'Mustafa Jwaida ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 446-8208', '(248) 4468209 Fax', NULL), (3704, 1133, 'Mr', 'Bruce Shelton / Tobian Moore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 777-9890', '513-777-9070 FAX', NULL), (3705, 1134, 'Mr', 'John Jenkin/Ron Erb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-424-1011', '1-800-433-1840 Ron ', NULL), (3706, 1135, 'Mr', 'James Broyles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-383-2162', '703-383-2936 - Fax', NULL), (3707, 1136, 'Mr', 'Bob Willard / Rick Kanopick ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-485-5141 Bob/ 81', '', NULL), (3708, 1137, 'Mr', 'Jim Dauscher/Terry Fritz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-428-2547', '', NULL), (3709, 1138, 'Mr', 'Matt Clarke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-223-1051', '276-223-1653 Fax ', NULL), (3710, 1139, 'Mr', 'Steve Zelanko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-312-1849 Steve', '724-863-8586 Fax ', NULL), (3711, 1140, 'Mr', 'Brad Minemyer/Tim Fello ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-255-1189/814-525', '724-479-8501 Fax/814', NULL), (3712, 1141, 'Mr', 'Chad Richert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-317-1515 Chad ', '313-845-9658 Fax ', NULL), (3713, 1142, 'Mr', 'Mark Clossman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 895-1400 ', '(614) 895-1171 Fax', NULL), (3714, 1143, 'Mr', 'Aaron Martin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 863-3113', '(614) 863-0475 Fax', NULL), (3715, 1144, 'Mr', 'Bill Feltz / Rod Jenkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-443-0085 / 614-3', '614-443-1921 Fax ', NULL), (3716, 1145, 'Mr', 'Mike Huber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 812-7563', '330-375-2245 Fax', NULL), (3717, 1146, 'Mr', ' Abe Maddock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-496-2374', '740-965-2454 Fax', NULL), (3718, 1147, 'Mr', 'Mark Clossman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 895-1400 ', '(614) 895-1171 Fax', NULL), (3719, 1148, 'Mr', 'Bill Heft / Will Frasure', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 385-2184 x249 ', '(740) 385-9336 Fax/7', NULL), (3720, 1149, 'Mr', 'Lynne Henslee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-352-4700', '440-286-2092 Fax', NULL), (3721, 1150, 'Mr', 'Gene Short ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '585-624-4500', '585-624-5300 Fax', NULL), (3722, 1151, 'Mr', 'Wayne Murrock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-263-6794 Wayne C', '(315) 463-9134 Fax', NULL), (3723, 1152, 'Mr', 'Chuck Forth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-694-8657', '716-694-8638 Fax', NULL), (3724, 1153, 'Mr', 'Mike Wells', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-965-2731 x111 Mi', '716-965-2764 Fax ', NULL), (3725, 1154, 'Mr', 'Mike Tallamy ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-872-5326/304-872', '304-877-6845 Fax', NULL), (3726, 1155, 'Mr', 'Joe Francis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-340-4277', '304-340-4278 Fax', NULL), (3727, 1156, 'Mr', 'Carol Coleman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 455-2923', '(304) 455-1207 Fax ', NULL), (3728, 1157, 'Mr', 'Glenn Christy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-522-7077', '', NULL), (3729, 1158, 'Mr', 'Jim Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 344-0821', '(304) 342-4711 Fax', NULL), (3730, 1159, 'Mr', 'Jim Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 344-0821/ 304-', '(304) 342-4711 Fax', NULL), (3731, 1160, 'Mr', 'Dave\'s Cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-545-7041 Dave\'s ', '304-755-2636 Fax', NULL), (3732, 1161, 'Mr', 'Ali Dastgheib ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-755-0721 ', '304-755-1880 Fax', NULL), (3733, 1162, 'Mr', 'Dan Burns', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-627-2405 ', ' ', NULL), (3734, 1163, 'Mr', 'Laura Long', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '254-287-7237', 'RMA 7052', NULL), (3735, 1164, 'Mr', 'Vince Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-391-8501', '', NULL), (3736, 1165, 'Mr', 'Lou Ziolkowski ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PO 1656526', '', NULL), (3737, 1166, 'Mr', 'Ted Eichenlaub ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '602-231-1743', 'RMA 7053', NULL), (3738, 1167, 'Mr', 'John Naypaver', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3739, 1168, 'Mr', 'Jeff Parzych ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '850-445-0224 Jeff Ce', '', NULL), (3740, 1169, 'Mr', 'Roger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-973-6625', '', NULL), (3741, 1170, 'Mr', 'Bob Francisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 663-7988', '(724) 663-4781 Guard', NULL), (3742, 1171, 'Mr', 'Jeff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-283-6082 Jeff C', '', NULL), (3743, 1172, 'Mr', 'Bill Kernan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 638-0134', '(585) 638-0135 FAX', NULL), (3744, 1173, 'Mr', 'Gene Sarvis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-264-7146', '717-264-7634 Fax', NULL), (3745, 1174, 'Mr', 'Bennie McFerron or Bob', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 771-8830', '', NULL), (3746, 1175, 'Mr', 'Pam Rossman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(315) 668-3868', '(315) 676-3150 Fax', NULL), (3747, 1176, 'Mr', 'Kevin Kelly/Steve Brown', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 843-7315', '(724) 847-7079 Fax', NULL), (3748, 1177, 'Mr', 'Dean', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 268-6706', '(937) 268-8321 Fax', NULL), (3749, 1178, 'Mr', 'Tom Matisko/Hiram Ribblett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 266-6402', '(814) 266-6530 Fax', NULL), (3750, 1179, 'Mr', 'David Walsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-368-1414', '540-368-1444 Fax', NULL), (3751, 1180, 'Mr', 'Dave Sherman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 328-8870', '(716) 328-8348 Fax', NULL), (3752, 1181, 'Mr', 'Jim Stacy / Ray McGee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 624-1990', '(716) 624-2102 Fax', NULL), (3753, 1182, 'Mr', 'Brent Hattaway', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3754, 1183, 'Mr', 'Terry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 564-0914 Terr', '', NULL), (3755, 1184, 'Mr', 'Michael Nagle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-726-4371', '513-623-3841 Mike\'s ', NULL), (3756, 1185, 'Mr', 'Mark McFall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-474-1511 phone', '315-460-4106 fax', NULL), (3757, 1186, 'Mr', 'Jim Foss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 384-4943', '', NULL), (3758, 1187, 'Mr', 'Joe Cesare/Paul', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-565-1808--Discon', '', NULL), (3759, 1188, 'Mr', 'Mike Dale/Bill Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 619-1783 Bill ', '', NULL), (3760, 1189, 'Mr', 'Tim Roberts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 648-7131', '(304) 648-7290 Fax', NULL), (3761, 1190, 'Mr', 'Todd Dunn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 475-2900 / 218', '(716) 475-5275', NULL), (3762, 1191, 'Mr', 'Stan Blas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 359-2730', '(585) 359-9668 Fax', NULL), (3763, 1192, 'Mr', 'Neil Zuern/Bob Van Der Horst', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 968-9686', '(585) 968-9688', NULL), (3764, 1193, 'Mr', 'Skip Leonard / Forrest Lamey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 748-6858', '', NULL), (3765, 1194, 'Mr', 'Larry Shively', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 246-6315', '(614) 246-6810 Fax', NULL), (3766, 1195, 'Mr', 'Keith Pryse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 825-4350', '859-743-0375 Cell Ke', NULL), (3767, 1196, 'Mr', 'Keith Pryce / Denise', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 567 5797', '', NULL), (3768, 1197, 'Mr', 'Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-549-7192 Mike ce', '304-530-6349 Fax', NULL), (3769, 1198, 'Mr', 'Jack Dietz ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 264-0690 Jack ', '(614) 876-1899 Fax', NULL), (3770, 1199, 'Mr', 'Tom Stoffick/Jay Whitt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 667-7702 or 6', '(724) 667-1067 Fax/7', NULL), (3771, 1200, 'Mr', 'Pat Cobb/Rhonda Snyder', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-321-3383 Pat Cel', '', NULL), (3772, 1201, 'Mr', 'Gary Workman/Craig Lyle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 755-8228', '(304) 755-8229 Fax', NULL), (3773, 1202, 'Mr', 'Shane Hicks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-928-1374', '276-928-1359 Fax', NULL), (3774, 1203, 'Mr', 'Aaron Teets', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-334-2305', '301-334-2305 Fax ', NULL), (3775, 1204, 'Mr', 'Stan Ward', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-443-0123', '614-443-4001 Fax ', NULL), (3776, 1205, 'Mr', 'Harvey Stacy--Tech', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 789-4784 or 78', '304-475-4321 Harvey ', NULL), (3777, 1206, 'Mr', 'Mike Calabrese/Jene Bailey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '805-373-4418 - Mike', '805-373-4268 Fax ', NULL), (3778, 1207, 'Mr', 'Mark Williams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 877-6451', '(304) 877-5789 Fax', NULL), (3779, 1208, 'Mr', 'Jim Smith/John T. Blair', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 344-0821', '(304) 342-4711 Fax', NULL), (3780, 1209, 'Mr', 'Jeff Maddy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 727-4301 ext. ', '(304) 727-4306 Fax', NULL), (3781, 1210, 'Mr', 'Roberto Standy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 525-9485 / 724', '304-525-9481 Fax', NULL), (3782, 1211, 'Mr', 'Dale Wessel/Kaye Becher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '402-563-6436', '402-563-6252 Fax', NULL), (3783, 1212, 'Mr', 'Wayne Rawlins/Dwight O. McKoy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '869-465-8664/869-662', '869-465-1857 Fax/869', NULL), (3784, 1213, 'Mr', 'Wayne Rawlins/Dwight O. McKoy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '869-465-8664/869-662', '869-465-1857 Fax/869', NULL), (3785, 1214, 'Mr', 'Don Peglow Ext.108', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 231-8845 EXT 1', '(814) 231-8846 Fax', NULL), (3786, 1215, 'Mr', 'Ronald Brewer/Kathy Teribery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-774-3573', '814-774-2854 Fax', NULL), (3787, 1216, 'Mr', 'Don Peglow', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 231-8845', '(814) 231-8846 Fax', NULL), (3788, 1217, 'Mr', 'Dennis York ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3789, 1218, 'Mr', 'Paul Andre', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '702-286-0934 Paul A.', '', NULL), (3790, 1219, 'Mr', 'Peter Nocu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3791, 1220, 'Mr', 'Eladio Infante', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-758-7830', '787-764-8553 Fax', NULL), (3792, 1221, 'Mr', 'Chris Stapko / Joe Dwyer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-987-7330', '410-987-2124 Fax ', NULL), (3793, 1222, 'Mr', 'Ray Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-367-9363', '740-367-0428 Fax', NULL), (3794, 1223, 'Mr', 'Wendell Shaw', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(859) 253-9395', '(859) 255-9939 Fax', NULL), (3795, 1224, 'Mr', 'Randy Myers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-423-0113 x 124', '', NULL), (3796, 1225, 'Mr', 'Nabil Al-Omaish', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '609-771-2267', '609-771-2353 Barbara', NULL), (3797, 1226, 'Mr', 'Thomas Haydon III', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-336-7096', '859-336-7533', NULL), (3798, 1227, 'Mr', 'Rick Grandinetti', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 362-4013', '(814) 362-5590 Fax', NULL), (3799, 1228, 'Mr', 'Mark Stouffer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 275-1307', '(614) 275-1354 Fax', NULL), (3800, 1229, 'Mr', 'Alex Dettloff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1308', '614-275-1354 Fax', NULL), (3801, 1230, 'Mr', 'John Hansen/Dave Martin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-651-4007', '513-651-4009 Fax', NULL), (3802, 1231, 'Mr', 'Terry Berger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 755-8147', '989-755-5423 Fax', NULL), (3803, 1232, 'Mr', 'Mark Weber/Stephen Bennett/Jacob', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(859) 509-4998', '859- 299-2481 Fax/85', NULL), (3804, 1233, 'Mr', 'Jon Lubahn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 788-7067/517-7', '(517) 788-1724 Fax', NULL), (3805, 1234, 'Mr', 'Desi / Elaine Dzimeria/John Hopper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-899-3300', '724-899-3340 Fax', NULL), (3806, 1235, 'Mr', 'Daniel Crago', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 771-0820', '(513) 771-3379 Fax', NULL), (3807, 1236, 'Mr', 'William White/Michael Ford ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 244-3848 ', '(502) 244-3580', NULL), (3808, 1237, 'Mr', 'Rick Carna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 652-7878', '(724) 657-8652 Fax', NULL), (3809, 1238, 'Mr', 'Greg Broadnax', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-277-2439', 'RMA 6101', NULL), (3810, 1239, 'Mr', 'Steve Garrison ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '662-840-9710', '662-840-9773 Fax ', NULL), (3811, 1240, 'Mr', 'Will Lenihan / Seth Stapf ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '204-476-4771 Seth', '321-406-0536 Fax ', NULL), (3812, 1241, 'Mr', 'Juan G. Muriel Rodriguez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-743-6767 / 787-7', '787-743-6769 Fax', NULL), (3813, 1242, 'Mr', 'Juben Nicoles Ortiz/Maritza De Leon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-820-777/787-817-', '787-262-2777 FAX', NULL), (3814, 1243, 'Mr', 'RaulRoble/MoisesEstrada/IvelisseColon ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-284-3065/3066', '787-284-3077 FAX/787', NULL), (3815, 1244, 'Mr', 'FrancisoJavier Brovo Garcia', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-837-7271', '787-837-3967 FAX', NULL), (3816, 1245, 'Mr', 'Emmanual Padilla/Edwin Gutierrez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-841-3122/787-841', '787-841-3164 Fax', NULL), (3817, 1246, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 725-2227', '', NULL), (3818, 1247, 'Mr', 'Heriberto ortiz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-783-3000 x 3259', '787-783-8290 FAX', NULL), (3819, 1248, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-758-7830', '787-758-8553 Fax', NULL), (3820, 1249, 'Mr', 'Will Freeman/Kurt Sanders', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '770-781-8008', '770-781-8003 Fax /6', NULL), (3821, 1250, 'Mr', 'Ivan Usero / Ramon Toro', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-268-3616', '787-268-3699 Fax / 7', NULL), (3822, 1251, 'Mr', 'Pedro Febo Boria/Marie Larergne', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-792-8904', '787-782-7455 FAX', NULL), (3823, 1252, 'Mr', 'Michelle Machado', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-740-5254 / 787-6', '787-740-5267 Fax', NULL), (3824, 1253, 'Mr', 'Abraham/Papo Huertas/Leo Pagan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-607-1331', '787-724-0270 Fax', NULL), (3825, 1254, 'Mr', 'Tamara De Leon x 233', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-783-3585', '787-793-0410 Fax', NULL), (3826, 1255, 'Mr', 'Nelson Munaz Gonzalez/Wanda Diaz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-830-0366', '787-830-8962 Fax', NULL), (3827, 1256, 'Mr', 'Rafael Montro Aponte', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-787-887-2005', '1-787-887-2265 Fax', NULL), (3828, 1257, 'Mr', 'Eng. Gloria Arroyo/Rita Rivera Seville', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-467-3021/787-467', '787-625-2211 Fax/787', NULL), (3829, 1258, 'Mr', 'RitaRiveraSeville/ManualRuizSantiago', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-834-6666 x 2222', '787-805-0005 Fax/787', NULL), (3830, 1259, 'Mr', 'Dinorah Robles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-748-1706', '787-748-1706 Fax', NULL), (3831, 1260, 'Mr', 'Carlos Rivers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-799-1100787-799-', '787-279-9508 Fax', NULL), (3832, 1261, 'Mr', 'Rita Rivera Seville', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-444-5516', '787-625-2211 Fax', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (3833, 1262, 'Mr', 'Hector Pacheo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-562-9904 Hector ', '787-733-0814 - Fax', NULL), (3834, 1263, 'Mr', 'Aida Sosa / Hector Gautier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-774-9403', '787-253-8400 Fax ', NULL), (3835, 1264, 'Mr', 'Marcelino (Tito) Orama', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-894-2650', '787-828-0724 FAX', NULL), (3836, 1265, 'Mr', 'William Morales', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-796-0553', '787-796-0365 FAX', NULL), (3837, 1266, 'Mr', 'Rita Rivera Seville ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-317-2413 Rita ', '787-625-2211 Fax ', NULL), (3838, 1267, 'Mr', 'Rita Riveria Seville', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-444-3097/787-486', '787-625-2211 Fax', NULL), (3839, 1268, 'Mr', 'Rita Rivera Seville ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 757-5500', '787-625-2211 Fax Rit', NULL), (3840, 1269, 'Mr', 'LizaderOsorioCarrion/JenniferO\'Neil', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-687-7838/787-717', '787-687-7838 Fax ', NULL), (3841, 1270, 'Mr', 'Juan Uzpuez / Hector Pacheco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-733-0811', '787-733-0814 Fax /78', NULL), (3842, 1271, 'Mr', 'Ivan W. Ruiz Vale/Elvin Figura', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-258-2737/787-661', '787-258-2727 Fax/787', NULL), (3843, 1272, 'Mr', 'Deborah Camacho', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-740-5252 x 2177 ', '787-740-5269 Fax ', NULL), (3844, 1273, 'Mr', 'Jose A. Rodriquez Just ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-312-4274 Cell/78', ' 787-886-4010 Fax', NULL), (3845, 1274, 'Mr', 'Jose A. Rodriquez Just ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-312-4274 Cell/78', ' 787-886-4010 Fax', NULL), (3846, 1275, 'Mr', 'Ivan Aviles - Engineer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-258-8111', '787-258-6868 FAX', NULL), (3847, 1276, 'Mr', 'Dave Harness / Dan Dilk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-875-7040 Dan', '317-870-0314 Fax/317', NULL), (3848, 1277, 'Mr', 'Frank Williams ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-673-6427 ', '937-233-9203 Fax/937', NULL), (3849, 1278, 'Mr', 'Jim Leach/Steve Drosick/Jim Zimmer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-252-7558', '859- 255-0940 Fax/85', NULL), (3850, 1279, 'Mr', 'Gary Berkhouse/Andrew Howard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-748-2412 Ext. 63', '937-748-2195 Fax/937', NULL), (3851, 1280, 'Mr', 'Rick Nadicksbernd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-402-5039 / 859-2', '513-402-5002 Fax', NULL), (3852, 1281, 'Mr', 'Kathy Cahall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-704-1732 Kathy', '937-746-1528 Fax', NULL), (3853, 1282, 'Mr', 'Kevin Samms/Greg Craft', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 492-9119/937-5', '(937) 492-8434 Fax', NULL), (3854, 1283, 'Mr', 'Bruce Niswonger/Andrea Swift', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-456-4539', '937-456-9247 Fax', NULL), (3855, 1284, 'Mr', 'Eric Sperber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 777-9890/513-9', '513-777-9070 Fax/317', NULL), (3856, 1285, 'Mr', 'Steve Causie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-582-4002 Steve C', '517-676-3758 Fax', NULL), (3857, 1286, 'Mr', 'Marty Ball', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '810-240-9286 Marty c', '810-787-0515 Fax/810', NULL), (3858, 1287, 'Mr', 'Mike Collins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-731-1964 Mike\'s ', '216-378-1497 Fax', NULL), (3859, 1288, 'Mr', 'Mike Gerdeman/Chintan Shah', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-397-3100', '734-397-3131 Fax', NULL), (3860, 1289, 'Mr', ' Chintan Shah', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-397-3100', '734-397-3131 Fax', NULL), (3861, 1290, 'Mr', 'Mike Keenan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-496-3610', '989-496-3190 Fax', NULL), (3862, 1291, 'Mr', 'Melanie Thompson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231- 777-3451', '231-777-3621Fax', NULL), (3863, 1292, 'Mr', 'Bill Jackson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 858-0140', '(248) 452-2250 Fax', NULL), (3864, 1293, 'Mr', 'Jim Stoudt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-677-2093', '', NULL), (3865, 1294, 'Mr', 'Scott Heisey / Chris Iott / Kurt Rupe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-324-2222 x 0133 ', '419-241-1808 Fax', NULL), (3866, 1295, 'Mr', 'Matt Schultz ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-686-3100 x 11109', '989-686-4329 Fax/989', NULL), (3867, 1296, 'Mr', 'Brian Bull', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-466-8169 Brian B', '419-841-0312 Fax (Te', NULL), (3868, 1297, 'Mr', 'William Shank', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-625-9132', '419-625-1201 Fax', NULL), (3869, 1298, 'Mr', ' Steve Hill / David Hill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-252-0691', '304-252-0693 FAX', NULL), (3870, 1299, 'Mr', 'James P. Barger / Brett Bennett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 852-1112', '(724) 852-1114 Fax', NULL), (3871, 1300, 'Mr', 'Chadley Miller / Archie Bennett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-460-7221 Archie', '304-636-6096 Fax', NULL), (3872, 1301, 'Mr', 'Chadley Miller / Raymon Rose', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-635-7321', '(304) 636-6096 Fax', NULL), (3873, 1302, 'Mr', 'Chadley Miller / Micky Davis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-592-0154 / 304-5', '304-636-6096 Fax', NULL), (3874, 1303, 'Mr', 'Chris Justice ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 752-2330', '(304) 752-7961 Fax', NULL), (3875, 1304, 'Mr', 'Rick Rhodes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-727-7062', '304-722-1822 Fax', NULL), (3876, 1305, 'Mr', 'Dan Schmitt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 963-0303 x 252', '(412) 963-7620 Fax /', NULL), (3877, 1306, 'Mr', 'Tina Victor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-222-4254', '724-222-2859 Fax', NULL), (3878, 1307, 'Mr', 'Bill Ferren', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-647-7560', '304-647-7617 Fax / 7', NULL), (3879, 1308, 'Mr', 'Joseph Sprinkle ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-466-6950 ', '304-466-6951 Fax ', NULL), (3880, 1309, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3881, 1310, 'Mr', 'Ed Brunell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-746-5080', 'RMA 8004', NULL), (3882, 1311, 'Mr', 'Tom Hileman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '256-974-3731', '256-974-5880 Fax', NULL), (3883, 1312, 'Mr', 'Lee Brian Johnson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-831-8010', '', NULL), (3884, 1313, 'Mr', 'Tamara Gramlich / Mel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 475-3867', '', NULL), (3885, 1314, 'Mr', 'Kathy Cahall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-704-1732 Kathy', '937-746-1528 Fax ', NULL), (3886, 1315, 'Mr', 'Carl Kelcris/Carl Denison ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-655-4602 x112/51', '517-655-8042 Fax', NULL), (3887, 1316, 'Mr', 'Bert Holt / EJ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-805-1683 Bert Ho', '412-805-1642 Lance L', NULL), (3888, 1317, 'Mr', 'Chris Riefler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-649-6780', '716-649-7389 Fax', NULL), (3889, 1318, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(989) 463-5476', '', NULL), (3890, 1319, 'Mr', 'Malcolm Barret', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-277-5300 ext 32 ', '859-991-5265 Malcolm', NULL), (3891, 1320, 'Mr', 'James Lotts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-221-1667 ext 581', '419-221-5189 Fax', NULL), (3892, 1321, 'Mr', 'John Puskarich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-665-3618', '', NULL), (3893, 1322, 'Mr', 'Eric Ford', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 254-8740', '(716) 254-1351 Fax', NULL), (3894, 1323, 'Mr', 'Ernie Kihl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 877-9577', '(716) 877-9629 Fax', NULL), (3895, 1324, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2642', '', NULL), (3896, 1325, 'Mr', 'Jim Mathers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2642', '', NULL), (3897, 1326, 'Mr', 'Tony', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-232-1040', '', NULL), (3898, 1327, 'Mr', 'Roger Burris / Lori', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3899, 1328, 'Mr', 'Mike Bell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 372-6300 Ext.', '(716) 372-6864 Fax', NULL), (3900, 1329, 'Mr', 'Lewis DiPietro', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-222-1020/ 716-', '', NULL), (3901, 1330, 'Mr', 'Kay', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-234-8985', '', NULL), (3902, 1331, 'Mr', 'Dennis Loh/Ravi ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-271-9301', '302-326-2399 Fax', NULL), (3903, 1332, 'Mr', 'Raj Goyle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3904, 1333, 'Mr', 'Joshua Poling', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-636-3886 Main Of', '304-636-4487 Job Sit', NULL), (3905, 1334, 'Mr', 'Dave Maneval', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-784-4866 ext 223', '', NULL), (3906, 1335, 'Mr', 'Jesse Chatman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-885-6001', '', NULL), (3907, 1336, 'Mr', 'John Thrower, Sr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-352-9421', '724-352-9512 Fax', NULL), (3908, 1337, 'Mr', 'Richard Decker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-776-7391', '607-776-3888 Fax', NULL), (3909, 1338, 'Mr', 'Tom Oess / Kevin Arquette', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 486-6321', '(517) 486-2546', NULL), (3910, 1339, 'Mr', 'Edward Kelly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 539-2311', '', NULL), (3911, 1340, 'Mr', 'Rick Craddock/E. John Hansen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-743-5470 Rick Ce', '', NULL), (3912, 1341, 'Mr', 'Robert Walts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-469-3285', '315-469-1614 Fax', NULL), (3913, 1342, 'Mr', 'Bill Thompson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-244-3848', '', NULL), (3914, 1343, 'Mr', 'Mr. John Hansen 606-235-6069', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-428-2400', '606-428-3354 fax', NULL), (3915, 1344, 'Mr', 'Bill Rhodes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-702-7485 Bill', '315-252-7595 Fax', NULL), (3916, 1345, 'Mr', 'Ed Wass / Daniel Grek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-445-3148', '723-445-0577 Fax', NULL), (3917, 1346, 'Mr', 'Ray Kron', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 649-8110', '(716) 821-0163 Fax', NULL), (3918, 1347, 'Mr', 'Ryan Huber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-224-6176', '(616) 457-6440 Fax', NULL), (3919, 1348, 'Mr', 'Gary Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-776-8001', '', NULL), (3920, 1349, 'Mr', 'Phil / Joe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-385-5028', '434-385-8943', NULL), (3921, 1350, 'Mr', 'Dave Simpson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-771-4983', '', NULL), (3922, 1351, 'Mr', 'Rose Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 963-3500', '(216) 963-3307 Fax', NULL), (3923, 1352, 'Mr', 'Brian Welsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 885-8517', '(814) 885-8498 Fax', NULL), (3924, 1353, 'Mr', 'Mike Burton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(804) 293-1983', '(804) 293-1990 Fax', NULL), (3925, 1354, 'Mr', 'Jindu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 487-1901', '', NULL), (3926, 1355, 'Mr', 'Donna Washburn / Eric', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-559-9000', '610-559-1919 FAX', NULL), (3927, 1356, 'Mr', 'Kevin Zinn/Harry Alhan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-631-4264 Harry', '267-446-8390 Kevin ', NULL), (3928, 1357, 'Mr', 'John Camburn/Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '574-289-8378/574-276', '', NULL), (3929, 1358, 'Mr', 'Dave Harness/Mike Ash/Dan Dilk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-796-3507', '317-870-0314 Fax', NULL), (3930, 1359, 'Mr', 'Sam Callaway/Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '260-484-0813 Sam Cal', '260-413-0581 Additio', NULL), (3931, 1360, 'Mr', 'Ray Myers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-269-2580 Ray', '814-269-2499 Fax', NULL), (3932, 1361, 'Mr', 'Joel Curcio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-385-2018', '419-385-5487 Fax', NULL), (3933, 1362, 'Mr', 'Jason Wooten', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-203-3917 Jason C', '', NULL), (3934, 1363, 'Mr', 'Rob Duprise/Marty Garrison', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-535-3375 Rob Cel', '248-535-3463 Marty G', NULL), (3935, 1364, 'Mr', 'Howard Flint', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 755-0131', '304-755-0131 Fax num', NULL), (3936, 1365, 'Mr', 'Terry Gallion', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-466-6950', '304-466-6951 Fax', NULL), (3937, 1366, 'Mr', 'Greg Fonarev x 110/Lloyd Kaufman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-422-8000/586-615', '734-422-5342 Fax/734', NULL), (3938, 1367, 'Mr', 'Clay Hubbard / Paul Grubbs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-296-7181', '434-220-0129 Fax', NULL), (3939, 1368, 'Mr', 'Greg Letsko /Bob Yogus', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-235-0649/814-659', '814-242-7307/814-235', NULL), (3940, 1369, 'Mr', 'Dennis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (3941, 1370, 'Mr', 'Bob Yogus / Bruce / Dave ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-242-8918 Bruce', '', NULL), (3942, 1371, 'Mr', 'Tom Burns', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-569-1749 Tom Bur', '513-569-4689 Fax', NULL), (3943, 1372, 'Mr', 'John Roc ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-398-8604', '513-398-2735', NULL), (3944, 1373, 'Mr', 'Tim Tipton/Paul Ashcraft ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-582-5426 / 606-6', '859-263-4625 Fax', NULL), (3945, 1374, 'Mr', 'Brian Kelly/Charlie Bowling ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-536-6767x235 Bri', '(814) 536-6770 Fax/8', NULL), (3946, 1375, 'Mr', 'Tim Goodall/Bill Lucas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '812-221-0013 Bill Ce', '', NULL), (3947, 1376, 'Mr', 'Terry Galion / Steve/Jeff Bird', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-949-1934 Terry', '304-949-1937 Fax', NULL), (3948, 1377, 'Mr', 'Dave Harness / Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-875-7000', '317-876-3705 Fax', NULL), (3949, 1378, 'Mr', 'Kevin Hilliker ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-559-7272', '616-977-8617 Fax / 6', NULL), (3950, 1379, 'Mr', 'John Cernius', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-276-3214 John', '269-276-3211 Fax', NULL), (3951, 1380, 'Mr', 'Dan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 242-3644', '(513) 242-7845 Fax', NULL), (3952, 1381, 'Mr', 'John Judd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-399-4861 x 224 J', '419-399-5301 Fax', NULL), (3953, 1382, 'Mr', 'Mason Saniflaw', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-333-6600 Mason', '', NULL), (3954, 1383, 'Mr', 'Fred Johns', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-398-1151 Main No', '610-530-6119 Fax', NULL), (3955, 1384, 'Mr', 'Bruce Shelton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-967-2199 Bruce', '317-870-0314 Fax', NULL), (3956, 1385, 'Mr', 'Gerald Green', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '318-925-1020', '318-925-1033 Fax', NULL), (3957, 1386, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', NULL), (3958, 1387, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', NULL), (3959, 1388, 'Mr', 'Keith Doyle ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-981-4212', '724-981-4214 Fax', NULL), (3960, 1389, 'Mr', 'Jason Strawser', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-962-8983', '607-962-8984 FAX', NULL), (3961, 1390, 'Mr', 'Chris Pridemore/Sean Mulligan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1309 Chris', '614-275-1354 Fax / 6', NULL), (3962, 1391, 'Mr', 'Nunzio Staph / Keith Doyle ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 658-5656', '(724) 658-5659 Fax', NULL), (3963, 1392, 'Mr', 'John Albright/Anthony Gale ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4212 ', '814-766-0222 Fax / ', NULL), (3964, 1393, 'Mr', 'Hugh Swearman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 931-6393', '412-931-2820 Fax', NULL), (3965, 1394, 'Mr', 'Pat Hofmann ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-537-6805 Pat / H', '724-537-6835 Fax', NULL), (3966, 1395, 'Mr', 'Ms. Grubbs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 287-3873 Ms. ', '(614) 287-3644 Fax /', NULL), (3967, 1396, 'Mr', ' Dan Hunt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-575-2132 x 116 D', '614-575-1307 Fax', NULL), (3968, 1397, 'Mr', 'Jim Peacock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-654-7398', '740-654-7426 Fax', NULL), (3969, 1398, 'Mr', 'Ron Babbert/Chris Mulroy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-837-8444', '614-837-1198 Fax', NULL), (3970, 1399, 'Mr', 'Gary Dempsey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 784-7008/330-3', '330-798-0546 Fax', NULL), (3971, 1400, 'Mr', 'Sue Toth / Sarah Cordek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-443-3344 x 3017 ', '814-444-0365 Fax', NULL), (3972, 1401, 'Mr', 'Anthony Gale', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121 x 42', '814-766-0222 Fax / ', NULL), (3973, 1402, 'Mr', 'Denise Napoli/Laurie Butler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(315) 437-1517', '(315) 434-9954 Fax', NULL), (3974, 1403, 'Mr', 'Chris Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-366-1000 ext 236', '716-363-8818 Fax', NULL), (3975, 1404, 'Mr', 'Craig Witherell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-686-3710 Craig', '716-686-3716 Fax', NULL), (3976, 1405, 'Mr', 'Robert Milliman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-431-4291 ', '315-431-4292 Fax ', NULL), (3977, 1406, 'Mr', 'Ian Muir', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-238-3148 / 585-4', '585-458-2402 Fax / 7', NULL), (3978, 1407, 'Mr', 'Tim Daly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-248-2677--Tim ', '440-248-1527 FAX', NULL), (3979, 1408, 'Mr', 'Fara Calhoun', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '713-451-0802', 'HPEG-22-05', NULL), (3980, 1409, 'Mr', 'Lori Sigrist', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '856-489-9459', '', NULL), (3981, 1410, 'Mr', 'Holly McKnight', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '801-975-9494', '', NULL), (3982, 1411, 'Mr', 'Greg Moore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '510-272-0218', '', NULL), (3983, 1412, 'Mr', 'John Ross @ Bud Scales', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-438-4811 Bud Sca', '724-439-2945 FAX Bud', NULL), (3984, 1413, 'Mr', 'Linda Stockwell/Chris Adams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '803-822-7441', '803-822-7586 Fax ', NULL), (3985, 1414, 'Mr', 'Don Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 347-2227', '(724) 347-2240 Fax', NULL), (3986, 1415, 'Mr', 'John Holmes ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-330-671-5162 John', '', NULL), (3987, 1416, 'Mr', 'Michael Nuckols', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3029 ', '', NULL), (3988, 1417, 'Mr', 'Kelly Remick/ Don Einsalaco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(810) 987-7770 ext. ', '810-987-9108 Fax ', NULL), (3989, 1418, 'Mr', 'Mark Carroll', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '508-678-5800 x 22 Ma', '508-678-5884 Fax', NULL), (3990, 1419, 'Mr', 'Nick Scanlon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '651-280-4260', '651-288-4753 Fax ', NULL), (3991, 1420, 'Mr', 'Raul R. Hernandez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '253-966-0548', '253-967-7342 Fax ', NULL), (3992, 1421, 'Mr', 'Alex Gherghel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-400-1575', '216-459-8954 Fax', NULL), (3993, 1422, 'Mr', 'Jim Donathan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 567-3707', '(440) 576-5663 Fax', NULL), (3994, 1423, 'Mr', 'Denise Mula', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 831-3800', '216-292-1465 Fax', NULL), (3995, 1424, 'Mr', 'Rick Buccini', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 277-9305', '(216) 277-6878 Fax', NULL), (3996, 1425, 'Mr', 'David Sciullo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5321', '724-828-2828 Fax', NULL), (3997, 1426, 'Mr', 'Dr. Cernica', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 758-2100', '', NULL), (3998, 1427, 'Mr', 'Steve Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-665-5313 x 245', '716-665-5121 FAX', NULL), (3999, 1428, 'Mr', 'Mark Williams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-262-2022', '', NULL), (4000, 1429, 'Mr', 'Tim Olsen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 454-0195', '(814) 453-2020 Fax', NULL), (4001, 1430, 'Mr', 'Dr. Louay Mohammad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '225-767-9126', '225-767-9179 Fax ', NULL), (4002, 1431, 'Mr', 'Ed Morrison', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 453-0127', '', NULL), (4003, 1432, 'Mr', 'Joe Dacsko/Brian Jimerson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-831-5500', '(216) 831-6053', NULL), (4004, 1433, 'Mr', 'John Albright/David Stultz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121', '814-224-6804 Fax', NULL), (4005, 1434, 'Mr', 'John Albright/David Stultz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121', '814-224-6804 Fax', NULL), (4006, 1435, 'Mr', 'John Kilby', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(540) 951-0124', '', NULL), (4007, 1436, 'Mr', 'Bill Brickner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 291-9560', '', NULL), (4008, 1437, 'Mr', 'Duane Moberg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 865-2904', '(814) 863-6185 Fax', NULL), (4009, 1438, 'Mr', 'Richard Lawson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-728-3045', '724-728-1588 Fax', NULL), (4010, 1439, 'Mr', 'Eric Michener', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-454-9900 (O)734-', '734-454-0629 Fax', NULL), (4011, 1440, 'Mr', 'Dennis Killmeyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 678-0100', '', NULL), (4012, 1441, 'Mr', 'K. Gerald Zimmerman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 865-4780', '(814) 863-7304', NULL), (4013, 1442, 'Mr', 'Becky Pandis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-368-2022', '412-807-2467 Fax', NULL), (4014, 1443, 'Mr', 'Andy Bystry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4015, 1444, 'Mr', 'Duane Sayre', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-328-3029 Kenwood', '', NULL), (4016, 1445, 'Mr', 'David Kurtanich/Bill Woods', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-941-3745 direct', '', NULL), (4017, 1446, 'Mr', 'Tedra Roberts / Kali McCarthy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-720-5254', '419-720-5255 Fax', NULL), (4018, 1447, 'Mr', 'Fred Durrant / Mike Sminchan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 777-6013 / 614', '(614) 777-6160 Fax', NULL), (4019, 1448, 'Mr', 'Doug Kline/Brody', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-837-0430', '570-837-1591 Fax', NULL), (4020, 1449, 'Mr', 'Pete Armlovich(716-642-5393 Pager)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 649-3260 Ext. ', '716-649-3217 Fax/716', NULL), (4021, 1450, 'Mr', 'Pete Armlovich / Jeff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-460-6597 Pager', '716-649-3217 Fax/716', NULL), (4022, 1451, 'Mr', 'David Kurtanich/Bill Woods ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-941-3745 direct ', '', NULL), (4023, 1452, 'Mr', 'Dennis Sanderson / Don Hollenbaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-741-7007', '216-741-7011 Fax', NULL), (4024, 1453, 'Mr', 'Jerry Ritts / Jim Simmons/Chuck', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-559-1095 Jerry C', '', NULL), (4025, 1454, 'Mr', 'Brian Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-596-3232', '937-596-6268 Fax', NULL), (4026, 1455, 'Mr', 'John Albright/David Stultz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121', '814-224-6804 Fax/814', NULL), (4027, 1456, 'Mr', 'Rick Halas ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 285-3211', '716-286-6931 Fax', NULL), (4028, 1457, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '803-557-4946', '', NULL), (4029, 1458, 'Mr', 'Jason Webb/Lloyd Monday', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '865-573-6130', '865-573-6132 Fax', NULL), (4030, 1459, 'Mr', 'David Nicholson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '229-386-3079 David', '', NULL), (4031, 1460, 'Mr', 'Joe Chambers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-639-5260', '330-252-2421 Fax', NULL), (4032, 1461, 'Mr', 'Tedra Roberts/Kali McCarthy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-720-5254', '419-720-5255 Fax', NULL), (4033, 1462, 'Mr', 'Eric Robey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-995-8071', '', NULL), (4034, 1463, 'Mr', 'Craig Green / Dave Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 584-3132 ext ', '(585) 584-3466 Fax', NULL), (4035, 1464, 'Mr', 'Eric Albrecht', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-213-5832 x1018', '716-213-5850 Fax ', NULL), (4036, 1465, 'Mr', 'John Phillips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 799-3221 x 149', '(330) 799-9098 Fax', NULL), (4037, 1466, 'Mr', 'Joe Lecker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-834-2470', '814-834-6251 Fax ', NULL), (4038, 1467, 'Mr', 'Jim Mukanos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jim 412-264-8835(O) ', '(412) 264-8849 FAX', NULL), (4039, 1468, 'Mr', 'Mike Schneider', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-429-2324 Mike Sc', '724-327-5280 Fax', NULL), (4040, 1469, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4041, 1470, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'RMA 6052', NULL), (4042, 1471, 'Mr', 'Larry Boozer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '206-623-1635 x 491', 'RMA 7038', NULL), (4043, 1472, 'Mr', 'Marvin Butts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4044, 1473, 'Mr', 'Jim Gagliardi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-466-8042', '304-466-8043 Fax ', NULL), (4045, 1474, 'Mr', 'Chuck Dato', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 350-5929', '', NULL), (4046, 1475, 'Mr', 'Cyryl Burkhart / W. Mitchell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 598-4053', '(740) 598-4378 Fax', NULL), (4047, 1476, 'Mr', 'Bob Rohn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 354-4111', '', NULL), (4048, 1477, 'Mr', 'Duane Emmitt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 963-3500 ext. ', '330-963-3307', NULL), (4049, 1478, 'Mr', 'JD Chyan / Cullen Wanbaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 755-2933', '(717) 757-1574 Fax', NULL), (4050, 1479, 'Mr', 'Mohammad Naeem', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 466-2574', '(734) 466-2195 Fax', NULL), (4051, 1480, 'Mr', 'Jim Donajkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 727-2692', '', NULL), (4052, 1481, 'Mr', 'Sean Keenan / Karen Laplow', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(989) 636-1041 Lab ', '(989) 636-9951 Fax', NULL), (4053, 1482, 'Mr', 'Kelly Dequire / Gerald Simmons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 586-3121 x221 ', '(716) 264-1498 Fax', NULL), (4054, 1483, 'Mr', 'Randy Best', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 764-6126', '', NULL), (4055, 1484, 'Mr', 'Norris Pace', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 759-6911', '(716) 759-2949 Fax', NULL), (4056, 1485, 'Mr', 'Janet McCarroll, QC', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 675-2717', '', NULL), (4057, 1486, 'Mr', 'Gary Rhinehart/Rob Kozicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 238-9331', '717-364-1640 Fax', NULL), (4058, 1487, 'Mr', 'Mike Urmson/Bob Hunt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 652-2640-Disco', '(330) 652-4118 Fax', NULL), (4059, 1488, 'Mr', 'Bob Dostal', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 526-5600', '(440) 526-5601 Fax', NULL), (4060, 1489, 'Mr', 'Greg Patton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(314) 589-0701 Pager', '', NULL), (4061, 1490, 'Mr', 'Nick Rotondo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-676-8207 Cell Ni', '', NULL), (4062, 1491, 'Mr', 'Joel Walter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 394-5700', '', NULL), (4063, 1492, 'Mr', 'Jane Pulley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 685-2821', '', NULL), (4064, 1493, 'Mr', 'Bob Sabatini / Allen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(215) 788-5571', '(215) 788-5204 Fax', NULL), (4065, 1494, 'Mr', 'Bob Jeffery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(301) 564-9355', '(301) 530-6376 Fax', NULL), (4066, 1495, 'Mr', 'Skip Leonard/Forrest Lamey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 326-7077 ', '(570) 326-4990 Fax', NULL), (4067, 1496, 'Mr', 'Bill Tantlinger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 335-6000', '(412) 335-3834 Fax', NULL), (4068, 1497, 'Mr', 'Robert Congleton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-229-0816', '859-231-6184 Fax ', NULL), (4069, 1498, 'Mr', 'Joe Schreckengost ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-642-2945', '814-642-2946 Fax ', NULL), (4070, 1499, 'Mr', 'Annette Whistler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-3793 Annette', '614-778-4305 Jack\'s ', NULL), (4071, 1500, 'Mr', 'Tim Patterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-350-4038', '', NULL), (4072, 1501, 'Mr', 'Kirk Myers / Kevin Gladis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-632-7722', '717-630-8441 Fax', NULL), (4073, 1502, 'Mr', 'Denny Fry/Jim Kuenzie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-258-7519 Denny (', '717-258-7532 Fax (Di', NULL), (4074, 1503, 'Mr', 'Carroll Bowles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 235-6351', '717-227-1259', NULL), (4075, 1504, 'Mr', 'Tracy Treneff/Jeremy Marcinko ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 363-1376 QC ex', '(740) 363-1377 Fax/7', NULL), (4076, 1505, 'Mr', 'Lance Cole', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-335-0606', '330-335-0908 Fax', NULL), (4077, 1506, 'Mr', 'Bernie Herbert / Pat (money man)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-393-4101', '330-393-4102 Fax', NULL), (4078, 1507, 'Mr', 'John Weist/Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-330-4077 John Ce', '814-766-0231 Fax', NULL), (4079, 1508, 'Mr', 'Andy Rose/Brian Houston/Beverly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-269-7243 ', '814-269-7245 Fax/814', NULL), (4080, 1509, 'Mr', 'Rhonda Snyder/Ray Tressler ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-283-6200 x201 Rh', '724-321-0096 Rhonda ', NULL), (4081, 1510, 'Mr', 'Amit Ghosh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-764-3322 Prof Gh', '734-764-8495 Dept of', NULL), (4082, 1511, 'Mr', 'Dave Rowland ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-847-9707', '937-847-9720 Fax ', NULL), (4083, 1512, 'Mr', 'Alma Long/Bill Long', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 538-1114', '(724) 538-1119 Fax', NULL), (4084, 1513, 'Mr', 'Allen Klingensmith x26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(340) 692-1134', '(340) 692-2889 Fax', NULL), (4085, 1514, 'Mr', 'Greg Moorehead / Butch DeNunzio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(340) 775-0100 x 111', '(340) 777-7499 Fax/3', NULL), (4086, 1515, 'Mr', 'Ken Eastman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-643-4361 KenCell', '340-778-1394 Fax ', NULL), (4087, 1516, 'Mr', 'Ken Eastman / Dorian Ebbessen ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-643-4361 KenCell', '340-778-1394 Fax / 3', NULL), (4088, 1517, 'Mr', 'Ghana Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '284-494-2223', '284-494-2225 Fax', NULL), (4089, 1518, 'Mr', 'Julio U.B. King ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-690-6407 Julio C', '304-775-2016 Fax ', NULL), (4090, 1519, 'Mr', 'Frederick M. Mohammed, Jr. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-642-0859 Cell ', '', NULL), (4091, 1520, 'Mr', 'Don Blumenthal/Paul Ferreras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-514-2250 Don Cel', '340-777-5779 Fax/340', NULL), (4092, 1521, 'Mr', 'Ken Floyd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-332-5700 Ken', '', NULL), (4093, 1522, 'Mr', 'Mike Kraus/Tony Coffelt/Sandi Opp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-513-2924 Cell To', '(340) 779-2207 Fax/4', NULL), (4094, 1523, 'Mr', 'Chris Ballie ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '284-542-0695 Cell Ch', '284-494-5175 Fax', NULL), (4095, 1524, 'Mr', 'Dwight Flax / Nester Soudatt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '284-541-2554 Dwight', '284-495-5674 Fax', NULL), (4096, 1525, 'Mr', 'Dorian / Donald Law', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-514-3500 Donald ', '866-267-1882 Fax', NULL), (4097, 1526, 'Mr', 'Mike Bacon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-631-1000', '412-631-2000 FAX', NULL), (4098, 1527, 'Mr', 'Justin Berkeley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(340) 778-8828', '', NULL), (4099, 1528, 'Mr', 'Doug (Kem Ketcham)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(340) 775-0100', '(340) 775-2926 Fax', NULL), (4100, 1529, 'Mr', 'Joshua/Tim Wassen/David Barger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '242-322-1703 Dolores', 'Rose Island Project ', NULL), (4101, 1530, 'Mr', 'Tom Wilson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 475-2511', '(724) 475-3057 Fax', NULL), (4102, 1531, 'Mr', 'Bob Andrews', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-224-2642', '989-224-3455 Fax', NULL), (4103, 1532, 'Mr', 'Melissa Desmith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-878-7304', '419-878-7305 Fax / 4', NULL), (4104, 1533, 'Mr', 'Patrick Cook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(269) 342-0501x 27', '(269) 384-0194 Fax', NULL), (4105, 1534, 'Mr', 'Steven Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Steven 614-987-0216 ', '614-848-6712 Fax', NULL), (4106, 1535, 'Mr', 'Steven Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Steven 614-987-0216 ', '614-431-4024 Fax', NULL), (4107, 1536, 'Mr', 'Steven Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Steven 614-987-0216 ', '614-848-6712 Fax', NULL), (4108, 1537, 'Mr', 'Dave Hammontree ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 288-2661 Ext. 2', '989- 288-6918 Fax', NULL), (4109, 1538, 'Mr', 'Neil Lighner (C) 989-545-0726', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-645-2777', '517-645-2356 Fax ', NULL), (4110, 1539, 'Mr', 'Joel Walter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 394-5700', '(517) 394-5796 Fax', NULL), (4111, 1540, 'Mr', 'Jeremy Hugo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-406-1756', '616-406-1749 Fax', NULL), (4112, 1541, 'Mr', 'Todd Neumann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-887-9181', '517-887-2666 Fax', NULL), (4113, 1542, 'Mr', 'Max Fightmaster', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-972-8464 Max Ce', '330-972-4904 Fax', NULL), (4114, 1543, 'Mr', 'Ben Whitmire ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-358-6946 x 120 B', '419-358-6258 Fax ', NULL), (4115, 1544, 'Mr', 'Troy Schreur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-891-0800/616-262', '989- 752-6600 Fax', NULL), (4116, 1545, 'Mr', 'Robert Tober', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-684-6050', '989-684-0210 Fax', NULL), (4117, 1546, 'Mr', 'Judy Forst 586-321-9292 Cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-795-2877', '586-795-5183 Fax', NULL), (4118, 1547, 'Mr', 'Destain Gingell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '810-984-5596 ext 126', '810-984-8760 Fax', NULL), (4119, 1548, 'Mr', 'Ted Oviatt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Ted (C) 616-633-6207', '616-677-3014 Fax', NULL), (4120, 1549, 'Mr', 'Rick Saum ext: 237/Tom Freas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '219-874-4217 Tom Fri', '219-979-6728 Fax', NULL), (4121, 1550, 'Mr', 'Michael Miner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-399-2113 Michael', '313-875-2732 Fax', NULL), (4122, 1551, 'Mr', 'Sam Wagner / Pat Fital ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-821-0265/734-4', '734-439-8311 Fax', NULL), (4123, 1552, 'Mr', 'Make Barber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(269) 925-0212', '(269) 925-5222 Fax', NULL), (4124, 1553, 'Mr', 'Jim Billingham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 843-3353', '(231) 843-7676 Fax', NULL), (4125, 1554, 'Mr', 'Rich VanNett / Penny Swan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-777-3447 x32 Ric', '231-773-3453 FAX', NULL), (4126, 1555, 'Mr', 'Brent Flourek ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 285-7510', '(734) 285-7572 Fax', NULL), (4127, 1556, 'Mr', 'Mike Myer (C)989-464-6257', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-358-7467 Mike ', '989-358-7562 Fax', NULL), (4128, 1557, 'Mr', 'Andy Wilt 989-464-0397 (C)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-358-3319 ', '989- 354-2223 Fax / ', NULL), (4129, 1558, 'Mr', 'Rich Brewster', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-892-3545', '989-892-3533 Fax / 9', NULL), (4130, 1559, 'Mr', 'Rich Brewster/Dave Hammontree', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-892-3545/517-719', '989-892-3533 Fax / 9', NULL), (4131, 1560, 'Mr', 'Rich Brewster', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-892-3545', '989-892-3533 Fax / 9', NULL), (4132, 1561, 'Mr', 'Susan Brown', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 454-9900', '734-454-0629 Fax', NULL), (4133, 1562, 'Mr', 'Susan Brown ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 454-9900', '(734) 454-0629 Fax', NULL), (4134, 1563, 'Mr', 'TJ Dorey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 752-6500', '989- 752-6600 Fax', NULL), (4135, 1564, 'Mr', 'Josh Gottschall/Jack Niemi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 752-6500', '989- 752-6600 Fax', NULL), (4136, 1565, 'Mr', 'Grant Kessler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-358-3320 Dave Go', '989- 354-2223 Fax ', NULL), (4137, 1566, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '228-813-2242', '', NULL), (4138, 1567, 'Mr', 'Fara Calhoun', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '713-451-0802', 'HPEG-22-05', NULL), (4139, 1568, 'Mr', 'Kevin Welsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-774-8306', '', NULL), (4140, 1569, 'Mr', 'Keith Justman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '843-607-8331/843-607', '', NULL), (4141, 1570, 'Mr', 'Philinda Walker ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '803-808-9059', '', NULL), (4142, 1571, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-553-0244', '804-553-0272', NULL), (4143, 1572, 'Mr', 'Tamara Detillo / Mel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 475-3867', '724-309-1353 Cell', NULL), (4144, 1573, 'Mr', 'Prof. Paul Cosentino / KB van Oene', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '321-674-7555', '321-674-7565 Paul\'s ', NULL), (4145, 1574, 'Mr', 'Jerry Hoke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-772-5736', '304-772-5736 *54 to ', NULL), (4146, 1575, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 593-2741 ext 2', '', NULL), (4147, 1576, 'Mr', 'Vince Sporner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 781-4013', '(814) 834-9201 Fax', NULL), (4148, 1577, 'Mr', 'Doug Brooks ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-925-3565 x1027', '724-925-2644 Fax', NULL), (4149, 1578, 'Mr', 'Ed Calhoun', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-3250 Ed Cell', '', NULL), (4150, 1579, 'Mr', 'Carla Palmieri', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4151, 1580, 'Mr', 'Ted Keener/Lugi, Bert, or Mike', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(269) 465-5901 x70', '(269)- 466-2819 Fax', NULL), (4152, 1581, 'Mr', 'Adam Leadbetter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4153, 1582, 'Mr', 'Jeff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-283-6082 Jeff C', '', NULL), (4154, 1583, 'Mr', 'Troy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 937-4053', '', NULL), (4155, 1584, 'Mr', 'Larry Green / Vince Kraynak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 444-0459', '', NULL), (4156, 1585, 'Mr', 'Stan Kochuba', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 931-1946 Field', '', NULL), (4157, 1586, 'Mr', 'Jerry Halloran/Bob Bard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-737-9471 Bob Bar', '', NULL), (4158, 1587, 'Mr', 'Russell Tribuzio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-387-0166', '', NULL), (4159, 1588, 'Mr', 'Roger Shepler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 692-3680', '(716) 693-3402 Fax', NULL), (4160, 1589, 'Mr', 'Dave Dambrun', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 646-7800', '', NULL), (4161, 1590, 'Mr', 'Jamie Kuchnicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(989) 894-4581', '(989) 894-0520 Fax', NULL), (4162, 1591, 'Mr', 'Medhi Ghazi/Ryan Jackson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-849-1890', '313-849-1893 Fax', NULL), (4163, 1592, 'Mr', 'Jason Piper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-835-7187', '', NULL), (4164, 1593, 'Mr', 'Ed Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '585-475-0450', '585-475-0469 FAX', NULL), (4165, 1594, 'Mr', 'Charles Lamange ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 534-9645 x641', '(616) 534-3385 ', NULL), (4166, 1595, 'Mr', 'Mike Green', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 695-9977 ext 1', '(740) 695-7298 Fax', NULL), (4167, 1596, 'Mr', 'Jim Wilhelm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-8489 Jim Cel', '724-853-3542 Home Of', NULL), (4168, 1597, 'Mr', 'Jane Wood / Bill Ellsworth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 723-5117', '(607)722-2515 Fax', NULL), (4169, 1598, 'Mr', 'Brian Kozlwicz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 348-2680', '(248) 348-2777 Fax', NULL), (4170, 1599, 'Mr', 'Eric Climus/Sean Schoedel ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-732-2420', '724-265-3323 Fax', NULL), (4171, 1600, 'Mr', 'Don Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-329-2594', '304-329-2447 FAX', NULL), (4172, 1601, 'Mr', 'Tom Hamilton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 266-0147', '(607) 266-6409 Fax', NULL), (4173, 1602, 'Mr', 'Dennis Brill - foreman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'No Phone Yet', '(715) 832-0282 Joel ', NULL), (4174, 1603, 'Mr', 'Winston Morris / Vernon Raber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-564-5508 Lab', '', NULL), (4175, 1604, 'Mr', 'Rick Coon 231-775-4101 x 241', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 775-3487 or 87', '(231) 775-0301 Fax', NULL), (4176, 1605, 'Mr', 'John Reincke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 322-5695', '(517) 322-1219 Vic P', NULL), (4177, 1606, 'Mr', 'Ron Goshorn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4178, 1607, 'Mr', 'Don Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 347-2227', '(412) 347-2240 Fax', NULL), (4179, 1608, 'Mr', 'Ryan Rasmussen / Rich Sweeney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4180, 1609, 'Mr', 'Bob Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 349-5858', '', NULL), (4181, 1610, 'Mr', 'Darren Dusenbery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 754-4717', '(517) 754-4440 Fax', NULL), (4182, 1611, 'Mr', 'Meghana Phadnif', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-237-1362', '231-547-6202 Fax', NULL), (4183, 1612, 'Mr', 'Vince Wojtyna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '765-454-0454', '765-459-4105 Fax', NULL), (4184, 1613, 'Mr', 'Wayne Rosenberger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 656-9108', '', NULL), (4185, 1614, 'Mr', 'Donald Dixon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(315) 463-0088', '(315) 463-0754 Fax', NULL), (4186, 1615, 'Mr', 'Bill Pinkerton/ Sr. Project Super.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 595-6504 ext. ', '734-595-6556 Fax', NULL), (4187, 1616, 'Mr', 'Steve Reed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-321-1953 Steve R', ' ', NULL), (4188, 1617, 'Mr', 'Chuck Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-775-3761 ', '231-775-0072 Fax ', NULL), (4189, 1618, 'Mr', 'Tom Lapikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 981-5200 x264 ', '(724) 981-5267 Fax', NULL), (4190, 1619, 'Mr', 'Tim Quick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-360-3384', '570-857-0149 Fax', NULL), (4191, 1620, 'Mr', 'Steve Spear', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-788-8308', '412-788-8370 Fax', NULL), (4192, 1621, 'Mr', 'Dan Powers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-231-8600', '412-231-6950 Fax', NULL), (4193, 1622, 'Mr', 'Ron Donajkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-946-9310 Ron Off', '231-946-8926 Fax', NULL), (4194, 1623, 'Mr', 'Matt Ray ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-743-8557', '724-745-2268 Fax', NULL), (4195, 1624, 'Mr', 'Mike Capuzzi ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-2343 Mike ', '412-828-5260 Job Fax', NULL), (4196, 1625, 'Mr', 'Gary/Jon Camburn ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '574-289-8378/574-276', '574-289-0282 Fax ', NULL), (4197, 1626, 'Mr', 'Chris Michael/Amanda Swatsworth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-765-2474 ext. 13', '814-765-1530 Fax/814', NULL), (4198, 1627, 'Mr', 'Kim Headley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-253-3161 ext: 22', '724-253-3853 Fax', NULL), (4199, 1628, 'Mr', 'Ray Houghton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 565-3032', '(607) 565-2339 Fax', NULL), (4200, 1629, 'Mr', 'Jerry Wolff / Adrien Adelman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-464-0262', '814-464-0268 Fax', NULL), (4201, 1630, 'Mr', 'Joe Reed/Brent', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 289-3530/585-5', '(585) 289-9263 Fax/5', NULL), (4202, 1631, 'Mr', 'Gary Kibbe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 735-6500 x 539', '(616) 735-6700 FAX', NULL), (4203, 1632, 'Mr', 'Kirby Campbell/Diane Deben', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-746-8500 x2037 K', '937-746-8500 x2006 D', NULL), (4204, 1633, 'Mr', 'Yawn Pantolin ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-763-9660 Will Ha', '734-764-4292 Fax/734', NULL), (4205, 1634, 'Mr', 'Fred Klaber / Ali (Canada)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-829-3448/513-276', '513-829-4233 Fax /51', NULL), (4206, 1635, 'Mr', 'Jeremy Ball', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-937-7780/616-690', '231-937-2281Fax', NULL), (4207, 1636, 'Mr', 'Keith Heathcock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 474-3211', '(248) 474-8110 Fax', NULL), (4208, 1637, 'Mr', 'John Guida', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4209, 1638, 'Mr', 'Lawson Adams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '869-456-2521 ext. 12', '869-465-5501', NULL), (4210, 1639, 'Mr', 'None listed (Kem Ketcham)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(340) 774-6707', '(340) 776-8321 Fax', NULL), (4211, 1640, 'Mr', 'John Locke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4212, 1641, 'Mr', 'Christy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '340-777-9644 ', '', NULL), (4213, 1642, 'Mr', 'Isabel Lorenzana / Salvador Montilla', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-622-8000 x 434 &', '787-773-0098 Fax / 7', NULL), (4214, 1643, 'Mr', 'Manual Leizan/Roberto Ramos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-549-0628/787-755', '787-748-5920 Fax', NULL), (4215, 1644, 'Mr', 'Luis H. Carreres', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-854-6458', '787-854-4911 Fax', NULL), (4216, 1645, 'Mr', 'Gloria Cruz/Aida Sosa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-253-1400', '787-253-8400 Fax', NULL), (4217, 1646, 'Mr', 'Javier Rodriguez/Violeta Laboy ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 721-5878 Ext. ', '787-883-2388 FAX/787', NULL), (4218, 1647, 'Mr', 'Maxemwilly Granell Perez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-831-4107', '787-831-0458 Fax', NULL), (4219, 1648, 'Mr', 'Fernando Buxo-Saez ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-226-1010', '787-675-0377 Fax ', NULL), (4220, 1649, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4221, 1650, 'Mr', 'Antonio Caraballo (Tony)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-785-5190', '787-798-2460 Fax', NULL), (4222, 1651, 'Mr', 'Belkis Rodriguez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-708-0690/787-420', '787-720-2350 FAX/787', NULL), (4223, 1652, 'Mr', 'Maria Cordero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-760-1094x231Mari', '(787)760-1021 Fax / ', NULL), (4224, 1653, 'Mr', 'Maria Cordero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-760-1094x231Mari', '(787)760-1021Fax/(78', NULL), (4225, 1654, 'Mr', 'Reynaldo Rodriguez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-708-2999', '787-708-3020 FAX', NULL), (4226, 1655, 'Mr', ' Alex Donato', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-783-3585 Alex Do', '787-793-0410 FAX', NULL), (4227, 1656, 'Mr', 'Jose A. Rodriquez Just ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-312-4274 Cell / ', ' 787-886-4010 Fax', NULL), (4228, 1657, 'Mr', 'Manuel Irizarry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-753-0147', '787-753-8387 Fax', NULL), (4229, 1658, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-720-0022', '787-790-7681', NULL), (4230, 1659, 'Mr', 'Belkis Rodriguez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4231, 1660, 'Mr', 'Juan Somoza/Juan J. Alemany (Tito)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-849-3322/787-848', '787-849-6223 Fax / A', NULL), (4232, 1661, 'Mr', 'Maria Cordero/Milagras Gonzalez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-760-1094x231Mari', '(787)760-1021 Fax / ', NULL), (4233, 1662, 'Mr', 'Lawrence Correa ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' ', '787-846-5425 Fax / 7', NULL), (4234, 1663, 'Mr', 'Antonio Caraballo (Tony)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-785-5190 / 787-8', '787-787-8212 Fax / 7', NULL), (4235, 1664, 'Mr', 'Max Laracuente Bernat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 832-7612', '787-832-6360 Fax', NULL), (4236, 1665, 'Mr', 'Jose Mendez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-851-6010', '787-851-4660 Fax', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (4237, 1666, 'Mr', 'Miguel Rivera', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(788) 5400 x201', '(787) 788-5427 - Fax', NULL), (4238, 1667, 'Mr', 'Jose Despiau', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 281-0686', '787-764-4709 FAX', NULL), (4239, 1668, 'Mr', 'Rolando Davila', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-792-2626', '787-782-5990 Fax', NULL), (4240, 1669, 'Mr', 'Luis A. Vargas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-818-0720', '787-818-0725 FAX', NULL), (4241, 1670, 'Mr', 'Isabel Lorenzana / Salvador Montilla', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-622-8000 x 434 &', '787-773-0089 Fax / 7', NULL), (4242, 1671, 'Mr', 'Alexis Andino', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-809-2444 / 783-3', '787-809-2442 FAX/787', NULL), (4243, 1672, 'Mr', 'Antonio Caraballo (Tony)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-841-1377', '787-841-1391 Fax', NULL), (4244, 1673, 'Mr', 'Adrianna Moertlbauer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-652-6668 x 124', '724-652-6664 Fax', NULL), (4245, 1674, 'Mr', 'Javier Molinari / David Morales ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-251-9474', '787-779-7508 Fax', NULL), (4246, 1675, 'Mr', 'Jose Rivera', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-259-1410', '787-259-1604 Fax', NULL), (4247, 1676, 'Mr', 'Victor Emilio Rivera', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-986-1400 ', '787-986-1411 Fax / 7', NULL), (4248, 1677, 'Mr', 'Maria Cordero/ Milagras Gonzalez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-760-1094x231Mari', '787-760-1021 Fax', NULL), (4249, 1678, 'Mr', 'Rafael Rivera', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-795-2047', '787-261-5557 Fax', NULL), (4250, 1679, 'Mr', 'Eladio Infante', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 758-7830', '(787) 764-8553 Fax', NULL), (4251, 1680, 'Mr', 'Joel Torres Cruz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 841-3181', '(787) 841-3164', NULL), (4252, 1681, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4253, 1682, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-758-7830', '787-758-7830 Fax', NULL), (4254, 1683, 'Mr', 'Antonio Feliciano', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '780-0670', '', NULL), (4255, 1684, 'Mr', 'Prof. Jose E. Delgado', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 844-8181 x252', '', NULL), (4256, 1685, 'Mr', 'Jose Diaz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-855-3607', '787-855-3638', NULL), (4257, 1686, 'Mr', 'Annette Olivieri', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 725-8824', '', NULL), (4258, 1687, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4259, 1688, 'Mr', 'Rene Lopez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4260, 1689, 'Mr', 'Jose Rodriguez / Gilberto Marsuach', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4261, 1690, 'Mr', 'Sr. Sayas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 755-5015', '', NULL), (4262, 1691, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 846-8163', '', NULL), (4263, 1692, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4264, 1693, 'Mr', 'Sr. Camavaggio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '783-1498', '', NULL), (4265, 1694, 'Mr', 'Sr. Mainolet', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '253-1620', '', NULL), (4266, 1695, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 758-7830', '', NULL), (4267, 1696, 'Mr', 'Hector Astacio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 783-9003', '(787) 793-4139 Fax', NULL), (4268, 1697, 'Mr', 'Efraio Abreu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 585-3089', '787-855-2794 FAX', NULL), (4269, 1698, 'Mr', 'William Velez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '642-6432', '', NULL), (4270, 1699, 'Mr', 'Olga Roman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-318-5361/ 787-73', '787-738-2868 Tel/Fax', NULL), (4271, 1700, 'Mr', 'Jose A. Rodriquez Just ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-312-4274 Cell/78', ' 787-886-4010 Fax', NULL), (4272, 1701, 'Mr', 'Lisa Campbell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-829-5695', '(540) 829-6325 Fax', NULL), (4273, 1702, 'Mr', 'Wasi Khan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '202-673-2155 Rezene ', '202-671-0646 Fax Was', NULL), (4274, 1703, 'Mr', 'Gerardo Tellez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-297-8108', '410-297-8151 Fax / 4', NULL), (4275, 1704, 'Mr', 'Dung Tran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-471-8400', '703-834-5527 Fax', NULL), (4276, 1705, 'Mr', 'Dung Tran ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 471-8400', '(703) 834-5527 Fax', NULL), (4277, 1706, 'Mr', 'Niles Mason', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-847-3148 Niles', '410-847-3266 Fax / 4', NULL), (4278, 1707, 'Mr', 'Hunter Anderson ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 437-3013', '814-437-2497 Fax', NULL), (4279, 1708, 'Mr', 'Ralph Gosorn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-692-8333 Ralph ', '216-531-9399 Fax', NULL), (4280, 1709, 'Mr', 'Chris Ramirez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 474-4777', '(814) 474-2848 Fax', NULL), (4281, 1710, 'Mr', 'Brian Chestnut', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 532-5959 x1207', '(717) 532-7997 Fax', NULL), (4282, 1711, 'Mr', 'Tom Zook / Paul Lavelle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-483-0100', '717-483-9962 FAX', NULL), (4283, 1712, 'Mr', 'Rob Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-349-2412/717-349', '814-766-0201 Fax ', NULL), (4284, 1713, 'Mr', 'Tom Irwin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-767-6868', '717-767-1522 Fax Tom', NULL), (4285, 1714, 'Mr', 'Leo Fisher / Joe Ware', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-416-7031 Cell Le', '215-426-7283 Fax', NULL), (4286, 1715, 'Mr', 'Chris Gifford', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 792-4700 (Lab-', '(717) 792-1599 Fax', NULL), (4287, 1716, 'Mr', 'Cory Rosenberger ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-258-8737', '610-258-4884 Fax ', NULL), (4288, 1717, 'Mr', 'Dan Fura ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-865-9678 Dan ', '814-865-9668 Fax', NULL), (4289, 1718, 'Mr', 'Bill Morton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-733-4823 x 113', '717-733-0959 Fax', NULL), (4290, 1719, 'Mr', 'Roger Cleis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-828-1500 x6101', '412-828-6639 Fax', NULL), (4291, 1720, 'Mr', 'Mike Cherry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-781-3744', '814-781-3230 Fax', NULL), (4292, 1721, 'Mr', 'John Barbati', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-622-6943', '412-622-6944 Fax Joh', NULL), (4293, 1722, 'Mr', 'Pam Gavazzi / Bob Pecht', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 781-7333 EXT:', '(814) 834-9201 FAX', NULL), (4294, 1723, 'Mr', 'Paul Stumpf', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-952-9832x103', '724-925-8947 Fax', NULL), (4295, 1724, 'Mr', 'LouAnne Reesman / Pam Gavazzi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 781-4013', '(814) 834-9201 Fax', NULL), (4296, 1725, 'Mr', 'Viorel Arhire / Ramona Murphy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-966-0444 x 2012 ', '(330) 966-8505 Fax/3', NULL), (4297, 1726, 'Mr', 'Mike Hennessey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '218-279-8080', 'RMA 8010', NULL), (4298, 1727, 'Mr', 'Mike Ionata', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-264-1430', '', NULL), (4299, 1728, 'Mr', 'Martin Shane - VLS', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '662-329-5560 APAC', '', NULL), (4300, 1729, 'Mr', 'Don Turner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '205-620-3360', '205-620-9262 Fax', NULL), (4301, 1730, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(410) 785-5790', '(410) 785 1103', NULL), (4302, 1731, 'Mr', 'Mike Podusiwsky', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-696-7158', '(216) 696-7164 Fax', NULL), (4303, 1732, 'Mr', 'Karen Novak/Jamie Botti', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-824-0678/412-670', '412-829-0387 Fax', NULL), (4304, 1733, 'Mr', 'Rhonda Snyder/Steve Reed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-474-4904/724-321', '724-283-1067 Fax', NULL), (4305, 1734, 'Mr', 'Peter Balwant', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-233-3990', '304-233-9331', NULL), (4306, 1735, 'Mr', 'Dave Parks/ Jerry Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 926-7200', '(304) 926-0666 Fax', NULL), (4307, 1736, 'Mr', 'Kevin Baird, Plant Manager', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724- 774-5100', '724-774-9140 Fax', NULL), (4308, 1737, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-896-8852 Cell P', '540-896-8288', NULL), (4309, 1738, 'Mr', 'John Duffy / Frank Hart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 327-4020 / 412', '', NULL), (4310, 1739, 'Mr', 'John Ross @ Bud Scales', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-438-4811 Bud Sca', '724-439-2945 FAX Bud', NULL), (4311, 1740, 'Mr', 'Mel Willis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(301) 468-9400', '(301) 468-9669', NULL), (4312, 1741, 'Mr', 'Junior', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-829-5695', '', NULL), (4313, 1742, 'Mr', 'Steve Brown', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 843-7315', '(724) 843-7079 Fax', NULL), (4314, 1743, 'Mr', 'Russell Marsh / Jeff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 361-4193', '(703) 361-8638 Fax', NULL), (4315, 1744, 'Mr', 'Greg Vidakovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-269-2549 Greg', '', NULL), (4316, 1745, 'Mr', 'Greg Vidakovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-269-2549 Greg', '', NULL), (4317, 1746, 'Mr', 'Ron Turpin ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4318, 1747, 'Mr', 'Delbert Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(800) 544-8607', '(606) 845-7607 Fax', NULL), (4319, 1748, 'Mr', 'Terry Solomon 701-1179', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-348-3838', '216-348-3896 Fax', NULL), (4320, 1749, 'Mr', 'Kevin Stahl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-785-7952', '724-640-5980 Kevin c', NULL), (4321, 1750, 'Mr', 'Doug Finch', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(540) 785-6100', '(540) 785-3577 Fax', NULL), (4322, 1751, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4323, 1752, 'Mr', 'Kazem Farhangi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 818-8519', '(703) 361-3798 Fax', NULL), (4324, 1753, 'Mr', 'Karim Abdoras / Bob Saber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 763-7212 Ext: ', '(717) 763-1808 Fax', NULL), (4325, 1754, 'Mr', 'Ms. Bernie Vetter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-631-2374', '410-631-5454 fax', NULL), (4326, 1755, 'Mr', 'Pete Kinzer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4327, 1756, 'Mr', 'Don Shaffer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-454-9308', '', NULL), (4328, 1757, 'Mr', 'Mike Stiely', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-845-7096', '717-845-5421 Fax', NULL), (4329, 1758, 'Mr', 'Bill Hamilton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4330, 1759, 'Mr', 'John Basile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-452-8621', '724-452-0514 FAX', NULL), (4331, 1760, 'Mr', 'Romana', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4332, 1761, 'Mr', 'Lisa or Keith Thornburg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 891-2000', '', NULL), (4333, 1762, 'Mr', ' Dan Blake / QC Tech.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 592-3011', '(304) 592-3024 Fax', NULL), (4334, 1763, 'Mr', 'Jamie Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 325-2411', '(606) 324-5411 Fax', NULL), (4335, 1764, 'Mr', 'Peyton Cramer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 788-3213', '(304) 788-3232 Fax', NULL), (4336, 1765, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 797-1261', '', NULL), (4337, 1766, 'Mr', 'Jay Mazzoni', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 830-7840', '', NULL), (4338, 1767, 'Mr', 'Jay Mazzoni', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 495-5800', '(502) 495-5801 Fax', NULL), (4339, 1768, 'Mr', 'Jay Mazzoni', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 495-5800', '(502) 495-5801 Fax', NULL), (4340, 1769, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 968-4780', '(703) 968-4778 Fax', NULL), (4341, 1770, 'Mr', 'Joe / Frank Williams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '484-257-0010', '', NULL), (4342, 1771, 'Mr', 'Mike Birtic', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 341-8096', '', NULL), (4343, 1772, 'Mr', 'Andrew Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '314-739-2727', '', NULL), (4344, 1773, 'Mr', 'Bill Dominick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 863-0316', '', NULL), (4345, 1774, 'Mr', 'Christy James', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 743-3400', '(304) 743-3405 Fax', NULL), (4346, 1775, 'Mr', 'Chuck Lee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 381-1550', '(616) 381-1711 Fax', NULL), (4347, 1776, 'Mr', 'Tim List', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 347-2227', '', NULL), (4348, 1777, 'Mr', 'Gerald Zimmerman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-865-4780', '814-863-5844 fax', NULL), (4349, 1778, 'Mr', 'Tim Park', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 257-4664', '', NULL), (4350, 1779, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4351, 1780, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-834-7686', '', NULL), (4352, 1781, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-779-7107', '', NULL), (4353, 1782, 'Mr', 'Jim Graham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-536-2232', '', NULL), (4354, 1783, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-253-5615', '', NULL), (4355, 1784, 'Mr', 'Dale Steiger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 794-4451', '(724) 794-6820 Fax', NULL), (4356, 1785, 'Mr', 'Dick Garrett / Jeff Sterner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(800) 889-9905 / (', '', NULL), (4357, 1786, 'Mr', 'Kenny / Ellie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 573-6350', '(216) 581-1698 Fax', NULL), (4358, 1787, 'Mr', 'Vince Ujcich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(245) 372-1600', '', NULL), (4359, 1788, 'Mr', 'Don Buckbee / Tom Taylor-home', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-533-0755', '', NULL), (4360, 1789, 'Mr', 'Pat Kirby', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 886-5559', '814-886-2842 Fax', NULL), (4361, 1790, 'Mr', 'Ewan Tough', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(242) 323-4966', '(242) 323-7656 Fax', NULL), (4362, 1791, 'Mr', 'Wayne Rosenburger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 656-9108', '', NULL), (4363, 1792, 'Mr', 'Tom Brooks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 752-1017', '(304) 752-7324 Phone', NULL), (4364, 1793, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4365, 1794, 'Mr', 'Bob Cox/Lloyd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-847-2317/724-847', '', NULL), (4366, 1795, 'Mr', 'Leroy Mazer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-349-2708', '', NULL), (4367, 1796, 'Mr', 'Mike Burton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(804) 947-6511 / 657', '', NULL), (4368, 1797, 'Mr', 'Rick Lalli / Chris Gray', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-392-3200', '', NULL), (4369, 1798, 'Mr', 'Ed Schultz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(410) 531-4000', '(410) 531-4367Fax', NULL), (4370, 1799, 'Mr', 'Lee Metheney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 293-3111 x364', '', NULL), (4371, 1800, 'Mr', 'Richard Baumbach', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 944-1488', '(717) 944-9912 Fax', NULL), (4372, 1801, 'Mr', 'Jim Hersick / Dave Fletcher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 725-4025', '(304) 725-8525 Fax', NULL), (4373, 1802, 'Mr', 'Ron Heckel/Scott Hanks ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-683-9202/410-461', '410-683-9297 FAX/443', NULL), (4374, 1803, 'Mr', 'Gary Langerman/Bill Wynne', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-469-1106 Bill', '216-781-2820 Gary ', NULL), (4375, 1804, 'Mr', 'Kelly Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '336-526-6484', '253-928-2492 Fax ', NULL), (4376, 1805, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4377, 1806, 'Mr', 'Bobby Price/Scott Hanks ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-678-2023/443-564', '717-739-2849 Fax', NULL), (4378, 1807, 'Mr', 'Bobby Price/Scott Hanks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 294-6819/443-5', '(717) 294-6722 Fax', NULL), (4379, 1808, 'Mr', 'Bobby Price/Scott Hanks ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-258-0425/443-564', '304-258-0426 Fax', NULL), (4380, 1809, 'Mr', 'Julio Pascella', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-322-5190', '301-322-5197 Fax', NULL), (4381, 1810, 'Mr', 'Rosanna Puffenbarger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-478-0055/703-216', '703-478-0137 Fax', NULL), (4382, 1811, 'Mr', 'Abe Turhan/Minn Wing ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-366-3890 x 47106', '610-366-3895 Fax / x', NULL), (4383, 1812, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4384, 1813, 'Mr', 'Rick Blaze / Jamie Bolton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-352-2200', '724-352-2290 Fax', NULL), (4385, 1814, 'Mr', 'Bobby Broyles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-725-1494', '703-383-2936 Fax', NULL), (4386, 1815, 'Mr', 'Aaron Evans', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-231-1283', '412-231-0889 Fax/812', NULL), (4387, 1816, 'Mr', 'Bruce White-Con/Mark Hull-Asph', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 263-6108/304-2', '(304) 263-0142 Fax ', NULL), (4388, 1817, 'Mr', 'Lisa Campbell / Brian Lisckay', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-753-7832', '703-753-9648 Fax', NULL), (4389, 1818, 'Mr', 'Dean Dilbert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-255-2775 ', '304-413-0617 Dean x ', NULL), (4390, 1819, 'Mr', 'Bob Yogus / Dana Charney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ext.', '(814) 472-4221 Fax', NULL), (4391, 1820, 'Mr', 'Dave Roebuck', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-916-0300', '724-916-0315 FAX', NULL), (4392, 1821, 'Mr', 'Paul Dykta ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-966-9450 ', '724-966-9169 Fax/724', NULL), (4393, 1822, 'Mr', 'Jack Deitz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-778-4305 Jack ce', '614-876-1899 Fax', NULL), (4394, 1823, 'Mr', 'Lina Ayari', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-396-6259', '703-396-6298 Fax', NULL), (4395, 1824, 'Mr', 'Michael Heacock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-568-2881/610-644', '610-644-8682 Fax', NULL), (4396, 1825, 'Mr', 'Colleen Caffas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-372-4000/412-589', '412-372-4664 Fax ', NULL), (4397, 1826, 'Mr', 'Les Schrieber/ Sam Kimani', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 Ext. 30', '410-358-7213 Fax', NULL), (4398, 1827, 'Mr', 'Lina Ayari', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-396-6259', '703-396-6298 Fax', NULL), (4399, 1828, 'Mr', 'Tim Kerby', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 295-1016', '(304) 295-9658 Fax', NULL), (4400, 1829, 'Mr', 'Bobby James', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-859-8601 Bobby /', '(304) 565-3113 Fax', NULL), (4401, 1830, 'Mr', 'Brian Corley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 592-5577 ', '(304) 592-5578 Fax', NULL), (4402, 1831, 'Mr', 'Danny Blake', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 296-2562', '(304) 296-8739 Fax', NULL), (4403, 1832, 'Mr', 'Randy Coyle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-528-5806(O)Randy', '304-528-5622 Fax', NULL), (4404, 1833, 'Mr', 'Jonathan Baily', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-356-3852 Johnat', '304-558-3443 Fax', NULL), (4405, 1834, 'Mr', 'John Boggess', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 768-9733 ', '(304) 768-9384 Fax', NULL), (4406, 1835, 'Mr', 'Timothy Rupert/Kathy Mehaffy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-269-0472- Timoth', '304-269-0477 Fax', NULL), (4407, 1836, 'Mr', 'Bruce Alt / Gerald Dennis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-476-8045 Bruce\'s', 'No Fax', NULL), (4408, 1837, 'Mr', 'Chisa Puckett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-293-5518', '859-299-2481 Fax', NULL), (4409, 1838, 'Mr', 'Chisa Puckett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-293-5518', '859-299-2481 Fax', NULL), (4410, 1839, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (4411, 1840, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '(513) 321-0294 Fax', NULL), (4412, 1841, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '(513) 321-0294 Fax', NULL), (4413, 1842, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (4414, 1843, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (4415, 1844, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (4416, 1845, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (4417, 1846, 'Mr', 'George Gilliam', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-219-5177 George\'', '606-451-8899 Fax', NULL), (4418, 1847, 'Mr', 'Richard Tower 502-802-6823', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 448-9500/502-4', '(502) 448-3134 Fax', NULL), (4419, 1848, 'Mr', 'Chad Kelley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-248-0090 ', '513-248-1872 Fax', NULL), (4420, 1849, 'Mr', 'Scott Wells', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-743-3485', '606-743-2025 Fax', NULL), (4421, 1850, 'Mr', 'Tom Seiter ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-393-4556 Tom (Ce', '859-282-4012 Fax ', NULL), (4422, 1851, 'Mr', 'Steve Robins / Kevin Kleen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-586-8890', '859-586-8891 Fax', NULL), (4423, 1852, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4424, 1853, 'Mr', 'Hal Leow', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4425, 1854, 'Mr', 'Lisa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4426, 1855, 'Mr', 'Josh Bell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '214-631-7006', '', NULL), (4427, 1856, 'Mr', 'Chief Mate ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4428, 1857, 'Mr', 'Curt Roupe ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-357-2335/419-704', '419-241-1808 Fax', NULL), (4429, 1858, 'Mr', 'John Horn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 868-5856', '', NULL), (4430, 1859, 'Mr', 'Dave McCoy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 366-6941', '(303) 781-2006 Pager', NULL), (4431, 1860, 'Mr', 'Butch Dwyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 299-6890', '(412) 299-7734 Fax', NULL), (4432, 1861, 'Mr', 'Jim Meyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-424-3282', '', NULL), (4433, 1862, 'Mr', 'Lonnie Johnston', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-352-2200', '724-352-2290 Fax', NULL), (4434, 1863, 'Mr', 'Jim Mathers / Ray Myers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2451 Jim M', '(814) 269-6831 Fax (', NULL), (4435, 1864, 'Mr', 'Bob Semelsberger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2783', '(814) 269-2549 (Greg', NULL), (4436, 1865, 'Mr', 'Jim Mathers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2451', '', NULL), (4437, 1866, 'Mr', 'Jim Mathers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2451', '', NULL), (4438, 1867, 'Mr', 'Jim Mathers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2451', '', NULL), (4439, 1868, 'Mr', 'Jim Mathers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2451', '', NULL), (4440, 1869, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2642', '', NULL), (4441, 1870, 'Mr', 'Greg Vidakovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2549 (Greg', '(814) 269-6480 Fax -', NULL), (4442, 1871, 'Mr', 'Greg Vidakovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2549 (Greg', '(814) 269-6480 Fax -', NULL), (4443, 1872, 'Mr', 'Greg Vidakovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2549 (Greg', '(814) 269-6480 Fax -', NULL), (4444, 1873, 'Mr', 'Ken Retzer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 828-1510', '', NULL), (4445, 1874, 'Mr', 'Jim Stoll', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 756-3210 Ext:', '(330) 756-3220 ', NULL), (4446, 1875, 'Mr', 'Lawerence', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-486-9185', '', NULL), (4447, 1876, 'Mr', 'Jack Patel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-471-8400', '', NULL), (4448, 1877, 'Mr', 'Arty Frank', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-842-1970', '304-842-1972 Fax', NULL), (4449, 1878, 'Mr', 'Bruce Wilberding', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(313) 522-4665', '(313) 522-2807 Fax', NULL), (4450, 1879, 'Mr', 'Krishy Gopalapillai', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '770-987-5190 x 227', '', NULL), (4451, 1880, 'Mr', 'Chip/Flip', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-323-5321 Dave Ce', '724-323-5321 Dave ce', NULL), (4452, 1881, 'Mr', 'Jim Kocsis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 876-1772', '', NULL), (4453, 1882, 'Mr', 'Tom Grumbine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 534-9645 x63', '(616) 534-0118 Fax', NULL), (4454, 1883, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4455, 1884, 'Mr', 'Jack Dietz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4456, 1885, 'Mr', 'Jerry Carter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 472-8890 (Buck', '', NULL), (4457, 1886, 'Mr', 'B.F. (Jud) Arnold, Jr., QA / Eng.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4458, 1887, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-743-5470 Rick\'s ', '513-383-3518 John Ce', NULL), (4459, 1888, 'Mr', 'Don Preece', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 491-7643', '(614) 491-1877 Fax', NULL), (4460, 1889, 'Mr', 'Rick Marker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-366-6852 Dick Ha', '', NULL), (4461, 1890, 'Mr', 'Charles Walker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 426-7795', '', NULL), (4462, 1891, 'Mr', 'Mark Martin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 495-4285', '', NULL), (4463, 1892, 'Mr', 'Brett Bolden', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 295-0093', '(412) 295-0083 Fax', NULL), (4464, 1893, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4465, 1894, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4466, 1895, 'Mr', 'Ernest Dumas/John Kosnak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(313) 304-3150 Ernes', '(313) 965-0036 John ', NULL), (4467, 1896, 'Mr', 'Steve Mileski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 666-5432', '(330) 666-1130 Fax', NULL), (4468, 1897, 'Mr', 'Joe Butarac', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 478-0081', '(330) 478-3267 Fax', NULL), (4469, 1898, 'Mr', 'Jeff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-793-7374', '330-533-5775 Fax', NULL), (4470, 1899, 'Mr', 'Connie Berkley / Brent Safreed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 863-0363', '', NULL), (4471, 1900, 'Mr', 'Mark Murphy / Tom Hughes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 231-8600 offic', '412-657-9083 cell', NULL), (4472, 1901, 'Mr', 'Bryan Stocker / Shane C.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-254-4626', '740-254-9108', NULL), (4473, 1902, 'Mr', 'Bill Durek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 299-1213', '(937) 299-0120 Fax', NULL), (4474, 1903, 'Mr', 'Dave Czerniak - Foreman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-640-7047', '(724) 696-4952 Fax', NULL), (4475, 1904, 'Mr', 'Greg Dawson/Mark Cvechko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-472-7140/304-677', '304-472-6239 Fax/304', NULL), (4476, 1905, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', '513-321-0294 Fax', NULL), (4477, 1906, 'Mr', 'Jonathan Hood', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-436-8931/606-438', '606-436-0802 Fax / 6', NULL), (4478, 1907, 'Mr', 'David Darwin/ Leon ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '201-386-8110 x 1126', '201-386-8155 Fax ', NULL), (4479, 1908, 'Mr', 'Chuck Meadows', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 673-4413', '(606) 673-4415 Fax', NULL), (4480, 1909, 'Mr', 'Amos Hubbard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-864-7384', '606-878-9225 Fax', NULL), (4481, 1910, 'Mr', 'Todd Galloway/Bobby Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-784-9519', '606-780-1230 Fax', NULL), (4482, 1911, 'Mr', 'Phil Hopkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 336-3109', '(330) 336-2882 Fax', NULL), (4483, 1912, 'Mr', 'Nancy Pierce/David Bussey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-723-3618 ', '330-723-7019 Fax', NULL), (4484, 1913, 'Mr', 'David Bussey/Gary Abel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-725-0205 Ext.227', '330-725-5716 FAX', NULL), (4485, 1914, 'Mr', 'Jack Boschuk / Mahiru Shettima', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 746-4441', '(724) 745-4261 Fax', NULL), (4486, 1915, 'Mr', 'Trevor Buck ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '919-369-1469 Trevor ', '', NULL), (4487, 1916, 'Mr', 'Jerry Kenkel / Jamie Thompson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '812-539-4300', '812-539-4301 Fax', NULL), (4488, 1917, 'Mr', 'Dave Donati', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-670-7939', '(412) 344-8913 Fax', NULL), (4489, 1918, 'Mr', 'John Jento /Rod Christy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-598-0456/724-255', '859-748-4601 Fax/812', NULL), (4490, 1919, 'Mr', 'Roger Simar / Danny Blake', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 296-2562', '(304) 296-8739 Fax', NULL), (4491, 1920, 'Mr', 'Brian Porterfield', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-9266 Brian', '', NULL), (4492, 1921, 'Mr', 'Kevin Sams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 878-8666', '(937) 878-9293 Fax', NULL), (4493, 1922, 'Mr', 'Steve Wells / Bobby Collins ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 398-7300', '(513) 398-1997 Fax', NULL), (4494, 1923, 'Mr', 'Dan Greenlee/Pam Barnes/Beth Stahl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-640-7108', '724-696-4952 Fax', NULL), (4495, 1924, 'Mr', 'Les Schrieber/ Sam Kimanu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 Ext. 30', '410-358-7213 Fax', NULL), (4496, 1925, 'Mr', 'Blair Kitlinski/Ann Kitlinski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-652-8620', '717-651-0725 Fax ', NULL), (4497, 1926, 'Mr', 'Miguel Rivera', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 788-5400 x224', '787-788-5427 FAX', NULL), (4498, 1927, 'Mr', 'Rey Fuentes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 641-3840', '', NULL), (4499, 1928, 'Mr', 'Jose Maldohiado', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4500, 1929, 'Mr', 'Naisha / Jeniffer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-648-4445', '787-744-6657', NULL), (4501, 1930, 'Mr', 'Prof. Rafael A. Lizardi Comacho', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 786-2885 Ext.', '(787) 288-4740 Fax', NULL), (4502, 1931, 'Mr', 'Marcos O. Arocho Ramirez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-891-0992', '787-891-0992 FAX', NULL), (4503, 1932, 'Mr', 'Ing. Carlos R. Sierra/Cynthia Blanso', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-272-2201', '787-790-8066 Fax', NULL), (4504, 1933, 'Mr', 'JoseLuisEncarnacion/CarlosRodriguez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-781-6340 / 787-3', '787-706-0183 Fax', NULL), (4505, 1934, 'Mr', 'German Norasco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-282-7886', '787-282-7553 FAX', NULL), (4506, 1935, 'Mr', 'Marcos O. Arocho Ramirez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(809) 761-2570', '(787) 748-6970 Fax', NULL), (4507, 1936, 'Mr', 'Ing Chinea', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-752-6470', '', NULL), (4508, 1937, 'Mr', 'Lawrence A. Correa ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-753-0146, 0147', '787-753-8387 Fax', NULL), (4509, 1938, 'Mr', 'Luis Perez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-887-4940', '787-888-8391 Fax', NULL), (4510, 1939, 'Mr', 'Alberto Amadeo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-793-2500', '787-781-7372', NULL), (4511, 1940, 'Mr', 'Andres Marrero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-771-7138', '787-771-7138 Fax', NULL), (4512, 1941, 'Mr', 'Joel Tubbs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(205) 879-7899', '', NULL), (4513, 1942, 'Mr', 'Gun Utkam', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(242) 363-4760', '(242) 363-4761 Fax', NULL), (4514, 1943, 'Mr', 'Tony Angelino', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 447-8618', '', NULL), (4515, 1944, 'Mr', 'Michael Beattie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(919) 549-1813', '(919) 547-6025 Fax', NULL), (4516, 1945, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-558-3043', '304-342-4711 Fax', NULL), (4517, 1946, 'Mr', 'Bonnie McNeal/Jeff Malone ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-441-9851', '443-674-8782 Fax', NULL), (4518, 1947, 'Mr', 'Josh Shaw/Cheryl Cole', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-489-1460', '513-489-1470 Fax', NULL), (4519, 1948, 'Mr', 'Steve Adkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-752-3600(O)304-8', ' ', NULL), (4520, 1949, 'Mr', 'Sam Mazzella/David Hobi/Ron Harris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-476-2000 x 1309 ', '412-476-2020 Fax', NULL), (4521, 1950, 'Mr', 'Darrin Croucher / Crystal Wilhoite', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-4007 Darrin', '888-792-3121 Fax ', NULL), (4522, 1951, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-673-4563', '269-673-4573 Fax Lou', NULL), (4523, 1952, 'Mr', 'John Fehr', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-452-9116x236', '', NULL), (4524, 1953, 'Mr', 'Don Weber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4525, 1954, 'Mr', 'Vicky L. Winters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '256-876-9757', 'CC71026-1323IO4', NULL), (4526, 1955, 'Mr', 'Rick Chipka', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-509-2406', 'PO RCS-ATLANTA TBM', NULL), (4527, 1956, 'Mr', 'Kasey Jackson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-316-6023 Kasey', '724-443-8733 Fax', NULL), (4528, 1957, 'Mr', 'Kasey Jackson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-316-6023 Kasey', '724-443-8733 Fax', NULL), (4529, 1958, 'Mr', 'Doug Lehnerd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 443-1533', '724-443-8733 Fax', NULL), (4530, 1959, 'Mr', 'Don Lehnerd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 443-1533', '724-443-8733 Fax', NULL), (4531, 1960, 'Mr', 'Joseph Haugen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-276-8123', '614-276-6377', NULL), (4532, 1961, 'Mr', 'James Hanson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '907-696-0722', '907-694-0846 Fax', NULL), (4533, 1962, 'Mr', 'Dana', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 273-6305 Phone', '', NULL), (4534, 1963, 'Mr', 'Tim Hendricks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 917-1167', '(610) 917-8973 Fax', NULL), (4535, 1964, 'Mr', 'Toni Hedspeth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '888-442-7077', '252-799-0208 Fax', NULL), (4536, 1965, 'Mr', 'Ray Ong', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-759-3540', '', NULL), (4537, 1966, 'Mr', 'John Sedlock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-926-8464', '304-926-8460 Fax', NULL), (4538, 1967, 'Mr', 'Harry Cook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-591-2626', '', NULL), (4539, 1968, 'Mr', 'Bob Barker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-437-3726', '', NULL), (4540, 1969, 'Mr', 'Aaron Barnes/John Hartnett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '847-426-7495 ', '', NULL), (4541, 1970, 'Mr', 'Roger La Francis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(906) 875-6795', '(906) 875-6264 Fax', NULL), (4542, 1971, 'Mr', 'Steve Murphy / Charles Carroll', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-379-8188 or 7555', '304-379-3376 Fax', NULL), (4543, 1972, 'Mr', 'Frank Kiner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 843-9118', '(419) 841-7055 Fax', NULL), (4544, 1973, 'Mr', 'Mike Foutz / Brad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 454-1113 (CMT ', '', NULL), (4545, 1974, 'Mr', 'Doug Timmis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 546-1478', '', NULL), (4546, 1975, 'Mr', 'Craig Syring', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-468-4640', '724-468-3166 Fax', NULL), (4547, 1976, 'Mr', 'Jeff -asst. mgr/ Lowell-mgr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 796-8685', '(231) 796-3199', NULL), (4548, 1977, 'Mr', 'Bob Laria / Harold Ott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 327-4275 Bob L', '(717) 327-4274 Fax', NULL), (4549, 1978, 'Mr', 'Nora Kauffman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-755-2933 ext. 23', '717-757-3808 Fax', NULL), (4550, 1979, 'Mr', 'Tom Arnold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 373-3211 ext 2', '(740) 373-5409 Fax', NULL), (4551, 1980, 'Mr', 'Dean Dilbert/Heath', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-255-2775 Heath', '', NULL), (4552, 1981, 'Mr', 'Tom Olson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-664-5108', '716-484-0100 Fax ', NULL), (4553, 1982, 'Mr', 'Steve Mitchell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '484-994-9573 Steve C', '610-489-1522 Fax ', NULL), (4554, 1983, 'Mr', 'Dan Hunt / Lee Barnett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-522-1144', '(614) 575-1307 Fax', NULL), (4555, 1984, 'Mr', 'Eng. Francisquet Vargas Pla', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-763-5616/787-347', '787-282-7949 Fax/787', NULL), (4556, 1985, 'Mr', 'David Altendorff/Alexander Castillo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-253-1010', '787-253-1266 Fax/787', NULL), (4557, 1986, 'Mr', 'Israel Marales, P.E. - Mgr', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-788-0863', '787-788-0917 Fax', NULL), (4558, 1987, 'Mr', 'Eng.JoseL Irizaray Rosa/Raul Hernandez ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-848-2075/787-848', '787-848-1253 FAX/787', NULL), (4559, 1988, 'Mr', 'Rafael Wander Aparte/Oscar Calon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-887-2005 / 505-1', '787-887-2265 Fax / 3', NULL), (4560, 1989, 'Mr', 'Felipe J. Acosta ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(787) 832-4040 x 343', '787-833-8260 FAX', NULL), (4561, 1990, 'Mr', 'Juan C. Garcia/Adrian Irrizart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-653-3430', '787-653-3431 Fax', NULL), (4562, 1991, 'Mr', 'Raul Santiago ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-579-0702/787-848', '787-848-1562 Fax/787', NULL), (4563, 1992, 'Mr', 'Eng. Luis Rodriguez/Raul Santiago', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-848-2075', '787-848-1562 Fax ', NULL), (4564, 1993, 'Mr', 'Cesar Soto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-894-4607/787-894', '787-894-4610 Fax', NULL), (4565, 1994, 'Mr', 'Raul Santiago', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-848-2075', '787-848-1562 Fax', NULL), (4566, 1995, 'Mr', 'Maximino Ramirez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-306-4907', '', NULL), (4567, 1996, 'Mr', 'Dennis Mendez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-986-1717', '787-986-1747 Fax', NULL), (4568, 1997, 'Mr', 'Maria Cordero/Milagras Gonzalez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '787-760-1094x231Mari', '(787)760-1021Fax/(78', NULL), (4569, 1998, 'Mr', 'Paul Gersewski, Jr. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 989-742-4223 x 222 ', '989-742-2310 Fax/989', NULL), (4570, 1999, 'Mr', 'Jason Strong', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-956-2020', '734-522-6427 Fax', NULL), (4571, 2000, 'Mr', 'Josh Gottschall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(231) 775-7755', '(231) 775-3135 Fax', NULL), (4572, 2001, 'Mr', 'Lauren Sustic', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 887-4173', '(248) 887-2755 Fax', NULL), (4573, 2002, 'Mr', 'Rick Little / Jodie Tedesco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 546-4250 ', '(517) 546-9628 Fax', NULL), (4574, 2003, 'Mr', 'Debbie Champine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-445-7002/Terry 5', '586-445-7887 Fax', NULL), (4575, 2004, 'Mr', 'Gene Rogers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(586) 291-9049 Gene ', '586-749-8657 Fax ', NULL), (4576, 2005, 'Mr', 'Tim Cole / Mike Fulcomer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-854-2145', '540-854-2146 Fax', NULL), (4577, 2006, 'Mr', 'Patrick Kitcher', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-668-4303 ', '301-668-3519 Fax', NULL), (4578, 2007, 'Mr', 'Venisri Nagucapati', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-817-1106/703-801', '703-817-1170 Fax', NULL), (4579, 2008, 'Mr', 'Carl Phipps', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(302) 836-5304 x 108', '(302) 836-5458 Fax', NULL), (4580, 2009, 'Mr', 'Debbie Klinger /Jim Parsons ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-524-6770 / 610-5', '248-324-5178 Fax', NULL), (4581, 2010, 'Mr', 'Mark Kessi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-392-230', '410-392-2324 Fax', NULL), (4582, 2011, 'Mr', 'Stuart MacDonald', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-249-1105/989-928', '989-249-1171 Fax', NULL), (4583, 2012, 'Mr', 'Beth London / Tracy Le Fevre', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 759-1413 Beth L', '989-759-1563 FAX', NULL), (4584, 2013, 'Mr', 'Mike Garland', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-486-2932/616-4', '269-751-6409 Fax/616', NULL), (4585, 2014, 'Mr', 'Wayne Wilber', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-780-7894 (Lab)51', '(517) 780-7896 Fax', NULL), (4586, 2015, 'Mr', 'Tim Brutsche / Ken Brutsche', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-963-1554', '269-963-6109 Fax ', NULL), (4587, 2016, 'Mr', 'Scott Shuler/Chuck Meyer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 353-7081', '(419) 354-4153 Fax', NULL), (4588, 2017, 'Mr', 'Steve Tarango ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4589, 2018, 'Mr', 'Jason Scott', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '907-424-3434', 'RMA 7070', NULL), (4590, 2019, 'Mr', 'Pat Beaver ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(615) 350-8124', '(615) 350-8149 Fax ', NULL), (4591, 2020, 'Mr', 'Mike Rose/Angie Randalls/Eric Felix', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '765-477-0484 Eric', '', NULL), (4592, 2021, 'Mr', 'Bob Rogerson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 429-1212 ext 1', '(412) 429-0191 Fax', NULL), (4593, 2022, 'Mr', 'Dennis Koteuski - Lab Mgr', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 349-8710 / (24', '', NULL), (4594, 2023, 'Mr', 'Mark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 695-1342', '', NULL), (4595, 2024, 'Mr', 'Teresa Harlan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 391-8311', '(717) 391-8316 Fax', NULL), (4596, 2025, 'Mr', 'Pete Mann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 484-3320 Job ', '(515) 484-3951 Batc', NULL), (4597, 2026, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 472-0190', '', NULL), (4598, 2027, 'Mr', 'Vick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-333-4704', '440-333-3781 Fax', NULL), (4599, 2028, 'Mr', 'Jim Trent', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-435-3655', '419-435-2544 Fax', NULL), (4600, 2029, 'Mr', 'Kevin Clark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 585-7755 CELL ', '', NULL), (4601, 2030, 'Mr', 'Jack Dietz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 679-3792', '', NULL), (4602, 2031, 'Mr', 'Rob Higinbotham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 583-8844', '(412) 583-1007 Fax', NULL), (4603, 2032, 'Mr', 'Rob Higinbotham', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 583-8844', '(412) 583-1007 Fax', NULL), (4604, 2033, 'Mr', 'Pete Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 456-5469', '(616) 456-5784 Fax', NULL), (4605, 2034, 'Mr', 'Ron Robbins / Conny Cobb x 340', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 625-8080 (Ext', '(248) 625-7820 Fax', NULL), (4606, 2035, 'Mr', 'Tom Baldwin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '314-568-9748', '', NULL), (4607, 2036, 'Mr', 'Brian Hamilton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '314-568-9744 Cell Ph', '', NULL), (4608, 2037, 'Mr', 'John Meadows', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 462-0030', '(734) 462-0079', NULL), (4609, 2038, 'Mr', 'Bill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 292-1071 Bill ', '412-965-3899 Bill Ce', NULL), (4610, 2039, 'Mr', 'Brad Barnes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-454-1113 Brad', '', NULL), (4611, 2040, 'Mr', 'Eric Tucker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-475-0518', '248-848-1042', NULL), (4612, 2041, 'Mr', 'Thomas Lentner / Staff Eng.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 994-3210', '(734) 994-3950', NULL), (4613, 2042, 'Mr', 'Jacob Folsom/Nathan/Harold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-859-983-9445 Harol', '859-299-2481 Fax', NULL), (4614, 2043, 'Mr', 'Brad Parlotto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(269) 323-3555', '(269) 323-3553 Fax/2', NULL), (4615, 2044, 'Mr', 'Tony Pizzotti', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(313) 874-2660 ext 1', '(313) 874-2650 FAX', NULL), (4616, 2045, 'Mr', 'Robin Williams/Bill Zamplas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-464-6711 Robin', '(937) 435-5162 Fax', NULL), (4617, 2046, 'Mr', 'Luke McDougall ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-531-6801/586-855', '586-752-5231 Fax', NULL), (4618, 2047, 'Mr', 'Marty Dell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(313) 485-3181', '(313) 485-3228 Fax', NULL), (4619, 2048, 'Mr', 'Rich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-323-7995 Plant', '610-323-2988 FAX', NULL), (4620, 2049, 'Mr', 'Bill Tobin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 874-1454', '(610) 874-5609 Fax', NULL), (4621, 2050, 'Mr', 'Matt Skiljo/Lisa Beers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-342-6851 Ext. 12', '724-983-2226 Fax', NULL), (4622, 2051, 'Mr', 'Bud Conners', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(410) 354-0658', '(410) 355-1827 Fax', NULL), (4623, 2052, 'Mr', 'Gary Hahn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 327-3532', '(616) 327-7679 fax', NULL), (4624, 2053, 'Mr', 'Charlie VanMeter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(410) 785-5790', '(410) 785-1103 Fax', NULL), (4625, 2054, 'Mr', 'Kathy Kelly - QC Mgr', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-396-6000', '703-396-6090 FAX', NULL), (4626, 2055, 'Mr', 'David Cloud/Bill/Mark Kilpatrick ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '302-654-6948/302-654', '302-656-9149 Fax/302', NULL), (4627, 2056, 'Mr', 'Mark Kalisz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-514-6961 Mark ', '248-399-2157 Fax', NULL), (4628, 2057, 'Mr', 'Carl Phipps', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(302) 836-5304 x 108', '(302) 836-5458 Fax', NULL), (4629, 2058, 'Mr', 'Jim Parsons / Debbie Klinger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-524-6770 Deb', '610-280-6666 Fax', NULL), (4630, 2059, 'Mr', 'Daniel Francisco/ Tracey Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-725-9370 ', '304-728-5170 Fax', NULL), (4631, 2060, 'Mr', 'Sris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-392-7400', '703-330-1285 Fax', NULL), (4632, 2061, 'Mr', 'Dan Mix', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-654-2501', '330-654-3302', NULL), (4633, 2062, 'Mr', 'Jeff Elliott / Stan/ Andy /Roger/Jim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 455-8600 Jim S', '419-704-5462 Roger C', NULL), (4634, 2063, 'Mr', 'Harland Couillard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(906) 786-0934', '(906) 786-2622 Fax', NULL), (4635, 2064, 'Mr', 'Peter Heinrich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-323-6600', '610-323-6601 Fax', NULL), (4636, 2065, 'Mr', 'Jake Zeller/Jeff Weikel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 571-7318', '(570) 698-7863', NULL), (4637, 2066, 'Mr', 'Zeerak Paydawy/Jim Parsons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-324-5372 Zeerak ', '(248) 324-5304 Fax', NULL), (4638, 2067, 'Mr', 'Stan Bennett/Fred Slocam/Jon Kidd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-618-6979 Jon', '330-628-6674 Fax', NULL), (4639, 2068, 'Mr', 'Ed Johnson/Kim Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(810) 667-6911', '(810) 245-5767 Fax', NULL), (4640, 2069, 'Mr', 'Andrew/ Shar Snyder/ Dan Kleck ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-773-1412/717-436', '717-436-2064 Fax', NULL), (4641, 2070, 'Mr', 'Mike Callahan / Greg McElwee ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-666-2350 x 125 M', '410-666-8781 Fax ', NULL), (4642, 2071, 'Mr', 'Dan Bailey/Rodney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-287-1000', '810-955-5791 Larry/7', NULL), (4643, 2072, 'Mr', 'Maurice Arbelaez/Regis Carvalho ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-405-8593', '301-502-3842 Cell Re', NULL), (4644, 2073, 'Mr', 'Maurice Arbelaez/Regis Carvalho ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-405-8593', '301-502-3842 Cell Re', NULL), (4645, 2074, 'Mr', 'John Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', NULL), (4646, 2075, 'Mr', 'Michael Zavala', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-873-4711', '313-873-4733 Fax', NULL), (4647, 2076, 'Mr', 'Mark Moyer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121 x 427', '(814) 224-6016 Fax ', NULL), (4648, 2077, 'Mr', 'Jason Webb / Jake Fancher ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '865-228-1527 Jake Ce', '865-573-6132 Fax', NULL), (4649, 2078, 'Mr', 'Brian Biasutto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-399-2066', '248-399-2157 Fax', NULL), (4650, 2079, 'Mr', 'Kevin Dubnicki/Roger Gibson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 453-7900/734-5', '(734) 453-0724 Fax', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (4651, 2080, 'Mr', 'Kevin Dubnicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 453-7900', '(734) 453-0724 Fax', NULL), (4652, 2081, 'Mr', 'Marshall Grow/ Pete Grow', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '804-691-3361 Cell Pe', '804-732-1609 Fax ', NULL), (4653, 2082, 'Mr', 'Zeerak Paydawy/Jim Parsons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-304-0822 Larry\'s', '248-521-0537 Jim\'s c', NULL), (4654, 2083, 'Mr', 'John Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', NULL), (4655, 2084, 'Mr', 'Anthony Gale', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4212 ', '814-766-0222 Fax', NULL), (4656, 2085, 'Mr', 'Ken Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 546-7686', '(570) 546-7708 FAX', NULL), (4657, 2086, 'Mr', 'Joe Brickner ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-764-7700 ', '717-764-4129 Fax', NULL), (4658, 2087, 'Mr', 'Bob Appleyard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-669-9886', '248-669-3533 Fax', NULL), (4659, 2088, 'Mr', 'Kevin Behn / Ray Ziegenfus', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-481-9648 x 30 Ke', '610-481-0218 Fax', NULL), (4660, 2089, 'Mr', 'Edward Luke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-267-4567', '(717) 267-4554 Fax', NULL), (4661, 2090, 'Mr', 'Bernie Schweibinz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570- 325-3293', '570- 325-3687 Fax', NULL), (4662, 2091, 'Mr', 'Darrin Knoll', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 264-4178 Lab', ' ', NULL), (4663, 2092, 'Mr', 'Edward Luke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-267-4567', '717-267-4554 Fax', NULL), (4664, 2093, 'Mr', 'Kevin Becker, Plant Mgr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-331-1500 Kevin', '412-331-2950 Fax', NULL), (4665, 2094, 'Mr', ' Bob Narchus', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-0010 Bob\'s C', '(724) 755-0207 Fax', NULL), (4666, 2095, 'Mr', 'Chester Olako', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-233-2710', '304-233-2711 Fax', NULL), (4667, 2096, 'Mr', 'Joe Cary', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-414-6890 Joe', '937-435-5162 Fax ', NULL), (4668, 2097, 'Mr', 'Sue Bollenbahuer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-465-4611', '419-465-2866 Fax', NULL), (4669, 2098, 'Mr', 'Ron Stauffer / Wendy Jurkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-451-6270 Wendy', '616-451-6271 fax ', NULL), (4670, 2099, 'Mr', 'Ron Stauffer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-484-6900', '517-485-8323 Fax', NULL), (4671, 2100, 'Mr', 'Devin Gougeon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-327-1956', '269-324-1212 Fax', NULL), (4672, 2101, 'Mr', 'George Roest', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 474-0415 x14 G', '(248) 474-5199 Fax', NULL), (4673, 2102, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4674, 2103, 'Mr', 'Lou Ziolkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4675, 2104, 'Mr', 'Lou Ziolkowski/Don Harris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-522-6424 Don Har', '', NULL), (4676, 2105, 'Mr', 'Patrick Seidl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '907-562-3501', 'PO 8513', NULL), (4677, 2106, 'Mr', 'Melissa Duvall/Jose Villalba', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '864-576-3230', '864-587-8828 Fax', NULL), (4678, 2107, 'Mr', 'Johnny Ellis/Joe Lowery/Travis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-967-4801', '740-397-5993 FAX', NULL), (4679, 2108, 'Mr', 'Stan Kocuba', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 260-5952 Stan ', '724-929-3011 Fax', NULL), (4680, 2109, 'Mr', 'Nick Flores', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 378-7263', '(703) 378-7274 Fax', NULL), (4681, 2110, 'Mr', 'John Ward / Trent Sloan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-874-9057 Vicki', '', NULL), (4682, 2111, 'Mr', 'Bill Stone/Dave Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(301) 932-5451-Roy', '301-399-2222 Dave Mi', NULL), (4683, 2112, 'Mr', 'Damon Board / Keith Philips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 351-3118', '(502) 351-3110 Fax', NULL), (4684, 2113, 'Mr', 'Greg Vidkovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2783', '(814) 269-2549 (Greg', NULL), (4685, 2114, 'Mr', 'John Scott / Pres.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-0659 Dave Ce', '412-341-2710 Fax', NULL), (4686, 2115, 'Mr', 'Mike Demyan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 433-6871', '(610) 433-7594 Fax', NULL), (4687, 2116, 'Mr', 'Ed Adkins/Barry Hamilton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-683-5060 Ext. 18', '330-683-0446 Fax', NULL), (4688, 2117, 'Mr', 'Mike Covington', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-874-4140', '(757) 886-0442 Fax', NULL), (4689, 2118, 'Mr', 'Sheila Nettles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 432-2118', '(814) 432-5342 Fax', NULL), (4690, 2119, 'Mr', 'Rob Dillon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 645-4056', '(304) 645-4489 Fax', NULL), (4691, 2120, 'Mr', 'Fred Dente', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(518) 238-2915', '(518) 238-2614 Fax', NULL), (4692, 2121, 'Mr', 'Roger McClellan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 248-0133', '', NULL), (4693, 2122, 'Mr', 'Larry Kitko/Mike Shibode', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-861-4120-Disconn', '814-861-5118 Fax', NULL), (4694, 2123, 'Mr', 'Sandy Sanders', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 456-6930', '(502) 456-4298 Fax', NULL), (4695, 2124, 'Mr', 'Brad Broman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-545-7850', '', NULL), (4696, 2125, 'Mr', 'Gary Jewel / Dave Rinehart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 373-0296', '', NULL), (4697, 2126, 'Mr', 'Richard Cory', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(757) 543-8832', '(757) 545-8933 Fax', NULL), (4698, 2127, 'Mr', 'Jeff Sketo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(800) 952-6460', '(502) 348-7709 Fax', NULL), (4699, 2128, 'Mr', 'Mark Clemens', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(276) 322-5467', '(276) 322-1510 Fax', NULL), (4700, 2129, 'Mr', 'Jim Martin / John', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 831-8092', '(513) 831-7032 Fax', NULL), (4701, 2130, 'Mr', 'Tim Swift', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '240-876-6724', '', NULL), (4702, 2131, 'Mr', 'Parris McGheebey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '443-885-3815', '410-319-3843 Fax', NULL), (4703, 2132, 'Mr', 'John Albright', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-6011', '814-224-2121 Phone', NULL), (4704, 2133, 'Mr', 'Shawn Dotson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 387-2700 ext 3', '', NULL), (4705, 2134, 'Mr', 'Theresa Donley / William Mitchell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-829-4557/740-829', '740-829-4014 Fax', NULL), (4706, 2135, 'Mr', 'Jim Bray / John Vergeres(VP)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-263-0400', '703-263-9024 Fax', NULL), (4707, 2136, 'Mr', 'Dave Marnalse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 894-2255', '', NULL), (4708, 2137, 'Mr', 'Jeff Sydenstricker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(301) 967-5756 Jeff ', '', NULL), (4709, 2138, 'Mr', 'Dan Condiles', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 489-2646', '(610) 489-4195 Fax', NULL), (4710, 2139, 'Mr', 'Steve Montinieri', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(540) 546-5118', '(540) 546-1202', NULL), (4711, 2140, 'Mr', 'Jerry Bach', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-922-1125', '513-922-1520 Fax', NULL), (4712, 2141, 'Mr', 'Vincent Barone', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '718-526-9700', '914-490-2449 Vincent', NULL), (4713, 2142, 'Mr', 'Terry Martin / Carl / Frank Patterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 258-6900', '(724) 258-8075 Fax', NULL), (4714, 2143, 'Mr', 'Matt Skilijo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-342-6851 x1285', '724-983-2226 Fax', NULL), (4715, 2144, 'Mr', 'Darrick Kreischer/Mark Demyan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-366-7120 x 101 D', '717-458-0801Fax/610-', NULL), (4716, 2145, 'Mr', 'Dave Gonso / Jeff Goldentz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(419) 424-8222 / 419', '(419) 424-5208 Fax', NULL), (4717, 2146, 'Mr', 'John Ward / Joe Scott / Paul / Brad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4718, 2147, 'Mr', 'Steve Caldwell ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-436-8973/606-436', '606-436-8903 Acct./6', NULL), (4719, 2148, 'Mr', 'Doug Ross', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 713-1900', '(703) 713-1910 Fax', NULL), (4720, 2149, 'Mr', 'Chris Neely/Roy Trout/Mike', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-1910', '', NULL), (4721, 2150, 'Mr', 'Chris Neely/Roy/Mike/Matt/Gerry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-6546 or (7', '(717) 783-5955 Fax', NULL), (4722, 2151, 'Mr', 'Connie Sneil/Sharon Brigam-QA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-567-2145 Ext. 82', '330-567-2260 Fax/330', NULL), (4723, 2152, 'Mr', 'Brian Hibdon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-522-0300', '734-522-0308 Fax', NULL), (4724, 2153, 'Mr', 'Jack Deitz/Annette Whistler ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-3793 Annette', '614-778-4305 Jack ce', NULL), (4725, 2154, 'Mr', 'Bob Mulichak/Donna Lytle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 797-1411 Ext. ', '(304) 797-0043 Fax', NULL), (4726, 2155, 'Mr', 'Dave Brugger ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 774-2664', '814-774-5394 Fax New', NULL), (4727, 2156, 'Mr', 'Bill Chilli / Doug Stewart', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-787-7220', '412-787-3499 Fax', NULL), (4728, 2157, 'Mr', 'Rebecca Bentley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-453-5123', '734-453-5201 Fax', NULL), (4729, 2158, 'Mr', 'Janice Ramsey/Stan/Bobbie Kester', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-332-9161', '540-332-9181 Fax', NULL), (4730, 2159, 'Mr', 'Brian Gilkey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-973-7234', '717-664-0886 Fax', NULL), (4731, 2160, 'Mr', 'John Blair/Jim Smith/Tom Medvick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 344-0821/304-3', '(304) 342-4711', NULL), (4732, 2161, 'Mr', 'Lynn Hoffman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-784-4100 x381', '570-784-4106 Fax', NULL), (4733, 2162, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4734, 2163, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4735, 2164, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4736, 2165, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4737, 2166, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4738, 2167, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4739, 2168, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4740, 2169, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4741, 2170, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4742, 2171, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4743, 2172, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4744, 2173, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4745, 2174, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4746, 2175, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4747, 2176, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4748, 2177, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4749, 2178, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4750, 2179, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4751, 2180, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4752, 2181, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4753, 2182, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4754, 2183, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4755, 2184, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4756, 2185, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4757, 2186, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4758, 2187, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4759, 2188, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4760, 2189, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4761, 2190, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4762, 2191, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4763, 2192, 'Mr', 'Gaston Botto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '786-975-9573', '305-365-9376 Fax', NULL), (4764, 2193, 'Mr', 'Curtis Greenland', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-330-2435 Curtis', '', NULL), (4765, 2194, 'Mr', 'Michael B. Bahnsen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '713-336-1300(O) 832-', '713-336-1487 Fax', NULL), (4766, 2195, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4767, 2196, 'Mr', 'Kyle Butts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '316-942-2453', '316-942-2555 Fax', NULL), (4768, 2197, 'Mr', 'Dave Harness / Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-875-7000', '317-876-3705 Fax', NULL), (4769, 2198, 'Mr', 'Clay Hubbard / Paul Grubbs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-296-7181', '434-220-0129 Fax', NULL), (4770, 2199, 'Mr', 'Chuck Dato', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 350-5929', '', NULL), (4771, 2200, 'Mr', 'Stan Bennett/Fred Slocam/Jon Kidd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-618-6979 Jon', '330-628-6674 Fax', NULL), (4772, 2201, 'Mr', 'MarkGessel/RonLycans/JasonHunter ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-539-2680 Ron/304', '304-766-8105 Fax', NULL), (4773, 2202, 'Mr', 'Ron Erikson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '520-399-1925 Ron', '616-940-3760 Fax', NULL), (4774, 2203, 'Mr', 'Sris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-392-7400', '703-330-1285 Fax', NULL), (4775, 2204, 'Mr', 'Emily Rodriguez/Kevin Patton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-496-1600 x 216 E', '845-496-1398 Fax ', NULL), (4776, 2205, 'Mr', 'Emily Rodriguez/Kevin Patton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-496-1600', '845-496-1398 Fax ', NULL), (4777, 2206, 'Mr', 'Mark Casper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 896-2066 / 206', '(513) 896-2079 Fax', NULL), (4778, 2207, 'Mr', 'Tedra Roberts / Kali McCarthy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-720-5254', '419-720-5255 Fax', NULL), (4779, 2208, 'Mr', 'Tedra Roberts/Kali McCarthy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-720-5254', '419-720-5255 Fax', NULL), (4780, 2209, 'Mr', 'Chad Forcellini', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-459-5950 x 328 C', '724-459-3890 Fax', NULL), (4781, 2210, 'Mr', 'Gary Workman/Craig Lyle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 755-8228', '(304) 755-8229 Fax', NULL), (4782, 2211, 'Mr', 'Alma Long/Bill Long', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 538-1114', 'None', NULL), (4783, 2212, 'Mr', 'Adil Wahab ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-746-3634', '937-746-3635 Fax', NULL), (4784, 2213, 'Mr', 'Dave Harness/Mike Ash/Dan Dilk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-796-3507', '317-870-0314 Fax', NULL), (4785, 2214, 'Mr', 'Sam Callaway/Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '260-484-0813 Sam Cal', '260-413-0581 Additio', NULL), (4786, 2215, 'Mr', 'John Camburn/Mike Ash', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '574-289-8378/574-276', '', NULL), (4787, 2216, 'Mr', 'Joe Chambers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-639-5260', '330-252-2421 Fax', NULL), (4788, 2217, 'Mr', 'Theresa Donley / William Mitchell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-829-4557/740-829', '740-829-4014 Fax', NULL), (4789, 2218, 'Mr', 'Cyryl Burkhart / W. Mitchell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 598-4053', '(740) 598-4378 Fax', NULL), (4790, 2219, 'Mr', 'Kevin Mawn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-248-8000', '540-248-9771 Fax', NULL), (4791, 2220, 'Mr', 'Rocky Argento / Matthew Chambers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 362-1850 ', '(216) 898-6307 Fax', NULL), (4792, 2221, 'Mr', 'Stan Ward', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-443-0123', '614-443-4001 Fax ', NULL), (4793, 2222, 'Mr', 'Thomas Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-313-3227', '610-313-9667', NULL), (4794, 2223, 'Mr', 'Bob Francisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 663-7988', '(724) 663-4781 Guard', NULL), (4795, 2224, 'Mr', 'Adam Leadbetter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4796, 2225, 'Mr', 'Jim Hosea', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-539-4000', '', NULL), (4797, 2226, 'Mr', 'Will Lenihan / Seth Stapf ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '204-476-4771 Seth', '321-406-0536 Fax ', NULL), (4798, 2227, 'Mr', 'Robin Williams/Bill Zamplas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-464-6711 Robin', '(937) 435-5162 Fax', NULL), (4799, 2228, 'Mr', 'John Jenkin/Ron Erb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-424-1011', '1-800-433-1840 Ron ', NULL), (4800, 2229, 'Mr', 'Kristy Kennedy/Jason Hughes ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-771-8471', '513-771-8475 Fax ', NULL), (4801, 2230, 'Mr', 'Kevin Baird, Plant Manager', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724- 774-5100', '724-774-9140 Fax', NULL), (4802, 2231, 'Mr', 'Doug Kline/Brody', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-837-0430', '570-837-1591 Fax', NULL), (4803, 2232, 'Mr', 'Andrew D. Watkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-245-6826 Ext. 21', '440-244-0414 Fax', NULL), (4804, 2233, 'Mr', 'Bob Rohn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 354-4111', '', NULL), (4805, 2234, 'Mr', 'Dan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 242-3644', '(513) 242-7845 Fax', NULL), (4806, 2235, 'Mr', 'Steve Wells / Bobby Collins ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 398-7300', '(513) 398-1997 Fax', NULL), (4807, 2236, 'Mr', 'Keith / Kevin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-236-8805 x 206 D', '937-237-9947 Fax / 9', NULL), (4808, 2237, 'Mr', 'Daniel Francisco/ Tracey Jones', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-725-9370 ', '304-728-5170 Fax', NULL), (4809, 2238, 'Mr', 'Kurt Triptow / Greg Horacek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-327-3200', '440-327-3204 Fax', NULL), (4810, 2239, 'Mr', 'Bob Dolence / Richard Ritz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-357-9683 Insp./7', '724-443-8733 Fax', NULL), (4811, 2240, 'Mr', 'Roberto Standy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 525-9485 / 724', '304-525-9481 Fax', NULL), (4812, 2241, 'Mr', 'Gary Chesnoski / Don Lehnerd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-2123 Gary', '724-443-8733 Fax', NULL), (4813, 2242, 'Mr', 'Andrew Solak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607- 778-5074', '607-778-5481 Fax ', NULL), (4814, 2243, 'Mr', 'Tracy Bruce ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-287-9903 Tracy C', '724-652-8290 Fax ', NULL), (4815, 2244, 'Mr', 'William Mehalick ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-444-3043', '717-444-9995 Fax', NULL), (4816, 2245, 'Mr', 'Dan Hunt / Lee Barnett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-522-1144', '(614) 575-1307 Fax', NULL), (4817, 2246, 'Mr', 'John Ward / Joe Scott / Paul / Brad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4818, 2247, 'Mr', 'Bruce Niswonger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-456-4539', '937-456-9247 Fax', NULL), (4819, 2248, 'Mr', 'JD Chyan / Cullen Wanbaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 755-2933', '(717) 757-1574 Fax', NULL), (4820, 2249, 'Mr', 'Keith Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(804) 395-8265 Ext:', '(804) 395-8241 Fax', NULL), (4821, 2250, 'Mr', 'Mark Frank', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(216) 831-3800', '216-292-1465 Fax', NULL), (4822, 2251, 'Mr', 'Rick Blaze / Jamie Bolton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-352-2200', '724-352-2290 Fax', NULL), (4823, 2252, 'Mr', 'Rudy Vorkapich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-245-4042x557 Rud', '336-969-3566 Fax ', NULL), (4824, 2253, 'Mr', 'Don Martin / Bill Robertson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-428-6150/937-603', '937-428-6154 Fax', NULL), (4825, 2254, 'Mr', 'Malcolm Barret', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-277-5300 ext 32 ', '859-991-5265 Malcolm', NULL), (4826, 2255, 'Mr', 'Craig Mays or Mark Summers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-428-6150', '937-428-6154', NULL), (4827, 2256, 'Mr', 'Bob Kurtz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '434-296-7989 x 306 B', '434-293-7139 Fax', NULL), (4828, 2257, 'Mr', 'Bob Yogus / Dana Charney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ext.', '(814) 472-4221 Fax', NULL), (4829, 2258, 'Mr', 'Bob Yogus / Bruce / Dave ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-242-8918 Bruce', '', NULL), (4830, 2259, 'Mr', 'Greg Letzo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 472-7700 ', '(814) 472-4221 Fax', NULL), (4831, 2260, 'Mr', 'Phil Young, Plt. Mgr.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(570) 327-6113 - dis', '', NULL), (4832, 2261, 'Mr', 'Aaron Teets', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-334-2305', '301-334-2305 Fax ', NULL), (4833, 2262, 'Mr', 'Connie Sneil/Sharon Brigam-QA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-567-2145 Ext. 82', '330-567-2260 Fax/330', NULL), (4834, 2263, 'Mr', 'Gary Kibbe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 735-6500 x 539', '(616) 735-6700 FAX', NULL), (4835, 2264, 'Mr', 'Todd Harbin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-669-9886', '248-669-3533 Fax', NULL), (4836, 2265, 'Mr', 'Brian Lisckay', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-753-7832', '703-753-9648 Fax', NULL), (4837, 2266, 'Mr', 'Clint Roof', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-829-5695 Clint', '(540) 829-6325 Fax', NULL), (4838, 2267, 'Mr', 'Bennie McFerron or Bob', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 771-8830', '', NULL), (4839, 2268, 'Mr', 'Mike Callahan / Greg McElwee ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-666-2350 x 125 M', '410-666-8781 Fax ', NULL), (4840, 2269, 'Mr', 'Craig Combs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(810) 766-7165 x 262', '(810) 766-7249 Fax ', NULL), (4841, 2270, 'Mr', 'Mohammad Naeem', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 466-2574', '(734) 466-2195 Fax', NULL), (4842, 2271, 'Mr', 'Mike Baker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' ', '724-748-3599 Fax', NULL), (4843, 2272, 'Mr', 'John Ashworth ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-962-8864 / 716-8', '607-962-5968 Fax', NULL), (4844, 2273, 'Mr', 'Pam Rossman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(315) 668-3868', '(315) 676-3150 Fax', NULL), (4845, 2274, 'Mr', 'Jason Jackson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-731-0430', '610-731-0435 Fax', NULL), (4846, 2275, 'Mr', 'Darrick Kreischer/Mark Demyan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-366-7120 x 101 D', '717-458-0801Fax/610-', NULL), (4847, 2276, 'Mr', 'Michael J. Wright / Dave Buckwalter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-458-0800', '717-458-0801 Fax/717', NULL), (4848, 2277, 'Mr', 'Zachary Cochran/Tony Matney ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-637-3021 Tony ', '(276) 498-4317 Fax', NULL), (4849, 2278, 'Mr', 'Ms. Grubbs 614-588-4544 Cell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 287-3873 Ms. ', 'Use Email', NULL), (4850, 2279, 'Mr', 'John Jento /Rod Christy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-598-0456/724-255', '859-748-4601 Fax/812', NULL), (4851, 2280, 'Mr', 'Steve Antos ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-846-5841 ', '317-773-6227 Fax', NULL), (4852, 2281, 'Mr', 'Ray Myers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-269-2580 Ray', '814-269-2499 Fax', NULL), (4853, 2282, 'Mr', 'Jim Mathers', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2642', '', NULL), (4854, 2283, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 269-2642', '', NULL), (4855, 2284, 'Mr', 'Greg Vidakovich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-269-2549 Greg', '', NULL), (4856, 2285, 'Mr', 'Kirk Myers / Kevin Gladis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-632-7722', '717-630-8441 Fax', NULL), (4857, 2286, 'Mr', 'Jon Lubahn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 788-7067/517-7', '(517) 788-1724 Fax', NULL), (4858, 2287, 'Mr', 'Dan Bailey/Rodney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-287-1000', '810-955-5791 Larry/7', NULL), (4859, 2288, 'Mr', 'Dan Wiseman / Denise Reed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-393-1439 Dan ', '937-878-8780 Fax ', NULL), (4860, 2289, 'Mr', 'Jeff Richardson/Todd McKinniss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' 614-445-3839 Jeff ', 'no Fax', NULL), (4861, 2290, 'Mr', 'Mark Miechowicz / Mike Pittenger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-951-9000 / 440-5', '440-951-7487 Fax / 4', NULL), (4862, 2291, 'Mr', 'Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-486-5100 x201 Be', '248-486-5050 Fax', NULL), (4863, 2292, 'Mr', 'Theresa Marsik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-800-284-8639/ Ther', '248-486-5050 Fax', NULL), (4864, 2293, 'Mr', 'Steve Combs/Mark Dixon/JeremyRose', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-552-9026 Cell Ma', '614-276-6377 Fax/304', NULL), (4865, 2294, 'Mr', 'Jim Duncan/Brian Adams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-529-3235/607-738', '607-529-3434 Fax', NULL), (4866, 2295, 'Mr', 'John Piper / Earl Bailey ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', NULL), (4867, 2296, 'Mr', 'Trent Gages / Greg Puzio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-987-4389 Trent ', '216-987-4396 Fax ', NULL), (4868, 2297, 'Mr', 'Roger Burris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 529-3235 ext. ', '(607) 529-3434 Fax', NULL), (4869, 2298, 'Mr', 'Walt Skinner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', NULL), (4870, 2299, 'Mr', 'Roger Burris / Lori', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4871, 2300, 'Mr', 'Fred Johns', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-398-1151 Main No', '610-530-6119 Fax', NULL), (4872, 2301, 'Mr', 'Rick Craddock/E. John Hansen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-743-5470 Rick Ce', '', NULL), (4873, 2302, 'Mr', 'Ted Scholl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(610) 837-9696 x 472', '(610) 837-8420 Fax', NULL), (4874, 2303, 'Mr', 'Abe Turhan/Minn Wing ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-366-3890 x 47106', '610-366-3895 Fax / x', NULL), (4875, 2304, 'Mr', 'Dan Cagle / Mike Gaia', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-962-7296 Cell Mi', '724-342-3405 Fax/724', NULL), (4876, 2305, 'Mr', 'Brad Schmitz/John Rothwell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '269-565-8460 John', '269-968-7205 Fax', NULL), (4877, 2306, 'Mr', 'David Lafreniere', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-704-9819', '703-704-9683 Fax ', NULL), (4878, 2307, 'Mr', 'Julius Lawrence ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-304-4979 Cell Ju', '(313) 897-1280 Fax/3', NULL), (4879, 2308, 'Mr', 'Desi / Elaine Dzimeria/John Hopper', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-899-3300', '724-899-3340 Fax', NULL), (4880, 2309, 'Mr', 'Kevin Stahl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-785-7952', '724-640-5980 Kevin c', NULL), (4881, 2310, 'Mr', 'Giorgi Khardzeishvili', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-658-1052', '', NULL), (4882, 2311, 'Mr', 'Tom Dixon ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-280 1704 Tom', '814-342-1489 Fax ', NULL), (4883, 2312, 'Mr', 'Justin Bukey/Jamie North ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-888-0576', '614-848-6712 Fax', NULL), (4884, 2313, 'Mr', 'Jamie North ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-432-3184', '814-437-1110 Fax ', NULL), (4885, 2314, 'Mr', 'Steve Robinson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-778-4869 Steve C', '614-987-0216', NULL), (4886, 2315, 'Mr', 'William Dunn (ext. 2916) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-894-2916 William', '(540) 894-2813 - Fax', NULL), (4887, 2316, 'Mr', 'Dave Kintzing', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-390-7684', '', NULL), (4888, 2317, 'Mr', 'Chris Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-366-1000 ext 236', '716-363-8818 Fax', NULL), (4889, 2318, 'Mr', 'Brian Devine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '302-239-6634', '302-239-8485 Fax', NULL), (4890, 2319, 'Mr', 'Mark Griffiph', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-265-7511 Mark', '937-743-0651 Fax', NULL), (4891, 2320, 'Mr', 'Greg Mitchel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-476-3156 Greg\'s ', '734-487-8755 Fax ', NULL), (4892, 2321, 'Mr', 'Sam Kimanu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 Ext. 30', '410-358-7213 Fax', NULL), (4893, 2322, 'Mr', 'Les Schrieber/ Sam Kimanu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 Ext. 30', '410-358-7213 Fax', NULL), (4894, 2323, 'Mr', 'Sam Kimani', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-358-7171 Ext. 30', '410-358-7213 Fax', NULL), (4895, 2324, 'Mr', 'Gerald Feltmate', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-459-7500 ext. 22', '724-459-0630 Fax', NULL), (4896, 2325, 'Mr', 'Carol Bostic', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '757-366-5100', '757-366-5203 Fax', NULL), (4897, 2326, 'Mr', 'Abdalla Mohamed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-906-4276', '', NULL), (4898, 2327, 'Mr', 'Abdalla Mohamed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-906-4276', '', NULL), (4899, 2328, 'Mr', 'Ned Glysson- Dir. of Res. & Oper.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(734) 426-6076', '(734) 426-6078 Fax', NULL), (4900, 2329, 'Mr', 'Johnny Ellis/Joe Lowery/Travis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-967-4801', '740-397-5993 FAX', NULL), (4901, 2330, 'Mr', 'Jon Meddaugh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-943-5503', '231-943-5534 Fax', NULL), (4902, 2331, 'Mr', 'Jon Meddaugh / Kyle Moir', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '231-218-0602 Jon / 2', '231-943-5534 Fax', NULL), (4903, 2332, 'Mr', 'Tim Strohl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-775-4559', '614-775-4896 Fax / 6', NULL), (4904, 2333, 'Mr', 'John Daugherty / Jake Zacks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-459-2720 x 140', '814-455-3751 Fax', NULL), (4905, 2334, 'Mr', 'Tom Stoffick/Jay Whitt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 667-7702 or 6', '(724) 667-1067 Fax/7', NULL), (4906, 2335, 'Mr', 'Dave Donati', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-670-7939', '(412) 344-8913 Fax', NULL), (4907, 2336, 'Mr', ' ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-775-4546 King Ge', '610-942-2629 fax', NULL), (4908, 2337, 'Mr', 'Dennis Mitchell-Academic Lab Mang. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-367-4795', '304-367-4934 Fax ', NULL), (4909, 2338, 'Mr', 'Michelle Brunni/Paul Medwig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-751-4001', '412-751-4003 Fax ', NULL), (4910, 2339, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (4911, 2340, 'Mr', 'Nancy Klemm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '800-323-7901/814-437', '814-437-5114 Fax ', NULL), (4912, 2341, 'Mr', 'Keith Heathcock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(248) 474-3211', '(248) 474-8110 Fax', NULL), (4913, 2342, 'Mr', 'Donna Washburn / Eric', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-559-9000', '610-559-1919 FAX', NULL), (4914, 2343, 'Mr', 'Blair Kitlinski/Ann Kitlinski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-652-8620', '717-651-0725 Fax ', NULL), (4915, 2344, 'Mr', 'Renee Reitz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-239-2015', '440-239-2000 Fax', NULL), (4916, 2345, 'Mr', 'Joshua Poling', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-636-3886 Main Of', '304-636-4487 Job Sit', NULL), (4917, 2346, 'Mr', 'Greg Middleton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-824-5097', '859-824-5130 Fax', NULL), (4918, 2347, 'Mr', 'Jim Wilhelm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-292-8489 Jim Cel', '724-853-3542 Home Of', NULL), (4919, 2348, 'Mr', 'Terry Kosteonik / Pam Barnes ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-640-7104', '724-696-4952 Fax', NULL), (4920, 2349, 'Mr', 'John Roc ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-398-8604', '513-398-2735', NULL), (4921, 2350, 'Mr', 'Ray Houghton ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 565-3032', '(607) 565-2339 Fax', NULL), (4922, 2351, 'Mr', 'Jimmy Jara/Reece Armitage', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '206-313-8620 Jimmy', '(330) 467-7984 Fax/3', NULL), (4923, 2352, 'Mr', 'Kevin Samms/Greg Craft', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 492-9119/937-5', '937-268-8321 Fax', NULL), (4924, 2353, 'Mr', 'Craig Green / Dave Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(585) 584-3132 ext ', '(585) 584-3466 Fax', NULL), (4925, 2354, 'Mr', 'Kevin Sams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(937) 878-8666', '(937) 878-9293 Fax', NULL), (4926, 2355, 'Mr', 'Jim Ranck/Jim Fernette', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-859-2714 Cell Ji', '989-631-5070 Fax', NULL), (4927, 2356, 'Mr', 'Shane Hicks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-928-1374', '276-928-1359 Fax', NULL), (4928, 2357, 'Mr', 'Matt Anderson / Joe Boyd', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-930-4081Matt Cel', '703-996-0124 Fax / ', NULL), (4929, 2358, 'Mr', 'Tom Arnold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 373-3211 ext 2', '(740) 373-5409 Fax', NULL), (4930, 2359, 'Mr', 'Larry Berry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '586-755-0900 x 17 Jo', '586-755-7456 Fax', NULL), (4931, 2360, 'Mr', 'Justin DeLap', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-295-2800 x 202 J', '724-295-2815 Fax', NULL), (4932, 2361, 'Mr', 'Kirby Campbell/Diane Deben', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-746-8500 x2037 K', '937-746-8500 x2006 D', NULL), (4933, 2362, 'Mr', 'Ms. Bernie Vetter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-631-2374', '410-631-5454 fax', NULL), (4934, 2363, 'Mr', 'Bob Stull', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 443-1671', '(814) 445-6729 Fax', NULL), (4935, 2364, 'Mr', 'Kevin Lichtenfels/ Randy O\'Rourke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-823-7600', '412-823-8999 Fax', NULL), (4936, 2365, 'Mr', 'Kerri Allgauer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-792-9446/Kerri c', '410-792-7395 FAX', NULL), (4937, 2366, 'Mr', 'Dennis Loh/Ravi ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-271-9301', '302-326-2399 Fax', NULL), (4938, 2367, 'Mr', 'Tom Rainsberger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-857-0628 Tom\'s C', '440-439-1544 Fax', NULL), (4939, 2368, 'Mr', 'Zack Bright', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-792-9446', '410-792-7395 FAX', NULL), (4940, 2369, 'Mr', 'Al Sumption ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-496-2440 / 989-5', '989-496-2465 Fax', NULL), (4941, 2370, 'Mr', 'Nick Bennett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-705-3067 Jay\'s C', 'A/P: Colleen 724-620', NULL), (4942, 2371, 'Mr', 'Steve Robins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-200-5572 Steve\'s', '859-586-8891 Fax', NULL), (4943, 2372, 'Mr', 'Lisa or Keith Thornburg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(513) 891-2000', '', NULL), (4944, 2373, 'Mr', 'Tim Harris ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-326-1070', '606-326-1077 Fax', NULL), (4945, 2374, 'Mr', 'Mark Hawkins / Scott Breninghouse ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-828-0400', '412-828-0300 FAX', NULL), (4946, 2375, 'Mr', 'Kevin Hilliker ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-559-7272', '616-977-8617 Fax / 6', NULL), (4947, 2376, 'Mr', 'Chad Richert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-317-1515 Chad ', '313-845-9658 Fax ', NULL), (4948, 2377, 'Mr', 'David Walsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-368-1414', '540-368-1444 Fax', NULL), (4949, 2378, 'Mr', 'Jay Alig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-688-3381 Jay', '859-987-0727 Fax', NULL), (4950, 2379, 'Mr', 'Tim Tipton/Paul Ashcraft ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-582-5426 / 606-6', '859-263-4625 Fax', NULL), (4951, 2380, 'Mr', 'Jack Detz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-778-4305 Jack De', ' ', NULL), (4952, 2381, 'Mr', 'Jack Dietz/Russ Welsh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-946-5940 Russ', 'Jack\'s cell 614-778-', NULL), (4953, 2382, 'Mr', 'Rob Truman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-3793 Rob', 'Use Email ', NULL), (4954, 2383, 'Mr', 'Jack Dietz/ Mindy Decarolis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-778-4305 Jack Ce', '(614) 876-1899 Fax/6', NULL), (4955, 2384, 'Mr', 'Jack Detz/ Rob Truman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-3793 Rob/ 41', '614-876-1899 Fax', NULL), (4956, 2385, 'Mr', 'Annette Whistler', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-3793 Annette', '614-778-4305 Jack\'s ', NULL), (4957, 2386, 'Mr', 'Bob Mulichak/Donna Lytle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 797-1411 Ext. ', '(304) 797-0043 Fax', NULL), (4958, 2387, 'Mr', 'Fred Klaber / Ali (Canada)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-829-3448/513-276', '513-829-4233 Fax /51', NULL), (4959, 2388, 'Mr', 'Phil Hopkins', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 336-3109', '(330) 336-2882 Fax', NULL), (4960, 2389, 'Mr', 'Dave Brugger ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 774-2664', '814-774-5394 Fax New', NULL), (4961, 2390, 'Mr', 'Collin Sargent', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-233-2710', '304-233-2711 Fax', NULL), (4962, 2391, 'Mr', 'Dan Force /Larry Kitko', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-574-5095 Dan ', '814-571-5241 Larry', NULL), (4963, 2392, 'Mr', 'Rob Duprise/Marty Garrison', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-535-3375 Rob Cel', '248-535-3463 Marty G', NULL), (4964, 2393, 'Mr', 'Shawn Mcgee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-232-9945/ 440-82', '440-232-9946 Fax', NULL), (4965, 2394, 'Mr', 'Shawn McGee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-232-9945/440-823', '440-232-9946 Fax', NULL), (4966, 2395, 'Mr', 'Jason Wooten', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-203-3917 Jason C', '', NULL), (4967, 2396, 'Mr', 'Shawn McGee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-232-9945/440-823', '440-232-9946 Fax', NULL), (4968, 2397, 'Mr', 'David Darwin/ Leon ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '201-386-8110 x 1126', '201-386-8155 Fax ', NULL), (4969, 2398, 'Mr', 'John Phillips', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(330) 799-3221 x 149', '(330) 799-9098 Fax', NULL), (4970, 2399, 'Mr', 'Denny Fry/Jim Kuenzie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-258-7519 Denny (', '717-258-7532 Fax (Di', NULL), (4971, 2400, 'Mr', 'Jerry Wolff / Adrien Adelman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-464-0262', '814-464-0268 Fax', NULL), (4972, 2401, 'Mr', 'Lynden Crosbie/Don Hoffman/Rod', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '845-938-2591 Don', '845-938-4495 Fax', NULL), (4973, 2402, 'Mr', ' Whitney Belkowitz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '732-618-2572 Cell Jo', '732-252-6994 Fax ', NULL), (4974, 2403, 'Mr', 'Dave Peters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-234-2900 x 8101', ' 440-234-7466 Fax', NULL), (4975, 2404, 'Mr', 'James Richards', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-918-4492', '248-344-2115 Fax', NULL), (4976, 2405, 'Mr', 'Patrick Spencer, David King', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '585-269-6493 Patrick', '585-269-6612 Patrick', NULL), (4977, 2406, 'Mr', 'Rick Saum ext: 237', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '219-874-4217 ', '219-979-6728 Fax', NULL), (4978, 2407, 'Mr', 'Lance Cole', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-335-0606', '330-335-0908 Fax', NULL), (4979, 2408, 'Mr', 'Jack Boschuk / Mahiru Shettima', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 746-4441', '(724) 745-4261 Fax', NULL), (4980, 2409, 'Mr', 'Ronald Brewer/Kathy Teribery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-774-3573', '814-774-2854 Fax', NULL), (4981, 2410, 'Mr', 'Steve Johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-665-5313 x 245', '716-665-5121 FAX', NULL), (4982, 2411, 'Mr', 'Jim Govern', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-719-1409 Jim Gov', ' ', NULL), (4983, 2412, 'Mr', 'Brenda Eberly ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-721-0106', '517-721-0107 Fax', NULL), (4984, 2413, 'Mr', 'Carl Kelcris/Carl Denison ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-655-4602 x112/51', '517-655-8042 Fax', NULL), (4985, 2414, 'Mr', 'Brian Kelly ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-536-6630', '814-536-5730 Fax ', NULL), (4986, 2415, 'Mr', 'Dr. Abdul Shakoor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-672-2968', '330-672-7949 Fax ', NULL), (4987, 2416, 'Mr', 'Mark TenHarmsel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 457-4920', '616-224-2651 Fax', NULL), (4988, 2417, 'Mr', 'Peyton Cramer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 788-3213', '(304) 788-3232 Fax', NULL), (4989, 2418, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 797-1261', '', NULL), (4990, 2419, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 797-1261', '', NULL), (4991, 2420, 'Mr', 'Brad Broman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-545-7850', '', NULL), (4992, 2421, 'Mr', 'Steve Prosek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-679-8338 Steve', '', NULL), (4993, 2422, 'Mr', 'Tim Patterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-350-4038', '', NULL), (4994, 2423, 'Mr', 'Ron Heckel/Scott Hanks ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '410-683-9202/410-461', '410-683-9297 FAX/443', NULL), (4995, 2424, 'Mr', 'Matt Clarke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-223-1051', '276-223-1653 Fax ', NULL), (4996, 2425, 'Mr', 'Jay Mazzoni', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 830-7840', '', NULL), (4997, 2426, 'Mr', 'Jay Mazzoni', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 495-5800', '(502) 495-5801 Fax', NULL), (4998, 2427, 'Mr', 'Jay Mazzoni', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 495-5800', '(502) 495-5801 Fax', NULL), (4999, 2428, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(703) 968-4780', '(703) 968-4778 Fax', NULL), (5000, 2429, 'Mr', 'Fred Durrant / Mike Sminchan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(614) 777-6013 / 614', '(614) 777-6160 Fax', NULL), (5001, 2430, 'Mr', 'Charles Saylor ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '606-573-4300', '606-573-6722 Fax', NULL), (5002, 2431, 'Mr', 'Thomas Moore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-651-4650 Tom Cel', '', NULL), (5003, 2432, 'Mr', 'Dr. Louay Mohammad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '225-767-9126', '225-767-9179 Fax ', NULL), (5004, 2433, 'Mr', 'Scott Sanders', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '717-418-5650 Scott C', '717-432-7343 FAX', NULL), (5005, 2434, 'Mr', 'Matt Demos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-253-2500 / 502-2', '502-253-2501 Fax', NULL), (5006, 2435, 'Mr', 'Brent Hattaway', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (5007, 2436, 'Mr', 'Brian Porterfield', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-509-9266 Brian', '', NULL), (5008, 2437, 'Mr', 'Huntae Kim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '571-237-0590 Huntae ', '703-858-1858 Fax', NULL), (5009, 2438, 'Mr', 'Joseph Kirchner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-255-3308 x 3732 ', '859-254-2327 Fax / 8', NULL), (5010, 2439, 'Mr', 'Allen Clark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-325-3401 Allen\'s', '614-875-1175 Fax', NULL), (5011, 2440, 'Mr', 'Michael Clinton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (5012, 2441, 'Mr', 'Dave Hammontree ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989- 288-2661 Ext. 2', '989- 288-6918 Fax', NULL), (5013, 2442, 'Mr', 'Tony Sands', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-303-7022 Cell To', '412-782-2376 Fax', NULL), (5014, 2443, 'Mr', 'Joe Dacsko/Brian Jimerson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-831-5500', '(216) 831-6053', NULL), (5015, 2444, 'Mr', 'John May ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '989-240-2936 John', '989-345-1100 Fax ', NULL), (5016, 2445, 'Mr', 'Janet McCarroll, QC', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 675-2717', '', NULL), (5017, 2446, 'Mr', 'Gary Rhinehart/Rob Kozicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 238-9331', '717-364-1640 Fax', NULL), (5018, 2447, 'Mr', 'Rhonda Snyder/Ray Tressler ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-283-6200 x201 Rh', '724-321-0096 Rhonda ', NULL), (5019, 2448, 'Mr', 'Rhonda Snyder/Steve Reed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-474-4904/724-321', '724-283-1067 Fax', NULL), (5020, 2449, 'Mr', 'Jonelle Shotwell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-340-1690 x 2635', '614-487-3704 Fax ', NULL), (5021, 2450, 'Mr', 'Tim Swift', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '240-876-6724', '', NULL), (5022, 2451, 'Mr', 'Karen Morlan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-866-1057 / 616-6', '616-464-1189 Fax', NULL), (5023, 2452, 'Mr', 'Shawn Newgard ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-815-4369 Cell Sh', '540-775-2563 Fax', NULL), (5024, 2453, 'Mr', 'Jason Yambert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '217-369-1737 Jason Y', '', NULL), (5025, 2454, 'Mr', 'Matt Brozowski / Ed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-647-3004', '616-647-3005 Fax ', NULL), (5026, 2455, 'Mr', 'Mark Blum ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-263-0110', '724-250-7450 Fax', NULL), (5027, 2456, 'Mr', 'Rodney Smith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '502-868-6221', '502-863-0834 Fax', NULL), (5028, 2457, 'Mr', 'Paul Garrett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '276-202-1183 Cell Pa', '276-889-4066 Fax / 2', NULL), (5029, 2458, 'Mr', 'Jackie Hatfield', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-872-8110', '304-872-7110 Fax', NULL), (5030, 2459, 'Mr', 'Bill Dominick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 863-0316', '', NULL), (5031, 2460, 'Mr', 'Jason Hardy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '360-388-0288 Jason\'s', 'No Fax (Use E-Mail)', NULL), (5032, 2461, 'Mr', 'Mike McGaw/Dave Krauss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-433-5465 Dave ', '216-433-8300 Fax / 2', NULL), (5033, 2462, 'Mr', 'Mike McGaw/Dave Krauss', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-433-5465 Dave ', '216-433-8300 Fax / 2', NULL), (5034, 2463, 'Mr', 'Christy James', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 743-3400', '(304) 743-3405 Fax', NULL), (5035, 2464, 'Mr', 'Ron Goshorn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (5036, 2465, 'Mr', 'Harry McGhee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121 x 4256', '814-766-4402 Fax ', NULL), (5037, 2466, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (5038, 2467, 'Mr', 'Mark Moyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-6870', '814-766-4402 Fax ', NULL), (5039, 2468, 'Mr', 'Mark Moyer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 224-2121 x 427', '814-766-4402 Fax ', NULL), (5040, 2469, 'Mr', 'Cheryl Weston ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-937-7868 Mark ', '814-766-4402 Fax ', NULL), (5041, 2470, 'Mr', 'Kurt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-330-2435', '814-766-4402 Fax ', NULL), (5042, 2471, 'Mr', 'Karen Walker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '570-235-1724', '814-766-4402 Fax ', NULL), (5043, 2472, 'Mr', 'Aaron Evans', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-231-1283', '412-231-0889 Fax/812', NULL), (5044, 2473, 'Mr', 'Joe Donbrowski/Chad Lincoln (Safety) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-246-0330 x 127/4', '412-246-0341 Fax Joe', NULL), (5045, 2474, 'Mr', 'Rick Hughes/Dave Dillon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-770-2477/724-770', '724-770-5601 Fax/ 72', NULL), (5046, 2475, 'Mr', 'Tracye Avant ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-344-4040', '216-344-4044 Fax', NULL), (5047, 2476, 'Mr', 'Ron Stauffer / Wendy Jurkowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-451-6270 Wendy', '616-451-6271 fax ', NULL), (5048, 2477, 'Mr', 'Zeerak Paydawy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-324-5272', '', NULL), (5049, 2478, 'Mr', 'Zeerak Paydawy/Jim Parsons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '313-304-0822 Larry\'s', '248-521-0537 Jim\'s c', NULL), (5050, 2479, 'Mr', 'Phil Gauffreaut / Ryan Walters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '484-893-1440', '248-324-5178 Fax', NULL), (5051, 2480, 'Mr', 'Debbie Klinger /Jim Parsons ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-524-6770 / 610-5', '248-324-5178 Fax', NULL), (5052, 2481, 'Mr', 'Jim Parsons / Debbie Klinger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-524-6770 Deb', '610-280-6666 Fax', NULL), (5053, 2482, 'Mr', 'Chuck Lee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(616) 381-1550', '(616) 381-1711 Fax', NULL), (5054, 2483, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', 'Use Email ', NULL), (5055, 2484, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', 'Use Email ', NULL), (5056, 2485, 'Mr', 'Tim Goodall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '513-321-5816', 'Use Email ', NULL), (5057, 2486, 'Mr', 'Bill Koniowka', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(607) 324-3375', '', NULL), (5058, 2487, 'Mr', 'Jerry Kenkel / Jamie Thompson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '812-539-4300', 'Use Email ', NULL); INSERT INTO `contact` (`ContactID`, `customerID`, `Title`, `firstName`, `lastName`, `Department`, `Address1`, `Address2`, `City`, `State`, `Zip`, `Phone`, `faxNumber`, `email`) VALUES (5059, 2488, 'Mr', 'Richie Smith/Tom Medvick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-767-4595 Jeff B', 'Use Email', NULL), (5060, 2489, 'Mr', 'Robert Walts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '315-469-3285', '315-469-1614 Fax', NULL), (5061, 2490, 'Mr', 'Rick Halas ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 285-3211', '716-286-6931 Fax', NULL), (5062, 2491, 'Mr', 'Chris Pridemore/Sean Mulligan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1309 Chris', '614-275-1354 Fax / 6', NULL), (5063, 2492, 'Mr', 'Chris Pridemore/Sean Mulligan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1309 Chris', '614-275-1354 Fax / 6', NULL), (5064, 2493, 'Mr', 'Chris Pridemore/Sean Mulligan ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '614-275-1309 Chris', '614-275-1354 Fax / 6', NULL), (5065, 2494, 'Mr', 'Greg Jacot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-949-1815 x 1800 ', '440-949-1206 Fax', NULL), (5066, 2495, 'Mr', 'Brian Dill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '904-545-7504 Brian D', '', NULL), (5067, 2496, 'Mr', 'Brent Bowly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '304-545-7606 Brent ', '(304) 722-4230 Fax', NULL), (5068, 2497, 'Mr', 'Howard Flint', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 755-0131', '304-755-0131 Fax num', NULL), (5069, 2498, 'Mr', 'Dave Beatty/Billy Harris ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-630-6239/330-630', '330-633-4939 Fax ', NULL), (5070, 2499, 'Mr', 'Chuck Meadows', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(606) 673-4413', '(606) 673-4415 Fax', NULL), (5071, 2500, 'Mr', 'Dave Rowland ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-847-9707', '937-847-9720 Fax ', NULL), (5072, 2501, 'Mr', 'Terry Martin / Carl / Frank Patterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(724) 258-6900', '(724) 258-8075 Fax', NULL), (5073, 2502, 'Mr', 'Jim Bray / John Vergeres(VP)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-263-0400', '703-263-9024 Fax', NULL), (5074, 2503, 'Mr', 'Brian Kelly/Charlie Bowling ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-536-6767x235 Bri', '(814) 536-6770 Fax/8', NULL), (5075, 2504, 'Mr', 'James Minear / Karen Minear', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '740-667-7309', '740-667-7306 Fax', NULL), (5076, 2505, 'Mr', 'Fernando Roldan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '517-206-4775 Fernand', '989-755-4254 Ashley ', NULL), (5077, 2506, 'Mr', 'Anthony Gale ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-224-2121', '814-766-4402 Fax ', NULL), (5078, 2507, 'Mr', 'Chris Neely/Seth Wolfinger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-6546 ', '(717) 783-5955 Fax', NULL), (5079, 2508, 'Mr', 'Chris Neely/Roy/Mike/Matt/Gerry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-6546 or (7', '(717) 783-5955 Fax', NULL), (5080, 2509, 'Mr', 'Chris Neely/Roy Trout/Mike', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(717) 787-1910', '', NULL), (5081, 2510, 'Mr', 'Chad Eckert / Amber Kepple', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 781-6262 x3', '(814) 781-3196 Fax', NULL), (5082, 2511, 'Mr', 'Billy Lanthorn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '859-991-8598', '859-441-7986 Fax', NULL), (5083, 2512, 'Mr', 'Terry Hauser/Tim Dailey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '440-248-0100 x 2519 ', '440-248-1527 Fax', NULL), (5084, 2513, 'Mr', 'Jim Chill / Don Lane ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-651-0953 Jim Cel', '724-658-4486 Fax/330', NULL), (5085, 2514, 'Mr', 'Julio Pascella', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-322-5190', '301-322-5197 Fax', NULL), (5086, 2515, 'Mr', 'Michael Heacock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-568-2881/610-644', '610-644-8682 Fax', NULL), (5087, 2516, 'Mr', 'Andy Molek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-258-0364 Andy', '', NULL), (5088, 2517, 'Mr', 'Nancy Pierce/David Bussey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-723-3618 ', '330-723-7019 Fax', NULL), (5089, 2518, 'Mr', 'David Bussey/Gary Abel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-725-0205 Ext.227', '330-725-5716 FAX', NULL), (5090, 2519, 'Mr', 'Brian Smith ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-596-3232', '937-596-6268 Fax', NULL), (5091, 2520, 'Mr', 'Brian Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-668-8000', ' ', NULL), (5092, 2521, 'Mr', 'Bruce White-Con/Mark Hull-Asph', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 263-6108/304-2', '(304) 263-0142 Fax ', NULL), (5093, 2522, 'Mr', 'Satish Korpe ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '301-336-6857', '301-336-6899 Fax ', NULL), (5094, 2523, 'Mr', 'Tori Vanderhaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '248-625-8080 ', '248-625-0978 Fax', NULL), (5095, 2524, 'Mr', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (5096, 2525, 'Mr', 'Don PrinzBach', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '540-355-2301 Cell ', '', NULL), (5097, 2526, 'Mr', 'John Tranter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '518-377-9841 John x1', '716-694-8638 Fax', NULL), (5098, 2527, 'Mr', 'Dave Sabol/Steve Zimmer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-441-4329 Cell St', '(216) 642-7008 Fax', NULL), (5099, 2528, 'Mr', 'Joel Walter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(517) 394-5700', '', NULL), (5100, 2529, 'Mr', 'Kathy Kelly - QC Mgr', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '703-396-6000', '703-396-6090 FAX', NULL), (5101, 2530, 'Mr', 'Ryan Rasmussen / Rich Sweeney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', NULL), (5102, 2531, 'Mr', 'William White/Michael Ford ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(502) 244-3848 ', '(502) 244-3580', NULL), (5103, 2532, 'Mr', 'Jacob Folsom/Nathan/Harold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1-859-983-9445 Harol', '859-299-2481 Fax', NULL), (5104, 2533, 'Mr', 'Ernie Kihl', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-909-5840 Ernie', '716-853-2619 Fax', NULL), (5105, 2534, 'Mr', 'Justin Gibbons', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-382-0373', '814-382-0375 Fax', NULL), (5106, 2535, 'Mr', 'Lou Schwab / Craig Witherell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-686-3710 / 716-4', '716-686-3716 Fax / 7', NULL), (5107, 2536, 'Mr', 'Keith Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-818-6671 Keith', '716-853-2619 Fax', NULL), (5108, 2537, 'Mr', 'Keith Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-818-6671 Keith', '716-686-3716 Fax', NULL), (5109, 2538, 'Mr', 'Keith Taylor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-818-6671 Keith', '716-853-2619 Fax', NULL), (5110, 2539, 'Mr', ' ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '915-238-2673 Jason', '915-779-8301 Fax ', NULL), (5111, 2540, 'Mr', 'John', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-644-6370', '610-644-2930 Fax', NULL), (5112, 2541, 'Mr', 'Lynn McGregor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-372-3716 x 120', '330-372-5594 Fax', NULL), (5113, 2542, 'Mr', 'Gary Langerman/Bill Wynne', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-469-1106 Bill', '216-781-2820 Gary ', NULL), (5114, 2543, 'Mr', 'Eric Robey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '419-995-8071', '', NULL), (5115, 2544, 'Mr', 'Jason Reynolds / Butch Pavlik', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-362-3800 ', '724-274-2417 Fax', NULL), (5116, 2545, 'Mr', 'Pete Armlovich(716-642-5393 Pager)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(716) 649-3260 Ext. ', '716-649-3217 Fax/716', NULL), (5117, 2546, 'Mr', 'Pete Armlovich / Jeff', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '716-460-6597 Pager', '716-649-3217 Fax/716', NULL), (5118, 2547, 'Mr', 'Tracy Treneff/Jeremy Marcinko ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(740) 363-1376 QC ex', '(740) 363-1377 Fax/7', NULL), (5119, 2548, 'Mr', 'Peter Heinrich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '610-323-6600', '610-323-6601 Fax', NULL), (5120, 2549, 'Mr', 'Randy Guy / Jerry Schippa ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '920-419-6361', 'No Fax Yet', NULL), (5121, 2550, 'Mr', 'Joe Schreckengost ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '814-642-2945', '814-642-2946 Fax ', NULL), (5122, 2551, 'Mr', 'Tim Olsen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(814) 454-0195', '(814) 453-2020 Fax', NULL), (5123, 2552, 'Mr', 'Kevin Zinn/Harry Alhan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '215-631-4264 Harry', '267-446-8390 Kevin ', NULL), (5124, 2553, 'Mr', 'Greg Fonarev x 110/Lloyd Kaufman ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '734-422-8000/586-615', '734-422-5342 Fax/734', NULL), (5125, 2554, 'Mr', 'Chad Harkleroad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-596-2228 Chad', '', NULL), (5126, 2555, 'Mr', 'Chris Kurek/Jeff Csurilla', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-766-0734 Jeff', '412-449-0704 Fax ', NULL), (5127, 2556, 'Mr', 'Mick Strouse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '724-625-1505 Mars Of', '412-449-0704 Fax ', NULL), (5128, 2557, 'Mr', 'Frank Biter / Ron McGinnis ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '412-445-8496', '412-449-0694 Ron ', NULL), (5129, 2558, 'Mr', 'Vince Ujcich', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(245) 372-1600', '', NULL), (5130, 2559, 'Mr', 'David Swiney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '615-294-8825 David', '(502) 448-3134 Fax', NULL), (5131, 2560, 'Mr', 'Ernest Doctor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '270-706-6689 Ernest', '270-268-6435 Cell Er', NULL), (5132, 2561, 'Mr', 'Jennifer Collis / Manoj N. Kumar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '216-515-4493 Jennife', '216-566-3837 Fax ', NULL), (5133, 2562, 'Mr', 'Kurt O. Seidler/Greg Cook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-746-4482', '330-259-3560 Fax ', NULL), (5134, 2563, 'Mr', 'Viorel Arhire / Ramona Murphy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '330-966-0444 x 2012 ', '(330) 966-8505 Fax/3', NULL), (5135, 2564, 'Mr', 'Larry Wanamaker / Bill Krebs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '937-512-2441 / 937-5', '937-512-2475 Fax', NULL), (5136, 2565, 'Mr', 'Dave Verdon/Roberta Reynolds', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '607-758-7182', '607-758-7188 Fax', NULL), (5137, 2566, 'Mr', 'Mark Williams', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(304) 877-6451', '(304) 877-5789 Fax', NULL), (5138, 2567, 'Mr', 'Brad Parlotto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(269) 323-3555', '(269) 323-3553 Fax/2', NULL), (5139, 2568, 'Mr', 'Jeremy Hugo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '616-406-1756', '616-406-1749 Fax', NULL), (5140, 2569, 'Mr', 'Seth Molenaar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(440) 256-6500', '(440) 256-6507 Fax', NULL), (5141, 2570, 'Mr', 'Eric Michener/Debbie Sherwood/Andy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '317-876-0200 Debbie/', ' ', NULL), (5142, 2571, 'Mr', 'Mark Murphy / Tom Hughes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '(412) 231-8600 offic', '412-657-9083 cell', NULL); -- -------------------------------------------------------- -- -- Table structure for table `customer` -- CREATE TABLE `customer` ( `customerNumber` int(11) NOT NULL, `companyName` varchar(100) DEFAULT NULL, `TourMonth` date DEFAULT NULL, `companyIdentifier` varchar(50) DEFAULT NULL, `billingContact` int(11) DEFAULT NULL, `lastUpdated` date DEFAULT NULL, `dateAcquired` date DEFAULT NULL, `scheduledDate` date DEFAULT NULL, `taxExemptStatus` varchar(5) DEFAULT NULL, `County` varchar(50) DEFAULT NULL, `taxRate` float DEFAULT NULL, `creditTerms` varchar(20) DEFAULT NULL, `COD_Date` varchar(25) DEFAULT NULL, `certsInstructs` bit(1) DEFAULT NULL, `activeStatus` varchar(25) DEFAULT NULL, `QARequirement` bit(1) DEFAULT NULL, `PONum` varchar(50) DEFAULT NULL, `companyDivision` varchar(100) DEFAULT NULL, `callPrior` varchar(25) DEFAULT NULL, `technicianAssigned` varchar(10) DEFAULT NULL, `Comments` text, `mapDone` bit(1) DEFAULT NULL, `SolicitationDate` date DEFAULT NULL, `TourMonthInput` varchar(25) DEFAULT NULL, `lastUpdatedInput` varchar(25) DEFAULT NULL, `dateAcquiredInput` varchar(25) DEFAULT NULL, `scheduledDateInput` varchar(25) DEFAULT NULL, `SolicitationDateInput` varchar(25) DEFAULT NULL, `OrderTaken` varchar(25) DEFAULT NULL, `WorkOrderTyped` varchar(25) DEFAULT NULL, `WorkOrderCopied` varchar(25) DEFAULT NULL, `WorkDone` varchar(25) DEFAULT NULL, `CertsDone` varchar(25) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `customer` -- INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1, 'Glynn Geotechnical', '2020-04-29', 'GLYNNGEO1', 0, '2020-04-29', '1970-01-01', '2020-04-29', 'OOS', NULL, NULL, NULL, '1970-01-01', b'1', 'Active', b'1', 'GET ON SITE!', 'Glynn Geotechnical', 'Yes-definite', 'CJS', NULL, b'1', '1970-01-01', 'January', '2/6/2013', '', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2, 'Meloon Foundries, Inc. ', '0000-01-00', 'MELOON', 0, '2013-01-31', NULL, '2015-01-19', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Meloon Foundries, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/31/2013', 'Sep-08', '1/19/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (3, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENTNJ', 0, '2009-01-08', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes ', 'LSM', 'Range: 45K', NULL, NULL, 'January', '1/8/2009', 'Jan-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (4, 'Weyerhaeuser NR - Sutton', '0000-02-00', 'WEYERHAEUSER', 0, '2013-04-25', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Weyerhaeuser', 'Yes', 'DLP', 'Range: 100 lbs to 10K (E-4)', NULL, NULL, 'February', '4/25/2013', 'Oct-06', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (5, 'Geotechnical Laboratories, Inc.', '0000-03-00', 'GEOTECHCMD', 0, '2010-03-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'Conditional Net30 ', 'Geotechnical Laboratories, Inc.', 'Yes', 'TPT', 'Cap: 300lbs', NULL, NULL, 'March', '3/3/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (6, 'Potowmac Engineers, Inc. ', '0000-03-00', 'POTOWMAC', 0, '2009-03-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Potowmac Engineers, Inc. ', 'Yes', 'TPT', '', NULL, NULL, 'March', '3/17/2009', 'Dec-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (7, 'Head, Inc. ', '0000-03-00', 'HEADINC', 0, '2009-02-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Head, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'March', '2/26/2009', 'Feb-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (8, 'ATC Associates (Cardno ATC)', '0000-05-00', 'ATHERM', 0, '2013-05-29', NULL, '2014-05-05', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ATC Associates (Cardno ATC)', 'Yes', 'DLP', 'Range: 2.5K (E-4)', NULL, NULL, 'May', '5/29/2013', 'Oct-06', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (9, 'Esmer & Associates', '0000-05-00', 'ESMER&AS', 0, '2013-05-29', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Esmer & Associates', 'Yes-1 day', 'TPJ', 'Range: 2.5K ', NULL, NULL, 'May', '5/29/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (10, 'Transcat, Inc.', '0000-05-00', 'WESTCON', 0, '2008-11-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'0', '', 'Westcon, Inc.', 'No', 'DLP', 'Range: 10 Metric Ton', NULL, NULL, 'May', '11/26/2008', 'Jul-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (11, 'US Army TMDE Support Center', '0000-05-00', 'USARMY/CO', 0, '2008-10-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'US Army TMDE Support Center', 'Yes', 'III', '', NULL, NULL, 'May', '10/14/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (12, 'Hercules Tire & Rubber Company', '0000-05-00', 'HERCULESTIRE', 0, '2008-10-14', '0000-00-00', NULL, 'No', 'Hancock 6.75%', 6.75, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Hercules Tire & Rubber Company', '', '', 'Range: 5,000 psi', NULL, NULL, 'May', '10/14/2008', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (13, 'Ahern & Associates', '0000-05-00', 'AHERN2', 0, '2010-05-20', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Ahern & Associates', 'Yes ', 'DLP', '', NULL, NULL, 'May', '5/20/2010', 'Dec-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (14, 'Somat Engineering, Inc', '0000-04-00', 'SOMATENG1', 0, '2013-05-29', '0000-00-00', '2014-04-28', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'Somat Engineering, Inc.', 'Yes', 'KAS', 'Range: 30 InHg', NULL, NULL, 'April', '5/29/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (15, 'Somat Engineering, Inc.', '0000-04-00', 'SOMATENG', 0, '2013-05-29', '0000-00-00', '2014-04-28', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'Somat Engineering, Inc.', 'Yes', 'KAS', 'Range: 1 inch', NULL, NULL, 'April', '5/29/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (16, 'Somat Engineering, Inc.', '0000-06-00', 'SOMATGRA', 0, '2013-06-25', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Somat Engineering, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'June', '6/25/2013', 'Aug-08', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (17, 'Soils & Materials Engineers', '0000-06-00', 'SOILS/UTICA', 0, '2009-06-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Soils & Materials Engineers', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/16/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (18, 'Metco Industries, Inc.', '0000-07-00', 'METCO', 0, '2013-08-06', NULL, '2014-07-14', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Metco Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/6/2013', 'Nov-08', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (19, 'Vishay Dale Electronics', '0000-07-00', 'VISHAY1', 0, '2008-10-14', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Vishay Dale Electronics', 'No', 'LSM', 'Used with below load cell/transducer', NULL, NULL, 'July', '10/14/2008', 'Dec-04', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (20, 'Hi-Way Paving Company', '0000-07-00', 'HIWAYSTATE', 0, '2009-07-08', NULL, NULL, 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Hi-Way Paving Company', 'Yes', 'DLP', '', NULL, NULL, 'July', '7/8/2009', 'Jul-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (21, 'Ahern & Associates', '0000-08-00', 'AHERN', 0, '2013-07-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', ' ', 'Ahern & Associates', 'Yes', 'KAS', '', NULL, NULL, 'August', '7/26/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (22, 'CBC Engineers & Associates', '0000-08-00', 'CBC/HAZARD', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'CBC Engineers & Associates', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (23, 'Allrite Ready Mix', '0000-08-00', 'ALLRITE', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Allrite Ready Mix', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (24, 'CBC Engineers & Associates', '0000-08-00', 'CBC66238', 0, '2013-09-17', NULL, '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'CBC Engineers & Associates', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/17/2013', 'Mar-04', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (25, 'Concrete Materials Co., LLC', '0000-08-00', 'CONCRETEMAT', 0, '2013-09-17', NULL, '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Concrete Materials Co., LLC', 'Yes-1 day', 'TPJ', '', NULL, NULL, 'August', '9/17/2013', 'Mar-98', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (26, 'Cumberland Valley Engineering', '0000-08-00', 'CUMBERLAND1', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cumberland Valley Engineering', 'Yes- 1 day', 'TPJ', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (27, 'Geotek', '0000-08-00', 'GEOTEK', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geotek (Nolan Construction)', 'Yes-definite', 'TPJ', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (28, 'Hydration Kontrol Company', '0000-08-00', 'HYDRAKON', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Hydration Kontrol Company', 'Yes-Definite', 'KAS', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (29, 'Leo Miller & Associates', '0000-08-00', 'LEOMILLER', 0, '2013-09-17', NULL, '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Leo Miller & Associates', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'August', '9/17/2013', 'Jun-99', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (30, 'Ultra Technic Services', '0000-08-00', 'ULTRATECH', 0, '2013-07-18', NULL, '2014-08-25', 'No', 'Butler 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', '', 'Ultra Technic Services', 'Yes-1week', 'DP', '', NULL, NULL, 'August', '7/18/2013', 'Aug-04', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (31, 'Grant County Concrete ', '0000-08-00', 'GALLATIN', 0, '2013-09-17', NULL, '2014-08-25', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Grant County Concrete ', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/17/2013', 'Aug-07', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (32, 'Ron Crane Scale Sales -USA', '0000-08-00', 'PBMSAFE', 0, '2008-09-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'PBM Safe Lift & Service Co., LLC', 'No', 'III', '', NULL, NULL, 'August', '9/9/2008', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (33, 'Oldcastle Precast, Inc. ', '0000-08-00', 'OLDBETH', 0, '2008-08-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Oldcastle Precast, Inc. ', 'No', 'DLP', '', NULL, NULL, 'August', '8/19/2008', 'Aug-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (34, 'NTH Consultants, Ltd. ', '0000-08-00', 'NTHCLEV', 0, '2009-03-09', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'NTH Consultants, Ltd. ', 'Yes', 'III', '', NULL, NULL, 'August', '3/9/2009', 'Aug-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (35, 'Contech Bridge Solutions ', '0000-08-00', 'CONTECH', 0, '2009-07-30', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Contech Bridge Solutions ', 'Yes', 'TJT', '', NULL, NULL, 'August', '7/30/2009', 'Oct-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (36, 'Pawnee, Inc.', '0000-08-00', 'PAWNEE', 0, '2012-06-19', NULL, NULL, 'No', 'Athens 7%', 7, 'COD', '11/16/2004', b'1', 'Inactive', b'1', 'GET PO#', 'Pawnee, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'August', '6/19/2012', 'Nov-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (37, 'Triad Engineering', '0000-02-00', 'TRIAD/HUTTON', 0, '2013-04-11', '0000-00-00', '2014-02-03', 'No', 'Athens 7 %', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Triad Engineering', 'Yes', 'KAS', '', NULL, NULL, 'February', '4/11/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (38, 'Anchor Tool & Die', '0000-08-00', 'ANCHOR', 0, '2010-07-22', '0000-00-00', NULL, 'Yes', '', 0, 'COD', '1993', b'1', 'Inactive ', b'1', '', 'Anchor Tool & Die', 'Yes', 'TJT', 'Range: 8K', NULL, NULL, 'August', '7/22/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (39, 'Professional Service Industries, Inc.', '0000-08-00', 'PROF/BUTLER', 0, '2009-07-30', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Professional Service Industries, Inc.', 'Yes', 'III', '', NULL, NULL, 'August', '7/30/2009', 'Aug-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (40, 'BBC& M Engineering', '0000-08-00', 'BBC&M 1', 0, '2011-07-27', NULL, NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'BBC& M Engineering', 'Yes', 'LSM', '', NULL, NULL, 'August', '7/27/2011', 'Jun-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (41, 'Valley Quarries, Inc.', '0000-09-00', 'VALLEYTRS', 0, '2013-09-23', '0000-00-00', '2014-09-01', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Valley Transit Mix Shippensburg', 'Yes', 'TPJ', '', NULL, NULL, 'September', '9/23/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (42, 'Blend Pro', '0000-09-00', 'BLENDPRO', 0, '2013-09-23', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'Get PO#', 'Blend Pro', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/23/2013', 'Nov-08', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (43, 'Clinton Power Station', '0000-10-00', 'CLINTON', 0, '2013-10-14', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Clinton Power Station', 'Yes', '', '', NULL, NULL, 'October', '10/14/2013', 'Oct. 2013', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (44, 'Tourney Consulting Group, LLC', '0000-09-00', 'TOURNEY', 0, '2013-10-14', NULL, '2014-09-22', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'Get PO#', 'Tourney Consulting Group, LLC', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', 'Aug-08', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (45, 'Hi-Way Paving Company', '0000-09-00', 'HIWAYUNION', 0, '2009-08-11', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Hi-Way Paving Company', 'Yes', 'DLP', '', NULL, NULL, 'September', '8/11/2009', 'May-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (46, 'HRI, Inc.', '0000-09-00', 'HRI/69077', 0, '2009-09-17', '0000-00-00', NULL, 'NO', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'HRI, Inc.', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'September', '9/17/2009', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (47, 'HRI, Inc.', '0000-09-00', 'HRILAW', 0, '2009-07-30', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'HRI, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'September', '7/30/2009', 'May-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (48, 'Joseph B. Fay Company', '0000-09-00', 'JBF/83086', 0, '2009-07-29', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'GET PO#', 'Joseph B. Fay Company', 'Yes', 'TJT', '', NULL, NULL, 'September', '7/29/2009', 'Oct-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (49, 'Cellular Materials International, Inc. ', '0000-10-00', 'CELLULAR', 0, '2013-08-27', NULL, '2014-10-13', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Cellular Materials International, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'October', '8/27/2013', 'Sep-08', '10/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (50, 'Cathedral Stone Products ', '0000-10-00', 'CATHEDRAL', 0, '2013-10-17', NULL, '2014-10-13', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Cathedral Stone Products ', 'Yes', 'TJT', '', NULL, NULL, 'October', '10/17/2013', 'Sep-08', '10/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (51, 'Ron Crane Scale Sales-USA', '0000-10-00', 'FPLE WIND', 0, '2008-10-13', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'FPLE Wind Central Maintenance ', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/13/2008', 'Oct-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (52, 'Johnson Brothers', '0000-10-00', 'JOHNSON', 0, '2009-07-14', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Johnson Brothers', 'No', 'III', '', NULL, NULL, 'October', '7/14/2009', 'Sep-07', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (53, 'NTH Consultants', '0000-10-00', 'NTH/FARMOOS2', 0, '2008-11-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'NTH Consultants', 'Yes - 1 day', 'TPT', 'Cap: 650 lbs (E-4 & Man Specs)', NULL, NULL, 'October', '11/17/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (54, 'Brayman Construction', '0000-10-00', 'BRAYMANMD', 0, '2010-09-22', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Brayman Construction', 'Yes', 'DLP', 'Range: 100 PSI', NULL, NULL, 'October', '9/22/2010', 'Oct-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (55, 'Thrasher Engineering, Inc.', '0000-11-00', 'THRASHER', 0, '2012-11-14', NULL, '2013-11-04', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Thrasher Engineering, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'November', '11/14/2012', 'Nov-04', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (56, 'Jeff Zell Consultants', '0000-11-00', 'ZELLCONS', 0, '2013-08-28', '0000-00-00', '2013-11-04', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Jeff Zell Consultants', 'Yes-1 day', 'CJS', '', NULL, NULL, 'November', '8/28/2013', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (57, 'Gulisek Construction, LLC', '0000-11-00', 'GULISEK91049', 0, '2013-07-15', '0000-00-00', '2013-11-04', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Gulisek Construction, LLC', 'Yes', 'TPJ', '', NULL, NULL, 'November', '7/15/2013', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (58, 'Sika Corporation', '0000-11-00', 'SIKA', 0, '2012-11-14', '0000-00-00', '2013-11-04', 'No', 'Marion 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Sika Corporation', 'Yes - 1 Day', 'CJS', '', NULL, NULL, 'November', '11/14/2012', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (59, 'Professional Service Industries, Inc.', '0000-11-00', 'PSI/PIT', 0, '2013-09-19', NULL, '2013-11-11', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Professsional Service Industries, Inc.', 'Yes', 'DLP', 'Range: 400 lbs to 120K ', NULL, NULL, 'November', '9/19/2013', 'Dec-03', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (60, 'Thelen Associates, Inc.', '0000-11-00', 'THELEN/ERL', 0, '2012-12-10', '0000-00-00', '2013-11-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Thelen Associates, Inc.', 'Yes', 'CJS', 'Range: 3K to 250K', NULL, NULL, 'November', '12/10/2012', '', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (61, 'Thelen Associates, Inc.', '0000-11-00', 'THELEN/ERL1', 0, '2012-12-10', '0000-00-00', '2013-11-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Thelen Associates, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'November', '12/10/2012', '', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (62, 'Soils & Materials Engineers ', '0000-11-00', 'QORELEX', 0, '2013-08-16', '0000-00-00', '2013-11-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers ', 'Yes-definite', 'CJS', 'Range: 150 PSI', NULL, NULL, 'November', '8/16/2013', '', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (63, 'The Walker Company of KY', '0000-11-00', 'WALKERCO', 0, '2013-09-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'In Active', b'1', '', 'The Walker Company of KY', '', 'TJT', '', NULL, NULL, 'November', '9/13/2013', 'Oct-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (64, 'GEM Engineering ', '0000-11-00', 'GEMENG', 0, '2012-12-04', NULL, '2013-11-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'GEM Engineering ', 'Yes', 'KAS', 'Range: 500 lbs', NULL, NULL, 'November', '12/4/2012', 'Nov-06', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (65, 'Bristol Group, Inc.', '0000-11-00', 'BRISTOL', 0, '2012-12-07', NULL, '2013-11-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET PO#', 'Bristol Group, Inc.', 'Yes', 'KAS', 'Range: 35K (8,050 PSI)', NULL, NULL, 'November', '12/7/2012', 'Jan-07', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (66, 'Ron Crane Scale Sales - USA', '0000-11-00', 'LOCK', 0, '2008-11-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Lockheed Martin/Edwards AFB', '', 'III', '', NULL, NULL, 'November', '11/26/2008', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (67, 'Ron Crane Scale Sales-USA', '0000-11-00', 'WAUKESHA', 0, '2009-10-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Waukesha Foundry', 'No', 'III', '', NULL, NULL, 'November', '10/13/2009', 'Nov-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (68, 'Columbia Gas of Pennsylvania', '0000-11-00', 'COLUMBIAGAS3', 0, '2008-11-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Columbia Gas of Pennsylvania', '', 'LSM', 'Range: 35 in H20', NULL, NULL, 'November', '11/26/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (69, 'Cement Systems, Inc. ', '0000-11-00', 'CEMENTPGH', 0, '2008-10-28', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Cement Systems, Inc. ', 'Yes', '', '', NULL, NULL, 'November', '10/28/2008', 'Oct-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (70, 'Pennsylvania Industrial Heat Treaters', '0000-11-00', 'PAHEAT', 0, '2009-11-03', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Pennsylvania Industrial Heat Treaters', 'Yes', 'LSM', '', NULL, NULL, 'November', '11/3/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (71, 'Taylor Ready Mix', '0000-11-00', 'TAYLOR', 0, '2010-10-20', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Taylor Ready Mix', 'Yes', 'TJT', '', NULL, NULL, 'November', '10/20/2010', 'Oct-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (72, 'Soil Testing & Engineering, Ltd.', '0000-11-00', 'STE', 0, '2009-11-03', NULL, NULL, 'No', 'Franklin 7%', 7, 'COD', '', b'0', 'Inactive ', b'0', '', 'Soil Testing & Engineering, Ltd.', 'Yes', '', '', NULL, NULL, 'November', '11/3/2009', 'Dec-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (73, 'Structural Group, Inc. ', '0000-10-00', 'STRUCTPOMP', 0, '2013-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Structural Group, Inc. ', 'Yes', 'TJ/CS', 'Range: 300 lbs to 3,000 lbs ', NULL, NULL, 'October', '10/15/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (74, 'Interra, Inc.', '0000-12-00', 'GLSEC', 0, '2013-07-16', NULL, '2013-12-02', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Interra, Inc', 'Yes', 'KAS', 'Range:', NULL, NULL, 'December', '7/16/2013', 'Dec-08', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (75, 'Eriez Manufacturing', '0000-12-00', 'ERIEZ', 0, '2012-12-18', NULL, '2013-12-09', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Eriez Manufacturing', 'Yes', 'III', '', NULL, NULL, 'December', '12/18/2012', 'Nov-08', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (76, 'Ron Crane Scale Sales - USA', '0000-12-00', 'DURON', 0, '2008-12-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Duron Systems ', 'No', 'III', '', NULL, NULL, 'December', '12/18/2008', 'Mar-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (77, 'R.I. Lampus', '0000-12-00', 'DORENLAMPUS', 0, '2011-11-21', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'R.I. Lampus (Doren, Inc.)', 'Yes', 'TLR', '', NULL, NULL, 'December', '11/21/2011', 'Feb-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (78, 'Delta Constructors, Inc.', '0000-12-00', 'DELTACONST', 0, '2009-11-06', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Delta Constructors, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'December', '11/6/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (79, 'Farabaugh Engineering & Testing, Inc. ', '0000-01-00', 'FARABAUGH', 0, '2012-12-05', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Farabaugh Engineering & Testing, Inc. ', 'Yes', 'III', 'Range: 5K LC: S/N 7H261502000650', NULL, NULL, 'January', '12/5/2012', 'Feb-09', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (80, 'University of Akron', '0000-01-00', 'UNIVAKRON2', 0, '2013-02-04', NULL, '2014-01-13', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'CREDIT CARD', 'University of Akron', 'Yes', 'KAS', '', NULL, NULL, 'January', '2/4/2013', 'Janaury 2008', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (81, 'Custom Mix Concrete', '0000-01-00', 'CUSTOMCHEM', 0, '2013-02-04', NULL, '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', ' Custom Mix Concrete', 'Yes', 'KAS', '', NULL, NULL, 'January', '2/4/2013', 'Jan-07', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (82, 'Quality Inspection Services, Inc. ', '0000-01-00', 'QUALITYSYRA1', 0, '2013-02-04', NULL, '2014-01-20', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'DLP', 'Range: 2K (ID# Q-2623)', NULL, NULL, 'January', '2/4/2013', 'Jan-08', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (83, 'Accu-Cal, Inc.', '0000-01-00', 'ACCUCAL', 0, '2009-01-21', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Southern Concrete Materials', 'Yes', 'III', '', NULL, NULL, 'January', '1/21/2009', 'Jan-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (84, 'Custom Mix Concrete ', '0000-01-00', 'CUSTOMHORSE', 0, '2010-01-19', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Custom Mix Concrete ', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'January', '1/19/2010', 'Jan-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (85, 'A & B Foundry & Machining', '0000-01-00', 'A&BFOUNDRY', 0, '2010-12-02', NULL, NULL, 'Yes', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'CREDIT CARD', 'A & B Foundry & Machining', 'Yes', 'III', '', NULL, NULL, 'January', '12/2/2010', 'Jan-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (86, 'Kent State University', '0000-01-00', 'KENTSTATE', 0, '2012-01-04', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Kent State University', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/4/2012', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (87, 'Wades Concrete', '0000-01-00', 'WADES', 0, '2011-12-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Wades Concrete', 'Yes-Definite', 'TLR', '', NULL, NULL, 'January', '12/5/2011', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (88, 'Dalrymple Gravel & Construction', '0000-01-00', 'DALRYC', 0, '2010-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Dalrymple Gravel & Construction', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'January', '1/19/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (89, 'Dalrymple Gravel & Construction', '0000-01-00', 'DALRYFI', 0, '2010-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Dalrymple Gravel & Construction', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'January', '1/19/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (90, 'New York Department of Transportation', '0000-01-00', 'NYDOT/HORN', 0, '2010-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'New York Department of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/19/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (91, 'Ohio Department of Transportation', '0000-01-00', 'OHIODOT1', 0, '2011-12-20', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Ohio Department of Transportation', 'Yes', 'LSM', 'Range: 150 psi', NULL, NULL, 'January', '12/20/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (92, 'Ohio Department of Transportation', '0000-01-00', 'OHIODOT2', 0, '2011-12-20', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Ohio Department of Transportation', 'Yes', 'LSM', 'Range: 100 psi', NULL, NULL, 'January', '12/20/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (93, 'K.O.I Precast Concrete Products ', '0000-02-00', 'KOI', 0, '2013-02-20', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'K.O.I Precast Concrete Products ', 'Yes', 'KAS', '', NULL, NULL, 'February', '2/20/2013', 'Jan-09', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (94, 'Bowser Morner Testing Lab', '0000-02-00', 'BOWSERCINN', 0, '2013-02-20', NULL, '2014-02-03', 'No', 'Hamilton 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Bowser Morner Testing Lab', 'Yes', 'CJS', '', NULL, NULL, 'February', '2/20/2013', 'Jan-09', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (95, 'Michigan Department of Transportation', '0000-02-00', 'MDOTKAL', 0, '2013-03-04', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes-definite', 'KAS', '', NULL, NULL, 'February', '3/4/2013', 'Jun-98', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (96, 'Future Fence Company', '0000-02-00', 'FUTUREFENCE', 0, '2013-01-08', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Future Fence Company', 'Yes', 'CJS', 'Range: 45K', NULL, NULL, 'February', '1/8/2013', 'Feb-07', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (97, 'Gavco Materials', '0000-02-00', 'GAVUNION', 0, '2013-02-27', '0000-00-00', '2014-02-17', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Gavco Materials', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/27/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (98, 'Ron Crane Scale Sales-USA, Inc.', '0000-02-00', 'A-1 SCALE', 0, '2009-02-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'A - 1 Scale', 'Yes', 'III', '', NULL, NULL, 'February', '2/26/2009', 'Feb-09', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (99, 'Ron Crane Scale Sales-USA, Inc.', '0000-02-00', 'BOMBCANADA', 0, '2010-05-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Bombardier Aerospace', 'Yes', 'DLP', '', NULL, NULL, 'February', '5/26/2010', 'Feb-09', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (100, 'Advanced Drainage Systems, Inc.', '0000-02-00', 'ADVDRAIN', 0, '2010-01-18', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Advanced Drainage Systems, Inc.', 'Yes-1 Day', 'DLP', 'Range: 50 lbs to 5,500 lbs (ID# 041)', NULL, NULL, 'February', '1/18/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (101, 'Harris & Associates', '0000-02-00', 'HARRIS', 0, '2009-01-12', NULL, NULL, '', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Harris & Associates', 'Yes', '', '', NULL, NULL, 'February', '1/12/2009', 'Jan-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (102, 'Geotechnical Consulting & Testing, Inc.', '0000-02-00', 'GEOCONTEST', 0, '2009-02-10', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Geotechnical Consulting & Testing, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/10/2009', 'Feb-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (103, 'Erickson Air-Crane Inc.', '0000-05-00', 'ERICKSONAIR', 0, '2013-05-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Erickson Air-Crane Inc.', 'Yes', 'III', '', NULL, NULL, 'May', '5/14/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (104, 'Concrete Pipe & Precast', '0000-03-00', 'AMERICAST1', 0, '2013-03-22', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Concrete Pipe & Precast', 'Yes', 'KAS', '', NULL, NULL, 'March', '3/22/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (105, 'NTH Consultants, Ltd.', '0000-03-00', 'NTH/CLEVELAND', 0, '2013-04-03', '0000-00-00', '2014-03-10', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'NTH Consultants. Ltd.', 'Yes', 'KAS', 'Range: 550 lbs ', NULL, NULL, 'March', '4/3/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (106, 'David Blackmore & Associates', '0000-03-00', 'BLACKMOR', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'David Blackmore & Associates', 'Yes- 1 day', 'CJS', 'Range: 500K ', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (107, 'Commonwealth of Pennsylvania', '0000-03-00', 'PADOT-COM', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Pennsylvania Department of Transportation', 'Yes-3 days', 'DLP', 'Range: 3 inches', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (108, 'Commonwealth of Pennsylvania', '0000-03-00', 'PADOTHAR1', 717, '2013-04-03', '0000-00-00', '2014-03-17', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Pennsylvania Department of Transportation', 'Yes-3 days', 'DLP', 'Range: 0.4 Inch (Vertical LVDT)', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (109, 'Commonwealth of Pennsylvania', '0000-03-00', 'PADOTHAR3', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Pennsylvania Department of Transportation', 'Yes-3 days', 'DLP', 'Range: 1 Inches ', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (110, 'S J A Construction, Inc. ', '0000-03-00', 'SJACONST1', 0, '2013-06-17', NULL, NULL, 'No', 'Philadelphia 8%', 8, 'Net 30 ', '', b'1', 'Active', b'1', 'Get PO#', 'S J A Construction', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '6/17/2013', 'Feb-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (111, 'Professional Service Industries, Inc.', '0000-03-00', 'PSI/74100', 0, '2013-04-05', '0000-00-00', '2014-03-24', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'DLP', 'Range: 1.5K ', NULL, NULL, 'March', '4/5/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (112, 'MERSEN USA St. Marys-PA Corp', '0000-03-00', 'CARBSTACK', 0, '2013-04-10', '0000-00-00', '2014-03-24', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'MERSEN USA St. Marys-PA Corp', 'Yes-1 day', 'DLP', 'Range: 1.5 inch', NULL, NULL, 'March', '4/10/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (113, 'Hescon N.V. ', '0000-03-00', 'HESCON', 0, '2009-03-24', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'CREDIT CARD', 'Hescon N.V. ', '', 'III', '', NULL, NULL, 'March', '3/24/2009', 'Dec-06', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (114, 'Alpha Telecom Services Company', '0000-03-00', 'ALPHA', 0, '2010-09-22', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Alpha Telecom Services Company', 'Yes', 'III', '', NULL, NULL, 'March', '9/22/2010', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (115, 'OMI', '0000-05-00', 'OMI', 0, '2013-10-10', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'OMI', 'Yes', '', '', NULL, NULL, 'May', '10/10/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (116, 'Dominion Virginia Power', '0000-03-00', 'VEPCO', 0, '2011-02-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Dominion Virginia Power', 'Yes - 2 Days', 'DLP', '', NULL, NULL, 'March', '2/16/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (117, 'Thiel Corporation N.V. ', '0000-03-00', 'ARUBA', 0, '2009-02-12', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Thiel Corporation N.V. ', 'Yes', 'DLP', 'Range: 3.5K to 350K (E-4)', NULL, NULL, 'March', '2/12/2009', 'May-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (118, 'ATCO', '0000-03-00', 'ATCOARUBA', 0, '2009-02-12', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'ATCO', 'Yes', 'DLP', 'Range: 2,000 KN ', NULL, NULL, 'March', '2/12/2009', 'Jun-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (119, 'Anchor Concrete Products ', '0000-03-00', 'OLDEASTON', 0, '2010-04-15', NULL, NULL, 'NO', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Oldcastle - Easton ', 'Yes', 'DLP', '', NULL, NULL, 'March', '4/15/2010', 'Apr-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (120, 'Glenn O. Hawbaker, Inc.', '0000-03-00', 'HAWBAKER05068', 0, '2013-04-25', NULL, '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Glenn O. Hawbaker, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/25/2013', 'May-05', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (121, 'L.C. Whitford Materials Co.', '0000-03-00', 'WHITFOR', 0, '2010-02-11', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'L.C. Whitford Materials, Co.', 'Yes- 2 days', 'DLP', 'Range: 35K ', NULL, NULL, 'March', '2/11/2010', '', 'No Solicte', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (122, 'Proform Powdered Metals, Inc.', '0000-03-00', 'PROFORM', 0, '2013-04-11', NULL, '2014-03-31', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Proform Powdered Metals, Inc.', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'March', '4/11/2013', 'May-00', '3/31/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (123, 'Castor Materials', '0000-03-00', 'CASTOR', 0, '2013-06-17', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Castor Materials', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '6/17/2013', 'Mar-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (124, 'Professional Service Industries, Inc.', '0000-04-00', 'PSIGRAND', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'April', '4/25/2013', 'Jul-08', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (125, 'ECS Mid-Atlantic, LLC', '0000-04-00', 'ECSFREDERICK', 0, '2013-05-01', NULL, '2014-04-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'DLP', 'Range: 500 lbs ', NULL, NULL, 'April', '5/1/2013', 'Dec-06', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (126, 'MDC Contracting, LLC', '0000-04-00', 'MDC', 0, '2013-03-06', NULL, '2014-04-07', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'MDC Contracting, LLC', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/6/2013', 'Mar-09', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (127, 'Ron Crane Scale Sales-USA', '0000-04-00', 'CRANE 3', 0, '2009-04-23', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', 'NO', 'III', 'Range: 20 Tons', NULL, NULL, 'April', '4/23/2009', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (128, 'Ron Crane Scale Sales-USA', '0000-04-00', 'CRANE 5', 0, '2009-07-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', 'No', 'III', '', NULL, NULL, 'April', '7/20/2009', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (129, 'Professional Service Industries, Inc.', '0000-04-00', 'PSIMORGAN', 0, '2011-03-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Professional Service Industries, Inc.', 'Yes', 'III', '', NULL, NULL, 'April', '3/15/2011', 'Aug-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (130, 'Virginia Department of Transportation', '0000-04-00', 'VADOT/LYNCHNS', 0, '2010-05-04', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Lynchburg District Material Lab', 'Yes', 'TPT', '', NULL, NULL, 'April', '5/4/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (131, 'Construction Engineering Consultants, Inc.', '0000-04-00', 'CEC', 0, '2010-04-20', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Construction Engineering Consultants, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/20/2010', 'Apr-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (132, 'Balzer & Associates, Inc.', '0000-04-00', 'BALZER', 0, '2011-03-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Balzer & Associates, Inc.', 'Yes', 'DLP', 'Range: 2 inches ', NULL, NULL, 'April', '3/29/2011', 'Apr-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (133, 'National Concrete Masonry Assoc.', '0000-05-00', 'NCMA', 0, '2013-05-29', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'National Concrete Masonry Assoc.', 'Yes-1 day', 'DLP', 'Range 100 lbs to 20,000 lbs (E-4)', NULL, NULL, 'May', '5/29/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (134, 'Happy Valley Blended Products, LLC', '0000-06-00', 'HVBP', 0, '2013-07-08', NULL, '2014-06-02', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Happy Valley Blended Products, LLC', 'Yes', 'KAS', '', NULL, NULL, 'June', '7/8/2013', 'Oct-08', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (135, 'Mactec Engineering & Consulting, Inc. ', '0000-05-00', 'MACMCLEAN', 0, '2013-04-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Mactec Engineering & Consulting, Inc. ', 'Yes', 'III', '', NULL, NULL, 'May', '4/1/2013', 'Jun-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (136, 'Smith Concrete ', '0000-05-00', 'SMITHCON', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Smith Concrete ', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/29/2013', 'Feb-09', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (137, 'Essroc Ready Mix(Essroc Accounting Services)', '0000-05-00', 'ARROW/PARK', 0, '2013-07-12', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Essroc Ready Mix', 'Yes', 'TPJ', '', NULL, NULL, 'May', '7/12/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (138, 'Fairmont State University', '0000-05-00', 'FAIRMONT', 0, '2013-04-01', NULL, '2014-05-12', 'Yes', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Credit Card', 'Fairmont State University', 'Yes', 'III', '', NULL, NULL, 'May', '4/1/2013', 'Apr-09', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (139, 'GCL, Inc. ', '0000-05-00', 'GCL', 0, '2013-05-28', NULL, '2014-05-12', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'GCL, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/28/2013', 'Apr-09', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (140, 'University of Cincinnati', '0000-05-00', 'UNIVCIN', 0, '2013-06-20', '0000-00-00', '2014-05-19', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'CREDIT CARD', 'University of Cincinnati', 'Yes-definite', 'TJP', 'Range: 600 lbs ', NULL, NULL, 'May', '6/20/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (141, 'Faddis Concrete', '0000-05-00', 'ADLEEPRE', 0, '2013-06-12', '0000-00-00', '2014-05-26', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Faddis Concrete', 'Yes', 'TPJ', '', NULL, NULL, 'May', '6/12/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (142, 'Corry Contract, Inc.', '0000-05-00', 'CORRYCON', 0, '2013-06-12', '0000-00-00', '2014-05-26', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Corry Contract, Inc.', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'May', '6/12/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (143, 'New Enterprise Stone & Lime', '0000-05-00', 'NEWENT/TYRO', 0, '2013-06-12', '0000-00-00', '2014-05-26', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'TPJ', '', NULL, NULL, 'May', '6/12/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (144, 'Sunnycrest Precast', '0000-05-00', 'SUNNYCREST', 0, '2013-06-12', NULL, '2014-05-26', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Sunnycrest Precast', 'Yes', 'KAS', '', NULL, NULL, 'May', '6/12/2013', 'Mar-00', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (145, 'Kenney Geotechnical Services ', '0000-05-00', 'KENNEY', 0, '2013-06-11', NULL, '2014-05-26', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Kenney Geotechnical Services ', 'Yes', 'KAS', 'Range: 1 lb to 165 lbs', NULL, NULL, 'May', '6/11/2013', 'Jun-07', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (146, 'A. Duchini, Inc.', '0000-05-00', 'DUCHINI', 0, '2013-06-11', '0000-00-00', '2014-05-26', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'A. Duchini, Inc.', 'YES- 1 day', 'KAS', '', NULL, NULL, 'May', '6/11/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (147, 'Ron Crane Scale Sales-USA', '0000-05-00', 'MCKINLEY', 0, '2009-06-17', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'McKinley Paper Company ', 'Yes', 'III', '', NULL, NULL, 'May', '6/17/2009', 'May-09', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (148, 'Transcat, Inc.', '0000-05-00', 'TRANSCO', 0, '2009-08-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE ', 'Transcat, Inc. ', 'Yes', 'III', 'Range: 10,000 Kg (ID# 189092-0035)', NULL, NULL, 'May', '8/19/2009', 'May-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (149, 'Centre Concrete Company', '0000-05-00', 'CEN/MONT1', 0, '2010-05-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Centre Concrete Company', 'Yes', 'TPT', '', NULL, NULL, 'May', '5/20/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (150, 'Susquehanna Valley Construction Corp.', '0000-05-00', 'SUSQUEHANNA', 0, '2010-05-04', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Susquehanna Valley Construction Corp.', 'Yes', '', '', NULL, NULL, 'May', '5/4/2010', 'Apr-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (151, 'Soils & Materials Engineers ', '0000-05-00', 'EDPCONSNOSOL', 0, '2011-05-26', '0000-00-00', NULL, 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Soils & Materials Engineers ', 'Yes - 1 day', 'DLP', 'Range: 0.25 inches', NULL, NULL, 'May', '5/26/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (152, 'Orders Construction', '0000-05-00', 'ORDERS86026', 0, '2011-05-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Orders Construction', 'Yes', 'TLR', '', NULL, NULL, 'May', '5/5/2011', '', 'No Solicte', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (153, 'Warren Analytical Group', '0000-06-00', 'WARANA', 0, '2013-06-26', NULL, '2014-06-16', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Warren Analytical Group', 'Yes', 'TPJ', '', NULL, NULL, 'June', '6/26/2013', 'Jun-09', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (154, 'Ron Crane Scale Sales-USA, LLC', '0000-06-00', 'WASHDEM', 0, '2010-07-20', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Washington Demilitarization Company', 'Yes', 'III', '', NULL, NULL, 'June', '7/20/2010', 'Jun-09', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (155, 'Hilti, Inc.', '0000-06-00', 'HILTI', 0, '2009-06-16', '0000-00-00', NULL, 'OOS', '', 0, 'VISA', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Hilti, Inc.', 'Yes', 'III', '', NULL, NULL, 'June', '6/16/2009', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (156, 'MMC Metrology Lab, Inc. ', '0000-06-00', 'MCM', 0, '2009-06-17', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE ', 'MMC Metrology Lab, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/17/2009', 'Jun-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (157, 'GLF Technical', '0000-06-00', 'GLF', 0, '2010-03-23', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'GLF Technical', 'Yes', 'DLP', '', NULL, NULL, 'June', '3/23/2010', 'Feb-02', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (158, 'Cold Spring Construction', '0000-06-00', 'COLD', 0, '2009-05-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cold Spring Construction', 'Yes', 'TPT', '', NULL, NULL, 'June', '5/21/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (159, 'Terracon', '0000-06-00', 'NUTTINGWASH', 0, '2012-10-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Terracon', 'Yes-definite', 'TJT', '', NULL, NULL, 'June', '10/9/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (160, 'DLZ', '0000-06-00', 'DLZNS', 0, '2010-06-21', '0000-00-00', NULL, 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'DLZ', '', 'DLP', 'Cap: 2K', NULL, NULL, 'June', '6/21/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (161, 'Joseph B. Fay Company', '0000-07-00', 'JBFAY/02059', 0, '2013-07-16', '0000-00-00', '2014-07-07', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Joseph B. Fay Company', 'Yes', 'TPJ', '', NULL, NULL, 'July', '7/16/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (162, 'SMC Powder Metallurgy', '0000-07-00', 'STMARYGA', 814, '2013-08-06', '0000-00-00', '2014-07-07', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'SMC Powder Metallurgy', '', 'DLP', 'Range: 500 lbs (Compression Only)', NULL, NULL, 'July', '8/6/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (163, 'J. J. Kennedy', '0000-07-00', 'KENNEDY 4', 0, '2013-08-06', '0000-00-00', '2014-07-14', 'No', 'PA 6.0%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'J. J. Kennedy', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/6/2013', '', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (164, 'Geotech Engineering', '0000-07-00', 'GEOTECH', 0, '2013-07-23', NULL, '2014-07-14', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Geotech Engineering', 'Yes', 'KAS', '', NULL, NULL, 'July', '7/23/2013', 'Jul-09', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (165, 'New Enterprise Stone & Lime', '0000-07-00', 'NEWENT/PSP6', 0, '2013-07-23', '0000-00-00', '2014-07-14', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes', 'KS/TJ', 'Range: 40K', NULL, NULL, 'July', '7/23/2013', '', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (166, 'Ron Crane Scale Sales-USA', '0000-07-00', 'CRANE 4', 0, '2009-09-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', 'No', 'III', 'Range: 50,000 kg', NULL, NULL, 'July', '9/17/2009', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (167, 'Professional Calibration', '0000-07-00', 'PROFCAL', 0, '2009-08-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Professional Calibration', 'No', 'III', '', NULL, NULL, 'July', '8/18/2009', 'Jul-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (168, 'Pittsburgh Flexicore', '0000-07-00', 'FLEXIMON', 0, '2009-07-29', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Pittsburgh Flexicore', 'Yes- 1 day', 'TLR', 'Range: 78 to 82 (Moved)', NULL, NULL, 'July', '7/29/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (169, 'North Shore Constructors Joint Venture #2', '0000-07-00', 'NORTHSCPITT', 0, '2010-06-22', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'North Shore Constructors Joint Venture #2', 'Yes', 'TJT', 'Range: 20 Ton ', NULL, NULL, 'July', '6/22/2010', 'May-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (170, 'HRI, Inc.', '0000-07-00', 'HRISHIP', 0, '2011-07-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'HRI, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'July', '7/26/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (171, 'Structural Group, Inc.', '0000-08-00', 'STRUCTCORP', 0, '2013-08-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Structural Group, Inc.', 'Yes', 'III', 'Range: 300 lbs to 3,000 lbs', NULL, NULL, 'August', '8/6/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (172, 'Structural Group, Inc.', '0000-07-00', 'STRUCTCORP1', 0, '2009-08-05', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Structural Group, Inc.', 'In House', 'III', 'Range: 300 lbs to 3,000 lbs', NULL, NULL, 'July', '8/5/2009', 'Jul-09', 'STRUCT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (173, 'Great Lakes Concrete Products', '0000-08-00', 'GREATLAKES', 0, '2013-08-20', NULL, '2014-08-11', 'Yes', '', 0, 'COD', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Great Lakes Concrete Products', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/20/2013', 'Agust 2009', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (174, 'CTL Engineering, Inc. ', '0000-08-00', 'CTLVA', 0, '2013-09-23', NULL, '2014-08-18', 'OOS', 'Credit Card Tax 5%', 5, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'CTL Engineering, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/23/2013', 'Nov-08', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (175, 'Terracon', '0000-08-00', 'NUTTCHAR1', 0, '2013-09-03', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Terracon', 'Yes', 'DLP', 'Range: 1 inch', NULL, NULL, 'August', '9/3/2013', 'Mar-04', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (176, 'Central Supply Company', '0000-08-00', 'CENTRALGLASS', 0, '2013-07-23', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Central Supply Company', 'Yes', 'ALY', '', NULL, NULL, 'August', '7/23/2013', 'Oct-09', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (177, 'Fastenal Company', '0000-08-00', 'FASTENAL', 0, '2009-09-02', NULL, NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Fastenal Company', 'Yes', 'DLP', '', NULL, NULL, 'August', '9/2/2009', 'Aug-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (178, 'SJB Services, Inc.', '0000-08-00', 'SJBCORT', 0, '2009-07-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'SJB Services, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'August', '7/29/2009', 'Mar-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (179, 'Jose Cartellone Construcciones Civile S.A.', '0000-08-00', 'BAHAMAS', 0, '2010-07-27', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Jose Cartellone Construcciones Civile S.A.', 'Yes', 'DLP', 'Range: 2 inch', NULL, NULL, 'August', '7/27/2010', 'Jun-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (180, 'Total Precast Solutions, LLC', '0000-08-00', 'HOLLOWCORE', 0, '2009-07-30', NULL, NULL, 'No', 'Butler 6.5%', 6.5, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Total Precast Solutions, LLC', 'Yes', 'TJT', 'Range: 4K / 60K', NULL, NULL, 'August', '7/30/2009', 'Dec-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (181, 'Professional Service Industries, Inc.', '0000-08-00', 'PSINY', 0, '2010-06-22', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Professional Service Industries, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'August', '6/22/2010', 'Aug-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (182, 'J. J. Kennedy', '0000-09-00', 'KENNEDY1', 0, '2013-09-23', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'J.J. Kennedy', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/23/2013', 'May-05', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (183, 'J.A. Frezza & Associates', '0000-09-00', 'FREZZA', 0, '2013-09-23', NULL, '2014-09-01', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'J.A. Frezza & Associates', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/23/2013', 'Oct-07', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (184, 'Lafarge Corporation', '0000-09-00', 'LAFWHITEHALL', 0, '2013-09-23', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Lafarge Corporation', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/23/2013', 'Mar-08', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (185, 'Ron Crane Scale Sales-USA', '0000-09-00', 'CRANE 6', 0, '2009-09-28', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', 'Yes', 'III', '', NULL, NULL, 'September', '9/28/2009', 'Sep-09', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (186, 'American Calibration', '0000-09-00', 'AMERICANCAL', 0, '2009-09-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'American Calibration', 'Yes', 'III', '', NULL, NULL, 'September', '9/15/2009', 'Sep-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (187, 'Interweigh Systems, Inc.', '0000-09-00', 'INTERWEIGH', 0, '2010-04-22', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Interweigh Systems, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'September', '4/22/2010', 'Sep-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (188, 'South Hills Landfill', '0000-09-00', 'SOUTHHILLS', 0, '2010-08-16', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Active', b'0', '', 'South Hills Landfill', 'Yes', 'TLR', '', NULL, NULL, 'September', '8/16/2010', 'Oct-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (189, 'Jeff Zell Consultants', '0000-09-00', 'ZELL01017', 0, '2011-07-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Jeff Zell Consultants', 'Yes', 'DLP', '', NULL, NULL, 'September', '7/26/2011', 'Jun-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (190, 'PF Technologies', '0000-09-00', ' PFTECH', 0, '2009-09-17', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'PF Technologies', 'Yes', 'TPT', '', NULL, NULL, 'September', '9/17/2009', 'Nov-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (191, 'TTL Associates, Inc. ', '0000-10-00', 'TOLEDO1', 0, '2013-09-20', '0000-00-00', '2013-10-07', 'No', 'Lucas 7%', 7, 'COD', 'Sep-13', b'1', 'Active', b'1', 'MUST HAVE', 'TTL Associates, Inc. ', 'Yes', 'DLP', 'Range: 3K to 450K', NULL, NULL, 'October', '9/20/2013', '', '10/7/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (192, 'Duffield Associates, Inc.', '0000-10-00', 'DUFFIELD', 0, '2013-10-01', NULL, '2014-10-13', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Duffield Associates, Inc.', 'Yes', 'TJT', 'Range: 0.4 inches', NULL, NULL, 'October', '10/1/2013', 'Apr-04', '10/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (193, 'Rocla Concrete Tie', '0000-10-00', 'ROCLA1', 0, '2012-11-02', '0000-00-00', '2013-10-14', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'GET ON SITE', 'Rocla Concrete Tie', 'Yes', 'DLP', 'Range: 0.5 inch', NULL, NULL, 'October', '11/2/2012', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (194, 'Axim Concrete Technologies', '0000-10-00', 'AXIM', 0, '2012-10-03', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Axim Concrete Technologies', 'Yes-definite', 'TJT', '', NULL, NULL, 'October', '10/3/2012', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (195, 'Lobar Site Development Corporation', '0000-10-00', 'LOBAR', 0, '2010-09-27', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Lobar Site Development Corporation', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/27/2010', 'Oct-03', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (196, 'Gholkar\'s, Inc. ', '0000-10-00', 'ITT', 0, '2009-09-16', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'0', '', 'ITT Corporation', 'Yes', 'III', 'Range: 10 lbs to 1K (ID#CAL3692)', NULL, NULL, 'October', '9/16/2009', 'Oct-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (197, 'ECS Mid-Atlantic, LLC', '0000-10-00', 'ECSWASH', 0, '2009-09-28', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/28/2009', 'Jan-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (198, 'Professional Service Industries, Inc.', '0000-10-00', 'PSINS', 0, '2009-05-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Professional Service Industries, Inc.', 'Yes', 'LSM', 'Range: 1/2 inch', NULL, NULL, 'October', '5/6/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (199, 'Thrasher Engineering, Inc. ', '0000-11-00', 'THRASHERBEAV', 0, '2012-11-14', '0000-00-00', '2013-11-04', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Thrasher Engineering, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'November', '11/14/2012', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (200, 'JSP - Specialty Foams ', '0000-11-00', 'JSP', 0, '2012-12-06', NULL, '2013-11-11', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'JSP - Speciality Foams ', 'Yes', 'DLP', 'Range: 1 lb to 112 lbs', NULL, NULL, 'November', '12/6/2012', 'Oct-00', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (201, 'Weigh Rite Scale Company, Inc. ', '0000-11-00', 'WEIGHRITE', 0, '2010-01-20', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'Get PO#', 'Weigh Rite Scale Company, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'November', '1/20/2010', 'Nov-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (202, 'Geo-Technology Associates, Inc.', '0000-11-00', 'GEOABINGDON', 0, '2009-11-13', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Geo-Technology Associates, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'November', '11/13/2009', 'Oct-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (203, 'Mactec Engineering', '0000-11-00', 'LAWLEX', 0, '2009-10-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Mactec Engineering', 'Yes', 'TPT', '', NULL, NULL, 'November', '10/19/2009', 'Aug-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (204, 'L. Robert Kimball', '0000-11-00', 'KIMBALLCALIF', 0, '2010-10-18', NULL, NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE PO', 'L. Robert Kimball', 'Yes', 'TLR', '', NULL, NULL, 'November', '10/18/2010', 'Nov-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (205, 'Thelen Associates, Inc.', '0000-11-00', 'THELEN/ERLNS', 0, '2009-12-10', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Thelen Associates, Inc.', 'Yes', 'III', 'Cap: 10K', NULL, NULL, 'November', '12/10/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (206, 'Waterford Precast & Sales', '0000-12-00', 'WATERFORD', 0, '2012-12-21', NULL, '2013-12-09', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Waterford Precast & Sales', 'Yes', 'DLP', '', NULL, NULL, 'December', '12/21/2012', 'Aug-99', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (207, 'Faddis Concrete Products', '0000-12-00', 'FADDIS', 0, '2012-12-18', NULL, '2013-12-09', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Faddis Concrete Products', 'Yes', 'DLP', '', NULL, NULL, 'December', '12/18/2012', 'Aug-02', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (208, 'Ron Crane Scale Sales-USA', '0000-12-00', 'WESTCOASTOR', 0, '2009-12-14', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'West Coast Wire Rope', 'No', 'TJT', '', NULL, NULL, 'December', '12/14/2009', 'Nov-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (209, 'Ron Crane Scale Sales - USA', '0000-12-00', 'FLATIRON', 0, '2009-12-22', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Flat Iron Corporation', 'Yes', 'III', '', NULL, NULL, 'December', '12/22/2009', 'Dec-09', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (210, 'Jennmar Speciality Products', '0000-12-00', 'JENNMAR', 0, '2010-01-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Jennmar Speciality Products', 'Yes', 'DLP', '', NULL, NULL, 'December', '1/19/2010', 'Dec-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (211, 'Charles Machine, Inc. ', '0000-12-00', 'CHARLESMAC', 0, '2009-12-23', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Charles Machine, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'December', '12/23/2009', 'Dec-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (212, 'Coast Crane Company', '0000-12-00', 'COASTPORT', 0, '2009-12-23', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'Vbl. Glenn ', 'Coast Crane Company', 'Yes', 'DLP', '', NULL, NULL, 'December', '12/23/2009', 'Dec-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (213, 'Intercontinental Construction Contracting,', '0000-12-00', 'INTERCONT', 0, '2010-08-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'United States Military Academy', 'Yes', 'III', '', NULL, NULL, 'December', '8/19/2010', 'Sep-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (214, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/CAR', 0, '2013-01-24', '0000-00-00', '2014-01-13', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes- 1 day', 'CJS', 'Range: 90K ', NULL, NULL, 'January', '1/24/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (215, 'Virginia Military Institute', '0000-04-00', 'VAMILIT', 0, '2013-06-28', NULL, '2015-04-13', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'VA Military Institute', 'Yes-definite', 'III', 'Range: 3,000 KG ', NULL, NULL, 'April', '6/28/2013', 'Sep-98', '4/13/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (216, 'Allegheny Blending Technologies', '0000-08-00', 'ALLEGHENY', 0, '2013-10-16', '0000-00-00', '2014-08-18', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Allegheny Blending Technologies', 'Yes', 'DLP', '', NULL, NULL, 'August', '10/16/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (217, 'Eldorado Stone LLC', '0000-01-00', 'ELDORADO', 0, '2013-08-19', NULL, '2014-01-27', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Eldorado Stone LLC ', 'Yes', 'CJS', '', NULL, NULL, 'January', '8/19/2013', 'Feb-07', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (218, 'Golden Triangle', '0000-01-00', 'GOLDENIMP', 0, '2013-01-21', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE ', 'Golden Triangle', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/21/2013', 'Jan-10', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (219, 'CCPI, Inc. ', '0000-01-00', 'CCPI', 0, '2013-01-24', NULL, '2014-01-13', 'No', 'Clinton 7.25%', 7.25, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'CCPI, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/24/2013', 'Nov-10', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (220, 'United States Military Academy', '0000-01-00', 'USMA', 0, '2013-01-03', NULL, '2014-01-20', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'CREDIT CARD', 'United States Military Academy', 'Yes', 'CJS', 'Range: 0.05 inches (D-6027)', NULL, NULL, 'January', '1/3/2013', 'Oct-08', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (221, 'Porters Concrete Service', '0000-01-00', 'PORTERS/WAVE', 0, '2013-02-04', '0000-00-00', '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Porters Concrete Service', 'No', 'KAS', '', NULL, NULL, 'January', '2/4/2013', '', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (222, 'US Concrete Precast Group ', '0000-01-00', 'ARCHITECT', 0, '2013-07-09', '0000-00-00', '2014-01-27', 'Yes', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'US Concrete Precast Group ', 'No', 'TPJ', 'Range: 3K / 40K', NULL, NULL, 'January', '7/9/2013', '', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (223, 'Centre Concrete Company', '0000-01-00', 'CEN/LH', 0, '2013-02-05', '0000-00-00', '2014-01-27', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Centre Concrete Company', 'Yes-1 day', 'KAS', '', NULL, NULL, 'January', '2/5/2013', '', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (224, 'Froehling & Robertson, Inc.', '0000-01-00', 'F&R', 0, '2013-04-25', NULL, '2014-01-27', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Froehling & Robertson, Inc.', 'Yes-24hrs.', 'III', 'Range: 40K to 400K', NULL, NULL, 'January', '4/25/2013', 'Apr-03', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (225, 'Wolyniec Construction', '0000-01-00', 'JF READY', 0, '2013-02-05', '0000-00-00', '2014-01-27', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Wolyniec Construction', 'Yes-1 day', 'KAS', '', NULL, NULL, 'January', '2/5/2013', '', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (226, 'DuBrook, Inc.', '0000-10-00', 'DuBROOK DuBois', 0, '2013-10-16', '0000-00-00', '2014-10-06', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'DuBrook, Inc.', 'Yes- 1 week', 'CS/TJ', '', NULL, NULL, 'October', '10/16/2013', '', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (227, 'DuBrook, Inc. ', '0000-10-00', 'THOMSON', 0, '2013-10-16', '0000-00-00', '2014-10-06', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'DuBrook, Inc. ', 'Yes-1 week', 'CS/TJ', '', NULL, NULL, 'October', '10/16/2013', '', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (228, 'Burgess & Niple', '0000-01-00', 'BDET', 0, '2013-02-05', '0000-00-00', '2014-01-27', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Burgess & Niple', 'Yes-24Hours', 'DLP', '', NULL, NULL, 'January', '2/5/2013', '', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (229, 'Rowe Materials, LLC ', '0000-01-00', 'ROWEMAT', 0, '2013-02-06', NULL, '2014-01-27', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Rowe Materials, LLC ', 'Yes', 'CJS', '', NULL, NULL, 'January', '2/6/2013', 'Feb-07', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (230, 'Mid Atlantic Precast', '0000-01-00', 'MIDATLPRE', 0, '2012-11-12', NULL, '2014-01-27', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Mid Atlantic Precast', 'Yes', 'TLR', '', NULL, NULL, 'January', '11/12/2012', 'Jan-09', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (231, 'Columbia Gas of Pennsylvania', '0000-01-00', 'COLUMBIAGAS2', 0, '2010-01-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Columbia Gas of Pennsylvania', '', 'III', 'Range: 30 PSI', NULL, NULL, 'January', '1/26/2010', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (232, 'Columbia Gas of Pennsylvania', '0000-01-00', 'COLUMBIAGAS', 0, '2010-12-22', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Columbia Gas of Pennsylvania', '', 'DLP', 'Range: 600 PSI', NULL, NULL, 'January', '12/22/2010', 'May-02', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (233, 'Energy Solutions', '0000-01-00', 'ENERGYSOL', 0, '2010-01-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Energy Solutions', 'Yes', 'III', '', NULL, NULL, 'January', '1/19/2010', 'Dec-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (234, 'Certex USA, Inc. ', '0000-01-00', 'CERTEX', 0, '2010-02-22', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Certex USA, Inc. ', 'Yes', 'III', 'Range: 50 Short Ton ', NULL, NULL, 'January', '2/22/2010', 'Jan-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (235, 'Columbia Gas of Pennsylvania', '0000-01-00', 'COLUMBIAGAS4', 0, '2010-04-20', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Columbia Gas of Pennsylvania', 'Yes', 'TJT', 'Range: 15 PSI ', NULL, NULL, 'January', '4/20/2010', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (236, 'BASF Construction Chemicals', '0000-01-00', 'BASF1', 0, '2012-04-24', NULL, NULL, 'No ', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Inactive ', b'1', '4909655470', 'BASF Construction Chemicals', 'Yes', 'III', 'Range: 0.15 inches (D-6027)', NULL, NULL, 'January', '4/24/2012', 'Nov-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (237, 'CMX', '0000-01-00', 'ADVANTAGEME', 0, '2011-01-04', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'CMX', 'Yes', 'TLR', '', NULL, NULL, 'January', '1/4/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (238, 'Advance Testing Company, Inc.', '0000-01-00', 'ADVANCENY', 0, '2010-12-22', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Advance Testing Company, Inc.', 'Yes', 'III', 'Range: 10K ', NULL, NULL, 'January', '12/22/2010', 'Dec-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (239, 'Quality Inspection Services, Inc. ', '0000-01-00', 'QUALITYDEP1', 0, '2010-12-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'DLP', 'Range: ', NULL, NULL, 'January', '12/23/2010', 'Dec-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (240, 'BASF Construction Chemicals', '0000-01-00', 'BASF', 0, '2012-04-24', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Inactive ', b'1', '4909655470', 'BASF Construction Chemicals', 'Yes', 'III', 'Range: 0.03 in/in', NULL, NULL, 'January', '4/24/2012', 'Nov-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (241, 'Quality Inspection Services, Inc. ', '0000-01-00', 'QUALITYGRAND', 0, '2010-12-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'III', '', NULL, NULL, 'January', '12/2/2010', 'Apr-10', 'No Solicte', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (242, 'Wheatland Tube Company', '0000-02-00', 'WHEAT', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Wheatland Tube Company', 'Yes - 1 week', 'DLP', 'Range: 0.02 in/in (GL 2) ', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (243, 'EBC', '0000-09-00', 'EBC', 0, '2013-10-01', '0000-00-00', '2014-09-15', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'EBC', 'Yes', 'DP/CS', 'Range: 0.02 in/in (GL 2 Inch)', NULL, NULL, 'September', '10/1/2013', '', '9/15/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (244, 'Titusville Supply Co.', '0000-02-00', 'TITUSVIL', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Titusville Supply Co.', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (245, 'Tes Tech', '0000-02-00', 'TESTECHIN', 0, '2013-02-19', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Tes Tech', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/19/2013', 'Jan-10', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (246, 'Pinnacle Environmental & Geotecnical, Inc. ', '0000-02-00', 'PINNACLE', 0, '2013-02-20', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Pinnacle Environmental & Geotecnical, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/20/2013', 'Feb-10', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (247, 'Surveying Solutions, Inc. ', '0000-02-00', 'SURVEYING', 0, '2013-03-05', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Surveying Solutions, Inc. ', 'Yes', 'DLP', 'Range: 15K ', NULL, NULL, 'February', '3/5/2013', 'Oct-09', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (248, 'Surveying Solutions, Inc. ', '0000-02-00', 'SURVEYSTJOHN', 0, '2013-03-05', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Surveying Solutions, Inc. ', 'Yes', 'KAS', 'Range: 15K ', NULL, NULL, 'February', '3/5/2013', 'Apr-10', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (249, 'McGill Septic Tank Co.', '0000-02-00', 'MCGILLSEPTIC', 0, '2013-01-16', '0000-00-00', '2014-02-10', 'No', 'Trumbull 6.75%', 6.75, 'COD', '', b'1', 'Active ', b'1', '', 'McGill Septic Tank Co.', 'Yes', 'CS', 'Range: 165 lbs', NULL, NULL, 'February', '1/16/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (250, 'Concrete Fabricators, Inc. ', '0000-02-00', 'CONCRETEFAB', 0, '2013-02-27', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Concrete Fabricators, Inc. ', 'Yes', 'III', '', NULL, NULL, 'February', '2/27/2013', 'May-07', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (251, 'Essroc Ready Mix ', '0000-02-00', 'ARROWCHARL', 0, '2013-03-01', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Essroc Ready Mix (Arrow Concrete)', 'Yes', 'KAS', '', NULL, NULL, 'February', '3/1/2013', 'Dec-09', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (252, 'Brayman Construction', '0000-02-00', 'BRAYPGH', 0, '2012-12-18', NULL, '2014-02-17', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Brayman Construction', 'Yes', 'CJS', '', NULL, NULL, 'February', '12/18/2012', 'Feb-10', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (253, 'Bechtel National, Inc.', '0000-02-00', 'BECHTEL', 0, '2011-04-05', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Bechtel National, Inc.', 'Yes', 'III', '', NULL, NULL, 'February', '4/5/2011', 'Feb-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (254, 'DWR State of California', '0000-02-00', 'DWRCALIF', 0, '2010-02-22', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'CREDIT CARD', 'DWR State of California', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/22/2010', 'Feb-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (255, 'Bradken Mineral Processing B.C. Ltd.', '0000-02-00', 'NORCAST', 0, '2012-03-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'Credit Card', 'Bradken Mineral Processing B.C. Ltd.', 'Yes', 'III', '', NULL, NULL, 'February', '3/1/2012', 'Feb-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (256, 'EML, LLC', '0000-02-00', 'EML', 0, '2010-03-03', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'EML, LLC', 'Yes', 'III', '', NULL, NULL, 'February', '3/3/2010', 'Feb-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (257, 'West Virginia University', '0000-02-00', 'WVUNIV', 0, '2012-02-08', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'West Virginia University', 'Yes-1 day', 'TJT', '', NULL, NULL, 'February', '2/8/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (258, 'CMT Laboratories', '0000-03-00', 'CMTMONT', 0, '2013-04-01', '0000-00-00', '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'CMT Laboratories', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'March', '4/1/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (259, 'York Building Products', '0000-03-00', 'YORK/HAR', 0, '2013-04-01', '0000-00-00', '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'York Building Products', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'March', '4/1/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (260, 'FABCOR, Inc. ', '0000-03-00', 'FABCOR', 0, '2013-04-01', NULL, '2014-03-17', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'FABCOR, Inc. ', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '4/1/2013', 'Feb-10', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (261, 'Applied Testing & Geosciences Inc.', '0000-03-00', 'APPLIEDTEST1', 0, '2013-04-17', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Applied Testing & Geosciences Inc.', 'Yes', 'TS/CJ', 'Range: 400K', NULL, NULL, 'March', '4/17/2013', 'Jan-06', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (262, 'Applied Testing & Geosciences Inc.', '0000-03-00', 'APPLIEDTEST2', 0, '2013-04-17', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Applied Testing & Geosciences Inc.', 'Yes', 'III', 'Range: 10K', NULL, NULL, 'March', '4/17/2013', 'Jan-06', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (263, 'Brian C. Kelly, PLS', '0000-03-00', 'KELLY', 0, '2013-03-20', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Brian C. Kelly, PLS', 'Yes', 'TJT', '', NULL, NULL, 'March', '3/20/2013', 'Mar-09', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (264, 'Applied Testing & Geosciences Inc.', '0000-03-00', 'APPLIEDTEST3', 0, '2013-04-17', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Applied Testing & Geosciences Inc.', 'Yes', 'TJ/CS', 'Range: 200K ', NULL, NULL, 'March', '4/17/2013', 'Jan-06', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (265, 'Pittman Concrete Services (PCS)', '0000-03-00', 'PCS', 0, '2013-02-27', NULL, '2014-03-03', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Pittman Concrete Services (PCS)', 'Yes', 'TJT', '', NULL, NULL, 'March', '2/27/2013', 'Mar-10', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (266, 'Baker Hughes Inteq', '0000-03-00', 'BAKERHUGHES', 0, '2010-04-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'Credit Card', 'Baker Hughes Inteq', 'Yes', 'DLP', '', NULL, NULL, 'March', '4/20/2010', 'Mar-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (267, 'Wagman', '0000-03-00', 'GEOSYSTEMS', 0, '2012-10-17', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Wagman', 'Yes', 'III', 'Range: 150 Ton ', NULL, NULL, 'March', '10/17/2012', 'Mar-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (268, 'Schiavone Construction Company, LLC', '0000-03-00', 'SCHIAVONE', 0, '2010-05-03', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Schiavone Construction Company, LLC', 'Yes', 'TLR', '', NULL, NULL, 'March', '5/3/2010', 'Mar-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (269, 'Rocky Mountain Rescue Group', '0000-03-00', 'ROCKYRESCUE', 0, '2010-05-03', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Rocky Mountain Rescue Group', 'Yes', 'DLP', '', NULL, NULL, 'March', '5/3/2010', 'Mar-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (270, 'Hanes Geo Components', '0000-03-00', 'HANESGEO', 0, '2010-04-22', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active ', b'0', '', 'Hanes Geo Components', 'Yes', 'III', '', NULL, NULL, 'March', '4/22/2010', 'Mar-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (271, 'Pfaff & Smith Building Company', '0000-03-00', 'PFAFFSMITH', 0, '2010-03-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Pfaff & Smith Building Company', 'YES-1 day', 'DLP', '', NULL, NULL, 'March', '3/2/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (272, 'Walsh Construction Company ', '0000-03-00', 'WALSHCAMP', 0, '2011-01-24', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Walsh Construction Company ', 'Yes', 'TJT', 'Range: 2.5K to 250K (Cylinder Frame)', NULL, NULL, 'March', '1/24/2011', 'Apr-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (273, 'Bruce & Merrilees Electric', '0000-03-00', 'BRUCEMER', 0, '2012-02-23', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'Get PO#', 'Bruce & Merrilees Electric', 'Yes', 'TLR', '', NULL, NULL, 'March', '2/23/2012', 'Mar-10', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (274, 'HRI, Inc.', '0000-03-00', 'HRIHARRISBURG', 0, '2012-04-17', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'HRI, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'March', '4/17/2012', 'Jun-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (275, 'Pierce Mfg.', '0000-06-00', 'PIERCE', 0, '2013-07-08', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Pierce Mfg.', 'Yes', 'DLP', '', NULL, NULL, 'June', '7/8/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (276, 'TTL Associates, Inc.', '0000-03-00', 'TOLTESTNJ', 0, '2013-09-20', NULL, NULL, 'OOS', '', 0, 'COD', 'Sep-13', b'1', 'Inactive ', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'March', '9/20/2013', 'Mar-10', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (277, 'Top Roc', '0000-03-00', 'TOPROC1', 0, '2011-02-22', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Top Roc', 'Yes- 1 day', 'TLR', 'Cell #3 - 50K S/N 713655 ', NULL, NULL, 'March', '2/22/2011', '', 'No Solicte ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (278, 'R & R Ready Mix Inc.', '0000-06-00', 'R & R READYMIX', 0, '2013-06-19', NULL, '2014-06-16', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'R & R Ready Mix Inc.', 'Yes', '', '', NULL, NULL, 'June', '6/19/2013', 'Apr-13', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (279, 'Material Testing Consultants', '0000-09-00', 'MATERIALANN', 0, '2013-10-14', NULL, '2014-09-22', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Material Testing Consultants', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', 'Apr-10', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (280, 'Evonik Goldschmidt Corporation', '0000-04-00', 'EVONIKGOLD', 0, '2013-05-01', NULL, '2014-04-14', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'0', 'MUST HAVE', 'Evonik Goldschmidt Corporation', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/1/2013', 'Feb-10', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (281, 'Benkart Rigging', '0000-05-00', 'BENKART', 0, '2013-05-14', NULL, NULL, 'Yes', ' ', 0, 'COD', '', b'1', 'Active', b'1', '', 'Benkart Rigging', 'Yes', 'TPJ', 'Range: 200,000 lbs', NULL, NULL, 'May', '5/14/2013', 'May-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (282, 'Nansemond Precast Concrete Co., Inc. ', '0000-04-00', 'NANSEMOND', 0, '2013-05-01', NULL, '2014-04-14', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Nansemond Precast Concrete Co., Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/1/2013', 'Apr-10', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (283, 'Glenn O. Hawbaker, Inc. ', '0000-04-00', 'HAWBAKERMT', 0, '2013-05-15', NULL, '2014-04-21', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Glenn O. Hawbaker, Inc.', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'April', '5/15/2013', 'Jun-01', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (284, 'Erico Products', '0000-04-00', 'ERICO/SOLON1', 0, '2013-09-20', '0000-00-00', '2014-04-21', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Erico Products', 'Yes', 'III', 'Range: 1K to 100K ', NULL, NULL, 'April', '9/20/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (285, 'Elmer\'s Concrete & Dozer', '0000-04-00', 'ELMERS', 0, '2013-02-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Elmer\'s Concrete & Dozer', 'Yes', 'DLP', '', NULL, NULL, 'April', '2/25/2013', 'Nov-10', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (286, 'Cuyahoga Community College ', '0000-04-00', 'CUYAHOGA', 0, '2013-03-05', NULL, '2014-04-21', 'Yes', ' ', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Cuyahoga Community College ', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/5/2013', 'Apr-10', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (287, 'Ron Crane Scale Sales-USA', '0000-04-00', 'NORTHROPGR', 0, '2010-08-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Northrop Grumman', 'No', 'III', 'Range: 20K', NULL, NULL, 'April', '8/27/2010', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (288, 'University of Kentucky', '0000-04-00', 'UNIVKY', 0, '2010-05-04', '0000-00-00', NULL, 'OOS', '', 0, 'MC', '', b'1', 'Active', b'1', '', 'University of Kentucky', '', 'III', 'Cap: 6K ', NULL, NULL, 'April', '5/4/2010', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (289, 'Ort Tool & Die Company', '0000-04-00', 'ORT', 0, '2010-06-09', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Ort Tool & Die Company', 'Yes', 'III', '', NULL, NULL, 'April', '6/9/2010', 'Apr-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (290, 'Firelands Manufacturing Company', '0000-04-00', 'FIRELANDS', 0, '2010-04-20', NULL, NULL, 'No', 'Richland 7%', 7, 'COD', '', b'1', 'Active ', b'1', '', 'Firelands Manufacturing Company', 'Yes', 'III', '', NULL, NULL, 'April', '4/20/2010', 'Apr-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (291, 'Wightman Petrie Environmental', '0000-04-00', 'WIGHTMAN', 0, '2010-05-04', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Wightman Petrie Environmental', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/4/2010', 'Oct-98', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (292, 'John Gulisek Construction', '0000-04-00', 'GULISEK92065', 0, '2011-03-07', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'John Gulisek Construction', 'Yes- 2 days', 'III', '', NULL, NULL, 'April', '3/7/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (293, 'New Enterprise Stone & Lime', '0000-03-00', 'NEWENT9617', 0, '2013-05-15', '0000-00-00', '2014-03-17', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'March', '5/15/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (294, 'A. Morton Thomas & Associates', '0000-04-00', 'AMORTONTHOM', 0, '2012-02-08', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'A. Morton Thomas & Associates', 'Yes', 'DLP', 'Range: 70 lbs ', NULL, NULL, 'April', '2/8/2012', 'Mar-10', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (295, 'Structural Group, Inc.', '0000-04-00', 'STRUCTDEER', 0, '2010-05-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Structural Group, Inc.', 'In House', 'III', 'Range: 300 lbs to 3,000 lbs ', NULL, NULL, 'April', '5/3/2010', '', 'STRUCT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (296, 'EBA Engineering', '0000-05-00', 'EBA/BALT1', 0, '2013-05-28', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'EBA Engineering', 'Yes- 2 day', 'CJS', 'Range: 1/8 TSF to 16 TSF', NULL, NULL, 'May', '5/28/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (297, 'U.S. Concrete Products', '0000-05-00', 'USCONCRETE', 0, '2013-05-28', NULL, '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'U.S. Concrete Products', 'Yes', 'CJS', '', NULL, NULL, 'May', '5/28/2013', 'Nov-08', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (298, 'Marshall University ', '0000-05-00', 'MARSHALLUNIV', 0, '2013-05-31', NULL, '2014-05-12', 'Yes', '', 0, 'C/C', '', b'1', 'Active ', b'1', '', 'Marshall University ', 'Yes', 'DLP', 'Range: 210 Kpa Positive ', NULL, NULL, 'May', '5/31/2013', 'May-10', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (299, 'Marshall University', '0000-05-00', 'MARSHALLUNI2', 0, '2013-05-31', NULL, '2014-05-12', 'Yes', '', 0, 'C/C', '', b'1', 'Active', b'1', '', 'Marshall University', 'Yes', 'DLP', 'Range: 1/8 TSF to 22 TSF', NULL, NULL, 'May', '5/31/2013', 'May-10', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (300, 'Marshall University ', '0000-05-00', 'MARSHALLUNI1', 0, '2013-05-28', NULL, '2014-05-12', 'Yes', '', 0, 'C/C', '', b'1', 'Active ', b'1', '', 'Marshall University ', 'Yes', 'DLP', 'Range: 5 inches ', NULL, NULL, 'May', '5/28/2013', 'May-10', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (301, 'Mar-Zane Materials Lab ', '0000-05-00', 'MARZANE', 0, '2013-05-28', NULL, '2014-05-12', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Mar-Zane Materials Lab ', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/28/2013', 'May-10', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (302, 'Ohio Department of Transportation ', '0000-05-00', 'OHIODIS9', 0, '2013-05-31', NULL, '2014-05-19', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Ohio Department of Transportation ', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/31/2013', 'May-10', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (303, 'Terracon', '0000-05-00', 'NUTTING/CIN8', 0, '2013-08-19', '0000-00-00', '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'KAS', 'Range: 2 inches ', NULL, NULL, 'May', '8/19/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (304, 'Ron Crane Scale Sales -USA', '0000-05-00', 'MACKINAW', 0, '2010-06-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'USCGC MACKINAW AUX', 'No', 'DLP', '', NULL, NULL, 'May', '6/9/2010', 'Jul-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (305, 'Ron Crane Scale Sales - USA', '0000-05-00', 'COAST', 0, '2010-05-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Coast Crane Company', 'Yes', 'TJT', '', NULL, NULL, 'May', '5/26/2010', 'May-10', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (306, 'Key Environmental ', '0000-05-00', 'KEYENVIR', 0, '2012-10-10', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Key Environmental ', 'Yes', 'III', 'Range: 20K', NULL, NULL, 'May', '10/10/2012', 'Nov-08', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (307, 'Tes Tech', '0000-05-00', 'TESTECH/COL', 0, '2013-01-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Tes Tech', 'Yes 1 Day', 'TJT', '', NULL, NULL, 'May', '1/31/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (308, 'Terracon', '0000-05-00', 'NUTTING/NS2', 0, '2012-10-09', NULL, NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Terracon', 'Yes-definite', 'III', 'Range: 10 to 120 psi. (D-5720)', NULL, NULL, 'May', '10/9/2012', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (309, 'Terracon', '0000-05-00', 'NUTTING/NS3', 0, '2012-10-09', NULL, NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Terracon', 'Yes-definite', 'III', 'Range:16TSF(E-4&ManSpecs)(Out of Svc)', NULL, NULL, 'May', '10/9/2012', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (310, 'Advance Testing Company, Inc.', '0000-05-00', 'ADVANCENY1', 0, '2011-02-10', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Advance Testing Company, Inc.', 'Yes', 'III', 'Range: 1K', NULL, NULL, 'May', '2/10/2011', 'Dec-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (311, 'Walsh Construction - ARB', '0000-05-00', 'WALSHARB', 0, '2011-04-26', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Walsh Construction - ARB', 'Yes', 'DLP', 'Range: 100 lbs ', NULL, NULL, 'May', '4/26/2011', 'Jul-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (312, 'Hi-Way Paving Company', '0000-05-00', 'HIWAY/71029', 0, '2011-03-10', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Hi-Way Paving Company', 'Yes', 'TLR', '', NULL, NULL, 'May', '3/10/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (313, 'CTL Engineering, Inc. ', '0000-05-00', 'CTLWV', 0, '2013-09-23', NULL, NULL, 'OOS', 'Credit Card Tax 5%', 5, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'CTL Engineering, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'May', '9/23/2013', 'Aug-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (314, 'Michael Baker Jr. Inc.', '0000-03-00', 'MICHAELBAKE', 0, '2013-05-29', NULL, '2014-03-17', 'No', 'Philadephia 8%', 8, 'COD', '', b'1', 'Active', b'1', '', 'Michael Baker Jr. Inc', 'Yes', 'TPJ', '', NULL, NULL, 'March', '5/29/2013', 'Mar-13', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (315, 'Elastizell Corporation of America', '0000-06-00', 'ELASTIZL', 0, '2013-03-13', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Elastizell Research Center', 'Yes-1 week', 'TLR', '', NULL, NULL, 'June', '3/13/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (316, 'ATC Associates, Inc.', '0000-06-00', 'ATCNOVI', 0, '2013-06-19', NULL, '2014-06-02', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'ATC Associates, Inc.', 'Yes', 'TPJ', 'Range: 220 lbs ', NULL, NULL, 'June', '6/19/2013', 'Jul-04', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (317, 'Superior Precast Products', '0000-06-00', 'SUPPRECAST', 0, '2013-06-19', NULL, '2014-06-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Superior Precast Products', 'Yes', 'KAS', '', NULL, NULL, 'June', '6/19/2013', 'May-10', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (318, 'Ohio Department of Transportation ', '0000-06-00', 'OHIODIS4', 0, '2013-06-19', NULL, '2014-06-02', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Ohio Department of Transportation ', 'Yes', 'CJS', '', NULL, NULL, 'June', '6/19/2013', 'Jun-10', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (319, 'West Virginia University', '0000-06-00', 'WVUADVANCED', 0, '2013-04-25', NULL, '2014-06-02', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Advanced Concrete Materials Research Lab', 'Yes', 'CJS', '', NULL, NULL, 'June', '4/25/2013', 'Jun-10', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (320, 'Professional Service Industries, Inc.', '0000-06-00', 'PSI/AUBR', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes-Fri prior', 'KAS', 'Cap: 500 lbs', NULL, NULL, 'June', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (321, 'Michigan State University', '0000-06-00', 'MISTATEUNIV', 0, '2013-04-17', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'VISA/MC', 'Michigan State University', 'Yes', 'DLP', '', NULL, NULL, 'June', '4/17/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (322, 'TTL Associates, Inc.', '0000-06-00', 'TOLTESTPLY', 0, '2013-09-20', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'COD', 'Sep-13', b'1', 'Active', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes', 'KAS', 'Range: 15K ', NULL, NULL, 'June', '9/20/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (323, 'Soils & Materials Engineers', '0000-06-00', 'SOILS/MAUMEE', 0, '2013-07-09', NULL, '2014-06-16', 'OOS', ' ', 0, 'Net 30', '', b'1', ' Active', b'1', '', 'Soils & Materials Engineers', 'Yes- 2 days', 'KAS', 'Range: 64 Kg (Frame 2)', NULL, NULL, 'June', '7/9/2013', 'Jun-02', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (324, 'Michigan State University', '0000-06-00', 'MISTATEUNIV1', 0, '2013-04-17', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'VISA/MC', 'Michigan State University', 'Yes', 'TJT', '', NULL, NULL, 'June', '4/17/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (325, 'Rock Products', '0000-06-00', 'ROCK ', 0, '2013-04-18', NULL, '2014-06-16', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Rock Products', 'Yes', 'CJS', '', NULL, NULL, 'June', '4/18/2013', 'Jun-10', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (326, 'Essroc Ready Mix ', '0000-06-00', 'SHEESSC', 0, '2013-07-09', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Essroc Ready Mix ', 'Yes', 'TPJ', '', NULL, NULL, 'June', '7/9/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (327, 'ECS Mid-Atlantic, LLC', '0000-06-00', 'ENGYORK', 0, '2013-04-18', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'DLP', '', NULL, NULL, 'June', '4/18/2013', 'Jul-06', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (328, 'Glen-Gery Corporation', '0000-06-00', 'GLENGE/S', 0, '2013-06-28', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Glen-Gery Corporation', 'Yes-2 days', 'DLP', '', NULL, NULL, 'June', '6/28/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (329, 'Harrington Hoists, Inc.', '0000-06-00', 'HARRINGT1', 0, '2013-07-08', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Harrington Hoists, Inc.', 'Yes', 'DP/TJ', 'Cap: 5 Ton / 10 Ton ', NULL, NULL, 'June', '7/8/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (330, 'James W. Quandel & Sons, Inc.', '0000-06-00', 'QUANDEL', 0, '2013-06-28', '0000-00-00', '2014-06-23', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'James W. Quandel & Sons, Inc.', 'No', 'DLP', '', NULL, NULL, 'June', '6/28/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (331, 'Trumbull Corporation', '0000-06-00', 'TRUMB91095', 0, '2013-05-29', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Trumbull Corporation', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'June', '5/29/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (332, 'Hanover Concrete Company', '0000-06-00', 'HANOVERCON', 0, '2013-07-09', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Hanover Concrete Company', 'Yes- 1 day', 'TPJ', '', NULL, NULL, 'June', '7/9/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (333, 'Hanover Concrete Company', '0000-06-00', 'HANOVERS', 0, '2013-07-15', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Hanover Concrete Company', 'Yes- 1 day', 'TPJ', '', NULL, NULL, 'June', '7/15/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (334, 'Harrington Hoists, Inc.', '0000-06-00', 'HARRINGT2', 0, '2013-07-08', '0000-00-00', '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Harrington Hoists, Inc.', 'Yes', 'DLP', 'Range: 5 Ton/ 10 Ton ', NULL, NULL, 'June', '7/8/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (335, 'New Enterprise Stone & Lime', '0000-06-00', 'NEWENT/EVER', 0, '2013-07-09', '0000-00-00', '2014-06-23', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'PO Required', 'New Enterprise Stone & Lime', 'Yes', 'TPJ', '', NULL, NULL, 'June', '7/9/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (336, 'New Enterprise Stone & Lime', '0000-05-00', 'NEWENT68144', 0, '2013-06-12', '0000-00-00', '2014-05-26', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'PO Required', 'New Enterprise Stone & Lime ', 'Yes', 'TPJ', '', NULL, NULL, 'May', '6/12/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (337, 'Nitterhouse Masonry Products, LLC', '0000-06-00', 'NITTERBLOCK', 0, '2013-05-29', '0000-00-00', '2014-06-23', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Nitterhouse Masonry Products, LLC', 'Yes- 1 day', 'CS/AY', '', NULL, NULL, 'June', '5/29/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (338, 'MERSEN USA St. Marys-PA Corp', '0000-06-00', 'CARBTROUT', 0, '2013-06-28', '0000-00-00', '2014-06-23', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'MERSEN USA St. Marys-PA Corp', 'Yes-1 day', 'DLP', 'Range: 10 lbs to 1K ', NULL, NULL, 'June', '6/28/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (339, 'Precision Compacted Components, Inc.', '0000-06-00', 'PCC', 0, '2013-07-09', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Precision Compacted Components, Inc.', 'Yes- 1 day', 'CS/TJ', '', NULL, NULL, 'June', '7/9/2013', 'Mar-00', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (340, 'US DOT/FHWA/Office of Infrastructure', '0000-06-00', 'FEDHIGHWAY', 0, '2012-06-20', '0000-00-00', NULL, 'OOS', '', 0, 'Cr.C', '', b'1', 'Active', b'1', 'MUST HAVE', 'Federal Highway Administration', '', 'III', 'Range: 120 KPA (E-4)', NULL, NULL, 'June', '6/20/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (341, 'Brayman Construction', '0000-06-00', 'BRAYMAN2', 0, '2010-06-21', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Brayman Construction', '', 'III', 'Range: 0-60psi', NULL, NULL, 'June', '6/21/2010', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (342, 'Thiele Geotech, Inc.', '0000-06-00', 'THIELENE', 0, '2010-07-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Thiele Geotech, Inc.', 'Yes', 'III', '', NULL, NULL, 'June', '7/20/2010', 'Jun-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (343, 'Rasmussen Equipment', '0000-06-00', 'RASMUSSEN', 0, '2010-06-22', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Rasmussen Equipment', 'Yes', 'III', '', NULL, NULL, 'June', '6/22/2010', 'Jun-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (344, 'Owens Corning ', '0000-06-00', 'OWENSCORN', 0, '2011-06-02', NULL, NULL, 'Yes', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'Credit Card', 'Owens Corning ', 'Yes', 'TJT', '', NULL, NULL, 'June', '6/2/2011', 'Jun-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (345, 'AECOM Environment ', '0000-06-00', 'STS/GRAND', 0, '2010-05-25', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'Conditional Net30', 'AECOM Environment ', '2 days', 'III', 'Range: 24K (4,650 PSI)', NULL, NULL, 'June', '5/25/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (346, 'DLZ', '0000-01-00', 'DLZNS1', 0, '2013-04-17', '0000-00-00', '2014-01-13', 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', '', 'DLZ', 'Yes', 'III', 'Range: 500psi', NULL, NULL, 'January', '4/17/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (347, 'Denso Manufacturing', '0000-06-00', 'DENSO', 0, '2011-05-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Denso Manufacturing', 'Yes', 'DLP', '', NULL, NULL, 'June', '5/26/2011', 'Apr-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (348, 'Trumbull Corporation', '0000-06-00', 'TRUM/15297', 0, '2011-06-21', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Trumbull Corporation', 'Yes', 'III/CS', 'Range: 250 lbs ', NULL, NULL, 'June', '6/21/2011', 'Feb-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (349, 'Hubbel, Roth & Clark, Inc.', '0000-06-00', 'HUBBLEHOW', 0, '2011-05-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Hubbel, Roth & Clark, Inc.', 'Yes', 'TLR', '', NULL, NULL, 'June', '5/13/2011', 'May-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (350, 'Premarc / Metro Supply', '0000-06-00', 'PREMARC', 0, '2011-06-16', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Premarc / Metro Supply', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/16/2011', 'Aug-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (351, 'Dayton Superior', '0000-06-00', 'CEMPRO', 0, '2011-05-04', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive ', b'1', '', 'Dayton Superior', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'June', '5/4/2011', 'Oct-98', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (352, 'Professional Service Industries, Inc.', '0000-07-00', 'PSI/GIR', 0, '2013-07-15', '0000-00-00', '2014-07-07', 'No', 'Trumbull 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'July', '7/15/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (353, 'Erico Products', '0000-07-00', 'ERICO/MO', 0, '2013-07-09', '0000-00-00', '2014-07-14', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'FCS Construction', 'Yes', 'DLP', '', NULL, NULL, 'July', '7/9/2013', '', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (354, 'Erico Products', '0000-07-00', 'ERICO/TX', 0, '2013-07-09', '0000-00-00', '2014-07-14', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'CMC Coating of Texas', 'Yes', 'DLP', '', NULL, NULL, 'July', '7/9/2013', '', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (355, 'Triad Engineering', '0000-02-00', 'TRIAD/GREEN', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Triad Engineering', 'Yes - 1 Day', 'DLP', '', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (356, 'Waste Management', '0000-07-00', 'WASTEIRWIN', 0, '2013-07-09', NULL, '2014-07-21', 'Yes', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Waste Management', 'Yes', 'DLP', '', NULL, NULL, 'July', '7/9/2013', 'Aug-10', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (357, 'Ron Crane Scale Sales - USA', '0000-07-00', 'NOAA', 0, '2010-07-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'NOAA - PMEL - EDD', 'Yes', 'DLP', '', NULL, NULL, 'July', '7/21/2010', 'Jun-10', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (358, 'Warren Paving', '0000-07-00', 'WARREN', 0, '2010-07-21', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Warren Paving', 'No', 'CJS', '', NULL, NULL, 'July', '7/21/2010', 'Sep-04', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (359, 'Harper Company', '0000-07-00', 'HARPERCLEVE', 0, '2011-07-26', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'Harper Company', 'Yes', 'TJT', '', NULL, NULL, 'July', '7/26/2011', 'Jul-10', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (360, 'John Gulisek Construction', '0000-04-00', 'GULISEK99144', 0, '2013-05-15', '0000-00-00', '2014-04-28', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'Job #', 'John Gulisek Construction', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'April', '5/15/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (361, 'Cernica Engineering, Inc.', '0000-08-00', 'CERNICA', 0, '2013-07-23', NULL, '2014-08-04', 'No', 'Mahoning 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Cernica Engineering, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'August', '7/23/2013', 'Aug-10', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (362, 'CTL Engineering', '0000-08-00', 'CTLBRUNS', 0, '2013-09-23', NULL, NULL, 'No', 'Medina 6.75%-CC5%', 11.75, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'CTL Engineering', 'Yes', 'DLP', '', NULL, NULL, 'August', '9/23/2013', 'Sep-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (363, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (364, 'PW Laboratories, Inc', '0000-08-00', 'PARRATTWOLFF', 0, '2013-08-20', '0000-00-00', '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'PW Laboratories, Inc', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'August', '8/20/2013', '', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (365, 'Professional Service Industries, Inc.', '0000-08-00', 'PROFSCHEN', 0, '2013-08-19', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Professional Service Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/19/2013', 'Nov-10', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (366, 'E. Dillon & Company', '0000-08-00', 'DILLONE', 0, '2013-08-20', '0000-00-00', '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'E. Dillon & Company', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'August', '8/20/2013', '', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (367, 'Quikrete - Pounding Mill', '0000-08-00', 'QUICK', 0, '2013-08-20', '0000-00-00', '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Quikrete - Pounding Mill', 'Yes', 'KAS', '', NULL, NULL, 'August', '8/20/2013', '', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (368, 'Lighthouse Engineering Consultants, Inc. ', '0000-08-00', 'LIGHTHOUSE', 0, '2013-08-20', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Lighthouse Engineering Consultants, Inc. ', 'Yes', 'KAS', 'Range: 8,100 Grams ', NULL, NULL, 'August', '8/20/2013', 'Aug-08', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (369, 'Terradon Corporation', '0000-08-00', 'TERRLEWIS', 0, '2013-08-20', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Terradon Corporation', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/20/2013', 'Sep-10', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (370, 'Cochran Industries - Virginia', '0000-08-00', 'COCHRAN', 0, '2011-08-25', '0000-00-00', '2013-08-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cochran Industries - Virginia', 'Yes-1-2 days', 'TJT', '', NULL, NULL, 'August', '8/25/2011', '', '8/12/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (371, 'West Virginia Department of Highways', '0000-08-00', 'WVAPARKERS', 0, '2013-08-28', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'West Virginia Department of Highways', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/28/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (372, 'Independent Concrete Pipe', '0000-08-00', 'INDCONCLOND', 0, '2013-08-06', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Independent Concrete Pipe', 'Yes-48 hours', 'CS/KY', '', NULL, NULL, 'August', '8/6/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (373, 'DHDC, Inc. ', '0000-08-00', 'DHDC', 0, '2013-09-16', NULL, '2014-08-25', 'No', 'Franklin 7%', 7, 'COD', '', b'1', 'Active', b'1', 'Credit Card', 'DHDC, Inc. ', 'Yes', 'DLP', 'Range: 1K ', NULL, NULL, 'August', '9/16/2013', 'Sep-10', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (374, 'Ron Crane Scale Sales-USA', '0000-08-00', 'CRANE 7 ', 0, '2010-08-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/13/2010', 'Aug-10', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (375, 'Cooper Instruments & Systems', '0000-08-00', 'COOPERINST', 0, '2010-08-25', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Cooper Instruments & Systems', 'Yes', 'TLR', 'Range: 200,000 lbs ', NULL, NULL, 'August', '8/25/2010', 'Dec-04', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (376, 'Unifour Engineering & Testing ', '0000-08-00', 'UNIFOUR', 0, '2010-01-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'Unifour Engineering & Testing ', 'Yes', 'III', '', NULL, NULL, 'August', '1/20/2010', 'Aug-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (377, 'Plymouth Tube Company - East Troy', '0000-08-00', 'PLYMOUTHTUBE', 0, '2010-11-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Plymouth Tube Company - East Troy', 'Yes', 'DLP', '', NULL, NULL, 'August', '11/18/2010', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (378, 'Martinez & Turek, Inc.', '0000-08-00', 'MART&TUR', 0, '2010-08-17', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Martinez & Turek, Inc.', 'Yes', '', '', NULL, NULL, 'August', '8/17/2010', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (379, 'Broome Community College', '0000-08-00', 'BROOME', 0, '2011-07-28', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Broome Community College', 'Yes', '', 'Range: 1K/6K/15K/30K ', NULL, NULL, 'August', '7/28/2011', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (380, 'MetaMateria Technologies', '0000-08-00', 'METAMAT', 0, '2011-08-17', NULL, NULL, 'No', 'Franklin 7%', 7, 'COD', '', b'1', 'Inactive ', b'1', '', 'MetaMateria Technologies', 'Yes', 'CJS', '', NULL, NULL, 'August', '8/17/2011', 'Sep-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (381, 'Terracon', '0000-08-00', 'NUTTINGSOM', 0, '2012-10-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Terracon', 'Yes', 'TJT', '', NULL, NULL, 'August', '10/9/2012', 'Aug-10', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (382, 'Winchester Building Supply', '0000-09-00', 'WINCHEST', 0, '2013-09-23', '0000-00-00', '2014-09-15', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Winchester Building Supply', 'Yes - 1 day', 'TPJ', 'Range: 200 lbs to 2K (1,020 PSI) ', NULL, NULL, 'September', '9/23/2013', '', '9/15/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (383, 'Golden Triangle', '0000-09-00', 'GOLDENLATRO', 0, '2013-07-26', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE ', 'Golden Triangle', 'Yes-1 day', 'KAS', '', NULL, NULL, 'September', '7/26/2013', 'Mar-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (384, 'U. S. Army Corps of Engineers', '0000-09-00', 'CORP/DUQ', 0, '2013-09-18', NULL, '2014-09-08', 'Yes', ' ', 0, 'VISA', '', b'1', 'Active', b'1', '', 'U. S. Army Corps of Engineers', 'Yes', 'DLP', '', NULL, NULL, 'September', '9/18/2013', 'Nov-00', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (385, 'Premiere Concrete Admixtures ', '0000-09-00', 'PROMIX', 0, '2013-10-14', NULL, '2014-09-22', 'No', 'Williams 7.25%', 7.25, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Premiere Concrete Admixtures ', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', 'Jun-07', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (386, 'Oshkosh Corporation', '0000-09-00', 'OSHKOSH', 0, '2010-09-21', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'MUST HAVE', 'Oshkosh Corporation', 'Yes', 'III', '', NULL, NULL, 'September', '9/21/2010', 'Feb-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (387, 'American Marine Corporation', '0000-09-00', 'AMERICANMAR', 0, '2010-11-22', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Active', b'0', 'MUST HAVE', 'American Marine Corporation', 'Yes', 'III', '', NULL, NULL, 'September', '11/22/2010', 'Sep-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (388, 'Wellington Hammrick, Inc.', '0000-09-00', 'WELLHAM', 0, '2010-09-21', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Wellington Hammrick, Inc.', 'Yes', 'III', '', NULL, NULL, 'September', '9/21/2010', 'Sep-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (389, 'Chandler Concrete of VA, Inc.', '0000-09-00', 'CHANDLER', 0, '2010-09-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Chandler Concrete of VA, Inc.', 'Yes', '', '', NULL, NULL, 'September', '9/15/2010', 'Sep-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (390, 'Norwalk Concrete Industries', '0000-10-00', 'NORWALK', 0, '2013-10-21', '0000-00-00', '2014-10-06', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Norwalk Concrete Industries', 'Yes- 2 days', 'DLP', 'Range: 30 in Hg', NULL, NULL, 'October', '10/21/2013', '', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (391, 'NTH Consultants', '0000-10-00', 'NTHBETH', 0, '2013-09-13', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'In Active', b'1', 'MUST HAVE', 'NTH Consultants', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/13/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (392, 'Drexel University', '0000-10-00', 'DREXEL', 0, '2013-06-17', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Drexel University ', 'Yes - 2 Days', 'KS', '', NULL, NULL, 'October', '6/17/2013', 'Apr-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (393, 'Villanova University', '0000-10-00', 'VILLANOVA', 0, '2013-08-19', NULL, '2015-10-12', 'Yes', ' ', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Villanova University', 'Yes', 'III', 'Range: 0.0005 inches to 0.2 inches ', NULL, NULL, 'October', '8/19/2013', 'Aug-10', '10/12/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (394, 'Nitterhouse Masonry Products, LLC', '0000-10-00', 'PRECASTSYS', 0, '2012-10-31', NULL, '2013-10-14', 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Precast Systems', 'Yes-1 day', 'KAS', '', NULL, NULL, 'October', '10/31/2012', 'Sep-01', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (395, 'Quality Stone Veneer, Inc. ', '0000-10-00', 'QUALITYSTONE', 0, '2012-11-02', NULL, '2013-10-14', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Stone Veneer, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'October', '11/2/2012', 'Sep-10', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (396, 'Professional Service Industries, Inc.', '0000-10-00', 'PSI/PLY3', 0, '2012-11-02', NULL, '2013-10-21', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Professional Service Industries, Inc.', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'October', '11/2/2012', 'Mar-10', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (397, 'Triumph Materials', '0000-08-00', 'TRIUMP', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'No', 'Muskingum 7.25%', 7.25, 'COD', '', b'1', 'Active', b'1', '', 'Triumph Material', 'Yes', '', 'Range:', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (398, 'Engineering and Technical Services', '0000-09-00', 'E&TS', 0, '2013-09-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Engineering and Technical Services', 'Yes', 'III', '', NULL, NULL, 'September', '9/23/2013', 'Oct-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (399, 'Engineering and Technical Services', '0000-09-00', 'AMERICANBRID', 0, '2013-09-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'American Bridge', 'Yes', 'III', '', NULL, NULL, 'September', '9/23/2013', 'Nov-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (400, '4D/Schuster\'s', '0000-10-00', 'OLDSHEFFIELD', 0, '2012-11-06', NULL, '2013-10-28', 'No', 'Lorain 6.5%', 6.5, 'Net 30', '', b'1', 'Active ', b'1', ' ', 'Oldcastle APG Sheffield', 'Yes', 'DLP', 'Range: 3,100 Grams ', NULL, NULL, 'October', '11/6/2012', 'Dec-04', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (401, 'United Refractories', '0000-10-00', 'UNITEDRE', 0, '2012-11-05', NULL, '2013-10-28', 'No', 'Trumbull 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'United Refractories', 'Yes-definite!', 'KAS', '', NULL, NULL, 'October', '11/5/2012', 'Jun-97', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (402, 'Tuscarawas County', '0000-10-00', 'TUSCARWA', 0, '2012-11-12', NULL, '2013-10-28', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Tuscarawas County', 'Yes', 'DLP', '', NULL, NULL, 'October', '11/12/2012', 'Nov-05', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (403, 'Key Precast Supply, Inc.', '0000-10-00', 'KEYPRECAST', 0, '2012-11-07', NULL, '2013-10-28', 'Yes', '', 0, 'Net 30', '', b'0', 'Active ', b'0', '', 'Key Precast Supply, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'October', '11/7/2012', 'Nov-08', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (404, 'Alabama Power Company', '0000-10-00', 'ALABPOWER', 0, '2010-12-22', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'Alabama Power Company ', 'Yes', 'TLR', 'Range: 50K', NULL, NULL, 'October', '12/22/2010', 'Mar-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (405, 'Northrop Grumman Ship Building', '0000-10-00', 'NORTHGRUM', 0, '2010-10-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Northrop Grumman Ship Building', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/19/2010', 'Aug-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (406, 'USCG ANT LONG ISLAND SOUND', '0000-10-00', 'USCGLONGISL', 0, '2010-10-28', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'USCG ANT LONG ISLAND SOUND', 'Yes', 'III', '', NULL, NULL, 'October', '10/28/2010', 'Oct-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (407, 'Accu-Cal, Inc.', '0000-10-00', 'ACCUCAL', 0, '2010-10-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Accu-Cal, Inc.', '', 'III', '$3.00 each', NULL, NULL, 'October', '10/28/2010', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (408, 'The Upson-Walton Company', '0000-10-00', 'UPSONWALTON', 0, '2011-11-21', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'The Upson-Walton Company', 'Yes', 'DLP', 'Range: 50K ', NULL, NULL, 'October', '11/21/2011', 'Sep-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (409, 'Servicios Maritimos de Campeche SA de CV', '0000-10-00', 'SERVICIOSMX', 0, '2010-12-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'MUST HAVE', 'Servicios Maritimos de Campeche SA de CV', 'Yes', 'DLP', '', NULL, NULL, 'October', '12/23/2010', 'Oct-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (410, 'Messier-Dowty', '0000-10-00', 'MESSDOW', 0, '2010-10-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'VISA', 'Messier-Dowty', 'Yes', 'III', '', NULL, NULL, 'October', '10/19/2010', 'Oct-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (411, 'USNS Henry J. Kaiser ', '0000-10-00', 'USNSKAISER', 0, '2010-10-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'USNS Henry J. Kaiser ', 'Yes', 'III', 'Range: 50K ', NULL, NULL, 'October', '10/20/2010', 'Oct-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (412, 'Pinnacle Tool, Inc.', '0000-10-00', 'PINNACLE', 0, '2010-11-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Pinnacle Tool, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'October', '11/18/2010', 'Oct-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (413, 'Brechbuhler Scales, Inc. ', '0000-10-00', 'BRECHBUHLER', 0, '2013-01-17', NULL, NULL, 'No', 'Wood 6.75%', 6.75, 'COD', '', b'1', 'Active', b'1', '', 'Brechbuhler Scales, Inc. ', 'Yes', 'III', '', NULL, NULL, 'October', '1/17/2013', 'Oct-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (414, 'Mactec Engineering', '0000-10-00', 'LAWNEW', 0, '2010-11-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'MACTEC Engineering and Consulting, Inc.', 'Yes', 'TML', 'Range: ', NULL, NULL, 'October', '11/18/2010', 'Dec-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (415, 'New Enterprise Stone & Lime', '0000-11-00', 'NEWENT/S', 0, '2012-11-20', '0000-00-00', '2013-11-11', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'KAS', '', NULL, NULL, 'November', '11/20/2012', '', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (416, 'Bierman\'s Concrete Products, LTD', '0000-07-00', 'BIERMAN', 0, '2013-08-06', '0000-00-00', '2015-07-13', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Bierman\'s Concrete Products, LTD', 'Yes', 'III', '', NULL, NULL, 'July', '8/6/2013', '', '7/13/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (417, 'Thelen Associates, Inc.', '0000-11-00', 'THELEN/LEX', 0, '2012-12-05', NULL, '2013-11-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Thelen Associates, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'November', '12/5/2012', 'Oct-09', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (418, 'Jeff Zell Consultants', '0000-11-00', 'ZELLCONS1', 0, '2012-11-13', '0000-00-00', '2013-11-04', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Jeff Zell Consultants', 'Yes', 'DLP', 'Range: 228.5 Kg', NULL, NULL, 'November', '11/13/2012', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (419, 'Columbia Rigging Corporation', '0000-11-00', 'COLUMBIARIG', 0, '2011-04-05', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', '', 'Columbia Rigging Corporation', 'Yes', 'DLP', '', NULL, NULL, 'November', '4/5/2011', 'Nov-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (420, 'Froehling & Robertson', '0000-12-00', 'F&R/NC', 0, '2010-12-23', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Froehling & Robertson', '', 'III', '', NULL, NULL, 'December', '12/23/2010', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (421, 'Load Cell Central', '0000-12-00', 'LOADCELLCEN', 0, '2010-12-23', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Load Cell Central', 'Yes', 'III', '', NULL, NULL, 'December', '12/23/2010', 'Sep-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (422, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS', 0, '2013-01-23', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'DLP', 'Range: 25K (ID#GS227) (E-4)', NULL, NULL, 'January', '1/23/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (423, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS3', 0, '2013-01-23', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'CJS', 'Range: 2K ', NULL, NULL, 'January', '1/23/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (424, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS4', 0, '2013-01-23', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'GeoTechnics', 'Yes', 'DLP', 'Range: 150 PSI ', NULL, NULL, 'January', '1/23/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (425, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS5', 0, '2013-01-23', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active', b'0', '', 'GeoTechnics', 'Yes', 'CJS', 'Range: 2K (E2658-11)', NULL, NULL, 'January', '1/23/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (426, 'Ohio Department of Transportation ', '0000-01-00', 'OHIOMARIETTA', 0, '2013-01-21', NULL, '2014-01-06', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Ohio Department of Transportation ', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/21/2013', 'Jan-11', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (427, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS1', 0, '2013-01-23', '0000-00-00', '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'DLP', 'Range: 1K ', NULL, NULL, 'January', '1/23/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (428, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS2', 0, '2013-01-23', '0000-00-00', '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'DLP', 'Range: 2.5K to 250K (ID# G788)', NULL, NULL, 'January', '1/23/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (429, 'Centria', '0000-01-00', 'CENTRIA', 0, '2013-01-21', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Centria', 'Yes', 'III/KS', 'Range: 1 inch', NULL, NULL, 'January', '1/21/2013', 'Jan-11', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (430, 'Cavert Wire Company, Inc. ', '0000-05-00', 'CAVERTWIRE', 0, '2013-06-19', NULL, '2014-05-26', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', 'Credit Card', 'Cavert Wire Company, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/19/2013', 'Jan-11', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (431, 'Barber Spring', '0000-01-00', 'BARBERSPRING', 0, '2013-01-16', NULL, '2014-01-06', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Barber Spring', 'Yes', 'III', 'Range: 20 Inches', NULL, NULL, 'January', '1/16/2013', 'Mar-04', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (432, 'McTech Corp/Tech Ready Mix ', '0000-01-00', 'MCTECH', 0, '2013-01-24', NULL, '2014-01-13', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'McTech Corp/Tech Ready Mix ', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/24/2013', 'Jan-10', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (433, 'Custom Production Mfg., Inc.', '0000-01-00', 'CUSTOMPROD', 0, '2012-11-21', NULL, '2014-01-20', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Custom Production Mfg., Inc.', 'Yes', 'TJT', '', NULL, NULL, 'January', '11/21/2012', 'Jan-11', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (434, 'Spallina Materials Inc.', '0000-01-00', 'ELAM', 0, '2013-05-16', NULL, '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Spallina Materials Inc.', 'Yes', 'KAS', '', NULL, NULL, 'January', '5/16/2013', 'Jan-05', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (435, 'Micron Inspection & Calibration Services', '0000-01-00', 'MILCOMMFAS', 0, '2013-03-20', NULL, '2014-01-27', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', 'Credit Card', 'Military & Commercial Fasteners Corp.', 'Yes', 'CJS', 'Range: 3 inches ', NULL, NULL, 'January', '3/20/2013', 'Janaury 2011', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (436, 'Glenn O. Hawbaker, Inc. ', '0000-01-00', 'HAWBAKERTP', 0, '2013-02-05', NULL, '2014-01-27', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Glenn O. Hawbaker, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'January', '2/5/2013', 'May-08', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (437, 'FMC & Associates, LLC', '0000-01-00', 'FMC', 0, '2013-10-01', NULL, '2014-01-27', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'FMC & Associates, LLC', 'Yes', 'CS/KS', 'Range: 250 K', NULL, NULL, 'January', '10/1/2013', 'Oct-08', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (438, 'Swank Construction Company ', '0000-01-00', 'SWANKPOINT', 0, '2012-10-09', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'Job #', 'Swank Construction Company ', 'Yes', 'CJS', '', NULL, NULL, 'January', '10/9/2012', 'Feb-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (439, 'Hawkins Precast Concrete Products, LLC', '0000-01-00', 'HAWKINS', 0, '2011-12-14', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Hawkins Precast Concrete Products, LLC', 'Yes', 'DLP', '', NULL, NULL, 'January', '12/14/2011', 'Aug-03', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (440, 'McCreary Concrete Products, Inc. ', '0000-02-00', 'MCCREARY', 0, '2013-02-13', NULL, '2013-02-03', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'McCreary Concrete Products, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/13/2013', 'Feb-11', '2/3/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (441, 'Terracon', '0000-02-00', 'NUTTINGLEX', 0, '2013-02-20', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Terracon', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'February', '2/20/2013', 'May-00', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (442, 'Concrete Industries, Inc.', '0000-02-00', 'CONCRETEIND', 0, '2013-02-20', NULL, '2014-02-03', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Concrete Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/20/2013', 'Feb-11', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (443, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWIZSFWAY', 0, '2013-01-08', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'TLR', '', NULL, NULL, 'February', '1/8/2013', 'Jan-11', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (444, 'Brayman Construction', '0000-02-00', 'BRAYNEWCAS', 0, '2013-01-03', NULL, '2014-02-03', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Brayman Construction', 'Yes', 'III', '', NULL, NULL, 'February', '1/3/2013', 'Mar-11', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (445, 'CTI & Associates, Inc.', '0000-02-00', 'CTIASSOC', 0, '2013-03-05', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'Forever COD', 'CTI & Associates, Inc.', 'Yes- 2 days', 'III', 'Range: 200 PSI', NULL, NULL, 'February', '3/5/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (446, 'University of Toledo', '0000-02-00', 'UNIVTOLEDO', 0, '2013-03-04', '0000-00-00', '2014-02-10', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'University of Toledo', 'Yes', 'III', '', NULL, NULL, 'February', '3/4/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (447, 'CTI & Associates, Inc. ', '0000-02-00', 'CTIASSOC1', 0, '2013-03-05', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'Forever COD', 'CTI & Associates, Inc. ', 'Yes- 2 days', 'DP', 'Range: 78 - 82', NULL, NULL, 'February', '3/5/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (448, 'CTI & Associates, Inc. ', '0000-02-00', 'CTIASSOC2', 0, '2013-03-04', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Forever COD', 'CTI & Associates, Inc. ', 'Yes- 2 days', 'CJS', 'Range: 10,000 Grams', NULL, NULL, 'February', '3/4/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (449, 'CTI & Associates, Inc. ', '0000-02-00', 'CTIASSOC3', 0, '2013-06-25', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Forever COD', 'CTI & Associates, Inc. ', 'Yes- 2 days', 'TPJ', 'Range: 110 lbs ', NULL, NULL, 'February', '6/25/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (450, 'CTI & Associates, Inc. ', '0000-02-00', 'CTIASSOC4', 0, '2013-03-05', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Forever COD', 'CTI & Associates, Inc. ', 'Yes- 2 days', 'CJS', 'Range: 210 Grams ', NULL, NULL, 'February', '3/5/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (451, 'Grand Rapids Gravel Company', '0000-02-00', 'GRGE', 0, '2013-03-04', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Grand Rapids Gravel Company', 'Yes', 'KAS', 'Range: 10,000 Grams ', NULL, NULL, 'February', '3/4/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (452, 'Kelly Paving, Inc. ', '0000-02-00', 'MARZANEMAR', 0, '2013-07-23', NULL, '2014-02-17', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Kelly Paving, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'February', '7/23/2013', 'May-10', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (453, 'Triton Construction, Inc. ', '0000-02-00', 'TRITON', 0, '2013-03-01', NULL, '2014-02-17', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Triton Construction, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'February', '3/1/2013', 'Apr-11', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (454, 'Beech Construction', '0000-04-00', 'BEECHLAT', 0, '2013-05-10', NULL, '2014-04-14', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Beech Construction', 'Yes', 'TPJ', '', NULL, NULL, 'April', '5/10/2013', 'Feb-09', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (455, 'Indiana Department of Transportation', '0000-02-00', 'INDIANADEPT', 0, '2011-03-10', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Indiana Department of Transportation', 'Yes', 'III', '', NULL, NULL, 'February', '3/10/2011', 'Feb-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (456, 'Tindle Corporation', '0000-02-00', 'TINDLE', 0, '2011-03-04', NULL, NULL, 'OOS', '', 0, 'COD ', '', b'0', 'Inactive ', b'0', '', 'Tindle Corporation', 'No', 'III', '', NULL, NULL, 'February', '3/4/2011', 'Feb-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (457, 'Public Works', '0000-03-00', 'DOLIMD', 0, '2013-04-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Credit Card', 'Public Works', 'Yes', 'III', 'Range: 40K ', NULL, NULL, 'March', '4/1/2013', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (458, 'Inspection Services Company', '0000-02-00', 'INSPECTION', 0, '2012-02-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Inspection Services Company', 'YES-2 days', 'TLR', 'Range: 50 lbs ', NULL, NULL, 'February', '2/23/2012', 'Dec-99', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (459, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWIZPAYNE', 0, '2012-01-17', NULL, NULL, 'No', 'Paulding 7.25%', 7.25, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/17/2012', 'Jan-11', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (460, 'Michigan Department of Transportation', '0000-02-00', 'MICHROCK', 0, '2012-01-23', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Michigan Department of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/23/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (461, 'Ernest Maier Block ', '0000-03-00', 'ERNESTMAIER', 0, '2013-03-26', NULL, '2014-03-03', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Credit Card', 'Ernest Maier Block ', 'Yes', 'CJS', '', NULL, NULL, 'March', '3/26/2013', 'Feb-11', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (462, 'West Virginia Division of Highways', '0000-03-00', 'WVDOHBUR', 0, '2013-03-22', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'West Virginia Division of Highways', 'Yes', 'KAS', '', NULL, NULL, 'March', '3/22/2013', 'Feb-09', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (463, 'Geo-Technology Associates, Inc.', '0000-03-00', 'GTASTERLING1', 0, '2013-03-20', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Geo-Technology Associates, Inc.', 'Yes', 'DLP', 'Range: 0.1 Inch to 1 Inch', NULL, NULL, 'March', '3/20/2013', 'Aug-04', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (464, 'North American Hoganas', '0000-03-00', 'HOGANAS', 0, '2013-09-19', NULL, '2014-03-10', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '3114728 for 2013', 'North American Hoganas', 'Yes', 'DLP', '', NULL, NULL, 'March', '9/19/2013', 'Apr-04', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (465, 'Intelligent Concrete, LLC', '0000-03-00', 'INTELLIGENT', 0, '2013-04-01', NULL, '2014-03-17', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Intelligent Concrete, LLC', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '4/1/2013', 'Mar-11', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (466, 'Commonwealth of Pennsylvania', '0000-03-00', 'PADOTHAR2', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Pennsylvania Department of Transportation', 'Yes', 'DLP', 'Range: 500 lbs Tension', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (467, 'Petersen, Inc. ', '0000-03-00', 'PETERSON', 0, '2011-04-26', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Petersen, Inc. ', 'Yes', 'III', '', NULL, NULL, 'March', '4/26/2011', 'Feb-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (468, 'Central Scale & Supply Company, Inc. ', '0000-03-00', 'CENTRALSCALE', 0, '2011-04-26', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Central Scale & Supply Company, Inc. ', 'Yes', 'III', '', NULL, NULL, 'March', '4/26/2011', 'Mar-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (469, 'TTL Associates, Inc.', '0000-03-00', 'TTLDOVER', 0, '2013-09-20', NULL, NULL, 'OOS', '', 0, 'COD', 'Sep-13', b'1', 'Inactive ', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'March', '9/20/2013', 'Jan-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (470, 'New Enterprise Stone & Lime', '0000-05-00', 'NEWENT9918', 0, '2013-06-04', '0000-00-00', '2014-05-26', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'CJS', '', NULL, NULL, 'May', '6/4/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (471, 'Nova Chemicals', '0000-03-00', 'NOVACHEM', 0, '2012-02-28', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'0', 'CREDIT CARD', 'Nova Chemicals', 'Yes-3 days', 'CJS', 'Range: 1K to 30K', NULL, NULL, 'March', '2/28/2012', 'Mar-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (472, 'Glenn O. Hawbaker, Inc.', '0000-03-00', 'HAWBAKER', 0, '2012-04-02', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Glenn O. Hawbaker, Inc.', 'Yes- 1 day', 'TJT', 'Range: 100K (MOVED)', NULL, NULL, 'March', '4/2/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (473, 'Joseph B. Fay Company', '0000-03-00', 'JBF/100513', 0, '2012-02-23', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', 'GET PO#', 'Joseph B. Fay Company', 'Yes', 'CJS', '', NULL, NULL, 'March', '2/23/2012', 'Jun-10', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (474, 'DLZ Corporation', '0000-03-00', 'DLZWARREN', 0, '2012-03-05', NULL, NULL, 'No ', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'DLZ Corporation', 'Yes', 'TLR', 'Range: 3,100 Grams', NULL, NULL, 'March', '3/5/2012', 'Mar-11', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (475, 'University of Delaware', '0000-04-00', 'UNIVDELAWARE', 0, '2013-05-15', '0000-00-00', '2014-04-14', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'CREDIT CARD', 'University of Delaware', 'Yes - definite', 'DLP', 'Range: 200 lbs to 20K', NULL, NULL, 'April', '5/15/2013', '', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (476, 'Tyme Engineering, Inc. ', '0000-04-00', 'TYME', 0, '2013-04-24', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Tyme Engineering, Inc. ', 'Yes', 'CS/TJ', 'Range: 15K ', NULL, NULL, 'April', '4/24/2013', 'Jun-08', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (477, 'Michigan Department of Transportation', '0000-04-00', 'MDOT/SOU', 0, '2013-04-25', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes-definite', 'TPJ', '', NULL, NULL, 'April', '4/25/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (478, 'Williams Form Engineering Corp.', '0000-04-00', 'WFEC', 0, '2013-10-15', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Williams Form Engineering Corp.', 'Yes', 'DLP', '', NULL, NULL, 'April', '10/15/2013', 'Jul-05', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (479, 'C & D Hughes', '0000-04-00', 'CDHUGHES', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', ' ', 'C & D Hughes', 'Yes', 'KAS', '', NULL, NULL, 'April', '4/25/2013', 'Mar-11', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (480, 'Lindsay Precast Inc.', '0000-04-00', 'LINDSAY', 0, '2013-05-15', '0000-00-00', '2014-04-21', 'Yes', 'Direct Pay', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Lindsay Precast Inc.', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'April', '5/15/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (481, 'Geotechnical Consultants, Inc. ', '0000-04-00', 'GEOTECHBOARD', 0, '2013-05-15', NULL, '2014-04-21', 'No', 'Mahoning 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Geotechnical Consultants, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/15/2013', 'May-07', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (482, 'J.F. Shea Construction, Inc.', '0000-02-00', 'JFSHEA', 0, '2013-03-13', NULL, '2014-02-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'J.F. Shea Construction, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'February', '3/13/2013', 'Jun-05', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (483, 'J. J. Kennedy', '0000-04-00', 'KENNEDY 3', 0, '2013-05-14', '0000-00-00', '2014-04-21', 'No', 'PA 6 %', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'J. J. Kennedy', 'Yes', 'TPJ', '', NULL, NULL, 'April', '5/14/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (484, 'Carmeuse Lime & Stone', '0000-04-00', 'CARMEUSE', 0, '2013-05-16', NULL, '2014-04-21', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Carmeuse Lime & Stone', 'Yes', 'CJS', 'Range: 20K', NULL, NULL, 'April', '5/16/2013', 'Aug-09', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (485, 'Encore Precast. LLC', '0000-04-00', 'ENCORE', 0, '2013-05-15', NULL, '2014-04-28', 'Yes', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Encore Precast. LLC', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/15/2013', 'May-11', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (486, 'Aggregate & Concrete Testing Services', '0000-04-00', 'ACTS / GNADEN', 0, '2013-05-15', '0000-00-00', '2014-04-21', 'No', 'Tuscarawas 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Aggregate & Concrete Testing Services', 'Yes - 2 days', 'KAS', '', NULL, NULL, 'April', '5/15/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (487, 'EMH & T', '0000-04-00', 'EMHTCOLUMB', 0, '2013-05-15', NULL, '2014-04-28', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'EMH & T', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/15/2013', 'Jul-06', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (488, 'Resource International', '0000-04-00', 'RESOURCECOL', 0, '2013-05-16', NULL, '2014-04-28', 'No', 'Franklin 7%', 7, 'COD', '', b'0', 'Active', b'0', 'Forever COD', 'Resource International', 'Yes', 'KAS', 'Cap: 1K', NULL, NULL, 'April', '5/16/2013', 'Apr-05', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (489, 'Tes Tech', '0000-04-00', 'TESTECH', 0, '2013-05-16', NULL, '2014-04-28', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Tes Tech', 'Yes', 'DLP', 'Range: 600 lbs to 48,000 lbs (E-4)', NULL, NULL, 'April', '5/16/2013', 'Aug-99', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (490, 'Trenwa, Inc. ', '0000-04-00', 'TRENWA', 0, '2013-05-28', NULL, '2014-04-28', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE ', 'Trenwa, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/28/2013', 'Apr-07', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (491, 'Resource International', '0000-04-00', 'RESOURCE', 0, '2013-05-16', '0000-00-00', '2014-04-21', 'No', 'Cuyahoga 8%', 8, 'COD', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Resource International', 'Yes - 1 day', 'KAS', 'Range: 2.5K to 250K ', NULL, NULL, 'April', '5/16/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (492, 'Bowser Morner Testing Lab', '0000-04-00', 'BOWSERDAY', 0, '2013-05-16', '0000-00-00', '2014-04-28', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Bowser Morner, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/16/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (493, 'Soils & Materials Engineers ', '0000-04-00', 'EDPCONS1', 0, '2013-05-24', '0000-00-00', '2014-04-28', 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers ', 'Yes-1 day', 'CS/TJ', 'Cap: 1,500lbs', NULL, NULL, 'April', '5/24/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (494, 'Soils & Materials Engineers ', '0000-04-00', 'EDPCONS2', 0, '2013-05-24', '0000-00-00', '2014-04-28', 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers ', 'Yes-1 day', 'CS/TJ', 'Range: 1K (Channel #13)', NULL, NULL, 'April', '5/24/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (495, 'Soils & Materials Engineers ', '0000-04-00', 'EDPCONS3', 0, '2013-05-24', '0000-00-00', '2014-04-28', 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers ', 'Yes- 1 day', 'CS/TJ', 'Range: 0.6 inches', NULL, NULL, 'April', '5/24/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (496, 'Soils & Materials Engineers ', '0000-04-00', 'EDPCONS4', 0, '2013-05-28', '0000-00-00', '2014-04-28', 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers ', 'Yes - 1 day', 'TPJ', 'Range:48 Kg (Vertical Force)', NULL, NULL, 'April', '5/28/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (497, 'Rich Industries, Inc.', '0000-04-00', 'RICH', 0, '2013-05-15', '0000-00-00', '2014-04-21', 'No', 'Tuscarawas 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Rich Industries, Inc.', 'Yes- 1 day', 'KAS', 'Rang: 400 lbs ', NULL, NULL, 'April', '5/15/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (498, 'Erico Products ', '0000-04-00', 'SUMMITENG', 0, '2013-05-15', NULL, '2014-04-21', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE ', 'Summit Engineered Products', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/15/2013', 'Jan-04', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (499, 'Wahl Refractory Solutions, LLC ', '0000-04-00', 'WAHL', 0, '2013-05-02', '0000-00-00', '2014-04-28', 'No', 'Sandusky 7.25%', 7.25, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Wahl Refractory Solutions, LLC ', 'Yes', 'CJS', '', NULL, NULL, 'April', '5/2/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (500, 'Duffield Associates, Inc.', '0000-04-00', 'CUMBGEO', 0, '2013-05-16', NULL, '2014-04-28', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Duffield Associates, Inc.', 'Yes', 'III', 'Range:50 lbs/100 lbs/200 lbs/500 lbs/1K ', NULL, NULL, 'April', '5/16/2013', 'May-10', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (501, 'Advantage Metal Powders, Inc. ', '0000-04-00', 'ADVANMETAL', 0, '2013-05-15', NULL, '2014-04-21', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Advantage Metal Powders, Inc. ', 'Yes', 'TPJ', '', NULL, NULL, 'April', '5/15/2013', 'May-11', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (502, 'Hilltop Basic Resources, Inc.', '0000-04-00', 'HILLTOP', 0, '2013-03-06', '0000-00-00', '2014-04-28', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hilltop Basic Resources, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'April', '3/6/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (503, 'Lakeland Community College', '0000-08-00', 'LAKELANDCC', 0, '2013-09-26', NULL, '2014-08-04', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Lakeland Community College', 'Yes', 'III', 'Range: 6K / 30K ', NULL, NULL, 'August', '9/26/2013', 'May-03', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (504, 'Trescal', '0000-04-00', 'DYNAMIC', 0, '2013-06-05', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Trescal', 'Yes', 'DLP', '', NULL, NULL, 'April', '6/5/2013', 'Mar-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (505, 'West Virginia Dept. of Transportation', '0000-08-00', 'WVDOTCHAR', 0, '2013-08-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'West Virginia Dept. of Transportation', 'Yes', 'CJS', 'Range: 30 PSI ', NULL, NULL, 'August', '8/19/2013', 'Apr-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (506, 'HSS, LLC', '0000-04-00', 'HSS', 0, '2011-04-26', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'MUST HAVE', 'HSS, LLC', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/26/2011', 'Feb-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (507, 'R. Carter Crane & Hoist Service, Inc. ', '0000-04-00', 'RCARTER', 0, '2011-04-26', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'R. Carter Crane & Hoist Service, Inc. ', 'Yes', 'III', '', NULL, NULL, 'April', '4/26/2011', 'Apr-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (508, 'Northrop Grumman Ship Building', '0000-04-00', 'NORTHWARE', 0, '2011-06-02', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Northrop Grumman Ship Building', 'Yes', 'DLP', '', NULL, NULL, 'April', '6/2/2011', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (509, 'Trumbull Corporation', '0000-04-00', 'TRUMWASH', 0, '2013-03-01', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'Need Job No ', 'Trumbull Corporation', 'Yes', 'TJT', '', NULL, NULL, 'April', '3/1/2013', 'Sep-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (510, 'Harper Company', '0000-04-00', 'HARPERCLEVE1', 0, '2013-03-01', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Harper Company', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/1/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (511, 'Charles J. Merlo, Inc.', '0000-04-00', 'MERLO1', 0, '2011-05-05', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active ', b'0', '', 'Charles J. Merlo, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'April', '5/5/2011', 'Apr-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (512, 'Williams Form Engineering Corp.', '0000-04-00', 'WFEC(OOS)', 0, '2013-01-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Williams Form Engineering Corp.', 'Yes', 'CJS', 'Range: 400K (OOS)', NULL, NULL, 'April', '1/17/2013', 'Jul-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (513, 'Sherwin -Williams Company', '0000-04-00', 'SHERWIN', 0, '2011-04-26', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Sherwin -Williams Company', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/26/2011', 'May-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (514, 'Advance Drainage Systems', '0000-04-00', 'ADS OOS', 0, '2013-10-14', '0000-00-00', NULL, 'No', 'Hancock 6.75%', 6.75, 'MC', '', b'1', 'Inactive ', b'1', 'GET CARD #', 'Advance Drainage Systems', 'Yes-1day', 'III', 'Range: 200 lbs to 10,000 lbs', NULL, NULL, 'April', '10/14/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (515, 'Concrete Protection & Restoration', '0000-05-00', 'CP&R', 0, '2013-09-20', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'Concrete Protection & Restoration', 'Yes', 'DLP', 'Range: 35K ', NULL, NULL, 'May', '9/20/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (516, 'American Goetechnical & Environmental', '0000-05-00', 'AMERGEOTM2', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'American Geotechnical & Environmental', 'Yes-1 day', 'III', 'Range: 650 lbs (3KN) Compression Only', NULL, NULL, 'May', '5/28/2013', 'Jun-97', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (517, 'Concrete Protection & Restoration', '0000-05-00', 'CP&R1', 0, '2013-05-28', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'Concrete Protection & Restoration', 'Yes', 'DLP', 'Range: 47K', NULL, NULL, 'May', '5/28/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (518, 'Concrete Protection & Restoration', '0000-05-00', 'CP&R2', 0, '2013-05-28', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'Concrete Protection & Restoration', 'Yes', 'DLP', 'Range: 35K', NULL, NULL, 'May', '5/28/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (519, 'EBA Engineering, Inc.', '0000-05-00', 'EBA/BALT', 0, '2013-05-28', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'GET ON SITE', 'EBA Engineering, Inc.', 'Yes', 'CJS', 'Cap: 5K (E-4 & Man Specs)', NULL, NULL, 'May', '5/28/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (520, 'Concrete Protection & Restoration', '0000-05-00', 'CP&R3', 0, '2013-05-28', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'Concrete Protection & Restoration', 'Yes', 'DLP', 'Range: 35K ', NULL, NULL, 'May', '5/28/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (521, 'Russell Standard', '0000-05-00', 'RUSSELLBLAIR', 0, '2013-03-13', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Russell Standard', 'Yes', 'DLP', '', NULL, NULL, 'May', '3/13/2013', 'Jun-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (522, 'Fed Ex', '0000-05-00', 'FEDEX', 0, '2013-03-13', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active ', b'1', '', 'Fed Ex', 'Yes', 'KAS', '', NULL, NULL, 'May', '3/13/2013', 'May-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (523, 'University of Cincinnati', '0000-05-00', 'UNIVCIN', 0, '2013-05-28', '0000-00-00', '2014-05-19', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'CREDIT CARD', 'University of Cincinnati', 'Yes-definite', 'TJT', '', NULL, NULL, 'May', '5/28/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (524, 'Thelen Associates ', '0000-02-00', 'THELAN/SL', 0, '2013-05-29', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Thelen Associates', 'Yes', 'KAS', 'Range: 165 lbs', NULL, NULL, 'February', '5/29/2013', 'Apr-06', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (525, 'Plibrico', '0000-05-00', 'PLIBRICO', 0, '2013-06-19', '0000-00-00', '2014-05-19', 'No', 'Jackson 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Plibrico', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'May', '6/19/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (526, 'Ultra Coat USA', '0000-09-00', 'ULTRACOAT', 0, '2013-09-16', '0000-00-00', '2013-09-16', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Ultra Coat USA (In Fibercon\'s Building)', 'Yes', '', '', NULL, NULL, 'Sept.', '9/16/2013', '', '9/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (527, 'Barber Spring Ohio ', '0000-05-00', 'BARBEROHIO', 0, '2013-09-17', NULL, '2014-05-19', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Barber Spring', 'Yes', 'CJS', '', NULL, NULL, 'May', '9/17/2013', 'Oct-07', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (528, 'Hinkle Contracting Corporation', '0000-05-00', 'HINKLEMATE', 0, '2013-07-26', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Hinkle Contracting Corporation', 'Yes', 'TJT', '', NULL, NULL, 'May', '7/26/2013', 'Sep-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (529, 'Walsh Construction Company', '0000-05-00', 'WALSHCANNEL', 0, '2013-04-17', NULL, '2014-05-19', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Walsh Construction Company ', 'Yes', 'TJT', '', NULL, NULL, 'May', '4/17/2013', 'Jun-11', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (530, 'Eagle Concrete Products', '0000-05-00', 'EAGLECP', 0, '2013-06-12', '0000-00-00', '2014-05-26', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Eagle Concrete Products', 'Yes -1 day', 'TJT', '', NULL, NULL, 'May', '6/12/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (531, 'Therm-O-Rock', '0000-05-00', 'THERMROC', 0, '2013-06-12', '0000-00-00', '2014-05-26', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Therm-O-Rock', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'May', '6/12/2013', '', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (532, 'Therm-O-Rock', '0000-05-00', 'THERMROC1', 0, '2013-07-22', NULL, '2014-05-26', 'Yes', ' ', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'GET ON SITE', 'Therm-O-Rock', 'Yes', 'DLP', '', NULL, NULL, 'May', '7/22/2013', 'May-11', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (533, 'Jeff Zell Consultants', '0000-05-00', 'ZELLPA', 0, '2013-03-06', NULL, '2014-05-26', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Jeff Zell Consultants', 'Yes', 'CJS', '', NULL, NULL, 'May', '3/6/2013', 'May-11', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (534, 'Terracon', '0000-05-00', 'NUTWILLOW', 0, '2013-02-27', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Terracon', 'Yes', 'TJT', '', NULL, NULL, 'May', '2/27/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (535, 'Lighthouse R & D Enterprises, Inc.', '0000-05-00', 'LIGHTHOUSE', 0, '2012-06-08', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Lighthouse R & D Enterprises, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/8/2012', 'Apr-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (536, 'GEM, Inc.', '0000-05-00', 'GEMOH', 0, '2011-07-14', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'COD', '', b'0', 'Active ', b'0', '', 'GEM, Inc.', 'Yes', 'III', '', NULL, NULL, 'May', '7/14/2011', 'May-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (537, 'Froehling & Robertson, Inc.', '0000-05-00', 'FROELORTON', 0, '2012-06-04', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'Get PO#', 'Froehling & Robertson, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/4/2012', 'Apr-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (538, 'ERISCO Industries', '0000-05-00', 'ERISCO', 0, '2013-01-16', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'ERISCO Industries', 'Yes', 'CJS', '', NULL, NULL, 'May', '1/16/2013', 'Aug-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (539, 'Mosites Construction', '0000-06-00', 'MOSITES/PIT', 0, '2013-04-18', '0000-00-00', '2014-06-02', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active ', b'1', '', 'Mosites Construction', 'Yes', 'DLP', '', NULL, NULL, 'June', '4/18/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (540, 'Golden Triangle', '0000-03-00', 'GOLDEN84', 0, '2013-05-14', '0000-00-00', '2014-03-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Golden Triangle', 'Yes', 'TPJ', '', NULL, NULL, 'March', '5/14/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (541, 'Soils & Materials Engineers', '0000-06-00', 'SOILS/LAN1', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', ' ', 'Soils & Materials Engineers', 'Yes-1 day', 'KAS', 'Range: 10,100 Grams', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (542, 'Thelen Associates ', '0000-06-00', 'THELENDAY', 0, '2013-06-19', NULL, '2014-06-02', 'No', 'Montgomery 7.25%', 7.25, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Thelen Associates ', 'Yes', 'CJS', '', NULL, NULL, 'June', '6/19/2013', 'Apr-06', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (543, 'Hubbel, Roth & Clark, Inc.', '0000-12-00', 'HUBBLEHOWEL', 0, '2013-06-24', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Hubbel, Roth & Clark, Inc.', 'Yes', 'TPJ', '', NULL, NULL, 'December', '6/24/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (544, 'Road Commission for Oakland County', '0000-06-00', 'OAKLAND', 0, '2013-10-14', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Road Commission for Oakland County', 'Yes', 'KAS', '', NULL, NULL, 'June', '10/14/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (545, 'Somat Engineering, Inc.', '0000-06-00', 'SOMAT', 0, '2013-08-19', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Somat Engineering, Inc.', 'Yes', 'KAS', 'Range:15K', NULL, NULL, 'June', '8/19/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (546, 'River Valley Testing/Michigan Wind II', '0000-06-00', 'RIVERWIND', 0, '2013-04-25', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'River Valley Testing/Michigan Wind II', 'Yes', 'TJT', '', NULL, NULL, 'June', '4/25/2013', 'Jun-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (547, 'Johnstown Hydraulics, Inc.', '0000-06-00', 'JOHNSTOWNHY1', 0, '2013-07-11', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Johnstown Hydraulics, Inc.', 'Yes', 'TPJ', 'Range: 60K', NULL, NULL, 'June', '7/11/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (548, 'Soils & Materials Engineers', '0000-06-00', 'SOIL/MAT3', 0, '2013-07-11', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Soils & Materials Engineers', 'Yes-definite', 'III', 'Range: 5K to 50K ', NULL, NULL, 'June', '7/11/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (549, 'Russell Standard', '0000-06-00', 'RUSELLCADOG', 0, '2013-05-29', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Russell Standard', 'Yes', 'CJS', '', NULL, NULL, 'June', '5/29/2013', 'Jun-10', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (550, 'Swank Construction Company ', '0000-08-00', 'SWANKCOLUM', 0, '2013-08-29', NULL, '2014-08-18', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Swank Construction Company ', 'Yes', 'CJS', '', NULL, NULL, 'August', '8/29/2013', 'May-00', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (551, 'York Building Products', '0000-05-00', 'YORKFRED', 0, '2013-05-28', NULL, '2014-05-05', 'OOS', ' ', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'York Building Products', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/28/2013', 'Jun-11', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (552, 'New Enterprise Stone & Lime', '0000-06-00', 'NEWENT/CAR1', 0, '2013-05-02', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'CJS', 'Range: 10K (9,000 PSI)', NULL, NULL, 'June', '5/2/2013', 'Jun-11', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (553, 'HRI, Inc.', '0000-09-00', 'HRINEWBURG', 0, '2013-09-13', '0000-00-00', '2014-09-01', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'HRI, Inc.', 'Yes', 'III', '', NULL, NULL, 'September', '9/13/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (554, 'York Building Products', '0000-06-00', 'YORKMD', 0, '2013-07-09', NULL, '2014-06-23', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'York Building Products', 'Yes', 'KAS', '', NULL, NULL, 'June', '7/9/2013', 'Jun-11', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (555, 'Brayman Construction', '0000-06-00', 'BRAYMAN3', 0, '2011-05-03', '0000-00-00', NULL, 'No', '6% PA', 6, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Brayman Construction', 'Yes', 'TLR', 'Range: 60 PSI ', NULL, NULL, 'June', '5/3/2011', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (556, 'Kone, Inc. ', '0000-06-00', 'KONE', 0, '2011-08-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Kone, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'June', '8/2/2011', 'Jun-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (557, 'Pride Mobility Products ', '0000-06-00', 'PRIDEMOB', 0, '2011-08-02', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Pride Mobility Products ', 'Yes', 'III', 'Range: 1.5K', NULL, NULL, 'June', '8/2/2011', 'Jun-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (558, 'Structural Group, Inc. ', '0000-06-00', 'STRUCTNY', 0, '2012-11-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Structural Group, Inc. ', 'Yes', 'KAS', 'Range: 300 lbs to 3,000 lbs ', NULL, NULL, 'June', '11/5/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (559, 'Brayman Construction', '0000-06-00', 'BRAYMAN1', 0, '2012-02-07', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Brayman Construction', 'Yes', 'DLP', 'Range: 30 PSI ', NULL, NULL, 'June', '2/7/2012', 'Oct-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (560, 'Grand Bahama Shipyard, Ltd. ', '0000-06-00', 'GRANDBAHAM', 0, '2011-07-14', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Grand Bahama Shipyard, Ltd. ', 'Yes', 'III', '', NULL, NULL, 'June', '7/14/2011', 'Jan-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (561, 'Russell Standard', '0000-06-00', 'RUSELLBUT', 0, '2011-07-26', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Russell Standard', 'Yes', 'III', '', NULL, NULL, 'June', '7/26/2011', 'Apr-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (562, 'Trumbull Corporation', '0000-04-00', 'TRUMMCKEE', 0, '2013-05-02', NULL, '2014-04-14', 'No ', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'Need Job No ', 'Trumbull Corporation', 'Yes', 'TPJ', '', NULL, NULL, 'April', '5/2/2013', 'Jun-11', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (563, 'Clearwater Construction', '0000-07-00', 'CLEARMER', 0, '2013-07-15', NULL, '2014-07-07', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Clearwater Construction', 'Yes', 'III', '', NULL, NULL, 'July', '7/15/2013', 'Aug-07', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (564, 'Cardno ATC', '0000-07-00', 'ATCBRECK', 0, '2013-07-15', NULL, '2014-07-07', 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Cardno ATC', 'Yes', 'KAS', '', NULL, NULL, 'July', '7/15/2013', 'Apr-09', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (565, 'Joseph B. Fay Company', '0000-05-00', 'JBF/31406', 0, '2013-07-09', NULL, '2014-05-12', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Joseph B. Fay Company', 'Yes', 'KAS', '', NULL, NULL, 'May', '7/9/2013', 'Jul-11', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (566, 'New Enterprise Stone & Lime', '0000-04-00', 'NEWENT9612', 0, '2013-06-19', '0000-00-00', '2014-04-21', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'III', '', NULL, NULL, 'April', '6/19/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (567, 'John Gulisek Construction', '0000-05-00', 'GULISEK19807', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', ' ', 'John Gulisek Construction', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/28/2013', 'Apr-07', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (568, 'Gavco Materials ', '0000-07-00', 'GAVCO', 0, '2013-08-06', '0000-00-00', '2014-07-21', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Gavco Materials', 'Yes', 'KAS', '', NULL, NULL, 'July', '8/6/2013', '', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (569, 'Frank Zottola Construction', '0000-07-00', 'ZOTTOLA', 0, '2013-08-06', NULL, '2014-07-21', 'No', 'Allegheny 7%', 7, 'COD', '', b'1', 'Active ', b'1', '', 'Frank Zottola Construction', 'Yes', 'KAS', '', NULL, NULL, 'July', '8/6/2013', 'Jul-11', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (570, 'ATC Associates', '0000-07-00', 'ATCLOU', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'ATC Associates', 'Yes-ext day', 'KAS', 'Range: 200K', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (571, 'Lehigh Hanson', '0000-07-00', 'BASICC', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'No', 'Ross 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Lehigh Hanson', 'Yes-1 day', 'TPJ', '', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (572, 'Ernst Concrete of Kentucky', '0000-07-00', 'ATLAS', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Ernst Concrete of Kentucky', 'Yes', 'KAS', '', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (573, 'Sciota Valley Precast', '0000-07-00', 'SCIOTA', 0, '2013-08-16', NULL, '2014-07-28', 'No', 'Ross 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Sciota Valley Precast', 'No', 'CJS', '', NULL, NULL, 'July', '8/16/2013', 'Feb-97', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (574, 'The Sawbrook Steel Casting Co.', '0000-07-00', 'SAWBROOK', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'The Sawbrook Steel Casting Co.', 'Yes 1-2 days', 'DLP', '', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (575, 'Thelen Associates, Inc.', '0000-07-00', 'THELEN/CINOH', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Thelen Associates, Inc.', 'Yes', 'TPJ', 'Range: 2,200 lbs', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (576, 'American Electric Power', '0000-07-00', 'AMELEC/C', 0, '2013-08-19', '0000-00-00', '2014-07-28', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Credit Card', 'American Electric Power', '2 DAYS', 'TJ/CS', '', NULL, NULL, 'July', '8/19/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (577, 'Greenbaum Associates, Inc.', '0000-07-00', 'GREENBAUM', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Greenbaum Associates, Inc.', 'Yes - 1 day', 'KAS', 'Range: 2K', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (578, 'Kentucky Concrete', '0000-07-00', 'KENTUCKY', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Kentucky Concrete', 'Yes-1 Day', 'KAS', '', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (579, 'American Bridge Company', '0000-05-00', 'AMERICANBRID', 0, '2013-05-14', NULL, NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'1', 'Active', b'1', '', 'American Bridge Company', 'Yes', 'III', '', NULL, NULL, 'May', '5/14/2013', 'May-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (580, 'Lehigh Hanson ', '0000-05-00', 'HIGHLAND', 0, '2013-06-12', NULL, '2014-05-19', 'No', 'Highland 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Lehigh Hanson ', 'Yes-1 Day', 'TPJ', '', NULL, NULL, 'May', '6/12/2013', 'May-98', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (581, 'LV Avionics', '0000-09-00', 'TECHJET1', 0, '2013-09-19', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'LV Avionics', 'Yes', 'DLP', 'Range: 100 lbs. to 50,000 lbs.', NULL, NULL, 'September', '9/19/2013', 'Feb-08', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (582, 'Kanawha Scales & Systems', '0000-05-00', 'KANAWHA', 0, '2013-06-19', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Kanawha Scales & Systems', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/19/2013', 'Jul-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (583, 'Group Four Transducers, Inc. / ', '0000-07-00', 'NEXTSYSTEM', 0, '2011-08-04', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Next Systems, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/4/2011', 'Jul-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (584, 'Tri State Superior Walls LLC', '0000-07-00', 'TRISTATESUP', 0, '2012-11-02', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'COD', '', b'1', 'Active', b'1', '', 'Tri State Superior Walls LLC', 'Yes', 'TJT', '', NULL, NULL, 'July', '11/2/2012', 'Aug-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (585, 'CT Consultants', '0000-07-00', 'CTCONSUL', 0, '2012-03-08', '0000-00-00', NULL, 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'CT Consultants', 'Yes-1 day', 'III', '', NULL, NULL, 'July', '3/8/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (586, 'R.W. Sidley Precast', '0000-08-00', 'SIDLEY', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'Yes', '', 0, 'COD', 'Nov-12', b'1', 'Active', b'1', '', 'R.W. Sidley Precast', 'Yes', 'K/T/III', 'Range: 3K / 37K', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (587, 'Niagra Metallurgical', '0000-08-00', 'NIAGRA', 0, '2013-08-20', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Niagra Metallurgical', 'Yes', 'DLP', 'Range: 0.06 in/in (1\" Gauge Length) ', NULL, NULL, 'August', '8/20/2013', 'May-10', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (588, 'G.A. Covey Engineering', '0000-08-00', 'GACOVEY', 0, '2013-08-20', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'G.A. Covey Engineering', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/20/2013', 'May-04', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (589, 'Hi-Way Paving Company', '0000-08-00', 'HIWAY/SCHERR', 0, '2013-07-18', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Hi-Way Paving Company', 'Yes', 'KAS', '', NULL, NULL, 'August', '7/18/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (590, 'NOAA/NMFS Mississippi Laboratories', '0000-06-00', 'NOAA', 0, '2013-07-09', NULL, NULL, 'OOS', '', 0, 'CC', '', b'1', 'Active', b'1', '', 'NOAA/NMFS Mississippi Laboratories', 'Yes', 'III', '', NULL, NULL, 'June', '7/9/2013', 'Jun-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (591, 'Brayman Construction', '0000-09-00', 'BRAYWV', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Brayman Construction', 'Yes', 'III', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (592, 'North Central Construction Co.', '0000-08-00', 'NORTHCEN2', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'No', 'Stark 6.5%', 6.5, 'COD', '', b'1', 'Active', b'1', '', 'North Central Construction Co.', 'Yes - 1 Day', 'TPJ', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (593, 'Sinclair Community College', '0000-08-00', 'SINCLAIR', 0, '2013-07-29', '0000-00-00', '2014-08-25', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Sinclair Community College', 'Yes', 'DLP', 'Range:', NULL, NULL, 'August', '7/29/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (594, 'Cochran Industries, Inc. - Kentucky', '0000-08-00', 'COLLEY', 0, '2012-10-04', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cochran Industries, Inc. - Kentucky', 'Yes', 'KS', '', NULL, NULL, 'August', '10/4/2012', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (595, 'LA Army National Guard', '0000-08-00', 'LANATGUARD', 0, '2012-09-06', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'LA Army National Guard', 'Yes', 'III', '', NULL, NULL, 'August', '9/6/2012', 'Aug-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (596, 'G.T. Michelli Company, Inc. ', '0000-08-00', 'GTMICHELLI', 0, '2011-08-17', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'G.T. Michelli Company, Inc. ', 'Yes', 'III', '', NULL, NULL, 'August', '8/17/2011', 'Aug-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (597, 'Forum Oilfield Techologies US, Inc.', '0000-08-00', 'FORUMOIL', 0, '2011-09-09', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Forum Oilfield Techologies US, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'August', '9/9/2011', 'Aug-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (598, 'Dominance Industries ', '0000-08-00', 'PANPACIFIC', 0, '2012-08-14', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'Get PO#', 'Pan Pacific Products', 'Yes', 'DLP', 'Range: 5K', NULL, NULL, 'August', '8/14/2012', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (599, 'Geotechnical Consulting & Testing', '0000-09-00', 'GCNT', 0, '2013-09-23', '0000-00-00', '2014-09-15', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', ' ', 'Geotechnical Consulting & Testing', 'Yes-24hrs.', 'CJS', 'Range : 10,000 lbs. LC S/N 1130809', NULL, NULL, 'September', '9/23/2013', '', '9/15/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (600, 'Environmental Resources Management Consulting Co.', '0000-08-00', 'ERMC2', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Environmental Resources Management Consulting Co.', 'Yes', 'CJS', '', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (601, 'EMC2', '0000-09-00', 'EMC2', 0, '2013-10-01', NULL, '2014-09-01', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'EMC2', 'Yes', 'CJS', 'Range: 12,000 Grams ', NULL, NULL, 'September', '10/1/2013', 'Oct-05', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (602, 'E.R. Linde Construction Corporation', '0000-09-00', 'ERLINDE', 0, '2013-10-14', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'E.R. Linde Construction Corporation', 'Yes', 'CJS', '', NULL, NULL, 'September', '10/14/2013', 'Jul-10', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (603, 'Geotechnical Consulting & Testing', '0000-09-00', 'GCNT1', 0, '2013-09-23', '0000-00-00', '2014-09-15', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Geotechnical Consulting & Testing', 'Yes-24hrs.', 'CJS', 'Range: 100 lbs. ', NULL, NULL, 'September', '9/23/2013', '', '9/15/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (604, 'AKM Construction Services, Inc. ', '0000-09-00', 'AKMCONSTR', 0, '2013-09-19', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active ', b'1', '', 'AKM Construction Services, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/19/2013', 'Aug-11', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (605, 'Architectural Testing, Inc.', '0000-09-00', 'ARCHTEST1', 0, '2013-09-23', NULL, '2014-09-01', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Architectural Testing, Inc.', 'Yes', 'DLP', 'Range: 440 lbs (2 Kn)', NULL, NULL, 'September', '9/23/2013', 'Nov-04', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (606, 'Laurel Highlands Landfill', '0000-09-00', 'LAURELHIGH', 0, '2013-08-19', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Laurel Highlands Landfill', 'Yes', 'CJS', '', NULL, NULL, 'September', '8/19/2013', 'Jun-01', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (607, 'Net Shape Technologies', '0000-10-00', 'ALLEGPWDR1', 0, '2013-10-16', NULL, '2014-10-06', 'No', '', 6, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Net Shape Technologies', 'Yes', 'III', 'Range: 45 lbs ', NULL, NULL, 'October', '10/16/2013', 'Jun-97', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (608, 'Net Shape Technologies', '0000-09-00', 'ALLEGPWDROOS', 0, '2013-07-10', '0000-00-00', NULL, 'Yes', '', 0, 'COD', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Net Shape Technologies', 'Yes', 'DLP', 'Cap: 10K', NULL, NULL, 'September', '7/10/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (609, 'J. J. Kennedy', '0000-09-00', 'JJKENFOMBEL', 0, '2013-09-19', '0000-00-00', '2014-09-08', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'J. J. Kennedy', 'Yes', 'DLP', ' ', NULL, NULL, 'September', '9/19/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (610, 'CTL Engineering ', '0000-09-00', 'CTL', 0, '2013-09-23', '0000-00-00', '2014-09-08', 'OOS', 'Credit Card Tax 5%', 5, 'Net 30', '', b'1', 'Active ', b'1', '', 'CTL Engineering ', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/23/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (611, 'Brayman Construction', '0000-09-00', 'BRAYFREE', 0, '2013-09-19', NULL, '2014-09-08', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Brayman Construction', 'Yes', 'KAS', 'Range: 250 lbs', NULL, NULL, 'September', '9/19/2013', 'Oct-10', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (612, 'Matcon Diamond', '0000-09-00', 'MATCON', 0, '2013-09-19', NULL, '2014-09-08', 'No', 'Allegheny 7%', 7, 'COD', '', b'1', 'Active', b'1', 'Forever COD', 'Matcon Diamond', 'Yes', 'DLP', '', NULL, NULL, 'September', '9/19/2013', 'Apr-04', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (613, 'Bowser Morner', '0000-06-00', 'BOWSER/TOL', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'No', 'Lucas 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Bowser Morner', 'Yes- 1 day', 'CJS', '', NULL, NULL, 'June', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (614, 'H.M.T., Inc. ', '0000-09-00', 'HMTINC', 0, '2013-10-14', NULL, '2014-09-22', 'No', 'Ashtabula 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'H.M.T., Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/14/2013', 'Sep-11', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (615, 'Brayman Construction', '0000-09-00', 'BRAY', 0, '2012-11-02', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active ', b'0', '', 'Brayman Construction', 'Yes', 'DLP', 'Range: 15 PSI', NULL, NULL, 'September', '11/2/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (616, 'Fastenal Company', '0000-09-00', 'FASTENAL1', 0, '2011-10-04', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', '', 'Fastenal Company', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/4/2011', 'Sep-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (617, 'Timmerman Geotechnical Group', '0000-10-00', 'TIMMERM', 0, '2013-10-15', '0000-00-00', '2014-10-06', 'No', 'Summit 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Timmerman Geotechnical Group', 'Yes', 'TPJ', '', NULL, NULL, 'October', '10/15/2013', '', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (618, 'Ohio Department of Transportation', '0000-10-00', 'OHIONP', 0, '2013-10-15', NULL, '2014-10-06', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Ohio Department of Transportation', 'Yes', 'TPJ', '', NULL, NULL, 'October', '10/15/2013', 'Feb-09', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (619, 'Rowe Professional Services Company', '0000-10-00', 'ROWEARMADA', 0, '2013-09-13', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'In Active', b'1', '', 'Rowe Professional Services Company', 'Yes', 'KS', '', NULL, NULL, 'October', '9/13/2013', 'Sep-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (620, 'New Enterprise Stone & Lime', '0000-03-00', 'NEWENT/GETTY', 0, '2013-05-16', '0000-00-00', '2014-03-17', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', ' ', 'New Enterprise Stone & Lime', 'Yes', 'CJS', '', NULL, NULL, 'March', '5/16/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (621, 'Delaware Valley Concrete Co., Inc.', '0000-10-00', 'DELVALLEY', 0, '2012-10-24', '0000-00-00', '2013-10-14', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active ', b'1', 'CREDIT CARD', 'Delaware Valley Concrete Co., Inc.', 'Yes', 'KAS', '', NULL, NULL, 'October', '10/24/2012', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (622, 'Superior Materials, LLC', '0000-10-00', 'FENDT/NOVI', 0, '2012-11-02', '0000-00-00', '2013-10-21', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Superior Materials, LLC', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'October', '11/2/2012', '', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (623, 'Eastern Michigan University', '0000-09-00', 'EASTMICH', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Eastern Michigan University', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (624, 'Eastern Michigan University', '0000-04-00', 'EASTMICHUNIV', 0, '2013-10-14', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Eastern Michigan University', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'April', '10/14/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (625, 'Schory Cement Products', '0000-10-00', 'SCHORY1', 0, '2012-11-06', '0000-00-00', '2013-10-28', 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', '', 'Schory Cement Products', 'Yes', 'DLP', '', NULL, NULL, 'October', '11/6/2012', '', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (626, 'Quality Engineering Solutions, Inc. ', '0000-10-00', 'QUALITY/CL', 0, '2013-08-29', '0000-00-00', '2014-10-27', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Quality Engineering Solutions, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'October', '8/29/2013', '', '10/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (627, 'Professional Service Industries, Inc.', '0000-10-00', 'PSI/CANTON', 0, '2012-11-07', '0000-00-00', '2013-10-28', 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes- 2 days', 'DLP', 'Range: 1K', NULL, NULL, 'October', '11/7/2012', '', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (628, 'Seidler Engineering, Inc.', '0000-10-00', 'SIEDLER', 0, '2013-08-29', NULL, '2014-10-27', 'No', 'Mahoning 7%', 7, 'Net 30', '', b'1', 'Active ', b'1', '', 'Seidler Engineering, Inc.', 'Yes', 'TLR', '', NULL, NULL, 'October', '8/29/2013', 'Apr-06', '10/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (629, 'FirstEnergy BETA Metrology Lab ', '0000-10-00', 'FIRSTENERGY', 0, '2011-11-11', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'COD', '', b'1', 'Active ', b'1', '', 'FirstEnergy BETA Metrology Lab ', 'Yes', 'DLP', '', NULL, NULL, 'October', '11/11/2011', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (630, 'Frank Hutto Enterprises', '0000-10-00', 'HUTTO', 0, '2011-11-22', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Frank Hutto Enterprises', 'Yes', 'III', '', NULL, NULL, 'October', '11/22/2011', 'Oct-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (631, 'Aycock, Inc.', '0000-10-00', 'AYCOCK', 0, '2011-10-12', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Aycock, Inc.', '', 'III', 'Range: 80K', NULL, NULL, 'October', '10/12/2011', 'Oct-97', 'In-House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (632, 'Minova USA, Inc. ', '0000-10-00', 'MINOVA/SCIO', 0, '2011-08-09', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Minova USA, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'October', '8/9/2011', 'Oct-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (633, 'Kokosing Construction Company ', '0000-05-00', 'AHERN1', 0, '2013-05-30', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Kokosing Construction Company ', 'Yes', 'DLP', '', NULL, NULL, 'May', '5/30/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (634, 'Soils & Materials Engineers ', '0000-02-00', 'SMEKY', 0, '2013-05-15', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers ', 'Yes', 'KAS', '', NULL, NULL, 'February', '5/15/2013', 'Jul-10', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (635, 'Brayman Construction', '0000-11-00', 'BRAYHINTON', 0, '2013-06-19', NULL, '2013-11-04', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Brayman Construction', 'Yes', 'KAS', '', NULL, NULL, 'November', '6/19/2013', 'Oct-11', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (636, 'Brayman Construction', '0000-11-00', 'BRAYIRWIN', 0, '2013-08-19', NULL, '2013-11-11', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Brayman Construction', 'Yes', 'KAS', '', NULL, NULL, 'November', '8/19/2013', 'Jun-09', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (637, 'Terracon', '0000-11-00', 'NUTTING/CIN9', 0, '2012-11-20', '0000-00-00', '2013-11-11', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DLP', 'Range: 3 inches ', NULL, NULL, 'November', '11/20/2012', '', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (638, 'Terracon', '0000-11-00', 'NUTTING/CIN10', 0, '2012-11-20', '0000-00-00', '2013-11-11', 'No', 'Hamilton 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DLP', 'Range: 200 psi ', NULL, NULL, 'November', '11/20/2012', '', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (639, 'Terracon', '0000-11-00', 'NUTTING/CIN11', 0, '2012-11-20', '0000-00-00', '2013-11-11', 'No', 'Hamilton 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DLP', 'Range: 200 psi (Cell Pressure) ', NULL, NULL, 'November', '11/20/2012', '', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (640, 'Highlander Energy Products, Inc.', '0000-01-00', 'HIGHLANDER1', 0, '2013-09-13', '0000-00-00', '2014-01-27', '', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Highlander Energy Products, Inc.', 'Yes', 'CS/TJ', 'Range: 10,000 psi', NULL, NULL, 'January', '9/13/2013', '', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (641, 'UFP Parker, LLC', '0000-11-00', 'UNIVPARKER', 0, '2012-12-07', NULL, '2013-11-18', 'No', 'Pa 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'GET PO#', 'UFP Parker, LLC', 'Yes', 'III', 'Range: 5K ', NULL, NULL, 'November', '12/7/2012', 'May-00', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (642, 'Allied Ready Mix', '0000-11-00', 'ALLIED', 0, '2012-12-07', '0000-00-00', '2013-11-18', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'Credit Card', 'Allied Ready Mix', 'YES', 'KAS', '', NULL, NULL, 'November', '12/7/2012', '', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (643, 'Consulting Services, Inc. of Kentucky ', '0000-11-00', 'CSIKENTUCKY', 0, '2012-12-04', NULL, '2013-11-18', 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Consulting Services, Inc. of Kentucky ', 'Yes', 'CS/KS', 'Range: 10K ', NULL, NULL, 'November', '12/4/2012', 'Jun-09', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (644, 'Wrightway Ready-Mix ', '0000-11-00', 'WRIGHT', 0, '2013-10-14', NULL, '2014-11-17', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Wrightway Ready-Mix ', 'Yes', 'LMS', '', NULL, NULL, 'November', '10/14/2013', 'May-08', '11/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (645, 'Tennessee Valley Authority (TVA)', '0000-11-00', 'TVA', 0, '2013-01-16', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Credit Card', 'Tennessee Valley Authority (TVA)', 'Yes', 'III', '', NULL, NULL, 'November', '1/16/2013', 'Nov-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (646, 'Le Group Ocean, Inc./Ocean Group, Inc. ', '0000-10-00', 'OCEAN', 0, '2013-10-17', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Le Group Ocean, Inc./Ocean Group, Inc. ', 'Yes', 'III', '', NULL, NULL, 'October', '10/17/2013', 'Feb-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (647, 'Fastenal Company', '0000-11-00', 'FASTENALNC', 0, '2011-12-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Fastenal Company', 'Yes', 'DLP', '', NULL, NULL, 'November', '12/20/2011', 'Oct-11', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (648, 'Johnstown Hydraulics, Inc.', '0000-11-00', 'JOHNSTOWNHY1', 0, '2011-12-02', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'New Enterprise Stone & Lime', 'Yes', 'TJT', '', NULL, NULL, 'November', '12/2/2011', 'Sep-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (649, 'Fastenal Company', '0000-11-00', 'FASTMAN', 0, '2011-12-14', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Fastenal Company', 'Yes', 'III', '', NULL, NULL, 'November', '12/14/2011', 'Nov-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (650, 'Kimball Electronic Lab ', '0000-11-00', 'KIMFL', 0, '2011-12-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Kimball Electronic Lab ', 'Yes', 'III', '', NULL, NULL, 'November', '12/20/2011', 'Nov-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (651, 'Wheatland Tube Company', '0000-11-00', 'WHEATLAND', 0, '2012-08-29', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Wheatland Tube Company', 'Yes', 'III', 'Range: (2\" GL)', NULL, NULL, 'November', '8/29/2012', '', 'NO SOLICITE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (652, 'Allied Erecting & Dismantling Co., Inc.', '0000-12-00', 'ALLIED', 0, '2012-10-31', NULL, '2013-12-02', 'No', 'Mahoning 6.75%', 7, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Allied Erecting & Dismantling Co., Inc.', '24 Hours', 'LMS', '', NULL, NULL, 'December', '10/31/2012', 'Apr-07', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (653, 'Wheatland Tube Company', '0000-12-00', 'WHEATWARREN', 0, '2012-11-21', NULL, '2013-12-09', 'No', 'Warren 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Wheatland Tube Division', 'Yes', 'III', '', NULL, NULL, 'December', '11/21/2012', 'Dec-11', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (654, 'DiGeronimo Aggregates', '0000-12-00', 'HYDRAULI', 0, '2013-01-16', '0000-00-00', '2014-12-15', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'DiGeronimo Aggregates', 'Yes- 1 day', 'III', '', NULL, NULL, 'December', '1/16/2013', '', '12/15/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (655, 'Calser Corporation', '0000-12-00', 'CALSER', 0, '2011-12-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'GSG Materials Testing, Inc. ', 'Yes', 'III', '', NULL, NULL, 'December', '12/19/2011', 'Dec-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (656, 'Tektronix', '0000-12-00', 'TEKTRONIX', 0, '2011-12-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'CREDIT CARD', 'Tektronix', 'Yes', 'DLP', '', NULL, NULL, 'December', '12/20/2011', 'Dec-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (657, 'BFS Mil-Tech, Inc. ', '0000-12-00', 'BFS', 0, '2012-03-05', NULL, NULL, 'No', 'Lorian 6.5%', 6.5, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'Branam Fastening Systems', 'Yes', 'CJS', '', NULL, NULL, 'December', '3/5/2012', 'Mar-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (658, 'Wacker Chemical Corporation ', '0000-12-00', 'WACKER', 0, '2012-01-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive ', b'0', '', 'Wacker Chemical Corporation ', 'Yes', 'III', '', NULL, NULL, 'December', '1/2/2012', 'Oct-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (659, 'SME', '0000-12-00', 'QORELEX 2', 0, '2011-12-14', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'SME', 'Yes-definite', 'TJT', 'Range: 500 lbs', NULL, NULL, 'December', '12/14/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (660, 'General Aluminum Manufacturing Co.', '0000-01-00', 'GAMCO', 0, '2013-09-19', NULL, '2014-01-13', 'No', 'Auglaize 7.25%', 7.25, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'General Aluminum Manufacturing Co.', 'Yes', 'III', 'Range: 0.2 inches (GL 1\")', NULL, NULL, 'January', '9/19/2013', 'Jan-12', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (661, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ENGCONSL2', 0, '2013-03-20', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'DLP', 'Range: 1/8 TSF to 16 TSF', NULL, NULL, 'March', '3/20/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (662, 'Joseph B. Fay Company', '0000-01-00', 'JBF/14901H', 0, '2013-01-21', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Joseph B. Fay Company', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'January', '1/21/2013', 'May-03', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (663, 'Trumbull Corporation', '0000-01-00', 'TRUMPGH1', 0, '2013-01-02', NULL, '2014-01-06', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Trumbull Corporation', 'Yes', 'III', '', NULL, NULL, 'January', '1/2/2013', 'Sep-09', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (664, 'West Virginia Division of Highways', '0000-01-00', 'WVDOTWHL', 0, '2013-01-21', NULL, '2014-01-06', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'West Virginia Division of Highways', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/21/2013', 'Dec-07', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (665, 'Farabaugh Engineering & Testing, Inc. ', '0000-01-00', 'FARABAUGH2', 0, '2012-12-05', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'Farabaugh Engineering & Testing, Inc. ', 'Yes', 'III', 'Range: 25K', NULL, NULL, 'January', '12/5/2012', 'Feb-09', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (666, 'Doren Incorporated', '0000-01-00', 'DORENWAM', 0, '2013-01-21', '0000-00-00', '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'Doren Incorporated', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/21/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (667, 'CBS (Castle Builders)', '0000-01-00', 'CASTLE75210', 0, '2013-03-13', '0000-00-00', '2014-01-06', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'CBS (Castle Builders)', 'Yes', 'III', '', NULL, NULL, 'January', '3/13/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (668, 'Consulting Services, Inc. of Kentucky ', '0000-01-00', 'CSI/CINN', 0, '2013-01-24', NULL, '2014-01-13', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Consulting Services, Inc. of Kentucky ', '', 'DLP', '', NULL, NULL, 'January', '1/24/2013', 'Jan. 2013', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (669, 'Barsplice Products Inc.', '0000-01-00', 'BARSPLICE', 0, '2013-09-18', '0000-00-00', '2014-01-13', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Barsplice Products Inc.', 'Yes- 2 day', 'DLP', 'Range: 0.014 in/in (GL 28\") (0.4 travel)', NULL, NULL, 'January', '9/18/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (670, 'Jet Excavating', '0000-07-00', 'JETEX', 0, '2013-07-16', NULL, '2014-07-07', 'No', 'Mahoning 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Jet Excavating', 'Yes', 'KAS', '', NULL, NULL, 'July', '7/16/2013', 'Sep-08', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (671, 'Whitacre Greer Company, Inc.', '0000-01-00', 'WHITACRE', 0, '2013-01-24', NULL, '2014-01-13', 'No', 'Stark 6.5', 6.5, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Whitacre Greer Company, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/24/2013', 'Jan-12', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (672, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/PSP2', 0, '2013-02-06', '0000-00-00', '2014-01-13', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes - 1 day', 'CJS', 'Range: 50K ', NULL, NULL, 'January', '2/6/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (673, 'Centre Concrete Company', '0000-01-00', 'CEN/NY', 0, '2013-02-04', NULL, '2014-01-20', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Centre Concrete Company', 'Yes', 'KAS', '', NULL, NULL, 'January', '2/4/2013', 'Jan-12', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (674, 'Alfred State College', '0000-01-00', 'ALFRED', 0, '2012-02-01', NULL, '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'GET AT SITE', 'Alfred State College', 'YES', 'CJS', 'Range: 600 lbs to 60,000 lbs', NULL, NULL, 'January', '2/1/2012', 'Oct-02', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (675, 'DAP Inc.', '0000-01-00', 'DAPINC.', 0, '2012-11-02', NULL, '2014-01-27', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'DAP Inc.', 'Yes', 'III', 'Range: ', NULL, NULL, 'January', '11/2/2012', 'Oct-01', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (676, 'HRI, Inc.', '0000-01-00', 'HRIBEAVER', 0, '2012-11-29', NULL, '2014-01-27', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'HRI, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'January', '11/29/2012', 'Apr-10', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (677, 'Kokosing Construction Company ', '0000-01-00', 'KOKOSINGMAR', 0, '2013-02-06', NULL, '2014-01-27', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Kokosing Construction Company ', 'Yes', 'CJS', '', NULL, NULL, 'January', '2/6/2013', 'Dec-11', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (678, 'Morehouse Instrument', '0000-01-00', 'MOREHOUSEIN', 0, '2012-01-19', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active ', b'0', '', 'Morehouse Instrument', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/19/2012', 'Sep-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (679, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (680, 'Commercial Group Lifting Products', '0000-05-00', 'COMLIFGP', 0, '2013-10-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Commercial Group Lifting Products', 'Yes', 'DLP', '', NULL, NULL, 'May', '10/1/2013', 'Jan-12', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (681, 'Structural Group, Inc.', '0000-01-00', 'STRUCTCHICIL', 0, '2013-02-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Structural Group, Inc.', 'Yes', 'III', 'Range: 300 lbs to 3,000 lbs ', NULL, NULL, 'January', '2/6/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (682, 'Johnstown Hydraulics, Inc.', '0000-01-00', 'JOHNSTOWNHY', 0, '2012-05-31', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'New Enterprise Stone & Lime', 'Yes', 'III', 'Range: 50K ', NULL, NULL, 'January', '5/31/2012', 'Sep-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (683, 'Elevated Boats, LLC', '0000-01-00', 'ELEBOAT', 0, '2012-03-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Elevated Boats, LLC', 'Yes', 'LMS', '', NULL, NULL, 'January', '3/2/2012', 'Oct-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (684, 'Virginia Lab Supply', '0000-01-00', 'VSL ', 0, '2012-02-08', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE ', 'Virginia Lab Supply', 'Yes', 'CJS', '', NULL, NULL, 'January', '2/8/2012', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (685, 'Geo-Technology Associates, Inc.', '0000-03-00', 'GEOLAUREL', 0, '2013-04-03', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Geo-Technology Associates, Inc.', 'Yes', 'KS/III', 'Range: 300 K', NULL, NULL, 'March', '4/3/2013', 'Nov-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (686, 'Woodside Plumbing', '0000-01-00', 'WOODSIDE', 0, '2013-01-16', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active ', b'1', '', 'Woodside Plumbing', 'Yes', 'DLP', 'Range: 200 PSI ', NULL, NULL, 'January', '1/16/2013', 'Dec-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (687, 'Techmaster Electroincs, Inc. ', '0000-01-00', 'TECHMASTER', 0, '2012-01-19', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Techmaster Electroincs, Inc. ', 'Yes', 'III', '', NULL, NULL, 'January', '1/19/2012', 'Jan-12', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (688, 'Heusser Neweigh', '0000-01-00', 'HEUSSERNEW', 0, '2012-03-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Heusser Neweigh', 'Yes', 'DLP', '', NULL, NULL, 'January', '3/2/2012', 'Jan-12', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (689, 'Structural Group, Inc.', '0000-08-00', 'STRUCTELK2', 0, '2013-08-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Structural Group, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'August', '8/29/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (690, 'Structural Group, Inc. ', '0000-08-00', 'STRUCTELK', 0, '2013-08-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Structural Group, Inc. ', 'Yes', 'KAS', 'Range: 300 lbs to 3,000 lbs', NULL, NULL, 'August', '8/29/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (691, 'FBDS Gold Mining', '0000-04-00', 'AK.RUBBER', 0, '2013-05-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'AK. Rubber & Rigging', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/14/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (692, 'Amalgamated Sugar Company, LLC', '0000-04-00', 'AMALSUGAR', 0, '2013-06-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Amalgamated Sugar Company, LLC', 'Yes', 'III', '', NULL, NULL, 'April', '6/19/2013', 'Apr-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (693, 'Raba-Kistner Consultants, Inc. ', '0000-02-00', 'RABAKISTNER', 0, '2013-07-12', NULL, '2014-02-03', 'No ', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Raba-Kistner Consultants, Inc. ', 'Yes', 'KAS', 'Range: 300 lbs to 30K ', NULL, NULL, 'February', '7/12/2013', 'Feb-12', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (694, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITZIGIN2', 0, '2013-02-20', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', 'Range: 20 inWc (10 PSI) ', NULL, NULL, 'February', '2/20/2013', 'Apr-04', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (695, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITZIG1', 0, '2013-03-05', NULL, '2014-02-03', 'No', 'Butler 6.5 %', 6.5, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'KAS', 'Range: 2K ', NULL, NULL, 'February', '3/5/2013', 'Apr-99', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (696, 'Brayman Construction', '0000-02-00', 'BRAYOH', 0, '2013-02-20', '0000-00-00', '2014-02-03', 'No ', 'Lawrence 7.25%', 7.25, 'Net 30', '', b'1', '', b'1', 'Get PO #', 'Brayman Construction', 'Yes', 'CJS', '', NULL, NULL, 'February', '2/20/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (697, 'Alt & Witzig Engineering, Inc. ', '0000-02-00', 'ALTWITLAF', 0, '2013-01-22', '0000-00-00', '2014-02-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Alt & Witzig Engineering, Inc. ', 'Yes-1 day', 'TJT', '', NULL, NULL, 'February', '1/22/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (698, 'Osborne Concrete Company, Inc. ', '0000-02-00', 'OSBORNE', 0, '2013-03-04', NULL, '2014-02-10', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Osborne Concrete Company, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'February', '3/4/2013', 'Jan-12', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (699, 'Quikrete', '0000-02-00', 'QUIKMI', 0, '2013-03-04', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Quikrete', 'Yes', 'KAS', '', NULL, NULL, 'February', '3/4/2013', 'Feb-12', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (700, 'Pittsburgh Flexicore', '0000-02-00', 'FLEXICORE', 0, '2013-10-01', NULL, '2014-02-17', 'No', 'PA 6 %', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'Pittsburgh Flexicore', 'Yes- 1 day', 'DLP', 'Range: 4K / 35K', NULL, NULL, 'February', '10/1/2013', 'Mar-00', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (701, 'Frank Bryan Incorporated', '0000-02-00', 'BRYAN/NEVILLE', 0, '2013-02-27', NULL, '2014-02-17', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Frank Bryan Incorporated', 'Yes- 1 day', 'III', '', NULL, NULL, 'February', '2/27/2013', 'Mar-05', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (702, 'Trumbull Corporation', '0000-02-00', 'TRUMWASH', 0, '2013-02-27', NULL, '2014-02-17', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', 'Need Job No ', 'Trumbull Corporation', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/27/2013', 'Sep-08', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (703, 'UFP Emlenton, LLC', '0000-02-00', 'OPENJOIST', 0, '2013-03-01', '0000-00-00', '2014-02-17', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'UFP Emlenton, LLC', 'Yes', 'CJS', 'Range: 3.5K (2K PSI) ', NULL, NULL, 'February', '3/1/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (704, 'Trumbull Corporation', '0000-02-00', 'TRUMB-03096', 0, '2013-02-27', '0000-00-00', '2014-02-17', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'Need Job # ', 'Trumbull Corporation', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/27/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (705, 'Coordinated Wire Rope of San Diego', '0000-02-00', 'COOWIREROP', 0, '2012-03-07', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Coordinated Wire Rope of San Diego', 'Yes', 'DLP', '', NULL, NULL, 'February', '3/7/2012', 'Jan-12', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (706, 'Delta Railroad Construction, Inc. ', '0000-02-00', 'DELTARR', 0, '2012-03-07', NULL, NULL, 'No', 'Ashtabula 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Delta Railroad Construction, Inc. ', 'Yes', 'DLP', 'Range: 40K (8,500 PSI) (E-4 & 2%)', NULL, NULL, 'February', '3/7/2012', 'Feb-12', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (707, 'Alt & Witzig Engineering , Inc', '0000-02-00', 'ALTWIT ELW', 0, '2013-01-16', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Alt & Witzig Engineering, Inc.', 'Yes', '', '', NULL, NULL, 'February', '1/16/2013', 'Apr-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (708, 'Tes Tech', '0000-05-00', 'TESTECHIN', 0, '2013-06-12', '0000-00-00', '2014-05-19', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Tes Tech', 'Yes', 'CJS', '', NULL, NULL, 'May', '6/12/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (709, 'Sherry Justice Sales, LLC', '0000-02-00', 'SJUSTICE', 0, '2012-03-01', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Sherry Justice Sales, LLC', 'Yes', '', '', NULL, NULL, 'February', '3/1/2012', 'Feb-12', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (710, 'Central Supply Company ', '0000-03-00', 'ALLEN/JF3', 0, '2013-03-20', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Alcon Block Plant', 'Yes-24 hr.', 'KAS', '', NULL, NULL, 'March', '3/20/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (711, 'EBA Engineering, Inc.', '0000-05-00', 'EBA/SEWAGE', 0, '2013-05-28', NULL, '2014-05-05', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'GET ON SITE', 'EBA Engineering, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'May', '5/28/2013', 'Aug-10', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (712, 'Glenn O. Hawbaker, Inc.', '0000-04-00', 'HAWBAKERLAN', 0, '2013-06-19', '0000-00-00', '2014-04-21', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Glenn O. Hawbaker, Inc.', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'April', '6/19/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (713, 'Geo-Technology Associates, Inc.', '0000-03-00', 'GTASTERLING2', 0, '2013-05-28', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Geo-Technology Associates, Inc.', 'Yes', 'DLP', 'Range: 100 lbs to 10,000 lbs', NULL, NULL, 'March', '5/28/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (714, 'Land Venture II', '0000-03-00', 'LANDVENTURE', 0, '2013-03-22', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Land Venture II', 'Yes', 'KAS', '', NULL, NULL, 'March', '3/22/2013', 'Feb-12', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (715, 'McGaw Technology, Inc.', '0000-03-00', 'NASA/CLEVE', 0, '2012-05-11', NULL, '2013-03-11', 'No', 'Cuyahoga 8%', 8, 'Net 15', '', b'1', 'Active ', b'1', '', 'NASA Glenn Research ', '', 'DLP', 'Range: 50K', NULL, NULL, 'March', '5/11/2012', 'Jan-02', '3/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (716, 'McGaw Technology, Inc.', '0000-03-00', 'NASA/CLEVE1', 0, '2012-05-23', NULL, '2013-03-11', 'No', 'Cuyahoga 8%', 8, 'Net 15', '', b'1', 'Active ', b'1', '', 'NASA Glenn Research ', 'Yes', 'DLP', 'Range: 2.5K ', NULL, NULL, 'March', '5/23/2012', 'Jan-02', '3/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (717, 'BASF Construction Chemicals', '0000-03-00', 'BASF3', 0, '2013-04-03', NULL, '2014-03-10', 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Active', b'1', '4909655470', 'BASF Construction Chemicals', 'Yes', 'KS/III', ' ', NULL, NULL, 'March', '4/3/2013', 'Nov-07', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (718, 'Barr & Prevost', '0000-02-00', 'BARRENG', 0, '2013-03-13', NULL, '2014-02-24', 'No ', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Barr & Prevost', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/13/2013', 'Mar-12', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (719, 'North American Steel & Wire , Inc. ', '0000-03-00', 'NASTEEL', 0, '2013-04-25', NULL, '2014-03-24', 'Yes', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'North American Steel & Wire , Inc. ', 'Yes', 'III', 'Range: 1K', NULL, NULL, 'March', '4/25/2013', 'Mar-12', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (720, 'Geotechnical Consultants, Inc.', '0000-02-00', 'GEOTECHN2', 0, '2013-04-05', '0000-00-00', '2014-02-03', 'No', 'Greene 6.75%', 6.75, 'Net 30', '', b'1', '', b'1', '', 'Geotechnical Consulants, Inc.', 'Yes', 'III', '', NULL, NULL, 'February', '4/5/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (721, 'Centre Concrete Company', '0000-03-00', 'CENTRESTATE', 0, '2013-04-05', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Centre Concrete Company', 'Yes', 'CJS', '', NULL, NULL, 'March', '4/5/2013', 'May-10', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (722, 'Ohio Department of Transportation', '0000-03-00', 'OHIODOTDEL', 0, '2013-04-05', NULL, '2014-03-24', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO #', 'Ohio Department of Transportation', '', 'KAS', '', NULL, NULL, 'March', '4/5/2013', 'Mar-12', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (723, 'Alt & Witzig Engineering, Inc.', '0000-03-00', 'ALTCOL', 0, '2013-01-23', NULL, '2014-03-24', 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'March', '1/23/2013', 'Feb-12', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (724, 'Marathon Oil Company', '0000-03-00', 'MARATHON', 0, '2012-10-17', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'Marathon Oil Company', 'Yes', 'CS', '', NULL, NULL, 'March', '10/17/2012', 'Jan-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (725, 'Boeing-SVS', '0000-02-00', 'BOEING', 0, '2013-03-06', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Boeing-SVS', 'Yes', 'III', '', NULL, NULL, 'February', '3/6/2013', 'Mar-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (726, 'Swank Construction Company', '0000-03-00', 'SWANKPETE', 0, '2012-10-09', '0000-00-00', NULL, '', '', 0, 'Net 30', '', b'0', '', b'0', 'MUST HAVE', 'Swank Construction Company', 'Yes', 'III', '', NULL, NULL, 'March', '10/9/2012', '', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (727, 'City of Pittsburgh', '0000-03-00', 'CITYOFPITTS2', 0, '2012-04-18', '0000-00-00', NULL, '', '', 0, '', '', b'0', '', b'0', '', 'City of Pittsburgh', '', 'CJS', '', NULL, NULL, 'March', '4/18/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (728, 'Warren Fabricating & Machining Corp.', '0000-05-00', 'WARRENFAB', 0, '2013-07-16', NULL, NULL, 'No', 'Trumbull 6.75%', 6.75, 'COD', '', b'1', 'Active ', b'1', 'Credit Card', 'Warren Fabricating & Machining Corp.', 'Yes', 'CJS', 'Range: 100 PSI', NULL, NULL, 'May', '7/16/2013', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (729, 'Ohio Department of Transportation', '0000-03-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', 'Yes', '', 0, 'Net 30', '', b'1', '', b'1', 'Vbl Doug', 'Ohio Department of Transportation', '', '', '', NULL, NULL, 'March', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (730, 'BecoTek Mfg., Inc', '0000-03-00', 'becotek', 0, '2013-03-20', NULL, '2014-03-24', 'Yes', 'Lorain 6.5%', 6.5, 'CC', '', b'1', '', b'1', ' ', 'BecoTek Mfg., Inc.', 'Yes', 'III', 'Range: 60,0.00 lbs', NULL, NULL, 'March', '3/20/2013', '3/21/2012', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (731, 'Brayman Construction', '0000-03-00', 'Braymanmas', 0, '2013-04-11', '0000-00-00', '2014-03-31', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'PO Required', 'Brayman Construction', 'Yes', 'KAS', 'Range: 330 lbs ', NULL, NULL, 'March', '4/11/2013', '', '3/31/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (732, 'Stress Con Industries, Inc. ', '0000-04-00', 'STRESCON1', 0, '2013-10-21', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Stress Con Industries, Inc. ', 'Yes- 1 day', 'KAS', '4 K/ 47,500 lbs', NULL, NULL, 'April', '10/21/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (733, 'Michigan Department of Transportation', '0000-04-00', 'MICHFRONT', 0, '2013-04-24', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Michigan Department of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/24/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (734, 'Advance Drainage Systems', '0000-04-00', 'HANCORF', 0, '2013-10-14', NULL, '2014-04-07', 'No', 'Hancock 6.75%', 6.75, 'MC', '', b'1', 'Active', b'1', 'GET CARD #', 'Advance Drainage Systems', 'Yes-1day', 'DLP', 'Range:0.5 in/min, 1 in/min, 2 in/min ', NULL, NULL, 'April', '10/14/2013', 'Mar-97', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (735, 'Michigan Department of Transportation', '0000-04-00', 'MDOT/GR', 0, '2013-04-25', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes-24hours', 'DLP', 'Range: 15K (MDOT# 208192)', NULL, NULL, 'April', '4/25/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (736, 'Mega Precast', '0000-04-00', 'SHELBYPRE', 0, '2013-07-22', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Mega Precast', 'Yes-few days', 'CJS', 'Range: 3K ', NULL, NULL, 'April', '7/22/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (737, 'Soil & Structures', '0000-04-00', 'SOIL&STR', 0, '2013-04-25', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soil & Structures', 'Yes - 1 day', 'KAS', 'Range: 20 lbs to 2K', NULL, NULL, 'April', '4/25/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (738, 'Elmer\'s Concrete & Dozer', '0000-04-00', 'ELMERS1', 0, '2013-03-20', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Elmer\'s Concrete & Dozer', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/20/2013', 'Feb-12', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (739, 'Materials Testing Consultants', '0000-04-00', 'MATERIALSCOT', 0, '2013-04-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Material Testing Consultants', 'Yes', 'TJT', '', NULL, NULL, 'April', '4/24/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (740, 'Stress Con Industries, Inc. ', '0000-04-00', 'STRESSCON2', 0, '2012-08-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Stress Con Industries, Inc. ', 'Yes', 'KAS', 'Range: 78 to 82 ', NULL, NULL, 'April', '8/14/2012', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (741, 'Smith Midland', '0000-04-00', 'SMITHMID', 0, '2013-09-19', '0000-00-00', '2014-04-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Smith Midland', 'Yes', 'TPJ', 'Range: 30 Ton (Area 6.28)', NULL, NULL, 'April', '9/19/2013', '', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (742, 'C. J. Mahan Construction Company', '0000-04-00', 'Mahan', 0, '2013-05-01', '0000-00-00', '2014-04-14', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'C. J. Mahan Construction Company', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/1/2013', '', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (743, 'Erico Products', '0000-04-00', 'ERICO/SOLON2', 0, '2013-05-16', '0000-00-00', '2014-04-21', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Erico Products', 'Yes', 'DLP', 'Range: 100 lbs to 10K', NULL, NULL, 'April', '5/16/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (744, 'Golden Triangle', '0000-05-00', 'GOLDENAIR', 0, '2013-05-29', NULL, '2014-05-12', 'No', 'Allegheny 7.00%', 7, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE ', 'Golden Triangle', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/29/2013', 'Oct-06', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (745, 'Charles J. Merlo, Inc.', '0000-04-00', 'MERLO', 0, '2013-03-20', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'Charles J. Merlo, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'April', '3/20/2013', 'Apr-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (746, 'Mingo Creek Construction, LP', '0000-03-00', 'MINGO', 0, '2013-04-25', NULL, '2014-03-10', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active ', b'1', '', 'Mingo Creek Construction, LP', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/25/2013', 'Aug-10', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (747, 'Clearwater Construction', '0000-04-00', 'CLEARWAYNE', 0, '2013-04-03', NULL, '2014-04-21', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'Must Have', 'Clearwater Construction', 'Yes', 'KAS', '', NULL, NULL, 'April', '4/3/2013', 'Sep-11', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (748, 'Genesis Technology USA', '0000-05-00', 'GENESIS', 0, '2013-05-28', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Genesis Technology USA', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/28/2013', 'May-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (749, 'General Aluminum Company', '0000-04-00', 'GENALUMRAV', 0, '2013-05-16', NULL, '2014-04-21', 'No', 'Portage 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'General Aluminum Company', 'YES', 'DLP', 'Range : 0.2 in/in', NULL, NULL, 'April', '5/16/2013', 'May-12', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (750, 'Hanson', '0000-11-00', 'SHERMAN', 0, '2013-05-16', NULL, '2013-11-04', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Hanson', 'Yes', 'DLP', '', NULL, NULL, 'November', '5/16/2013', 'Dec-05', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (751, 'Ross Aluminum Castings, LLC', '0000-04-00', 'ROSS', 0, '2013-05-29', NULL, '2014-04-28', 'No', 'Shelby 7.25%', 7.25, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Ross Aluminum Castings, LLC', 'Yes', 'DLP', 'Range: 0.00050 in/in / 1K lbs Force ', NULL, NULL, 'April', '5/29/2013', 'Apr-10', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (752, 'Kokosing Construction Co.', '0000-08-00', 'KOKOSINGCON', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'No', 'Allen 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Kokosing Construction Co.', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (753, 'Tuf Tug', '0000-04-00', 'TUF TUG 2', 0, '2013-08-19', '0000-00-00', '2015-04-27', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Tuf Tug', 'YES', 'DLP', '', NULL, NULL, 'April', '8/19/2013', '', '4/27/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (754, 'Resource International', '0000-04-00', 'RESOURCECOL2', 0, '2013-08-27', '0000-00-00', '2014-04-28', 'No', 'Franklin 7%', 7, 'COD', '', b'1', 'Active', b'1', 'Forever COD', 'Resource International', 'Yes', 'DLP', 'Range: 0.5 \"', NULL, NULL, 'April', '8/27/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (755, 'Duffield Associates, Inc.', '0000-04-00', 'CUMBGEO1', 0, '2013-05-16', '0000-00-00', '2014-04-28', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Duffield Associates, Inc.', 'Yes', 'III', 'Range: 3 inches', NULL, NULL, 'April', '5/16/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (756, 'Ohio Department of Transporation', '0000-04-00', 'OHIODOTLIMA', 0, '2013-05-15', '0000-00-00', '2014-04-28', 'Yes', '', 0, 'C.C', '', b'1', 'Active', b'1', '', 'Ohio Department of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/15/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (757, 'ECS Mid-Atlantic, LLC', '0000-04-00', 'ECSWinchester', 0, '2013-02-25', NULL, '2014-04-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'TJT', 'Range: 10K ', NULL, NULL, 'April', '2/25/2013', 'Feb-07', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (758, 'Blankenship Service Company', '0000-04-00', 'Blankenship', 0, '2012-05-21', '0000-00-00', NULL, '', '', 0, 'CC', '', b'0', '', b'0', 'Verbal Kurtis', 'Blankenship Service Company', '', 'III', '', NULL, NULL, 'April', '5/21/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (759, 'Wills Engineering', '0000-07-00', 'WILLS', 0, '2013-07-23', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Wills Engineering', 'Yes', 'CJS', '', NULL, NULL, 'July', '7/23/2013', 'Mar-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (760, 'Brayman Construction', '0000-04-00', 'BRAYMANWV', 0, '2013-02-25', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Brayman Construction', 'Yes', 'TJT', '', NULL, NULL, 'April', '2/25/2013', 'Nov-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (761, 'Stress Con Industries, Inc.', '0000-04-00', 'STRESCON', 0, '2012-05-29', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Stress Con', 'Yes- 1 day', 'MTR', 'Range: 2,150 lbs. to 35,000 lbs.', NULL, NULL, 'April', '5/29/2012', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (762, 'Trumbull Corporation', '0000-04-00', 'TRUMPGH', 0, '2012-05-24', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Inactive', b'0', 'Need Job No ', 'Trumbull Corporation', 'Yes', 'TJT', '', NULL, NULL, 'April', '5/24/2012', 'Oct-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (763, 'New Enterprise Stone & Lime', '0000-04-00', 'NEWENT71048', 0, '2012-05-14', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'New Enterprise Stone & Lime ', 'Yes', 'CJS', '', NULL, NULL, 'April', '5/14/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (764, 'CBS (Castle Builders)', '0000-05-00', 'CASTLEALQPA', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', ' ', 'CBS (Castle Builders)', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/28/2013', 'May-12', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (765, 'Cumberland Concrete Corporation', '0000-03-00', 'CUMBERLAND', 0, '2013-04-10', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cumberland Concrete Corporation', 'Yes-definite', 'DLP', '', NULL, NULL, 'March', '4/10/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (766, 'AMEC Environmental & Infrastructure Inc.', '0000-05-00', 'AMECCHANT', 0, '2013-08-06', NULL, '2014-05-05', 'OOS', '', 0, 'NET 30', '', b'1', 'Active', b'1', '', 'AMEC Environmental & Infrastructure Inc.', 'Yes', 'DLP', 'Range: 60K / 400K', NULL, NULL, 'May', '8/6/2013', 'Jun-12', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (767, 'Universal Specialties', '0000-05-00', 'UNIVERSAL 2', 0, '2013-09-19', '0000-00-00', '2014-05-05', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'GET PO#', 'Universal Specialties', 'Yes', 'DLP', 'Range: 600 lbs to 90K', NULL, NULL, 'May', '9/19/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (768, 'Aerojet', '0000-05-00', 'AEROJET3', 0, '2012-12-12', NULL, '2013-05-06', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Aerojet', 'Yes', 'DLP', 'Range: 300 lbs to 30K', NULL, NULL, 'May', '12/12/2012', 'Nov-12', '5/6/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (769, 'Aerojet', '0000-05-00', 'AEROJET2', 0, '2012-12-12', NULL, '2013-05-06', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Aerojet', 'Yes', 'DLP', 'Range: 0.1 to 0.9', NULL, NULL, 'May', '12/12/2012', 'Nov-12', '5/6/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (770, 'Concrete General, Inc. ', '0000-06-00', 'CONCRETEGEN', 0, '2013-07-09', NULL, '2013-06-23', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Concrete General, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'June', '7/9/2013', 'Feb-12', '6/23/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (771, 'Swank Construction Company ', '0000-03-00', 'SWANK', 0, '2013-04-05', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Swank Construction Company ', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/5/2013', 'Mar-07', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (772, 'Golden Triangle', '0000-05-00', 'GOLDEN2', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE ', 'Golden Triangle', 'Yes', 'CJS', '', NULL, NULL, 'May', '5/29/2013', 'Jan-04', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (773, 'Pittsburgh Mobile Concrete', '0000-05-00', 'PITTSMOBILE', 0, '2013-05-28', NULL, '2014-05-05', ' Yes', ' ', 0, 'COD', '', b'1', 'Active', b'1', '', 'Pittsburgh Mobile Concrete', 'Yes', 'TPJ', 'Range: 2,600 grams', NULL, NULL, 'May', '5/28/2013', 'May-12', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (774, 'Soil Consultants, Inc. ', '0000-05-00', 'SOILMANASSAS', 0, '2013-08-30', NULL, '2014-05-05', 'OOS', '', 0, 'COD', '11/26/2012', b'1', 'Active', b'1', 'CREDIT CARD', 'Soil Consultants Inc.', 'Yes', 'KAS', 'Range: 0.1 inch to 1 inch', NULL, NULL, 'May', '8/30/2013', 'Feb-07', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (775, 'EBA Engineering, Inc.', '0000-05-00', 'EBA/SILVER', 0, '2013-05-28', NULL, '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'GET ON SITE', 'EBA Engineering, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/28/2013', 'Nov-08', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (776, 'Faddis Concrete', '0000-05-00', 'FADDIS/KING', 0, '2013-05-02', NULL, '2014-05-05', 'No', '', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Faddis Concrete', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/2/2013', 'Aug-12', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (777, 'Aerojet', '0000-05-00', 'AEROJET4', 0, '2012-12-12', '0000-00-00', '2013-05-06', 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Aerojet', 'Yes', 'DLP', 'Range: 2 in to 20 in', NULL, NULL, 'May', '12/12/2012', '', '5/6/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (778, 'Aerojet', '0000-05-00', 'AEROJET5', 0, '2012-12-12', '0000-00-00', '2013-05-06', 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Aerojet', 'Yes', 'DLP', 'Range: 1 in/min', NULL, NULL, 'May', '12/12/2012', '', '5/6/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (779, 'Aerojet', '0000-05-00', 'AEROJET6', 0, '2012-12-12', '0000-00-00', '2013-05-06', 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Aerojet', 'Yes', 'DLP', 'Range: 10 in/min', NULL, NULL, 'May', '12/12/2012', '', '5/6/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (780, 'Arrow Concrete', '0000-05-00', 'ARROWWIN', 0, '2013-05-29', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Arrow Concrete ', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'May', '5/29/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (781, 'Cardinal Concrete', '0000-05-00', 'ARACOMA/CARD', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cardinal Concrete', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/29/2013', 'Aug-03', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (782, 'A.C. Miller Concrete', '0000-11-00', 'ACMILLER', 0, '2013-05-28', '0000-00-00', '2013-11-04', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'A.C. Miller Concrete', 'Yes - 3 days', 'KAS', 'Range: 50K (6 Month Schedule) ', NULL, NULL, 'November', '5/28/2013', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (783, 'Geo-Technology Associates Inc.', '0000-06-00', 'GTA/LAUREL', 0, '2013-07-09', '0000-00-00', '2014-06-23', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Geo-Technology Associates Inc.', 'Yes', 'KAS', '', NULL, NULL, 'June', '7/9/2013', '', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (784, 'Professional Service Industries, Inc.', '0000-05-00', 'PSI/COL', 0, '2013-06-19', '0000-00-00', '2014-05-19', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes- 1 day', 'CJS', '', NULL, NULL, 'May', '6/19/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (785, 'Tektronix, Inc.', '0000-05-00', 'GETRANSERIE', 0, '2012-06-18', NULL, NULL, 'No', 'PA 6%', 6, 'CC', '', b'1', 'Active', b'1', 'vbl Mary', 'G.E. Transportation', '', 'III', '', NULL, NULL, 'May', '6/18/2012', 'May-12', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (786, 'HRI. Inc.', '0000-05-00', 'HRIWILLIAM2', 0, '2012-06-14', NULL, NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'HRI, Inc.', '', 'III', 'Range: 150 Ton', NULL, NULL, 'May', '6/14/2012', 'May-12', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (787, 'Associated Aircraft Group, Inc. (AAG)', '0000-05-00', 'AAG', 0, '2013-05-28', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Associated Aircraft Group, Inc. (AAG)', 'No', 'TPJ', 'Range: 100 lbs to 50K', NULL, NULL, 'May', '5/28/2013', 'May-08', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (788, 'West Coast Wire Rope', '0000-05-00', 'WESTCOASTCA', 0, '2012-06-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'CREDIT CARD', 'West Coast Wire Rope', 'Yes', 'KAS', '', NULL, NULL, 'May', '6/1/2012', 'May-09', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (789, 'Geotechnical Consultants, Inc. ', '0000-05-00', 'GEOTECHOH', 0, '2012-08-14', NULL, NULL, 'No ', 'Montogomery 7.25%', 7.25, 'Net 30', '', b'0', 'Active', b'0', '', 'Geotechnical Consultants, Inc. ', 'Yes', 'III', '', NULL, NULL, 'May', '8/14/2012', 'Nov-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (790, 'Geotek', '0000-05-00', 'GEOTEKMD', 0, '2012-12-05', NULL, NULL, 'Yes', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Geotek', 'Yes 48 Hours', 'DLP', '', NULL, NULL, 'May', '12/5/2012', 'Aug-03', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (791, 'DLZ', '0000-06-00', 'DODSON4', 0, '2013-06-26', NULL, '2014-06-02', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'DLZ', 'Yes', 'DLP', 'Range: 0.2 inches to 2 inches', NULL, NULL, 'June', '6/26/2013', 'Jun-12', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (792, 'Barber Spring', '0000-06-00', 'BARBERSPRING2', 0, '2013-07-12', NULL, '2014-06-02', 'No', 'PA 6%', 6, 'Net30', '', b'1', 'Active', b'1', '', 'Barber Spring', 'Yes', 'III', 'Range: 50K Channel #2', NULL, NULL, 'June', '7/12/2013', 'Mar-04', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (793, 'Midwest Eng & Testing ', '0000-06-00', 'MIDWESTENG', 0, '2013-04-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Midwest Eng & Testing', 'Yes', 'CJS', '', NULL, NULL, 'June', '4/17/2013', 'May-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (794, 'Stiger Precast, Inc.', '0000-06-00', 'STIGER', 0, '2013-04-18', NULL, '2014-06-02', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', ' ', 'Stiger Precast, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'June', '4/18/2013', 'Dec-06', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (795, 'Professional Service Industries, Inc.', '0000-06-00', 'PSI/DAYTON', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Professional Service Industries, Inc.', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (796, 'Soils & Materials Engineers', '0000-06-00', 'SOILS/LAN2', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Soils & Materials Engineers', 'Yes-1 day', 'KAS', 'Range: 150 lbs', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (797, 'New Enterprise Stone & Lime', '0000-06-00', 'NESLBLAIR', 0, '2013-06-19', NULL, '2014-06-02', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'New Enterprise Stone & Lime', 'Yes 3 Days', 'TPJ', '', NULL, NULL, 'June', '6/19/2013', 'Sep-08', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (798, 'Stress Con Industries, Inc.', '0000-06-00', 'STRESSCONDET3', 0, '2013-04-25', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'Must Have', 'Stress Con Industries, Inc.', 'Yes', 'CJS', 'Range: 4K/5K, Final 50K', NULL, NULL, 'June', '4/25/2013', 'Jun-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (799, 'Hubbel, Roth & Clark, Inc.', '0000-12-00', 'HRC', 0, '2013-06-26', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Hubbel, Roth & Clark, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'December', '6/26/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (800, 'Oldcastle Precast', '0000-06-00', 'OLDCAST/RIVER', 0, '2013-06-24', '0000-00-00', '2014-06-09', 'Yes', '', 0, 'COD', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Oldcastle Precast', 'Yes', 'KAS', '', NULL, NULL, 'June', '6/24/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (801, 'Materials Testing Consultants', '0000-06-00', 'MATERIALSELK', 0, '2013-03-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', '', 'Materials Testing Consultants', 'Yes', 'KAS', '', NULL, NULL, 'June', '3/26/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (802, 'Gosling Czubak Associates, Inc.', '0000-06-00', 'GOSLING', 0, '2013-07-08', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net30', '', b'1', 'Active', b'1', '', 'Gosling Czubak Associates, Inc.', '', 'TPJ', '', NULL, NULL, 'June', '7/8/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (803, 'HRI, Inc.', '0000-03-00', 'HRIWILLIAM', 0, '2013-05-16', NULL, '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'HRI, Inc.', 'Yes', 'TPJ', '', NULL, NULL, 'March', '5/16/2013', 'May-12', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (804, 'Clearwater Construction', '0000-06-00', 'CLEARWATER', 0, '2013-07-09', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Clearwater Construction', 'Yes', 'KAS', '', NULL, NULL, 'June', '7/9/2013', 'Aug-07', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (805, 'HRI, INC.', '0000-06-00', 'HRINORTHCAM', 0, '2013-05-29', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', ' ', 'HRI, INC.', 'YES', 'CS/AY', '', NULL, NULL, 'June', '5/29/2013', 'Jun-12', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (806, 'Structural Group, Inc.', '0000-06-00', 'STRUCTURALCA', 0, '2013-07-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Structural Group, Inc.', 'Yes', 'DLP', 'Range: 3,000 lbs', NULL, NULL, 'June', '7/9/2013', 'Jun-12', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (807, 'Blackstone Business Enterprises, Inc.', '0000-07-00', 'BLACKSTONE', 0, '2013-07-09', '0000-00-00', '2014-07-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Blackstone Business Enterprises', 'Yes-2 Days', 'III', '', NULL, NULL, 'July', '7/9/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (808, 'Geotech Services, Inc.', '0000-07-00', 'GEOTECHBEL', 0, '2013-07-15', NULL, '2014-07-07', 'No', 'Paulding 7.25 %', 7.25, 'CC', '', b'1', 'Active', b'1', '', 'Geotech Services, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'July', '7/15/2013', 'Jun-12', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (809, 'Armstrong Cement & Supply Corp.', '0000-07-00', 'ARMSTRONGC', 0, '2013-08-06', NULL, '2014-07-07', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Armstrong Cement & Supply Corp.', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/6/2013', 'Jul-12', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (810, 'John Gulisek Construction', '0000-07-00', 'GULISEKMON', 0, '2013-05-29', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'John Gulisek Construction', 'Yes', 'III', '', NULL, NULL, 'July', '5/29/2013', 'Sep-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (811, 'Commonwealth of Pennsylvania', '0000-07-00', 'PENNDOT/DIS 12', 0, '2013-07-16', NULL, '2014-07-07', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Penn DOT District 12', 'Yes', 'CS/TJ', '', NULL, NULL, 'July', '7/16/2013', 'Jan-06', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (812, 'Plum Contracting, Inc.', '0000-04-00', 'PLUMCON 2', 0, '2013-05-28', '0000-00-00', '2014-04-21', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Plum Contracting, Inc.', 'Yes', 'KAS', 'Range: 2,600 grams', NULL, NULL, 'April', '5/28/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (813, 'Plum Contracting, Inc. ', '0000-09-00', 'PLUMCON', 0, '2013-09-19', NULL, '2014-09-08', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Plum Contracting, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'September', '9/19/2013', 'Nov-05', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (814, 'Miami Valley Materials Testing Center', '0000-07-00', 'MIAMIVALL', 0, '2013-08-06', NULL, '2014-07-21', 'No ', 'Miami 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Miami Valley Materials Testing Center', 'Yes', 'III/TJ', 'Range: 10 lbs to 1K (5 Kn)', NULL, NULL, 'July', '8/6/2013', 'Jun-11', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (815, 'Geotechnical Testing Services', '0000-07-00', 'GEOTECH/COR', 0, '2013-08-19', NULL, '2014-07-21', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Geotechnical Testing Services', 'Yes', 'KAS', '', NULL, NULL, 'July', '8/19/2013', 'Apr-04', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (816, 'Taktl, LLC', '0000-06-00', 'TAKTL', 0, '2013-07-09', NULL, '2014-06-23', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Taktl, LLC', 'Yes', 'CJS', 'Range: 2.5K to 250K (Channel #2)', NULL, NULL, 'June', '7/9/2013', 'Aug-10', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (817, 'Walsh Construction Company', '0000-07-00', 'WALSHPGH', 0, '2013-06-20', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Walsh Construction Company', 'Yes', 'DLP', '', NULL, NULL, 'July', '6/20/2013', 'Dec-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (818, 'Golden Triangle', '0000-05-00', 'GOLDENALEX', 0, '2013-06-19', '0000-00-00', '2014-05-19', 'No', 'Allegheny 7.00%', 7, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Golden Triangle', 'Yes', 'KAS', '', NULL, NULL, 'May', '6/19/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (819, 'Swank Construction Company', '0000-07-00', 'SWANKFOMB', 0, '2013-06-20', NULL, NULL, 'No', 'Pa 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Swank Construction Company', 'Yes', 'KAS', '', NULL, NULL, 'July', '6/20/2013', 'Jul-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (820, 'Columbia Inspection Service', '0000-06-00', 'COLUMBIA/SHAM', 0, '2013-08-19', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Columbia Inspection Service', '', 'KAS', '', NULL, NULL, 'June', '8/19/2013', 'Aug-12', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (821, 'HRI Inc.', '0000-07-00', 'HRIINC/ELK', 0, '2013-06-11', NULL, '2014-07-14', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'HRI Inc.', 'Yes', 'CJS', '', NULL, NULL, 'July', '6/11/2013', 'Jul-12', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (822, 'Essroc Ready Mix (Arrow Concrete)', '0000-07-00', 'ARROW/DEL', 0, '2013-08-06', '0000-00-00', '2014-07-21', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Essroc Ready Mix (Arrow Concrete)', 'Yes', 'KAS', '', NULL, NULL, 'July', '8/6/2013', '', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (823, 'Erico Products', '0000-07-00', 'ERICO/SOLON4', 0, '2012-09-26', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Erico Products', 'Yes', 'DLP', '', NULL, NULL, 'July', '9/26/2012', '', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (824, 'Energy Northwest', '0000-07-00', 'ENERGYNW', 0, '2012-08-07', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Energy Northwest', 'Yes', 'DLP', 'Range: 1 Ton (ID# 815-29-06-085)', NULL, NULL, 'July', '8/7/2012', 'Nov-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (825, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (826, 'Holloway Wire Rope', '0000-08-00', 'HOLLOWAY4', 0, '2013-09-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Holloway Wire Rope', 'Yes', 'III', 'Range: 5 M.Ton', NULL, NULL, 'August', '9/16/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (827, 'Holloway Wire Rope', '0000-04-00', 'HOLLOWAY3', 0, '2013-04-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Holloway Wire Rope', 'Yes', 'III', 'Range: 10K', NULL, NULL, 'April', '4/17/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (828, 'Holloway Wire Rope', '0000-07-00', 'HOLLOWAY', 0, '2012-08-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Holloway Wire Rope', '', 'DLP', 'Range: 5 Ton', NULL, NULL, 'July', '8/15/2012', 'May-12', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (829, 'Holloway Wire Rope', '0000-04-00', 'HOLLOWAY2', 0, '2013-05-02', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Holloway Wire Rope', '', 'DLP', 'Range : 5 Ton', NULL, NULL, 'April', '5/2/2013', 'May-12', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (830, 'DYK Inc. / DN Tanks', '0000-07-00', 'DNTANKS', 0, '2012-08-14', NULL, NULL, 'Yes', '', 0, 'COD', '', b'1', '', b'1', ' ', 'DYK Inc. / DN Tanks', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/14/2012', 'Jul-12', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (831, 'Farabaugh Engineering & Testing, Inc. ', '0000-07-00', 'FARABAUGH1', 0, '2012-06-04', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Farabaugh Engineering & Testing, Inc. ', 'Yes', 'III', 'Range: 500 lbs ', NULL, NULL, 'July', '6/4/2012', 'Feb-09', 'No solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (832, 'CBC Engineers & Associates', '0000-08-00', 'CBCENGINEERS', 0, '2013-08-19', NULL, '2014-08-04', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'CBC Engineers & Associates', 'Yes', 'TPJ', 'Range: 30K / 250K', NULL, NULL, 'August', '8/19/2013', 'Aug-98', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (833, 'Hanson Concrete Products', '0000-08-00', 'HANSONCOLUM', 0, '2013-10-07', '0000-00-00', '2014-08-04', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'Credit Card', 'Hanson Concrete Products', 'Yes- 1 day', 'TJ/DP', 'RAM AREA 61.89 sq. in.', NULL, NULL, 'August', '10/7/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (834, 'CTL Engineering', '0000-08-00', 'CTL91078', 0, '2013-09-23', '0000-00-00', '2014-08-04', 'No', 'Auglaize 7.25%-CC 5%', 12.25, 'Net 30', '', b'1', 'Active', b'1', '', 'CTL Engineering', 'Yes- 1 day', 'III', '', NULL, NULL, 'August', '9/23/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (835, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS7', 0, '2013-10-14', '0000-00-00', '2014-01-06', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'DLP', ' ', NULL, NULL, 'January', '10/14/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (836, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS6', 0, '2013-06-13', '0000-00-00', '2014-01-06', 'No', 'Allegheny 7%', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'CS/III', 'Range: 20 lbs to 500 lbs', NULL, NULL, 'January', '6/13/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (837, 'E.L. Robinson Engineering Company', '0000-08-00', 'ELROB', 0, '2013-08-28', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'E.L. Robinson Engineering Company', 'Yes', 'KAS', '', NULL, NULL, 'August', '8/28/2013', 'Apr-09', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (838, 'Essroc Accounting Services ', '0000-08-00', 'ARROW', 0, '2013-08-28', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Arrow Concrete ', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/28/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (839, 'Vecellio & Grogan', '0000-08-00', 'VEC&GRO', 0, '2013-09-02', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE ', 'Vecellio & Grogan', 'Yes', 'DLP', '', NULL, NULL, 'August', '9/2/2013', 'Jun-10', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (840, 'Mountaineer Testing Services, Inc.', '0000-08-00', 'MOUNTAINEER', 0, '2013-09-03', '0000-00-00', '2014-08-18', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Mountaineer Testing Services, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'August', '9/3/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (841, 'CSI Hanson JV', '0000-04-00', 'HANSONPIPE', 0, '2013-05-15', '0000-00-00', '2014-04-21', 'No', 'Summit 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'CSI Hanson JV', 'Yes', 'DP/KS', 'Range: 35K (150KN)', NULL, NULL, 'April', '5/15/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (842, 'KSA', '0000-08-00', 'KSA', 0, '2013-09-19', '0000-00-00', '2014-08-25', 'No', 'Scioto 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'KSA', 'Yes-1week', 'DLP', 'Range: 440K (7,500 PSI)', NULL, NULL, 'August', '9/19/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (843, 'KSA', '0000-08-00', 'KSA1', 0, '2013-09-19', '0000-00-00', '2014-08-25', 'No', 'Scioto 7.25%', 7.25, 'Net 30', '', b'1', 'Active ', b'1', 'GET ON SITE', 'KSA', 'Yes - 1 week', 'DLP', 'Range: 10K ', NULL, NULL, 'August', '9/19/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (844, 'Terracon', '0000-08-00', 'TERRACONFOST', 0, '2013-07-26', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'CS', '', NULL, NULL, 'August', '7/26/2013', 'Dec-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (845, 'Bowser Morner Testing Lab', '0000-08-00', 'BOWSERLEX', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Bowser Morner Testing Lab', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (846, 'Ohio State University', '0000-08-00', 'OHIOUNIVER', 0, '2013-07-23', NULL, '2014-08-25', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Ohio State University', 'Yes', 'CJS', '', NULL, NULL, 'August', '7/23/2013', 'Sep-04', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (847, 'Gate Precast', '0000-08-00', 'GATEBLUE', 0, '2013-09-20', '0000-00-00', '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Gate Precast', 'Yes', 'KAS', 'Range: 35K (7,990 psi)', NULL, NULL, 'August', '9/20/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (848, 'Hi-Way Paving Company', '0000-08-00', 'HIWAY82132', 0, '2013-09-17', '0000-00-00', '2014-08-25', 'OOS', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Hi-Way Paving Company', 'Yes 1 Day', 'KAS', '', NULL, NULL, 'August', '9/17/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (849, 'Terracon', '0000-08-00', 'NUTTING04138', 0, '2013-09-17', NULL, '2014-08-25', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Terracon (Konton County Airport Board)', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/17/2013', 'Sep-04', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (850, 'Hi-Way Paving Company', '0000-09-00', 'HIWAY74115', 0, '2013-09-23', '0000-00-00', '2014-09-01', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Hi-Way Paving Company', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'September', '9/23/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (851, 'Ohio Department of Transportation', '0000-08-00', 'ODOT/GARFIELD', 0, '2013-08-30', NULL, '2014-08-25', 'Yes', '', 0, 'COD', '', b'1', 'Active', b'1', 'Credit Card', 'Ohio Department of Transportation', 'Yes', 'CJS', '', NULL, NULL, 'August', '8/30/2013', 'Aug-12', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (852, 'CTI & Associated, Inc', '0000-08-00', 'CTIASSOC/IL', 0, '2012-11-01', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'Forever COD', 'CTI Murphysboro Lab', 'Yes-2 Days', 'DLP', '', NULL, NULL, 'August', '11/1/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (853, 'GeoStabilization International ', '0000-09-00', 'GEO/SOIL', 0, '2013-10-10', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'1', '', 'GeoStabilization International', 'Yes', 'DLP', 'Range: 10,000 psi (60 Ton)', NULL, NULL, 'September', '10/10/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (854, 'GeoStabilization International', '0000-06-00', 'SOILNAIL2', 0, '2013-07-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'GeoStabilization International', 'Yes', 'TPJ', ' ', NULL, NULL, 'June', '7/15/2013', 'Nov-10', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (855, 'GeoStabilization International', '0000-08-00', 'SOILNAIL1', 0, '2012-11-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'GeoStabilization International', 'Yes', 'KAS', 'Range: 60 Ton (8,900 PSI)', NULL, NULL, 'August', '11/2/2012', 'Nov-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (856, 'Consulting Services Inc. of Kentucky', '0000-08-00', 'CSI/KENTUCKY2', 0, '2012-09-25', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Consulting Services Inc.of Kentucky ', 'Yes', 'ALY', '', NULL, NULL, 'August', '9/25/2012', 'Jun-09', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (857, 'Triumf', '0000-08-00', 'TRIUMF', 0, '2012-09-06', '0000-00-00', NULL, '', '', 0, 'COD', '', b'0', '', b'0', 'MUST HAVE', 'Triumf', '', 'DLP', '', NULL, NULL, 'August', '9/6/2012', '', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (858, 'Hanson Concrete Products', '0000-08-00', 'COLLECOCOLUM', 0, '2013-08-06', NULL, NULL, 'No', 'Licking 7.25%', 7.25, 'Net 30', '', b'1', 'inactive', b'1', '', 'CSI Colleco Industries', 'Yes-1 day', 'KS', '', NULL, NULL, 'August', '8/6/2013', 'Jun-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (859, 'Geotechnical Consulting & Testing', '0000-09-00', 'GCNT-2', 0, '2013-09-23', '0000-00-00', '2014-09-15', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Geotechnical Consulting & Testing', 'Yes-24 hrs.', 'CJS', 'Range 1,000', NULL, NULL, 'September', '9/23/2013', '', '9/15/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (860, 'Architectural Testing, Inc.', '0000-09-00', 'ARCHTEST2', 0, '2013-09-23', NULL, '2014-09-01', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Architectural Testing, Inc.', 'Yes', 'DLP', 'Range: 0.20 in/min', NULL, NULL, 'September', '9/23/2013', 'Nov-04', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (861, 'BS & T Labs, Inc. ', '0000-09-00', 'BS&TLABS', 0, '2013-09-23', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'BS & T Labs, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'September', '9/23/2013', 'Oct-10', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (862, 'Jeff Zell Consultants', '0000-09-00', 'ZELLWATER', 0, '2013-09-19', '0000-00-00', '2014-09-08', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Jeff Zell Consultants', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/19/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (863, 'Jeff Zell Consultants', '0000-09-00', 'ZELL78274', 0, '2013-09-19', NULL, '2014-09-08', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Jeff Zell Consultants', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/19/2013', 'Aug-00', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (864, 'Essroc Accounting Services ', '0000-09-00', 'ARROWPIT', 0, '2013-09-19', '0000-00-00', '2014-09-08', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Arrow Concrete', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'September', '9/19/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (865, 'Ohio Department of Transportation', '0000-08-00', 'ODOT', 0, '2013-08-19', NULL, '2014-08-04', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Ohio Department of Transportation', 'Yes', 'DLP', ' ', NULL, NULL, 'August', '8/19/2013', 'Mar-10', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (866, 'Hennessey Engineers Inc.', '0000-09-00', 'HENNESSEY', 0, '2013-10-14', NULL, '2014-09-22', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Hennessey Engineers Inc.', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', 'Sep-12', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (867, 'Detroit Edison Company', '0000-09-00', 'DE/WARRE', 0, '2013-08-19', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Detroit Edison Company', 'Yes-definite', 'DLP', '', NULL, NULL, 'September', '8/19/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (868, 'Michigan Department of Transportation', '0000-09-00', 'MDOT/NEW', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (869, 'Wade Trim', '0000-09-00', 'WADETRIM', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Wade Trim', 'Yes-1 day', 'KAS', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (870, 'Prein&Newhof', '0000-04-00', 'PREIN&NEWHOF', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Prein&Newhof', 'Yes', 'KAS', 'Range: 10K', NULL, NULL, 'April', '4/25/2013', 'Mar-13', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (871, 'Wilcox Professional Services', '0000-09-00', 'WILCOX/ESCAN', 0, '2013-03-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Wilcox Professional Services', 'Yes', 'CJS', '', NULL, NULL, 'September', '3/1/2013', 'Jan-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (872, 'Mack Industries / Michigan', '0000-09-00', 'MACKMI', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Mack Industries / Michigan', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (873, 'NTH Consultants', '0000-09-00', 'NTH/FARM1', 0, '2013-10-09', NULL, '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'NTH Consultants', 'Yes- 1 day', 'CS/TJ', 'Range: 500 lbs (Do 1,5&10 lb Readings)', NULL, NULL, 'September', '10/9/2013', 'Jan-01', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (874, 'Soils & Materials Engineers', '0000-09-00', 'SOIL/SHELBY', 0, '2013-10-14', NULL, '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Soils & Materials Engineers', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/14/2013', 'Jan-05', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (875, 'Benchmark Engineering, Inc.', '0000-09-00', 'BIDSTRUP', 0, '2013-10-14', NULL, '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Benchmark Engineering, Inc.', 'Yes-1 day', 'KAS', '', NULL, NULL, 'September', '10/14/2013', 'Jul-96', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (876, 'Professional Service Industries, Inc.', '0000-09-00', 'PSI/SAG', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (877, 'St. Marys Cement, Inc. US', '0000-09-00', 'STMARYCEMENT', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'CREDIT CARD', 'St. Marys Cement, Inc. US', 'Yes-1 day', 'TJ/CS', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (878, 'Structural Group', '0000-09-00', 'STRUCTDETR', 0, '2013-07-08', '0000-00-00', '2013-09-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Structural Group', 'Yes', 'III', 'Range: 300 lbs to 3,000 lbs ', NULL, NULL, 'September', '7/8/2013', '', '9/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (879, 'Alt & Witzig Engineering, Inc.', '0000-09-00', 'ALTWITZIGIN2', 0, '2012-08-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'September', '8/10/2012', 'Apr-04', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (880, 'USCG Sector Southeastern New England', '0000-08-00', 'USCGNEWENG', 0, '2013-08-12', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'USCG Sector Southeastern New England', 'Yes', 'III', '', NULL, NULL, 'August', '8/12/2013', 'Sep-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (881, 'Halliburton Completion Tools', '0000-06-00', 'HCT TX', 0, '2013-07-09', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Halliburton Completion Tools', 'Yes', 'III', '', NULL, NULL, 'June', '7/9/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (882, 'Halliburton Energy Services', '0000-03-00', 'HALLIBURTON1', 0, '2013-04-03', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Halliburton Energy Services', 'Yes', 'III', '', NULL, NULL, 'March', '4/3/2013', 'Sep-12', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (883, 'Widener University', '0000-10-00', 'Widener', 0, '2012-08-08', NULL, '2013-10-14', 'No', 'PA 6 %', 6, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Widener University', 'Yes', 'TJT', '', NULL, NULL, 'October', '8/8/2012', 'Oct-08', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (884, 'Trumbull Corporation', '0000-10-00', 'TRUMB-NEW', 0, '2012-10-24', '0000-00-00', '2013-10-14', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Trumbull Corporation', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'October', '10/24/2012', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (885, 'Boger Concrete', '0000-10-00', 'BOGER', 0, '2012-10-25', NULL, '2013-10-14', 'Yes', '0', 0, 'COD', '', b'0', 'Active', b'0', '', 'Boger Concrete', 'Yes', 'KAS', '', NULL, NULL, 'October', '10/25/2012', 'Mar-10', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (886, 'R.E. Pierson Construction', '0000-10-00', 'PIERSON', 0, '2012-12-05', '0000-00-00', '2013-10-14', 'No', 'PA 6%', 6, 'COD', '', b'1', '', b'1', '', 'R.E. Pierson Construction', 'Yes', 'III', '', NULL, NULL, 'October', '12/5/2012', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (887, 'Hillis-Carnes Engineering ', '0000-10-00', 'HILLISHARRIS', 0, '2012-11-02', NULL, '2013-10-14', 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Hillis-Carnes Engineering ', 'Yes', 'KAS', '', NULL, NULL, 'October', '11/2/2012', 'Dec-11', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (888, 'Bressler Group', '0000-10-00', 'BRESSLER', 0, '2013-06-17', NULL, NULL, 'No', 'Philadelphia 8%', 8, 'COD', '', b'1', 'Active ', b'1', '', 'Bressler Group', 'Yes', 'DLP', '', NULL, NULL, 'October', '6/17/2013', 'Jan-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (889, 'SAL Ltd.', '0000-07-00', 'SAL', 0, '2013-08-06', '0000-00-00', '2015-07-13', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'SAL Ltd.', '', 'III', 'Range: 78 to 82', NULL, NULL, 'July', '8/6/2013', '', '7/13/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (890, 'Correia ConstructionCompany Limited', '0000-07-00', 'CORREIA', 0, '2013-05-16', NULL, '2014-07-14', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Correia ConstructionCompany Limited', '', 'III', '', NULL, NULL, 'July', '5/16/2013', 'Oct-07', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (891, 'Pharmavite Corporation', '0000-10-00', 'PHARMAVITE', 0, '2012-10-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Credit Card', 'Pharmavite Corporation', 'Yes', 'DP', '', NULL, NULL, 'October', '10/31/2012', 'Sep-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (892, 'Structural Group, Inc. ', '0000-10-00', 'STRUCTELK1', 0, '2012-11-07', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Structural Group, Inc. ', 'Yes', 'KAS', 'Range: 300 lbs to 3,000 lbs', NULL, NULL, 'October', '11/7/2012', 'Mar-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (893, 'SAAM Trailers', '0000-10-00', 'SAAMMEXICO', 0, '2012-11-01', '0000-00-00', NULL, 'Yes', '', 0, 'COD', '', b'1', '', b'1', '', 'SAAM Remolques', '', '', '', NULL, NULL, 'October', '11/1/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (894, 'Gerace Construction Co., Inc.', '0000-10-00', 'GERACE', 0, '2012-09-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', '', 'Gerace Construction Co., Inc.', 'Yes 1 Day', 'DLP', 'Range: 5K (590 PSI) / 50K (4,300 PSI)', NULL, NULL, 'October', '9/5/2012', '', 'NO SOLICITE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (895, 'Wrightway Ready-Mix ', '0000-11-00', 'WRIGHTWV', 0, '2013-02-25', NULL, '2013-11-04', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Wrightway Ready-Mix ', 'Yes', 'CJS', '', NULL, NULL, 'November', '2/25/2013', 'Dec-11', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (896, 'West Virginia Division of Highways', '0000-11-00', 'WVDIVELKINS', 0, '2012-11-20', NULL, '2013-11-04', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'West Virginia Division of Highways', 'Yes', 'KAS', '', NULL, NULL, 'November', '11/20/2012', 'Jul-07', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (897, 'Stantec Consulting Services ', '0000-05-00', 'ZANDE01138', 0, '2013-06-12', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Stantec Consulting Services ', 'Yes', 'TPJ', '', NULL, NULL, 'May', '6/12/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (898, 'Essroc Cement, Inc.', '0000-11-00', 'ESSROCCEMENT', 0, '2013-06-19', '0000-00-00', '2013-11-04', 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Essroc Cement, Inc.', 'Yes', 'DLP', 'Range: 4K to 500K ', NULL, NULL, 'November', '6/19/2013', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (899, 'Professional Service Industries, Inc.', '0000-11-00', 'PSI/STMARYS', 0, '2012-12-06', '0000-00-00', '2013-11-04', 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', '', 'Professional Service Industries, Inc.', 'Yes-1 day', 'KAS', '', NULL, NULL, 'November', '12/6/2012', '', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (900, 'Frank Bryan Incorporated', '0000-07-00', 'BRYAN', 0, '2013-07-15', '0000-00-00', '2014-07-07', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Frank Bryan Incorporated', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'July', '7/15/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (901, 'ECS Mid Atlantic', '0000-11-00', 'ECSMIDBRIDGE', 0, '2012-12-20', NULL, '2013-11-11', 'No', 'PA 6%', 6, 'Net 30', '', b'1', '', b'1', '', 'ECS Mid Atlantic', 'Yes', 'KAS', 'Range: 810 Grams', NULL, NULL, 'November', '12/20/2012', 'Nov-12', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (902, 'Walsh Construction Company', '0000-11-00', 'WALSHPALM', 0, '2013-05-14', NULL, '2013-11-11', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Walsh Construction Company', 'Yes', 'KAS', '', NULL, NULL, 'November', '5/14/2013', 'Mar-09', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (903, 'NW Design Group', '0000-09-00', 'NWDESIGN', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'NW Design Group', 'Yes-1 day', 'KAS', 'Range: 1 inch', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (904, 'NTH Consultants', '0000-09-00', 'NTH/FARM3', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'NTH Consultants', 'Yes', 'DLP', 'Range: -2 inch to 2 inch (T&C)', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (905, 'NTH Consultants', '0000-09-00', 'NTH/FARM2', 0, '2013-10-10', NULL, '2014-09-29', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'NTH Consultants', 'Yes', 'DLP', 'Range: 200 PSI', NULL, NULL, 'September', '10/10/2013', 'Jan-01', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (906, 'G.M. McCrossin, Inc', '0000-10-00', 'MCCROSSIN', 0, '2013-10-17', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'G.M. McCrossin, Inc', 'Yes', 'CJS', 'Range: 10,000 psi', NULL, NULL, 'October', '10/17/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (907, 'GeoStabilization International', '0000-09-00', 'SOILNAIL', 0, '2013-10-10', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'GeoStabilization International', 'Yes', 'KAS', 'Range: 60K (4,000 PSI )', NULL, NULL, 'September', '10/10/2013', 'Nov-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (908, 'Central Scale & Material Handling', '0000-11-00', 'CENTRALSCALE', 0, '2012-11-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', '', b'1', '', 'Central Scale & Material Handling', 'Yes', 'III', '', NULL, NULL, 'November', '11/14/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (909, 'Heco Pacific Mfg., Inc.', '0000-08-00', 'HECO PACIFIC', 0, '2013-08-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'United Launch Alliance', 'Yes', 'DLP', 'Range: 160K', NULL, NULL, 'August', '8/16/2013', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (910, 'Soils & Materials Engineers', '0000-12-00', 'SOIL/TECH', 0, '2013-06-11', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Soils & Materials Engineers', 'Yes 1-day', 'DLP', '', NULL, NULL, 'December', '6/11/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (911, 'Clearwater Construction', '0000-12-00', 'CLEAR/TAM', 0, '2013-10-15', NULL, NULL, 'No', 'PA 6.0%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Clearwater Construction', 'Yes', 'LMS', '', NULL, NULL, 'December', '10/15/2013', 'Sep-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (912, 'CCT Labs', '0000-12-00', 'CLARIONCON', 0, '2012-12-19', NULL, '2013-12-09', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active ', b'1', '', 'All American Car Wash', 'Yes', 'KAS', 'Range: 100 PSI', NULL, NULL, 'December', '12/19/2012', 'Mar-09', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (913, 'Centre Concrete Company', '0000-12-00', 'CEN/MONT', 0, '2012-12-18', '0000-00-00', '2013-12-09', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Centre Concrete Company', 'Yes', 'KAS', '', NULL, NULL, 'December', '12/18/2012', '', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (914, 'New Enterprise Stone & Lime', '0000-12-00', 'NEWENT/70052', 0, '2012-12-18', '0000-00-00', '2013-12-09', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'New Enterprise Stone & Lime', 'Yes- 2 Days', 'KAS', '', NULL, NULL, 'December', '12/18/2012', '', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (915, 'International Paint, LLC', '0000-12-00', 'CEILCOTE', 0, '2012-11-01', NULL, '2013-12-16', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'0', 'Active', b'0', 'HD 105570', 'International Paint, LLC', 'Yes- 1 day', 'DLP', 'Range: 10 lbs to 1K ', NULL, NULL, 'December', '11/1/2012', 'Jan-00', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (916, 'Chemmasters Co.', '0000-12-00', 'SPRAYCUR', 0, '2013-01-02', '0000-00-00', '2013-12-16', 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Chemmasters Co.', 'Yes', 'DLP', '', NULL, NULL, 'December', '1/2/2013', '', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (917, 'Mack Industries of PA', '0000-12-00', 'MACKVIE', 0, '2013-01-02', '0000-00-00', '2013-12-16', 'Yes', 'Direct Pay', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Mack Industries of PA', 'Yes-definite', 'KAS', '', NULL, NULL, 'December', '1/2/2013', '', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (918, 'Medina Supply Co. / Shelly Materials ', '0000-12-00', 'MEDINA1', 0, '2013-02-04', '0000-00-00', '2013-12-16', 'Yes', 'Direct Pay', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Medina Supply Co.', 'Yes', 'KAS', '', NULL, NULL, 'December', '2/4/2013', '', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (919, 'Solar Testing Labs, Inc.', '0000-12-00', 'SOLAR/BR1', 0, '2013-01-21', '0000-00-00', '2013-12-16', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Solar Testing Labs, Inc.', 'Yes- 1 day', 'III', 'Range: 1.5K', NULL, NULL, 'December', '1/21/2013', '', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (920, 'Tapco Tube, Inc.', '0000-07-00', 'TAPCO', 0, '2013-08-06', NULL, '2014-07-21', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Tapco Tube, Inc.', 'Yes', 'CJS', 'Range: 40K ', NULL, NULL, 'July', '8/6/2013', 'Feb-07', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (921, 'Hull & Associates, Inc.', '0000-12-00', 'HULL & ASSOC1', 0, '2013-01-02', NULL, '2013-12-16', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', 'Yes', 'KS/CS', 'Range: 6K ', NULL, NULL, 'December', '1/2/2013', 'Dec-00', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (922, 'Hull & Associates, Inc.', '0000-12-00', 'HULL & ASSOC2', 0, '2013-01-02', NULL, '2013-12-16', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', 'Yes', 'KS/CS', 'Range: 0.4 Inch', NULL, NULL, 'December', '1/2/2013', 'Dec-00', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (923, 'Hull & Associates, Inc.', '0000-12-00', 'HULL & ASSOC3', 0, '2013-01-02', NULL, '2013-12-16', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', 'Yes', 'CS/KS', 'Range: 8.52lbs-68.18lbs/136.35lbs-1.5K', NULL, NULL, 'December', '1/2/2013', 'Dec-00', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (924, 'Structural Group', '0000-12-00', 'STRUC/PRES', 0, '2012-12-20', '0000-00-00', NULL, 'OOS', '', 0, ' ', '', b'1', '', b'1', '', 'Structural Preservation Systems', '', '', '', NULL, NULL, 'December', '12/20/2012', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (925, 'Motion Industries ', '0000-12-00', 'MOTION', 0, '2012-01-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Vbl. Rob ', 'Motion Industries ', 'Yes', 'DLP', '', NULL, NULL, 'December', '1/19/2012', 'Dec-11', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (926, 'Gentek Building Products, Inc.', '0000-04-00', 'GENTEK', 0, '2013-05-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Gentek Building Products, Inc.', 'Yes', 'TPJ', 'Range: 10K 10 Kip only', NULL, NULL, 'April', '5/15/2013', 'Mar-12', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (927, 'Central Supply Company', '0000-01-00', 'CENTRALSUPP', 0, '2013-01-19', NULL, '2014-01-06', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Central Supply Company', 'YESsameday', 'KAS', '', NULL, NULL, 'January', '1/19/2013', 'Aug-99', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (928, 'Ohio Department of Transportation ', '0000-01-00', 'OHIONELSONV', 0, '2013-01-22', NULL, '2014-01-06', 'Yes', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Ohio Department of Transportation ', 'Yes', 'CJS', '', NULL, NULL, 'January', '1/22/2013', 'Jan-11', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (929, 'GeoTechnics', '0000-01-00', 'GEOTECHNICS8', 0, '2013-01-23', '0000-00-00', '2014-01-06', 'No', 'PA 6 %', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'DLP', 'Range: 100 MILLS', NULL, NULL, 'January', '1/23/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (930, 'GeoTechnics', '0000-01-00', 'GEOTECHNIC8', 0, '2013-01-23', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/23/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (931, 'GeoTechnics', '0000-01-00', 'GEOTECHNIC10', 0, '2013-01-23', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', 'CJS', 'Range: 0.002 in/min', NULL, NULL, 'January', '1/23/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (932, 'GeoTechnics', '0000-01-00', 'GEOTECHNIC11', 0, '2013-01-24', NULL, '2014-01-06', 'No', 'PA 6 %', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', '', 'Range:', NULL, NULL, 'January', '1/24/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (933, 'GeoTechnics', '0000-01-00', 'GEOTECHNIC9', 0, '2013-06-13', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'GeoTechnics', 'Yes', '', 'Range: 3 inches', NULL, NULL, 'January', '6/13/2013', 'Jun-98', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (934, 'Professional Service Industries, Inc.', '0000-01-00', 'PSI/LIMA', 0, '2013-01-24', '0000-00-00', '2014-01-13', 'No', 'Allen 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/24/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (935, 'Barr Engineering, Inc.', '0000-01-00', 'BARRINC', 0, '2013-02-04', NULL, '2014-01-13', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Barr Engineering, Inc.', 'Yes', 'KAS', 'Range: 1,500 lbs ', NULL, NULL, 'January', '2/4/2013', 'Dec-04', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (936, 'Barr Engineering, Inc.', '0000-01-00', 'BARRINC1', 0, '2013-02-04', NULL, '2014-01-13', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Barr Engineering, Inc.', 'Yes', 'KAS', 'Range: 1.0\"', NULL, NULL, 'January', '2/4/2013', 'Dec-04', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (937, 'Industrial Testing Laboratory Services, LLC', '0000-01-00', 'INDTESTLAB', 0, '2013-04-11', '0000-00-00', '2014-01-20', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Industrial Testing Laboratory Service, LLC', 'Yes', 'III', '', NULL, NULL, 'January', '4/11/2013', '', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (938, 'Superior Walls of Central Virginia', '0000-01-00', 'SUPERIORAMEL', 0, '2013-02-25', '0000-00-00', '2014-01-27', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Superior Walls of Central Virginia', 'Yes-1 week', 'CJS', '', NULL, NULL, 'January', '2/25/2013', '', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (939, 'Swank Construction Company ', '0000-01-00', 'SWANKPETE', 0, '2013-02-05', NULL, '2014-01-27', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Swank Construction Company ', 'Yes', 'KAS', '', NULL, NULL, 'January', '2/5/2013', 'Mar-08', '1/27/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (940, 'BASF Construction Chemicals', '0000-01-00', 'BASFBEACH', 0, '2013-02-20', NULL, '2014-01-13', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active ', b'1', '4909655470', 'BASF Construction Chemicals', 'Yes', 'III', 'Range: 0.008 in to 0.8 in', NULL, NULL, 'January', '2/20/2013', 'Nov. 2007', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (941, 'United Launch Alliance,LLC', '0000-01-00', 'UNITEDCA', 0, '2013-05-28', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'Must Have', 'United Launch Alliance ', 'Yes', 'III', 'Range: 50K', NULL, NULL, 'January', '5/28/2013', 'Apr-09', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (942, 'Professional Service Industries, Inc.', '0000-08-00', 'PSICLEV', 0, '2013-09-20', '0000-00-00', '2014-08-25', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes- 3 DAY', 'CJS', 'Range: 45 KN', NULL, NULL, 'August', '9/20/2013', '', '8/25/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (943, 'Fastenal Company', '0000-03-00', 'FASTENALCAN', 0, '2013-04-11', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Fastenal Company', 'Yes', 'III', '', NULL, NULL, 'March', '4/11/2013', 'Jul-12', 'IN HOUSE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (944, 'Micro Precision Calibration Inc.', '0000-06-00', 'MICROPRE2', 0, '2013-06-11', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Micro Precision Calibration Inc.', 'Yes', 'III', 'Range: 200 lbs to 2K (ID# 815-29-06-086)', NULL, NULL, 'June', '6/11/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (945, 'Micro Precision Calibration Inc.', '0000-01-00', 'MICROPRE', 0, '2013-02-04', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Micro Precision Calibration Inc.', '', 'III', '', NULL, NULL, 'January', '2/4/2013', 'Jan-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (946, 'Earth, Inc.', '0000-01-00', 'EARTHP2', 0, '2013-01-22', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Earth, Inc.', 'Yes', 'TJT', 'Range: 20 lbs to 500 lbs', NULL, NULL, 'January', '1/22/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (947, 'Glynn Geotechnical', '0000-01-00', 'GLYNNGEOOOS', 0, '2013-02-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Get on Site', 'Glynn Geotechnical', 'Yes', '', 'Range: 0.4 Inches (D-6027)', NULL, NULL, 'January', '2/6/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (948, 'GeoTechnics', '0000-01-00', 'GEOTECHNIC12', 0, '2013-01-24', NULL, NULL, 'No', 'PA 6 %', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'GeoTechnics', 'Yes', '', 'Range: 16 TSF', NULL, NULL, 'January', '1/24/2013', 'Jun-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (949, 'Guy Chemical Company, Inc.', '0000-02-00', 'GUYCHEM', 0, '2013-03-13', NULL, '2014-02-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Guy Chemical Company, Inc.', 'Yes', 'DLP', 'Range: 20 in/min ', NULL, NULL, 'February', '3/13/2013', 'Feb-12', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (950, 'New Enterprise Stone & Lime', '0000-02-00', 'NEWENT/EBEN', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (951, 'L. Robert Kimball', '0000-02-00', 'KIMBALL1', 0, '2013-03-13', '0000-00-00', '2013-02-24', 'No', 'PA 6.00%', 6, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'L. Robert Kimball', 'Yes', 'CJS', 'Range: 1 Inch ', NULL, NULL, 'February', '3/13/2013', '', '2/24/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (952, 'J. J. Kennedy', '0000-02-00', 'KENNEDY2', 0, '2013-03-13', NULL, '2014-02-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'J. J. Kennedy', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/13/2013', 'Jun-05', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (953, 'L. Robert Kimball', '0000-02-00', 'KIMBALL', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'L. Robert Kimball', 'Yes', 'CJS', 'Range: 2.5K', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (954, 'Dixon Contracting & Supply', '0000-02-00', 'DIXON ', 0, '2013-03-13', NULL, '2014-02-24', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active ', b'1', '', 'Dixon Contracting & Supply', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/13/2013', 'May-09', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (955, 'Glenn O. Hawbaker, Inc. ', '0000-02-00', 'HAWBAKERMILL', 0, '2013-07-15', NULL, '2014-02-24', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Glenn O. Hawbaker, Inc. ', 'Yes', 'KAS', 'Range: 100K', NULL, NULL, 'February', '7/15/2013', 'Mar-08', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (956, 'Centre Concrete Company', '0000-02-00', 'CEN/SCOL', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Centre Concrete Company', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (957, 'L. Robert Kimball', '0000-02-00', 'KIMBALL1-2', 0, '2013-03-13', '0000-00-00', '2014-02-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE PO', 'L. Robert Kimball', 'Yes', 'III', '', NULL, NULL, 'February', '3/13/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (958, 'ALD Precast Corp.', '0000-02-00', 'ALDPRECAST', 0, '2013-02-20', NULL, '2014-02-03', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'ALD Precast Corp.', 'Yes', 'CJS', '', NULL, NULL, 'February', '2/20/2013', 'Feb-13', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (959, 'Ohio Department of Transportation', '0000-02-00', 'ODOT/ASH', 0, '2013-02-20', '0000-00-00', '2014-02-03', 'Yes', ' ', 0, 'Net 30', '', b'1', '', b'1', '', 'Ohio Department of Transportation', 'Yes', 'KAS', '', NULL, NULL, 'February', '2/20/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (960, 'Stellar Materials, Inc. ', '0000-02-00', 'STELLAR', 0, '2013-03-05', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Stellar Materials, Inc. ', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/5/2013', 'Jun-08', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (961, 'Superior Materials. LLC', '0000-02-00', 'SUPLANSING', 0, '2013-03-05', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Superior Materials', 'Yes', 'DLP', '', NULL, NULL, 'February', '3/5/2013', 'Mar-09', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (962, 'TTL Associates, Inc.', '0000-07-00', 'TTLASSOCIATES', 0, '2013-09-20', NULL, '2014-07-28', 'No', 'Lucas 7%', 7, 'COD', 'Sep-13', b'1', 'Active', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes', 'DLP', 'Range: 60 psi', NULL, NULL, 'July', '9/20/2013', 'Dec-00', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (963, 'TTL Associates, Inc.', '0000-07-00', 'TOLTEST2', 0, '2013-09-20', '0000-00-00', '2014-07-28', 'No', 'Lucas 7%', 7, 'COD', 'Sep-13', b'1', 'Active', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes', 'DLP', 'Range: 1/8 TSF to 32 TSF', NULL, NULL, 'July', '9/20/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (964, 'Kerkstra Prestress, Inc.', '0000-02-00', 'KERKSTRA', 0, '2013-10-14', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Kerkstra Prestress', 'Yes', 'KAS', 'Range', NULL, NULL, 'February', '10/14/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (965, 'Lockheed Martin Corporation', '0000-02-00', 'LOCKHEED', 0, '2013-02-27', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Lockheed Martin Corporation', 'Yes', 'III', '', NULL, NULL, 'February', '2/27/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (966, 'Calibration Technicians & Supply', '0000-02-00', 'CALTECHSUP', 0, '2013-03-06', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Calibration Technicians & Supply', 'Yes', '', '', NULL, NULL, 'February', '3/6/2013', 'Feb-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (967, 'Structural Preservation Systems', '0000-05-00', 'STRUCWFL', 0, '2013-05-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Structural Preservation Systems', 'Yes', 'KAS', 'Range: 300 lbs to 3,000 lbs', NULL, NULL, 'May', '5/28/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (968, 'Princeton University', '0000-10-00', 'PRINCEUNI2', 0, '2013-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Princeton University', 'Yes', 'CS', 'Range: 3 Ton', NULL, NULL, 'October', '10/18/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (969, 'Princeton University', '0000-02-00', 'PRINCEUNI', 0, '2013-10-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Princeton University', 'Yes', 'III', 'Range: 12.5 Ton', NULL, NULL, 'February', '10/1/2013', 'Feb. 2013', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (970, 'Arctic Wire Rope', '0000-03-00', 'ARCTIC', 0, '2013-04-11', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Arctic Wire Rope', 'Yes', 'III', '', NULL, NULL, 'March', '4/11/2013', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (971, 'CTI & Associates, Inc.', '0000-02-00', 'CTIASSOCIATES', 0, '2013-03-05', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', '', b'1', 'Forever COD', 'CTI & Associates', 'Yes- 2 days', '', 'Range: 1,000 Grams ', NULL, NULL, 'February', '3/5/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (972, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALT&WIT OOS', 0, '2013-02-20', NULL, NULL, 'No', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Alt & Witzig Engineering, Inc', 'Yes', ' ', 'Range: 2K (Moved)', NULL, NULL, 'February', '2/20/2013', 'Apr-13', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (973, 'Virginia Department of Transportation', '0000-03-00', 'PINE9', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (974, 'Virginia Department of Transportation', '0000-03-00', 'PINE8', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (975, 'Virginia Department of Transportation', '0000-03-00', 'PINE7', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', 'Range:', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (976, 'Virginia Department of Transportation', '0000-03-00', 'PINE6', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (977, 'Virginia Department of Transportation', '0000-03-00', 'PINE5', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (978, 'Virginia Department of Transportation', '0000-03-00', 'PINE4', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (979, 'Virginia Department of Transportation', '0000-03-00', 'PINE3', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (980, 'Virginia Department of Transportation', '0000-03-00', 'PINE2', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (981, 'Virginia Department of Transportation', '0000-03-00', 'PINE1', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Pine Instrument Company (VDOT)', 'Yes', '', '', NULL, NULL, 'March', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (982, 'Virginia Department of Transportation', '0000-02-00', 'TROXLER5', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Troxler (VDOT)', '', '', '', NULL, NULL, 'February', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (983, 'Virginia Department of Transportation', '0000-02-00', 'TROXLER3', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Troxler (VDOT)', '', '', '', NULL, NULL, 'February', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (984, 'Virginia Department of Transportation', '0000-02-00', 'TROXLER2', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Troxler (VDOT)', '', '', '', NULL, NULL, 'February', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (985, 'Virginia Department of Transportation', '0000-02-00', 'TROXLER4', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Troxler (VDOT)', '', '', '', NULL, NULL, 'February', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (986, 'Virginia Department of Transportation', '0000-02-00', 'TROXLER', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', ' ', 'Troxler (VDOT)', '', '', '', NULL, NULL, 'February', '4/18/2013', '', 'VDOT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (987, 'Pike Technical Services, Inc.', '0000-02-00', 'PIKETECH', 0, '2013-02-13', '0000-00-00', '2014-02-03', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Pike Technical Services, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'February', '2/13/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (988, 'Lafarge Corporation', '0000-03-00', 'LAFARGEJOP', 0, '2013-03-22', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Lafarge Corporation', 'Yes', 'CJS', '', NULL, NULL, 'March', '3/22/2013', 'Jun-11', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (989, 'Lafarge Corporation', '0000-03-00', 'LAFARGENE', 0, '2013-04-03', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Lafarge Corporation', 'Yes', 'CJS', '', NULL, NULL, 'March', '4/3/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (990, 'Advanced Asphalt Technologies, LLC', '0000-03-00', 'ADVANCEDASS', 0, '2013-03-20', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Advanced Asphalt Technologies, LLC', 'Yes', 'DLP', '', NULL, NULL, 'March', '3/20/2013', 'Jul-02', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (991, 'Quality Ready Mix', '0000-03-00', 'QUALITYREADY', 0, '2013-03-22', NULL, '2014-03-10', 'No', 'Augliaze 7.25%', 7.25, 'Net Due', '', b'1', 'Active', b'1', '', 'Quality Ready Mix', 'Yes', 'III', '', NULL, NULL, 'March', '3/22/2013', 'Feb. 2013', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (992, 'BASF Construction Chemicals', '0000-03-00', 'BASF2', 0, '2013-04-03', NULL, '2014-03-10', 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Active', b'1', '4909655470', 'BASF Construction Chemicals', 'Yes', 'III', 'Range: 22 lbs to 2,200 lbs (10 Kn)', NULL, NULL, 'March', '4/3/2013', 'Nov-07', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (993, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/BRISTAL', 0, '2013-05-30', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Bristol District Materials Lab', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '5/30/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (994, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/FRED', 0, '2013-05-30', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Fredericksburg District Materials Lab', 'Yes', 'DLP', '', NULL, NULL, 'March', '5/30/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (995, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/LYNCH', 0, '2013-09-16', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Lynchburg District Material Lab', 'Yes', 'CS/TJ', 'Range: 1K/2K/5K/10K (5K & 10K Only)', NULL, NULL, 'March', '9/16/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (996, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/SALEM', 0, '2013-05-30', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Salem District Materials Lab', 'Yes', 'CS/TJ', 'Range: 2.5K to 250K', NULL, NULL, 'March', '5/30/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (997, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/STAU', 0, '2013-08-06', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Staunton District Materials Lab', 'Yes', 'DLP', 'Range: 2.5K / 5K / 10K', NULL, NULL, 'March', '8/6/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (998, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/SUFF', 0, '2013-05-30', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hampton Roads District Materials Lab', 'Yes', 'DLP', 'Range: 2.5K / 5K / 10K', NULL, NULL, 'March', '5/30/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (999, 'Virginia Department of Transportation', '0000-03-00', 'VDOT/COLONIAL', 0, '2013-05-30', NULL, '2014-03-10', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Richmond District Materials Lab ', 'Yes', 'DLP', '', NULL, NULL, 'March', '5/30/2013', 'Mar-08', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1000, 'Mascaro Contracting, LP', '0000-03-00', 'MASCARO', 0, '2013-02-20', NULL, '2014-03-31', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Mascaro Contracting, LP', 'Yes', 'III', '', NULL, NULL, 'March', '2/20/2013', 'Dec-02', '3/31/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1001, 'Carnegie-Mellon University', '0000-03-00', 'CARNEGIEMELL', 0, '2013-02-25', NULL, '2014-03-31', 'Yes', '', 0, 'COD', '', b'1', 'Active ', b'1', 'Credit Card', 'Carnegie-Mellon University', 'Yes', 'TJT', '', NULL, NULL, 'March', '2/25/2013', 'Mar-11', '3/31/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1002, 'General Dynamics Information Technology', '0000-05-00', 'USARMYMD', 0, '2013-06-19', NULL, '2014-05-05', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE ', 'US Army Corps of Engineers', 'Yes', 'DLP', 'Range: 0.4 inches ', NULL, NULL, 'May', '6/19/2013', 'May-10', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1003, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ECSVIRGINA', 0, '2013-02-25', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'TJT', '', NULL, NULL, 'March', '2/25/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1004, 'Virginia Department of Transportation', '0000-03-00', 'VADOTSAND', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'DLP', 'Range: 0.05 in/min ', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1005, 'Orchard, Hiltz & McClimet, Inc.', '0000-04-00', 'OHM', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Orchard, Hiltz & McCliment, Inc.', 'Yes', 'TPJ', '', NULL, NULL, 'April', '4/25/2013', 'May-12', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1006, 'Mega Precast', '0000-04-00', 'NATPRECA', 0, '2013-07-22', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Mega Precast', 'Yes-1 day', 'TPJ', '', NULL, NULL, 'April', '7/22/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1007, 'Wahl Refractory Solutions, LLC', '0000-04-00', 'WAHL1', 0, '2013-05-02', NULL, '2014-04-28', 'No', 'Sandusky 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Wahl Refractory Solutions, LLC', 'Yes', 'DLP', 'Ranges:(4 Ranges) (Compression Only)', NULL, NULL, 'April', '5/2/2013', 'May-11', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1008, 'General Aluminum Manufacturing Company', '0000-12-00', 'GENALUM', 0, '2013-09-25', '0000-00-00', '2013-12-16', 'No', 'Ashtabula 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'General Aluminum Manufacturing Co.', 'Yes', 'DLP', 'Range: 0.25 in/in ', NULL, NULL, 'December', '9/25/2013', '', '12/16/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1009, 'Jacobson Mfg, LLC', '0000-06-00', 'JACOBSONMFG', 0, '2013-07-09', NULL, '2014-06-23', 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Jacobson Mfg, LLC', 'Yes', 'III', 'Range: 1K to 120K', NULL, NULL, 'June', '7/9/2013', 'Jan-13', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1010, 'Hubbel, Roth & Clark, Inc.', '0000-12-00', 'HUBBELDET', 0, '2013-04-15', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Hubbel, Roth & Clark, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'December', '4/15/2013', 'Sep-07', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1011, 'Stress Con Industries, Inc.', '0000-06-00', 'STRESSCONDET', 0, '2013-04-25', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Stress Con Industries, Inc.', 'Yes', 'CJS', 'Range: 4K / 5K , Final 50K', NULL, NULL, 'June', '4/25/2013', 'Jun-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1012, 'Carr Concrete Corporation', '0000-01-00', 'CARRCONC', 0, '2013-07-15', '0000-00-00', '2014-01-06', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Carr Concrete Corporation', 'Yes-1 day', 'CS/TJ', 'Range: 3K / 37.5K', NULL, NULL, 'January', '7/15/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1013, 'BASF Construction Chemicals', '0000-06-00', 'BASF CON', 0, '2013-07-15', NULL, '2014-06-09', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '4909655470', 'BASF Construction Chemicals', 'Yes', 'KAS', 'Range: 0.25 mm to 2.5 mm', NULL, NULL, 'June', '7/15/2013', 'Nov-07', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1014, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/PSP3', 0, '2013-07-23', '0000-00-00', '2014-01-13', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes - 1 day', 'KS/TJ', 'Range: 40K', NULL, NULL, 'January', '7/23/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1015, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/PSP4', 0, '2013-07-23', '0000-00-00', '2014-01-13', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes - 1 day', 'KS/TJ', 'Range: 4K / 50K ', NULL, NULL, 'January', '7/23/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1016, 'Sherman Dixie Concrete Industries, Inc.', '0000-02-00', 'SHERMANELIZ', 0, '2013-08-16', '0000-00-00', '2014-02-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Sherman Dixie Concrete Industries, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'February', '8/16/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1017, 'BASF Construction Chemicals Operations,', '0000-02-00', 'BASFSTREET', 0, '2013-08-16', NULL, '2014-02-03', 'No', 'Portage 7 %', 7, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'BASF Construction Chemicals Operations,', 'Yes', 'KAS', '', NULL, NULL, 'February', '8/16/2013', 'Jul-09', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1018, 'Mack Industries of PA', '0000-01-00', 'MACKVAL', 0, '2013-08-19', '0000-00-00', '2014-01-13', 'Yes', 'Direct Pay', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Mack Industries of PA', 'YES', 'KAS', 'Range: 35K (5,700 PSI) ', NULL, NULL, 'January', '8/19/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1019, 'Eastern Vault', '0000-02-00', 'EVAULT', 0, '2013-09-17', '0000-00-00', '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Eastern Vault', 'Yes- 1 day', 'KAS', 'Range: 40K (9,100 PSI)', NULL, NULL, 'February', '9/17/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1020, 'ACCAD Corporation', '0000-04-00', 'ACCAD CORP', 0, '2013-07-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ACCAD Corporation', 'Yes', 'TPJ', '', NULL, NULL, 'April', '7/22/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1021, 'ACCAD Corporation', '0000-08-00', 'CL BELT', 0, '2013-07-22', '0000-00-00', '2013-08-19', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ACCAD Corporation', 'Yes - 1 day', 'KAS', 'Range: 100K', NULL, NULL, 'August', '7/22/2013', '', '8/19/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1022, 'Oldcastle Precast, Inc.', '0000-08-00', 'PACKAGEDSYS', 0, '2013-08-28', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'Get PO#', 'Oldcastle Precast, Inc.', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/28/2013', 'Jun-07', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1023, 'MET Lab', '0000-02-00', 'METLab', 0, '2013-07-18', NULL, '2014-02-03', 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'MET Lab', 'Yes Definite', 'III', 'Range: 0.25 in/in (GL 1Inch) ', NULL, NULL, 'February', '7/18/2013', 'Feb-07', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1024, 'Wilcox Professional Services', '0000-09-00', 'WILCOXALPENA', 0, '2013-03-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Wilcox Professional Services', 'Yes', 'DP', '', NULL, NULL, 'September', '3/1/2013', 'Sep-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1025, 'St. Marys Cement', '0000-09-00', 'STMARYCHAR', 0, '2013-10-14', NULL, '2014-09-29', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'St. Marys Cement ', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', 'Oct-09', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1026, 'Stress Con Industries, Inc. ', '0000-04-00', 'STRESSSAG', 0, '2013-10-21', NULL, '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Stress Con Industries, Inc. ', 'Yes', 'KAS', 'Range: 35K (8,200 PSI)', NULL, NULL, 'April', '10/21/2013', 'Sep-07', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1027, 'Walsh Construction Company', '0000-10-00', 'WALSKDENBO', 0, '2013-04-03', NULL, '2013-10-14', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Walsh Construction Company', 'Yes', 'KAS', '', NULL, NULL, 'October', '4/3/2013', 'Feb-09', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1028, 'ECS Mid-Atlantic, LLC', '0000-10-00', 'ENGCONSL2', 0, '2013-07-15', '0000-00-00', '2013-10-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes - 1 day', 'KAS', 'Range: 5K to 500K ', NULL, NULL, 'October', '7/15/2013', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1029, 'Boxley Concrete Products', '0000-11-00', 'PIONEER', 0, '2013-02-05', NULL, '2013-11-04', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Boxley Concrete Products', 'Yes-1 day', 'CAS', '', NULL, NULL, 'November', '2/5/2013', 'May-98', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1030, 'Prestress Services', '0000-11-00', 'PRESTRESS/MEL', 0, '2013-09-13', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'In Active', b'1', ' ', 'Prestress Services', 'Yes', 'CJS', 'Range: 400 lbs', NULL, NULL, 'November', '9/13/2013', 'Jan-13', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1031, 'R&D Packaging', '0000-10-00', 'R&DPACKAGING', 0, '2013-09-26', NULL, '2013-10-14', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'R&D Packaging', 'Yes', '', '', NULL, NULL, 'October', '9/26/2013', 'Sep-13', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1032, 'Professional Service Industries, Inc.', '0000-12-00', 'PSIHOMER', 0, '2013-10-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'Must Have', 'Professional Service Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'December', '10/15/2013', 'May-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1033, 'Coast Crane Company of Washington ', '0000-12-00', 'COASTCRANE', 0, '2013-01-21', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Coast Crane Company of Washington ', 'No', 'DLP', '', NULL, NULL, 'December', '1/21/2013', 'Mar-08', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1034, 'Cloud Peak Energy / Cordero Rojo Mine', '0000-12-00', 'RIOTINTO', 0, '2013-01-03', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Cloud Peak Energy / Cordero Rojo Mine', 'No', 'KAS', '', NULL, NULL, 'December', '1/3/2013', 'Feb-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1035, 'Dept. of Army', '0000-04-00', 'DEPTOFARMY', 0, '2013-03-12', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Dept. of Army', 'Yes', '', '', NULL, NULL, 'April', '3/12/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1036, 'Virginia Depart. of Transportation', '0000-03-00', 'VADOTUS', 0, '2013-09-16', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Virginia Transporatation Research Council', 'Yes', 'III', 'Range: 600 PSI', NULL, NULL, 'March', '9/16/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1037, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/SANDS1', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'DLP', 'Range: 500 lbs ADU Channel 29', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1038, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/SANDS3', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'DLP', 'Range: 100 PSI ADU Channel 28', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1039, 'Virginia Dept. of Transportation', '0000-03-00', 'VADOT/SAND2', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'DLP', 'Cap: 1200 lbs (16 TSF) (E-4& Man Specs)', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1040, 'J.J. Kennedy', '0000-03-00', 'STUTZMAN', 0, '2013-04-11', NULL, '2014-03-31', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'J.J. Kennedy', 'Yes-2 days', 'KAS', '', NULL, NULL, 'March', '4/11/2013', 'Jan-97', '3/31/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1041, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/92005', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Virginia Department of Transportation', 'Yes', 'DLP', 'Range: 2K ', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1042, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/CULP', 0, '2013-05-30', '0000-00-00', '2014-03-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Culpeper District Materials Lab', 'Yes', 'CS/TJ', 'Range: 800 mm Hg', NULL, NULL, 'March', '5/30/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1043, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/SANDS', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'DP/TJ', 'Range: 5K', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1044, 'Virginia Department of Transportation', '0000-03-00', 'VDOT/SANDS4', 0, '2013-07-12', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'CS/DP', 'Range: 110K ', NULL, NULL, 'March', '7/12/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1045, 'Virginia Department of Transportation', '0000-03-00', 'VDOTCHAN', 0, '2013-05-30', NULL, '2014-03-10', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Northern VA District Lab office (NOVA)', 'Yes', 'DLP', 'Range: 250 K (ID # 0003257)', NULL, NULL, 'March', '5/30/2013', 'Apr-08', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1046, 'Virginia Depart. of Transportation', '0000-04-00', 'VADOTUSNS', 0, '2012-08-14', '0000-00-00', '2013-04-01', 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Virginia Transporatation Research Council', 'Yes', 'TJT', 'Range: (Channel 3)', NULL, NULL, 'April', '8/14/2012', '', '4/1/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1047, 'McCoig Materials, LLC', '0000-04-00', 'MCCOIG', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'McCoig Materials, LLC', 'Yes', 'TPJ', '', NULL, NULL, 'April', '4/25/2013', 'Apr-07', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1048, 'Material Testing Consultants', '0000-04-00', 'MATERIALNS', 0, '2013-04-24', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Material Testing Consultants', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/24/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1049, 'Abonmarche Consultants', '0000-04-00', 'ABONMARCHE', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Abonmarche Consultants', 'Yes', 'KAS', '', NULL, NULL, 'April', '4/25/2013', 'Apr-98', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1050, 'L C Ready Mix', '0000-04-00', 'LCREADY', 0, '2013-04-25', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'L C Ready Mix', 'Yes', 'KAS', '', NULL, NULL, 'April', '4/25/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1051, 'Professional Service Industries, Inc.', '0000-04-00', 'PSI/KAL', 0, '2013-04-25', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'CJS', 'Range: 10K', NULL, NULL, 'April', '4/25/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1052, 'Michigan Concrete Association', '0000-09-00', 'MIConcreteAssoc', 0, '2013-10-14', NULL, '2015-09-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Michigan Concrete Association', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', 'Mar-07', '9/28/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1053, 'Soil & Structures', '0000-04-00', 'SOIL & STR MI', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soil & Structures', 'Yes', 'KAS', '', NULL, NULL, 'April', '4/25/2013', 'Apr-07', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1054, 'Material Testing Consultants', '0000-04-00', 'MATERIAL2', 0, '2013-05-29', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Material Testing Consultants', 'Yes', 'DLP', 'Range: 100 PSI ', NULL, NULL, 'April', '5/29/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1055, 'Material Testing Consultants', '0000-04-00', 'MATERIAL', 0, '2013-04-24', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Material Testing Consultants', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/24/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1056, 'Material Testing Consultants', '0000-04-00', 'MATERIAL1', 0, '2013-04-24', '0000-00-00', '2014-04-07', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Material Testing Consultants', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/24/2013', '', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1057, 'PrinzBach Concrete Consulting, LLC', '0000-04-00', 'PRINZBACH', 0, '2013-05-02', NULL, '2014-04-14', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'PrinzBach Concrete Consulting, LLC', 'Yes', 'KAS', '', NULL, NULL, 'April', '5/2/2013', 'Jun-07', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1058, 'Concrete Pipe & Precast (CP&P)', '0000-04-00', 'HANSONCHES', 0, '2013-05-16', NULL, '2014-04-14', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Concrete Pipe & Precast (CP&P)', 'Yes', 'DLP', 'Range: 200K Digital', NULL, NULL, 'April', '5/16/2013', 'Feb-08', '4/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1059, 'Highlander Energy Products, Inc.', '0000-04-00', 'HIGHLANDOOS', 0, '2013-05-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Highlander Energy Products, Inc.', 'Yes', '', 'Range: 5,000 psi', NULL, NULL, 'April', '5/16/2013', 'Nov. 2001', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1060, 'Highlander Energy Products, Inc.', '0000-04-00', 'HIGHLANDER', 0, '2013-05-16', NULL, '2014-04-21', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Highlander Energy Products, Inc.', 'No', 'TPJ', 'Range: 200 psi', NULL, NULL, 'April', '5/16/2013', 'Nov-01', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1061, 'Erico Products', '0000-04-00', 'ERICO/SOLON3', 0, '2013-05-16', '0000-00-00', '2014-04-21', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Erico Products', 'Yes-definite', 'DLP', 'Range: 5 lbs to 500 lbs ', NULL, NULL, 'April', '5/16/2013', '', '4/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1062, 'Ron Crane Scale Sales-USA', '0000-04-00', 'GM-METALFAB', 0, '2006-05-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'General Motors-Grand Rapids Metal Fab.', 'No', 'III', '', NULL, NULL, 'April', '5/18/2006', 'Apr-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1063, 'C&K Industrial Services', '0000-04-00', 'C&K', 0, '2006-11-13', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active', b'0', 'CREDIT CARD', 'C&K Industrial Services', '', 'DLP', '', NULL, NULL, 'April', '11/13/2006', 'Apr-05', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1064, 'ECS Mid-Atlantic, LLC', '0000-04-00', 'ECS/NC', 0, '2005-03-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'ECS Mid-Atlantic, LLC', '', 'DLP', '', NULL, NULL, 'April', '3/31/2005', 'Apr-05', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1065, 'Froehling & Robertson, Inc.', '0000-04-00', 'F&R/SC', 0, '2005-11-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Froehling & Robertson, Inc.', '', '', '', NULL, NULL, 'April', '11/9/2005', 'Apr-05', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1066, 'Mac\'s Hydraulics, Inc.', '0000-04-00', 'MACHYDRAULIC', 0, '2006-04-07', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Mac\'s Hydraulics, Inc.', 'No', 'III', 'Range: 9,000 lbs', NULL, NULL, 'April', '4/7/2006', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1067, 'Preston Testing & Engineering Co., Inc.', '0000-04-00', 'PRESTONTEST', 0, '2005-06-29', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Preston Testing & Engineering Co., Inc.', '', 'DLP', 'Cap: 150 psi', NULL, NULL, 'April', '6/29/2005', 'Apr-05', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1068, 'Virginia Lab Supply', '0000-04-00', 'VALABSUPPLY', 0, '2010-07-20', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Virginia Lab Supply', 'No', 'DLP', '', NULL, NULL, 'April', '7/20/2010', 'Apr-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1069, 'A & L Inc.', '0000-04-00', 'A&L', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '2-Aug', b'1', 'Inactive', b'1', '', 'A & L Inc.', '', 'KLA', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1070, 'A & L Inc.', '0000-04-00', 'A&L / NEWKEN', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '2-Aug', b'0', 'Inactive', b'0', '', 'A & L Inc.', '', 'III', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1071, 'American Geotechnical', '0000-04-00', 'AMERGEOT', 0, '2004-03-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', 'Verbal', 'American Geotechnical', 'Yes', 'JJC', '', NULL, NULL, 'April', '3/26/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1072, 'ATC Associates', '0000-04-00', 'ATC15599/0209191', 0, '2005-04-19', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'ATC Associates', 'Yes', 'TML', '', NULL, NULL, 'April', '4/19/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1073, 'Barletta\'s Materials & Construction,Inc.', '0000-04-00', 'BARLETTA', 0, '2004-03-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Barletta\'s Materials & Construction, Inc.', 'Yes', 'KLA', '', NULL, NULL, 'April', '3/26/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1074, 'Bilco', '0000-04-00', 'BILCO', 0, '2004-04-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Bilco', '', 'WWS', '', NULL, NULL, 'April', '4/8/2004', '1995', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1075, 'Binkley & Ober, Inc.', '0000-04-00', 'BINKLEY', 0, '2004-04-08', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Binkley & Ober, Inc.', 'Yes-1 day', 'DLP', '', NULL, NULL, 'April', '4/8/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1076, 'Carbone of America', '0000-04-00', 'CARBFARM1', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Carbone of America', 'Yes', 'III', 'Range: 150 lb.', NULL, NULL, 'April', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1077, 'Carbone of America', '0000-04-00', 'CARBFARM2', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Carbone of America', 'Yes', 'III', 'Range: 20-200 lb.', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1078, 'Carbone of America', '0000-04-00', 'CARBFARM3', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Carbone of America', 'Yes', 'III', '', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1079, 'Casper Colosimo', '0000-04-00', 'CASPER', 0, '2004-03-26', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Casper Colosimo', 'Yes-definite', 'DWC', '', NULL, NULL, 'April', '3/26/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1080, 'Center Manufacturing', '0000-04-00', 'CENTERMFG', 0, '2005-03-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Center Manufacturing', 'Yes-2 days', 'TML', '', NULL, NULL, 'April', '3/31/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1081, 'Center State Amesite', '0000-04-00', 'CENTERMUNCY', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Center State Amesite', 'No', 'DLP', '', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1082, 'Dick Enterprises', '0000-04-00', 'DICKENTERP', 0, '2004-04-01', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Dick Enterprises', 'Yes', 'KLA', '', NULL, NULL, 'April', '4/1/2004', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1083, 'DPD, Inc.', '0000-04-00', 'DPD', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'DPD, Inc.', 'Yes', 'KLA', '', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1084, 'Eastern Industries', '0000-04-00', 'EASTERN', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'Eastern Industries', '', '', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1085, 'Eastern Industries', '0000-04-00', 'EASTWIN', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'Eastern Industries', '', '', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1086, 'ECS Mid-Atlantic, LLC', '0000-04-00', 'ENGCHESA', 0, '2005-02-25', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'ECS-Mid Atlantic, LLC', 'Yes', 'TPT', 'Cap: 10K', NULL, NULL, 'April', '2/25/2005', 'Sept. 2004', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1087, 'ERM', '0000-04-00', 'ERMHOLLAND', 0, '2003-07-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'ERM', 'Yes- 1 day', 'DWC', '', NULL, NULL, 'April', '7/31/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1088, 'Four D Builders Supply', '0000-04-00', 'FOURD', 0, '2007-04-10', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', ' Four D Builders Supply', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'April', '4/10/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1089, 'Geochemical Testing', '0000-04-00', 'GEOCHEM', 0, '2005-02-25', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Geochemical Testing', 'No', 'TPT', '', NULL, NULL, 'April', '2/25/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1090, 'Concrete Pipe & Precast', '0000-04-00', 'GIFFORD', 0, '2004-04-01', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concrete Pipe & Precast', 'Yes-few days', 'DWC', 'Range: 3K to 250K', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1091, 'Hempt Brothers, Inc.', '0000-04-00', 'HEMPTBRL', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', '', b'0', '', 'Hempt Brothers, Inc.', '', '', 'Range 2.5/5/10K', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1092, 'Hi-Way Paving Company', '0000-04-00', 'HYWAYP', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Hi-Way Paving Company', 'No', 'WWS', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1093, 'HRI, Inc.', '0000-04-00', 'HRIINC', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'HRI, Inc.', '', '', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1094, 'HRI, Inc.', '0000-04-00', 'HRIINC/ARM', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'HRI, Inc.', '', 'DWC', '', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1095, 'I A Construction', '0000-04-00', 'IACONST', 0, '2004-06-23', '0000-00-00', NULL, 'NO', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'I A Construction Corp', 'Yes', 'DLP', '', NULL, NULL, 'April', '6/23/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1096, 'Imaging Subsurface, Inc.', '0000-04-00', 'ISI', 0, '2004-07-29', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Imaging Subsurface, Inc.', 'Yes', 'TPT', '', NULL, NULL, 'April', '7/29/2004', 'Jun-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1097, 'IPC Global', '0000-04-00', 'MDSHA', 0, '2005-04-01', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Maryland SHA', 'Yes', '', '', NULL, NULL, 'April', '4/1/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1098, 'Marsolino Construction Co., Inc.', '0000-04-00', 'MARSOLINO2', 0, '2004-03-26', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Marsolino Construction Co., Inc.', 'Yes', '', '', NULL, NULL, 'April', '3/26/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1099, 'MedComp, Inc.', '0000-04-00', 'MEDCOMPINC', 0, '2002-08-16', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'MedComp, Inc.', 'Yes', 'III', '', NULL, NULL, 'April', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1100, 'Michigan Precast', '0000-04-00', 'MICHPREC', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Michigan Precast', '', 'DWC', 'Range 4/35K', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1101, 'National Limestone Quarry', '0000-04-00', 'NATLIME', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'National Limestone Quarry', '', '', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1102, 'New Enterprise Stone & Lime', '0000-04-00', 'NEWENT/JA', 0, '2002-08-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', '', 'WWS', '', NULL, NULL, 'April', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1103, 'New Enterprise Stone & Lime', '0000-04-00', 'NEWENTH4957M', 0, '2007-04-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'0', '', b'0', '', 'New Enterprise Stone & Lime', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'April', '4/16/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1104, 'Prime Engineering', '0000-04-00', 'PRIME1', 0, '2004-04-01', NULL, NULL, 'No', 'Summit 6.75%', 6.75, 'COD', '', b'1', 'Inactive', b'1', '', 'Prime Engineering', 'Yes', '', 'Cap: 500#', NULL, NULL, 'April', '4/1/2004', 'Mar-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1105, 'Professional Inspection & Testing', '0000-04-00', 'PRO/INSP', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', 'Fax: Stewart', 'Professional Inspection & Testing', 'Yes', 'CSE', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1106, 'Pyramid Construction', '0000-04-00', 'PYRAMID', 0, '2004-04-01', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Pyramid Construction', 'Yes', 'CSE', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1107, 'Quality Quartz of America', '0000-04-00', 'QUALITY/MENT', 0, '2004-04-01', NULL, NULL, 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Quality Quartz of America', 'Yes-1 day', 'III', '', NULL, NULL, 'April', '4/1/2004', 'Mar-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1108, 'R B Industries, Inc.', '0000-04-00', 'RBINDUSTRIES', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', 'Verbal: Wes Carson', 'R B Industries, Inc.', 'Yes', 'CSE', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1109, 'Sharp Asphalt', '0000-04-00', 'SHARPASP', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Sharp Asphalt', 'Yes', 'KLA', '', NULL, NULL, 'April', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1110, 'Tech Construction Services', '0000-04-00', 'TECHCONST', 0, '2004-04-01', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Tech Construction Services', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/1/2004', 'Oct-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1111, 'Terracon', '0000-04-00', 'TERRACON', 0, '2005-04-22', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', '', b'0', '', 'Terracon', '', 'III', '', NULL, NULL, 'April', '4/22/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1112, 'Thomas, Bennett & Hunter, Inc.', '0000-04-00', 'TB&H,INC.', 0, '2005-04-07', NULL, NULL, 'OOS', '', 0, '', '', b'0', 'Active', b'0', '', 'Thomas, Bennett & Hunter, Inc.', '', 'III', '', NULL, NULL, 'April', '4/7/2005', 'Oct-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1113, 'U.S. Concrete Products', '0000-04-00', 'USCONPRO', 0, '2004-04-01', '0000-00-00', NULL, 'No', 'Trumbull 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'U.S. Concrete Products', 'Yes', '', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1114, 'United Rentals', '0000-04-00', 'UNITEDRENTALS', 0, '2004-04-01', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '5/8/2000', b'0', 'Inactive', b'0', '', 'United Rentals', 'Yes - 1 day', 'DWC', '', NULL, NULL, 'April', '4/1/2004', 'May-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1115, 'Virginia Geotechnical Services', '0000-04-00', 'VAGEOTECH', 0, '2006-03-28', NULL, NULL, 'OOS', '', 0, '', '', b'1', '', b'1', '', 'Virginia Geotechnical Services', 'Yes', 'DLP', 'Range:', NULL, NULL, 'April', '3/28/2006', 'Jan-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1116, 'West Valley Nuclear Services', '0000-04-00', 'WESTVALL', 0, '2004-04-01', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'West Valley Nuclear Services', 'Yes', 'III', '', NULL, NULL, 'April', '4/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1117, 'Virginia Department of Transportation', '0000-04-00', 'VADOT/SANDSNS', 0, '2010-05-04', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Central Office Materials Lab', 'Yes', 'III', '', NULL, NULL, 'April', '5/4/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1118, 'Virginia Department of Transportation', '0000-04-00', 'VADOTSALEMNS', 0, '2010-05-04', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Salem District Materials Lab', 'Yes', 'III', '', NULL, NULL, 'April', '5/4/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1119, 'Testmark Industries', '0000-04-00', 'TESTMARK', 0, '2008-07-25', '0000-00-00', NULL, 'No', 'Columbiana 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Testmark Industries', '', '', '', NULL, NULL, 'April', '7/25/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1120, 'Baker Concrete Construction', '0000-04-00', 'BAKERLEW', 0, '2008-04-10', NULL, NULL, 'No', 'Monroe 7.25 %', 7.25, 'Net 30', '', b'1', 'Inactive ', b'1', 'GET ON SITE', 'Baker Concrete Construction', 'Yes', 'DLP', '', NULL, NULL, 'April', '4/10/2008', 'Jun-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1121, 'Erico Products ', '0000-04-00', 'ERICO/SOLON1', 0, '2010-04-20', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Erico Products ', 'Yes', 'DLP', 'Range: 2 Inches', NULL, NULL, 'April', '4/20/2010', 'Jan-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1122, 'American Safety Razor', '0000-04-00', 'AMERSAFERAZ', 0, '2009-03-24', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'American Safety Razor', 'Yes', 'DLP', 'Range: 5 inches ', NULL, NULL, 'April', '3/24/2009', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1123, 'George S. Hann & Sons', '0000-05-00', 'HANN&SONS', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'George S. Hann & Sons', 'Yes -1 week', 'KAS', '', NULL, NULL, 'May', '5/28/2013', 'Jul-01', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1124, 'Virginia Geotechnical Services', '0000-04-00', 'VAGEOTECH', 0, '2006-03-28', NULL, NULL, 'OOS', '', 0, '', '', b'1', '', b'1', '', 'Virginia Geotechnical Services', 'Yes', 'TML', 'Range: 500 lbs L/C', NULL, NULL, 'April', '3/28/2006', 'Jan-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1125, 'Virginia Department of Transportation', '0000-04-00', 'VADOT/CULP-PI', 0, '2007-04-23', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Culpeper District Materials Lab', '', '', '', NULL, NULL, 'April', '4/23/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1126, 'Virginia Department of Transportation', '0000-04-00', 'VADOT/STAU-PI', 0, '2007-04-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Staunton District Materials Lab', '', '', 'Range: 5K ', NULL, NULL, 'April', '4/24/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1127, 'Lindy Paving', '0000-04-00', 'LINPAV', 0, '2008-03-20', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Lindy Paving', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/20/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1128, 'City of Flint / DOT', '0000-04-00', 'CTYFLINT', 0, '2009-03-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'City of Flint DOT Eng', 'Yes- 3-5 days', 'TPT', '', NULL, NULL, 'April', '3/26/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1129, 'Hubbell, Roth & Clark, Inc.', '0000-04-00', 'HRC/ROMEO', 0, '2007-09-28', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Hubbell, Roth & Clark, Inc.', 'Yes', 'TPT', '', NULL, NULL, 'April', '9/28/2007', 'Mar-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1130, 'Kebs, Inc.', '0000-04-00', 'KEBS', 0, '2009-03-24', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Kebs, Inc.', 'Yes-2 days', 'DLP', '', NULL, NULL, 'April', '3/24/2009', 'Apr-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1131, 'Midwest Engineering Services', '0000-04-00', 'GRTESTING', 0, '2009-03-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Midwest Engineering Services', 'Yes-1 day', 'TJT', '', NULL, NULL, 'April', '3/16/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1132, 'CTI & Associates, Inc.', '0000-04-00', 'CTIASSOCNS', 0, '2010-04-20', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'Forever COD', 'CTI & Associates, Inc. ', 'Yes- 2 days', 'TPT', 'Range: 0- 160 psi (OOS)', NULL, NULL, 'April', '4/20/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1133, 'Alt & Witzig', '0000-04-00', 'ALTWITZIG11695', 0, '2008-04-09', NULL, NULL, 'NO', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Alt & Witzig', 'Yes-1 day', 'DLP', '', NULL, NULL, 'April', '4/9/2008', 'Apr-99', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1134, 'BBC& M Engineering', '0000-04-00', 'BBC&M', 0, '2008-08-19', NULL, NULL, 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive', b'1', '', 'BBC& M Engineering', 'Yes', 'MTR', 'Range: 1,200 Grams ', NULL, NULL, 'April', '8/19/2008', 'Apr-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1135, 'Virginia Department of Transportation', '0000-04-00', 'VADOTSPRINGNS', 0, '2010-05-04', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Northern VA District Lab Office (NOVA) ', 'Yes', 'DLP', '', NULL, NULL, 'April', '5/4/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1136, 'New Enterprise Stone & Lime', '0000-04-00', 'NESLWAR', 0, '2009-03-06', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'New Enterprise Stone & Lime', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/6/2009', 'Apr-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1137, 'Modern Precast - Easton Plant ', '0000-04-00', 'MODERN', 0, '2008-04-04', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', '', 'Modern Precast - Easton Plant ', 'Yes', '', '', NULL, NULL, 'April', '4/4/2008', 'Apr-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1138, 'Lane Enterprise, Inc', '0000-04-00', 'LANEWYTHE', 0, '2009-01-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Lane Enterprise, Inc', 'Yes', 'TJT', '', NULL, NULL, 'April', '1/29/2009', 'Mar-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1139, 'New Enterprise Stone & Lime', '0000-09-00', 'NEWENT9708', 0, '2013-09-23', '0000-00-00', '2014-09-01', 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/23/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1140, 'Waste Management', '0000-04-00', 'WASTEBLAIR', 0, '2011-03-08', '0000-00-00', NULL, 'Yes', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Waste Management', 'Yes', 'III', '', NULL, NULL, 'April', '3/8/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1141, 'Henry Ford Community College ', '0000-04-00', 'HENRYFORD', 0, '2011-04-05', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Henry Ford Community College ', 'Yes', 'TPT', '', NULL, NULL, 'April', '4/5/2011', 'Dec-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1142, 'Geotechnical Consultants, Inc.', '0000-08-00', 'GEOTECHN1', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Geotechnical Consultants, Inc.', 'Yes', 'DLP', 'Range: 2.5K to 250K ', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1143, 'Terracon Consultants', '0000-08-00', 'NUTTINGB', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Terracon Consultants', '2 Day Prior', 'TPJ', 'Range: 500 lbs', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1144, 'Anderson Concrete Corporation', '0000-08-00', 'ANDERSON', 0, '2013-08-19', NULL, '2014-08-04', 'Yes', 'Direct Pay', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Concrete Research & Testing', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/19/2013', 'Sep-07', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1145, 'City of Akron', '0000-08-00', 'AKRONCITY', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'P1301116', 'City of Akron', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1146, 'Oberfield\'s, Inc.', '0000-08-00', 'OBERFIELD', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'No', 'Delaware 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Oberfield\'s, Inc.', 'Yes-2 days', 'DLP', '', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1147, 'Geotechnical Consultants, Inc.', '0000-08-00', 'GEOTECHN', 0, '2013-08-19', '0000-00-00', '2014-08-04', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Geotechnical Consultants, Inc.', 'Yes', 'DLP', 'Range: 10 K', NULL, NULL, 'August', '8/19/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1148, 'Logan Clay Products', '0000-08-00', 'LOGAN', 0, '2013-08-16', '0000-00-00', '2014-08-04', 'No', 'Hocking 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Logan Clay Products', 'Yes-definite', 'CJS', 'Range: 1.5K to 15 K (E-4 & C-497 & 2%)', NULL, NULL, 'August', '8/16/2013', '', '8/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1149, 'E2B Teknologies', '0000-09-00', 'E2BTEKNOLOGIES', 0, '2013-09-18', '0000-00-00', NULL, 'No', 'Trumbull 6.75%', 6.75, 'COD', '', b'1', 'Active', b'1', '', 'E2B Teknologies', 'Yes', 'DLP', '', NULL, NULL, 'September', '9/18/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1150, 'A & E Testing', '0000-08-00', 'A&ETEST', 0, '2013-09-06', '0000-00-00', '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'A & E Testing', 'Yes', 'CJS', '', NULL, NULL, 'August', '9/6/2013', '', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1151, 'Barnes & Cone Architectural Masonry', '0000-08-00', 'BARNES', 0, '2013-10-15', '0000-00-00', '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Barnes & Cone Architectural Masonry', 'Yes-definite', 'CJS', '', NULL, NULL, 'August', '10/15/2013', '', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1152, 'Professional Service Industries, Inc.', '0000-08-00', 'PSI/TONAWANDA', 0, '2013-08-20', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Professional Service Industries, Inc.', 'Yes - 1 Day', 'DLP', '', NULL, NULL, 'August', '8/20/2013', 'Dec-01', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1153, 'Bailey Manufacturing Co, LLC', '0000-08-00', 'BAILEYMANU', 0, '2013-08-20', '0000-00-00', '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Bailey Manufacturing Co, LLC', 'Yes', 'CJS', '', NULL, NULL, 'August', '8/20/2013', '', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1154, 'Boxley Materials Company', '0000-08-00', 'BOXLEY', 0, '2013-08-20', NULL, '2014-08-11', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Boxley Concrete Products', 'Yes-1 day', 'TPJ', '', NULL, NULL, 'August', '8/20/2013', 'May-98', '8/11/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1155, 'American Geotech, Inc.', '0000-08-00', 'AMERICANGEO', 0, '2013-08-28', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'American Geotech, Inc.', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'August', '8/28/2013', 'Apr-99', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1156, 'Essroc Ready Mix ', '0000-08-00', 'ARROWMAR', 0, '2013-10-11', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE!', 'Essroc Ready Mix (Arrow Concrete)', 'Yes', 'TPJ', '', NULL, NULL, 'August', '10/11/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1157, 'Martin Engineering PLLC', '0000-08-00', 'BARBOUR/T', 0, '2013-10-01', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Martin Engineering PLLC', 'Yes', 'TPJ', '', NULL, NULL, 'August', '10/1/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1158, 'Terracon', '0000-08-00', 'NUTTINGCHAR', 0, '2013-09-03', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Terracon', 'Yes-definite', 'DLP', 'Range: 78 to 82', NULL, NULL, 'August', '9/3/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1159, 'Terracon', '0000-08-00', 'NUTTINGCHAR2', 0, '2013-09-03', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Terracon', 'Yes', 'DLP', 'Range: 2 inch', NULL, NULL, 'August', '9/3/2013', 'Mar-04', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1160, 'Terradon Corporation', '0000-08-00', 'TERRADONWV', 0, '2013-08-28', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terradon Corporation', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/28/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1161, 'Triad Engineering', '0000-08-00', 'TRIAD/STALBANS', 0, '2013-08-28', NULL, '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Triad Engineering', 'Yes', 'KAS', 'Range: 1.5K ', NULL, NULL, 'August', '8/28/2013', 'Dec-01', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1162, 'West Virginia Division of Highways', '0000-08-00', 'WVDEPTFAIR', 0, '2013-09-03', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'West Virginia Division of Highways', 'Yes', 'KAS', '', NULL, NULL, 'August', '9/3/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1163, 'Ron Crane Scale Sales - USA', '0000-08-00', 'TMDE', 0, '2007-09-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'TMDE Support Center', '', 'MTR', '', NULL, NULL, 'August', '9/6/2007', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1164, 'Ron Crane Scale Sales -USA', '0000-08-00', 'QUADCITY', 0, '2007-08-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Quad City Testing', 'No', 'DLP', '', NULL, NULL, 'August', '8/8/2007', 'Jul-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1165, 'Ron Crane Scale Sales -USA', '0000-08-00', 'COORS', 0, '2007-08-23', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'SDI % Coors Brewing Company', 'No', 'III', '', NULL, NULL, 'August', '8/23/2007', 'Aug-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1166, 'Ron Crane Scale Sales -USA', '0000-08-00', 'HONEYWELL', 0, '2007-09-06', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Honeywell Engines ', 'No', 'MTR', '', NULL, NULL, 'August', '9/6/2007', 'Aug-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1167, 'Post Construction Co.', '0000-08-00', 'POSTCONST', 0, '2008-10-14', '0000-00-00', NULL, 'NO', 'PA 6.00%', 6, 'COD', '', b'0', 'Inactive', b'0', '', 'Post Construction Co.', '', 'III', 'Range: 5K psi', NULL, NULL, 'August', '10/14/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1168, 'JGP Structural Group, Inc. ', '0000-08-00', 'STRUCTTALLA', 0, '2007-12-20', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'Forever COD', 'JGP Structural Group, Inc. ', 'No', 'III', '', NULL, NULL, 'August', '12/20/2007', 'Aug-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1169, 'Angelo Iafrate Construction Co.', '0000-08-00', 'IAFRATE', 0, '2002-06-24', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Angelo Iafrate Construction Co.', '', 'DWC', '', NULL, NULL, 'August', '6/24/2002', 'Aug-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1170, 'Aracoma Ready Mix', '0000-08-00', 'ARACOMA', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Aracoma Ready Mix (Div. of Logan Concrete)', 'Yes', 'III', '', NULL, NULL, 'August', '', 'Aug-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1171, 'ATC Associates', '0000-08-00', 'ATC78053', 0, '2005-08-01', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'ATC Associates', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/1/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1172, 'Basic Foundations, Inc.', '0000-08-00', 'BASICFOUND', 0, '2005-08-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Basic Foundations, Inc.', '', 'DLP', '', NULL, NULL, 'August', '8/8/2005', 'Nov-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1173, 'Chatham Technologies', '0000-08-00', 'CHATHAM', 0, '2002-10-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Chatham Technologies', 'Yes', 'III', '', NULL, NULL, 'August', '10/15/2002', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1174, 'Cincinnati Concrete Pipe', '0000-08-00', 'CINCINNA', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cincinnati Concrete Pipe', 'Yes', 'JJC', 'Range: Digital', NULL, NULL, 'August', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1175, 'CME Associates', '0000-08-00', 'CMECENTRAL', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'COD', 'CME Associates', 'Yes-definite', 'DWC', '', NULL, NULL, 'August', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1176, 'Col-Fin Specialty Steel', '0000-08-00', 'COLFIN2', 0, '2002-06-24', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Col-Fin Specialty Steel', 'Yes-definite', 'DWC', '', NULL, NULL, 'August', '6/24/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1177, 'CSR Hydro Conduit', '0000-08-00', 'DURACRET', 0, '2004-08-04', '0000-00-00', NULL, 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'CSR Hydro Conduit', 'Yes- 1 day', 'DWC', '', NULL, NULL, 'August', '8/4/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1178, 'Earthtec, Inc.', '0000-08-00', 'EARTHTECH', 0, '2002-06-24', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Earthtec Laboratory', '', 'KLA', '', NULL, NULL, 'August', '6/24/2002', 'Aug-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1179, 'Hillis-Carnes Engineering Associates, Inc.', '0000-08-00', 'HILLIS-FRED', 0, '2006-08-08', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', '', 'Hillis-Carnes Engineering Associates, Inc.', 'Yes', 'TML', '', NULL, NULL, 'August', '8/8/2006', 'Jan-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1180, 'Inspectech Corporation', '0000-08-00', 'INSPECTECH', 0, '2002-06-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Inspectech Corporation', 'Yes-definite', 'DWC', 'Range 60K', NULL, NULL, 'August', '6/24/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1181, 'Lakeland Concrete P 54A', '0000-08-00', 'LAKELAND', 0, '2002-06-24', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Lakeland Concrete P54A', 'Yes', '', '', NULL, NULL, 'August', '6/24/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1182, 'Mactec Engineering', '0000-08-00', 'MACTECMD', 0, '2006-07-31', NULL, NULL, 'OOS', '', 0, 'COD', '8/31/2004', b'0', '', b'0', '', 'MACTEC Engineering', 'YES', 'TML', '', NULL, NULL, 'August', '7/31/2006', 'Mar-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1183, 'Mashuda', '0000-08-00', 'MASHUDA', 0, '2002-06-24', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mashuda', 'Yes', 'JJC', '', NULL, NULL, 'August', '6/24/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1184, 'Miami Cement Products', '0000-08-00', 'MIAMI / CEM', 0, '2004-08-05', NULL, NULL, 'No', 'Butler 6.5%', 6.5, 'Net 30', '', b'0', '', b'0', '', 'Miami Cement Products', 'Yes', '', '', NULL, NULL, 'August', '8/5/2004', 'Nov-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1185, 'Niagra Mohawk Power Corp.', '0000-08-00', 'NIAGRA', 0, '2004-08-23', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Niagra Mohawk Power Corp.', 'Yes-definite', 'DWC', '', NULL, NULL, 'August', '8/23/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1186, 'Ohio Edison Company', '0000-08-00', 'OHIOED', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Ohio Edison Company', 'Yes', 'CSE', '', NULL, NULL, 'August', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1187, 'P.W. Laboratories, Inc.', '0000-08-00', 'PWLABBUF', 0, '2006-07-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'P.W. Laboratories, Inc.', 'Yes-Fri', '', '', NULL, NULL, 'August', '7/20/2006', 'Aug-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1188, 'Professional Service Industries, Inc.', '0000-08-00', 'PSI/ZANES', 0, '2002-08-15', '0000-00-00', NULL, 'No', 'Muskingum 7.25%', 7.25, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Professional Service Industries, Inc.', '', 'DWC', '', NULL, NULL, 'August', '8/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1189, 'Roberts Construction Company', '0000-08-00', 'ROBERTS', 0, '2006-08-08', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Roberts Construction Company', 'Yes- 2 days', 'TML', '', NULL, NULL, 'August', '8/8/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1190, 'Rochester Institute of Technology', '0000-08-00', 'ROCHESTERIT', 0, '2002-06-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Rochester Institute of Technology', 'Yes', 'CSE', '', NULL, NULL, 'August', '6/24/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1191, 'SJB Services', '0000-08-00', 'VANDERHO', 0, '2004-08-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'SJB Services', 'Yes-definite', 'DLP', 'Range 2,000 lbs.', NULL, NULL, 'August', '8/23/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1192, 'SJB Services', '0000-08-00', 'VANDERHO2', 0, '2004-08-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'SJB Services', 'Yes', 'DLP', '', NULL, NULL, 'August', '8/23/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1193, 'Susquahanna Supply Co.', '0000-08-00', 'SUSQUSUP', 0, '2007-08-06', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Susquahanna Supply Co.', 'Yes', 'KLA', '', NULL, NULL, 'August', '8/6/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1194, 'Shelly Central AP Processing', '0000-08-00', 'SHELLY', 0, '2013-02-04', '0000-00-00', NULL, 'No', 'Perry 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'The Shelly Company', 'Yes', 'CSE', '', NULL, NULL, 'August', '2/4/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1195, 'Thelen Associates, Inc.', '0000-08-00', 'THELEN/CIN2', 0, '2007-09-12', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Thelen Associates, Inc.', 'Yes', 'KLA', '', NULL, NULL, 'August', '9/12/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1196, 'Thelen Associates, Inc.', '0000-08-00', 'THELEN/SPARTA', 0, '2002-09-23', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Thelen Associates, Inc.', 'Yes', 'KLA', '', NULL, NULL, 'August', '9/23/2002', 'December, 1998', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1197, 'Trumbull Corporation', '0000-08-00', 'TRUMBULLFORD', 0, '2012-04-11', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Trumbull/Bruce & Merrilees', 'Yes- 1 day', 'TML', '', NULL, NULL, 'August', '4/11/2012', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1198, 'Hi-Way Paving Company', '0000-08-00', 'HIWAYJOHNST', 0, '2007-08-20', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', '', 'Hi-Way Paving Company', 'Yes', '', '', NULL, NULL, 'August', '8/20/2007', 'Aug-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1199, 'Essroc Accounting Services', '0000-08-00', 'ESSROC/POLAND', 0, '2009-07-29', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', 'CREDIT CARD', 'Essroc Cement, Inc.', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'August', '7/29/2009', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1200, 'Mekis Construction Corporation', '0000-08-00', 'MEKIS2', 0, '2008-07-30', '0000-00-00', NULL, 'No', 'Pa 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Mekis Construction Corporation', 'Yes', 'TPT', '', NULL, NULL, 'August', '7/30/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1201, 'Ackenheil Engineers & Geologists', '0000-08-00', 'ACK&ASSOC', 0, '2009-06-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Ackenheil Engineers & Geologists', 'Yes - 1 day', 'DLP', 'Range: 150 psi', NULL, NULL, 'August', '6/17/2009', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1202, 'Franklin Redi Mix', '0000-08-00', 'FRANKLINREDI', 0, '2010-07-27', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Franklin Redi Mix', 'Yes', 'TJT', '', NULL, NULL, 'August', '7/27/2010', 'Sep-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1203, 'Century Engineering, Inc. ', '0000-08-00', 'CENTURY', 0, '2011-08-02', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Century Engineering, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'August', '8/2/2011', 'Aug-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1204, 'Anderson Company', '0000-08-00', 'ANDERSONCO', 0, '2007-07-16', NULL, NULL, 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Anderson Company', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'August', '7/16/2007', 'Sep-02', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1205, 'Mountain Enterprises', '0000-08-00', 'MOUNTAIN', 0, '2007-08-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Mountain Enterprises', 'Yes-definite', 'TPT', 'RESPONSE FOR CAL***', NULL, NULL, 'August', '8/2/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1206, 'Rockwell Scientific', '0000-08-00', 'ROCKWELLCA', 0, '2007-01-25', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', '', b'0', '', 'Teledyne Scientific Company ', '', 'III', '', NULL, NULL, 'August', '1/25/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1207, 'SMH Construction Co., Inc.', '0000-08-00', 'SMHCONSTR', 0, '2007-08-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'SMH Construction Co., Inc.', 'Yes', 'TPT', '', NULL, NULL, 'August', '8/8/2007', '1996', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1208, 'Terracon', '0000-08-00', 'NUTTCHOOS', 0, '2012-10-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Terracon', 'Yes-definite', 'DLP', 'Range: 0.4\"', NULL, NULL, 'August', '10/9/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1209, 'Peerless Block & Brick', '0000-08-00', 'PEERLESS', 0, '2011-08-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Peerless Block & Brick', 'Yes', 'TPT', '', NULL, NULL, 'August', '8/2/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1210, 'Brayman Construction', '0000-08-00', 'TURMAN', 0, '2011-08-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Brayman Construction', 'Yes - 1 day', 'TLR', '', NULL, NULL, 'August', '8/9/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1211, 'Vishay Dale Electronics', '0000-08-00', 'VISHAY', 0, '2008-10-14', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Vishay Dale Electronics', '', 'MTR', 'Range: 50 PSI to 500 PSI', NULL, NULL, 'August ', '10/14/2008', 'Dec-04', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1212, 'St. Kitts Masonry Products, Ltd.', '0000-08-00', 'STKITTS', 0, '2013-05-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'St. Kitts Masonry Products, Ltd.', '', 'TJT', '', NULL, NULL, 'August IS', '5/31/2013', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1213, 'St. Kitts Masonry Products, Ltd.', '0000-08-00', 'PUBLICSTKITTS', 0, '2013-05-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Public Works Department', 'Yes', 'TJT', '', NULL, NULL, 'August IS', '5/31/2013', 'Aug-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1214, 'CMT Laboratories', '0000-12-00', 'CMTSC', 0, '2012-12-21', '0000-00-00', '2013-12-09', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'CMT Laboratories', 'Yes-definate', 'DLP', 'Cap: 1K (E-4 & Man Specs)', NULL, NULL, 'December', '12/21/2012', '', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1215, 'Jackburn Manufacturing', '0000-12-00', 'JACKBURN', 0, '2012-10-24', NULL, '2013-12-09', 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', 'GET ON SITE', 'Jackburn Manufacturing', 'Yes 1-day', 'III', '', NULL, NULL, 'December', '10/24/2012', 'Jun-02', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1216, 'CMT Laboratories', '0000-12-00', 'CMTSC1', 0, '2012-12-18', '0000-00-00', '2013-12-09', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'CMT Laboratories', 'Yes-definate', 'DLP', 'Range: 1 inches ', NULL, NULL, 'December', '12/18/2012', '', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1217, 'Ron Crane Scale Sales-USA', '0000-12-00', 'BOBCAT', 0, '2007-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Bobcat Company', '', 'MTR', '', NULL, NULL, 'December', '1/15/2007', 'Dec-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1218, 'Ron Crane Scale Sales-USA', '0000-12-00', 'BLUENYELLOW', 0, '2007-01-03', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Under the Blue & Yellow Grand Chapiteau', 'No', 'MTR', '', NULL, NULL, 'December', '1/3/2007', 'Dec-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1219, 'Ron Crane Scale Sales-USA', '0000-12-00', 'BOEING', 0, '2007-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Boeing Company', '', 'MTR', '', NULL, NULL, 'December', '1/15/2007', 'Dec-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1220, 'Tomas Cuerda, Inc.', '0000-12-00', 'TOMAS', 0, '2005-12-13', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Tomas Cuerda, Inc.', '', 'III', 'Range: ', NULL, NULL, 'December', '12/13/2005', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1221, 'Karol-Warner Company', '0000-12-00', 'KAROLW', 0, '2007-08-27', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'Karol-Warner Company', 'Yes', 'MTR', 'Range: Low 10K / High 50K', NULL, NULL, 'December', '8/27/2007', 'Dec-06', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1222, 'American Electric Power', '0000-12-00', 'AMELEC/CHES', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'American Electric Power', '', 'KLA', '', NULL, NULL, 'December', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1223, 'ATC Associates, Inc.', '0000-12-00', 'ATCLEX', 0, '2002-11-15', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'ATC Associates', 'Yes-1 day', 'DWC', '', NULL, NULL, 'December', '11/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1224, 'Channel Products', '0000-12-00', 'CHANNEL/OH', 0, '2004-12-01', '0000-00-00', NULL, 'No', 'Ashtabula 6.75%', 6.75, 'Net 30', '', b'1', '', b'1', '', 'Channel Products', '', '', '', NULL, NULL, 'December', '12/1/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1225, 'College of New Jersey', '0000-12-00', 'COLLEGEONJ', 0, '2005-10-06', '0000-00-00', NULL, '', '', 0, 'Net 30', '', b'0', '', b'0', '', 'College of New Jersey', '', '', '', NULL, NULL, 'December', '10/6/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1226, 'Haydon Bridge Company', '0000-12-00', 'HAYDONBRIDGE', 0, '2002-08-16', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Haydon Bridge Company', 'Yes', '', '', NULL, NULL, 'December', '8/16/2002', 'Nov-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1227, 'Hoffman Carbon', '0000-12-00', 'HOFFMAN', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Hoffman Carbon', 'Yes', '', '', NULL, NULL, 'December', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1228, 'Ohio Department of Transportation', '0000-12-00', 'OHIODOT', 0, '2002-08-16', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MC/VISA', 'Ohio Department of Transportation', 'Yes', 'KLA', '', NULL, NULL, 'December', '8/16/2002', 'Jun-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1229, 'Ohio Department of Transportation', '0000-12-00', 'OHIODOT4', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Ohio Department of Transportation', '', '', '', NULL, NULL, 'December', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1230, 'Qore Property Sciences', '0000-12-00', 'QORE/CIN', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Qore Property Sciences', 'Yes', '', '', NULL, NULL, 'December', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1231, 'Saginaw Asphalt Paving Co.', '0000-12-00', 'SAGNWEARC', 0, '2004-01-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Saginaw Asphalt Paving Co.', 'Yes', 'DWC', '', NULL, NULL, 'December', '1/6/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1232, 'Qore Property Sciences', '0000-12-00', 'QORELEX2', 0, '2007-12-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Qore Property Sciences', 'Yes-definite', 'TPT', 'Range: 500 lbs', NULL, NULL, 'December', '12/10/2007', 'Jan-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1233, 'Consumer Energy ', '0000-12-00', 'CONSUMER', 0, '2010-11-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Consumer Energy ', 'Yes-definite', 'TJT', '', NULL, NULL, 'December', '11/18/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1234, 'Dick Corporation', '0000-12-00', 'DICK00116', 0, '2006-11-13', NULL, NULL, 'NO', 'PA 6%', 6, 'Net 30', '', b'0', '', b'0', '', 'Dick Corporation', 'Yes - 1 day', 'TPT', '', NULL, NULL, 'December', '11/13/2006', 'Apr-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1235, 'Valley Asphalt', '0000-12-00', 'VALLEYASP', 0, '2007-09-18', '0000-00-00', NULL, 'No', 'Butler 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Valley Asphalt', 'Yes', 'TPT', '', NULL, NULL, 'December', '9/18/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1236, 'Qore Property Sciences', '0000-12-00', 'QORE/LOUIS', 0, '2008-11-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Qore Property Sciences', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'December', '11/3/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1237, 'T C Redi Mix Concrete', '0000-12-00', 'TCREDI', 0, '2012-12-18', '0000-00-00', '2013-12-09', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'T C Redi Mix Concrete', 'Yes-1 day', 'DLP', '', NULL, NULL, 'December ', '12/18/2012', '', '12/9/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1238, 'Ron Crane Scale Sales-USA', '0000-12-00', 'CAROLINA', 0, '2007-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Carolina Scales', 'No', 'MTR', '', NULL, NULL, 'December ', '1/15/2007', 'Dec-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1239, 'Qore Property Sciences ', '0000-12-00', 'QOREMISS', 0, '2007-01-25', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Qore Property Sciences', 'No', '', '', NULL, NULL, 'December ', '1/25/2007', 'Dec-06', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1240, 'ECS - Florida, LLC ', '0000-12-00', 'ECSFLORIDA ', 0, '2012-01-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Barnes Bay Development', 'Yes', 'DLP', '', NULL, NULL, 'December IS', '1/23/2012', 'Nov-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1241, 'Tomas Cuerda, Inc.', '0000-12-00', 'GEOTECH/PR', 0, '2013-01-02', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geo Services ', '', 'III', '', NULL, NULL, 'December PR', '1/2/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1242, 'Tomas Cuerda, Inc.', '0000-12-00', 'TROPICAL', 0, '2012-12-21', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Tropical Concrete Products', '', 'III', '', NULL, NULL, 'December PR', '12/21/2012', 'Dec-02', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1243, 'Tomas Cuerda, Inc.', '0000-12-00', 'R&FASPHALT', 0, '2012-12-21', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'R & F Asphalt Unlimited', '', 'III', 'Cap: 600 KPA (2383.6 lbs) ', NULL, NULL, 'December PR', '12/21/2012', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1244, 'Tomas Cuerda, Inc.', '0000-12-00', 'PRETENSADOS', 0, '2012-12-21', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Pretensados de Puerto Rico, Inc.', '', 'III', 'Range: 4K / 35K', NULL, NULL, 'December PR', '12/21/2012', 'Jan-00', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1245, 'Tomas Cuerda, Inc.', '0000-12-00', 'CORPPR', 0, '2012-12-21', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'USACE-South Puerto Rico Resident Office ', '', 'III', '', NULL, NULL, 'December PR', '12/21/2012', 'May-09', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1246, 'Tomas Cuerda, Inc.', '0000-12-00', 'SUELOS', 0, '2003-01-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Cuerda', 'Suelos Inc.', '', 'KLA', '', NULL, NULL, 'December PR', '1/2/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1247, 'Tomas Cuerda, Inc.', '0000-12-00', 'PRCEMENTBAY', 0, '2004-12-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Puerto Rican Cement Co.', '', 'TML', '', NULL, NULL, 'December PR', '12/20/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1248, 'Tomas Cuerda, Inc.', '0000-12-00', 'PRCEMENTCO', 0, '2004-12-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Puerto Rican Cement Co.', '', 'DWC', '', NULL, NULL, 'December PR', '12/20/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1249, 'Tomas Cuerda, Inc.', NULL, 'DRAGADOS', 0, '2013-01-07', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Dragados USA', '', 'III', '', NULL, NULL, 'DecemberPR', '1/7/2013', 'Oct-08', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1250, 'Tomas Cuerda, Inc.', NULL, 'GEOPRACTICA', 0, '2013-01-02', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geopractica', '', 'III', '', NULL, NULL, 'DecemberPR', '1/2/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1251, 'Tomas Cuerda, Inc.', NULL, 'GMTS', 0, '2013-01-02', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'GMTS', '', 'III', 'Cap: 10K', NULL, NULL, 'DecemberPR', '1/2/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1252, 'Tomas Cuerda, Inc. ', NULL, 'MASTERPROCO', 0, '2013-01-02', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Master Products Corporation', '', 'III', '', NULL, NULL, 'DecemberPR', '1/2/2013', 'Nov-06', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1253, 'Tomas Cuerda, Inc.', NULL, 'ALUMAPR', 0, '2013-01-02', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Aluma Construction Corporation', 'Yes', 'III', '', NULL, NULL, 'DecemberPR', '1/2/2013', 'May-05', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1254, 'Tomas Cuerda, Inc.', NULL, 'GEOCONSULT2', 0, '2013-01-02', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geoconsult', '', 'III', 'Range: 100 PSI', NULL, NULL, 'DecemberPR', '1/2/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1255, 'Tomas Cuerda, Inc.', NULL, 'ADVANCEDSOIL', 0, '2013-01-02', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Advanced Soil Engineering', '', 'III', '', NULL, NULL, 'DecemberPR', '1/2/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1256, 'Tomas Cuerda, Inc.', NULL, 'ORNAMENTALP 2', 0, '2007-12-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Ornamental Poles', '', 'DLP', 'Range: 250K', NULL, NULL, 'DecemberPR', '12/21/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1257, 'Tomas Cuerda, Inc.', NULL, 'PRCEMENT', 0, '2009-12-24', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'COD Only', 'Cemex (Formerly Puerto Rican Cement Co)', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/24/2009', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1258, 'Tomas Cuerda, Inc.', NULL, 'HORMAYA', 0, '2009-12-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'COD Only', 'Cemex', '', 'TML', '', NULL, NULL, 'DecemberPR', '12/23/2009', 'Feb-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1259, 'Tomas Cuerda, Inc.', NULL, 'LUISCARILLO', 0, '2007-12-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Luis M. Carrillo', '', 'TML', '', NULL, NULL, 'DecemberPR', '12/21/2007', 'May-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1260, 'Tomas Cuerda, Inc.', NULL, 'EMPRESAS', 0, '2010-01-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Empresas Tarrassa, Inc.', '', 'TPT', '', NULL, NULL, 'DecemberPR', '1/5/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1261, 'Tomas Cuerda, Inc.', NULL, 'HORMIMAYAGU', 0, '2009-12-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'COD Only', 'Cemex', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/23/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1262, 'Tomas Cuerda, Inc.', NULL, 'CASTMASTER', 0, '2007-06-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Cast Master Precast, Inc.', '', 'TPT', '', NULL, NULL, 'DecemberPR', '6/15/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1263, 'Tomas Cuerda, Inc.', NULL, 'CMTCONC', 0, '2008-09-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'CMT Concrete & Material', '', 'DLP', '', NULL, NULL, 'DecemberPR', '9/18/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1264, 'Tomas Cuerda, Inc.', NULL, 'HORMIORAMA', 0, '2007-12-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Hormigonera Orama', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/21/2007', 'Jan-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1265, 'Tomas Cuerda, Inc.', NULL, 'HORMIGONERA', 0, '2007-12-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hormigonera Del Toa', '', 'TML', '', NULL, NULL, 'DecemberPR', '12/20/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1266, 'Tomas Cuerda, Inc.', NULL, 'CEMEX', 0, '2009-12-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', 'COD Only', 'Cemex (Guayama Concrete Plant) ', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/23/2009', 'Nov-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1267, 'Tomas Cuerda, Inc.', NULL, 'CEMEX3', 0, '2009-12-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', 'COD Only', 'Cemex (Humacao Concrete Plant )', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/23/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1268, 'Tomas Cuerda, Inc.', NULL, 'READYMIX', 0, '2009-12-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'COD Only', 'Cemex (Formerly Ready Mix Concrete Inc.)', '', 'TPT', 'Range: Cylinder Frame 300K/Beam 300K', NULL, NULL, 'DecemberPR', '12/23/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1269, 'Tomas Cuerda, Inc.', NULL, 'CABSOIL', 0, '2009-12-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'COD Only ', 'Caribbean Soil & Drill', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/23/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1270, 'Tomas Cuerda, Inc.', NULL, 'MVP', 0, '2011-12-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'MVP Laboratory', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/21/2011', 'Jan-03', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1271, 'Tomas Cuerda, Inc.', NULL, 'DEGUSSA', 0, '2011-12-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'BASF Construction Chemicals, LLC', '', 'DLP', '', NULL, NULL, 'DecemberPR', '12/21/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1272, 'Tomas Cuerda, Inc.', NULL, 'MASTERCON', 0, '2011-12-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Master Concrete', '', 'TJT', '', NULL, NULL, 'DecemberPR', '12/21/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1273, 'Tomas Cuerda, Inc.', NULL, 'ALCO4', 0, '2012-06-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Alco Corporation', '', 'DLP', '', NULL, NULL, 'DecemberPR', '6/27/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1274, 'Tomas Cuerda, Inc.', NULL, 'ALCO2', 0, '2012-06-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Alco Corporation', '', 'DLP', '', NULL, NULL, 'DecemberPR', '6/27/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1275, 'Tomas Cuerda, Inc.', NULL, 'STARREADY', 0, '2011-12-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Teknico Engineering ', '', 'TJT', '', NULL, NULL, 'DecemberPR', '12/21/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1276, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITZIGIN 1', 0, '2013-02-20', NULL, '2014-02-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', 'Range: 2K', NULL, NULL, 'February', '2/20/2013', 'Apr-04', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1277, 'Ernst Concrete', '0000-02-00', 'ERNST', 0, '2013-02-20', NULL, '2014-02-03', 'No', 'Greene 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Ernst Enterprises, Inc.', 'Yes-1day', 'KAS', '', NULL, NULL, 'February', '2/20/2013', 'Mar-00', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1278, 'L.E. Gregg Associates/Gregg Laboratories', '0000-02-00', 'GREGG', 0, '2013-02-20', '0000-00-00', '2014-02-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'L.E. Gregg Associates/Gregg Laboratories', '24 hrs.', 'CJS', 'Range: 20 lbs to 2K', NULL, NULL, 'February', '2/20/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1279, 'High Concrete Group', '0000-02-00', 'CONCRETESPRI', 0, '2013-02-20', '0000-00-00', '2014-02-03', 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE ', 'High Concrete Group', 'Yes- 1 Day', 'KAS', 'Range: 35K (8,450 psi)', NULL, NULL, 'February', '2/20/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1280, 'Central Ready Mix ', '0000-02-00', 'MORAINEMAT', 0, '2013-02-20', NULL, '2014-02-03', 'No', 'Butler 6.5%', 6.5, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Central Ready Mix ', 'Yes', 'KAS', '', NULL, NULL, 'February', '2/20/2013', 'Oct-09', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1281, 'Atlas Roofing', '0000-02-00', 'ATLASROOF2', 0, '2013-01-15', '0000-00-00', '2014-02-03', 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Atlas Roofing', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/15/2013', '', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1282, 'Hanson', '0000-02-00', 'OLDHAM', 0, '2013-02-05', NULL, '2014-02-03', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Hanson', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'February', '2/5/2013', 'Feb-97', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1283, 'Camden Ready Mix Company', '0000-02-00', 'CAMDEN', 0, '2012-02-23', NULL, '2014-02-03', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Camden Ready Mix Company', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/23/2012', 'Jan-06', '2/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1284, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITZIG', 0, '2013-03-05', NULL, '2014-02-04', 'No', 'Butler 6.5 %', 6.5, 'Net 30', '', b'1', 'Active', b'1', '', 'Alt & Witzig Engineering, Inc.', 'Yes-1 day', 'KAS', 'Range: 6K', NULL, NULL, 'February', '3/5/2013', 'Apr-99', '2/4/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1285, 'Causie Contracting', '0000-02-00', 'CAUSIE', 0, '2013-03-04', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Causie Contracting', 'Yes- 1-2 days', 'KAS', 'Range: 15K', NULL, NULL, 'February', '3/4/2013', 'May-00', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1286, 'Superior Materials, LLC', '0000-02-00', 'KURTZ', 0, '2013-03-05', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Superior Materials, LLC', 'Yes-1 day', 'DLP', '', NULL, NULL, 'February', '3/5/2013', 'Dec-99', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1287, 'Mannik & Smith', '0000-06-00', 'MAN&SMITH', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'Mannik & Smith', 'Yes-1 day', 'III', '', NULL, NULL, 'June', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1288, 'Mannik & Smith', '0000-02-00', 'MANN & SMITH', 0, '2013-06-26', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Mannik & Smith', 'Yes - 1 day', 'KAS', 'Range: 10K', NULL, NULL, 'February', '6/26/2013', 'Sep-01', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1289, 'Mannik & Smith', '0000-02-00', 'MANN & SMITH2', 0, '2013-05-29', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Mannik & Smith', 'Yes - 1 day', 'III', 'Range: 150 psi', NULL, NULL, 'February', '5/29/2013', 'Sep-01', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1290, 'McDowell & Associates', '0000-02-00', 'MCDOWELLMID', 0, '2013-03-05', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'McDowell & Associates', 'Yes', 'DLP', '', NULL, NULL, 'February', '3/5/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1291, 'Michigan Department of Transportation', '0000-02-00', 'MDOT/MASK', 0, '2013-03-04', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes', 'KAS', 'Range: 15K', NULL, NULL, 'February', '3/4/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1292, 'Oakland County Facilities Engineering', '0000-02-00', 'OAKLANDCO', 0, '2013-03-05', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Oakland County Facilities Engineering', 'Yes-definite', 'DLP', '', NULL, NULL, 'February', '3/5/2013', 'Jan-98', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1293, 'Plumer Country Stores', '0000-03-00', 'PLUMER STORE', 0, '2013-04-01', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Plumer Country Store', 'Yes', 'III', '', NULL, NULL, 'March', '4/1/2013', 'Mar-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1294, 'TTL Associates, Inc.', '0000-02-00', 'TOLTEST1', 0, '2013-09-20', NULL, '2014-02-10', 'No', 'Lucas 7%', 7, 'COD', 'Sep-13', b'1', 'Active', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes', 'DLP', 'Range: 2 inches (D-6027)', NULL, NULL, 'February', '9/20/2013', 'Dec-00', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1295, 'Wade Trim', '0000-02-00', 'WADETRIMBC', 0, '2013-03-05', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Wade Trim', 'Yes-1 day', 'DLP', '', NULL, NULL, 'February', '3/5/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1296, 'All Ohio Ready Mix ', '0000-02-00', 'ALLOHIO', 0, '2013-03-04', NULL, '2014-02-10', 'Yes', 'Direct Pay ', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'All Ohio Ready Mix ', 'Yes', 'III', '', NULL, NULL, 'February', '3/4/2013', 'Mar-08', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1297, 'Spoerr Precast Concrete, Inc.', '0000-02-00', 'SPOERR', 0, '2012-12-12', '0000-00-00', '2014-02-10', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Spoerr Precast Concrete, Inc.', 'Yes', 'III', '', NULL, NULL, 'February', '12/12/2012', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1298, 'David Hill Concrete', '0000-02-00', 'DAVIDHILL', 0, '2013-03-04', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'David Hill Concrete', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/4/2013', 'May-03', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1299, 'Hoy\'s Construction Company, Inc.', '0000-02-00', 'HOYSCO', 0, '2013-02-27', '0000-00-00', '2014-02-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Hoy\'s Construction Company, Inc.', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'February', '2/27/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1300, 'J. F. Allen Company', '0000-02-00', 'ALLEN/JF1', 0, '2013-02-27', '0000-00-00', '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'J. F. Allen Company/Alcon ', 'Yes-24 hr.', 'CJS', '', NULL, NULL, 'February', '2/27/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1301, 'J.F. Allen Company', '0000-02-00', 'ALLEN/JFC', 0, '2013-03-04', '0000-00-00', '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'J. F. Allen Company', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/4/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1302, 'J.F. Allen Company', '0000-02-00', 'JFALLEN1204', 0, '2013-03-01', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'J.F. Allen Company', 'Yes', 'KAS', '', NULL, NULL, 'February', '3/1/2013', 'May-04', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1303, 'Logan Concrete', '0000-02-00', 'LOGANCRE', 0, '2013-02-27', '0000-00-00', '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Logan Concrete', 'Yes', 'KAS', 'Range: 150 lbs ', NULL, NULL, 'February', '2/27/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1304, 'Rhodes Brick & Block Company', '0000-02-00', 'RHODES', 0, '2013-03-01', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Rhodes Brick & Block Company', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'February', '3/1/2013', 'Jan-99', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1305, 'Sauereisen Cements', '0000-02-00', 'SAUEREIS', 0, '2013-02-27', '0000-00-00', '2014-02-17', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Sauereisen Cements', 'Yes-definite', 'DLP', 'Range: 0.25 Inch ', NULL, NULL, 'February', '2/27/2013', '', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1306, 'Tarrs Ready Mix', '0000-02-00', 'TARRS/WASH', 0, '2013-02-27', NULL, '2014-02-17', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Tarrs Ready Mix', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/27/2013', 'Jan-02', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1307, 'West Virginia Division of Highways', '0000-02-00', 'WVDOTHART', 0, '2013-03-04', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'West Virginia Division of Highways', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/4/2013', 'Feb-08', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1308, 'Blue Stone Resident Office ', '0000-02-00', 'BLUESTONE', 0, '2013-03-04', NULL, '2014-02-17', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Blue Stone Resident Office ', 'Yes', 'CJS', '', NULL, NULL, 'February', '3/4/2013', 'Mar-10', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1309, 'Ron Crane Scale Sales-USA', '0000-02-00', 'PEMCO/POWELL', 0, '2006-02-14', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Pemco Warehouse (MD)', '', 'TPT', '', NULL, NULL, 'February', '2/14/2006', 'Feb-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1310, 'Ron Crane Scale Sales - USA', '0000-02-00', 'KEYSTONE ', 0, '2008-03-03', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Keystone Crane & Hoist Company ', 'No', 'III', '', NULL, NULL, 'February', '3/3/2008', 'Feb-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1311, 'United Refractories', '0000-02-00', 'UNITED-AL', 0, '2007-03-21', NULL, NULL, '', '', 0, 'Net 30', '', b'0', '', b'0', '', 'United Refractories', '', 'III', '', NULL, NULL, 'February', '3/21/2007', 'Feb-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1312, 'MACTEC Engineering', '0000-02-00', 'MACTECNC', 0, '2008-03-13', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', '', 'MACTEC Engineering', 'Yes', 'III', '', NULL, NULL, 'February', '3/13/2008', 'Feb-08', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1313, 'GSE', '0000-02-00', 'GSE1', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'VISA', '', b'1', 'Inactive', b'1', '', 'GSE', '', 'DWC', '', NULL, NULL, 'February', '10/15/2002', 'Jan-97', 'In-House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1314, 'Atlas Roofing', '0000-02-00', 'ATLASROOF', 0, '2013-01-01', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Atlas Roofing', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/1/2013', 'Aug-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1315, 'Kelcris Corporation', '0000-02-00', 'KELCRIS', 0, '2012-12-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Kelcris Corporation', 'Yes', 'DLP', 'Range: 78 to 82', NULL, NULL, 'February', '12/10/2012', 'Mar-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1316, 'Ackenheil Engineers, Inc.', '0000-02-00', 'ACKPITTS', 0, '2005-02-14', NULL, NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'0', 'Inactive', b'0', '', 'Ackenheil Engineers, Inc.', 'Yes', 'KLA', '', NULL, NULL, 'February', '2/14/2005', 'Sep-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1317, 'Advanced Material Technologies', '0000-02-00', 'ADVANCEDMAT', 0, '2004-02-10', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Advanced Material Technologies', '', 'DWC', '', NULL, NULL, 'February', '2/10/2004', 'Jan-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1318, 'Alma Concrete Products', '0000-02-00', 'ALMACONCRETE', 0, '2005-02-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Alma Concrete Products', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/14/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1319, 'CBC Engineers & Associates', '0000-02-00', 'CBC/65110', 0, '2007-05-21', '0000-00-00', NULL, 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive', b'1', '', 'CBC Engineers & Associates', 'Yes-MUST', 'TPT', '', NULL, NULL, 'February', '5/21/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1320, 'City of Lima', '0000-02-00', 'CTYLIMA', 0, '2005-02-09', NULL, NULL, 'No', 'Allen 6.75%', 6.75, 'Net 30', '', b'1', '', b'1', '', 'City of Lima', 'Yes', '', '', NULL, NULL, 'February', '2/9/2005', 'Apr-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1321, 'City of Pittsburgh', '0000-02-00', 'CITYOFPITTS1', 0, '2005-12-07', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Active', b'0', '', 'City of Pittsburgh', '', 'DLP', '', NULL, NULL, 'February', '12/7/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1322, 'CME Associates', '0000-02-00', 'CMEROCH', 0, '2007-03-13', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'CME Associates', 'Yes', 'DLP', 'Cap: 6,000 lbs.', NULL, NULL, 'February', '3/13/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1323, 'CME Associates', '0000-02-00', 'CMETONA', 0, '2004-02-10', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'CME Associates', 'Yes', 'III', 'Range 2500 lb.', NULL, NULL, 'February', '2/10/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1324, 'Concurrent Technologies', '0000-02-00', 'CONCURRENT5A', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', 'III', '', NULL, NULL, 'February', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1325, 'Concurrent Technologies', '0000-02-00', 'CONCURRENT2A', 0, '2006-01-19', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Concurrent Technologies', 'Yes', 'DP', 'Range 2.4/12/60/120K', NULL, NULL, 'February', '1/19/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1326, 'Contractors Supply', '0000-02-00', 'CONTRACTORS', 0, '2008-02-07', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Contractors Supply', 'Yes', 'KLA', '', NULL, NULL, 'February', '2/7/2008', 'Nov-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1327, 'Dalrymple Gravel & Construction', '0000-02-00', 'DALRYMA', 0, '2005-02-10', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Dalrymple Gravel & Construction', 'Yes -1 day', 'TPT', '', NULL, NULL, 'February', '2/10/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1328, 'Dexter Corporation', '0000-02-00', 'DEXTER', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Dexter Corporation', 'Yes-48 hrs.', 'KLA', '', NULL, NULL, 'February', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1329, 'General Motors GAPC', '0000-02-00', 'GMCORP', 0, '2003-04-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'GM Corp--Global Alternative Propulsion', '', 'III', 'Range: .5 inches', NULL, NULL, 'February', '4/17/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1330, 'Geosci', '0000-02-00', 'GEOSCI', 0, '2004-05-17', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', '', b'1', '', 'Geosci', 'Yes-1 day', 'DLP', '', NULL, NULL, 'February', '5/17/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1331, 'Geo-Technology Associates, Inc.', '0000-02-00', 'GEOTECHNOL', 0, '2005-02-02', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Geo-Technology Associates, Inc.', 'Yes', 'TML', '', NULL, NULL, 'February', '2/2/2005', 'Jan-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1332, 'Goyle Engineers', '0000-02-00', 'GOYLE', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Washington 7.25%', 7.25, '', '', b'1', 'Inactive', b'1', '', 'Goyle Engineers', '', '', '', NULL, NULL, 'February', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1333, 'Grandview Construction', '0000-02-00', 'GRANDVIEW', 0, '2005-02-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Grandview Construction', 'Yes - definite', 'TPT', '', NULL, NULL, 'February', '2/24/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1334, 'HRI, Inc.', '0000-02-00', 'HRI/BLOOM', 0, '2005-02-02', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'HRI, Inc.', 'Yes', 'DWC', '', NULL, NULL, 'February', '2/2/2005', 'Jul-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1335, 'Irving Materials, Inc.', '0000-02-00', 'IRVINGMAT', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Irving Materials, Inc.', '', '', '', NULL, NULL, 'February', '10/15/2002', 'Mar-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1336, 'John W. Thrower, Inc.', '0000-02-00', 'THROWER', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'John W. Thrower, Inc.', '', '', '', NULL, NULL, 'February', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1337, 'Knight Settlement', '0000-02-00', 'KNIGHT', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, '', '', b'0', 'Inactive', b'0', '', 'Knight Settlement', '', '', '', NULL, NULL, 'February', '10/15/2002', 'Mar-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1338, 'L & W Engineering Co.', '0000-02-00', 'LWENGINEERING', 0, '2004-02-06', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'1', '', 'L & W Engineering Co.', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/6/2004', 'Feb-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1339, 'Latrobe Construction', '0000-02-00', 'LATROBE', 0, '2002-10-15', '0000-00-00', NULL, 'NO', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Latrobe Construction', 'Yes', 'CSE', '', NULL, NULL, 'February', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1340, 'MACTEC Engineering & Consulting, Inc.', '0000-02-00', 'MACMAN', 0, '2007-01-26', '0000-00-00', NULL, 'NO', 'Adams 7.25%', 7.25, 'COD', '', b'1', 'Active ', b'1', '', 'Dayton Power & Light Co. ', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/26/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1341, 'New York Department of Transportation', '0000-02-00', 'NYDOT/SYR', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'New York Department of Transportation', 'Yes', 'KLA', '', NULL, NULL, 'February', '', 'Dec-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1342, 'Qore Property Sciences', '0000-02-00', 'QORE/CARROL', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Qore Property Sciences', '', 'KLA', '', NULL, NULL, 'February', '10/15/2002', 'Feb-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1343, 'Qore Property Sciences', '0000-02-00', 'QORE/CRIT', 0, '2002-10-15', NULL, NULL, 'No', 'Hamilton 6.50%', 6.5, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Qore Property Sciences', 'Yes', 'KLA', '', NULL, NULL, 'February', '10/15/2002', 'Jun-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1344, 'Vitale Robinson Concrete', '0000-05-00', 'ROBINSON', 0, '2013-08-12', NULL, '2014-05-26', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Vitale Robinson Concrete', 'Yes', 'KLA', '', NULL, NULL, 'May', '8/12/2013', 'Feb-98', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1345, 'Rutgers University', '0000-02-00', 'RUTGERS', 0, '2013-01-09', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', '', b'0', '', 'Rutgers University', 'Yes', '', 'Range: 120K', NULL, NULL, 'February', '1/9/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1346, 'SJB Service, Inc.', '0000-02-00', 'SJBSERV', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'SJB Service, Inc.', 'Yes', 'KLA', '', NULL, NULL, 'February', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1347, 'Spancrete Great Lakes', '0000-02-00', 'SPANCRETE', 0, '2005-02-14', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Spancrete Great Lakes (Kerkstra Precast)', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/14/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1348, 'T-G-M Constructors', '0000-02-00', 'TGM', 0, '2004-01-06', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'T-G-M Constructors', '', '', '', NULL, NULL, 'February', '1/6/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1349, 'The Finly Corporation', '0000-02-00', 'FINLY', 0, '2005-02-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'The Finly Corporation', 'Yes', '', '', NULL, NULL, 'February', '2/15/2005', 'Jul-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1350, 'TriState Rigging & Supply', '0000-02-00', 'TRISTATE', 0, '2002-08-16', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Inactive', b'0', '', 'TriState Rigging & Supply', '', '', '', NULL, NULL, 'February', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1351, 'UPCO Company', '0000-02-00', 'UPCO', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'UPCO Company', 'Yes', 'CSE', '', NULL, NULL, 'February', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1352, 'US Heat Treaters', '0000-02-00', 'USHEAT', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'US Heat Treaters', 'No', 'DWC', '', NULL, NULL, 'February', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1353, 'Virginia Depart. of Transportation', '0000-02-00', 'VADOT/RC', 0, '2004-04-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Virginia Department of Transportation', '', 'WWS', '', NULL, NULL, 'February', '4/28/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1354, 'Watson Industries', '0000-02-00', 'WATSON', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', 'Verbal: Jindu', 'Watson Industries', 'Yes', 'CSE', '', NULL, NULL, 'February', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1355, 'Fluortek, Inc.', '0000-02-00', 'FLUORTEK', 0, '2008-01-31', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Fluortek, Inc.', 'Yes- 1 day', 'DLP', 'Range: ', NULL, NULL, 'February', '1/31/2008', 'Oct-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1356, 'Rontondo Weirich', '0000-02-00', 'ROTONDO', 0, '2008-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Rontondo Weirich', 'Yes', 'TPT', '', NULL, NULL, 'February', '1/15/2008', 'Jun-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1357, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWIT S BEND', 0, '2008-01-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/31/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1358, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITAIRPORT', 0, '2008-02-07', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '2/7/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1359, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTFTWAYNE', 0, '2008-01-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes - 1day', 'TPT', '', NULL, NULL, 'February', '1/31/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1360, 'Concurrent Technologies', '0000-02-00', 'CONCURRENT1AA', 0, '2007-01-31', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Concurrent Technologies', '', 'DLP', '', NULL, NULL, 'February', '1/31/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1361, 'Hull & Associates, Inc.', '0000-02-00', 'HULL TOLEDO', 0, '2013-04-16', '0000-00-00', NULL, 'No', 'Lucas 7%', 7, 'Net 30', '', b'1', '', b'1', '', 'Hull & Associates, Inc.', 'Yes', '', '', NULL, NULL, 'February', '4/16/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1362, 'Hull & Associates, Inc.', '0000-02-00', 'Hull&ASSOCDUB', 0, '2008-02-05', '0000-00-00', NULL, 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', '', 'DLP', 'Range: 600 Gram', NULL, NULL, 'February', '2/5/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1363, 'Hubbel, Roth & Clark, Inc.', '0000-02-00', 'HRCSL', 0, '2007-09-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hubbel, Roth & Clark, Inc.', 'Yes', 'TPT', '', NULL, NULL, 'February', '9/28/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1364, 'Orders Construction', '0000-02-00', 'ORDERS', 0, '2008-02-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Orders Construction', 'Yes', 'TPT', '', NULL, NULL, 'February', '2/5/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1365, 'U.S Army Corps of Engineers', '0000-02-00', 'CORP/HINTON', 0, '2007-12-20', '0000-00-00', NULL, 'OOS', '', 0, 'VISA', '', b'0', 'Inactive', b'0', '', 'U.S. Army Corps of Engineers', 'Yes-1 day', 'TPT', '', NULL, NULL, 'February', '12/20/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1366, 'RTI Laboratories, Inc. ', '0000-02-00', 'RTI', 0, '2011-01-25', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'RTI Laboratories, Inc. ', 'Yes', 'DLP', 'Range: 0.5 in/in (1\" GL)', NULL, NULL, 'February', '1/25/2011', 'Oct-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1367, 'Allied Concrete Company', '0000-02-00', 'ALLIEDCONCR', 0, '2009-08-04', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Allied Concrete Company', 'Yes', 'DLP', '', NULL, NULL, 'February', '8/4/2009', 'Jan-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1368, 'L. Robert Kimball', '0000-02-00', 'KIMBALL2', 0, '2009-07-08', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE PO', 'L. Robert Kimball', 'Yes-24 hrs', 'III', '', NULL, NULL, 'February', '7/8/2009', 'Apr-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1369, 'Consumers Concrete Corporation', '0000-02-00', 'ConsumerLansing', 0, '2007-10-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Consumers Concrete Corporation', 'No', '', '', NULL, NULL, 'February', '10/8/2007', 'Feb. 2007', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1370, 'L. Robert Kimball', '0000-02-00', 'KIMBALL3', 0, '2008-01-14', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE PO', 'L. Robert Kimball ', 'Yes-24 Hour', 'MTR', '', NULL, NULL, 'February', '1/14/2008', 'Jan-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1371, 'Cincinnati State Technology College', '0000-02-00', 'CINSTATETECH', 0, '2008-01-22', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cincinnati State Technology College', 'Yes-1 day', 'KLA', '', NULL, NULL, 'February', '1/22/2008', 'Mar-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1372, 'Hamilton Security Products', '0000-02-00', 'HAMILTON', 0, '2011-01-17', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hamilton Security Products', 'Yes', 'TJT', '', NULL, NULL, 'February', '1/17/2011', 'Feb-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1373, 'Hinkle Contracting Corporation', '0000-02-00', 'HINKLEALEX', 0, '2013-07-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hinkle Contracting Corporation', 'Yes', 'TPT', '', NULL, NULL, 'February', '7/26/2013', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1374, 'Paul C. Rizzo Associates, Inc.', '0000-02-00', 'PAUL C RIZZO', 0, '2008-01-24', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '5/8/2000', b'1', 'Inactive', b'1', '', 'Paul C. Rizzo Associates, Inc.', 'Yes-1 day', 'DLP', '', NULL, NULL, 'February', '1/24/2008', 'Jun-97', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1375, 'Terracon', '0000-02-00', 'HCNUTT/WISE', 0, '2012-10-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Terracon', 'Yes', 'DLP', 'Range: 15 lbs to 150 lbs ', NULL, NULL, 'February', '10/9/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1376, 'U.S. Army Corps of Engineers', '0000-02-00', 'CORPRED', 0, '2008-12-23', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'CREDIT CARD', 'U.S. Army Corps of Engineers', 'Yes-definite', 'TJT', '', NULL, NULL, 'February', '12/23/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1377, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITZIGINNS', 0, '2009-01-26', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes', 'TPT', 'Range: 90 psi', NULL, NULL, 'February', '1/26/2009', 'Apr-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1378, 'Haworth, Inc.', '0000-02-00', 'HAWORTH', 0, '2012-02-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Haworth, Inc.', 'Yes', 'DLP', 'Range: 5K ', NULL, NULL, 'February', '2/8/2012', 'Apr-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1379, 'Western Michigan University', '0000-02-00', 'WESTMIUNIV', 0, '2012-02-08', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'CREDIT CARD', 'Western Michigan University', 'Yes', 'MTR', 'Range: 0.1 Inch to 1 Inch ', NULL, NULL, 'February', '2/8/2012', 'Feb-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1380, 'Bonsal America', '0000-02-00', 'A&T', 0, '2008-01-22', '0000-00-00', NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Bonsal America ', 'Yes-1 day', 'TPT', '', NULL, NULL, 'February', '1/22/2008', '', 'No Solicte', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1381, 'LaFarge North America ', '0000-02-00', 'LAFARGEPAULD', 0, '2013-03-13', NULL, '2014-02-17', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'LaFarge North America ', 'Yes', 'III', '', NULL, NULL, 'February ', '3/13/2013', 'Jan-08', '2/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1382, 'Trumbull Corporation', '0000-02-00', 'TRUMB92010', 0, '2007-04-17', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Trumbull Corporation', 'Yes-definite', 'TML', '', NULL, NULL, 'February ', '4/17/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1383, 'Day Timers, Inc. ', '0000-02-00', 'DAYTIMERSINC', 0, '2010-01-21', NULL, NULL, '', '', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Day Timers, Inc. ', 'Yes', 'III', '', NULL, NULL, 'February ', '1/21/2010', 'Jan-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1384, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTGREENIN', 0, '2009-01-23', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Alt & Witzig Engineering, Inc. ', '', 'DLP', '', NULL, NULL, 'February ', '1/23/2009', 'Jan-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1385, 'A.J. Weller Corporation', NULL, 'AJWELLER', 0, '2010-03-10', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', '', 'A.J. Weller Corporation', 'Yes', 'III', '', NULL, NULL, 'Februaury', '3/10/2010', 'Jan-10', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1386, 'Ron Crane Scale Sales-USA', NULL, 'CRANE 1', 0, '2007-07-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', '', 'III', 'Cap: 3 Tons', NULL, NULL, 'In House', '7/31/2007', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1387, 'Ron Crane Scale Sales-USA', NULL, 'CRANE 2', 0, '2007-07-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Ron Crane Scale Sales-USA', '', 'III', 'Range: 10 Ton', NULL, NULL, 'In House', '7/31/2007', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1388, 'CBS (Castle Builders)', NULL, 'CASTLEHERM', 0, '2013-01-16', NULL, '2014-01-06', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'CBS (Castle Builders)', 'Yes', 'KAS', '', NULL, NULL, 'Janaury', '1/16/2013', 'Jan-08', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1389, 'Dalrymple Gravel & Construction', NULL, 'DALRYCP', 0, '2013-01-31', NULL, '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Dalrymple Gravel & Construction', 'Yes- 1 day', 'DP/KS', 'Range: 0.04 Inches to 0.4 Inches', NULL, NULL, 'Janaury', '1/31/2013', 'Feb-03', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1390, 'Ohio Department of Transportation', NULL, 'OHIODOT3', 0, '2011-12-20', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Ohio Department of Transportation', 'Yes', 'TJT', 'Range: 1inch w/E-405 Digital', NULL, NULL, 'Janaury', '12/20/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1391, 'CBS (Castle Builders)', '0000-01-00', 'CASTLE/CBS', 0, '2012-01-19', '0000-00-00', '2013-01-07', 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'CBS (Castle Builders)', 'Yes', 'LMS', '', NULL, NULL, 'January', '1/19/2012', '', '1/7/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1392, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/PSP1', 0, '2013-08-16', '0000-00-00', '2014-01-13', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes - 1 day', 'KAS', 'Range: 50K', NULL, NULL, 'January', '8/16/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1393, 'Earth, Inc.', '0000-01-00', 'EARTHP1', 0, '2013-01-22', '0000-00-00', '2014-01-06', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Earth, Inc.', 'Yes- 1 day', 'III', 'Range: 22TSF (1,500 lbs)', NULL, NULL, 'January', '1/22/2013', '', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1394, 'Ligonier Stone & Lime Concrete Company ', '0000-01-00', 'LIGONIER', 0, '2013-01-21', NULL, '2014-01-06', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Ligonier Stone & Lime Concrete Company ', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/21/2013', 'Jan-08', '1/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1395, 'Columbus State Community College', '0000-01-00', 'COLUMBUSCC', 0, '2013-03-05', '0000-00-00', '2014-01-13', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Columbus State Community College', 'Yes-definite', 'DP/KS', 'Range: 8 Inch to 0.08 Inch (OOS) ', NULL, NULL, 'January', '3/5/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1396, 'Buckeye Ready Mix', '0000-01-00', 'BUCKEYE', 0, '2013-01-24', '0000-00-00', '2014-01-13', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Buckeye Ready Mix', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/24/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1397, 'E.C. Babbert, Inc.', '0000-01-00', 'BABBERT/LAN', 0, '2013-01-24', '0000-00-00', '2014-01-13', 'No', 'Fairfield 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'E. C. Babbert, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/24/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1398, 'E.C. Babbert, Inc.', '0000-01-00', 'BABBERTBC', 0, '2013-01-24', '0000-00-00', '2014-01-13', 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'E. C. Babbert, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'January', '1/24/2013', '', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1399, 'Mack Industries', '0000-01-00', 'MACKAKRON', 0, '2013-01-24', NULL, '2014-01-13', 'Yes', 'Direct Pay', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Mack Concrete', 'YES', 'KAS', '', NULL, NULL, 'January', '1/24/2013', 'Feb-03', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1400, 'CME Management, LLC', '0000-01-00', 'EMEMANAGE', 0, '2013-01-31', NULL, '2014-01-13', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'CME Management, LLC', 'Yes', 'III', '', NULL, NULL, 'January', '1/31/2013', 'Jan-08', '1/13/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1401, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/PSP5', 0, '2013-02-06', '0000-00-00', '2014-01-14', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes', 'CJS', 'Range: 3K to 250K ', NULL, NULL, 'January', '2/6/2013', '', '1/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1402, 'Armstrong Mold Corporation', '0000-01-00', 'ARMSTRONG', 0, '2013-01-31', '0000-00-00', '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Armstrong Mold Corporation', 'Yes-1 day', 'DLP', '', NULL, NULL, 'January', '1/31/2013', '', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1403, 'Dunkirk Specialty Steel, LLC', '0000-01-00', 'DUNKIRK', 0, '2013-02-01', NULL, '2014-01-20', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Dunkirk Specialty Steel, LLC', 'Yes', 'III', 'Range: 500 lbs/1K/2.5K/5K', NULL, NULL, 'January', '2/1/2013', 'Feb-04', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1404, 'Quality Inspection Services, Inc. ', '0000-01-00', 'QUALITYDEPEW', 0, '2013-02-01', NULL, '2014-01-20', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'CJS', 'Range: 78 to 82', NULL, NULL, 'January', '2/1/2013', 'Dec-07', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1405, 'Quality Inspection Services, Inc. ', '0000-01-00', 'QUALITYSYRA', 0, '2013-02-01', NULL, '2014-01-20', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'DLP', 'Range: 1 lbs to 85 lbs ', NULL, NULL, 'January', '2/1/2013', 'Jan-08', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1406, 'Quality Inspection Services, Inc. ', '0000-01-00', 'QUALITYROCH', 0, '2013-02-01', NULL, '2014-01-20', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'DLP', 'Range: 50 Gram to 6,100 Gram ', NULL, NULL, 'January', '2/1/2013', 'Jan-08', '1/20/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1407, 'McGaw Technology, Inc.', '0000-01-00', 'ERICO/MCGAW', 0, '2003-02-12', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Erico Products ', 'Yes', 'DLP', '', NULL, NULL, 'January', '2/12/2003', 'Jan-02', 'Ask Bill', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1408, 'Ron Crane Scale Sales-USA', '0000-01-00', 'HELM', 0, '2007-08-27', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Helmerich & Payne Guinea Drill Co.', '', 'III', 'Range: 5,000 Kg to 50,000 Kg ', NULL, NULL, 'January', '8/27/2007', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1409, 'Ron Crane Scale Sales-USA', '0000-01-00', 'TRANSCAT', 0, '2007-08-08', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Transcat', 'No', 'TPT', '', NULL, NULL, 'January', '8/8/2007', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1410, 'Ron Crane Scale Sales-USA', '0000-01-00', 'INTERMOUNT', 0, '2006-01-12', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Intermountain Rigging & Heavy Haul', '', 'DLP', '', NULL, NULL, 'January', '1/12/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1411, 'Ron Crane Scale Sales - USA', '0000-01-00', 'CABLEMOORE', 0, '2008-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Cable Moore, Inc. ', 'No', 'DLP', '', NULL, NULL, 'January', '1/15/2008', 'Jan-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1412, 'Bud Scales', '0000-01-00', 'BUDSCALES', 0, '2005-10-18', '0000-00-00', NULL, 'No', 'PA 6.00 %', 6, 'Net 30', '', b'0', '', b'0', '', 'Bud Scales', 'Yes', '', '', NULL, NULL, 'January', '10/18/2005', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1413, 'Harsco Track Technologies', '0000-01-00', 'HARSCO', 0, '2008-02-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Harsco Track Technologies', '', 'III', '', NULL, NULL, 'January', '2/5/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1414, 'Ohio Valley Rail Car', '0000-01-00', 'OHIOVAL/16046', 0, '2004-02-10', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Ohio Valley Rail Car', '', 'DWC', '', NULL, NULL, 'January', '2/10/2004', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1415, 'Stark State College', '0000-01-00', 'STARKSTATE', 0, '2008-10-14', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Stark State College', '', 'DLP', '', NULL, NULL, 'January', '10/14/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1416, 'Virginia Dept. of Transportation', '0000-01-00', 'VDOT/SAND5', 0, '2005-02-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Virginia Dept. of Transportation', '', 'III', '', NULL, NULL, 'January', '2/15/2005', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1417, 'Mueller Brass Company', '0000-01-00', 'Mueller', 0, '2008-10-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Mueller Brass Company', 'No', 'III', 'Range: 0.0125 in/in ', NULL, NULL, 'January', '10/17/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1418, 'Sherle Wagner International ', '0000-01-00', 'SHERLEWAG', 0, '2008-01-07', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Sherle Wagner International ', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/7/2008', 'Dec-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1419, 'Pullman/SPS Infrastructure, Inc. ', '0000-01-00', 'PULLMANSPS', 0, '2012-02-28', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE ', 'Pullman/SPS Infrastructure, Inc. ', 'Yes', 'CJS', '', NULL, NULL, 'January', '2/28/2012', 'Jan-12', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1420, 'DOL IMD Class VII QA Section', '0000-05-00', 'DOLIMD2', 0, '2013-06-11', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', ' ', 'US Army / DOL IMD', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/11/2013', 'Aug-10', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1421, 'Terracon', '0000-11-00', 'APPLIEDCT', 0, '2013-10-14', '0000-00-00', '2014-11-03', 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'Terracon', 'Yes- 1 week', 'TPT', 'Cap: 1500 lbs.', NULL, NULL, 'November', '10/14/2013', '', '11/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1422, 'Ashtabula County Engineers', '0000-01-00', 'ASHTABULA', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Ashtabula 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Ashtabula County Engineers', '', 'III', '', NULL, NULL, 'January', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1423, 'Cardinal Fastener & Specialty Co. Inc.', '0000-01-00', 'CARDINALBED', 0, '2013-06-11', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'COD', '', b'1', 'Inactive', b'1', ' ', 'Cardinal Fasterner & Specialty Co. Inc.', 'Yes- 1 day', 'DWC', '1\" Extensometer', NULL, NULL, 'January', '6/11/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1424, 'Consumers Builders Supply', '0000-01-00', 'CONSUMERS', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Lorain 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Consumers Builders Supply', '', 'CSE', '', NULL, NULL, 'January', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1425, 'Golden Triangle', '0000-01-00', 'GOLDEN1', 0, '2007-03-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', '', b'1', 'MUST HAVE ', 'Golden Triangle', 'YES', 'TML', '', NULL, NULL, 'January', '3/16/2007', 'Jan-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1426, 'J.N. Cernica & Associates', '0000-01-00', 'CERNICA', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Mahoning 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'J.N. Cernica & Associates', '', 'CSE', '', NULL, NULL, 'January', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1427, 'Jamestown Metal Products', '0000-01-00', 'JAMESMETAL', 0, '2005-01-03', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Jamestown Metal Products', '', 'TT', '', NULL, NULL, 'January', '1/3/2005', 'May-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1428, 'Jeff Zell Consultants', '0000-01-00', 'JEFFZELL', 0, '2005-01-03', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Jeff Zell Consultants', 'Yes', 'DWC', '', NULL, NULL, 'January', '1/3/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1429, 'John. Robinson Testing', '0000-01-00', 'ROBINTEST', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'John Robinson Testing', '', 'CSE', '', NULL, NULL, 'January', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1430, 'Louisiana State University', '0000-01-00', 'LAUNIV', 0, '2005-11-02', NULL, NULL, 'OOS', '', 0, 'Net 15', '', b'0', '', b'0', '', 'Louisiana State University', '', '', '', NULL, NULL, 'January', '11/2/2005', 'Jul-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1431, 'Mar-Zane Materials Lab ', '0000-01-00', 'MAR-ZANE', 0, '2004-02-10', '0000-00-00', NULL, 'No', 'Muskingum 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mar-Zane Materials Lab ', 'YES-definite', 'III', '', NULL, NULL, 'January', '2/10/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1432, 'Master Builders', '0000-01-00', 'MASTERBUILD', 0, '0000-00-00', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Master Builders', '', 'KLA', '', NULL, NULL, 'January', '', 'Jan-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1433, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/OOS2', 0, '2008-08-21', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes-1day', 'DLP', 'Range 45K', NULL, NULL, 'January', '8/21/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1434, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/OOS1', 0, '2008-08-21', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes -1 day', 'TPT', 'Range: 5K/50K', NULL, NULL, 'January', '8/21/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1435, 'Olver Incorportated', '0000-01-00', 'OLVER', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Olver Incorportated', '', 'dwc/kla', '', NULL, NULL, 'January', '10/15/2002', 'Jan-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1436, 'Omni Products', '0000-01-00', 'OMNI', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Omni Products', 'Yes', '', '', NULL, NULL, 'January', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1437, 'Penn State University', '0000-01-00', 'PAUNIV/RE', 0, '2002-08-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Penn State University', 'Yes', 'III', 'Range 22K', NULL, NULL, 'January', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1438, 'Rock Concrete', '0000-01-00', 'ROCK', 0, '2005-12-06', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', '', b'1', '', 'Rock Concrete', '', 'TML', '', NULL, NULL, 'January', '12/6/2005', 'Jan-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1439, 'Soils & Materials Engineers', '0000-07-00', 'SOIL/STRONG', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers', 'Yes', 'CJS', '', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1440, 'St. Clair Supply Company', '0000-01-00', 'STCLAIR', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'St. Clair Supply Company', '', 'PJM', '', NULL, NULL, 'January', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1441, 'The Pennsylvania State University', '0000-01-00', 'PAUNIV/CIV', 0, '2002-08-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'VISA', 'Penn State University', 'Yes', 'KLA', 'Ranges 12/60/300K', NULL, NULL, 'January', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1442, 'Trumbull Corporation', '0000-05-00', 'TRUMB90029', 0, '2013-07-26', '0000-00-00', '2014-05-12', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Trumbull Corporation', 'Yes- 1 day', 'KAS', '', NULL, NULL, 'May', '7/26/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1443, 'U. S. Army Corps of Engineers', '0000-01-00', 'CORP66137', 0, '2005-04-26', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', 'VISA', 'U.S. Army Corps of Engineers', 'Yes-1 day', 'TML', '', NULL, NULL, 'January', '4/26/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1444, 'Virginia Dept. of Transportation', '0000-01-00', 'VADOT/SAND3', 0, '2002-08-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Virginia Dept. of Transportation', 'Yes', 'KLA', 'Range: .43 Inches (D6027-96el)', NULL, NULL, 'January', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1445, 'Youngstown State University', '0000-01-00', 'YSU', 0, '2005-12-05', NULL, NULL, 'Yes', '', 0, 'CC', '', b'1', '', b'1', '', 'Youngstown State University', '', 'TML', '', NULL, NULL, 'January', '12/5/2005', 'Jan-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1446, 'Adaris Testing Laboratory', '0000-01-00', 'CRAIGPAVE2', 0, '2007-11-28', '0000-00-00', NULL, 'No', 'Lucas 7%', 7, 'COD', '', b'1', 'Inactive', b'1', '', 'Adaris Testing Laboratory', 'Yes-definite', 'DLP', 'Range: 10mm', NULL, NULL, 'January', '11/28/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1447, 'Lee Testing & Engineering, Inc. ', '0000-01-00', 'LEETESTING', 0, '2010-11-18', '0000-00-00', NULL, 'No', 'Franklin 7%', 7, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'Lee Testing & Engineering, Inc. ', 'Yes-1 day', 'TJT', 'Cap: 6.3K ', NULL, NULL, 'January', '11/18/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1448, 'Beavertown Block', '0000-01-00', 'BEAVERTOWN', 0, '2008-01-09', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Beavertown Block', 'Yes', 'TML', '', NULL, NULL, 'January', '1/9/2008', 'Jan-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1449, 'Riefler Concrete Products LLC', '0000-01-00', 'RIEFLER', 0, '2006-01-11', NULL, NULL, 'OOS', '', 0, 'COD', '5/8/2000', b'1', 'Active', b'1', 'MUST HAVE', 'Riefler Concrete Products LLC', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/11/2006', 'Sep-97', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1450, 'Riefler Concrete Products LLC', '0000-01-00', 'RIEFLER/HAM', 0, '2007-01-11', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '5/8/2000', b'1', 'Active', b'1', 'MUST HAVE', 'Riefler Concrete Products LLC', 'Yes', 'TPT', '', NULL, NULL, 'January', '1/11/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1451, 'Youngstown State University ', '0000-01-00', 'YSU', 0, '2006-12-05', NULL, NULL, 'Yes', '', 0, 'CC', '', b'1', '', b'1', '', 'Youngstown State University ', '', 'TML', '', NULL, NULL, 'January', '12/5/2006', 'Jan-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1452, 'Solar Testing Labs, Inc.', '0000-01-00', 'SOLARBKHGTS', 0, '2008-09-23', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Solar Testing Labs, Inc.', 'Yes-1day', 'TPT', 'Range: 15 psi to 150 psi', NULL, NULL, 'January', '9/23/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1453, 'Howard Concrete Pumping', '0000-01-00', 'HOWARDCON', 0, '2008-01-14', NULL, NULL, 'NO', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Howard Concrete Pumping', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/14/2008', 'Apr-98', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1454, 'Plasti-Pak Packaging', '0000-01-00', 'PLASTIPAK3', 0, '2009-01-07', NULL, NULL, 'No', 'Shelby 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Plasti-Pak Packaging', 'Yes', 'TPT', '', NULL, NULL, 'January', '1/7/2009', 'Jun-01', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1455, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENT/OOS3', 0, '2010-08-04', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'0', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes', 'TPT', 'Range: 45K', NULL, NULL, 'January', '8/4/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1456, 'NY Power Authority', '0000-01-00', 'NYPOWER/NIAG', 0, '2012-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'NY Power Authority', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/19/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1457, 'Ron Crane Scale Sales-USA', '0000-01-00', 'WSRS', 0, '2007-02-22', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Washington Savannah River Station ', '', 'III', '', NULL, NULL, 'January ', '2/22/2007', 'Jan-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1458, 'Geo Services, LLC', '0000-01-00', 'GEO SERVICES', 0, '2006-03-01', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', '', b'0', '', 'Geo Services, LLC', 'Yes', '', '', NULL, NULL, 'January ', '3/1/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1459, 'GDOT - Branch Lab 4', '0000-01-00', 'GDOTBRAN4', 0, '2007-02-02', NULL, NULL, '', '', 0, 'COD', '', b'0', '', b'0', '', 'GDOT - Branch Lab 4', '', '', '', NULL, NULL, 'January ', '2/2/2007', 'Jan-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1460, 'AMEC Earth & Environmental, Inc.', '0000-01-00', 'AMECAKRON', 0, '2008-12-23', NULL, NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'AMEC Earth & Environmental, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'January ', '12/23/2008', 'Feb-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1461, 'Adaris Testing Laboratory', '0000-01-00', 'CRAIGPAVE', 0, '2007-11-28', '0000-00-00', NULL, 'No', 'Lucas 7%', 7, 'COD', '', b'1', 'Inactive', b'1', '', 'Adaris Testing Laboratory', 'Yes-definite', 'TPT', 'Range: 28KN / 6K', NULL, NULL, 'January ', '11/28/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1462, 'Rhodes State College', '0000-01-00', 'RHODES STCOLL', 0, '2009-11-24', '0000-00-00', NULL, 'Yes', '', 0, 'COD', '', b'1', 'Inactive ', b'1', '', 'Rhodes State College', 'Yes', 'TML', '', NULL, NULL, 'January ', '11/24/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1463, 'Hanson Aggregates NY, Inc.', '0000-07-00', 'BRDEWITT', 0, '2013-06-20', '0000-00-00', '2014-07-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Hanson Aggregates NY, Inc.', 'Yes - 1 day', 'DLP', 'Range: 78 to 81', NULL, NULL, 'July', '6/20/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1464, 'United Materials Concrete', '0000-07-00', 'UNITEDMAT', 0, '2013-08-06', '0000-00-00', '2014-07-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'United Materials Concrete', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'July', '8/6/2013', '', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1465, 'Hynes Industries, Inc.', '0000-07-00', 'HYNESIN', 0, '2013-06-04', '0000-00-00', '2015-07-06', 'No', 'Mahoning 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hynes Industries, Inc.', 'Yes-1 day', 'TJT', '', NULL, NULL, 'July', '6/4/2013', '', '7/6/2015', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1466, 'Enhanced Sintered Products, Inc. ', '0000-07-00', 'ENHANCED', 0, '2013-08-06', NULL, '2014-07-14', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'Get PO#', 'Enhanced Sintered Products, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/6/2013', 'Aug-07', '7/14/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1467, 'Riverside Builders Supply', '0000-04-00', 'RIVERSIDE', 0, '2013-05-15', '0000-00-00', '2014-04-28', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Riverside Builders Supply', 'Yes', 'CJS', '', NULL, NULL, 'April', '5/15/2013', '', '4/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1468, 'Civil & Environmental Consultants, Inc. ', '0000-07-00', 'CIVILENV', 0, '2013-08-06', NULL, '2014-07-21', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Civil & Environmental Consultants, Inc. ', 'Yes', 'KAS', '', NULL, NULL, 'July', '8/6/2013', 'Jul-08', '7/21/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1469, 'Ron Crane Scale Sales -USA', '0000-07-00', 'USNAVAL', 0, '2006-08-07', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'US Naval Ship-Mt. Baker', '', 'III', '', NULL, NULL, 'July', '8/7/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1470, 'Ron Crane Scale Sales-USA', '0000-07-00', 'RIVER', 0, '2006-07-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Riverside Top Scale', '', 'DLP', '', NULL, NULL, 'July', '7/31/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1471, 'Ron Crane Scale Sales -USA', '0000-07-00', 'TODDPACIFIC', 0, '2007-07-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Todd PacificShipyard', 'No', 'III', '', NULL, NULL, 'July', '7/18/2007', 'Jul-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1472, 'Ron Crane Scale Sales -USA', '0000-07-00', 'SIMPSON', 0, '2008-07-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Simpson Timber ', 'No', 'DLP', '', NULL, NULL, 'July', '7/29/2008', 'Jun-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1473, 'Brayman Construction', '0000-07-00', 'BRAYMANHINT', 0, '2007-08-22', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Brayman Construction', 'Yes', 'DLP', 'Range: 60 PSI', NULL, NULL, 'July', '8/22/2007', 'Jul-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1474, 'Allegheny County Depart. of Engineering', '0000-07-00', 'ALLEGHCO', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Allegheny County Depart. of Engineering', 'Yes', 'CSE', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1475, 'American Electric Power', '0000-07-00', 'AMERICANBRIL', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'American Electric Power', 'Yes', 'KLA', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1476, 'Besser Company', '0000-07-00', 'BESSER', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Verbal', 'Besser Company', 'Yes', 'III', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1477, 'Bostik, Inc.', '0000-07-00', 'BOSTIK', 0, '2005-07-11', NULL, NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30', '', b'1', '', b'1', '', 'Bostik,Inc.', 'Yes', 'DWC', '', NULL, NULL, 'July', '7/11/2005', 'Jan-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1478, 'Campbell Chain Company', '0000-07-00', 'CAMPBELL', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Campbell Chain Company', 'Yes', 'CSE', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1479, 'City of Livonia', '0000-07-00', 'LIVONIACITY', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'City of Livonia', 'Yes', 'DWC', '', NULL, NULL, 'July', '', 'Feb. 1998', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1480, 'Con-Spec, Inc.', '0000-07-00', 'CONSPEC', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Vbl', 'Con-Spec, Inc.', '', 'JJC', '', NULL, NULL, 'July', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1481, 'Dow Chemical', '0000-07-00', 'DOWCHEM', 0, '2002-08-15', '0000-00-00', NULL, 'OOS', '', 0, 'VISA', '', b'1', 'Inactive', b'1', 'VISA', 'Dow Chemical', 'Yes', 'DWC', 'Range 10K T&C / 30K T & C (E-4)', NULL, NULL, 'July', '8/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1482, 'E. J. Delmonte', '0000-07-00', 'DELMONTE', 0, '2002-07-10', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'E. J. Delmonte', 'Yes', 'KLA', '', NULL, NULL, 'July', '7/10/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1483, 'HRI, Inc.', '0000-07-00', 'HRI/EXIT10', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'HRI, Inc.', 'Yes', 'WWS', '', NULL, NULL, 'July', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1484, 'K & S Supply', '0000-07-00', 'K&SSUPPL', 0, '2004-07-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'K & S Supply', 'Yes', 'KLA', '', NULL, NULL, 'July', '7/20/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1485, 'McCarroll Precast', '0000-07-00', 'MCCARROL', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'McCarroll Precast', 'Yes', 'JJC', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1486, 'McCreath Labs, Inc.', '0000-07-00', 'MCCREATH', 0, '2007-05-30', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'McCreath Labs, Inc.', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'July', '5/30/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1487, 'Metal Services', '0000-07-00', 'METALSERV', 0, '2002-08-16', '0000-00-00', NULL, 'No', 'Trumbull 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Metal Services', 'Yes', 'KLA', '', NULL, NULL, 'July', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1488, 'Metalcrete', '0000-07-00', 'METALBRECK', 0, '2002-10-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Metalcrete', '', 'CSE', '', NULL, NULL, 'July', '10/15/2002', 'Aug-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1489, 'Midwest Testing', '0000-07-00', 'MIDWESTTAY', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Midwest Testing', 'Yes', 'DWC', '', NULL, NULL, 'July', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1490, 'Oldcastle Trenwyth Astra Glaze Plant', '0000-07-00', 'OLDCASTLE', 0, '2005-09-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Oldcastle Trenwyth', 'Yes-definite', 'TML', '', NULL, NULL, 'July', '9/9/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1491, 'Professional Service Industries, Inc.', '0000-07-00', 'PS2/LAN', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'JJC', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1492, 'Pulley Engineering', '0000-07-00', 'PULLEY', 0, '2015-08-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Pulley Engineering', 'Yes-definite', 'DLP', '', NULL, NULL, 'July', '8/24/2015', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1493, 'Sabatini Concrete Pipe', '0000-07-00', 'SABATINI', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Sabatini Concrete', 'Yes', 'CGM', '', NULL, NULL, 'July', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1494, 'Schnabel Engineers Associates', '0000-07-00', 'SCHNABEL', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Schnabel Engineers Associates', '', '', '', NULL, NULL, 'July', '', 'Jun-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1495, 'Susquahanna Supply Co.', '0000-07-00', 'SUSQUSUP68029', 0, '2005-06-27', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', '', 'Susquahanna Supply Co.', 'Yes', 'DLP', '', NULL, NULL, 'July', '6/27/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1496, 'Swank Associated Companies, Inc.', '0000-07-00', 'SWANKFRANK', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Swank Associated Companies, Inc.', '', 'WWS', '', NULL, NULL, 'July', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1497, 'WT Congleton Co. ', '0000-07-00', 'WTCONGLETON', 0, '2007-09-07', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'WT Congleton Co. ', 'Yes', 'III', '', NULL, NULL, 'July', '9/7/2007', 'Jul-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1498, 'R.L. Johnson Construction Corporation', '0000-07-00', 'RLJOHNSON', 0, '2011-04-12', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'R.L. Johnson Construction Corporation', 'Yes', 'TPT', '', NULL, NULL, 'July', '4/12/2011', 'Jul-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1499, 'Hi-Way Paving Company', '0000-07-00', 'HIWAY/LEWIS', 0, '2007-07-17', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Hi-Way Paving Company', 'Yes-24 hrs', 'TPT', '', NULL, NULL, 'July', '7/17/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1500, 'Patterson Supply', '0000-07-00', 'PATTERSON1', 0, '2007-06-19', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'K.T.I. Concrete', 'Yes-1 day', 'DLP', '', NULL, NULL, 'July', '6/19/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1501, 'Conewago', '0000-07-00', 'CONEWAGO', 0, '2009-07-30', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Conewago', 'Yes', 'III', 'Range: 3K / 35K', NULL, NULL, 'July', '7/30/2009', 'Jul-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1502, 'IACNA', '0000-07-00', 'IACNA', 0, '2009-06-16', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'0', '', 'IACNA', 'Yes-Fri prior', 'DLP', 'Range: 0.2 Inches ', NULL, NULL, 'July', '6/16/2009', 'May-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1503, 'Weaver Precast', '0000-07-00', 'WEAVERPRE', 0, '2008-04-24', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Weaver Precast', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'July', '4/24/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1504, 'Rinker Materials ', '0000-07-00', 'CSRHYDRO', 0, '2008-09-09', '0000-00-00', NULL, 'OOS', 'Delaware 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Rinker Materials', 'Yes-1 day', 'DLP', 'Range: 15K to 500K ', NULL, NULL, 'July', '9/9/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1505, 'J&L Laboratory', '0000-07-00', 'J&LLAB', 0, '2010-06-22', NULL, NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', 'May-99', b'1', 'Inactive ', b'1', '', 'J&L Laboratory', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'July', '6/22/2010', 'May-99', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1506, 'Superior Walls of Ohio, Inc.', '0000-07-00', 'SUPERIOR/OHIO', 0, '2010-03-09', NULL, NULL, 'No', 'Trumbull 6.75%', 6.75, 'COD', '9/24/2004', b'1', 'Inactive', b'1', '', 'Superior Walls of Ohio, Inc.', 'Yes - 1 day', 'TPT', '', NULL, NULL, 'July', '3/9/2010', 'Dec-98', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1507, 'New Enterprise Stone & Lime', '0000-07-00', 'NEWENT674', 0, '2007-11-01', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'New Enterprise Stone & Lime ', 'Yes - 2 days', 'DLP', '', NULL, NULL, 'July', '11/1/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1508, 'University of Pittsburgh at Johnstown', '0000-07-00', 'UNIVPGH/JOHN', 0, '2008-07-10', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'University of Pittsburgh at Johnstown', 'Yes', 'TPT', '', NULL, NULL, 'July', '7/10/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1509, 'Mekis Construction Corporation', '0000-07-00', 'MEKIS4', 0, '2009-06-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Mekis Construction Corporation', 'Yes', 'III', '', NULL, NULL, 'July', '6/16/2009', 'Aug-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1510, 'University of Michigan', '0000-07-00', 'UNIVERMICH', 0, '2010-04-14', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'University of Michigan', 'Yes', 'TPT', '', NULL, NULL, 'July', '4/14/2010', 'Jun-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1511, 'Patriot Engineering & Environmental, Inc. ', '0000-07-00', 'PATRIOT', 0, '2009-06-03', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Patriot Engineering & Environmental, Inc. ', 'Yes', 'MTR', '', NULL, NULL, 'July', '6/3/2009', 'Aug-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1512, 'A & A Concrete Products', '0000-07-00', 'A&A', 0, '2011-07-25', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'A & A Concrete Products', '', 'TJT', '', NULL, NULL, 'July', '7/25/2011', 'Aug-96', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1513, 'Heavy Materials', '0000-06-00', 'MARK21STCR', 0, '2013-07-09', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Heavy Materials', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/9/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1514, 'Heavy Materials', '0000-06-00', 'STTHOMAS', 0, '2013-07-15', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'St. Thomas Concrete', 'Yes', 'DLP', 'Range: 78 to 82 ', NULL, NULL, 'June IS', '7/15/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1515, 'Caribbean Quality Control', '0000-06-00', 'CARIBQUAL1', 0, '2013-05-28', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Caribbean Quality Control', '', 'III', '', NULL, NULL, 'June IS', '5/28/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1516, 'Caribbean Quality Control', '0000-06-00', 'CARIBQUAL2', 0, '2013-05-28', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Caribbean Quality Control', '', 'III', '', NULL, NULL, 'June IS', '5/28/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1517, 'Skelton Concrete Products', '0000-06-00', 'SKELTONBVI', 0, '2013-07-09', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Skelton Concrete', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/9/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1518, 'JUB King & Associates, Inc. ', '0000-06-00', 'JUBKING', 0, '2013-07-09', NULL, '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'JUB King & Associates, Inc. ', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/9/2013', 'Jul-10', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1519, 'NXG Testing & Consultants, LLC', '0000-06-00', 'NXGTESTING', 0, '2013-07-09', NULL, '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'NXG Testing & Consultants, LLC', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/9/2013', 'Apr-11', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1520, 'Paul Ferreras PE, Inc.', '0000-06-00', 'BRECKINRIDGE', 0, '2013-05-28', NULL, '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Paul Ferreras PE, Inc.', 'Yes', 'III', '', NULL, NULL, 'June IS', '5/28/2013', 'May-05', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1521, 'VI Paving', '0000-06-00', 'VI PAVING', 0, '2013-06-19', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'VI Paving', 'Yes', '', '', NULL, NULL, 'June IS', '6/19/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1522, 'Kraus-Manning, Inc.', '0000-07-00', 'KRAUSMANNING', 0, '2013-06-11', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'In Active', b'1', '', 'Kraus-Manning, Inc.', 'Yes', 'III', '', NULL, NULL, 'July IS', '6/11/2013', 'May-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1523, 'Tortola Concrete', '0000-06-00', 'TORTOLA', 0, '2013-07-09', '0000-00-00', '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Tortola Concrete', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/9/2013', '', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1524, 'Ebony & Ivory Construction', '0000-06-00', 'EbonyIvory', 0, '2013-07-09', NULL, '2014-06-30', 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Ebony & Ivory Construction', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/9/2013', 'Apr-09', '6/30/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1525, 'Vitest Engineers ', '0000-07-00', 'VITEST', 0, '2013-06-11', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'In Active', b'1', '', 'Vitest Engineers ', 'Yes', 'III', '', NULL, NULL, 'July IS', '6/11/2013', 'Jul-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1526, 'American Bridge', '0000-07-00', 'AMBRIDGE/USVI', 0, '2007-01-29', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'0', 'Active', b'0', '', 'American Bridge', '', 'III', '', NULL, NULL, 'July IS', '1/29/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1527, 'VI Cement & Building Products, Inc.', '0000-07-00', 'ANTILLEAN', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Antillean Engineers', '', 'III', '', NULL, NULL, 'July IS', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1528, 'VI Cement & Building Products, Inc.', '0000-07-00', 'VICEMENT', 0, '2007-01-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'VI Cement & Building Products, Inc.', '', '', '', NULL, NULL, 'July IS', '1/29/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1529, 'American Bridge', '0000-07-00', 'AMERFLA', 0, '2008-07-22', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'American Bridge', 'No', 'III', '', NULL, NULL, 'July IS', '7/22/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1530, 'Bonsal American', '0000-06-00', 'AMERICANSTON', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Bonsal American', 'Yes', 'TPJ', '', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1531, 'Andrews Material Testing', '0000-06-00', 'ANDREWS', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Andrews Material Testing', 'Yes-1 day', 'TPJ', '', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1532, 'Construction Consultants & Testing', '0000-06-00', 'CONSTRUCT/WA', 0, '2013-06-19', NULL, '2014-06-02', 'No', 'Lucas 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Construction Consultants & Testing', 'Yes-1 day', 'TPJ', '', NULL, NULL, 'June', '6/19/2013', 'Dec-01', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1533, 'Consumers Concrete Corporation', '0000-06-00', 'CONSUMCON', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Consumers Concrete Corporation', 'Yes', 'KAS', '', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1534, 'DLZ', '0000-06-00', 'DODSON1', 0, '2013-06-26', '0000-00-00', '2014-06-02', 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Active', b'1', '', 'DLZ', 'Yes', 'DLP', 'Range: 50 lbs to 5K', NULL, NULL, 'June', '6/26/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1535, 'DLZ', '0000-06-00', 'DODSON2', 0, '2013-06-26', '0000-00-00', '2014-06-02', 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'DLZ', 'Yes', 'DLP', 'Range: 15 psi to 150 psi', NULL, NULL, 'June', '6/26/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1536, 'DLZ', '0000-06-00', 'DODSON3', 0, '2013-06-26', '0000-00-00', '2014-06-02', 'No', 'Franklin 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'DLZ', 'Yes', 'DLP', 'Range: 8K / 60K ', NULL, NULL, 'June', '6/26/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1537, 'Marsh Products', '0000-06-00', 'MARSH/PREMA', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Marsh Products (Premarc)', 'Yes - 1 day', 'TLR', 'Range: 4,000 Grams ', NULL, NULL, 'June', '4/18/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1538, 'Northern Concrete Pipe', '0000-06-00', 'NORTHCONCH', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Northern Concrete Pipe', 'Yes 1 Day', 'KS/TJ', '', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1539, 'Professional Service Industries, Inc.', '0000-06-00', 'PSI/LAN2', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'KAS', 'Range: 30 tons', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1540, 'Soils & Materials Engineers', '0000-06-00', 'SME/GRAND', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers', 'Yes - 1 day', 'CJS', 'Range: 15K', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1541, 'Soils & Materials Engineers', '0000-06-00', 'SOILS/LAN', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Soils & Materials Engineers', 'Yes-1 day', 'KAS', 'Range : 46 lbs', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1542, 'University of Akron', '0000-06-00', 'UNIVAKRON', 0, '2013-06-19', NULL, '2014-06-02', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'University of Akron', 'Yes-2 Days', 'CJS', '', NULL, NULL, 'June', '6/19/2013', 'Apr-03', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1543, 'Bluffton Precast ', '0000-06-00', 'BLUFFTON', 0, '2013-06-19', NULL, '2014-06-02', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Bluffton Precast ', 'Yes', 'CJS', '', NULL, NULL, 'June', '6/19/2013', 'Jun-07', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1544, 'Wilcox Professional Service', '0000-06-00', 'WILCOXITHACA', 0, '2013-04-17', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', '', 'Wilcox Professional Service', 'Yes', 'TJT', 'Range: 5K (E-4 & Man Specs)', NULL, NULL, 'June', '4/17/2013', 'May-09', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1545, 'Soils & Materials Engineers', '0000-06-00', 'SOILSBC', 0, '2013-06-19', '0000-00-00', '2014-06-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers', 'Yes', 'TPJ', 'Range: 1.5K to 15K ', NULL, NULL, 'June', '6/19/2013', '', '6/2/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1546, 'Construction Consultants & Testing', '0000-06-00', 'CONSTSTERL', 0, '2013-06-25', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Construction Consultants & Testing', 'Yes - 1 Day', 'KAS', '', NULL, NULL, 'June', '6/25/2013', 'Apr-07', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1547, 'B.M.J. Engineers & Surveyers, Inc.', '0000-06-00', 'BMJ', 0, '2013-08-16', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'B.M.J. Engineers & Surveyers, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'June', '8/16/2013', 'Jun-04', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1548, 'High Grade Materials', '0000-06-00', 'HIGHGRADEMAT', 0, '2013-06-25', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'High Grade Materials', 'Yes', 'CJS', 'Range: 78 to 82', NULL, NULL, 'June', '6/25/2013', 'Jul-01', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1549, 'ITW Red Head ', '0000-06-00', 'ITWRAM', 0, '2013-06-26', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ITW Red Head ', 'Yes', 'CJS', '', NULL, NULL, 'June', '6/26/2013', 'May-03', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1550, 'Lakeshore Engineering', '0000-06-00', 'LAKESHORE', 0, '2013-09-24', NULL, '2014-06-09', 'OOS', '', 0, 'COD', 'Sep-13', b'1', 'Active', b'1', 'MUST HAVE', 'Lakeshore Engineering', 'Yes', 'TPJ', '', NULL, NULL, 'June', '9/24/2013', 'Jul-02', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1551, 'Milan Vault', '0000-06-00', 'MILANV', 0, '2013-07-08', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Milan Vault', 'Yes', 'TPJ', 'Range: 30 inHg (D-5720)', NULL, NULL, 'June', '7/8/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1552, 'Mono Ceramics, Inc.', '0000-06-00', 'MONOCER', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Mono Ceramics, Inc.', 'YES- 1 day', 'CJS', '', NULL, NULL, 'June', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1553, 'West Michigan Testing', '0000-06-00', 'WESTMICH', 0, '2013-06-24', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'West Michigan Testing', 'No', 'TPJ', '', NULL, NULL, 'June', '6/24/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1554, 'Westshore Consulting', '0000-02-00', 'WESTSHORE', 0, '2013-08-07', NULL, '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE ', 'Westshore Consulting', 'Yes-definite', 'TPJ', '', NULL, NULL, 'February', '8/7/2013', 'May-03', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1555, 'Charles E. Raines Company', '0000-06-00', 'RAINES', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Charles E. Raines Company', 'Yes-2 days', 'TPJ', '', NULL, NULL, 'June', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1556, 'Alpena Community College', '0000-06-00', 'ALPENACOMM', 0, '2013-07-08', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'WCCT', 'Yes', 'TPJ', 'Range: 3K to 30K', NULL, NULL, 'June', '7/8/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1557, 'Lafarge Corporation', '0000-06-00', 'LAFARGEALP', 0, '2013-06-28', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Lafarge Corporation', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'June', '6/28/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1558, 'Northern Concrete Pipe', '0000-06-00', 'NORTHCONPIPE', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Northern Concrete Pipe', 'Yes', 'CS/TJ', 'Range: 20Kg', NULL, NULL, 'June', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1559, 'Northern Concrete Pipe', '0000-06-00', 'NORTHERNCON', 0, '2013-07-09', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Northern Concrete Pipe', 'Yes', 'CJS', '', NULL, NULL, 'June', '7/9/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1560, 'Northern Concrete Pipe', '0000-06-00', 'NORTH/BC', 0, '2013-07-08', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Northern Concrete Pipe', 'Yes', 'CJS', '', NULL, NULL, 'June', '7/8/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1561, 'Soils & Materials Engineers', '0000-06-00', 'SOIL/MAT1', 0, '2013-07-08', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers', 'Yes-definite', 'KS/CJ', 'Range: 150 psi (Dig S/N 1109) (D-5720)', NULL, NULL, 'June', '7/8/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1562, 'Soils & Materials Engineers', '0000-06-00', 'SOIL/MAT2', 0, '2013-07-08', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers', 'Yes-definite', 'K/T/C', 'Range: 500 lbs ', NULL, NULL, 'June', '7/8/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1563, 'D&M Site Inc.', '0000-06-00', 'WILCOX1', 0, '2013-06-26', '0000-00-00', '2014-06-16', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'GET PO#', 'D&M Site Inc.', 'Yes', 'CJS', 'Range: 1.5K (ID# 003448)', NULL, NULL, 'June', '6/26/2013', '', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1564, 'Wilcox Professional Service', '0000-06-00', 'WILCOX2', 0, '2013-04-17', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active ', b'0', 'GET PO#', 'Wilcox Professional Service', 'Yes - 3 Days', 'LSM', 'Range: 160 PSI', NULL, NULL, 'June', '4/17/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1565, 'Lafarge Corporation', '0000-06-00', 'LAFARGEALP2', 0, '2013-07-09', NULL, '2014-06-16', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'Credit Card', 'Lafarge Corporation', 'Yes', 'TPJ', '', NULL, NULL, 'June', '7/9/2013', 'Jun-07', '6/16/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1566, 'Ron Crane Scale Sales -USA', '0000-06-00', 'LOCK', 0, '2007-07-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Lockheed Martin Integrated Metology Ctr.', 'No ', 'DLP', 'Range: 60K (ManSp & 0.1% FS)', NULL, NULL, 'June', '7/16/2007', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1567, 'Ron Crane Scale Sales-USA', '0000-06-00', 'HELM2', 0, '2007-08-27', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Helmerich & Payne Guinea Drill Co.', '', 'III', 'Range: 50,000 KG', NULL, NULL, 'June', '8/27/2007', 'Jan-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1568, 'Ron Crane Scale Sales -USA', '0000-06-00', 'YOUNGPIPE', 0, '2007-07-16', NULL, NULL, 'OOS', 'Mahoning 7&+%', 7, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Youngstown Pipe & Supply', 'No', 'III', '', NULL, NULL, 'June', '7/16/2007', 'Jun-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1569, 'Ron Crane Scale Sales - USA', '0000-06-00', 'AVIATION', 0, '2008-07-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Aviation Equipment Testing', '', 'TJT', '', NULL, NULL, 'June', '7/16/2008', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1570, 'Ron Crane Scale Sales-USA', '0000-06-00', 'MICHELIN', 0, '2009-01-16', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Michelin North America ', 'No', 'III', '', NULL, NULL, 'June', '1/16/2009', 'Jun-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1571, 'Colonial Scientific', '0000-06-00', 'COLONIALSCI', 0, '2006-06-12', '0000-00-00', NULL, '', '', 0, 'COD', '', b'0', '', b'0', '', 'Colonial Scientific', '', '', '', NULL, NULL, 'June', '6/12/2006', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1572, 'ESI', '0000-06-00', 'ESI', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, '', '', b'1', 'Active', b'1', '', 'ESI', '', 'DLP', '', NULL, NULL, 'June', '', 'Jan-97', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1573, 'Florida Institute of Technology', '0000-06-00', 'FLTECH', 0, '2005-06-30', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Florida Institute of Technology', '', 'TPT', '', NULL, NULL, 'June', '6/30/2005', 'Jun-05', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1574, 'Hoke Brothers Contracting', '0000-06-00', 'HOKEBROS', 0, '2007-07-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Hoke Brothers Contracting', '', 'III', '', NULL, NULL, 'June', '7/10/2007', 'May-03', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1575, 'L.C. Whitford', '0000-06-00', 'LCWHITFORD', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'L.C. Whitford', '', '', '', NULL, NULL, 'June', '', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1576, 'St. Marys Carbon Company', '0000-06-00', 'STMARYCA2', 0, '2004-06-30', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'St. Marys Carbon Company', 'Yes', 'III', 'Cap: 150#', NULL, NULL, 'June', '6/30/2004', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1577, 'General Nuclear Corporation ', '0000-06-00', 'GENERALNUC', 0, '2008-06-24', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'General Nuclear Corporation ', 'Yes', 'TJT', '', NULL, NULL, 'June', '6/24/2008', 'Jun-08', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1578, 'A & L, Inc.', '0000-06-00', 'A&L', 0, '2004-05-27', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '2-Aug', b'1', 'Inactive', b'1', '', 'A & L Inc.', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'June', '5/27/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1579, 'AMEC Earth & Environmental, Inc.', '0000-06-00', 'AMEC', 0, '2005-06-06', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Active', b'0', '', 'AMEC Earth & Environmental, Inc.', 'Yes-1 day', 'III', '', NULL, NULL, 'June', '6/6/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1580, 'American Electric Power Co.', '0000-06-00', 'AMERICANELEC', 0, '2004-06-08', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'American Electric Power Co.', 'Yes-definite', 'DWC', 'Range .008/.02/.04/.08\"', NULL, NULL, 'June', '6/8/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1581, 'ATC Associates', '0000-06-00', 'ATC84032', 0, '2005-06-09', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'ATC Associates', 'Yes-2 days', 'III', '', NULL, NULL, 'June', '6/9/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1582, 'ATC Associates', '0000-06-00', 'ATC84133', 0, '2004-06-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'ATC Associates', 'Yes', 'TML', '', NULL, NULL, 'June', '6/14/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1583, 'Atlanta Testing & Engineering', '0000-06-00', 'ATLANTAWV', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Atlanta Testing & Engineering', 'Yes', 'KLA', '', NULL, NULL, 'June', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1584, 'Baker Heavy & Highway', '0000-06-00', 'BAKER11094', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Baker Heavy Highway', 'No', 'KLA', '', NULL, NULL, 'June', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1585, 'Baker Heavy Highway', '0000-06-00', 'BAKER79209', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Baker Heavy Highway', 'Yes', 'KLA', '', NULL, NULL, 'June', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1586, 'Barrett Paving Materials', '0000-06-00', 'BARRETT', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, '', '', b'1', 'Inactive', b'1', '', 'Barrett Paving Materials', 'Yes-1 day', 'DWC', '', NULL, NULL, 'June', '10/15/2002', 'Jun-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1587, 'Carmen Paliotta Contracting, Inc.', '0000-06-00', 'PALIOTTA', 0, '2005-02-10', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', '', b'0', '', 'Carmen Paliotta Contracting, Inc.', 'Yes', 'TPT', '', NULL, NULL, 'June', '2/10/2005', 'Jun-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1588, 'Central Clay Company', '0000-06-00', 'CENTCLAY', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Central Clay Company', 'Yes', 'DWC', '', NULL, NULL, 'June', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1589, 'EESG', '0000-06-00', 'EESG', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'EESG', 'Yes', '', '', NULL, NULL, 'June', '', 'Jul-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1590, 'Essroc Materials', '0000-06-00', 'ESSROCMI', 0, '2004-06-08', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Essroc Materials', 'Yes', 'DWC', '', NULL, NULL, 'June', '6/8/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1591, 'Executive Construction Management', '0000-06-00', 'ECM', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Executive Construction Management', 'Yes', 'III', '', NULL, NULL, 'June', '10/15/2002', 'May-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1592, 'Fisher Sand & Gravel', '0000-06-00', 'FISHER', 0, '2004-06-17', NULL, NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'Fisher Sand & Gravel', 'Yes', '', '', NULL, NULL, 'June', '6/17/2004', 'Jun-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1593, 'Genessee Group/NY, Inc', '0000-06-00', 'GENESSEE', 0, '2005-06-02', NULL, NULL, 'OOS', '', 0, '', '', b'1', 'Active', b'1', '', 'Genessee Group/NY, Inc', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/2/2005', 'Jun-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1594, 'Grand River Infrastructure', '0000-06-00', 'GRANDRIVER2', 0, '2004-06-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Grand River Infrastructure (Premarc)', 'Yes', 'DWC', '', NULL, NULL, 'June', '6/16/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1595, 'Green Associates & Nature\'s Grove', '0000-06-00', 'GREENASSOC', 0, '2007-03-20', '0000-00-00', NULL, 'No', 'Belmont 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Green Associates & Nature\'s Grove', 'Yes', 'DWC', '', NULL, NULL, 'June', '3/20/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1596, 'Greensburg Testing Co.', '0000-06-00', 'GREENTESTING', 0, '2005-04-27', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', '', 'Greensburg Testing Co.', 'Yes', 'TPT', '', NULL, NULL, 'June', '4/27/2005', 'Jun-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1597, 'Jane L. Wood, Inc.', '0000-06-00', 'WOODGROTON', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Jane L. Wood, Inc./Keystone Mat. Testing', 'Yes', 'DLP', '', NULL, NULL, 'June', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1598, 'JCK and Associates', '0000-06-00', 'JCKASSOC', 0, '2005-06-24', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'JCK and Associates', 'No', 'DLP', '', NULL, NULL, 'June', '6/24/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1599, 'Joseph B. Fay', '0000-06-00', 'JBF/83086', 0, '2009-07-29', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Joseph B. Fay', 'Yes', '', '', NULL, NULL, 'June', '7/29/2009', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1600, 'Kimberly Concrete, Inc.', '0000-06-00', 'KIMBERCON', 0, '2003-07-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Kimberly Concrete, Inc.', '', '', '', NULL, NULL, 'June', '7/31/2003', 'Jun-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1601, 'Maxim Technologies', '0000-06-00', 'MAXIM', 0, '2002-10-14', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Maxim Technologies, % Empire Soils', 'Yes', 'DWC', 'Cap: 2250#', NULL, NULL, 'June', '10/14/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1602, 'Maxim Technologies', '0000-06-00', 'MAXIM/MI', 0, '2004-06-16', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Maxim Technologies', '', 'KLA', '', NULL, NULL, 'June', '6/16/2004', 'Jun-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1603, 'Maysville Survey', '0000-06-00', 'MAYSVILLE', 0, '2002-11-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Maysville Survey', 'Yes- 1 day', 'DWC', '', NULL, NULL, 'June', '11/21/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1604, 'Michigan Department of Transportation', '0000-06-00', 'MDOT/CAD', 0, '2004-06-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes', 'KLA', '', NULL, NULL, 'June', '6/16/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1605, 'Michigan Department of Transportation', '0000-06-00', 'MIDOTLS1', 0, '2002-08-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan DOT / M & T Divison', 'Yes', 'III', 'Range 30/150/600/1500 KN', NULL, NULL, 'June', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1606, 'New Enterprise Stone & Lime', '0000-06-00', 'NEWENT70059', 0, '2007-11-01', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'New Enterprise Stone & Lime', 'Yes -2 Day', 'TPT', '', NULL, NULL, 'June', '11/1/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1607, 'Ohio Valley Railcar', '0000-06-00', 'OHIOVAL/80888', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Ohio Valley Railcar', '', 'III', '', NULL, NULL, 'June', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1608, 'Pulte Home Sciences', '0000-06-00', 'RESIDENTIAL', 0, '2005-06-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', 'GET ON SITE', 'Pulte Home Sciences', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'June', '6/13/2005', 'Aug-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1609, 'Smith Concrete', '0000-06-00', 'SMITHCONCRETE', 0, '2013-02-04', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Smith Concrete', 'Yes', 'KLA', '', NULL, NULL, 'June', '2/4/2013', 'Jun-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1610, 'Spicer Engineering Group', '0000-06-00', 'SPICER', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Spicer Engineering Group', 'Yes', 'III', '', NULL, NULL, 'June', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1611, 'St. Marys Cement', '0000-06-00', 'STMARYS', 0, '2006-03-27', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'St. Marys Cement', 'Yes', 'TPT', '', NULL, NULL, 'June', '3/27/2006', 'Aug-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1612, 'Syndicate Sales, Inc.', '0000-06-00', 'SYNDICATE', 0, '2010-06-22', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Syndicate Sales, Inc.', 'Yes- 1 day', 'III', '', NULL, NULL, 'June', '6/22/2010', 'Jun-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1613, 'United Rentals', '0000-06-00', 'AMERICANSAFE1', 0, '0000-00-00', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '5/8/2000', b'0', 'Inactive', b'0', '', 'United Rentals', 'Yes', 'III', '', NULL, NULL, 'June', '', 'Jun-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1614, 'W. J. Peters Inspection Services Inc.', '0000-06-00', 'PETERS', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'W. J. Peters Inspection Services, Inc.', 'Yes', 'III', '', NULL, NULL, 'June', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1615, 'Wayne County Dept. of Public Services', '0000-06-00', 'WAYNECR', 0, '2004-06-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Wayne County Testing & Inspection Office', 'Yes', 'DLP', 'Range: 2.5K to 250K ', NULL, NULL, 'June', '6/8/2004', 'Jul-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1616, 'Mekis Construction Corporation', '0000-06-00', 'MEKIS1', 0, '2013-07-09', NULL, '2014-06-23', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Mekis Construction Corporation', 'Yes', 'III', '', NULL, NULL, 'June', '7/9/2013', 'Apr-05', '6/23/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1617, 'Premarc Cadillac ', '0000-06-00', 'CADILLAC', 0, '2010-06-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Premarc Cadillac ', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/9/2010', 'Jul-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1618, 'Sharon Tube Company', '0000-06-00', 'SHARONTU2', 0, '2007-12-20', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Sharon Tube Company', 'Yes 1 week', 'TPT', 'Range 2\" G.L. ', NULL, NULL, 'June', '12/20/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1619, 'HRI, Inc.', '0000-03-00', 'HRIPOCONO', 0, '2013-06-19', NULL, '2014-03-17', 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'HRI, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'March', '6/19/2013', 'Jun-07', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1620, 'Balfour Beatty Construction, Inc.', '0000-06-00', 'BALFOURBEA', 0, '2012-04-02', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'0', 'Inactive ', b'0', '', 'Balfour Beatty Construction, Inc.', 'Yes', 'III', '', NULL, NULL, 'June', '4/2/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1621, 'Solar Testing Laboratories, Inc.', '0000-06-00', 'SOLARTEST3', 0, '2008-10-15', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Solar Testing Laboatories, Inc.', 'Yes', 'III', '', NULL, NULL, 'June', '10/15/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1622, 'Wells-Mansfield, Inc.', '0000-06-00', 'WELLS-MANSFIELD', 0, '2007-05-30', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Wells-Mansfield, Inc.', 'Yes - 1 day', 'TPT', '', NULL, NULL, 'June', '5/30/2007', 'Jun-01', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1623, 'International Paper ', '0000-06-00', 'INTERNATIONAL', 0, '2007-06-19', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active ', b'0', '', 'International Paper ', 'Yes', '', '', NULL, NULL, 'June', '6/19/2007', 'Jun-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1624, 'Swank Associates', '0000-06-00', 'SWANKCHESW', 0, '2009-06-17', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Swank Associates', 'Yes', 'MTR', '', NULL, NULL, 'June', '6/17/2009', 'Jun-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1625, 'Alt & Witzig Engineering, Inc.', '0000-06-00', 'ALTMICHIGANIN', 0, '2007-06-20', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Alt & Witzig Engineering, Inc.', 'Yes', '', '', NULL, NULL, 'June', '6/20/2007', 'Jun-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1626, 'Net Shape Technologies', '0000-06-00', 'CPM, INC.', 0, '2009-06-04', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Net Shape Technologies', 'Yes', 'DLP', 'Range: 20 lbs', NULL, NULL, 'June', '6/4/2009', 'Feb-02', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1627, 'Component InterTechnologies Inc', '0000-06-00', 'COMINTER', 0, '2009-03-17', '0000-00-00', NULL, 'No', 'Pa 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Component InterTechnologies Inc', 'Yes', 'DLP', '', NULL, NULL, 'June', '3/17/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1628, 'Hancor, Inc.', '0000-06-00', 'HANCORWAV', 0, '2009-01-14', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hancor, Inc.', 'Yes - 1 day', 'TJT', '', NULL, NULL, 'June', '1/14/2009', 'Feb-97', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1629, 'Industrial Papers, Inc.', '0000-06-00', 'INDUSTRIAL', 0, '2008-04-23', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'COD', '', b'0', 'Inactive ', b'0', '', 'Industrial Papers, Inc.', 'Yes-1 day', 'DLP', 'Range: 100 lbs to 400 lbs', NULL, NULL, 'June', '4/23/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1630, 'Oldcastle Precast East Inc.', '0000-06-00', 'OLDCASTLE', 0, '2009-05-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Oldcastle Precast East Inc.', 'Yes- 1 day', 'TJT', 'Range: 4K / 35K', NULL, NULL, 'June', '5/21/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1631, 'Challenge Manufacturing', '0000-06-00', 'CHALLENG', 0, '2010-05-27', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Challenge Manufacturing', 'Yes', 'DLP', '', NULL, NULL, 'June', '5/27/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1632, 'Gayston, Inc.', '0000-06-00', 'GAYTSON', 0, '2008-06-23', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'Gayston, Inc.', 'Yes- 1 day', 'DLP', 'Range: 0.001 inches to 0.5 inches', NULL, NULL, 'June', '6/23/2008', 'Aug-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1633, 'University of Michigan', '0000-06-00', 'UNIVMICHIGAN', 0, '2008-06-23', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'CREDIT CARD', 'University of Michigan', 'Yes', 'MTR', '', NULL, NULL, 'June', '6/23/2008', 'Jun-01', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1634, 'Total Precast Solutions, LLC', '0000-06-00', 'PRESTRESSCAN', 0, '2008-06-24', NULL, NULL, 'Yes', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Total Precast Solutions, LLC', 'Yes', 'DLP', 'Range: 4K (450 psi) / 35K (3,450 psi)', NULL, NULL, 'June', '6/24/2008', 'Dec-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1635, 'MDOT-Howard City-TSC', '0000-06-00', 'MDOTHOWARD', 0, '2011-12-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'MDOT-Howard City-TSC', 'Yes', 'CJS', '', NULL, NULL, 'June', '12/21/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1636, 'Superior Materials, LLC', '0000-06-00', 'FENDTFA', 0, '2011-06-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Fendt Builders Supply', 'Yes-definite', 'DLP', '', NULL, NULL, 'June', '6/20/2011', ' ', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1637, 'Southwestern Labs Inc.', '0000-06-00', 'SOUTHWEST', 0, '2005-05-13', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Southwestern Labs, Inc.', '', '', '', NULL, NULL, 'June IS', '5/13/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1638, 'St. Christopher and Nevis', '0000-06-00', 'STCHRISTOPHER', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'St. Christopher and Nevis', '', 'III', '', NULL, NULL, 'June IS', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1639, 'VI Cement & Building Products, Inc.', '0000-06-00', 'ALTONADAMS', 0, '2004-07-23', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Alton Adams', '', '', '', NULL, NULL, 'June IS', '7/23/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1640, 'Windward Roads', '0000-06-00', 'WINDWARD', 0, '2005-05-13', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Windward Roads', '', 'III', 'Range 28KN', NULL, NULL, 'June IS', '5/13/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1641, 'R.R. Caribbean ', '0000-06-00', 'RRCARIBBEAN ', 0, '2008-07-29', NULL, NULL, 'OOS', '', 0, 'COD ', '', b'0', 'Active', b'0', '', 'O\'Brien Construction Company ', 'Yes', 'III', '', NULL, NULL, 'June IS', '7/29/2008', 'Nov-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1642, 'Tomas Cuerda, Inc.', '0000-06-00', 'POLYTECH', 0, '2010-12-21', '0000-00-00', '2011-06-13', 'OOS', '', 0, 'Net 30', '', b'0', 'Active ', b'0', '', 'Universidad Politecnica de Puerto Rico', '', 'DLP', 'Range: 20Kn / 200Kn', NULL, NULL, 'June PR', '12/21/2010', '', '6/13/2011', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1643, 'Tomas Cuerda, Inc.', '0000-06-00', 'PRECON', 0, '2013-06-11', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'In Active', b'1', '', 'Precon Core ', '', 'DLP', '', NULL, NULL, 'June PR', '6/11/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1644, 'Tomas Cuerda, Inc.', '0000-06-00', 'HIWAYMANATI', 0, '2013-06-26', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Authoridad De Carreteras', '', 'DLP', '', NULL, NULL, 'June PR', '6/26/2013', 'Jan-99', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1645, 'Tomas Cuerda, Inc.', '0000-06-00', 'CMTCONC2', 0, '2013-05-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'CMT Concrete & Material', '', 'DLP', '', NULL, NULL, 'June PR', '5/29/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1646, 'Tomas Cuerda, Inc.', '0000-12-00', 'ESSROCSANJUA', 0, '2013-06-19', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Essroc San Juan ', 'Yes', 'DLP', '', NULL, NULL, 'December PR', '6/19/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1647, 'Tomas Cuerda, Inc.', '0000-12-00', 'PREMEZ', 0, '2013-05-29', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'HG Concrete', '', 'DLP', '', NULL, NULL, 'December PR', '5/29/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1648, 'Tomas Cuerda, Inc.', '0000-12-00', 'LUQUILLO', 0, '2013-06-28', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Techno Engineering', 'Yes', 'DLP', '', NULL, NULL, 'December PR', '6/28/2013', 'Apr-09', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1649, 'Tomas Cuerda, Inc.', '0000-06-00', 'RODRIGUEZ', 0, '2013-06-11', NULL, NULL, 'OOS', '', 0, '', '', b'1', 'In Active', b'1', '', 'Rodriguez Ready Mix', '', '', '', NULL, NULL, 'June PR', '6/11/2013', 'Jun-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1650, 'Tomas Cuerda, Inc.', '0000-12-00', 'HIGHWAYAUTH', 0, '2013-06-26', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Authoridad De Carreteras ', '', 'DLP', 'Range: 3K to 500K', NULL, NULL, 'December PR', '6/26/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1651, 'Tomas Cuerda, Inc.', '0000-12-00', 'SUPERASPHALT', 0, '2013-06-28', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Super Asphalt', '', 'DLP', 'Range: 10K', NULL, NULL, 'December PR', '6/28/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1652, 'Tomas Cuerda, Inc.', '0000-12-00', 'BETTERROAD2', 0, '2013-06-26', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Betterroad Asphalt', '', 'III', 'Cap: 5KN/10.5KN 152.4mm 30RPM ', NULL, NULL, 'December PR', '6/26/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1653, 'Tomas Cuerda, Inc.', '0000-12-00', 'BETTERROAD3', 0, '2013-06-26', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Betterroad Asphalt', '', 'III', 'Cap:5KN/10.5KN 152.4mm 30RPM ', NULL, NULL, 'December PR', '6/26/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1654, 'Tomas Cuerda, Inc.', '0000-12-00', 'GEOEXPLOR', 0, '2013-06-19', NULL, '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geo-Explor, Inc', 'Yes', 'DLP', '', NULL, NULL, 'December PR', '6/19/2013', 'Dec-02', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1655, 'Tomas Cuerda, Inc.', '0000-06-00', 'GEOCONSULT1', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geoconsult', '', 'DLP', 'Range: 1/8 TSF to 22 TSF', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1656, 'Tomas Cuerdo', '0000-06-00', 'ALCO1', 0, '2013-05-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Alco Corporation', '', 'DLP', 'Range: 5KN/10.5KN 152.4mm 30RPM 1.27 deg', NULL, NULL, 'June PR', '5/29/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1657, 'Tomas Cuerda, Inc.', '0000-06-00', 'SUELOS/CARI', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Suelos, Inc.', '', 'DLP', 'Range: 30K / 250K', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1658, 'Tomas Cuerda, Inc.', '0000-06-00', 'URBLACUMBRE', 0, '2013-06-11', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Ready Mix \"Promix\"', '', '', '', NULL, NULL, 'June PR', '6/11/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1659, 'Tomas Cuerda, Inc.', '0000-06-00', 'SUPERCANO', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', '', b'1', '', 'Super Asphalt Pavement', '', 'DLP', '', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1660, 'Tomas Cuerda, Inc.', '0000-12-00', 'MACROMIX', 0, '2013-06-28', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Macro Mix', '', 'DLP', '', NULL, NULL, 'December PR', '6/28/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1661, 'Tomas Cuerda, Inc.', '0000-06-00', 'BETTERROAD1', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Betterroad Asphalt', '', 'III', 'Cap: 10K Plant #10 (E-4 & Man Specs)', NULL, NULL, 'June PR', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1662, 'Tomas Cuerda, Inc.', '0000-06-00', 'CENTRALIND', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'MGV-GES Lab, Inc. ', '', 'DLP', 'Range: 1.5K ', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1663, 'Tomas Cuerda, Inc.', '0000-06-00', 'HIWAYMAYAGUZ', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Authoridad De Carreteras ', '', 'DLP', 'Range: 50K / 200K', NULL, NULL, 'June PR', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1664, 'Tomas Cuerda, Inc.', '0000-06-00', 'WESTERNPR', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Western Soil, Inc.', '', 'DLP', '', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1665, 'Tomas Cuerda, Inc.', '0000-06-00', 'PUNTAARENAS', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Punta Arenas Concrete', '', 'DLP', '', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1666, 'Tomas Cuerda, Inc.', '0000-06-00', 'ATLANTICJD', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Atlantic Pipe Corporation', '', 'DLP', 'Range: 200 lbs to 60K', NULL, NULL, 'June PR', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1667, 'Tomas Cuerda, Inc.', '0000-06-00', 'DESPIAUHATO', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Despiau & Associates', '', 'DLP', '', NULL, NULL, 'June PR', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1668, 'Tomas Cuerda, Inc.', '0000-06-00', 'GEOCIM', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Geo Cim', '', 'DLP', 'Range: 1 inch (Done In House)', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1669, 'Tomas Cuerda, Inc.', '0000-06-00', 'PEPINO', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Moca Concrete Poles, Inc.', '', 'DLP', 'Range: 35K (Only to 30,250 lbs) ', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1670, 'Tomas Cuerda, Inc.', '0000-06-00', 'POLITECNICA', 0, '2012-07-10', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Universidad Politecnica de Puerto Rico', '', 'DLP', 'Range: 400 lbs to 40K ', NULL, NULL, 'June PR', '7/10/2012', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1671, 'Tomas Cuerda, Inc.', '0000-12-00', 'MARXSCAROL', 0, '2013-06-28', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Marxsuach SE (M&L)', '', 'DLP', '', NULL, NULL, 'December PR', '6/28/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1672, 'Tomas Cuerda, Inc.', '0000-06-00', 'AUTHORIDAD', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Authoridad De Carreteras', '', 'DLP', 'Range: 5K to 500K', NULL, NULL, 'June PR', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1673, 'Resco Products Inc.', '0000-07-00', 'RESCO', 0, '2013-08-19', NULL, '2014-07-07', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Resco Products', 'Yes', 'DLP', '', NULL, NULL, 'July', '8/19/2013', 'Jul-13', '7/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1674, 'Tomas Cuerda, Inc.', '0000-06-00', 'BLOQUES', 0, '2013-06-26', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Ecologica Carmelo, Inc.', '', 'DLP', 'Range: 300 lbs to 30K (Beam Frame)', NULL, NULL, 'June PR', '6/26/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1675, 'Tomas Cuerda, Inc.', '0000-06-00', 'RIVERA', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Victor E. Rivera Associates', '', 'DLP', 'Range: 3K to 300K ', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1676, 'Tomas Cuerda, Inc.', '0000-06-00', 'RIVERAPONCE', 0, '2013-06-28', NULL, '2014-06-09', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Victor E. Rivera Associates', '', 'DLP', '', NULL, NULL, 'June PR', '6/28/2013', 'May-09', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1677, 'Tomas Cuerda, Inc.', '0000-06-00', 'BETTERROAD4', 0, '2013-05-16', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Betteroad Asphalt', '', 'DLP', '', NULL, NULL, 'June PR', '5/16/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1678, 'Tomas Cuerda, Inc.', '0000-06-00', 'QUALITYCON', 0, '2013-06-28', '0000-00-00', '2014-06-09', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Quality Concrete', '1 Day Prior', 'DLP', '', NULL, NULL, 'June PR', '6/28/2013', '', '6/9/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1679, 'Tomas Cuerda, Inc.', '0000-06-00', 'CUERDA', 0, '2004-05-25', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Tomas Cuerda, Inc.', '', '', '', NULL, NULL, 'June PR', '5/25/2004', '', 'In-House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1680, 'Department of Army', '0000-06-00', 'CORPPONCE', 0, '2005-03-07', '0000-00-00', NULL, 'OOS', '', 0, 'VISA', '', b'1', 'Active', b'1', '', 'US Army Corps of Engineers', 'Yes 2-3 days', 'KLA', '', NULL, NULL, 'June PR', '3/7/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1681, 'Tomas Cuerda, Inc', '0000-06-00', 'LAWGIBB', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Law Gibb Caribe', '', 'DLP', '', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1682, 'Tomas Cuerda, Inc.', '0000-06-00', 'BTACONCRETE', 0, '2004-05-25', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', 'Inactive', b'0', '', 'BTA Concrete', '', 'DLP', '', NULL, NULL, 'June PR', '5/25/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1683, 'Tomas Cuerda, Inc.', '0000-06-00', 'CARIBUNIV', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Caribbean University', '', 'KLA', 'Range 1/2/5/10K', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1684, 'Tomas Cuerda, Inc.', '0000-06-00', 'COLEGIOTEC', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Colegio Universitario Tecnologica de Ponce', '', 'CSE', '', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1685, 'Tomas Cuerda, Inc.', '0000-06-00', 'ESAN', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Esan Precast', '', 'KLA', 'Ranges: 5K/250K', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1686, 'Tomas Cuerda, Inc.', '0000-06-00', 'FOUNDATION', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Foundation Engineering', '', 'DLP', '', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1687, 'Tomas Cuerda, Inc.', '0000-06-00', 'INCAMIRAMAR', 0, '2004-05-25', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Inca Miramar', '', 'III', 'Range 580 Bar (47,500 lbs.)', NULL, NULL, 'June PR', '5/25/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1688, 'Tomas Cuerda, Inc.', '0000-06-00', 'JJCONST', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'J.J. Construction & Aggregates', '', 'DWC', '', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1689, 'Tomas Cuerda, Inc.', '0000-06-00', 'MARXSGUAY', 0, '2003-05-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Marxsuach SE', '', 'DWC', '', NULL, NULL, 'June PR', '5/27/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1690, 'Tomas Cuerda, Inc.', '0000-06-00', 'PRECOM', 0, '2004-06-22', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Precom Corporation', '', 'DWC', '', NULL, NULL, 'June PR', '6/22/2004', 'Jan. 1997', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1691, 'Tomas Cuerda, Inc.', '0000-06-00', 'REDONDOBARC', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Redondo Construction Corp.', '', 'CSE', '', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1692, 'Tomas Cuerda, Inc.', '0000-06-00', 'REDONDOHATO', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Redondo Construction Corp.', '', 'KLA', 'Range 573 Bar', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1693, 'Tomas Cuerda, Inc.', '0000-06-00', 'REDONDOPUER', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Redondo Construction Corp.', '', 'DLP', 'Range 1.5 /35K', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1694, 'Tomas Cuerda, Inc.', '0000-06-00', 'REDONDOYAB', 0, '2004-06-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Redondo Construction Corp.', '', 'III', '', NULL, NULL, 'June PR', '6/22/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1695, 'Tomas Cuerda, Inc.', '0000-06-00', 'TOMASRIO', 0, '2004-05-25', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Tomas Cuerda, Inc.', '', 'III', '', NULL, NULL, 'June PR', '5/25/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1696, 'Tomas Cuerda, Inc.', '0000-06-00', 'VELEZASSOC', 0, '2004-06-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Miguel P. Velez & Associates', '', 'DLP', '', NULL, NULL, 'June PR', '6/18/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1697, 'Tomas Cuerda, Inc.', '0000-06-00', 'BLOQUESVEGA', 0, '2010-06-07', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Bloques Vega Baja', '', 'TML', '', NULL, NULL, 'June PR', '6/7/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1698, 'Tomas Cuerda, Inc.', '0000-06-00', 'METALFORMS', 0, '2007-06-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Metal Forms Leasing Company', '', 'CSE', '', NULL, NULL, 'June PR', '6/28/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1699, 'Tomas Cuerda, Inc.', '0000-06-00', 'TURABO', 0, '2010-06-07', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Almante & Associates, Inc.', '', 'TJT', '', NULL, NULL, 'June PR', '6/7/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1700, 'Tomas Cuerda, Inc.', NULL, 'ALCO3', 0, '2013-05-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Alco Corporation', '', 'DLP', '', NULL, NULL, 'JunePR', '5/29/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1701, 'Chemung Contracting Corporation', '0000-03-00', 'CHEMUNGPC', 0, '2013-03-22', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Chemung Contracting Corporation', ' Yes / 1 Day', 'KAS', '', NULL, NULL, 'March', '3/22/2013', 'Apr-97', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1702, 'Office of the Associate Cheif Financial officer', '0000-03-00', 'DCDOT', 0, '2013-04-03', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Material Testing Center DC Annex 9', 'Yes', 'DLP', 'Range: 3K to 300K', NULL, NULL, 'March', '4/3/2013', 'Apr-05', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1703, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ECSMIDATLAN', 0, '2013-03-22', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'KAS', 'Range: 131 lbs ', NULL, NULL, 'March', '3/22/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1704, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ENGCONSL1', 0, '2013-03-20', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes - 1 day', 'DLP', 'Range: 500 lbs ', NULL, NULL, 'March', '3/20/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1705, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ENGCONSL', 0, '2013-03-22', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes-1 day', 'DLP', 'Range: 4,500 Newtons (Shear Force)', NULL, NULL, 'March', '3/22/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1706, 'Lafarge Corporation', '0000-03-00', 'LAFARGEMD', 0, '2013-03-22', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Lafarge Corporation', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'March', '3/22/2013', 'Feb-03', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1707, 'Franklin Concrete Products', '0000-03-00', 'FRANKLINCON', 0, '2013-04-03', '0000-00-00', '2014-03-10', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Franklin Concrete Products', 'Yes-1 day', 'KAS', '', NULL, NULL, 'March', '4/3/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1708, 'Euclid Chemical', '0000-03-00', 'EUCLIDCHEM', 0, '2013-10-01', '0000-00-00', '2014-03-10', 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Euclid Chemical', 'Yes- 1 day', 'DLP', 'Range: 2,500 lbs to 250,000 lbs (E-4)', NULL, NULL, 'March', '10/1/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1709, 'Elk Creek Ready Mix', '0000-03-00', 'ELKCREEKMIX', 0, '2013-04-03', NULL, '2014-03-10', 'No', 'PA 6%', 6, 'COD', 'Aug-05', b'1', 'Active', b'1', '', 'Elk Creek Ready Mix', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/3/2013', 'Oct-99', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1710, 'Lane Enterprise, Inc', '0000-03-00', 'LANEENT', 0, '2013-04-03', NULL, '2014-03-17', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Lane Enterprise, Inc.', 'Yes-one day', 'DLP', '', NULL, NULL, 'March', '4/3/2013', 'Apr-97', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1711, 'Big Valley Concrete', '0000-03-00', 'BIGVALLEY', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Big Valley Concrete', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1712, 'New Enterprise Stone & Lime', '0000-03-00', 'NEWENT70066', 0, '2013-04-01', '0000-00-00', '2014-03-17', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'New Enterprise Stone & Lime', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/1/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1713, 'Oldcastle Trenwyth Astra Glaze Plant', '0000-03-00', 'GLENGERY', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Oldcastle Trenwyth Astra Glaze Plant', 'Yes-definite', 'KAS', '', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1714, 'S J A Construction, Inc. ', '0000-03-00', 'SJACONST', 0, '2013-06-17', NULL, NULL, 'No', 'Philadelphia 8%', 8, 'Net 30 ', '', b'1', 'Active', b'1', 'Get PO#', 'S J A Construction', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '6/17/2013', 'Oct-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1715, 'York Building/Workrite Division', '0000-03-00', 'WORKRITE', 0, '2013-04-03', '0000-00-00', '2014-03-17', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'York Building/Workrite Division', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'March', '4/3/2013', '', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1716, 'Chrin Brothers, Inc. ', '0000-03-00', 'CHRIN', 0, '2013-04-01', NULL, '2014-03-17', 'Yes', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Chrin Brothers, Inc. ', 'Yes', 'CS/TJ', '', NULL, NULL, 'March', '4/1/2013', 'Apr-07', '3/17/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1717, 'Penn State University', '0000-03-00', 'PAUNIV/TRANS', 0, '2013-04-05', '0000-00-00', '2014-03-24', 'Yes', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Penn State University', 'Yes', 'TPJ', '', NULL, NULL, 'March', '4/5/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1718, 'Weaver Precast, Inc.', '0000-03-00', 'WEAVERPRE2', 0, '2013-04-10', '0000-00-00', '2014-03-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Weaver Precast, Inc.', 'Yes', 'TPJ', '', NULL, NULL, 'March', '4/10/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1719, 'Chase Corp. - Global Operations Center', '0000-02-00', 'CHASE', 0, '2013-05-03', '0000-00-00', '2014-02-24', 'Yes', ' ', 0, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Chase Corp. -Royston Facility', 'Yes', 'DLP', 'Range: 5 Inches', NULL, NULL, 'February', '5/3/2013', '', '2/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1720, 'Advanced Heat Treating', '0000-03-00', 'ADVANCEDHEAT', 0, '2013-04-05', NULL, '2014-03-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Advanced Heat Treating', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'March', '4/5/2013', 'Mar-02', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1721, 'City of Pittsburgh', '0000-03-00', 'CITYOFPITTS', 0, '2013-04-05', '0000-00-00', '2014-03-24', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'City of Pittsburgh', 'Yes', 'DLP', 'Cap: 12,000 Grams', NULL, NULL, 'March', '4/5/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1722, 'St. Marys Carbon Company', '0000-03-00', 'STMARYCA1', 0, '2013-04-05', '0000-00-00', '2014-03-24', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'St. Marys Carbon Company', 'Yes- 1 day', 'DLP', 'Range: 50 lbs to 10K', NULL, NULL, 'March', '4/5/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1723, 'C.H. & D Enterprises, Inc.', '0000-03-00', 'CH&D ENTER', 0, '2013-04-10', '0000-00-00', '2014-03-24', 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'C.H. & D Enterprises, Inc', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/10/2013', '', '3/24/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1724, 'St. Marys Carbon Company', '0000-03-00', 'STMARYCARB', 0, '2013-03-22', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'St. Marys Carbon Company', 'Yes- 1 day', 'CJS', '', NULL, NULL, 'March', '3/22/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1725, 'Sika Technologies', '0000-03-00', 'ESSROCOH', 0, '2013-03-05', '0000-00-00', '2014-03-10', 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Sika Technologies', 'Yes-definite!', 'TJT', '', NULL, NULL, 'March', '3/5/2013', '', '3/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1726, 'Ron Crane Scale Sales - USA', '0000-03-00', 'MIELKE', 0, '2008-04-14', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Mielke Electric', 'No', 'DLP', '', NULL, NULL, 'March', '4/14/2008', 'Mar-08', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1727, 'LV Avionics', '0000-03-00', 'TECHJET', 0, '2008-04-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Active', b'0', '', 'LV Avionics', 'Yes', 'III', 'Range: 50K', NULL, NULL, 'March', '4/15/2008', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1728, 'Virginia Lab Supply', '0000-03-00', 'APAC', 0, '2004-09-21', NULL, NULL, 'OOS', '', 0, '', '', b'0', 'Active', b'0', '', 'APAC Mississippi, Inc.', '', 'III', 'Cap: 10K', NULL, NULL, 'March', '9/21/2004', 'Mar-03', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1729, 'Cetec, LLC', '0000-03-00', 'CETECAL', 0, '2008-04-10', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Cetec, LLC', 'No', 'III', '', NULL, NULL, 'March', '4/10/2008', 'Mar-08', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1730, 'Zenmar Power Tools & Hoists', '0000-03-00', 'ZENMAR1', 0, '2004-03-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Zenmar Power Tools & Hoists', '', 'III', '', NULL, NULL, 'March', '3/17/2004', 'Mar-99', 'In-House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1731, 'The Osterland Company', '0000-03-00', 'CUYAHOGARP', 0, '2004-03-08', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'The Osterland Company', 'Yes', 'DLP', '', NULL, NULL, 'March', '3/8/2004', '', 'No Solicate', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1732, 'Waste Management', '0000-03-00', 'WASTEMANAGE', 0, '2009-03-18', NULL, NULL, 'Yes', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Waste Management', 'Yes', 'TJT', '', NULL, NULL, 'March', '3/18/2009', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1733, 'Mekis Construction Corporation', '0000-03-00', 'MEKIS3', 0, '2010-02-09', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Mekis Construction Corporation', 'Yes', 'III', '', NULL, NULL, 'March', '2/9/2010', 'Jun-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1734, 'American Bridge', '0000-03-00', 'AMBRIDGE', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'American Bridge', '', 'III', '', NULL, NULL, 'March', '10/15/2002', 'Mar-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1735, 'Battleridge Company', '0000-03-00', 'BATTRIDG', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Battleridge Company', 'Yes (lab personnel maybe ', 'CSE', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1736, 'Beaver Concrete & Gravel Company', '0000-03-00', 'BEAVERCO', 0, '2006-02-28', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Beaver Concrete & Gravel Company', 'Yes-1 day', 'DLP', '', NULL, NULL, 'March', '2/28/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1737, 'Blackwell Engineering PLC', '0000-03-00', 'VIOLA', 0, '2004-03-16', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Viola Engineering', 'Yes', 'KLA', '', NULL, NULL, 'March', '3/16/2004', 'Mar-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1738, 'Bluefield State College', '0000-03-00', 'BLUEFIELD', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Bluefield State College', 'Yes', '', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1739, 'Bud Scales', '0000-03-00', 'PADOTUNION', 0, '2004-03-24', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Pennsylvania Department of Transportation', 'Yes', 'MDR', '', NULL, NULL, 'March', '3/24/2004', 'Mar-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1740, 'Burgess & Niple', '0000-03-00', 'BDET2', 0, '2005-03-11', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Burgess & Niple', 'Yes-1day', 'DWC', '', NULL, NULL, 'March', '3/11/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1741, 'Chemung Contracting Corporation', '0000-03-00', 'CHEMUNG1', 0, '2004-05-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Chemung Contracting Corporation', '', 'DLP', 'Range: 1 inch', NULL, NULL, 'March', '5/28/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1742, 'Col-Fin Specialty Steel', '0000-03-00', 'COLFIN1', 0, '2004-02-06', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Col-Fin Specialty Steel', 'Yes', 'DWC', '', NULL, NULL, 'March', '2/6/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1743, 'Concrete Pipe & Products, Co.', '0000-03-00', 'CONPIPEM', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concrete Pipe & Products', 'Yes', 'CSE', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1744, 'Concurrent Technologies', '0000-03-00', 'CONCURTECH', 0, '2005-03-09', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Concurrent Technologies', 'Yes', 'DLP', '55K Load Cell Model 661.22CO1', NULL, NULL, 'March', '3/9/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1745, 'Concurrent Technologies', '0000-03-00', 'CONCURTECH2', 0, '2005-03-09', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Concurrent Technologies', 'Yes', 'DLP', 'Range: 2.5K ID#25-LC11RC02', NULL, NULL, 'March', '3/9/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1746, 'Contractors Precast', '0000-03-00', 'CONTRACTORS', 0, '2004-03-24', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'Contractors Precast', '', '', '', NULL, NULL, 'March', '3/24/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1747, 'County Concrete', '0000-03-00', 'COCONCRETE', 0, '2004-02-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'County Concrete', 'No', 'DWC', '', NULL, NULL, 'March', '2/9/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1748, 'Cuyahoga Co. Engineers', '0000-03-00', 'CUYAHOGACO', 0, '2004-02-06', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cuyahoga Co. Engineers', 'Yes', 'DLP', '', NULL, NULL, 'March', '2/6/2004', 'Jan-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1749, 'Dick Corporation', '0000-03-00', 'DICKENT85016', 0, '2002-10-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Dick Enterprises', 'Yes - 1 day', 'III', '', NULL, NULL, 'March', '10/15/2002', 'Apr-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1750, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ENGCONFR', 0, '2007-02-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Vbl: Doug Finch', 'ECS Mid-Atlantic, LLC', 'Yes', 'CSE', '', NULL, NULL, 'March', '2/22/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1751, 'ECS Mid-Atlantic, LLC', '0000-03-00', 'ENGCONVA', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', 'Inactive', b'0', '', 'ECS Mid-Atlantic, LLC', '', '', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1752, 'EMSI Engineering', '0000-03-00', 'EMSIENG', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Vbl: Farhangi', 'EMSI Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1753, 'Gannett Fleming', '0000-03-00', 'GANNETT1', 0, '2005-03-29', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Gannett Fleming', 'Yes-1day', 'DWC', 'Cap: 6K', NULL, NULL, 'March', '3/29/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1754, 'General Motors Truck & Bus', '0000-03-00', 'GM/BALTIMORE', 0, '2005-02-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'General Motors Truck & Bus', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'March', '2/10/2005', 'Apr-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1755, 'Geupel Construction', '0000-03-00', 'GEUPEL', 0, '2004-06-02', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'Geupel Construction', '', '', '', NULL, NULL, 'March', '6/2/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1756, 'Greenbrier Aggregates (Martin Marietta)', '0000-03-00', 'GREENBRIER', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Greenbrier Aggregates (Martin Marietta)', 'Yes', 'KLA', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1757, 'GS Davidson', '0000-03-00', 'GSDAVIDSON', 0, '2007-01-09', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'COD', '', b'0', '', b'0', '', 'GS Davidson', '', '', '', NULL, NULL, 'March', '1/9/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1758, 'Guepel Construction', '0000-03-00', 'GEUPELCO', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Franklin 7%', 7, '', '', b'1', 'Inactive', b'1', '', 'Guepel Construction', '', '', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1759, 'I A Construction', '0000-03-00', 'IACONST1', 0, '2005-03-16', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', '', b'0', '', 'I A Construction', 'Yes', 'TML', '', NULL, NULL, 'March', '3/16/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1760, 'J. A. Jones Construction Co.', '0000-03-00', 'JONES', 0, '2004-03-24', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'J. A. Jones Construction Co.', '', '', '', NULL, NULL, 'March', '3/24/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1761, 'J. W. Harris', '0000-03-00', 'HARRIS', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'J. W. Harris', 'Yes-days b/4', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1762, 'J.F. Allen Company', '0000-03-00', 'ALLEN/JFAS', 0, '2003-04-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'J.F. Allen Company', 'No', 'DWC', '', NULL, NULL, 'March', '4/17/2003', 'Jan-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1763, 'James F. Robinson and Associates', '0000-03-00', 'ROBINSON', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'James F. Robinson & Associates', '', 'CSE', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1764, 'Keyser Testing Labs', '0000-03-00', 'KEYSER', 0, '2006-03-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Keyser Testing Labs ', 'No', 'TPT', '', NULL, NULL, 'March', '3/27/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1765, 'Keystone High School', '0000-03-00', 'KEYSTONE', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'Keystone High School', '', 'III', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1766, 'Law Engineering', '0000-03-00', 'LAW/COU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1767, 'Law Engineering', '0000-03-00', 'LAW/COU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1768, 'Law Engineering', '0000-03-00', 'LAW/COU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1769, 'Law Engineering', '0000-03-00', 'LAWENG', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', '', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1770, 'Livingston Group', '0000-03-00', 'LIVINGPHIL', 0, '2006-01-09', '0000-00-00', NULL, 'No', 'Philadelphia', 0, '', '', b'0', '', b'0', '', 'Livingston Group', '', 'TPT', '', NULL, NULL, 'March', '1/9/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1771, 'Materials Evaluation Bureau', '0000-03-00', 'MATERIALEVAL', 0, '2002-10-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Materials Evaluation Bureau', 'Yes', 'KLA', '', NULL, NULL, 'March', '10/15/2002', 'Mar-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1772, 'Midwest Testing', '0000-03-00', 'MIDWEST:143', 0, '2004-03-12', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Midwest Testing', '', 'DWC', '', NULL, NULL, 'March', '3/12/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1773, 'Mosites Construction', '0000-03-00', 'MOSITES', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mosites Construction', 'Yes', 'WWS', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1774, 'National Engineering & Contracting', '0000-03-00', 'NATIONAL', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'National Engineering & Construction', 'Yes-2 days', 'CGM', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1775, 'Nucon Schokbeton', '0000-03-00', 'NUCON2', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Nucon Schokbeton', '', 'III', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1776, 'Ohio Valley Railcar', '0000-03-00', 'OHIOVALL/91201', 0, '2004-03-12', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Ohio Valley Railcar', 'No', 'WWS', '', NULL, NULL, 'March', '3/12/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1777, 'Penn State University', '0000-03-00', 'PAUNIV/CIVIL2', 0, '2002-08-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Penn State University', 'Yes', 'III', '', NULL, NULL, 'March', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1778, 'Petersburg Block', '0000-03-00', 'PETERSBURGBLO', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Petersburg Block', 'Yes', 'DWC', '', NULL, NULL, 'March', '10/15/2002', 'Mar-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1779, 'Prince George\'s County', '0000-03-00', 'PRINCE', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', 'Inactive', b'0', '', 'Prince George\'s County', '', '', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1780, 'R.W. Sidley Precast', '0000-03-00', 'SIDLEYGREEN', 0, '2002-08-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', '', 'R.W. Sidley Precast', 'Yes', '', '', NULL, NULL, 'March', '8/16/2002', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1781, 'R.W. Sidley Precast', '0000-03-00', 'SIDLEYGROVE', 0, '2002-08-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', '', 'R.W. Sidley Precast', 'Yes', '', 'Cap: 600 lbs', NULL, NULL, 'March', '8/16/2002', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1782, 'R.W. Sidley Precast', '0000-03-00', 'SIDLEYHILLS', 0, '2004-03-16', '0000-00-00', NULL, 'No', 'Geauga 6.50%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'R.W. Sidley Precast', 'No', 'DWC', '', NULL, NULL, 'March', '3/16/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1783, 'R.W. Sidley Precast', '0000-03-00', 'SIDLEYSHARON', 0, '2002-08-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Active', b'0', '', 'R.W. Sidley Precast', 'Yes', '', '', NULL, NULL, 'March', '8/16/2002', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1784, 'R.W. Sidley Precast', '0000-03-00', 'SIDLEYSR', 0, '2002-08-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'R.W. Sidley Precast', 'Yes', 'III', '', NULL, NULL, 'March', '8/16/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1785, 'R.W. Sidley Precast', '0000-03-00', 'SIDLEYWM', 0, '2004-03-16', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'R.W. Sidley Precast', '', 'KLA', '', NULL, NULL, 'March', '3/16/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1786, 'Resource International', '0000-03-00', 'RESOURCE/YOUNG', 0, '2004-03-12', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'COD', '', b'1', 'Inactive', b'1', 'Forever COD', 'Resource International', 'Yes - 1 day', 'DWC', '', NULL, NULL, 'March', '3/12/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1787, 'SECOR International', '0000-03-00', 'SECOR', 0, '0000-00-00', NULL, NULL, 'No', 'Cuyahoga 7.75%', 7.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'SECOR International', 'No', 'KLA', '', NULL, NULL, 'March', '', 'Mar-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1788, 'Specialized Engineering', '0000-03-00', 'SPECIALIZED', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Specialized Engineering', 'Yes', '', '', NULL, NULL, 'March', '10/15/2002', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1789, 'Standard Laboratories', '0000-03-00', 'STANDARD', 0, '2004-03-16', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Standard Laboratories', 'No', 'DWC', '', NULL, NULL, 'March', '3/16/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1790, 'Sunco Builders', '0000-03-00', 'SUNCO', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'COD', '2/6/1997', b'1', 'Inactive', b'1', '', 'Sunco Builders', 'Yes', 'WWS', '', NULL, NULL, 'March', '', '3/17/1997', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1791, 'Swank Sign', '0000-03-00', 'SWANKSIGN', 0, '2007-03-16', NULL, NULL, 'No', 'PA 6.00%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Swank Sign', 'Yes', 'KLA', '', NULL, NULL, 'March', '3/16/2007', 'Mar-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1792, 'Triad Engineering', '0000-03-00', 'TRIAD', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Triad Engineering', 'Yes', 'III', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1793, 'Trumbull Corporation', '0000-03-00', 'TRUMB87126', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Trumbull Corporation', '', '', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1794, 'Tegrant Corporation', '0000-03-00', 'TUSCARORA', 0, '2008-10-15', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Tegrant Corporation', 'Yes', 'KLA', '', NULL, NULL, 'March', '10/15/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1795, 'URS Greiner Woodward Clyde', '0000-03-00', 'URSGREINER', 0, '0000-00-00', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'URS Greiner Woodward Clyde', '', '', '', NULL, NULL, 'March', '', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1796, 'Virginia Depart. of Transportation', '0000-03-00', 'VADOT', 0, '2004-04-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Virginia Dept. of Transportation', 'Yes', 'WWS', '', NULL, NULL, 'March', '4/28/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1797, 'W.L. Gore & Associates', '0000-03-00', 'GORE/ELKTON', 0, '2004-03-10', NULL, NULL, 'OOS', '', 0, '', '', b'1', '', b'1', '', 'W.L. Gore & Associates', 'Yes - 1 Day', 'DLP', '', NULL, NULL, 'March', '3/10/2004', 'Jan-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1798, 'W.R. Grace', '0000-03-00', 'GRACE', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'W.R. Grace', 'Yes', 'CSE', '', NULL, NULL, 'March', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1799, 'West Virginia University', '0000-03-00', 'WVUNIV', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'West Virginia University', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1800, 'York Building Products', '0000-03-00', 'YORKFUL', 0, '2004-03-17', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'York Building Products', 'No', 'DWC', '', NULL, NULL, 'March', '3/17/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1801, 'Americast', '0000-03-00', 'AMERICAST', 0, '2010-01-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Americast', 'Yes', 'TJT', '', NULL, NULL, 'March', '1/22/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1802, 'Lafarge Corporation', '0000-03-00', 'LAFARGEFRED', 0, '2010-01-19', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Lafarge Corporation', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'March', '1/19/2010', 'Apr-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1803, 'Resource International', '0000-03-00', 'RESOURCEAIR', 0, '2008-03-11', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'Resource International', 'Yes', 'DLP', '', NULL, NULL, 'March', '3/11/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1804, 'Weyerhaeuser', '0000-03-00', 'WEYERHAENC', 0, '2008-03-13', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Weyerhaeuser', 'Yes', '', 'Range: ', NULL, NULL, 'March', '3/13/2008', 'Oct-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1805, 'HRI, Inc.', '0000-03-00', 'HRIINC', 0, '2007-07-10', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'HRI, Inc.', 'Yes- 1 Day', 'MTR', '', NULL, NULL, 'March', '7/10/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1806, 'Lafarge Corporation ', '0000-03-00', 'MELLOTTHAGER', 0, '2010-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Lafarge Corporation ', 'Yes', 'DLP', '', NULL, NULL, 'March', '1/19/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1807, 'Lafarge Corporation ', '0000-03-00', 'MELLOTTWATER', 0, '2010-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'CREDIT CARD', 'Lafarge Corporation ', 'Yes', 'TJT', '', NULL, NULL, 'March', '1/19/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1808, 'Lafarge Corporation ', '0000-03-00', 'MELLOTTBURK', 0, '2009-02-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'CREDIT CARD', 'Lafarge Corporation ', 'Yes', 'MTR', '', NULL, NULL, 'March', '2/26/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1809, 'Pessoa Construction', '0000-03-00', 'PESSOA', 0, '2008-02-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Pessoa Construction', 'Yes', 'MTR', '', NULL, NULL, 'March', '2/21/2008', 'Jan-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1810, 'Geo-Technology Associates, Inc.', '0000-03-00', 'GTASTERLING2', 0, '2009-02-26', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Geo-Technology Associates, Inc.', 'Yes', 'DLP', 'Range: 0.05 inch to 0.5 inch', NULL, NULL, 'March', '2/26/2009', 'Aug-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1811, 'Dayton Superior', '0000-03-00', 'DAYTONSUP', 0, '2010-03-11', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Dayton Superior', 'Yes- 1 day', 'DLP', 'Range: 4 lbs', NULL, NULL, 'March', '3/11/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1812, 'FCA Construction Precast ', '0000-03-00', 'FCACONSTRUC', 0, '2008-03-11', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'FCA Construction ', 'Yes', 'DLP', '', NULL, NULL, 'March', '3/11/2008', 'Apr-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1813, 'Cast Con Stone', '0000-03-00', 'CASTCONESAX', 0, '2009-03-09', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Cast Con Stone', 'Yes', 'TPT', '', NULL, NULL, 'March', '3/9/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1814, 'Virginia Department of Transportation', '0000-03-00', 'VADOT/MANAS', 0, '2008-04-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Northern VA District Lab Office (NOVA)', 'Yes', '', '', NULL, NULL, 'March', '4/15/2008', 'Mar-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1815, 'Nicholson Construction', '0000-03-00', 'NICHOLSON', 0, '2008-03-20', NULL, NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'0', 'Inactive', b'0', 'Forever COD', 'Nicholson Construction', 'Yes', 'TPT ', '', NULL, NULL, 'March', '3/20/2008', 'Apr-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1816, 'Potomac Construction Ind.', '0000-03-00', 'POTOMACCI', 0, '2012-11-01', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive ', b'1', '', 'Potomac Construction Ind.', 'Yes-2 days', 'TJT', '', NULL, NULL, 'March', '11/1/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1817, 'Chemung Contracting Corporation', '0000-03-00', 'CHEMUNG/GAIN', 0, '2013-03-22', NULL, '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Chemung Contracting Corporation', 'Yes', 'KAS', 'Range: ', NULL, NULL, 'March ', '3/22/2013', 'Apr-04', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1818, 'Coastal Drilling East, LLC', '0000-03-00', 'COASTAL', 0, '2010-02-24', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Coastal Drilling East, LLC', 'Yes', 'DLP', '', NULL, NULL, 'March ', '2/24/2010', 'Dec-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1819, 'L. Robert Kimball', '0000-03-00', 'KIMBALLNS', 0, '2011-04-06', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE PO', 'L. Robert Kimball', 'Yes', 'III', 'Range: 2,000 lbs', NULL, NULL, 'March ', '4/6/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1820, 'American Geotechnical & Environmental', '0000-05-00', 'AMERGEOTM1', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'American Geotechnical & Environmental', 'Yes- 1 day', 'III', 'Cap: 1K', NULL, NULL, 'May', '5/28/2013', 'Jun-97', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1821, 'Gavco Materials', '0000-05-00', 'GAVCO/CARM', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Gavco Materials ', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/28/2013', 'Jul-05', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1822, 'Hi-Way Paving Company', '0000-05-00', 'HIWAYCOR', 0, '2013-06-11', NULL, '2014-05-26', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Hi-Way Paving Company', 'Yes 1 Day', 'CJS', '', NULL, NULL, 'May', '6/11/2013', 'May-04', '5/26/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1823, 'ECS Mid-Atlantic, LLC', '0000-05-00', 'ECSMANASSAS', 0, '2013-05-29', NULL, '2014-05-05', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'KAS', 'Range: 11K', NULL, NULL, 'May', '5/29/2013', 'Oct-06', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1824, 'Pipe & Precast Construction Products, Inc. ', '0000-05-00', 'PIPE&PRECAST', 0, '2013-04-17', NULL, '2014-05-05', 'No', 'PA 6 %', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Pipe & Precast Construction Products, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'May', '4/17/2013', 'May-07', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1825, 'Pennsylvania Soil and Rock, Inc. ', '0000-05-00', 'PASOIL&ROCK', 0, '2013-05-28', NULL, '2014-05-05', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Pennsylvania Soil and Rock, Inc. ', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/28/2013', 'May-07', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1826, 'EBA Engineering', '0000-05-00', 'EBA/BALT3', 0, '2013-05-16', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', 'GET ON SITE', 'EBA Engineering', 'Yes', 'DLP', 'Range: 1 Inch', NULL, NULL, 'May', '5/16/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1827, 'ECS Mid-Atlantic, LLC', '0000-05-00', 'ECSMANASSAS1', 0, '2013-05-29', NULL, '2014-05-05', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'KAS', '', NULL, NULL, 'May', '5/29/2013', 'Oct-06', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1828, 'Professional Service Industries, Inc.', '0000-05-00', 'PSIPARK', 0, '2013-05-29', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'Professional Service Industries, Inc.', 'Yes', 'TPJ', '', NULL, NULL, 'May', '5/29/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1829, 'Bilco', '0000-05-00', 'BILCO1', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Bilco', 'Yes- 1 day', 'CJS', '', NULL, NULL, 'May', '5/29/2013', '1995', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1830, 'Central Supply Company', '0000-05-00', 'CENTRALSUPPLY', 0, '2013-06-26', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Central Supply Company', 'Yes- 1 day', 'CJS', '', NULL, NULL, 'May', '6/26/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1831, 'Triad Engineering Consultants', '0000-05-00', 'TRIADMO', 0, '2013-05-28', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Triad Engineering Consultants', 'Yes - definite', 'CJS', 'Cap: 5K', NULL, NULL, 'May', '5/28/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1832, 'West Virginia Division of Highways', '0000-05-00', 'WVDOHHUNT', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'West Virginia Department of Highways', 'Yes- 1 day', 'DLP', 'Range: 100K', NULL, NULL, 'May', '5/29/2013', 'May-00', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1833, 'West Virginia Dept. of Transportation', '0000-05-00', 'WVDOTCHARL', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'West Virginia Dept. of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'May', '5/29/2013', 'May-00', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1834, 'West Virginia Paving', '0000-05-00', 'WVPAV', 0, '2013-05-29', '0000-00-00', '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'West Virginia Paving', 'Yes', 'DLP', ' ', NULL, NULL, 'May', '5/29/2013', '', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1835, 'West Virginia Dept. of Transportation', '0000-05-00', 'WVDEPTHIGH', 0, '2013-05-29', NULL, '2014-05-12', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'West Virginia Dept. of Highways', 'Yes', 'CJS', 'Range: 11 Kn / 22 Kn / 44 Kn ', NULL, NULL, 'May', '5/29/2013', 'Sep-01', '5/12/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1836, 'Power Generation', '0000-08-00', 'POWERGEN', 0, '2013-08-19', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Power Generation', 'Yes', 'III', '', NULL, NULL, 'August', '8/19/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1837, 'Soils & Material Engineers (SME)', '0000-07-00', 'QORELEX 2', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Material Engineers (SME)', 'Yes', 'DLP', 'Range: 1 inches ', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1838, 'Soils & Material Engineers (SME)', '0000-07-00', 'QORELEX 1', 0, '2013-08-16', '0000-00-00', '2014-07-28', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Material Engineers (SME)', 'Yes-definite', 'DLP', 'Range: 2.5K to 250K ', NULL, NULL, 'July', '8/16/2013', '', '7/28/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1839, 'Terracon', '0000-05-00', 'NUTTING/CIN7', 0, '2013-06-18', '0000-00-00', '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DP/KS', 'Range: 1K', NULL, NULL, 'May', '6/18/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1840, 'Terracon', '0000-05-00', 'NUTTING/CIN1', 0, '2013-06-18', NULL, '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes-2 days', 'ALY', 'Cap: 500 lbs', NULL, NULL, 'May', '6/18/2013', 'Aug-00', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1841, 'Terracon', '0000-05-00', 'NUTTING/CIN2', 0, '2013-06-18', NULL, '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes-2 days', 'DP/KS', 'Cap: 1.5K', NULL, NULL, 'May', '6/18/2013', 'Aug-00', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1842, 'Terracon', '0000-05-00', 'NUTTING/CIN3', 0, '2013-06-19', NULL, '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DP/KS', 'Range: 150 PSI ', NULL, NULL, 'May', '6/19/2013', 'Aug-00', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1843, 'Terracon', '0000-05-00', 'NUTTING/CIN4', 0, '2013-06-19', NULL, '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DLP', 'Range: 2 inches', NULL, NULL, 'May', '6/19/2013', 'Aug-00', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1844, 'Terracon', '0000-05-00', 'NUTTING/CIN5', 0, '2013-06-18', NULL, '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DP/KS', 'Range: 1K (E-4)', NULL, NULL, 'May', '6/18/2013', 'Aug-00', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1845, 'Terracon', '0000-05-00', 'NUTTING/CIN6', 0, '2013-06-18', NULL, '2014-05-19', 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Terracon', 'Yes', 'DP/KS', 'Range: 150 PSI', NULL, NULL, 'May', '6/18/2013', 'Aug-00', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1846, 'Hinkle Block & Masonry', '0000-05-00', 'HINKLE', 0, '2013-06-12', NULL, '2014-05-19', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hinkle Block & Masonry', 'Yes', 'TPJ', '', NULL, NULL, 'May', '6/12/2013', 'May-04', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1847, 'Independent Concrete Pipe', '0000-05-00', 'INDCONC', 0, '2013-06-19', '0000-00-00', '2014-05-19', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Independent Concrete Pipe', 'Yes-1 week', 'CJS', 'Range: 250K', NULL, NULL, 'May', '6/19/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1848, 'Sardinia Concrete', '0000-05-00', 'SARDINACONC', 0, '2013-06-19', '0000-00-00', '2014-05-19', 'No', 'Clermont 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Sardinia Concrete', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'May', '6/19/2013', '', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1849, 'The Wells Group, LLC', '0000-05-00', 'WELLSGROUP', 0, '2013-06-19', NULL, '2014-05-19', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'The Wells Group, LLC', 'Yes', 'TPJ', '', NULL, NULL, 'May', '6/19/2013', 'Apr-05', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1850, 'Boone Ready Mix', '0000-05-00', 'BOONE', 0, '2013-06-19', NULL, '2014-05-19', 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Boone Ready Mix', 'Yes', 'CJS', '', NULL, NULL, 'May', '6/19/2013', 'May-08', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1851, 'Harper Company', '0000-05-00', 'HARPER2', 0, '2013-03-06', NULL, '2014-05-19', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Harper Company', 'Yes', 'III', '', NULL, NULL, 'May', '3/6/2013', 'Jun-04', '5/19/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1852, 'Ron Crane Scale Sales - USA', '0000-05-00', 'USCGC', 0, '2006-05-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'USCG Sector Key West', 'No', 'III', '', NULL, NULL, 'May', '5/18/2006', 'May-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1853, 'Ron Crane Scale Sales-USA', '0000-05-00', 'MANN&HUMMEL', 0, '2006-05-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Mann & Hummel AFC', 'No', 'III', '', NULL, NULL, 'May', '5/18/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1854, 'Ron Crane Scale Sales - USA', '0000-05-00', 'RIGGERS', 0, '2007-05-07', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Riggers Service ', 'No', 'III', '', NULL, NULL, 'May', '5/7/2007', 'Apr-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1855, 'Ron Crane Scale Sales - USA', '0000-05-00', 'ENTERP', 0, '2007-05-31', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', 'MUST HAVE', 'Enterprise Concrete Products ', 'No', 'III', '', NULL, NULL, 'May', '5/31/2007', 'May-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1856, 'Ron Crane Scale Sales - USA', '0000-05-00', 'TYCO', 0, '2007-05-30', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Tyco Telecommunications', 'In House', 'III', '', NULL, NULL, 'May', '5/30/2007', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1857, 'TTL Associates, Inc. ', '0000-05-00', 'TTLCLEVE', 0, '2013-09-20', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'COD', 'Sep-13', b'1', 'Inactive', b'1', 'MUST HAVE', 'TTL Associates, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'May', '9/20/2013', 'Apr-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1858, '81 Concrete', '0000-05-00', '81 Concrete', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', '81 Concrete', 'No', 'CGM', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1859, 'A.P. O\'Horo Construction Co.', '0000-05-00', 'APOHORO', 0, '2002-10-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'A.P. O\'Horo Construction Co.', 'Yes', 'DWC', '', NULL, NULL, 'May', '10/15/2002', 'May-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1860, 'American Precast Company', '0000-05-00', 'AMERICANBRIDG', 0, '2004-05-17', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'American Precast Company', 'Yes', 'DWC', '', NULL, NULL, 'May', '5/17/2004', 'Jul-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1861, 'Battelle Memorial Institute', '0000-05-00', 'BATTELLE', 0, '2002-08-16', NULL, NULL, 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Battelle Memorial Institute', 'Yes', '', '', NULL, NULL, 'May', '8/16/2002', 'Jun-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1862, 'Castcon Stone, Inc.', '0000-05-00', 'CASTCON', 0, '2005-05-04', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active', b'0', '', 'Castcon Stone, Inc.', 'Yes', '', '', NULL, NULL, 'May', '5/4/2005', 'May-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1863, 'Concurrent Technologies', '0000-05-00', 'CONCUR/INNA', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', 'III', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1864, 'Concurrent Technologies', '0000-05-00', 'CONCURCAM', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', '', '', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1865, 'Concurrent Technologies', '0000-05-00', 'CONCURR/78094', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', '', 'Cap: 2.5K', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1866, 'Concurrent Technologies', '0000-05-00', 'CONCURRENT1', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', '', 'Range 7500 psi', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1867, 'Concurrent Technologies', '0000-05-00', 'CONCURRENT2', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', '', 'Range 4000 psi', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1868, 'Concurrent Technologies', '0000-05-00', 'CONCURRENT5', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', '', 'Range 4000 psi', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1869, 'Concurrent Technologies', '0000-05-00', 'CONCURRENT5A', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', 'III', 'Range 110K ID#25-LC13', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1870, 'Concurrent Technologies', '0000-05-00', 'CONCURRENTB1', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes-definite', 'DWC', 'Range 25 Kip', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1871, 'Concurrent Technologies', '0000-05-00', 'CONCURRENTB2', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes-definite', 'DWC', 'Range 2.5 Kip', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1872, 'Concurrent Technologies', '0000-05-00', 'CONCURRENTB3', 0, '2002-10-15', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes-definite', 'DWC', 'Range +.2, -.1 inch', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1873, 'County Of Erie', '0000-05-00', 'CO/ERIE', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'County of Erie', 'Yes', 'CSE', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1874, 'Cultured Stone Corportation', '0000-05-00', 'CULTUREDST', 0, '2002-10-15', NULL, NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cultured Stone Corporation', 'Yes', 'KLA', '', NULL, NULL, 'May', '10/15/2002', 'Feb-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1875, 'Elmo Greer & Son', '0000-05-00', 'GREER', 0, '2003-07-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Elmo Greer & Son', 'Yes-1 day', 'DWC', '', NULL, NULL, 'May', '7/31/2003', 'Jan-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1876, 'ECS Mid-Atlantic, LLC', '0000-05-00', 'ECSWASHDC', 0, '2007-04-30', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'ECS Mid-Atlantic, LLC', '', '', '', NULL, NULL, 'May', '4/30/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1877, 'FMW Composite System, Inc.', '0000-05-00', 'FMWCOMPOSITE', 0, '2003-12-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'FMW Composite System, Inc.', '', '', '', NULL, NULL, 'May', '12/20/2003', 'May-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1878, 'G-2 Consulting Group', '0000-05-00', 'G-2', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'G-2 Consulting Group', '', '', '', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1879, 'Georgia Pacific Gypsum Corp', '0000-05-00', 'GEOPAC', 0, '2003-05-16', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Georgia Pacific Gypsum Corp', '', 'III', '', NULL, NULL, 'May', '5/16/2003', 'May-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1880, 'Golden Triangle', '0000-05-00', 'GOLDEN', 0, '2004-05-17', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', '', b'0', 'MUST HAVE ', 'Golden Triangle', 'Yes', 'KLA', '', NULL, NULL, 'May', '5/17/2004', 'May-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1881, 'Grand Rapids Testing Service', '0000-05-00', 'GRTESTINCAD', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Grand Rapids Testing Service', 'Yes', 'DWC', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1882, 'Grand River Infrastructure', '0000-05-00', 'GRANDRIVER1', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Grand River Infrastructure (Premarc)', 'Yes', 'DWC', 'Range 3K / 46K', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1883, 'Halliburton /NUS Corporation', '0000-05-00', 'HALLIBUR', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, '', '', b'0', 'Inactive', b'0', '', 'Halliburton /NUS Corporation', '', '', '', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1884, 'Hi-Way Paving Company', '0000-05-00', 'HIWAY22/30', 0, '2005-04-06', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Hi-Way Paving Company', 'Yes', 'TML', '', NULL, NULL, 'May', '4/6/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1885, 'J.F. Allen Company', '0000-05-00', 'ALLENCOMPANY', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'J. F. Allen Company', 'Yes', 'DWC', '', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1886, 'LN Concrete Materials Corp.', '0000-05-00', 'LNCONCRETE', 0, '2009-10-06', NULL, NULL, 'No', 'Butler 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'LN Concrete Materials Corp.', 'Yes', 'III', '', NULL, NULL, 'May', '10/6/2009', 'Dec-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1887, 'Mactec Engineering', '0000-05-00', 'MACTEC', 0, '2005-05-25', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'COD', '', b'1', 'Active', b'1', '', 'MACTEC Engineering', 'Yes', 'TPT', '', NULL, NULL, 'May', '5/25/2005', 'Dec-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1888, 'Marble Cliff Block Co.', '0000-05-00', 'MARBLE', 0, '2002-10-15', NULL, NULL, 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Marble Cliff Block Co.', 'Yes', 'CSE', '', NULL, NULL, 'May', '10/15/2002', 'May-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1889, 'Marsolino Construction Co., Inc.', '0000-05-00', 'MARSOLINO', 0, '2006-10-27', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Marsolino Construction Co., Inc.', 'Yes', 'DLP', '', NULL, NULL, 'May', '10/27/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1890, 'Martin Marietta Aggregates', '0000-05-00', 'MARTINXENIA', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Greene 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Martin Marietta Aggregates', 'No', 'III', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1891, 'Michael Baker Jr., Inc.', '0000-05-00', 'MBAKER', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Michael Baker Jr., Inc.', '', 'CSE', 'Range 60 psi', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1892, 'Mosites Construction', '0000-05-00', 'MOSITES', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mosites Construction', 'Yes', 'WWS', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1893, 'Neyer, Tiseo, & Hindo', '0000-05-00', 'NEYERLAL1002', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Neyer Tiseo Hindo', 'Yes', 'III', '', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1894, 'North American Precast', '0000-05-00', 'NAPRECAST', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Summit 6.75%', 6.75, 'COD', '', b'1', 'Inactive', b'1', '', 'North American Precast', 'Yes', 'CSE', '', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1895, 'NTH Consultants', '0000-05-00', 'NTH Consultants', 0, '2002-11-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'NTH Consultants', '', 'KLA', '', NULL, NULL, 'May', '11/21/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (1896, 'Prime Engineering', '0000-05-00', 'PRIME2', 0, '2002-10-15', NULL, NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Prime Engineering', 'Yes', 'DWC', 'Cap: 10,000#', NULL, NULL, 'May', '10/15/2002', 'Mar-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1897, 'Professional Service Industries, Inc.', '0000-05-00', 'PSICANTON', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Professional Service Industries, Inc.', 'No', '', '', NULL, NULL, 'May', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1898, 'R.W. Sidley Precast', '0000-05-00', 'SIDLEYYOUNGS', 0, '2004-05-17', NULL, NULL, 'No', 'Mahoning 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'R.W. Sidley Precast', 'Yes- 1day', 'DLP', '', NULL, NULL, 'May', '5/17/2004', 'May-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1899, 'Resource International', '0000-05-00', 'RESOURCEBELLE', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'Forever COD', 'Resource International, Inc.', 'Yes', 'CSE', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1900, 'Solar Testing Laboratories, Inc.', '0000-05-00', 'SOLARTEST', 0, '2007-05-04', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Solar Testing Laboratories', 'Yes', 'DLP', '', NULL, NULL, 'May', '5/4/2007', 'May-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1901, 'Stocker Concrete', '0000-05-00', 'STOCKER', 0, '2005-04-29', '0000-00-00', NULL, 'No', 'Tuscarawas 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Stocker Concrete', 'No', 'TML', '', NULL, NULL, 'May', '4/29/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1902, 'Tuf-Tug Products', '0000-05-00', 'TUFTUG', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Tuf-Tug Products', 'Yes', 'KLA', '', NULL, NULL, 'May', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1903, 'John Gulisek Construction', '0000-05-00', 'GULISEK98104', 0, '2008-02-14', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'John Gulisek Construction', 'Yes', 'MTR', '', NULL, NULL, 'May', '2/14/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1904, 'Stantec Consulting Services ', '0000-05-00', 'STANTEC68065', 0, '2009-05-07', NULL, NULL, 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Stantec Consulting Services ', 'Yes', 'LSM', '', NULL, NULL, 'May', '5/7/2009', 'May-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1905, 'Terracon', '0000-05-00', 'NUTTING/NS1', 0, '2012-10-09', NULL, NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Terracon', 'Yes-definite', 'III', 'Cap: 1K', NULL, NULL, 'May', '10/9/2012', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1906, 'Trus Joist', '0000-05-00', 'TRUSJOIST1', 0, '2009-04-07', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'0', '', 'Trus Joist', 'Yes - 5 Days', 'LSM/III', 'Range: 100 lbs to 10,000 lbs ', NULL, NULL, 'May', '4/7/2009', 'Oct-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1907, 'Hycrete, Inc. ', '0000-05-00', 'HYCRETE', 0, '2008-06-23', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Hycrete, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/23/2008', 'Aug-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1908, 'P & A', '0000-05-00', 'P&A', 0, '2006-05-09', NULL, NULL, 'OOS', '', 0, 'COD', 'Oct. 1997', b'1', 'Active', b'1', '', 'P & A', 'Yes', 'DLP', '', NULL, NULL, 'May', '5/9/2006', 'Jun-96', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1909, 'Kay & Kay Contracting, LLC', '0000-05-00', 'KAY', 0, '2007-04-26', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', '', b'0', '', 'Kay & Kay Contracting, LLC', 'Yes', '', '', NULL, NULL, 'May', '4/26/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1910, 'Big G Inc./Pickett Concrete', '0000-05-00', 'PICKETT', 0, '2007-04-26', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', '', b'0', '', 'Pickett Concrete ', 'Yes', '', '', NULL, NULL, 'May', '4/26/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1911, 'Hopkins Construction Co., Inc.', '0000-05-00', 'HOPKINSCONST', 0, '2010-03-03', '0000-00-00', NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hopkins Construction Co., Inc.', 'Yes', 'TJT', '', NULL, NULL, 'May', '3/3/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1912, 'Plasti-Pak Packing', '0000-05-00', 'PLASTIPAK1', 0, '2009-05-07', NULL, NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Plasti-Pak Packing', 'Yes- 1 day', 'TJT', 'Range: 20 lbs to 400 lbs', NULL, NULL, 'May', '5/7/2009', 'Jun-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1913, 'Plasti-Pak Packing', '0000-05-00', 'PLASTIPAK2', 0, '2010-05-03', NULL, NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'0', 'MUST HAVE', 'Plasti-Pak Packing', 'Yes- 2 days', 'DLP', '', NULL, NULL, 'May', '5/3/2010', 'Jun-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1914, 'JLT Laboratories', '0000-05-00', 'J&LTEST', 0, '2009-04-23', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'JLT Laboratories', 'Yes', 'MTR', 'Range: 150 psi', NULL, NULL, 'May', '4/23/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1915, 'Terracon Consultants, Inc. ', '0000-05-00', 'TERRRACONMD', 0, '2009-04-23', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Terracon Consultants, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'May', '4/23/2009', 'May-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1916, 'Terracon', '0000-05-00', 'NUTTINGLAW', 0, '2012-10-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Terracon', 'Yes', 'III', 'Range: 11 lbs to 110 lbs ', NULL, NULL, 'May', '10/9/2012', 'Jan-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1917, 'Michael Facchiano Contracting', '0000-05-00', 'FACCHIANO', 0, '2009-05-06', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Michael Facchiano Contracting', 'Yes-1 day', 'III', '', NULL, NULL, 'May', '5/6/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1918, 'Commonwealth Constructors', '0000-05-00', 'COMMONCONST', 0, '2009-05-06', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Commonwealth Constructors', 'Yes', 'LSM', '', NULL, NULL, 'May', '5/6/2009', 'Aug-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1919, 'Triad Engineering Consultants', '0000-05-00', 'TRIADNOSOL', 0, '2009-06-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Triad Engineering Consultants', 'Yes - definite', 'III', '', NULL, NULL, 'May', '6/17/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1920, 'Mactec Engineering', '0000-05-00', 'MACLON', 0, '2009-04-27', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Mactec Engineering', 'Yes', 'TJT', '', NULL, NULL, 'May', '4/27/2009', 'Jul-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1921, 'Hanson Concrete Products', '0000-05-00', 'NORTHSTARCO1', 0, '2011-04-26', '0000-00-00', NULL, 'No', 'Montgomery 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hanson Concrete Products', 'Yes-1 day', 'III', '', NULL, NULL, 'May', '4/26/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1922, 'Oldcastle Retail, Inc ', '0000-05-00', 'BONSAL', 0, '2011-04-26', '0000-00-00', NULL, 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'GET ON SITE', 'Bonsal American', 'Yes', 'TLR', '', NULL, NULL, 'May', '4/26/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1923, 'John Gulisek Construction', '0000-05-00', 'GULISEK:9306', 0, '2007-03-19', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'John Gulisek Construction', 'Yes-1day', 'TML', '', NULL, NULL, 'May', '3/19/2007', '', 'No Solicte', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1924, 'EBA Engineering', '0000-05-00', 'EBA/BALT2', 0, '2013-05-16', '0000-00-00', '2014-05-05', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'EBA Engineering', 'Yes', 'DLP', 'Range: 1 Inch', NULL, NULL, 'May ', '5/16/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1925, 'F. T. Kitlinski & Associates, Inc. ', '0000-05-00', 'FTKITLINSKI', 0, '2013-05-28', '0000-00-00', '2014-05-05', 'No', 'PA 6.00 %', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'F. T. Kitlinski & Associates, Inc. ', 'Yes', 'KAS', 'Range: 500 lbs', NULL, NULL, 'May ', '5/28/2013', '', '5/5/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1926, 'Tomas Cuerda, Inc.', '0000-05-00', 'ATLANTICPR', 0, '2006-01-04', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Atlantic Pipe Corporation', '', 'TML', '', NULL, NULL, 'May PR', '1/4/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1927, 'Tomas Cuerda, Inc.', '0000-05-00', 'EGETECH', 0, '2006-01-04', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'EGE Technologies', '', '', '', NULL, NULL, 'May PR', '1/4/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1928, 'Tomas Cuerda, Inc.', '0000-05-00', 'READYMIX/NAG', 0, '2007-02-02', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Ready Mix', '', 'TML', '', NULL, NULL, 'May PR', '2/2/2007', 'Jan-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1929, 'Tomas Cuerda, Inc.', '0000-05-00', 'SMTEST', 0, '2007-02-02', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'S&M Testing Laboratory', '', 'TML', '', NULL, NULL, 'May PR', '2/2/2007', 'May-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1930, 'Tomas Cuerda, Inc.', '0000-05-00', 'UNIVPR', 0, '2007-02-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Universidad De Puerto Rico', '', 'TML', '', NULL, NULL, 'May PR', '2/2/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1931, 'Tomas Cuerda, Inc.', '0000-05-00', 'JACTRUJELL', 0, '2008-07-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Jaca & Sierra Testing Labs', '', 'DLP', '', NULL, NULL, 'May PR', '7/9/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1932, 'Tomas Cuerda, Inc.', '0000-05-00', 'SIERRAGEO', 0, '2009-06-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Sierra Geotechnical Group', '', 'DLP', '', NULL, NULL, 'May PR', '6/19/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1933, 'Tomas Cuerda, Inc.', '0000-05-00', 'GEOENG', 0, '2009-06-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Geo Engineering', '', 'DLP', '', NULL, NULL, 'May PR', '6/19/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1934, 'Tomas Cuerda, Inc.', '0000-05-00', 'GEOCOM', 0, '2009-06-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Geocom Engineers, Inc.', '', 'DLP', '', NULL, NULL, 'May Pr', '6/19/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1935, 'Tomas Cuerda, Inc.', '0000-05-00', 'JACASIERRA', 0, '2008-07-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Jaca & Sierra Testing Labs', '', 'TPT', 'Range: 40K to 400K', NULL, NULL, 'May PR', '7/9/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1936, 'Tomas Cuerda, Inc.', '0000-05-00', 'CONSTSANTIAGO', 0, '2007-06-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Constructora Santiago', '', 'DLP', '', NULL, NULL, 'May PR', '6/15/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1937, 'Tomas Cuerda, Inc.', '0000-05-00', 'SUELOS/SANJUAN', 0, '2007-02-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Suelos, Inc.', '', 'DP', '', NULL, NULL, 'May PR', '2/2/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1938, 'Tomas Cuerda, Inc.', '0000-05-00', 'CARIBPOLE', 0, '2007-02-01', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Caribbean Pole', '', 'TML', '', NULL, NULL, 'May PR', '2/1/2007', 'Jan. 1997', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1939, 'Tomas Cuerda, Inc.', '0000-05-00', 'METROPOLITAS', 0, '2008-12-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Metropolitan Soils', '', 'TML', '', NULL, NULL, 'May PR', '12/22/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1940, 'Tomas Cuerda, Inc.', '0000-05-00', 'MARRERO', 0, '2006-01-04', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'Marrero & Associates', '', '', '', NULL, NULL, 'May PR ', '1/4/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1941, 'Birmingham Construction and Consultants', '0000-11-00', 'BECC', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'Birmingham Construction and Consultants', '', '', '', NULL, NULL, 'N/A', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1942, 'Gun Utkam', '0000-11-00', 'UTKAM', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'Gun Utkam', '', '', '', NULL, NULL, 'N/A', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1943, 'Pearson Construction', '0000-11-00', 'PEARSON', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Philadelphia', 0, '', '', b'0', '', b'0', '', 'Pearston Construction', '', '', '', NULL, NULL, 'N/A', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1944, 'Underwriters Labs', '0000-11-00', 'UNDERWRITER', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'Underwriters Labs', '', '', '', NULL, NULL, 'N/A', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1945, 'West Virginia Dept. of Transportation', '0000-11-00', 'WVDOTWESTON', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', '', b'0', '', 'West Virginia Dept. of Transportation', '', '', '', NULL, NULL, 'N/A', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1946, 'M & M Precast', '0000-11-00', 'M & M PRECAST', 0, '2012-09-26', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'FOREVER COD', 'M & M Precast', 'Yes', 'DLP', '', NULL, NULL, 'No Solicite', '9/26/2012', 'Apr-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1947, 'Professional Service Industries, Inc.', '0000-11-00', 'PSICINCINNATI', 0, '2012-11-13', NULL, '2013-11-04', 'No', 'Hamilton 6.75%', 6.75, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Professional Service Industries, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'November', '11/13/2012', 'Dec-07', '11/4/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1948, 'Vecellio & Grogan', '0000-08-00', 'VECELLIO', 0, '2013-08-28', '0000-00-00', '2014-08-18', 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', '', 'Vecellio & Grogan', 'Yes', 'TPJ', '', NULL, NULL, 'August', '8/28/2013', '', '8/18/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1949, 'GAI Consultants, Inc.', '0000-11-00', 'GAI', 0, '2012-11-27', NULL, '2013-11-11', 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Active ', b'1', 'MUST HAVE', 'GAI Consultants, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'November', '11/27/2012', 'Dec-09', '11/11/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1950, 'Consulting Services, Inc. of Kentucky ', '0000-11-00', 'CSIELIZA', 0, '2012-12-05', NULL, '2013-11-18', 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Consulting Services, Inc. of Kentucky ', 'Yes', 'KAS', '', NULL, NULL, 'November', '12/5/2012', 'Oct-11', '11/18/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1951, 'Ron Crane Scale Sales-USA', '0000-11-00', 'NFESC', 0, '2005-11-29', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'NFESC Code ESC31/Attn: Paul Barton', '', 'III', '', NULL, NULL, 'November', '11/29/2005', 'Jul-04', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1952, 'Ron Crane Scale Sales-USA', '0000-11-00', 'PJTRAILER', 0, '2006-11-27', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'PJ Trailers Manufacturing Company', 'No', 'DLP', '', NULL, NULL, 'November', '11/27/2006', 'Nov-06', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1953, 'Ron Crane Scale Sales-USA', '0000-11-00', 'TEREX', 0, '2007-12-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', 'MUST HAVE', 'Terex Unlimited', 'No', 'III', '', NULL, NULL, 'November', '12/10/2007', 'Nov-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1954, 'Ron Crane Scale Sales - USA', '0000-11-00', 'USATMDE ', 0, '2007-12-04', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'USA TMDE Activity', 'No', 'DLP', '', NULL, NULL, 'November', '12/4/2007', 'Nov-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1955, 'Ron Crane Scale Sales - USA', '0000-11-00', 'KASSOUF', 0, '2007-12-10', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Active', b'1', 'MUST HAVE', 'Kassouf Company', 'No', 'III', '', NULL, NULL, 'November', '12/10/2007', 'Nov-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1956, 'Brayman Construction', '0000-09-00', 'BRAYGAUGES2', 0, '2013-10-01', '0000-00-00', NULL, 'No', 'PA 6 %', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Brayman Construction', 'Yes', 'TPJ', 'Range:', NULL, NULL, 'September', '10/1/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1957, 'Brayman Construction', '0000-09-00', 'BRAYGAUGES', 0, '2013-10-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Brayman Construction', 'Yes', 'TPJ', 'Range: ', NULL, NULL, 'September', '10/1/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1958, 'Brayman Construction', '0000-11-00', 'BRAYMAN', 0, '2003-09-24', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Brayman Construction', '', 'TL/III', '', NULL, NULL, 'November', '9/24/2003', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1959, 'Brayman Construction', '0000-11-00', 'BRAYMAN1', 0, '2009-11-19', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Brayman Construction', '', 'III', 'Range: 20,000 lbs (10,000 psi)', NULL, NULL, 'November', '11/19/2009', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1960, 'CTL Engineering', '0000-11-00', 'CTL', 0, '2013-09-23', '0000-00-00', NULL, 'No', 'Franklin 7%-CC 5%', 12, 'Net 30', '', b'1', '', b'1', '', 'CTL Engineering', '', 'TML', 'Range: 2 Inches', NULL, NULL, 'November', '9/23/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1961, 'Doug Hanson & Associates, Inc. ', '0000-11-00', 'DOUGHANSON', 0, '2007-12-04', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'MUST HAVE', 'Doug Hanson & Associates, Inc. ', 'No', 'TPT', '', NULL, NULL, 'November', '12/4/2007', 'Nov-07', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1962, 'Afcon Corporation', '0000-11-00', 'AFCON', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Summit 6.75%', 6.75, 'COD', '', b'1', 'Inactive', b'1', '', 'Afcon Corporation', '', 'CSE', '', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1963, 'Allan A. Myers', '0000-11-00', 'MYERS', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Allan A. Myers', '', '', '', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1964, 'Atlantic Structures, Inc.', '0000-11-00', 'ATLANTICSTRUC', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Atlantic Structures, Inc.', '', 'DWC', '', NULL, NULL, 'November', '', 'Nov-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1965, 'Castek', '0000-11-00', 'CASTEK', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Castek', '', 'III', '', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1966, 'Connect, Inc.', '0000-11-00', 'CONNECTINC2', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Connect, Inc.', 'Yes', 'DWC', '', NULL, NULL, 'November', '', 'Nov-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1967, 'Ferris State University', '0000-11-00', 'FERRIS', 0, '2004-11-09', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Ferris State University', 'Yes-1 day', 'TPT', '', NULL, NULL, 'November', '11/9/2004', 'Apr-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1968, 'Franklin Industries', '0000-11-00', 'FRANKIND', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', '', b'0', '', 'Franklin Industries', '', 'III', '', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1969, 'Kiewit', '0000-11-00', 'KIEWIT', 0, '2002-10-15', '0000-00-00', NULL, 'NO', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Kiewit', 'yes', 'KLA', '', NULL, NULL, 'November', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1970, 'Michigan Department of Transportation', '0000-11-00', 'MDOT/CRY', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'In Active', b'1', 'Verbal', 'Michigan Department of Transportation', 'Yes', 'III', '', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1971, 'Rotondo Weirich', '0000-11-00', 'ROTONDO/HAZ', 0, '2004-11-22', NULL, NULL, 'OOS', '', 0, '', '', b'0', 'Active', b'0', '', 'Rotondo Weirich', '', 'DLP', ' (C-805)', NULL, NULL, 'November', '11/22/2004', 'Dec-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1972, 'Sharp Testing Service', '0000-11-00', 'SHARPTEST', 0, '2010-02-22', '0000-00-00', NULL, 'No', 'Lucas 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Sharp Testing Service', 'YES', 'DLP', 'Range: 200 lbs. to 10,000 lbs.', NULL, NULL, 'November', '2/22/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1973, 'Stark Ready Mix', '0000-11-00', 'STARKREADY', 0, '2002-12-11', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', '', 'Stark Ready Mix', '', 'KLA', '', NULL, NULL, 'November', '12/11/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1974, 'Timmis Company', '0000-11-00', 'TIMMIS', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Timmis Company', '', 'III', '', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1975, 'Tresco Paving Corp.', '0000-11-00', 'TPCASPHALT', 0, '2004-11-23', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'TPC Asphalt Supply', 'Yes', 'TML', '', NULL, NULL, 'November', '11/23/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1976, 'Western Concrete', '0000-11-00', 'WESTCONBIG', 0, '2002-07-11', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Western Concrete', 'Yes - 2 Hrs.', 'DLP', '', NULL, NULL, 'November', '7/11/2002', 'Oct-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1977, 'Williamsport Wirerope Works', '0000-11-00', 'WILLWIRE', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Williamsport Wirerope Works', 'Yes', 'CSE', 'Range 50mm', NULL, NULL, 'November', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1978, 'Cooper Tools', '0000-11-00', 'COOPERTOOLS', 0, '2006-11-15', NULL, NULL, '', '', 0, '', '', b'0', 'Active ', b'0', '', 'Cooper Tools', '', '', '', NULL, NULL, 'November', '11/15/2006', 'Nov-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1979, 'Frontier Precast LLC', '0000-11-00', 'FRONTIER', 0, '2007-08-21', '0000-00-00', NULL, 'No', 'Washington 7.25%', 7.25, 'COD', '4/17/1998', b'1', 'Inactive ', b'1', '', 'Frontier Precast LLC', 'Yes-1 day', 'TPT', 'Range: 5K to 35K (E-4 & PCI)', NULL, NULL, 'November', '8/21/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1980, 'Coastal Drilling, East, LLC', '0000-11-00', 'COASTALMORG', 0, '2006-10-12', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Coastal Drilling, East, LLC', 'Yes', '', '', NULL, NULL, 'November', '10/12/2006', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1981, 'Jamestown McAdams, Inc. ', '0000-11-00', 'JAMESTOWN', 0, '2007-10-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Jamestown McAdams, Inc. ', 'Yes', '', '', NULL, NULL, 'November', '10/31/2007', 'Oct-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1982, 'Trans Fleet Concrete ', '0000-11-00', 'TRANSFLEET', 0, '2007-11-09', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', '', 'Trans Fleet Concrete ', 'Yes', '', '', NULL, NULL, 'November', '11/9/2007', 'Nov-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1983, 'Buckeye Ready Mix', '0000-11-00', 'BUCKEYE58464', 0, '2007-11-08', '0000-00-00', NULL, 'No', 'Franklin 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Buckeye Ready Mix', 'Yes', 'DLP', '', NULL, NULL, 'November ', '11/8/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1984, 'Tomas Cuerda, Inc.', NULL, 'DELTA', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Delta Consulting Eng. Inc.', '', 'DLP', '', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1985, 'Tomas Cuerda, Inc.', NULL, 'LAGAN', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Lagan-RBR Concrete Plant', '', 'DLP', 'Range: 30KN', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1986, 'Tomas Cuerda, Inc.', NULL, 'CARIBPRESTR', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Prestress Manufacturing Corp.', '', 'DLP', 'Range: 4K/35K', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1987, 'Tomas Cuerda, Inc.', NULL, 'PONCEIM', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'PIM Geotesting Service ', '', 'TJT', 'Range: 200K', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1988, 'Tomas Cuerda, Inc.', '0000-12-00', 'ORNAMENTALP', 0, '2013-06-28', '0000-00-00', '2013-12-02', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Ornamental Poles', '', 'TJT', 'Range: 35K (8150 PSI)', NULL, NULL, 'December PR', '6/28/2013', '', '12/2/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1989, 'Tomas Cuerda, Inc.', NULL, 'UNIVPRMAY', 0, '2010-12-03', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'University of Puerto Rico at Mayaguez', '', 'TJT', 'Range: 60K / 300K', NULL, NULL, 'NovemberPR', '12/3/2010', 'Jan-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1990, 'Tomas Cuerda, Inc.', NULL, 'CASTMASTER 2', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Cast Master Precast, Inc. ', '', 'DLP', 'Range: 6K / 35K', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1991, 'Tomas Cuerda, Inc.', NULL, 'PONCEIM2', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'PIM Geotesting Services ', '', 'DLP', '', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1992, 'Tomas Cuerda, Inc. ', NULL, 'PONCEIM3', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'PIM Geotesting Services ', '', 'DLP', '', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1993, 'Tomas Cuerda, Inc.', NULL, 'FERROAG', 0, '2010-12-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Ferrovial Agroman', '', 'TPT', '', NULL, NULL, 'NovemberPR', '12/3/2010', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1994, 'Tomas Cuerda, Inc.', NULL, 'PONCEIM4', 0, '2010-12-03', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'PIM Geotesting Services ', 'No', 'DLP', '', NULL, NULL, 'NovemberPR', '12/3/2010', 'Dec-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1995, 'Tomas Cuerda, Inc.', NULL, 'TSI', 0, '2010-12-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'TSI', 'No', '', '', NULL, NULL, 'NovemberPR', '12/20/2010', 'Nov-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1996, 'Tomas Cuerda, Inc.', NULL, 'INTCONSTRSOL', 0, '2012-06-06', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'International Construction Solutions', '', 'TJT', '', NULL, NULL, 'NovemberPR', '6/6/2012', 'Aug-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1997, 'Tomas Cuerda, Inc.', NULL, 'BETTERROADOS', 0, '2010-12-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Betterroad Asphalt', '', 'DLP', 'Cap: 10K Plant #7 (E-4 & Man Specs)', NULL, NULL, 'NovemberPR', '12/21/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1998, 'Michigan Department of Transportation', '0000-10-00', 'MDOT/ALP', 0, '2013-07-22', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes -2 days', 'CJS', '', NULL, NULL, 'October', '7/22/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (1999, 'Orchard, Hiltz & McCliment, Inc.', '0000-04-00', 'OHM2', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Orchard, Hiltz & McCliment, Inc.', 'Yes ', 'TPJ', '', NULL, NULL, 'April', '4/25/2013', 'May-12', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2000, 'Wilcox Professional Services', '0000-10-00', 'WILCOX', 0, '2013-04-25', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Wilcox Professional Services', 'Yes - 1 day', 'DLP', 'Range: 500 lbs ', NULL, NULL, 'October', '4/25/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2001, 'Advance Concrete Products', '0000-09-00', 'ADVANCED', 0, '2013-10-14', '0000-00-00', '2014-09-22', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Advance Concrete Products', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', '', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2002, 'Livingston County Road Commission', '0000-10-00', 'LIVINGSTON', 0, '2013-10-15', '0000-00-00', '2014-10-06', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Livingston County Road Commission', 'Yes', 'KAS', '', NULL, NULL, 'October', '10/15/2013', '', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2003, 'Macomb Community College ', '0000-02-00', 'MACOMBCOM', 0, '2013-04-17', '0000-00-00', '2014-02-10', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Macomb Community College', 'Yes', 'KAS', '', NULL, NULL, 'February', '4/17/2013', '', '2/10/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2004, 'Macomb County Department of Roads', '0000-10-00', 'MACOMB', 0, '2013-10-16', '0000-00-00', '2014-10-06', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Macomb County Department of Roads', 'Yes-24hrs', 'KAS', '', NULL, NULL, 'October', '10/16/2013', '', '10/6/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2005, 'AEROJET', '0000-10-00', 'ATLANTICREAC', 0, '2012-10-31', '0000-00-00', '2013-10-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'AEROJET', 'Yes-definite', 'DP', 'Range: 250 ton', NULL, NULL, 'October', '10/31/2012', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2006, 'ECS Mid-Atlantic, LLC', '0000-10-00', 'ENGCONSULMD', 0, '2013-07-15', '0000-00-00', '2013-10-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'KAS', '', NULL, NULL, 'October', '7/15/2013', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2007, 'Hillis-Carnes Engineering Associates, Inc.', '0000-10-00', 'HILLIS-CARNES', 0, '2012-10-25', '0000-00-00', '2013-10-14', 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Hillis-Carnes Engineering Associates, Inc.', 'Yes', 'DP', '', NULL, NULL, 'October', '10/25/2012', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2008, 'Rocla Concrete Tie', '0000-10-00', 'ROCLA', 0, '2013-09-16', '0000-00-00', '2013-10-14', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Rocla Concrete Tie', 'Yes- 1 day', 'DLP', 'Range: 6,600 psi (995,259 lb.)', NULL, NULL, 'October', '9/16/2013', '', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2009, 'NTH Consultants', '0000-10-00', 'NTH/EXTON 2', 0, '2013-09-13', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'In Active', b'1', 'MUST HAVE', 'NTH Consultants', 'Yes', 'DLP', 'Range: 500 lbs / 1K / 2K / 5K / 10K', NULL, NULL, 'October', '9/13/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2010, 'Aquafin Inc.', '0000-10-00', 'AQUAFIN', 0, '2012-09-06', NULL, '2013-10-14', 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Aquafin Inc.', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/6/2012', 'Jan-06', '10/14/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2011, 'SMAC Testing ', '0000-10-00', 'SMAC', 0, '2012-10-09', NULL, '2013-10-21', 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'SMAC Testing ', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/9/2012', 'Apr-06', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2012, 'City of Saginaw', '0000-10-00', 'SAGINAW', 0, '2012-11-02', '0000-00-00', '2013-10-21', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', ' ', 'City of Saginaw', 'Yes', 'DLP', '', NULL, NULL, 'October', '11/2/2012', '', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2013, 'Great Lakes Superior Walls', '0000-10-00', 'SUPERIOR/GL', 0, '2012-11-02', NULL, '2013-10-21', 'OOS', '', 0, 'COD', '', b'0', 'Active', b'0', 'FOREVER COD', 'Great Lakes Superior Walls', 'Yes', 'KAS', '', NULL, NULL, 'October', '11/2/2012', 'Oct-04', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2014, 'Michigan Department of Transportation', '0000-03-00', 'MDOT/JAC', 0, '2013-03-13', '0000-00-00', '2014-03-03', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Michigan Department of Transportation', 'Yes-definite', 'III', '**Calibrate From 25K to 500K**', NULL, NULL, 'March', '3/13/2013', '', '3/3/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2015, 'Brutsche Concrete Products, Inc. ', '0000-10-00', 'BRUTSCHE', 0, '2012-09-06', NULL, '2013-10-21', 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'Brutsche Concrete Products, Inc. ', 'Yes', 'TJT', 'Range: 15 in Hg', NULL, NULL, 'October', '9/6/2012', 'Oct-07', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2016, 'Mack Vault Co of Toledo, Inc.', '0000-10-00', 'MACKOH', 0, '2012-11-02', '0000-00-00', '2013-10-28', 'No', 'Wood 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Mack Vault Co of Toledo, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'October', '11/2/2012', '', '10/28/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2017, 'Ron Crane Scale Sales-USA', '0000-10-00', 'BOEING2', 0, '2007-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Boeing Company', 'No', 'MTR', '', NULL, NULL, 'October', '10/15/2007', 'Oct-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2018, 'Ron Crane Scale Sales-USA', '0000-10-00', 'USCGCUTTER', 0, '2007-10-23', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'USCG-Cutter Sycamore', 'No', 'III', '', NULL, NULL, 'October', '10/23/2007', 'Oct-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2019, 'Beaver Engineering, Inc.', '0000-10-00', 'BEAVERINC', 0, '2006-11-13', '0000-00-00', NULL, '', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Beaver Engineering, Inc. ', '', 'MTR ', '', NULL, NULL, 'October', '11/13/2006', '', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2020, 'Alt & Witzig', '0000-10-00', 'ALTWITLAF2', 0, '2007-09-07', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Alt & Witzig', 'Yes - 1 Day', '', '', NULL, NULL, 'October', '9/7/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2021, 'Amick Associates', '0000-10-00', 'AMICK', 0, '2004-10-27', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Amick Associates', 'Yes-1 day', 'DWC', 'Range 3000Kg (6614 lbs.)', NULL, NULL, 'October', '10/27/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2022, 'Asphalt Products', '0000-10-00', 'CADILLAC/ASPH', 0, '2005-09-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Cadillac Asphalt', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/27/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2023, 'Baker Concrete Construction', '0000-10-00', 'BAKER', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Baker Concrete Construction', '', 'CSE', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2024, 'Balfour Beatty Construction, Inc.', '0000-10-00', 'BALFOUR', 0, '2002-10-15', NULL, NULL, 'Yes', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Balfour Beatty Construction, Inc.', 'Yes-definite', 'KLA', '', NULL, NULL, 'October', '10/15/2002', 'Jan-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2025, 'Champagne-Webber', '0000-10-00', 'CHAMPAGN', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Champagne-Webber', '', 'CSE', '', NULL, NULL, 'October', '', 'Oct-95', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2026, 'Denton Construction', '0000-10-00', 'DENTON', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'Vbl', 'Denton Construction', '', 'III', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2027, 'Dependable Chemical', '0000-10-00', 'DEPENDABLE', 0, '2005-10-18', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Active', b'1', '', 'Dependable Chemical', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/18/2005', 'Sep-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2028, 'Fostoria Concrete Products, Inc.', '0000-10-00', 'FOSTORIA', 0, '2004-09-30', NULL, NULL, 'No', 'Seneca 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Fostoria Concrete Products, Inc.', '', 'DWC', '', NULL, NULL, 'October', '9/30/2004', 'Oct-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2029, 'GSE', '0000-10-00', 'GSE', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'VISA', '', b'1', 'Active', b'1', 'VISA', 'GSE', '', 'III', '', NULL, NULL, 'October', '10/15/2002', 'Oct-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2030, 'Hi-Way Paving Company', '0000-10-00', 'HIWAYPAVING', 0, '2004-04-08', '0000-00-00', NULL, 'No', 'Mahoning 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Hi-Way Paving Company', '', 'DWC', '', NULL, NULL, 'October', '4/8/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2031, 'Klondike Concrete', '0000-10-00', 'KLONDIKE1', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Klondike Concrete', '', 'CSE', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2032, 'Klondike Concrete', '0000-10-00', 'KLONDIKE2', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Klondike Concrete', '', 'JJC', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2033, 'Material Testing Consultants', '0000-10-00', 'MATERIAL/DEXTER', 0, '2007-07-12', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Material Testing Consultants', 'Yes - 1 day', '', '', NULL, NULL, 'October', '7/12/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2034, 'Metro Supply (Premarc)', '0000-10-00', 'METROSUPPLY', 0, '2004-10-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Metro Supply / Precision Pipe & Supply', 'Yes', 'DWC', 'Range 3K / 45K ', NULL, NULL, 'October', '10/14/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2035, 'Midwest Testing', '0000-10-00', 'MIDWEST145', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Midwest Testing', 'Yes', 'KLA', '', NULL, NULL, 'October', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2036, 'Midwest Testing', '0000-10-00', 'MIDWEST69156', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', '', 'Midwest Testing', '', 'DWC', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2037, 'Midwest Testing', '0000-10-00', 'MIDWESTLI', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Midwest Testing', '', 'KLA', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2038, 'Mosites Construction', '0000-10-00', 'MOSITESMONO', 0, '2005-11-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mosites Construction', 'Yes', 'TPT', '', NULL, NULL, 'October', '11/1/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2039, 'North Central Construction Co.', '0000-10-00', 'NORTHCENTRAL', 0, '2002-11-21', NULL, NULL, 'No', 'Wayne 6.5%', 6.5, 'Net 30', '', b'1', '', b'1', '', 'North Central Construction Co.', 'No', 'KLA', '', NULL, NULL, 'October', '11/21/2002', 'Nov-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2040, 'NTH Consultants', '0000-10-00', 'NTH Consultants', 0, '2002-11-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'NTH Consultants', 'Yes', 'KLA', '', NULL, NULL, 'October', '11/21/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2041, 'Professional Service Industries, Inc.', '0000-10-00', 'PSI/ANAR', 0, '2002-10-14', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'DWC', '', NULL, NULL, 'October', '10/14/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2042, 'Qore Property Sciences', '0000-10-00', 'QORELIMA', 0, '2007-09-13', '0000-00-00', NULL, 'No', 'Allen 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Qore Property Sciences', 'Yes', 'III', '', NULL, NULL, 'October', '9/13/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2043, 'Soils & Materials Engineers, Inc.', '0000-10-00', 'SOILS/KA', 0, '2006-06-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers, Inc.', 'Yes - 1 day', 'TML', '', NULL, NULL, 'October', '6/20/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2044, 'STS Consultants, Ltd.', '0000-10-00', 'STSDETROIT', 0, '2005-10-04', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'STS Consultants, Ltd.', 'Yes', 'TPT', '', NULL, NULL, 'October', '10/4/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (2045, 'Tes Tech', '0000-10-00', 'TESTECH2', 0, '2007-09-11', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Tes Tech', '24 HOURS', 'DLP', '', NULL, NULL, 'October', '9/11/2007', 'Mar-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2046, 'Theut Products, Inc.', '0000-10-00', 'THEUT', 0, '2007-09-17', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Theut Products, Inc.', 'Yes', 'TML', '', NULL, NULL, 'October', '9/17/2007', 'Jan-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2047, 'Thompson-McCully', '0000-10-00', 'THOMPMCCU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Thompson-McCully', '', 'CSE', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2048, 'Universal Concrete', '0000-10-00', 'UNIVCONC', 0, '2005-11-01', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', '', b'0', '', 'Universal Concrete', '', 'New', '', NULL, NULL, 'October', '11/1/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2049, 'West Philadelphia Bronze', '0000-10-00', 'WESTPHIL', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'West Philadelphia Bronze', '', 'CSE', '', NULL, NULL, 'October', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2050, 'Wheatland Tube Company Sharon Plant', '0000-10-00', 'WHEATLAND', 0, '2011-11-16', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Wheatland Tube Company Sharon Plant', 'Yes- 1 day', 'DLP', 'Range .02\"', NULL, NULL, 'October', '11/16/2011', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2051, 'Whiting & Turner Construction', '0000-10-00', 'WHITING', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Whiting & Turner Construction', 'Yes', 'DWC', 'Range 20K', NULL, NULL, 'October', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2052, 'Wightman Ward', '0000-10-00', 'WIGHTMAN', 0, '2005-09-14', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Wightman Ward', 'Yes', 'KLA', '', NULL, NULL, 'October', '9/14/2005', 'Aug-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2053, 'Zenmar Power Tools & Hoists', '0000-10-00', 'ZENMAR', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Zenmar Power Tools & Hoists', 'Yes-48 hrs.', 'DWC', 'Range 110K', NULL, NULL, 'October', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2054, 'Pulte Home Sciences of Virginia, LLC', '0000-10-00', 'PULTE/VA', 0, '2008-08-06', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Pulte Home Sciences of Virginia, LLC', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'October', '8/6/2008', 'Nov-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2055, 'Southgate Concrete', '0000-10-00', 'SOUTHGATE', 0, '2009-09-30', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Southgate Concrete', 'Yes', 'TPT', '', NULL, NULL, 'October', '9/30/2009', 'Oct-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2056, 'McDowell & Associates', '0000-10-00', 'MCDOWELLWY', 0, '2008-08-12', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'McDowell & Associates', 'Yes', 'III/TJT', '', NULL, NULL, 'October', '8/12/2008', 'Nov-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2057, 'Rocla Concrete Tie', '0000-10-00', 'ROCLAOOS', 0, '2008-08-13', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'GET ON SITE', 'Rocla Concrete Tie', 'Yes- 1 day', 'TPT', 'Range: .5 inch', NULL, NULL, 'October', '8/13/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2058, 'NTH Consultants', '0000-10-00', 'NTH/EXTON', 0, '2012-08-30', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'NTH Consultants', 'Yes', 'DLP', 'Range: 500K', NULL, NULL, 'October', '8/30/2012', 'Oct-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2059, 'Bradstone', '0000-10-00', 'BRADSTONE', 0, '2010-09-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'Get PO#', 'Bradstone', 'Yes', 'TLR', '', NULL, NULL, 'October', '9/13/2010', 'Feb-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2060, 'AEC, Inc.', '0000-10-00', 'AEC/MANASSAS', 0, '2007-09-25', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'AEC, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/25/2007', 'Jan-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2061, 'Hydro Conduit', '0000-10-00', 'HYDROCONDUIT', 0, '2007-09-11', NULL, NULL, 'No', 'Portage 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hydro Conduit', '', 'TML', 'Range: 2,500 lbs to 250,000 lbs', NULL, NULL, 'October', '9/11/2007', 'Oct-01', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2062, 'TTL Associates, Inc.', '0000-10-00', 'TOLEDO70054', 0, '2013-09-20', '0000-00-00', NULL, 'OOS', '', 0, 'COD', 'Sep-13', b'1', 'Inactive', b'1', 'MUST HAVE', 'TTL Associates, Inc.', 'Yes-definite', 'DLP', '', NULL, NULL, 'October', '9/20/2013', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2063, 'Upper Peninsula Concrete Pipe', '0000-10-00', 'UPPERPEN', 0, '2007-09-25', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Upper Peninsula Concrete Pipe', 'Yes', 'III', '', NULL, NULL, 'October', '9/25/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2064, 'Rinox Pavers, LLC', '0000-10-00', 'RINOXPAVER', 0, '2007-09-17', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Rinox Pavers, LLC', 'Yes', 'TPT', '', NULL, NULL, 'October', '9/17/2007', 'Oct-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2065, 'HRI, Inc.', '0000-10-00', 'HRIARIEL ', 0, '2007-07-10', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'HRI, Inc. 96 Hanson', 'Yes', 'MTR', '', NULL, NULL, 'October', '7/10/2007', 'Oct-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2066, 'NTH Consultants', '0000-10-00', 'NTH/FARMOOS1', 0, '2008-11-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'NTH Consultants', 'Yes- 1 day', 'TPT', 'Range: 1,100 lbs ', NULL, NULL, 'October', '11/17/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2067, 'Oldcastle APG', '0000-10-00', 'AKRONBR', 0, '2010-09-14', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Akron Brick & Block', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'October', '9/14/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2068, 'S J Chain', '0000-10-00', 'SJCHAIN', 0, '2010-05-05', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'SJ Chain', 'Yes-1 Day', 'TJT', '', NULL, NULL, 'October', '5/5/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2069, 'Walsh Construction', '0000-10-00', 'WALSH', 0, '2007-10-29', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Walsh Construction', 'Yes', 'TPT', '', NULL, NULL, 'October', '10/29/2007', 'May-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2070, 'Cinder & Concrete Block Corporation ', '0000-10-00', 'C&CBLOCK', 0, '2009-09-28', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'CREDIT CARD', 'Cinder & Concrete Block Corporation ', 'Yes', 'TPT', '', NULL, NULL, 'October', '9/28/2009', 'Dec-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2071, 'Co-Pipe Production Facility', '0000-10-00', 'CO-PIPE', 0, '2007-10-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Co-Pipe Production Facility', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/9/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2072, 'Instrotek, Inc. (IPC Global)', '0000-10-00', 'INSTROTEK', 0, '2009-09-30', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'University of Maryland ', 'Yes', 'DLP', 'Range: 600 KPA ', NULL, NULL, 'October', '9/30/2009', 'Oct-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2073, 'Instroteck, Inc. 9IPC Global)', '0000-10-00', 'INSTROTEK2', 0, '2009-09-30', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'University of Maryland ', 'Yes', 'DLP', 'Range: +/- 2.5 mm ', NULL, NULL, 'October', '9/30/2009', 'Oct-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2074, 'Concrete Protection & Restoration', '0000-10-00', 'CP&R1OOS', 0, '2011-09-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE PO', 'Concrete Protection & Restoration', 'Yes', 'III/LSM', 'Range: 35K (E-4 & PCI) & #231', NULL, NULL, 'October', '9/29/2011', 'Jun-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2075, 'Stress Con Industries, Inc.', '0000-10-00', 'STRESSCONDET2', 0, '2011-04-26', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Stress Con Industries, Inc.', 'Yes', 'MTR', 'Range: 3,000 lbs. to 47,000 lbs.', NULL, NULL, 'October', '4/26/2011', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2076, 'New Enterprise Stone & Lime', '0000-10-00', 'NESL674/976', 0, '2008-09-10', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'New Enterprise Stone & Lime ', 'Yes', 'III', '', NULL, NULL, 'October', '9/10/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2077, 'Geo Services, LLC', '0000-10-00', 'GEOFTLEE', 0, '2009-09-16', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Geo Services, LLC', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/16/2009', 'Dec-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2078, 'McDowell & Associates', '0000-10-00', 'MCDOWELL', 0, '2013-05-02', NULL, '2013-10-21', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'McDowell & Associates', 'Yes', 'TPJ', 'Range: 10K ', NULL, NULL, 'October ', '5/2/2013', 'Nov-05', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2079, 'Professional Service Industries, Inc.', '0000-10-00', 'PSI/PLY1', 0, '2012-11-02', '0000-00-00', '2013-10-21', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes- 1 day', 'DLP', 'Range: 78 to 82', NULL, NULL, 'October ', '11/2/2012', '', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2080, 'Professional Service Industries, Inc.', '0000-10-00', 'PSI/PLY2', 0, '2013-10-01', '0000-00-00', '2013-10-21', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Professional Service Industries, Inc.', 'Yes- 1 day', 'DLP', 'Range: 0.8 inch', NULL, NULL, 'October ', '10/1/2013', '', '10/21/2013', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2081, 'B.P. Short & Son Paving Co., Inc. ', '0000-10-00', 'BPSHORT', 0, '2007-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', '', 'B.P. Short & Son Paving Co., Inc. ', 'Yes', '', '', NULL, NULL, 'October ', '10/15/2007', 'Oct-07', 'In House ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2082, 'NTH Consultants', '0000-10-00', 'NTHDEAR', 0, '2009-09-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'NTH Consultants', 'Yes- 1 day', 'LSM', '', NULL, NULL, 'October ', '9/17/2009', 'Jun-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2083, 'Concrete Protection & Restoration', '0000-10-00', 'CP&R2OOS', 0, '2011-09-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE PO', 'Concrete Protection & Restoration', 'Yes', 'III/LSM', 'Range: 10,000 PSI ', NULL, NULL, 'October ', '9/29/2011', 'Jun-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2084, 'New Enterprise Stone & Lime', '0000-06-00', 'NEWENT', 0, '2013-07-12', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'TPJ', 'Range: 60K', NULL, NULL, 'June', '7/12/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2085, 'Advanced Drainage System (ADS)', '0000-09-00', 'ADVDRAIN/MUN', 0, '2013-09-23', NULL, '2014-09-01', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active ', b'1', '', 'Advanced Drainage System (ADS)', 'Yes-1 Day', 'KAS', '', NULL, NULL, 'September', '9/23/2013', 'Nov-02', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2086, 'Architectural Testing, Inc.', '0000-09-00', 'ARCHTEST', 0, '2013-09-23', NULL, '2014-09-01', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Architectural Testing, Inc.', 'Yes', 'DLP', 'Range: 50 lbs ', NULL, NULL, 'September', '9/23/2013', 'Nov-04', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2087, 'Chase Nedrow Manufacturing', '0000-04-00', 'CHASENED', 0, '2013-05-14', NULL, '2014-04-07', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Chase Nedrow Manufacturing', 'Yes', 'KAS', ' ', NULL, NULL, 'April', '5/14/2013', 'Apr-13', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2088, 'Air Products and Chemicals Inc.', '0000-09-00', 'AIRPRODUCTS', 0, '2013-10-01', NULL, NULL, 'No', 'PA 6 %', 6, 'COD', '', b'1', 'Active', b'1', '', 'Air Products and Chemicals Inc.', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/1/2013', 'Sep-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2089, 'Nitterhouse Concrete Products, Inc.', '0000-09-00', 'NITTERHOUSE', 0, '2013-09-23', '0000-00-00', '2014-09-01', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Nitterhouse Concrete Products, Inc.', 'Yes', 'CS/TJ', 'Range: 50K', NULL, NULL, 'September', '9/23/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2090, 'United Inspection Services', '0000-09-00', 'UNITEDINSP', 0, '2013-09-23', '0000-00-00', '2014-09-01', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'United Inspection Services', 'Yes- 1 day', 'KAS', 'Cap: 500 lbs', NULL, NULL, 'September', '9/23/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2091, 'Valley Quarries', '0000-09-00', 'VALLEY', 0, '2013-10-01', '0000-00-00', '2014-09-01', 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Chambersburg Quarry', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/1/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2092, 'Nitterhouse Concrete Products, Inc.', '0000-09-00', 'NITTERHOUSE2', 0, '2013-09-23', '0000-00-00', '2014-09-01', 'YES', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Nitterhouse Concrete Products, Inc.', 'Yes', 'CS/TJ', 'Range:13.5 KN/89 KN (E-4 & PCI & 2%) ', NULL, NULL, 'September', '9/23/2013', '', '9/1/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2093, 'Frank Bryan Incorporated', '0000-09-00', 'CON/MCKEES', 0, '2013-09-19', '0000-00-00', '2014-09-08', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Concrete Concepts c/o Frank Bryan Inc.', 'Yes-1 day', 'KAS', '', NULL, NULL, 'September', '9/19/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2094, 'R.W. Sidley Precast', '0000-09-00', 'SIDLEY/YOUNG', 0, '2013-09-19', '0000-00-00', '2014-09-08', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Get PO#', 'R.W. Sidley Precast', 'Yes', 'DLP', 'Range: 3K / 37K ', NULL, NULL, 'September', '9/19/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2095, 'Valley Concrete', '0000-09-00', 'AOKTRUCK', 0, '2013-09-17', NULL, '2014-09-08', 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Valley Concrete', 'Yes', 'KAS', '', NULL, NULL, 'September', '9/17/2013', 'Sep-96', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2096, 'Tes Tech', '0000-09-00', 'TESTECHLANS', 0, '2013-10-14', '0000-00-00', '2014-09-22', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Tes Tech', 'YES/MUST', 'KAS', 'Range: 20K ', NULL, NULL, 'September', '10/14/2013', '', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2097, 'Janotta & Herner, Inc.', '0000-09-00', 'JANOTTA', 0, '2013-10-14', NULL, '2014-09-22', 'No', 'Monroe 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', ' ', 'Janotta & Herner, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', 'Aug-04', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2098, 'NTH Consultants', '0000-09-00', 'NTHLANSING', 0, '2013-10-14', NULL, '2014-09-22', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'NTH Consultants', 'Yes- 1 day', 'TPJ', 'Range: 11K', NULL, NULL, 'September', '10/14/2013', 'Jun-00', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2099, 'NTH Consultants', '0000-09-00', 'NEYER:KENTW', 0, '2013-10-14', '0000-00-00', '2014-09-22', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'NTH Consultants', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', '', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2100, 'Peterman Concrete', '0000-09-00', 'PETERMAN', 0, '2013-10-14', NULL, '2014-09-22', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Peterman Concrete', 'Yes', 'TPJ', '', NULL, NULL, 'September', '10/14/2013', 'Jan-05', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2101, 'Carlesimo Products Inc.', '0000-09-00', 'CARLESIMO', 0, '2013-10-14', '0000-00-00', '2014-09-29', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Carlesimo Products Inc.', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/14/2013', '', '9/29/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2102, 'Ron Crane Scale Sales - USA', '0000-09-00', 'EQUITEX', 0, '2006-10-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Equitex Mfg.', '', 'TML', '', NULL, NULL, 'September', '10/3/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2103, 'Ron Crane Scale Sales USA', '0000-09-00', 'NIPPON', 0, '2006-09-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Nippon Paper Industry USA', 'Yes', 'III', '', NULL, NULL, 'September', '9/20/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2104, 'Ron Crane Scale Sales - USA', '0000-09-00', 'BWXT', 0, '2006-10-11', '0000-00-00', NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'BWXT', 'Yes', 'DLP', '', NULL, NULL, 'September', '10/11/2006', '', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2105, 'Ron Crane Scale Sales -USA', '0000-09-00', 'CORNERAK', 0, '2007-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active', b'0', 'MUST HAVE', 'Cornerstone Construction Co., Inc. ', 'No', 'DLP', '', NULL, NULL, 'September', '10/15/2007', 'Sep-07', 'CRANE', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2106, 'Tindall Corporation', '0000-09-00', 'TINDALL', 0, '2007-01-17', '0000-00-00', NULL, '', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Tindall Corporation', 'Yes', 'MTR', '', NULL, NULL, 'September', '1/17/2007', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2107, 'Ellis Brothers Concrete', '0000-09-00', 'DRYCREEKOH', 0, '2008-08-14', NULL, NULL, 'Yes', '', 0, 'COD', '', b'1', 'Inactive ', b'1', '', 'Ellis Brothers Concrete', '24 hrs.', 'TML', '', NULL, NULL, 'September', '8/14/2008', 'Jan-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2108, 'A & L Inc.', '0000-09-00', 'A&L', 0, '2003-09-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '2-Aug', b'1', 'Inactive', b'1', '', 'A & L Inc.', 'Yes- 1 day', 'DWC', '', NULL, NULL, 'September', '9/26/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2109, 'Artech Testing, L.L.C.', '0000-09-00', 'ARTECH', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'VISA', '', b'1', 'Inactive', b'1', '', 'Artech Testing, L.L.C.', '', 'CSE', 'Range 5/24/60/120K', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2110, 'Bush Burchett', '0000-09-00', 'BUSH BURCHETT', 0, '2006-09-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Bush Burchett', 'Yes', 'DLP', '', NULL, NULL, 'September', '9/20/2006', 'Oct-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2111, 'Chaney Enterprises', '0000-09-00', 'CHANEY', 0, '2005-09-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Chaney Enterprises', 'Yes-24hrs.', 'DLP', '', NULL, NULL, 'September', '9/9/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2112, 'Concrete Testing, Inc.', '0000-09-00', 'CONCRETE', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Concrete Testing, Inc.', '', 'CSE', '', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2113, 'Concurrent Technologies', '0000-09-00', 'CONCUR', 0, '0000-00-00', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Concurrent Technologies', 'Yes', '', '', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2114, 'Construction Materials Testing Services, Inc.', '0000-09-00', 'CONSTRMAT', 0, '2004-09-16', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', '', b'0', '', 'Construction Materials Testing Services, Inc.', '', 'TML', '', NULL, NULL, 'September', '9/16/2004', 'Oct-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2115, 'Construction Testing, Inc.', '0000-09-00', 'CONSTST', 0, '2003-09-24', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Construction Testing', 'Yes - 1 day', 'TPT', '', NULL, NULL, 'September', '9/24/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2116, 'Contours, Ltd.', '0000-09-00', 'CONTOURS', 0, '2002-09-20', NULL, NULL, 'No', 'Wayne 6.5%', 6.5, 'Net 30', '', b'1', '', b'1', '', 'Contours, Ltd.', 'Yes', 'DWC', 'Range: 1 inch', NULL, NULL, 'September', '9/20/2002', 'Jul-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2117, 'Custom Concrete', '0000-09-00', 'CUSTOM', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Custom Concrete', 'Yes-definite', 'III', '', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2118, 'Dalloz Fall Protection', '0000-09-00', 'DALLOZ', 0, '2003-08-02', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Dalloz Fall Protection', 'Yes', 'DWC', '', NULL, NULL, 'September', '8/2/2003', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2119, 'Engineering & Testing 2000 Inc.', '0000-09-00', 'ENGINTEST2000', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'COD', 'Engineering & Testing 2000 Inc.', '', 'KLA', '', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2120, 'Evergreen Testing', '0000-09-00', 'EVERGREEN', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'Fax', 'Evergreen Testing', 'Yes', 'CSE', '', NULL, NULL, 'September', '', '1993', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2121, 'Federal Highway Administration', '0000-09-00', 'FEDHWY', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'In Active', b'1', '', 'Federal Highway Administration', 'Yes', 'CSE', '', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2122, 'HRI, Inc.', '0000-09-00', 'HRI01040', 0, '2008-05-06', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'HRI, Inc.', 'Yes', 'TPT', '', NULL, NULL, 'September', '5/6/2008', 'Oct-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2123, 'Irving Materials, Inc.', '0000-09-00', 'IRVING', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Irving Materials, Inc.', 'Yes - 1 day', 'KLA', '', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2124, 'Keystone Precast', '0000-09-00', 'KEYSTONE/KITT', 0, '2005-09-09', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Active', b'0', '', 'Keystone Precast', 'Yes-1 day', 'TPT', '', NULL, NULL, 'September', '9/9/2005', 'Oct-01', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2125, 'Kokosing Construction', '0000-09-00', 'KOKOSING', 0, '2002-10-15', '0000-00-00', NULL, 'No', 'Washington 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'Kokosing Construction Co.', '', 'DWC', '', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2126, 'Lafarge Calcium Aluminates', '0000-09-00', 'LAFARGECHES', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Lafarge Calcium Aluminates', 'Yes', 'DWC', 'Range', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2127, 'Lee Brick & Block', '0000-09-00', 'LEE', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'COD', 'Lee Brick & Block', '', 'CSE', '', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2128, 'Marshall Miller & Associates', '0000-09-00', 'MARSHALLVA', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Marshall Miller & Associates', 'Yes- 1 day', 'DLP', 'Load Cell: 2K', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2129, 'Martin Marietta Aggregates', '0000-09-00', 'MARTIN', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', 'Active', b'1', '', 'Martin Marietta Aggregates', '', 'CSE', '', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2130, 'Meyer Consulting Engineers P.C.', '0000-09-00', 'MEYER', 0, '2005-09-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Meyer Consulting Engineers P.C.', 'Yes', 'TPT', '', NULL, NULL, 'September', '9/20/2005', 'Sep-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2131, 'Morgan State University', '0000-09-00', 'MORGAN', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Morgan State University', 'Yes', 'DWC', '', NULL, NULL, 'September', '', 'Jan-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2132, 'New Enterprise Stone & Lime', '0000-09-00', 'NEWENT/P-392', 0, '2006-01-25', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes', 'TML', '', NULL, NULL, 'September', '1/25/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2133, 'Newell Porcelain Company', '0000-09-00', 'NEWELL', 0, '2005-09-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Newell Porcelain Company', 'Yes -1 Day', 'TML', '', NULL, NULL, 'September', '9/9/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2134, 'Ohio Power Company', '0000-09-00', 'AMELEC/CONE', 0, '2005-09-14', '0000-00-00', NULL, 'No', 'Coshocton 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', '', 'American Electric Power', 'Yes', 'TML', '', NULL, NULL, 'September', '9/14/2005', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2135, 'Patton Harris Rust & Associates', '0000-09-00', 'PATONHARRIS', 0, '2007-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Patton Harris Rust & Associates', 'Yes', 'DLP', '', NULL, NULL, 'September', '1/15/2007', 'Jun-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2136, 'Pinehill Concrete Mix Corporation', '0000-09-00', 'PINEHILL', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Pinehill Concrete Mix Corp.', '', 'CSE', '', NULL, NULL, 'September', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2137, 'Potomac Electric Power', '0000-09-00', 'POTOMAC1', 0, '2002-10-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Potomac Electric Power', 'Yes', '', 'Range 225K', NULL, NULL, 'September', '10/15/2002', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2138, 'Rahns Construction Materials', '0000-09-00', 'RAHNS', 0, '2004-08-19', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Rahns Construction Materials', '', 'TPT', '', NULL, NULL, 'September', '8/19/2004', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2139, 'Rotondo, Weirick, & Assoc.', '0000-09-00', 'ROTONDO', 0, '2002-10-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Rotondo, Weirick, & Assoc.', 'Yes', '', '', NULL, NULL, 'September', '10/15/2002', 'Aug-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2140, 'Stegner Food Products', '0000-09-00', 'STEGNER', 0, '2005-08-25', NULL, NULL, 'No', 'Hamilton 6.75%', 6.75, 'Net 30', '', b'1', '', b'1', '', 'Stegner Food Products', 'Yes', 'DLP', '', NULL, NULL, 'September', '8/25/2005', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2141, 'Testwell Labs Inc/Ossining', '0000-09-00', 'TESTWELL', 0, '2004-12-17', NULL, NULL, 'OOS', '', 0, '', '', b'0', 'Active', b'0', '', 'Testwell Labs Inc', 'Yes', 'TML', '', NULL, NULL, 'September', '12/17/2004', 'Sep-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2142, 'Patterson Supply Co.', '0000-09-00', 'PATTERSON', 0, '2008-08-25', NULL, NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Patterson Supply Co.', 'YES - 1 day', 'MTR', '', NULL, NULL, 'September', '8/25/2008', 'Jan-98', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2143, 'Wheatland Tube Company', '0000-09-00', 'WHEATLANDNS', 0, '2011-11-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Wheatland Tube Company', 'Yes', '', 'Range: ', NULL, NULL, 'September', '11/16/2011', 'Oct-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2144, 'CMX', '0000-09-00', 'ADVANTAGE', 0, '2011-08-18', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'CMX', 'Yes', 'TJT', '', NULL, NULL, 'September', '8/18/2011', 'Aug-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2145, 'Hancor, Inc. (South Plant)', '0000-09-00', 'HANCORSOUTH', 0, '2011-09-01', NULL, NULL, 'No', 'Hancock 6.75%', 6.75, 'MC', '', b'1', 'Inactive ', b'1', 'GET CARD #', 'Hancor, Inc. (South Plant)', 'Yes-1day', 'TJT', '', NULL, NULL, 'September', '9/1/2011', 'Mar-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2146, 'Bush Burchett', '0000-09-00', 'BUSH/BUR11501G', 0, '2007-08-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Bush Burchett', 'Yes', 'TML', '', NULL, NULL, 'September', '8/17/2007', 'Jul-02', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2147, 'Trus Joist', '0000-09-00', 'TRUSJOIST', 0, '2007-06-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'0', '', 'Trus Joist', 'Yes - 5 Days', 'TML', 'Range: 20K', NULL, NULL, 'September', '6/13/2007', 'Oct-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2148, 'National Concrete Masonry Assoc.', '0000-09-00', 'NCMA1', 0, '2007-09-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'National Concrete Masonry Assoc.', 'Yes-1 day', 'III', 'Cap: 2000#', NULL, NULL, 'September', '9/19/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2149, 'Pennsylvania Department of Transporation', '0000-09-00', 'PADOTHAR4', 0, '2008-08-19', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Pennsylvania Department of Transporation', 'Yes-3 days', 'TML', 'Cap: 275 psi', NULL, NULL, 'September', '8/19/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2150, 'Commonwealth of Pennsylvania', '0000-09-00', 'PADOTHAR4', 0, '2008-08-19', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Pennsylvania Department of Transportation', 'Yes-3 days', 'TPT', 'Range: 150 lbs to 1,500 lbs,1/8 to 22 TSF ', NULL, NULL, 'September', '8/19/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2151, 'CerCo LLC Diamonite', '0000-09-00', 'CERCO', 0, '2008-07-23', NULL, NULL, 'No', 'Wayne 6.5%', 6.5, 'COD', '', b'1', 'Inactive ', b'1', 'FOREVER COD', 'CerCo LLC Diamonite', 'Yes', 'TML', '', NULL, NULL, 'September', '7/23/2008', 'Sep-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2152, 'Tyme Engineering, Inc.', '0000-04-00', 'TYME2', 0, '2013-04-25', NULL, '2014-04-07', 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Tyme Engineering, Inc.', 'Yes', 'CJS', '', NULL, NULL, 'April', '4/25/2013', 'Jun-08', '4/7/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2153, 'Hi-Way Paving Company', '0000-09-00', 'HIWAYJHNTWN', 0, '2008-07-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Hi-Way Paving Company', 'Yes 1 Day', 'MTR', 'Range: 30K and 250K', NULL, NULL, 'September', '7/15/2008', 'Apr-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2154, 'Holcim (US) Inc.', '0000-09-00', 'HOLNAM', 0, '2007-10-30', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'Credit Card', 'Holcim (US) Inc.', 'Yes-1 day', 'MTR', '', NULL, NULL, 'September', '10/30/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2155, 'Horton Precast Concrete', '0000-09-00', 'HORTONPRE', 0, '2008-07-10', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Horton Precast Concrete', 'Yes-1 Day', 'TPT', '', NULL, NULL, 'September', '7/10/2008', 'Oct-99', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2156, 'Universal Specialties', '0000-09-00', 'UNIVERSAL', 0, '2013-09-19', '0000-00-00', '2014-09-08', 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Active', b'1', 'GET PO#', 'Universal Specialties', 'Yes', 'KAS', '', NULL, NULL, 'September ', '9/19/2013', '', '9/8/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2157, 'CRA - Conestoga-Rovers & Associates', '0000-09-00', 'CRAPLYMOUTH', 0, '2013-10-14', NULL, '2014-09-22', 'OOS', '', 0, 'Net 30 ', ' ', b'1', 'Active ', b'1', ' ', 'CRA - Conestoga-Rovers & Associates', 'Yes', 'KAS', '', NULL, NULL, 'September ', '10/14/2013', 'Sep-04', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2158, 'Staunton Division Materials Lab', '0000-09-00', 'COLSCIENTIFIC', 0, '2006-03-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', '', 'Staunton Division Materials Lab', 'Yes', 'TML', '', NULL, NULL, 'September ', '3/6/2006', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2159, 'Mosites Construction', '0000-09-00', 'MOSITES/MAN', 0, '2008-08-19', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Mosites Construction', 'Yes', 'MTR', '', NULL, NULL, 'September ', '8/19/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2160, 'Terracon (OOS)', '0000-00-00', 'TERR912OOS', 0, '2012-10-17', '0000-00-00', NULL, '', '', 0, '', '', b'0', '', b'0', '', 'Terracon', '', 'TJT', 'Range: 0.6 inch (OOS)', NULL, NULL, '', '10/17/2012', '', 'NO SOLICIT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2161, 'Magee Rieter Automotive Systems', '0000-00-00', 'MAGEERIETER', 0, '2006-04-13', NULL, NULL, 'No', 'PA 6.00%', 6, 'COD', '', b'0', 'Active', b'0', '', 'Magee Rieter Automotive Systems', 'Yes', '', '', NULL, NULL, '', '4/13/2006', 'Apr-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2162, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2163, '', '0000-00-00', ' ', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2164, ' ', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, ' ', '', b'0', '', b'0', ' ', '', ' ', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2165, '', '0000-00-00', '', 0, '2012-10-16', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '10/16/2012', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2166, '', '0000-00-00', '', 0, '2012-10-16', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '10/16/2012', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2167, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2168, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2169, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', 'Yes', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2170, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', 'OOS', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2171, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2172, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', 'OOS', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2173, '', '0000-00-00', 'AUTHDE', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2174, '', '0000-00-00', '', 0, '0000-00-00', NULL, '0000-00-00', 'No', 'PA 6%', 6, '', '', b'1', 'Inactive', b'1', '', '', '', '', '', NULL, NULL, '', '', 'Jan-98', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2175, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', 'OOS', '', 0, '', '', b'1', 'Active', b'1', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2176, '', '0000-00-00', '', 0, NULL, '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '/', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2177, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2178, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', 'OOS', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2179, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2180, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2181, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', 'OOS', '', 0, '', '', b'0', 'Active ', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2182, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', 'Yes', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2183, '', '0000-00-00', '', 0, NULL, '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '/', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2184, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2185, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2186, '', '0000-00-00', '', 0, '2009-12-09', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '12/9/2009', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2187, 'Virginia Depart. of Transportation', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2188, '', '0000-00-00', '', 0, NULL, '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '/', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2189, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, 'Net 30 ', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2190, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2191, '', '0000-00-00', 'EUCLIDCHEM', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2192, 'Miami Marine Tech, Inc.', '0000-05-00', 'MIAMIMARINE', 0, '2013-06-11', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Miami Marine Tech, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/11/2013', 'May-13', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2193, 'New Enterprise Stone & Lime', '0000-09-00', 'NESL H1333', 0, '2013-10-14', '0000-00-00', '2014-09-22', 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'KAS', '', NULL, NULL, 'September', '10/14/2013', '', '9/22/2014', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2194, 'Turbo Care', '0000-06-00', 'TURBOCARE', 0, '2013-06-19', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'Turbo Care', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/19/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2195, '', '0000-00-00', '', 0, '0000-00-00', '0000-00-00', '0000-00-00', '', '', 0, '', '', b'0', '', b'0', '', '', '', '', '', NULL, NULL, '', '', '', '', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2196, 'Holloway Wire Rope', '0000-08-00', 'HOLLOWAY5', 0, '2013-09-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Holloway Wire Rope', 'Yes', 'III', 'Range: 5 M.Ton', NULL, NULL, 'August', '9/16/2013', '', 'In House', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2197, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITZIGINNS', 0, '2018-10-18', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'Must Have', 'Alt & Witzig Engineering, Inc.', 'Yes', 'TPT', 'Range: 90 psi', NULL, NULL, 'February', '10/18/2018', 'Apr-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2198, 'Allied Concrete Company', '0000-02-00', 'ALLIEDCONCR', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Allied Concrete Company', 'Yes', 'DLP', '', NULL, NULL, 'February', '10/18/2018', 'Jan-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2199, 'Allegheny County Depart. of Engineering', '0000-07-00', 'ALLEGHCO', 0, '2018-10-18', '0000-00-00', NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Allegheny County Depart. of Engineering', 'Yes', 'CSE', '', NULL, NULL, 'July', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (2200, 'Oldcastle APG', '0000-10-00', 'AKRONBR', 0, '2018-10-18', '0000-00-00', NULL, 'yes', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Akron Brick & Block', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'October', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2201, 'Ahern & Associates', '0000-05-00', 'AHERN2', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Ahern & Associates', 'Yes ', 'DLP', '', NULL, NULL, 'May', '10/18/2018', 'Dec-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2202, 'AECOM Environment ', '0000-06-00', 'STS/GRAND', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'Conditional Net30', 'AECOM Environment ', '2 days', 'III', 'Range: 24K (4,650 PSI)', NULL, NULL, 'June', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2203, 'AEC, Inc.', '0000-10-00', 'AEC/MANASSAS', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'AEC, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/18/2018', 'Jan-05', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2204, 'Advance Testing Company, Inc.', '0000-01-00', 'ADVANCENY', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Advance Testing Company, Inc.', 'Yes', 'III', 'Range: 10K ', NULL, NULL, 'January', '10/18/2018', 'Dec-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2205, 'Advance Testing Company, Inc.', '0000-05-00', 'ADVANCENY1', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Advance Testing Company, Inc.', 'Yes', 'III', 'Range: 1K', NULL, NULL, 'May', '10/18/2018', 'Dec-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2206, 'Advanced Drainage Systems, Inc.', '0000-02-00', 'ADVDRAIN', 0, '2018-10-18', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Must Have', 'Advanced Drainage Systems, Inc.', 'Yes-1 Day', 'DLP', 'Range: 50 lbs to 5,500 lbs (ID# 041)', NULL, NULL, 'February', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2207, 'Adaris Testing Laboratory', '0000-01-00', 'CRAIGPAVE2', 0, '2018-10-18', '0000-00-00', NULL, 'No', 'Lucas 7.25%', 7.25, 'COD', '', b'1', 'Inactive', b'1', '', 'Adaris Testing Laboratory', 'Yes-definite', 'DLP', 'Range: 10mm', NULL, NULL, 'January', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2208, 'Adaris Testing Laboratory', '0000-01-00', 'CRAIGPAVE', 0, '2018-10-18', '0000-00-00', NULL, 'No', 'Lucas 7.25%', 7.25, 'COD', '', b'1', 'Inactive', b'1', '', 'Adaris Testing Laboratory', 'Yes-definite', 'TPT', 'Range: 28KN / 6K', NULL, NULL, 'January ', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2209, 'A.C. Miller Concrete', '0000-11-00', 'ACMILLEROOS', 0, '2018-10-18', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'A.C. Miller Concrete', 'Yes - 3 days', 'III', 'Range: 45K ', NULL, NULL, 'November', '10/18/2018', '', 'No Sol-OOS', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2210, 'Ackenheil Engineers & Geologists', '0000-08-00', 'ACK&ASSOC', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Ackenheil Engineers & Geologists', 'Yes - 1 day', 'DLP', 'Range: 150 psi', NULL, NULL, 'August', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2211, 'A & A Concrete Products', '0000-02-00', 'A&A', 0, '2019-03-18', NULL, '2020-02-17', 'Yes', '', 0, 'COD', '19-Feb', b'1', 'Active', b'1', '', 'A & A Concrete Products', '', 'KC', '', NULL, NULL, 'February', '3/18/2019', 'Aug-96', '2/17/2020', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2212, 'A & B Foundry & Machining', '0000-01-00', 'A&BFOUNDRY', 0, '2018-10-18', NULL, NULL, 'No', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'CREDIT CARD', 'A & B Foundry & Machining', 'Yes', 'III', '', NULL, NULL, 'January', '10/18/2018', 'Jan-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2213, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWITAIRPORT', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'Must Have', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2214, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTFTWAYNE', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'Must Have', 'Alt & Witzig Engineering, Inc.', 'Yes - 1day', 'TPT', '', NULL, NULL, 'February', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2215, 'Alt & Witzig Engineering, Inc.', '0000-02-00', 'ALTWIT S BEND', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'Must Have', 'Alt & Witzig Engineering, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2216, 'AMEC Earth & Environmental, Inc.', '0000-01-00', 'AMECAKRON', 0, '2018-10-18', NULL, NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'AMEC Earth & Environmental, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'January ', '10/18/2018', 'Feb-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2217, 'Ohio Power Company', '0000-09-00', 'AMELEC/CONE', 0, '2018-10-18', '0000-00-00', NULL, ' ', 'Direct Pay', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'American Electric Power', 'Yes', 'TML', '', NULL, NULL, 'September', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2218, 'American Electric Power', '0000-07-00', 'AMERICANBRIL', 0, '2018-10-18', '0000-00-00', NULL, ' ', 'Direct Pay', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'American Electric Power', 'Yes', 'KLA', '', NULL, NULL, 'July', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2219, 'American Safety Razor', '0000-04-00', 'AMERSAFERAZ', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'American Safety Razor', 'Yes', 'DLP', 'Range: 5 inches ', NULL, NULL, 'April', '10/18/2018', 'Aug-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2220, 'Anchor Tool & Die', '0000-08-00', 'ANCHOR', 0, '2018-10-18', '0000-00-00', NULL, 'No', '', 0, 'COD', '1993', b'1', 'Inactive ', b'1', '', 'Anchor Tool & Die', 'Yes', 'TJT', 'Range: 8K', NULL, NULL, 'August', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2221, 'Anderson Company', '0000-08-00', 'ANDERSONCO', 0, '2018-10-30', NULL, NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Anderson Company', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'August', '10/30/2018', 'Sep-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2222, 'Applied Testing & Geosciences Inc', '0000-03-00', 'APPLIEDTESTOO', 0, '2018-10-30', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Applied Testing & Geosciences Inc', 'Yes', 'III', 'Range: 3 inches', NULL, NULL, 'March', '10/30/2018', 'Jan-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2223, 'Aracoma Ready Mix', '0000-08-00', 'ARACOMA', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Aracoma Ready Mix (Div. of Logan Concrete)', 'Yes', 'III', '', NULL, NULL, 'August', '10/31/2018', 'Aug-97', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2224, 'ATC Associates', '0000-06-00', 'ATC84032', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'ATC Associates', 'Yes-2 days', 'III', '', NULL, NULL, 'June', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2225, 'Baker Concrete Construction', '0000-04-00', 'BAKERLEW', 0, '2018-10-31', NULL, NULL, 'No', 'Monroe 7.25 %', 7.25, 'Net 30', '', b'1', 'Inactive ', b'1', 'GET ON SITE', 'Baker Concrete Construction', 'Yes', 'DLP', '', NULL, NULL, 'April', '10/31/2018', 'Jun-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2226, 'ECS - Florida, LLC ', '0000-12-00', 'ECSFLORIDA ', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Barnes Bay Development', 'Yes', 'DLP', '', NULL, NULL, 'December IS', '10/31/2018', 'Nov-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2227, 'Barr Engineering, Inc.', '0000-10-00', 'TESTECH2', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Barr Engineering, Inc.', '24 HOURS', 'DLP', '', NULL, NULL, 'October', '10/31/2018', 'Mar-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2228, 'BBC& M Engineering', '0000-04-00', 'BBC&M', 0, '2018-10-31', NULL, NULL, 'No', 'Montgomery 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'BBC& M Engineering', 'Yes', 'MTR', 'Range: 1,200 Grams ', NULL, NULL, 'April', '10/31/2018', 'Apr-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2229, 'BBC& M Engineering', '0000-08-00', 'BBC&M 1', 0, '2018-10-31', NULL, NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'BBC& M Engineering', 'Yes', 'LSM', '', NULL, NULL, 'August', '10/31/2018', 'Jun-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2230, 'Beaver Concrete & Gravel Company', '0000-03-00', 'BEAVERCO', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Beaver Concrete & Gravel Company', 'Yes-1 day', 'DLP', '', NULL, NULL, 'March', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2231, 'Beavertown Block', '0000-01-00', 'BEAVERTOWN', 0, '2018-10-31', NULL, NULL, ' ', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Beavertown Block', 'Yes', 'TML', '', NULL, NULL, 'January', '10/31/2018', 'Jan-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2232, 'BecoTek Mfg., Inc', '0000-03-00', 'becotek', 0, '2018-10-31', NULL, NULL, 'No', 'Lorain 6.75%', 6.75, 'CC', '', b'1', 'Inactive', b'1', ' ', 'BecoTek Mfg., Inc.', 'Yes', 'III', 'Range: 60,0.00 lbs', NULL, NULL, 'March', '10/31/2018', '3/21/2012', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2233, 'Besser Company', '0000-07-00', 'BESSER', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Verbal', 'Besser Company', 'Yes', 'III', '', NULL, NULL, 'July', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2234, 'Bonsal America', '0000-02-00', 'A&T', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Bonsal America ', 'Yes-1 day', 'TPT', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2235, 'Oldcastle Retail, Inc ', '0000-05-00', 'BONSAL', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'GET ON SITE', 'Bonsal American', 'Yes', 'TLR', '', NULL, NULL, 'May', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2236, 'Bowser Morner Testing Lab', '0000-02-00', 'BOWSERCINN', 0, '2018-10-31', NULL, NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30 ', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Bowser Morner Testing Lab', 'Yes', 'CJS', '', NULL, NULL, 'February', '10/31/2018', 'Jan-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2237, 'Bradstone', '0000-10-00', 'BRADSTONE', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'Get PO#', 'Bradstone', 'Yes', 'TLR', '', NULL, NULL, 'October', '10/31/2018', 'Feb-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2238, 'BFS Mil-Tech, Inc. ', '0000-12-00', 'BFS', 0, '2018-10-31', NULL, NULL, 'No', 'Lorain 6.75%', 6.75, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'Branam Fastening Systems', 'Yes', 'CJS', '', NULL, NULL, 'December', '10/31/2018', 'Mar-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2239, 'Brayman Construction', '0000-10-00', 'BRAYMANMD', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Brayman Construction', 'Yes', 'DLP', 'Range: 100 PSI', NULL, NULL, 'October', '10/31/2018', 'Oct-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2240, 'Brayman Construction', '0000-08-00', 'TURMAN', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Brayman Construction', 'Yes - 1 day', 'TLR', '', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2241, 'Brayman Construction', '0000-02-00', 'BRAYPGH', 0, '2018-10-31', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Brayman Construction', 'Yes', 'CJS', '', NULL, NULL, 'February', '10/31/2018', 'Feb-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2242, 'Broome Community College', '0000-08-00', 'BROOME', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Broome Community College', 'Yes', '', 'Range: 1K/6K/15K/30K ', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2243, 'Bruce & Merrilees Electric', '0000-03-00', 'BRUCEMER', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'Get PO#', 'Bruce & Merrilees Electric', 'Yes', 'TLR', '', NULL, NULL, 'March', '10/31/2018', 'Mar-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2244, 'BS & T Labs, Inc. ', '0000-08-00', 'BS&TLABS', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'BS & T Labs, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'August', '10/31/2018', 'Oct-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2245, 'Buckeye Ready Mix', '0000-11-00', 'BUCKEYE58464', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Buckeye Ready Mix', 'Yes', 'DLP', '', NULL, NULL, 'November ', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2246, 'Bush Burchett', '0000-09-00', 'BUSH/BUR11501G', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Bush Burchett', 'Yes', 'TML', '', NULL, NULL, 'September', '10/31/2018', 'Jul-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2247, 'Camden Ready Mix Company', '0000-02-00', 'CAMDEN', 0, '2018-10-31', NULL, NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Camden Ready Mix Company', 'Yes', 'DLP', '', NULL, NULL, 'February', '10/31/2018', 'Jan-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2248, 'Campbell Chain Company', '0000-07-00', 'CAMPBELL', 0, '2018-10-31', '0000-00-00', NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Campbell Chain Company', 'Yes', 'CSE', '', NULL, NULL, 'July', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2249, 'Carbone of America', '0000-04-00', 'CARBFARM1', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Carbone of America', 'Yes', 'III', 'Range: 150 lb.', NULL, NULL, 'April', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2250, 'Cardinal Fastener & Specialty Co. Inc.', '0000-08-00', 'CARDINALBED', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'COD', 'Jan-15', b'1', 'Inactive', b'1', ' ', 'Cardinal Fastener & Specialty Co. Inc.', 'Yes- 1 day', 'DLP', '4 Ranges 1200/6000/24000/60000', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2251, 'Cast Con Stone', '0000-03-00', 'CASTCONESAX', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Cast Con Stone', 'Yes', 'TPT', '', NULL, NULL, 'March', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2252, 'Cavert Wire Company, Inc. ', '0000-05-00', 'CAVERTWIRE', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', 'Credit Card', 'Cavert Wire Company, Inc. ', 'Yes', 'III', '', NULL, NULL, 'May', '10/31/2018', 'Jan-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2253, 'CBC Engineers & Associates', '0000-03-00', 'CBC DAYTON', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Montgomery 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'CBC Engineers & Associates', 'Yes', 'III', '', NULL, NULL, 'March', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2254, 'CBC Engineers & Associates', '0000-02-00', 'CBC/65110', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Montgomery 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'CBC Engineers & Associates', 'Yes-MUST', 'TPT', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2255, 'CBC Engineers & Associates', '0000-08-00', 'CBC66238', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'CBC Engineers & Associates', 'Yes', 'KAS', '', NULL, NULL, 'August', '10/31/2018', 'Mar-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2256, 'Cellular Materials International, Inc. ', '0000-10-00', 'CELLULAR', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Cellular Materials International, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/31/2018', 'Sep-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2257, 'CDI Infrastructure, LLC dba L R Kimball', '0000-03-00', 'KIMBALLNS/OOS', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE PO', 'CDI Infrastructure, LLC dba L R Kimball', 'Yes', 'III', 'Range: 2,000 lbs', NULL, NULL, 'March ', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2258, 'CDI Infrastructure, LLC dba L R Kimball', '0000-02-00', 'KIMBALL3', 0, '2018-10-31', NULL, NULL, '', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', 'MUST HAVE PO', 'CDI Infrastructure, LLC dba L R Kimball', 'Yes-24 Hour', 'MTR', '', NULL, NULL, 'February', '10/31/2018', 'Jan-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2259, 'CDI Infrastructure, LLC dba L R Kimball', '0000-11-00', 'KIMBALLCALIF', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE PO', 'CDI Infrastructure, LLC dba L R Kimball', 'Yes', 'TLR', '', NULL, NULL, 'November', '10/31/2018', 'Nov-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2260, 'Center Manufacturing', '0000-04-00', 'CENTERMFG', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Center Manufacturing', 'Yes-2 days', 'TML', '', NULL, NULL, 'April', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2261, 'Century Engineering, Inc. ', '0000-08-00', 'CENTURY', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Century Engineering, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'August', '10/31/2018', 'Aug-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2262, 'CerCo LLC Diamonite', '0000-09-00', 'CERCO', 0, '2018-10-31', NULL, NULL, 'No', 'Wayne 6.5%', 6.5, 'COD', '', b'1', 'Inactive ', b'1', 'FOREVER COD', 'CerCo LLC Diamonite', 'Yes', 'TML', '', NULL, NULL, 'September', '10/31/2018', 'Sep-05', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2263, 'Challenge Manufacturing', '0000-06-00', 'CHALLENG', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Challenge Manufacturing', 'Yes', 'DLP', '', NULL, NULL, 'June', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2264, 'Chase Nedrow Manufacturing', '0000-04-00', 'CHASENED', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Chase Nedrow Manufacturing', 'Yes', 'KAS', ' ', NULL, NULL, 'April', '10/31/2018', 'Apr-13', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2265, 'Chemung Contracting Corporation', '0000-02-00', 'CHEMUNG/GAIN', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Get PO#', 'Chemung Contracting Corporation', 'Yes', 'KAS', '', NULL, NULL, 'February', '10/31/2018', 'Apr-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2266, 'Chemung Contracting Corporation', '0000-02-00', 'CHEMUNGPC', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Get PO#', 'Chemung Contracting Corporation', ' Yes / 1 Day', 'KAS', '', NULL, NULL, 'February', '10/31/2018', 'Apr-97', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2267, 'Cincinnati Concrete Pipe', '0000-08-00', 'CINCINNA', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cincinnati Concrete Pipe', 'Yes', 'JJC', 'Range: Digital', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2268, 'Cinder & Concrete Block Corporation ', '0000-10-00', 'C&CBLOCK', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'CREDIT CARD', 'Cinder & Concrete Block Corporation ', 'Yes', 'TPT', '', NULL, NULL, 'October', '10/31/2018', 'Dec-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2269, 'City of Flint / DOT', '0000-04-00', 'CTYFLINT', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'City of Flint DOT Eng', 'Yes- 3-5 days', 'TPT', '', NULL, NULL, 'April', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2270, 'City of Livonia', '0000-07-00', 'LIVONIACITY', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'City of Livonia', 'Yes', 'DWC', '', NULL, NULL, 'July', '10/31/2018', 'Feb. 1998', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2271, 'Clearwater Construction', '0000-04-00', 'CLEARWAYNE', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Inactive', b'1', 'Must Have', 'Clearwater Construction', 'Yes', 'KAS', '', NULL, NULL, 'April', '10/31/2018', 'Sep-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2272, 'Cold Spring Construction', '0000-06-00', 'COLD', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cold Spring Construction', 'Yes', 'TPT', '', NULL, NULL, 'June', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2273, 'CME Associates', '0000-08-00', 'CMECENTRAL', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'COD', 'CME Associates', 'Yes-definite', 'DWC', '', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2274, 'CMT Services Group', '0000-08-00', 'CMT SERVICES', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'CMT Services Group', 'Yes', '', 'Range: 500 lbs / 1K / 2K / 5K / 10K', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2275, 'CMX', '0000-09-00', 'ADVANTAGE', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'CMX', 'Yes', 'TJT', '', NULL, NULL, 'September', '10/31/2018', 'Aug-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2276, 'CMX', '0000-01-00', 'ADVANTAGEME', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'CMX', 'Yes', 'TLR', '', NULL, NULL, 'January', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2277, 'Cochran Industries - Virginia', '0000-08-00', 'COCHRAN', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Cochran Industries - Virginia', 'Yes-1-2 days', 'TJT', '', NULL, NULL, 'August', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2278, 'Columbus State Community College', '0000-01-00', 'COLUMBUSCOOS', 0, '2018-10-31', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Columbus State Community College', 'Yes-definite', 'KAS', '', NULL, NULL, 'January', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2279, 'Commonwealth Constructors', '0000-05-00', 'COMMONCONST', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Commonwealth Constructors', 'Yes', 'LSM', '', NULL, NULL, 'May', '10/31/2018', 'Aug-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2280, 'Concrete Industries, Inc.', '0000-02-00', 'CONCRETEIND', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Concrete Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'February', '10/31/2018', 'Feb-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2281, 'Concurrent Technologies', '0000-02-00', 'CONCURRENT1AA', 0, '2018-10-31', '0000-00-00', NULL, 'No', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Concurrent Technologies', '', 'DLP', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2282, 'Concurrent Technologies', '0000-02-00', 'CONCURRENT2A', 0, '2018-10-31', '0000-00-00', NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', 'DP', 'Range 2.4/12/60/120K', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2283, 'Concurrent Technologies', '0000-02-00', 'CONCURRENT5A', 0, '2018-10-31', '0000-00-00', NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', 'III', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2284, 'Concurrent Technologies', '0000-03-00', 'CONCURTECH', 0, '2018-10-31', '0000-00-00', NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Concurrent Technologies', 'Yes', 'DLP', '55K Load Cell Model 661.22CO1', NULL, NULL, 'March', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2285, 'Conewago', '0000-07-00', 'CONEWAGO', 0, '2018-10-31', NULL, NULL, ' ', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Conewago', 'Yes', 'III', 'Range: 3K / 35K', NULL, NULL, 'July', '10/31/2018', 'Jul-05', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2286, 'Consumer Energy ', '0000-12-00', 'CONSUMER', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Consumer Energy ', 'Yes-definite', 'TJT', '', NULL, NULL, 'December', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2287, 'Co-Pipe Production Facility', '0000-10-00', 'CO-PIPE', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Co-Pipe Production Facility', 'Yes', 'DLP', '', NULL, NULL, 'October', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2288, 'Contech Bridge Solutions ', '0000-08-00', 'CONTECH', 0, '2018-10-31', NULL, NULL, 'No', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Contech Bridge Solutions ', 'Yes', 'TJT', '', NULL, NULL, 'August', '10/31/2018', 'Oct-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2289, 'Hanson Concrete Products', '0000-08-00', 'COLLECOCOLUM', 0, '2018-10-31', NULL, NULL, 'No', 'Licking 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive', b'1', '', 'CSI Colleco Industries', 'Yes-1 day', 'KS', '', NULL, NULL, 'August', '10/31/2018', 'Jun-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2290, 'CT Consultants', '0000-07-00', 'CTCONSUL', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'CT Consultants', 'Yes-1 day', 'III', '', NULL, NULL, 'July', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2291, 'CTI & Associates, Inc.', '0000-06-00', 'CTI 849', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'Forever COD', 'CTI & Associates, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'June', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2292, 'CTI & Associates, Inc.', '0000-02-00', 'CTIASSOCIATES', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'Forever COD', 'CTI & Associates', 'Yes- 2 days', '', 'Range: 1,000 Grams ', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2293, 'CTL Engineering, Inc. ', '0000-05-00', 'CTLWV', 0, '2018-10-31', NULL, NULL, 'OOS', 'Credit Card Tax 5%', 5, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'CTL Engineering, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'May', '10/31/2018', 'Aug-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2294, 'Custom Mix Concrete', '0000-01-00', 'CUSTOMCHEM', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', ' Custom Mix Concrete', 'Yes', 'KAS', '', NULL, NULL, 'January', '10/31/2018', 'Jan-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2295, 'Custom Mix Concrete ', '0000-01-00', 'CUSTOMHORSE', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Custom Mix Concrete ', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'January', '10/31/2018', 'Jan-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2296, 'Cuyahoga Community College ', '0000-04-00', 'CUYAHOGA', 0, '2018-10-31', NULL, NULL, 'Yes', ' ', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Cuyahoga Community College ', 'Yes', 'DLP', '', NULL, NULL, 'April', '10/31/2018', 'Apr-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2297, 'Dalrymple Gravel & Construction', '0000-01-00', 'DALRYC', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Dalrymple Gravel & Construction', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'January', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2298, 'Dalrymple Gravel & Construction', '0000-01-00', 'DALRYFI', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Dalrymple Gravel & Construction', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'January', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2299, 'Dalrymple Gravel & Construction', '0000-02-00', 'DALRYMA', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Dalrymple Gravel & Construction', 'Yes -1 day', 'TPT', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2300, 'Day Timers, Inc. ', '0000-02-00', 'DAYTIMERSINC', 0, '2018-10-31', NULL, NULL, '', '', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Day Timers, Inc. ', 'Yes', 'III', '', NULL, NULL, 'February ', '10/31/2018', 'Jan-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2301, 'MACTEC Engineering & Consulting, Inc.', '0000-02-00', 'MACMAN', 0, '2018-10-31', '0000-00-00', NULL, 'NO', 'Adams 7.25%', 7.25, 'COD', '', b'1', 'Inactive', b'1', '', 'Dayton Power & Light Co. ', 'Yes', 'DLP', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2302, 'Dayton Superior', '0000-06-00', 'CEMPRO', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive ', b'1', '', 'Dayton Superior', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'June', '10/31/2018', 'Oct-98', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2303, 'Dayton Superior', '0000-03-00', 'DAYTONSUP', 0, '2018-09-18', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Dayton Superior', 'Yes- 1 day', 'DLP', 'Range: 4 lbs', NULL, NULL, 'March', '9/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2304, 'Delta Constructors, Inc.', '0000-12-00', 'DELTACONST', 0, '2018-09-18', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Delta Constructors, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'December', '9/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2305, 'Denso Manufacturing', '0000-06-00', 'DENSO', 0, '2018-09-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Denso Manufacturing', 'Yes', 'DLP', '', NULL, NULL, 'June', '9/18/2018', 'Apr-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2306, 'Dept. of Army', '0000-04-00', 'DEPTOFARMY', 0, '2018-09-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Dept. of Army', 'Yes', '', '', NULL, NULL, 'April', '9/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2307, 'Detroit Edison Company', '0000-09-00', 'DE/WARRE', 0, '2018-09-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Detroit Edison Company', 'Yes-definite', 'DLP', 'putting this cust. in archived database.', NULL, NULL, 'September', '9/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2308, 'Dick Corporation', '0000-12-00', 'DICK00116', 0, '2018-09-18', NULL, NULL, 'NO', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Dick Corporation', 'Yes - 1 day', 'TPT', '', NULL, NULL, 'December', '9/18/2018', 'Apr-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2309, 'Dick Corporation', '0000-03-00', 'DICKENT85016', 0, '2018-09-18', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Dick Enterprises', 'Yes - 1 day', 'III', 'putting in archived database.', NULL, NULL, 'March', '9/18/2018', 'Apr-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2310, 'Distinct Engineering Solutions, Inc.', '0000-03-00', 'DISTINCTENG', 0, '2018-09-18', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Distinct Engineering Solutions, Inc.', 'Yes', '', '', NULL, NULL, 'March', '9/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2311, 'Dixon Contracting & Supply', '0000-02-00', 'DIXON ', 0, '2018-09-18', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Dixon Contracting & Supply', 'Yes', 'KAS', '', NULL, NULL, 'February', '9/18/2018', 'May-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2312, 'DLZ', '0000-06-00', 'DLZNS', 0, '2018-09-18', '0000-00-00', NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'DLZ', '', 'DLP', 'Cap: 2K', NULL, NULL, 'June', '9/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2313, 'DLZ Corporation', '0000-03-00', 'DLZWARREN', 0, '2018-09-18', NULL, NULL, 'No ', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'DLZ Corporation', 'Yes', 'TLR', 'Range: 3,100 Grams', NULL, NULL, 'March', '9/18/2018', 'Mar-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2314, 'DLZ', '0000-05-00', 'DODSON-OOS', 0, '2018-09-20', '0000-00-00', NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'DLZ', 'Yes', '', 'Range: 1 inch ', NULL, NULL, 'May', '9/20/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2315, 'Dominion Virginia Power', '0000-03-00', 'VEPCO', 0, '2018-09-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Dominion Virginia Power', 'Yes - 2 Days', 'DLP', '', NULL, NULL, 'March', '9/20/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2316, 'Driscoll Construction', '0000-07-00', 'DRISCOLL', 0, '2018-09-20', NULL, NULL, 'No', 'Philadelphia 8%', 8, 'COD', '', b'0', 'Inactive', b'0', '', 'Driscoll Construction', 'Yes', 'KAS', '', NULL, NULL, 'July', '9/20/2018', 'Jul-15', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2317, 'Dunkirk Specialty Steel, LLC', '0000-01-00', 'DUNKIRK', 0, '2018-09-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'In Active', b'1', 'GET ON SITE', 'Dunkirk Specialty Steel, LLC', 'Yes', 'III', 'Range: 500 lbs/1K/2.5K/5K', NULL, NULL, 'January', '9/20/2018', 'Feb-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2318, 'Duffield Associates, Inc.', '0000-10-00', 'DUFFIELD', 0, '2018-09-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'Duffield Associates, Inc.', 'Yes', 'TJT', 'Range: 0.4 inches', NULL, NULL, 'October', '9/20/2018', 'Apr-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2319, 'Eagle Materials', '0000-02-00', 'MORAINEMAT', 0, '2018-09-20', NULL, NULL, 'No', 'Butler 6.5%', 6.5, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Eagle Materials', 'Yes', 'KAS', 'CUST#: ERNST 2', NULL, NULL, 'February', '9/20/2018', 'Oct-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2320, 'Eastern Michigan University', '0000-04-00', 'EASTMICHUNIV', 0, '2018-09-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Eastern Michigan University', 'Yes - 1 day', 'CJS', '', NULL, NULL, 'April', '9/20/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2321, 'EBA Engineering', '0000-05-00', 'EBA/BALT1', 0, '2018-09-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'EBA Engineering', 'Yes- 2 day', 'CJS', 'Range: 1/8 TSF to 16 TSF', NULL, NULL, 'May', '9/21/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2322, 'EBA Engineering', '0000-05-00', 'EBA/BALT2', 0, '2018-09-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'EBA Engineering', 'Yes', 'DLP', 'Range: 1 Inch', NULL, NULL, 'May ', '9/21/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2323, 'EBA Engineering', '0000-05-00', 'EBA/BALTOOS', 0, '2018-09-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'EBA Engineering', 'Yes', 'CJS', 'Range: 1 Inch', NULL, NULL, 'May', '9/21/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2324, 'EBC', '0000-09-00', 'EBC', 0, '2018-09-21', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'EBC', 'Yes', 'DLP', 'Range: 0.02 in/in (GL 1.4 Inch)', NULL, NULL, 'September', '9/21/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2325, 'ECS Mid-Atlantic, LLC', '0000-04-00', 'ENGCHESA', 0, '2018-09-26', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'ECS-Mid Atlantic, LLC', 'Yes', 'TPT', 'Cap: 10K', NULL, NULL, 'April', '9/26/2018', 'Sept. 2004', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2326, 'ECS Mid-Atlantic, LLC', '0000-10-00', 'ECSWASH', 0, '2018-09-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/26/2018', 'Jan-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2327, 'ECS Mid-Atlantic, LLC', '0000-10-00', 'ECSWASH', 0, '2018-09-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'ECS Mid-Atlantic, LLC', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/26/2018', 'Jan-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2328, 'Elastizell Corporation of America', '0000-06-00', 'ELASTIZL', 0, '2018-09-26', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Elastizell Research Center', 'Yes-1 week', 'TLR', '', NULL, NULL, 'June', '9/26/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2329, 'Ellis Brothers Concrete', '0000-09-00', 'DRYCREEKOH', 0, '2018-09-26', NULL, NULL, ' ', '', 0, 'COD', '', b'1', 'Inactive ', b'1', '', 'Ellis Brothers Concrete', '24 hrs.', 'TML', '', NULL, NULL, 'September', '9/26/2018', 'Jan-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2330, 'Elmer\'s Concrete & Dozer', '0000-04-00', 'ELMERS1', 0, '2018-09-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', 'MUST HAVE ', 'Elmer\'s Concrete & Dozer', 'Yes', 'DLP', '', NULL, NULL, 'April', '9/26/2018', 'Feb-12', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2331, 'Elmer\'s Concrete & Dozer', '0000-04-00', 'ELMERS', 0, '2018-09-26', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', 'MUST HAVE ', 'Elmer\'s Concrete & Dozer', 'Yes', 'DLP', '', NULL, NULL, 'April', '9/26/2018', 'Nov-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2332, 'EMH & T', '0000-04-00', 'EMHTCOLUMB', 0, '2018-09-26', NULL, NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'EMH & T', 'Yes', 'DLP', '', NULL, NULL, 'April', '9/26/2018', 'Jul-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2333, 'ERISCO Industries', '0000-05-00', 'ERISCO', 0, '2018-09-26', NULL, NULL, 'No', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'ERISCO Industries', 'Yes', 'CJS', '', NULL, NULL, 'May', '9/26/2018', 'Aug-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2334, 'Essroc ', '0000-08-00', 'ESSROC/POLAND', 0, '2018-09-27', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', 'CREDIT CARD', 'Essroc Cement, Inc.', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'August', '9/27/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2335, 'Michael Facchiano Contracting', '0000-05-00', 'FACCHIANO', 0, '2018-09-27', '0000-00-00', NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Michael Facchiano Contracting', 'Yes-1 day', 'III', '', NULL, NULL, 'May', '9/27/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2336, 'Faddis Concrete', '0000-05-00', 'FADDIS/KING', 0, '2018-09-27', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Faddis Concrete', 'Yes', 'KAS', '', NULL, NULL, 'May', '9/27/2018', 'Aug-12', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2337, 'Fairmont State University', '0000-05-00', 'FAIRMONT', 0, '2018-09-27', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'Credit Card', 'Fairmont State University', 'Yes', 'III', '', NULL, NULL, 'May', '9/27/2018', 'Apr-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2338, 'Farabaugh Engineering & Testing, Inc. ', '0000-07-00', 'FARABAUGH1', 0, '2018-09-27', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Farabaugh Engineering & Testing, Inc. ', 'Yes', 'III', 'Range: 500 lbs ', NULL, NULL, 'July', '9/27/2018', 'Feb-09', 'No solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2339, 'FCA Construction Precast ', '0000-03-00', 'FCACONSTRUC', 0, '2008-03-11', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'FCA Construction ', 'Yes', 'DLP', '', NULL, NULL, 'March', '3/11/2008', 'Apr-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2340, 'Fed Ex', '0000-05-00', 'FEDEX', 0, '2018-10-02', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Fed Ex', 'Yes', 'KAS', '', NULL, NULL, 'May', '10/2/2018', 'May-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2341, 'Superior Materials, LLC', '0000-06-00', 'FENDTFA', 0, '2018-10-02', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Fendt Builders Supply', 'Yes-definite', 'DLP', '', NULL, NULL, 'June', '10/2/2018', ' ', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2342, 'Fluortek, Inc.', '0000-02-00', 'FLUORTEK', 0, '2018-10-02', NULL, NULL, ' ', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Fluortek, Inc.', 'Yes- 1 day', 'DLP', 'Range: ', NULL, NULL, 'February', '10/2/2018', 'Oct-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2343, 'F. T. Kitlinski & Associates, Inc. ', '0000-04-00', 'FTKITLINSKIOOS', 0, '2018-10-02', '0000-00-00', NULL, 'No', 'PA 6.00 %', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'F. T. Kitlinski & Associates, Inc. ', 'Yes', 'CJS', 'Range: 500 lbs', NULL, NULL, 'April', '10/2/2018', '', 'No Sol-OOS', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2344, 'GLF Technical', '0000-06-00', 'GLF', 0, '2018-10-31', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'GLF Technical', 'Yes', 'DLP', '', NULL, NULL, 'June', '10/31/2018', 'Feb-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2345, 'Grandview Construction', '0000-02-00', 'GRANDVIEW', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Grandview Construction', 'Yes - definite', 'TPT', '', NULL, NULL, 'February', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (2346, 'Grant County Concrete ', '0000-08-00', 'GALLATIN', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Grant County Concrete ', 'Yes', 'KAS', '', NULL, NULL, 'August', '10/31/2018', 'Aug-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2347, 'Greensburg Testing Co.', '0000-06-00', 'GREENTESTING', 0, '2018-10-31', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Greensburg Testing Co.', 'Yes', 'TPT', '', NULL, NULL, 'June', '10/31/2018', 'Jun-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2348, 'John Gulisek Construction', '0000-04-00', 'GULISEK92065', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'John Gulisek Construction', 'Yes- 2 days', 'III', '', NULL, NULL, 'April', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2349, 'Hamilton Security Products', '0000-02-00', 'HAMILTON', 0, '2018-10-31', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hamilton Security Products', 'Yes', 'TJT', '', NULL, NULL, 'February', '10/31/2018', 'Feb-05', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2350, 'Hancor, Inc.', '0000-06-00', 'HANCORWAV', 0, '2018-10-31', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hancor, Inc.', 'Yes - 1 day', 'TJT', '', NULL, NULL, 'June', '10/31/2018', 'Feb-97', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2351, 'CSI Hanson JV', '0000-04-00', 'HANSONPIPEOOS', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Summit 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'CSI Hanson JV', 'Yes', 'DLP', 'Range: 2000 grams', NULL, NULL, 'April', '10/31/2018', '', 'No Sol-OOS', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2352, 'Hanson', '0000-02-00', 'OLDHAM', 0, '2018-10-31', NULL, NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hanson', 'Yes- 1 day', 'TJT', '', NULL, NULL, 'February', '10/31/2018', 'Feb-97', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2353, 'Hanson Aggregates NY, Inc.', '0000-07-00', 'BRDEWITT', 0, '2018-10-31', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hanson Aggregates NY, Inc.', 'Yes - 1 day', 'DLP', 'Range: 78 to 81', NULL, NULL, 'July', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2354, 'Hanson Concrete Products', '0000-05-00', 'NORTHSTARCO1', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Montgomery 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hanson Concrete Products', 'Yes-1 day', 'III', '', NULL, NULL, 'May', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2355, 'Four D Builders Supply', '0000-04-00', 'FOURD', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', ' Four D Builders Supply', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'April', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2356, 'Franklin Redi Mix', '0000-08-00', 'FRANKLINREDI', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Franklin Redi Mix', 'Yes', 'TJT', '', NULL, NULL, 'August', '10/18/2018', 'Sep-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2357, 'Froehling & Robertson, Inc.', '0000-05-00', 'FROELORTON', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', 'Get PO#', 'Froehling & Robertson, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'May', '10/18/2018', 'Apr-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2358, 'Frontier Precast LLC', '0000-11-00', 'FRONTIER', 0, '2018-10-18', '0000-00-00', NULL, 'No', 'Washington 7.25%', 7.25, 'COD', '4/17/1998', b'1', 'Inactive ', b'1', '', 'Frontier Precast LLC', 'Yes-1 day', 'TPT', 'Range: 5K to 35K (E-4 & PCI)', NULL, NULL, 'November', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2359, 'Future Fence Company', '0000-02-00', 'FUTUREFENCE', 0, '2018-10-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Future Fence Company', 'Yes', 'CJS', 'Range: 45K', NULL, NULL, 'February', '10/10/2018', 'Feb-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2360, 'Fuzion Technologies', '0000-01-00', 'FUZION', 0, '2018-10-18', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'Fuzion Technologies', 'Yes', 'TPJ', '', NULL, NULL, 'January', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2361, 'Gayston, Inc.', '0000-06-00', 'GAYTSON', 0, '2018-10-18', NULL, NULL, 'No', 'Warren 6.75%', 6.75, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'Gayston, Inc.', 'Yes- 1 day', 'DLP', 'Range: 0.001 inches to 0.5 inches', NULL, NULL, 'June', '10/18/2018', 'Aug-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2362, 'General Motors Truck & Bus', '0000-03-00', 'GM/BALTIMORE', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'General Motors Truck & Bus', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'March', '10/18/2018', 'Apr-99', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2363, 'Geochemical Testing', '0000-04-00', 'GEOCHEM', 0, '2018-10-10', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Geochemical Testing', 'No', 'TPT', '', NULL, NULL, 'April', '10/10/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2364, 'GeoTechnics', '0000-01-00', 'GEOTECHNIC12', 0, '2018-10-18', NULL, NULL, 'No', 'PA 6 %', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'GeoTechnics', 'Yes', '', 'Range: 16 TSF', NULL, NULL, 'January', '10/18/2018', 'Jun-98', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2365, 'Geo-Technology Associates Inc.', '0000-10-00', 'GTA/LAUREL', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'Must Have Project #', 'Geo-Technology Associates Inc.', 'Yes', 'KAS', '', NULL, NULL, 'October', '10/18/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2366, 'Geo-Technology Associates, Inc.', '0000-02-00', 'GEOTECHNOL', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'Must Have Project #', 'Geo-Technology Associates, Inc.', 'Yes', 'TML', '', NULL, NULL, 'February', '10/18/2018', 'Jan-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2367, 'Geotech Services, Inc.', '0000-07-00', 'GEOTECHBEL', 0, '2018-10-10', NULL, NULL, 'No', 'Paulding 7.25 %', 7.25, 'CC', '', b'1', 'Inactive', b'1', '', 'Geotech Services, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'July', '10/10/2018', 'Jun-12', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2368, 'Geotek', '0000-05-00', 'GEOTEKMD', 0, '2018-10-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Geotek', 'Yes 48 Hours', 'DLP', '', NULL, NULL, 'May', '10/18/2018', 'Aug-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2369, 'Gerace Construction Co., Inc.', '0000-10-00', 'GERACE', 0, '2018-10-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Gerace Construction Co., Inc.', 'Yes 1 Day', 'DLP', 'Range: 5K (590 PSI) / 50K (4,300 PSI)', NULL, NULL, 'October', '10/18/2018', '', 'NO SOLICIT', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2370, 'Lehigh Hanson', '0000-10-00', 'ESSROCCEMENT', 0, '2018-10-31', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Hanson Ready Mix', 'Yes', 'TPJ', 'Range: 4K to 500K ', NULL, NULL, 'October', '10/31/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2371, 'Harper Company', '0000-07-00', 'HARPERCLEVE', 0, '2018-11-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'Harper Company', 'Yes', 'TJT', '', NULL, NULL, 'July', '11/15/2018', 'Jul-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2372, 'J. W. Harris', '0000-03-00', 'HARRIS', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'J. W. Harris', 'Yes-days b/4', 'CSE', '', NULL, NULL, 'March', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2373, 'Harris & Associates', '0000-02-00', 'HARRIS', 0, '2018-11-15', NULL, NULL, '', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Harris & Associates', 'Yes', '', '', NULL, NULL, 'February', '11/15/2018', 'Jan-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2374, 'Hawkins Precast Concrete Products, LLC', '0000-01-00', 'HAWKINS', 0, '2018-11-15', NULL, NULL, 'No', '', 0, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Hawkins Precast Concrete Products, LLC', 'Yes', 'DLP', '', NULL, NULL, 'January', '11/15/2018', 'Aug-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2375, 'Haworth, Inc.', '0000-02-00', 'HAWORTH', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Haworth, Inc.', 'Yes', 'DLP', 'Range: 5K ', NULL, NULL, 'February', '11/15/2018', 'Apr-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2376, 'Henry Ford Community College ', '0000-04-00', 'HENRYFORD', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Henry Ford Community College ', 'Yes', 'TPT', '', NULL, NULL, 'April', '11/15/2018', 'Dec-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2377, 'Hillis-Carnes Engineering Associates, Inc.', '0000-08-00', 'HILLIS-FRED', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive', b'0', '', 'Hillis-Carnes Engineering Associates, Inc.', 'Yes', 'TML', '', NULL, NULL, 'August', '11/15/2018', 'Jan-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2378, 'Hinkle Contracting Corporation', '0000-05-00', 'HINKLEMATE', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hinkle Contracting Corporation', 'Yes', 'TJT', '', NULL, NULL, 'May', '11/15/2018', 'Sep-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2379, 'Hinkle Contracting Corporation', '0000-02-00', 'HINKLEALEX', 0, '2018-11-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hinkle Contracting Corporation', 'Yes', 'TPT', '', NULL, NULL, 'February', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2380, 'Hi-Way Paving Company', '0000-08-00', 'HIWAY74115', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hi-Way Paving Company', 'Yes- 1 day', 'TPJ', '', NULL, NULL, 'August', '11/15/2018', '', 'No solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2381, 'Hi-Way Paving Company', '0000-05-00', 'HIWAY/71029', 0, '2018-11-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Hi-Way Paving Company', 'Yes', 'TLR', '', NULL, NULL, 'May', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2382, 'Hi-Way Paving Company', '0000-07-00', 'HIWAY82132', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hi-Way Paving Company', 'Yes 1 Day', 'CJS', '', NULL, NULL, 'July', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2383, 'Hi-Way Paving Company', '0000-09-00', 'HIWAYUNION', 0, '2018-11-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Hi-Way Paving Company', 'Yes', 'DLP', '', NULL, NULL, 'September', '11/15/2018', 'May-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2384, 'Hi-Way Paving Company', '0000-01-00', 'HIWAYCOR', 0, '2018-11-15', NULL, NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Hi-Way Paving Company', 'Yes 1 Day', 'KAS', '', NULL, NULL, 'January', '11/15/2018', 'May-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2385, 'Hi-Way Paving Company', '0000-07-00', 'HIWAY/LEWIS', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Hi-Way Paving Company', 'Yes-24 hrs', 'TPT', '', NULL, NULL, 'July', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2386, 'Holcim (US) Inc.', '0000-09-00', 'HOLNAM', 0, '2018-11-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'Credit Card', 'Holcim (US) Inc.', 'Yes-1 day', 'MTR', '', NULL, NULL, 'September', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2387, 'Total Precast Solutions, LLC', '0000-06-00', 'PRESTRESSCAN', 0, '2018-11-15', NULL, NULL, ' ', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Total Precast Solutions, LLC', 'Yes', 'DLP', 'Range: 4K (450 psi) / 35K (3,450 psi)', NULL, NULL, 'June', '11/15/2018', 'Dec-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2388, 'Hopkins Construction Co., Inc.', '0000-05-00', 'HOPKINSCONST', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hopkins Construction Co., Inc.', 'Yes', 'TJT', '', NULL, NULL, 'May', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2389, 'Horton Precast Concrete', '0000-09-00', 'HORTONPRE', 0, '2018-11-15', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive ', b'0', 'Forever COD', 'Horton Precast Concrete', 'Yes-1 Day', 'TPT', '', NULL, NULL, 'September', '11/15/2018', 'Oct-99', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2390, 'Hoy Ready Mix', '0000-09-00', 'AOKTRUCK', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Hoy Ready Mix', 'Yes', 'KAS', '', NULL, NULL, 'September', '11/15/2018', 'Sep-96', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2391, 'HRI, Inc.', '0000-09-00', 'HRI/69077', 0, '2018-11-15', '0000-00-00', NULL, 'NO', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'HRI, Inc.', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'September', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2392, 'Hubbel, Roth & Clark, Inc.', '0000-02-00', 'HRCSL', 0, '2018-11-15', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Hubbel, Roth & Clark, Inc.', 'Yes', 'TPT', '', NULL, NULL, 'February', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2393, 'Hull & Associates, Inc.', '0000-10-00', 'HULL & ASSOC2', 0, '2018-11-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', 'Yes', 'DP', 'Range: 0.4 Inch', NULL, NULL, 'October', '11/15/2018', 'Dec-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2394, 'Hull & Associates, Inc.', '0000-10-00', 'HULL & ASSOC1', 0, '2018-11-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', 'Yes', 'DP', 'Range: 150 PSI (D-5720)', NULL, NULL, 'October', '11/15/2018', 'Dec-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2395, 'Hull & Associates, Inc.', '0000-02-00', 'Hull&ASSOCDUB', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'Franklin 7.5%', 7.5, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', '', 'DLP', 'Range: 600 Gram', NULL, NULL, 'February', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2396, 'Hull & Associates, Inc.', '0000-10-00', 'HULL & ASSOC3', 0, '2018-11-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', 'MUST HAVE', 'Hull & Associates, Inc.', 'Yes', 'DP', 'Range: 8.52lbs-68.18lbs/136.35lbs-1.5K', NULL, NULL, 'October', '11/15/2018', 'Dec-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2397, 'Hycrete, Inc. ', '0000-05-00', 'HYCRETE', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Hycrete, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'May', '11/15/2018', 'Aug-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2398, 'Hynes Industries, Inc.', '0000-07-00', 'HYNESIN', 0, '2015-05-27', '0000-00-00', NULL, 'No', 'Mahoning 7.25%', 7.25, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Hynes Industries, Inc.', 'Yes-1 day', 'TJT', '', NULL, NULL, 'July', '5/27/2015', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2399, 'IACNA', '0000-07-00', 'IACNA', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'0', '', 'IACNA', 'Yes-Fri prior', 'DLP', 'Range: 0.2 Inches ', NULL, NULL, 'July', '11/15/2018', 'May-05', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2400, 'Industrial Papers, Inc.', '0000-06-00', 'INDUSTRIAL', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'COD', '', b'0', 'Inactive ', b'0', '', 'Industrial Papers, Inc.', 'Yes-1 day', 'DLP', 'Range: 100 lbs to 400 lbs', NULL, NULL, 'June', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2401, 'DFA S-INDY VR GFEBS', '0000-05-00', 'INTERCONT', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'United States Military Academy', 'Yes', 'III/KS', 'Range: 0.4 inch', NULL, NULL, 'May', '11/15/2018', 'Sep-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2402, 'Intelligent Concrete, LLC', '0000-09-00', 'INTELLIGENT', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Intelligent Concrete, LLC', 'Yes', 'CS/TJ', '', NULL, NULL, 'September', '11/15/2018', 'Mar-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2403, 'International Paint, LLC', '0000-12-00', 'CEILCOTE', 0, '2018-11-15', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', 'HD 105570', 'International Paint, LLC', 'Yes- 1 day', 'DLP', 'Range: 10 lbs to 1K ', NULL, NULL, 'December', '11/15/2018', 'Jan-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2404, 'Interra, Inc.', '0000-11-00', 'GLSEC', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Interra, Inc', 'Yes', 'KAS', 'Range: 15K', NULL, NULL, 'November', '11/15/2018', 'Dec-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2405, 'Gholkar\'s, Inc. ', '0000-10-00', 'ITT', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'0', '', 'ITT Corporation', 'Yes', 'III', 'Range: 10 lbs to 1K (ID#CAL3692)', NULL, NULL, 'October', '11/15/2018', 'Oct-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2406, 'ITW Red Head ', '0000-06-00', 'ITWRAM', 0, '2015-04-14', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'ITW Red Head ', 'Yes', 'KAS', '', NULL, NULL, 'June', '4/14/2015', 'May-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2407, 'J&L Laboratory', '0000-07-00', 'J&LLAB', 0, '2018-11-15', NULL, NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', 'May-99', b'1', 'Inactive ', b'1', '', 'J&L Laboratory', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'July', '11/15/2018', 'May-99', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2408, 'JLT Laboratories', '0000-05-00', 'J&LTEST', 0, '2019-04-18', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'JLT Laboratories', 'Yes', 'CS', 'Range: 150 psi', NULL, NULL, 'May', '4/18/2019', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2409, 'Jackburn Manufacturing', '0000-12-00', 'JACKBURN', 0, '2018-11-15', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', 'GET ON SITE', 'Jackburn Manufacturing', 'Yes 1-day', 'III', '', NULL, NULL, 'December', '11/15/2018', 'Jun-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2410, 'Jamestown Metal Products', '0000-01-00', 'JAMESMETAL', 0, '2018-11-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Jamestown Metal Products', '', 'TT', '', NULL, NULL, 'January', '11/15/2018', 'May-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2411, 'Joseph B. Fay Company', '0000-07-00', 'JBFAY/02059', 0, '2018-11-15', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Joseph B. Fay Company', 'Yes', 'KAS', '', NULL, NULL, 'July', '11/15/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2412, 'Kebs, Inc.', '0000-04-00', 'KEBS', 0, '2009-03-24', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Kebs, Inc.', 'Yes-2 days', 'DLP', '', NULL, NULL, 'April', '3/24/2009', 'Apr-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2413, 'Kelcris Corporation', '0000-02-00', 'KELCRIS', 0, '2012-12-10', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Kelcris Corporation', 'Yes', 'DLP', 'Range: 78 to 82', NULL, NULL, 'February', '12/10/2012', 'Mar-06', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2414, 'Brian C. Kelly, PLS', '0000-03-00', 'KELLY', 0, '2016-03-21', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Brian C. Kelly, PLS', 'Yes', 'TJT', '', NULL, NULL, 'March', '3/21/2016', 'Mar-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2415, 'Kent State University', '0000-01-00', 'KENTSTATE', 0, '2012-01-04', '0000-00-00', NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Kent State University', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/4/2012', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2416, 'Kerkstra Prestress, Inc.', '0000-06-00', 'KERKSTRA', 0, '2015-04-21', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Kerkstra Prestress', 'Yes', 'KAS', 'Range', NULL, NULL, 'June', '4/21/2015', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2417, 'Keyser Testing Labs', '0000-03-00', 'KEYSER', 0, '2006-03-27', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Keyser Testing Labs ', 'No', 'TPT', '', NULL, NULL, 'March', '3/27/2006', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2418, 'Keystone High School', '0000-03-00', 'KEYSTONE', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'Keystone High School', '', 'III', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2419, 'Keystone High School', '0000-03-00', 'KEYSTONE', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, '', '', b'0', 'Inactive', b'0', '', 'Keystone High School', '', 'III', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2420, 'Keystone Precast', '0000-09-00', 'KEYSTONE/KITT', 0, '2005-09-09', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'0', 'Inactive', b'0', '', 'Keystone Precast', 'Yes-1 day', 'TPT', '', NULL, NULL, 'September', '9/9/2005', 'Oct-01', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2421, 'Kokosing Construction Co.', '0000-08-00', 'KOKOSINGCON', 0, '2016-02-25', '0000-00-00', NULL, 'No', 'Allen 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Kokosing Construction Co.', 'Yes', 'TPJ', '', NULL, NULL, 'August', '2/25/2016', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2422, 'Patterson Supply', '0000-07-00', 'PATTERSON1', 0, '2007-06-19', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'K.T.I. Concrete', 'Yes-1 day', 'DLP', '', NULL, NULL, 'July', '6/19/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2423, 'Lafarge Corporation', '0000-03-00', 'LAFARGEFRED', 0, '2010-01-19', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'Lafarge Corporation', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'March', '1/19/2010', 'Apr-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2424, 'Lane Enterprise, Inc', '0000-04-00', 'LANEWYTHE', 0, '2009-01-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Lane Enterprise, Inc', 'Yes', 'TJT', '', NULL, NULL, 'April', '1/29/2009', 'Mar-08', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2425, 'Law Engineering', '0000-03-00', 'LAW/COU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2426, 'Law Engineering', '0000-03-00', 'LAW/COU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2427, 'Law Engineering', '0000-03-00', 'LAW/COU', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', 'CSE', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2428, 'Law Engineering', '0000-03-00', 'LAWENG', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Law Engineering', 'Yes', '', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2429, 'Lee Testing & Engineering, Inc. ', '0000-01-00', 'LEETESTING', 0, '2010-11-18', '0000-00-00', NULL, 'No', 'Franklin 7.5%', 7.5, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'Lee Testing & Engineering, Inc. ', 'Yes-1 day', 'TJT', 'Cap: 6.3K ', NULL, NULL, 'January', '11/18/2010', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2430, 'Leo Miller & Associates', '0000-08-00', 'LEOMILLER', 0, '2016-06-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Leo Miller & Associates', 'Yes - 1 day', 'TPJ', '', NULL, NULL, 'August', '6/21/2016', 'Jun-99', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2431, 'Lindy Paving', '0000-04-00', 'LINPAV', 0, '2008-03-20', '0000-00-00', NULL, 'Yes', ' ', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Lindy Paving', 'Yes', 'DLP', '', NULL, NULL, 'April', '3/20/2008', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2432, 'Louisiana State University', '0000-01-00', 'LAUNIV', 0, '2005-11-02', NULL, NULL, 'OOS', '', 0, 'Net 15', '', b'0', 'Inactive', b'0', '', 'Louisiana State University', '', '', '', NULL, NULL, 'January', '11/2/2005', 'Jul-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2433, 'Lobar Site Development Corporation', '0000-10-00', 'LOBAR', 0, '2010-09-27', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Lobar Site Development Corporation', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/27/2010', 'Oct-03', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2434, 'Mactec Engineering', '0000-10-00', 'LAWNEW', 0, '2010-11-18', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', '', 'MACTEC Engineering and Consulting, Inc.', 'Yes', 'TML', 'Range: ', NULL, NULL, 'October', '11/18/2010', 'Dec-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2435, 'Mactec Engineering', '0000-08-00', 'MACTECMD', 0, '2006-07-31', NULL, NULL, 'OOS', '', 0, 'COD', '8/31/2004', b'0', 'Inactive', b'0', '', 'MACTEC Engineering', 'YES', 'TML', '', NULL, NULL, 'August', '7/31/2006', 'Mar-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2436, 'Mactec Engineering', '0000-05-00', 'MACLON', 0, '2009-04-27', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Mactec Engineering', 'Yes', 'TJT', '', NULL, NULL, 'May', '4/27/2009', 'Jul-08', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2437, 'Mactec Engineering & Consulting, Inc. ', '0000-05-00', 'MACMCLEAN', 0, '2013-04-01', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'Mactec Engineering & Consulting, Inc. ', 'Yes', 'III', '', NULL, NULL, 'May', '4/1/2013', 'Jun-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2438, 'Mactec Engineering', '0000-11-00', 'LAWLEX', 0, '2009-10-19', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Mactec Engineering', 'Yes', 'TPT', '', NULL, NULL, 'November', '10/19/2009', 'Aug-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2439, 'C. J. Mahan Construction Company', '0000-05-00', 'Mahan', 0, '2015-01-14', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', ' ', 'C. J. Mahan Construction Company', 'Yes', 'CJS', '', NULL, NULL, 'May', '1/14/2015', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2440, 'Duffield Associates, Inc.', '0000-05-00', 'DUF/MAR', 0, '2014-06-26', '0000-00-00', NULL, 'No', 'PA 6', 6, '', '', b'1', 'In Active', b'1', '', 'Martin and Martin Inc.', 'Yes', 'DLP', '', NULL, NULL, 'May', '6/26/2014', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2441, 'Marsh Products', '0000-06-00', 'MARSH/PREMA', 0, '2013-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Marsh Products (Premarc)', 'Yes - 1 day', 'TLR', 'Range: 4,000 Grams ', NULL, NULL, 'June', '4/18/2013', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2442, 'Mascaro Contracting, LP', '0000-03-00', 'MASCARO', 0, '2018-04-25', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mascaro Contracting, LP', 'Yes', 'III', '', NULL, NULL, 'March', '4/25/2018', 'Dec-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2443, 'Master Builders', '0000-01-00', 'MASTERBUILD', 0, '0000-00-00', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Master Builders', '', 'KLA', '', NULL, NULL, 'January', '', 'Jan-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2444, 'May & Associates, Inc', '0000-06-00', 'WARANA', 0, '2018-05-02', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', '', 'May & Associates, Inc', 'Yes', 'KAS', '', NULL, NULL, 'June', '5/2/2018', 'Jun-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2445, 'McCarroll Precast', '0000-07-00', 'MCCARROL', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'McCarroll Precast', 'Yes', 'JJC', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2446, 'McCreath Labs, Inc.', '0000-07-00', 'MCCREATH', 0, '2007-05-30', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'McCreath Labs, Inc.', 'Yes- 1 day', 'DLP', '', NULL, NULL, 'July', '5/30/2007', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2447, 'Mekis Construction Corporation', '0000-07-00', 'MEKIS4', 0, '2009-06-16', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Mekis Construction Corporation', 'Yes', 'III', '', NULL, NULL, 'July', '6/16/2009', 'Aug-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2448, 'Mekis Construction Corporation', '0000-03-00', 'MEKIS3', 0, '2010-02-09', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Mekis Construction Corporation', 'Yes', 'III', '', NULL, NULL, 'March', '2/9/2010', 'Jun-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2449, 'MetaMateria Technologies', '0000-08-00', 'METAMAT', 0, '2011-08-17', NULL, NULL, 'No', 'Franklin 7.5%', 7.5, 'COD', '', b'1', 'Inactive ', b'1', '', 'MetaMateria Technologies', 'Yes', 'CJS', '', NULL, NULL, 'August', '8/17/2011', 'Sep-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2450, 'Meyer Consulting Engineers P.C.', '0000-09-00', 'MEYER', 0, '2005-09-20', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Meyer Consulting Engineers P.C.', 'Yes', 'TPT', '', NULL, NULL, 'September', '9/20/2005', 'Sep-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2451, 'Michigan Department of Transportation', '0000-02-00', 'MICHROCK', 0, '2012-01-23', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Michigan Department of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'February', '1/23/2012', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2452, 'Mid Atlantic Precast', '0000-01-00', 'MIDATLPRE', 0, '2013-11-11', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Inactive', b'1', '', 'Mid Atlantic Precast', 'Yes', 'TLR', '', NULL, NULL, 'January', '11/11/2013', 'Jan-09', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2453, 'Midwest Eng & Testing ', '0000-06-00', 'MIDWESTENG', 0, '2013-04-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Midwest Eng & Testing', 'Yes', 'CJS', '', NULL, NULL, 'June', '4/17/2013', 'May-12', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2454, 'Midwest Engineering Services', '0000-04-00', 'GRTESTING', 0, '2009-03-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Midwest Engineering Services', 'Yes-1 day', 'TJT', '', NULL, NULL, 'April', '3/16/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2455, 'Mingo Creek Construction, LP', '0000-03-00', 'MINGO', 0, '2014-04-08', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mingo Creek Construction, LP', 'Yes', 'KAS', '', NULL, NULL, 'March', '4/8/2014', 'Aug-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2456, 'Minova USA, Inc. ', '0000-10-00', 'MINOVA/SCIO', 0, '2011-08-09', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Minova USA, Inc. ', 'Yes', 'DLP', '', NULL, NULL, 'October', '8/9/2011', 'Oct-07', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2457, 'A. Morton Thomas & Associates', '0000-04-00', 'AMORTONTHOM', 0, '2012-02-08', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'A. Morton Thomas & Associates', 'Yes', 'DLP', 'Range: 70 lbs ', NULL, NULL, 'April', '2/8/2012', 'Mar-10', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2458, 'Mountain State Bridge, Inc.', '0000-08-00', 'MOUNTAINEER', 0, '2017-06-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Mountain State Bridge, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'August', '6/29/2017', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2459, 'Mosites Construction', '0000-03-00', 'MOSITES', 0, '2017-11-10', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Mosites Construction', 'Yes', 'WWS', '', NULL, NULL, 'March', '11/10/2017', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2460, 'NAES Power Contractors', '0000-07-00', 'NAES', 0, '2019-06-11', NULL, NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'NAES Power Contractors', 'Yes', 'KAS', '', NULL, NULL, 'July', '6/11/2019', 'Mar-14', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2461, 'McGaw Technology, Inc.', '0000-03-00', 'NASA/CLEVE1', 0, '2013-12-17', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 15', '', b'1', 'Active ', b'1', '', 'NASA Glenn Research ', 'Yes', 'DLP', 'Range: 2.5K ', NULL, NULL, 'March', '12/17/2013', 'Jan-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2462, 'McGaw Technology, Inc.', '0000-03-00', 'NASA/CLEVE', 0, '2013-12-17', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 15', '', b'1', 'Inactive', b'1', '', 'NASA Glenn Research ', '', 'DLP', 'Range: 50K', NULL, NULL, 'March', '12/17/2013', 'Jan-02', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2463, 'National Engineering & Contracting', '0000-03-00', 'NATIONAL', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'National Engineering & Construction', 'Yes-2 days', 'CGM', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2464, 'New Enterprise Stone & Lime', '0000-06-00', 'NEWENT70059', 0, '2018-04-12', '0000-00-00', NULL, ' ', '', 0, 'Net 60', '', b'1', 'Inactive', b'1', '', 'New Enterprise Stone & Lime', 'Yes -2 Day', 'TPT', '', NULL, NULL, 'June', '4/12/2018', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2465, 'New Enterprise Stone & Lime', '0000-06-00', 'NEWENT/CAR1', 0, '2015-07-07', NULL, NULL, 'Yes', ' ', 0, 'Net 60', '', b'1', 'Inactive', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'CJS', 'Range: 10K (9,000 PSI)', NULL, NULL, 'June', '7/7/2015', 'Jun-11', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2466, 'New Enterprise Stone & Lime', '0000-01-00', 'NEWENTNJ', 0, '2015-07-07', NULL, NULL, 'OOS', '', 0, 'Net 60', '', b'0', 'Inactive', b'0', 'GET ON SITE', 'New Enterprise Stone & Lime', 'Yes ', 'LSM', 'Range: 45K', NULL, NULL, 'January', '7/7/2015', 'Jan-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2467, 'New Enterprise Stone & Lime', '0000-05-00', 'NEWENT9918', 0, '2015-07-07', '0000-00-00', NULL, ' ', '', 0, 'Net 60', '', b'1', 'Active', b'1', '', 'New Enterprise Stone & Lime', 'Yes', 'CJS', '', NULL, NULL, 'May', '7/7/2015', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2468, 'New Enterprise Stone & Lime', '0000-10-00', 'NESL674/976', 0, '2015-07-07', '0000-00-00', NULL, ' ', '', 0, 'Net 60', '', b'0', 'Inactive', b'0', '', 'New Enterprise Stone & Lime ', 'Yes', 'III', 'Putting in archived database.', NULL, NULL, 'October', '7/7/2015', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2469, 'New Enterprise Stone & Lime', '0000-04-00', 'NEWENT71048', 0, '2015-07-07', '0000-00-00', NULL, ' ', '', 0, 'Net 60', '', b'1', 'Inactive ', b'1', '', 'New Enterprise Stone & Lime ', 'Yes', 'CJS', '', NULL, NULL, 'April', '7/7/2015', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2470, 'New Enterprise Stone & Lime', '0000-04-00', 'NEWENTH4957M', 0, '2015-07-07', '0000-00-00', NULL, ' ', '', 0, 'Net 60', '', b'0', '', b'0', '', 'New Enterprise Stone & Lime', 'Yes - 1 day', 'DLP', '', NULL, NULL, 'April', '7/7/2015', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2471, 'New Enterprise Stone & Lime', '0000-08-00', 'NEWENT9708', 0, '2017-07-10', '0000-00-00', NULL, 'Yes', '', 0, 'Net 60', '', b'1', 'Inactive ', b'1', 'Must have', 'New Enterprise Stone & Lime', 'Yes', 'CSE', '', NULL, NULL, 'August', '7/10/2017', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2472, 'Nicholson Construction', '0000-03-00', 'NICHOLSON', 0, '2008-03-20', NULL, NULL, 'No', 'Allegheny 7%', 7, 'COD', '', b'0', 'Inactive', b'0', 'Forever COD', 'Nicholson Construction', 'Yes', 'TPT ', '', NULL, NULL, 'March', '3/20/2008', 'Apr-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2473, 'North Shore Constructors Joint Venture #2', '0000-07-00', 'NORTHSCPITT', 0, '2010-06-22', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'North Shore Constructors Joint Venture #2', 'Yes', 'TJT', 'Range: 20 Ton ', NULL, NULL, 'July', '6/22/2010', 'May-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2474, 'Nova Chemicals', '0000-03-00', 'NOVACHEM', 0, '2012-02-28', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'0', 'CREDIT CARD', 'Nova Chemicals', 'Yes-3 days', 'CJS', 'Range: 1K to 30K', NULL, NULL, 'March', '2/28/2012', 'Mar-05', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2475, 'NTH Consultants, Ltd. ', '0000-08-00', 'NTHCLEV', 0, '2009-03-09', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'NTH Consultants, Ltd. ', 'Yes', 'III', '', NULL, NULL, 'August', '3/9/2009', 'Aug-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2476, 'NTH Consultants', '0000-09-00', 'NTHLANSING', 0, '2014-07-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'NTH Consultants', 'Yes- 1 day', 'TPJ', 'Range: 11K (moved to Livonia)', NULL, NULL, 'September', '7/21/2014', 'Jun-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2477, 'NTH Consultants, Ltd.', '0000-02-00', 'NTH/CLEVELAND', 0, '2016-12-20', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'NTH Consultants. Ltd.', 'Yes', 'DLP', 'Range: 550 lbs ', NULL, NULL, 'February', '12/20/2016', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2478, 'NTH Consultants', '0000-10-00', 'NTHDEAR', 0, '2009-09-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'NTH Consultants', 'Yes- 1 day', 'LSM', '', NULL, NULL, 'October ', '9/17/2009', 'Jun-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2479, 'NTH Consultants', '0000-10-00', 'NTHBETH', 0, '2013-09-13', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'In Active', b'1', 'MUST HAVE', 'NTH Consultants', 'Yes', 'DLP', '', NULL, NULL, 'October', '9/13/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2480, 'NTH Consultants', '0000-10-00', 'NTH/EXTON 2', 0, '2013-09-13', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'In Active', b'1', 'MUST HAVE', 'NTH Consultants', 'Yes', 'DLP', 'Range: 500 lbs / 1K / 2K / 5K / 10K', NULL, NULL, 'October', '9/13/2013', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2481, 'NTH Consultants', '0000-10-00', 'NTH/EXTON', 0, '2012-08-30', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'NTH Consultants', 'Yes', 'DLP', 'Range: 500K', NULL, NULL, 'October', '8/30/2012', 'Oct-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2482, 'Nucon Schokbeton', '0000-03-00', 'NUCON2', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Nucon Schokbeton', '', 'III', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2483, 'Terracon', '0000-05-00', 'NUTTING/NS1', 0, '2012-10-09', NULL, NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Terracon', 'Yes-definite', 'III', 'Cap: 1K', NULL, NULL, 'May', '10/9/2012', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2484, 'Terracon', '0000-05-00', 'NUTTING/NS2', 0, '2012-10-09', NULL, NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Terracon', 'Yes-definite', 'III', 'Range: 10 to 120 psi. (D-5720)', NULL, NULL, 'May', '10/9/2012', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2485, 'Terracon', '0000-05-00', 'NUTTING/NS3', 0, '2012-10-09', NULL, NULL, 'No', 'Hamilton 7.0%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Terracon', 'Yes-definite', 'III', 'Range:16TSF(E-4&ManSpecs)(Out of Svc)', NULL, NULL, 'May', '10/9/2012', 'Aug-00', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2486, 'New York Department of Transportation', '0000-01-00', 'NYDOT/HORN', 0, '2010-01-19', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'New York Department of Transportation', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/19/2010', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2487, 'Terracon', '0000-05-00', 'NUTTINGLAW', 0, '2019-07-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Terracon', 'Yes', 'III', 'Range: 11 lbs to 110 lbs ', NULL, NULL, 'May', '7/18/2019', 'Jan-00', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2488, 'Terracon', '0000-06-00', 'NUTTINGWASH', 0, '2012-10-09', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', '', 'Terracon', 'Yes-definite', 'TJT', '', NULL, NULL, 'June', '10/9/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2489, 'New York Department of Transportation', '0000-02-00', 'NYDOT/SYR', 0, '0000-00-00', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'New York Department of Transportation', 'Yes', 'KLA', '', NULL, NULL, 'February', '', 'Dec-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2490, 'NY Power Authority', '0000-01-00', 'NYPOWER/NIAG', 0, '2018-08-28', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'NY Power Authority', 'Yes', 'DLP', '', NULL, NULL, 'January', '8/28/2018', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2491, 'Ohio Department of Transportation', '0000-01-00', 'OHIODOT1', 0, '2017-08-14', '0000-00-00', NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Ohio Department of Transportation', 'Yes', 'LSM', 'Range: 150 psi', NULL, NULL, 'January', '8/14/2017', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); INSERT INTO `customer` (`customerNumber`, `companyName`, `TourMonth`, `companyIdentifier`, `billingContact`, `lastUpdated`, `dateAcquired`, `scheduledDate`, `taxExemptStatus`, `County`, `taxRate`, `creditTerms`, `COD_Date`, `certsInstructs`, `activeStatus`, `QARequirement`, `PONum`, `companyDivision`, `callPrior`, `technicianAssigned`, `Comments`, `mapDone`, `SolicitationDate`, `TourMonthInput`, `lastUpdatedInput`, `dateAcquiredInput`, `scheduledDateInput`, `SolicitationDateInput`, `OrderTaken`, `WorkOrderTyped`, `WorkOrderCopied`, `WorkDone`, `CertsDone`) VALUES (2492, 'Ohio Department of Transportation', '0000-01-00', 'OHIODOT2', 0, '2017-08-14', '0000-00-00', NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Ohio Department of Transportation', 'Yes', 'LSM', 'Range: 100 psi', NULL, NULL, 'January', '8/14/2017', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2493, 'Ohio Department of Transportation', '0000-01-00', 'OHIODOT3', 0, '2017-08-14', '0000-00-00', NULL, ' ', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Ohio Department of Transportation', 'Yes', 'TJT', 'Range: 1inch w/E-405 Digital', NULL, NULL, 'January', '8/14/2017', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2494, 'Oldcastle APG Sheffield', '0000-10-00', 'OLDSHEFFIELD', 0, '2018-10-05', NULL, NULL, 'No', 'Lorain 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', ' ', 'Oldcastle APG Sheffield', 'Yes', 'KAS', 'Range: 3,100 Grams ', NULL, NULL, 'October', '10/5/2018', 'Dec-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2495, 'Oldcastle Precast', '0000-06-00', 'OLDCAST/RIVER', 0, '2014-04-16', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active', b'1', 'CREDIT CARD', 'Oldcastle Precast', 'Yes', 'KAS', '', NULL, NULL, 'June', '4/16/2014', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2496, 'Orders Construction', '0000-05-00', 'ORDERS86026', 0, '2011-05-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Orders Construction', 'Yes', 'TLR', '', NULL, NULL, 'May', '5/5/2011', '', 'No Solicte', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2497, 'Orders Construction', '0000-02-00', 'ORDERS', 0, '2008-02-05', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Orders Construction', 'Yes', 'TPT', '', NULL, NULL, 'February', '2/5/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2498, 'Owens Corning ', '0000-06-00', 'OWENSCORN', 0, '2011-06-02', NULL, NULL, 'No', '', 0, 'COD', '', b'1', 'Inactive ', b'1', 'Credit Card', 'Owens Corning ', 'Yes', 'TJT', 'Putting in archived database.', NULL, NULL, 'June', '6/2/2011', 'Jun-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2499, 'P & A', '0000-05-00', 'P&A', 0, '2006-05-09', NULL, NULL, 'OOS', '', 0, 'COD', 'Oct. 1997', b'1', 'Active', b'1', '', 'P & A', 'Yes', 'DLP', '', NULL, NULL, 'May', '5/9/2006', 'Jun-96', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2500, 'Patriot Engineering & Environmental, Inc. ', '0000-07-00', 'PATRIOT', 0, '2009-06-03', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Active ', b'0', '', 'Patriot Engineering & Environmental, Inc. ', 'Yes', 'MTR', '', NULL, NULL, 'July', '6/3/2009', 'Aug-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2501, 'Patterson Supply Co.', '0000-09-00', 'PATTERSON', 0, '2014-01-06', NULL, NULL, 'No', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Patterson Supply Co.', 'YES - 1 day', 'MTR', '', NULL, NULL, 'September', '1/6/2014', 'Jan-98', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2502, 'Patton Harris Rust & Associates', '0000-09-00', 'PATONHARRIS', 0, '2007-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Patton Harris Rust & Associates', 'Yes', 'DLP', 'Putting in archived database.', NULL, NULL, 'September', '1/15/2007', 'Jun-04', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2503, 'Paul C. Rizzo Associates, Inc.', '0000-02-00', 'PAUL C RIZZO', 0, '2008-01-24', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30', '5/8/2000', b'1', 'Inactive', b'1', '', 'Paul C. Rizzo Associates, Inc.', 'Yes-1 day', 'DLP', '', NULL, NULL, 'February', '1/24/2008', 'Jun-97', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2504, 'Pawnee, Inc.', '0000-08-00', 'PAWNEE', 0, '2012-06-19', NULL, NULL, 'No', 'Athens 7%', 7, 'COD', '11/16/2004', b'1', 'Inactive', b'1', 'GET PO#', 'Pawnee, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'August', '6/19/2012', 'Nov-04', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2505, 'Mack Stress Con Industries, Inc. ', '0000-06-00', 'STRESS/PENINS', 0, '2017-08-31', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Peninsula Prestress', 'Yes', 'CS/KS', 'Putting in archived database.', NULL, NULL, 'June', '8/31/2017', 'Jun-16', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2506, 'MacInnis, Group LLC', '0000-07-00', 'NEWENT/PSP6OOS', 0, '2016-01-19', '0000-00-00', NULL, 'Yes', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'GET ON SITE', 'Pennstress', 'Yes', 'TJT', 'Range: 40K', NULL, NULL, 'July', '1/19/2016', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2507, 'Commonwealth of Pennsylvania', '0000-03-00', 'PADOTHAROOS', 0, '2017-09-21', '0000-00-00', NULL, 'Yes', ' ', 0, 'Net 30', '', b'1', 'Active', b'1', 'PO if over 10K', 'Pennsylvania Department of Transportation', 'Yes-3 days', 'DP/KS', 'Range: 100K', NULL, NULL, 'March', '9/21/2017', '', 'OOS-No Sol', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2508, 'Commonwealth of Pennsylvania', '0000-09-00', 'PADOTHAR4', 0, '2008-08-19', '0000-00-00', NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Pennsylvania Department of Transportation', 'Yes-3 days', 'TPT', 'Range: 150 lbs to 1,500 lbs,1/8 to 22 TSF ', NULL, NULL, 'September', '8/19/2008', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2509, 'Pennsylvania Department of Transporation', '0000-09-00', 'PADOTHAR4', 0, '2008-08-19', '0000-00-00', NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Pennsylvania Department of Transporation', 'Yes-3 days', 'TML', 'Cap: 275 psi', NULL, NULL, 'September', '8/19/2008', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2510, 'Pennsylvania Industrial Heat Treaters', '0000-11-00', 'PAHEAT', 0, '2009-11-03', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'Pennsylvania Industrial Heat Treaters', 'Yes', 'LSM', '', NULL, NULL, 'November', '11/3/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2511, 'Prestress Services', '0000-11-00', 'PRESTRESS/MEL', 0, '2013-09-13', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'In Active', b'1', ' ', 'Prestress Services', 'Yes', 'CJS', 'Range: 400 lbs', NULL, NULL, 'November', '9/13/2013', 'Jan-13', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2512, 'Pentair', '0000-04-00', 'PENTAIRSOLON1', 0, '2016-02-24', NULL, NULL, ' ', 'Direct Pay', 0, 'Net 60', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Pentair', 'Yes', 'DLP', 'Range: 2 Inches', NULL, NULL, 'April', '2/24/2016', 'Jan-02', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2513, 'PF Technologies', '0000-09-00', ' PFTECH', 0, '2009-09-17', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'PF Technologies', 'Yes', 'TPT', '', NULL, NULL, 'September', '9/17/2009', 'Nov-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2514, 'Pessoa Construction', '0000-03-00', 'PESSOA', 0, '2008-02-21', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Pessoa Construction', 'Yes', 'MTR', 'Putting in archived database.', NULL, NULL, 'March', '2/21/2008', 'Jan-04', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2515, 'Pipe & Precast Construction Products, Inc. ', '0000-04-00', 'PIPE&PRECAST', 0, '2015-04-21', NULL, NULL, 'No', 'PA 6 %', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Pipe & Precast Construction Products, Inc. ', 'Yes', 'TJT', '', NULL, NULL, 'April', '4/21/2015', 'May-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2516, 'Pittsburgh Flexicore', '0000-07-00', 'FLEXIMON', 0, '2009-07-29', '0000-00-00', NULL, ' ', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Pittsburgh Flexicore', 'Yes- 1 day', 'TLR', 'Range: 78 to 82 (Moved)', NULL, NULL, 'July', '7/29/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2517, 'Plasti-Pak Packing', '0000-05-00', 'PLASTIPAK1', 0, '2009-05-07', NULL, NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Plasti-Pak Packing', 'Yes- 1 day', 'TJT', 'Range: 20 lbs to 400 lbs', NULL, NULL, 'May', '5/7/2009', 'Jun-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2518, 'Plasti-Pak Packing', '0000-05-00', 'PLASTIPAK2', 0, '2010-05-03', NULL, NULL, 'No', 'Medina 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive ', b'0', 'MUST HAVE', 'Plasti-Pak Packing', 'Yes- 2 days', 'DLP', 'Putting in archived database.', NULL, NULL, 'May', '5/3/2010', 'Jun-00', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2519, 'Plasti-Pak Packaging', '0000-01-00', 'PLASTIPAK3', 0, '2009-01-07', NULL, NULL, 'No', 'Shelby 7.25%', 7.25, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Plasti-Pak Packaging', 'Yes', 'TPT', '', NULL, NULL, 'January', '1/7/2009', 'Jun-01', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2520, 'Plum Contracting, Inc. ', '0000-04-00', 'PLUMCON', 0, '2015-07-08', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Plum Contracting, Inc. ', 'Yes', 'TPJ', '', NULL, NULL, 'April', '7/8/2015', 'Nov-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2521, 'Potomac Construction Ind.', '0000-03-00', 'POTOMACCI', 0, '2012-11-01', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive ', b'1', '', 'Potomac Construction Ind.', 'Yes-2 days', 'TJT', 'Putting in archived database.', NULL, NULL, 'March', '11/1/2012', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2522, 'Potowmac Engineers, Inc. ', '0000-03-00', 'POTOWMAC', 0, '2009-03-17', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Potowmac Engineers, Inc. ', 'Yes', 'TPT', '', NULL, NULL, 'March', '3/17/2009', 'Dec-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2523, 'Premarc / Metro Supply', '0000-06-00', 'PREMARC', 0, '2011-06-16', NULL, NULL, 'OOS', '', 0, 'COD', '', b'0', 'Inactive ', b'0', '', 'Premarc / Metro Supply', 'Yes', 'DLP', '', NULL, NULL, 'June', '6/16/2011', 'Aug-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2524, 'Prince George\'s County', '0000-03-00', 'PRINCE', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, '', '', b'0', 'Inactive', b'0', '', 'Prince George\'s County', '', '', '', NULL, NULL, 'March', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2525, 'PrinzBach Concrete Consulting, LLC', '0000-04-00', 'PRINZBACH', 0, '2014-03-01', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'PrinzBach Concrete Consulting, LLC', 'Yes', 'KAS', '', NULL, NULL, 'April', '3/1/2014', 'Jun-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2526, 'Professional Service Industries, Inc.', '0000-01-00', 'PROFSCHEN', 0, '2018-02-06', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active ', b'1', 'MUST HAVE', 'Professional Service Industries, Inc.', 'Yes', 'DLP', '', NULL, NULL, 'January', '2/6/2018', 'Nov-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2527, 'Professional Service Industries, Inc.', '0000-08-00', 'PSINY', 0, '2010-06-22', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', 'MUST HAVE', 'Professional Service Industries, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'August', '6/22/2010', 'Aug-09', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2528, 'Professional Service Industries, Inc.', '0000-07-00', 'PS2/LAN', 0, '0000-00-00', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Professional Service Industries, Inc.', 'Yes', 'JJC', '', NULL, NULL, 'July', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2529, 'Pulte Home Sciences of Virginia, LLC', '0000-10-00', 'PULTE/VA', 0, '2008-08-06', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Active', b'0', '', 'Pulte Home Sciences of Virginia, LLC', 'Yes- 1 day', 'DLP', 'Putting in archived database.', NULL, NULL, 'October', '8/6/2008', 'Nov-03', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2530, 'Pulte Home Sciences', '0000-06-00', 'RESIDENTIAL', 0, '2005-06-13', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', '', b'0', 'GET ON SITE', 'Pulte Home Sciences', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'June', '6/13/2005', 'Aug-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2531, 'Qore Property Sciences', '0000-12-00', 'QORE/LOUIS', 0, '2008-11-03', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Qore Property Sciences', 'Yes- 1 day', 'TPT', '', NULL, NULL, 'December', '11/3/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2532, 'Qore Property Sciences', '0000-10-00', 'QORELIMA', 0, '2007-09-13', '0000-00-00', NULL, 'No', 'Allen 6.75%', 6.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Qore Property Sciences', 'Yes', 'III', '', NULL, NULL, 'October', '9/13/2007', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2533, 'Applus', '0000-01-00', 'QUALITYBUFF', 0, '2016-01-06', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc.', 'Yes', 'III', '', NULL, NULL, 'January', '1/6/2016', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2534, 'Quality Engineering Solutions, Inc. ', '0000-03-00', 'QUALITY/CL', 0, '2018-02-06', '0000-00-00', NULL, 'No', 'PA 6.00%', 6, 'Net 30', '', b'1', 'Active', b'1', '', 'Quality Engineering Solutions, Inc. ', 'Yes', 'CJS', '', NULL, NULL, 'March', '2/6/2018', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2535, 'Applus', '0000-01-00', 'QUALITYDEP1', 0, '2014-11-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'DLP', 'Range: ', NULL, NULL, 'January', '11/18/2014', 'Dec-07', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2536, 'Applus', '0000-01-00', 'QUALITYROCH', 0, '2016-02-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'CJS', 'Range: 220 grams to 22,000 grams', NULL, NULL, 'January', '2/18/2016', 'Jan-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2537, 'Applus', '0000-01-00', 'QUALITYSYRA', 0, '2016-02-18', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'CJS', 'Range: 1 lbs to 85 lbs ', NULL, NULL, 'January', '2/18/2016', 'Jan-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2538, 'Applus ', '0000-01-00', 'QUALITYSYRA1', 0, '2017-09-12', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Quality Inspection Services, Inc. ', 'Yes', 'CJS', 'Range: 2K (ID# Q-2623)', NULL, NULL, 'January', '9/12/2017', 'Jan-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2539, 'Raba-Kistner Consultants, Inc. ', '0000-02-00', 'RABAKISTNER', 0, '2015-02-03', NULL, NULL, 'No ', '', 0, 'COD', '', b'1', 'Active', b'1', ' ', 'Raba-Kistner Consultants, Inc. ', 'Yes', 'TPJ', 'Range: 300 lbs to 30K ', NULL, NULL, 'February', '2/3/2015', 'Feb-12', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2540, 'R.E. Pierson Construction', '0000-10-00', 'PIERSON', 0, '2015-08-26', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Inactive', b'1', '', 'R.E. Pierson Construction', 'Yes', 'KAS', '', NULL, NULL, 'October', '8/26/2015', '', 'No Solicit', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2541, 'Resco Products', '0000-10-00', 'UNITEDRE', 0, '2017-08-14', NULL, NULL, 'No', 'Trumbull 6.75%', 6.75, 'Net 60', '', b'1', 'Active', b'1', 'MUST HAVE', 'Resco Products', 'Yes-definite!', 'KS/KC', '', NULL, NULL, 'October', '8/14/2017', 'Jun-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2542, 'Resource International', '0000-03-00', 'RESOURCEAIR', 0, '2008-03-11', '0000-00-00', NULL, 'No', 'Cuyahoga 8%', 8, 'COD', '', b'1', 'Inactive ', b'1', 'Forever COD', 'Resource International', 'Yes', 'DLP', '', NULL, NULL, 'March', '3/11/2008', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2543, 'Rhodes State College', '0000-01-00', 'RHODES STCOLL', 0, '2009-11-24', '0000-00-00', NULL, ' ', '', 0, 'COD', '', b'1', 'Inactive ', b'1', '', 'Rhodes State College', 'Yes', 'TML', '', NULL, NULL, 'January ', '11/24/2009', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2544, 'R.I. Lampus', '0000-12-00', 'DORENLAMPUS', 0, '2011-11-21', NULL, NULL, 'No', '', 0, 'Net 30 ', '', b'1', 'Inactive ', b'1', '', 'R.I. Lampus (Doren, Inc.)', 'Yes', 'TLR', '', NULL, NULL, 'December', '11/21/2011', 'Feb-99', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2545, 'Riefler Concrete Products LLC', '0000-01-00', 'RIEFLER', 0, '2006-01-11', NULL, NULL, 'OOS', '', 0, 'COD', '5/8/2000', b'1', 'Active', b'1', 'MUST HAVE', 'Riefler Concrete Products LLC', 'Yes', 'DLP', '', NULL, NULL, 'January', '1/11/2006', 'Sep-97', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2546, 'Riefler Concrete Products LLC', '0000-01-00', 'RIEFLER/HAM', 0, '2007-01-11', '0000-00-00', NULL, 'OOS', '', 0, 'COD', '5/8/2000', b'1', 'Active', b'1', 'MUST HAVE', 'Riefler Concrete Products LLC', 'Yes', 'TPT', '', NULL, NULL, 'January', '1/11/2007', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2547, 'Rinker Materials ', '0000-07-00', 'CSRHYDRO', 0, '2008-09-09', '0000-00-00', NULL, 'OOS', 'Delaware 7%', 7, 'Net 30', '', b'1', 'Inactive ', b'1', 'MUST HAVE', 'Rinker Materials', 'Yes-1 day', 'DLP', 'Range: 15K to 500K ', NULL, NULL, 'July', '9/9/2008', '', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2548, 'Rinox Pavers, LLC', '0000-10-00', 'RINOXPAVER', 0, '2007-09-17', NULL, NULL, 'No', '', 0, 'Net 30', '', b'0', 'Inactive', b'0', '', 'Rinox Pavers, LLC', 'Yes', 'TPT', '', NULL, NULL, 'October', '9/17/2007', 'Oct-06', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2549, 'River Valley Testing/Michigan Wind II', '0000-06-00', 'RIVERWIND', 0, '2013-04-25', NULL, NULL, 'OOS', '', 0, 'COD', '', b'1', 'Inactive', b'1', 'CREDIT CARD', 'River Valley Testing/Michigan Wind II', 'Yes', 'TJT', '', NULL, NULL, 'June', '4/25/2013', 'Jun-11', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2550, 'R.L. Johnson Construction Corporation', '0000-07-00', 'RLJOHNSON', 0, '2011-04-12', NULL, NULL, 'No', 'Allegheny 7%', 7, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'R.L. Johnson Construction Corporation', 'Yes', 'TPT', '', NULL, NULL, 'July', '4/12/2011', 'Jul-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2551, 'John. Robinson Testing', '0000-01-00', 'ROBINTEST', 0, '0000-00-00', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'Net 30', '', b'1', 'Inactive', b'1', '', 'John Robinson Testing', '', 'CSE', 'Putting in archived database.', NULL, NULL, 'January', '', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2552, 'Rontondo Weirich', '0000-02-00', 'ROTONDO', 0, '2008-01-15', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'Rontondo Weirich', 'Yes', 'TPT', 'Putting in archived database.', NULL, NULL, 'February', '1/15/2008', 'Jun-07', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2553, 'RTI Laboratories, Inc. ', '0000-02-00', 'RTI', 0, '2011-01-25', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'0', 'Inactive ', b'0', 'MUST HAVE', 'RTI Laboratories, Inc. ', 'Yes', 'DLP', 'Range: 0.5 in/in (1\" GL)', NULL, NULL, 'February', '1/25/2011', 'Oct-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2554, 'Rural Valley Construction', '0000-04-00', 'RURALVALLEY', 0, '2015-03-16', '0000-00-00', NULL, 'No', 'PA 6%', 6, 'COD', '', b'1', 'Active', b'1', '', 'Rural Valley Construction', 'Yes', 'CJS', '', NULL, NULL, 'April', '3/16/2015', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2555, 'Russell Standard', '0000-05-00', 'RUSSELLBLAIR', 0, '2013-03-13', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Russell Standard', 'Yes', 'DLP', '', NULL, NULL, 'May', '3/13/2013', 'Jun-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2556, 'Russell Standard', '0000-06-00', 'RUSELLCADOG', 0, '2015-05-22', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Russell Standard', 'Yes', 'CJS', '', NULL, NULL, 'June', '5/22/2015', 'Jun-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2557, 'Russell Standard', '0000-06-00', 'RUSELLBUT', 0, '2011-07-26', NULL, NULL, 'No', 'PA 6%', 6, 'Net 30 ', '', b'0', 'Inactive ', b'0', '', 'Russell Standard', 'Yes', 'III', '', NULL, NULL, 'June', '7/26/2011', 'Apr-10', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2558, 'SECOR International', '0000-03-00', 'SECOR', 0, '0000-00-00', NULL, NULL, 'No', 'Cuyahoga 7.75%', 7.75, 'Net 30', '', b'1', 'Inactive', b'1', '', 'SECOR International', 'No', 'KLA', '', NULL, NULL, 'March', '', 'Mar-97', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2559, 'Sherman Dixie', '0000-02-00', 'INDCONC', 0, '2014-04-16', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Sherman Dixie', 'Yes-1 week', 'TPJ', '', NULL, NULL, 'February', '4/16/2014', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2560, 'Sherman Dixie Concrete Industries, Inc.', '0000-02-00', 'SHERMANELIZ', 0, '2014-04-29', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Sherman Dixie Concrete Industries, Inc.', 'Yes', 'KAS', '', NULL, NULL, 'February', '4/29/2014', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2561, 'Sherwin -Williams Company', '0000-04-00', 'SHERWIN', 0, '2011-04-26', NULL, NULL, 'No', 'Cuyahoga 8%', 8, 'Net 30 ', '', b'0', 'Active', b'0', 'CREDIT CARD', 'Sherwin -Williams Company', 'Yes', 'DLP', 'Putting in archived database.', NULL, NULL, 'April', '4/26/2011', 'May-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2562, 'Seidler Engineering, Inc.', '0000-10-00', 'SIEDLER', 0, '2014-10-02', NULL, NULL, 'No', 'Mahoning 7.25%', 7.25, 'Net 30', '', b'1', 'Active ', b'1', '', 'Seidler Engineering, Inc.', 'Yes', 'TLR', '', NULL, NULL, 'October', '10/2/2014', 'Apr-06', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2563, 'Sika Technologies', '0000-03-00', 'ESSROCOH', 0, '2014-01-15', '0000-00-00', NULL, 'No', 'Stark 6.5%', 6.5, 'Net 30', '', b'1', 'Active', b'1', 'MUST HAVE', 'Sika Technologies', 'Yes-definite!', 'TJT', 'Putting in archived database.', NULL, NULL, 'March', '1/15/2014', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2564, 'Sinclair Community College', '0000-08-00', 'SINCLAIR', 0, '2015-07-22', '0000-00-00', NULL, 'No', '', 0, 'Net 30 ', '', b'1', 'Active ', b'1', '', 'Sinclair Community College', 'Yes', 'DLP', 'Range:', NULL, NULL, 'August', '7/22/2015', '', 'No solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2565, 'SJB Services, Inc.', '0000-08-00', 'SJBCORT', 0, '2009-07-29', NULL, NULL, 'OOS', '', 0, 'Net 30 ', '', b'0', 'Inactive', b'0', '', 'SJB Services, Inc.', 'Yes', 'TJT', '', NULL, NULL, 'August', '7/29/2009', 'Mar-08', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2566, 'SMH Construction Co., Inc.', '0000-08-00', 'SMHCONSTR', 0, '2007-08-08', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive ', b'1', '', 'SMH Construction Co., Inc.', 'Yes', 'TPT', '', NULL, NULL, 'August', '8/8/2007', '1996', 'No Solicite ', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2567, 'Soils and Materials Engineers, Inc', '0000-10-00', 'SOILS/KA', 0, '2017-05-11', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils and Materials Engineers, Inc', 'Yes - 1 day', 'TML', 'Putting in archived database.', NULL, NULL, 'October', '5/11/2017', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2568, 'Soils & Materials Engineers', '0000-05-00', 'SME/GRAND1', 0, '2018-04-17', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30 ', '', b'1', 'Active', b'1', '', 'Soils & Materials Engineers', 'Yes - 1 day', 'KAS', '', NULL, NULL, 'May', '4/17/2018', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2569, 'Soil and Materials Engineers', '0000-04-00', 'SMEKIRTOOS', 0, '2016-05-16', '0000-00-00', NULL, 'No', 'Lake 7%', 7, 'Net 30', '', b'1', 'Active', b'1', '', 'Soil and Materials Engineers', 'Yes-1 day', 'DLP', 'Range: 1K (Channel #13)', NULL, NULL, 'April', '5/16/2016', '', 'No Sol-OOS', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2570, 'Soils and Materials Engineers, Inc', '0000-06-00', 'SOILS/UTICA', 0, '2018-04-18', '0000-00-00', NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Active', b'1', '', 'Soils and Materials Engineers, Inc', 'Yes', 'DLP', '', NULL, NULL, 'June', '4/18/2018', '', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'), (2571, 'Solar Testing Laboratories, Inc.', '0000-05-00', 'SOLARTEST', 0, '2007-05-04', NULL, NULL, 'OOS', '', 0, 'Net 30', '', b'1', 'Inactive', b'1', '', 'Solar Testing Laboratories', 'Yes', 'DLP', '', NULL, NULL, 'May', '5/4/2007', 'May-05', 'No Solicite', NULL, 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete', 'Incomplete'); -- -------------------------------------------------------- -- -- Table structure for table `job_site` -- CREATE TABLE `job_site` ( `JobSiteID` int(11) NOT NULL, `siteContact` int(11) DEFAULT NULL, `customerID` int(11) DEFAULT NULL, `Phone` varchar(20) DEFAULT NULL, `Fax` varchar(20) DEFAULT NULL, `Address1` varchar(100) DEFAULT NULL, `Address2` varchar(50) DEFAULT NULL, `City` varchar(25) DEFAULT NULL, `State` varchar(10) DEFAULT NULL, `Zip` varchar(15) DEFAULT NULL, `WorkingHours` varchar(50) DEFAULT NULL, `Directions` mediumtext ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `job_site` -- INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1, 2572, 1, '(716) 625-6933', '(716) 625-6983 Fax', '415 South Transit Street', '', 'Lockport', 'NY', '14094', '8:00 am - 4:30 pm', '90E to Exit 50 for Rt. 290. Take 290 to Exit #4. Take 990N to Exit 5 (263N.) Millerstown Hwy.Take Left. Transit Left 78N. Just inside city limits on Left hand side. SEE MAP Call to ensure that Al Hopkins can be there to operate the equipment as needed. Need Pressure transducer system-----Need 1K cell---Cal 60 Need Dead Weights - 5#, 10#, 25#'), (2, 2573, 2, '315-454-3231', '315-454-8559 Fax ', '1841 Lemoyne Avenue ', '', 'Syracuse', 'NY', '13208', '8:00 am - 4:00 pm ', ' I-90 East (Mew York State Throughway), Exit 36, merge I-81, at I-81, Exit 25, right onto 7th North Street, left onto Lemoyne Avenue '), (3, 2574, 3, '', '', 'Job Site ', '', 'New Jersey', 'NJ', '', 'Annette - Prestress Secretary', ' '), (4, 2575, 4, '304-765-4222/304-765', '304-765-4285 FAX', 'US 19 Highway North', 'HC 65 Box 1A', 'Heaters', 'WV', '26627', 'M - TH 7am - 5pm', ' ***2 YEAR SCHEDULE*** ***Certs need to be sent to job site *** Take I-79 South to Exit 67 at Flatwoods, Turn towards Hwy 19 at the light, turn left onto Hwy 19 north, follow Hwy 19 North approximately 5 miles and the mill will be on the LEFT, stop at Scale House and have them call Kate Lat: 38.726 N Long: 80.642 W Elev: 873ft Dead Weight correction value: 0.09993'), (5, 2576, 5, '410-984-0141 Gordy c', '410-984-6750 Deryck ', '8980 Route. 108 ', 'Suite D', 'Columbia', 'MD', '21045', '8am-5pm (office) ; 7am-4pm (Site)', ' 32W / 29 N Rt 108 East, 2nd light, Red Branch Road, on left 3rd drive, bare left 8980 Suite D After ATC pass driveways on left, take next left, go to back. '), (6, 2577, 6, '301-336-6857', '301-336-6899 Fax ', '9244 E. Hampton Drive, Suite 615', '', 'Capital Heights', 'MD', '20743', '9:00 am - 5:00 pm ', ' 495 Beltway, Take Exit 15B, turn left at light on Hampton Pike Boulevard, pass 2 lights, turn left on East Hampton Drive, drive up to end of road and come to back side to #615 '), (7, 2578, 7, '740-352-3972 Brian ', '334-324-2449 Steve ', '267 Novak Drive ', '', 'Martinsburg', 'WV', '25405', '7:30am - 5:30pm/7:00am - 5:00pm Job ', ' I-81, Exit 6 (Tabler Station Road), 1 mile or 2, at the \"T\" turn left, onto Rt. 11, take next right onto Novak Drive, (There is a Head, Inc. sign there), 1/2 mile down the road, take a left onto gravel road, (There is a Head, Inc. sign there) '), (8, 2579, 8, '410-381-0232 x 3714 ', '410-381-8908 Fax', '9231 Rumsey Road ', '', 'Columbia', 'MD', '21045', '8:00 am - 5:00 pm ', 'I95 South out of Baltimore to (Exit 41) Rte. 175 West to Columbia 2nd light Dobblin turn left, last street on left is Herrmann Drive end of road, turn right on to Dobblin Road, turn right onto McGaw Road, left onto Snowden River Parkway, turn left onto Maryland 108 (Waterloo Road), follow it about 1 mile, turn left at light (Staying on 108), 1 mile turn right onto Red Branch Road, turn right onto Rumsey Road Interpolation Points: 5K, 25K, 100K, 200K, 300K, 450K'), (9, 2580, 9, '(304) 779-2131', '(304) 779-2859 Fax', 'US Route 60', '(Across from Post Office)', 'Boomer', 'WV', '25031', '8:00 am - 5:00 pm ', 'From Charleston, WV, take US Rt. 60 east approx. 35 miles to Boomer. Located across from the post office in a yellow block - 2 story building. '), (10, 2581, 10, '503-598-8700 x 106', '503-598-4545 Fax ', '14058 SW Milton Court ', '', 'Portland', 'OR', '97224', '', ' Certifications in Westcon name & mailed to Westcon address '), (11, 2582, 11, '(719) 526-5755', '(719) 526-8994', '2400 O\'Connell Blvd., Bldg. 8000, Door 24', '', 'Ft. Carson', 'CO', '80913-2528', '', ' Federal Tax ID#63-105-0415 '), (12, 2583, 12, '419-425-6500', '', '14801 County Road 22', '', 'Findley', 'OH', '45840', '', ' Shipped to us from Atlas Gauge, calibrated, and UPS\'d to Hercules Bill to: Coe Manufacturing PO Box 520 Painesville, OH 44077 440-352-9381 Fax 440-352-1487 '), (13, 2584, 13, '304-539-2680 Ron/304', '304-766-8105 Fax', 'US 460', '', 'Bluefield', 'WV', '', '7:00 am - 5:00 pm ', ' US 460, Exit US-52, as soon as off exit will see bridge, machine on side street '), (14, 2585, 14, '216-741-2088', '', '950 Keynote Circle Suite # 70', '', 'Brooklyn Heights', 'OH', '44131', '', ' PA-208 to I-80W follow signs to Cleveland take Exit 187 merge onto I-480 W/OH-14W Keep right stay on I-480W follow signs for Rockside Rd. take Exit 17 A-B for Ohio 176 Take Exit 17B for OH-17 Turn right onto OH-17E / Granger Rd Take the 1st onto Lancaster Dr. take 2nd left onto Keynote Cir. '), (15, 2586, 15, '216-741-2088', '', '950 Keynote Circle Suite # 70', '', 'Brooklyn Heights', 'OH', '44131', '', ' PA -208 to I-80 W follow signs to Cleveland take Exit 187 merge onto I-480 W/OH-14W Keep right stay on I-480W follow signs for Rockside Rd. take Exit 17 A-B for Ohio 176 Take Exit 17B for OH-17 Turn right onto OH-17E / Granger Rd Take the 1st onto Lancaster Dr. take 2nd left onto Keynote Cir. '), (16, 2587, 16, '616-575-9230', '313-963-2736 Fax', '3390 Broadmoor Avenue Southeast, Suite G', '', 'Grand Rapids', 'MI', '49512', '8:00 am - 4:00 pm', ' I-96 West, Exit 43A (28th Street/M-11/Kent Co Airport), right onto 28th Street SE, left onto SR-11 (28th St. SE), left onto SR-37 (Broadmor Ave SE) '), (17, 2588, 17, '616-406-1756', '616-293-0469 Fax ', 'Storage', '', 'Grand Rapids', 'MI', '', '8:00 am - 5:00 pm ', ' '), (18, 2589, 18, '814-781-3630 x 223 J', '814-781-8380 Fax', '1241 Brusselles Street', '', 'St. Marys', 'PA', '15857', '7:00 am - 4:00 pm ', ' Rt. 120 East from St. Marys about 1 mile from the center of town on the left C1 F/V 22241.1 C1 Shunt 3181.53'), (19, 2590, 19, '402-563-6425', '402-563-6252 Fax', '1122 23rd Street', '', 'Columbus', 'NE', '68601', '8am-5pm office / 7am-4pm site', ' Elevation: 1449 Feet, Lat: 41.430*N, Long: 97.368*W Dead Weight Correction Value: 0.9993'), (20, 2591, 20, '614-679-3792 Rick Ce', '', 'Storage ', '', 'Hilliard', 'OH', '43026', '', ' '), (21, 2592, 21, '304-749-7190/304-989', '(304) 766-8105 Fax', 'Jobsite', '', 'Keyser', 'WV', '26726', '7:00 am to 5:30 pm ', ' I-68 East, Exit 1, turn right onto US-119 (Grafton Road), turn left onto US-50, entering Maryland, Entering West Virginia, turn right onto SR-42, left onto SR-93, located at the intersection of WV93N & WV42 '), (22, 2593, 22, '606-435-0164', '606-435-1022 Fax', '41 Commercial Drive ', '', 'Hazard ', 'KY', '41701', '10:00-6:00 (O) 8:00-4:00 Site', ' I-75, next Exit after Exit 56, to Highway 15 North, go under underpass (Highway 80), at red light after underpass take a right, then take an immediate left, 1st building on the right '), (23, 2594, 23, '(859) 371-3314', ' (859) 371-2655 Fax', '139 Aristocrat Drive', '', 'Florence', 'KY', '41042', '6:00-5:00', 'Take 75 South to Mt. Zion Road Exit #178. Turn left. Thru two lights, turn before United Dairy Farmers Gas, turn left onto US 25, 500\' on left, Aristocrat Drive, 1st Entrance after check in, go to 2nd entrance '), (24, 2595, 24, '859-277-5300', '859-277-5058 Fax ', '112 Dennis Drive', '', 'Lexington', 'KY', '40503', '10:00-6:00 (O) 8:00-4:00 Site', 'I-75 South, Exit 118, merge I-64 (I-75) (East), at I-64, Exit 113, turn right onto US-27 (N Broadway), right onto Dennis Drive '), (25, 2596, 25, '(859) 623-4238 / 859', '859-229-4209 Rick Ho', '106 Industry Road', '', 'Richmond', 'KY', '40475', '7:00 am - 3:30 pm ', ' From I-75, Take Exit 90A, Rt. 25 & 421 South. Follow 25 & 421 South to Ducannon Lane. Turn right and go 1/4 mile. Turn left onto Industry Road. Building on right. Formerly Concrete Materials Corporation'), (26, 2597, 26, ' 606-573-6836 ', '(606) 573-4735 Fax', '159 Belkway', '', 'Harlan', 'KY', '40831', '7:00 am - 4:30 pm', 'Take I-75 to 1st Corbin Exit. Take 25E - Go to Pineville - Take 119 to Harlan. Take 119 Bypass. Out back of Mall (Directions are from Lexington) '), (27, 2598, 27, '(606) 598-5248', '606-599-1178 Fax', '101 Third Street', '', 'Manchester', 'KY', '40962', '8:00 am - 4:30 pm', 'I-75 Exit #38 for London. Take 192E to Daniel Boone Pkwy. to Manchester Exit #20, Rt. 421 North. Head towards McDonalds thats 1st light Get into Right Hand lane this turns into a turning lane, turn right, go over bridge & turn right at 2nd light. Site is in bldg. that says Manchester Enterprises. '), (28, 2599, 28, '859- 635-1350', '859- 635-1391 Fax', '979 Midway Drive', '', 'Alexandria', 'KY', '41001', '8:00am-5:00pm (sometimes unmanned)', 'From I-75. Take Exit #185 to 275E to Exit #77 for Rt. 95 Ashland / Alexandria (A-A) highway. Take 27 S. Pass Rt. 10. Go 2/3 mile and turn right just before Sand Trap Bar onto old State 3 Road. Site immediately on left. Be sure to have copy of instructions for this machine.'), (29, 2600, 29, '606-573-4300', '606-573-6722 Fax', '114 North 2nd Street', 'PO Box 488', 'Harlan', 'KY', '40831', '7:30 am - 4:00 pm', 'Two streets above Court House Narrow alley next to building before parking lot, machine in back of building. '), (30, 2601, 30, '513-755-7879', '513-755-8923 Fax', '6531 West Chester Road', '', 'West Chester', 'OH', '45069', '8:00 am - 5:00 pm', 'If coming North on I-75, take Exit 19-Union Centre Boulevard. Turn right then get on left lane. At next light (Cincinnati-Dayton Rd.) turn left. Stay in left lane at 2nd light (West Chester Rd) turn right. They are thye second building on the right. A white house (The numbers 6531 are on a garage/storage building) Turn into the driveway. (See map) '), (31, 2602, 31, '859-824-5097', '859-824-5130 Fax', '25 Ruthman Drive ', '', 'Dry Ridge', 'KY', '41035', '7:30 am - 4:00 pm ', ' I-75 South, Exit 159, merge onto SR-22 (SR-467) (West), left onto Ruthman Drive Formerly Gallatin County Ready Mix '), (32, 2603, 32, '713-957-8191', '', '2416 Karbach ', '', 'Houston', 'TX', '77092', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED Include Certs with shipment SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 DHL Acct# 805111129'), (33, 2604, 33, '518-767-2269/518-767', '518-289-9263 Fax / 5', '123 CR 101', '', 'South Bethlehem', 'NY', '12161', '', ' I-84, Exit 75 (RT-300/Union Avenue/Thruway), merge onto SR-300 (Union Avenue) (South) (I-87/Thruway, merge onto I-87 (New York State Throughway), at I-87, Exit 9, turn right onto US-9 (SR-385), left onto CR-101 (Under Cliff Road) '), (34, 2605, 34, '216-344-4040', '216-344-4044 Fax', '820 W. Superior Avenue, Suite 320 ', '', 'Cleveland', 'OH', '44113', '', ' I-77 North, at I-77, Exit 162A (Woodland Avenue/ E. 30th Street), turn right onto US-422 (SR-8), left onto W. Huron Road, continue west onto W. Superior Road Formally Neyer, Tiseo & Hindo '), (35, 2606, 35, '859-393-1439 Dan ', '937-878-8780 Fax ', '7941 New Carlisle Pike', '', 'Huber Heights', 'OH', '45424', '', ' I70, Exit 41, merge SR-235 (North), left onto Gerlaugh Road, bear right onto CR-177 (S. Palmer Road), bear left onto CR-241 (Bellefontaine Road), continue on Bellefontaine Road, left onto Artz Road, right onto New Carlisle Pike (Technology Blvd.) '), (36, 2607, 36, '740-667-7309', '740-667-7306 Fax', '25745 Cemetery Road', '', 'Coolville', 'OH', '45723', '8:00am-5pm Office; 8:30am-4pm Lab', ' SR 7 south out of Parkersburg to right on County Road 56 (at Coolspots) almost an immediate left on Cemetery Road to top of grade. Grey building with teal gutters. '), (37, 2608, 37, '304-201-2325 Jobe', '304-755-1880 Fax', '1005 East State Street', ' ', 'Athens', 'OH', '45701', '7:00 am - 6:00 pm', ' I-77 South, bear left (East) onto I-77, stay on I-77 (SW), at I-77 Exit 1, right onto US-52 (Cumberland Road), right onto Bailey Drive, left onto US-460, entring Virginia, left US-19 (US-460), US-19 West, Pittston Road Exit, bear right, turn right onto Pittston Road, left US-19 Bus (East Main Street), right onto SR-82 (Cleveland Road) to town of Cleveland, VA '), (38, 2609, 38, '(216) 362-1850 ', '(216) 898-6307 Fax', '11830 Brookpark Road', '', 'Cleveland', 'OH', '44130-1177', '8:00am-3:00pm/7:00am-3:00pm Job', 'From Rt. 71 take Rt. 480 E to Brookpark /W 130th St / W 150th St. Exit #12. Turn left (East) on Brookpark (Rt. 17). Go 1 mile. Site on left across from Hugh GM plant. Go to 2nd building. These use Red Lion IMS digital loading indicators make sure you have info if necessary to adjust. (Info in files)'), (39, 2610, 39, '330-501-1161 Scott C', '(330) 759-0923 Fax', '340 New Castle Road', '', 'Butler', 'PA', '16001', '7:00 pm to 7:00 am Midnight Shift ', ' I-80, Exit 29, merge William Flynn Highway, right onto S. Benbrook Road, left onto Lions Road (T694), continue South on N. Eberhart Road, left onto US-422, bear right, merge onto SR-356 (Benjamin Franklin Highway), go south to 340 New Castle Road '), (40, 2611, 40, '513-771-8471', '513-771-8475 Fax ', '11699 Chesterdale Road ', '', 'Cincinnati', 'OH', '45246', '', ' I-71 South to I-275 West ( towards I-75) Exit 44, Mosteller Road, left onto Mosteller, right onto East Kemper Road, right onto Chesterdale Road, building will be on the left hand side, approx. 1/4 mile (just past extended Stay) '), (41, 2612, 41, '717-729-1826', ' ', '472 Newville Road ', '', 'Shippensburg', 'PA', '17257', '7:00 am - 4:00 pm(O) 6:00-3:00 (S)', ' I-70 Conn US-30 Exit, bear right onto US-30 (Lincoln Highway), left onto US-11 (N 2nd Street), left onto SR-553 (Newville Road) '), (42, 2613, 42, '610-351-9815', '610-351-9816 Fax ', '601 South 10th Street, Suite 300', '', 'Allentown', 'PA', '18103', '7:00 am - 4:00 pm', ' I-476 (NE Ext. Penn Tpk) (South), at I-476, Exit 56, bear right onto US-22, at US-22, Exit SR 145, bear right, merge SR-145 (MacArthur Road), right onto Lawrence Street (Martin Luther King Drive), arrive 10th Street '), (43, 2614, 43, '217-937-4341 Ashley', '', '8401 Power Road', '', 'Clinton', 'IL', '61727', '', ' '), (44, 2615, 44, '269-384-9980/269-370', '269-384-9981 Fax', '3401 Midlink Drive ', '', 'Kalamazoo', 'MI', '49048', '8:00 am - 5:00 pm ', ' I-69, Exit 38, merge I-94 West, at I-94, Exit 80 (Sprinkle Road/ Cork Road), turn left onto Sprinkle Road, at stop sign turn right go over a little bridge (2 Big Buildings - 1 East 1- West) make first right hand turn to the building on West '), (45, 2616, 45, '614-778-4305 Jack Ce', '(614) 876-1899 Fax/6', 'Johnstown Airport ', '', 'Johnstown', 'PA', '', '', ' Rte 219 either North or South depending upon where you are coming from, get off at the Galleria Exit, follow Airport signs, you are on Airport road for 1.2 miles, just past construction entrance sign turn left onto Fox Run Road to concrete plant, 1st trailer on left '), (46, 2617, 46, '814-574-5095 Dan ', '814-571-5241 Larry', 'Job Site ', '', 'Lackawanna County ', 'PA', '', '8:00am-5:00pm/7:00am-5:00pm', ' MUST Call Larry to schedule If Special Trip, must inform customer about the cost to come to the facility'), (47, 2618, 47, '814-574-5215', '814-238-0131 Fax', 'Rt. 45 ', '', 'Spring Mills', 'PA', '16875', '', ' US-322 US-322 Bus Exit, East US-322, left onto SR-144, right onto Upper Georges Valley Road, left onto Cooper Street, on Rt. 45 in Spring Mills, PA MUST Call Larry to schedule If Special Trip, must inform customer about the cost to come to the facility'), (48, 2619, 48, '724-336-2435/412-475', '724-265-3323 Fax', '145 Burkey Road ', '', 'Enon Valley', 'PA', '16120', '', 'Entering Ohio CR-8 (E. Garfield Road), right onto E. Garfield Road, bear left onto CR-8 (E. Garfield Road), continue on SR-170 (E. Garfield Road), turn left onto SR-617 (Youngstown Pittsburgh Road), entering PA, right onto SR-351 (T529), left onto Burkey Road '), (49, 2620, 49, '434-296-7989 x 306 B', '434-293-7139 Fax', '1201 Five Springs Road ', ' ', 'Charlottesville', 'VA', '22902', '8:30 am to 5:30 pm ', ' I-64, Exit 121, at I-64, Exit 121, turn left at end of ramp for SR-20 / Scottsville Road South towards Scottsville, 1.4 miles , turn right onto Mill Creek Drive, right onto Avon Street Ext., left onto Southern Parkway, right onto Five Springs Road, arrive at 1201 Five Spring Road, Suite C at end of building CMI$#8217;s Manufacturing Center '), (50, 2621, 50, '410-782-9150', '410-782-9155 Fax', '7266 Park Circle Drive ', '', 'Hanover', 'MD', '21076', '8:30 am - 5:00 pm ', ' I-70, Exit 87A (US-29/Columbia/Washington), continue South on US-29 (Columbia Pike), at US-29, Exit 22, (MD-100 / Glen Burnie), merge SR-100, at SR-100, Exit 8, left onto Coca-Cola Drive, right onto Park Circle Drive '), (51, 2622, 51, '', '', 'FPLE Wind Energy Center ', '6700 Birds Landing Road ', 'Birds Landing', 'CA', '94512', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS Include Certs with shipment FedEx Account- #2979-5538-1 UPS Account - #Y70V26 DHL Acct.# 805111129 '), (52, 2623, 52, '407-575-3903 Cell ', '772-264-2467 Fax ', '7500 Municipal Drive ', '', 'Orlando', 'FL', '32819', '', ' '), (53, 2624, 53, '248-324-5372 Zeerak ', '248-324-5304 Fax', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '7:00am-4:00pm/8:00am-5:00pm Job', ' 275 North, Exit 28 (Ann Arbor Rd/Plymouth/Livonia), right onto Ann Arbor Road, right onto Plymouth Road, left onto Belden Court Formally Neyer, Tiseo & Hindo Latitude: 42 degrees Elevation: 642 feet DWCV: 0.9993 Need tensile fixtures'), (54, 2625, 54, '410-357-9683 Insp./7', '724-443-8733 Fax', 'Storage ', '', 'Saxonburg', 'PA', '16056', 'M-TH 7:00 am - 5:00 pm', ' '), (55, 2626, 55, '304-624-4108 Andy ', '304-624-7831 Fax ', '30 Columbia Blvd.', '', 'Clarksburg', 'WV', '26301', '7:00 am - 4:00 pm office/site', ' I-79 Exit 119, right on US-50 West, go up hill and turn right at stop light, follow road to the right into the Business Center Lab, at the bottom of road, site is on the right side ***Do not use GPS, not accurate*** '), (56, 2627, 56, '(412) 262-2022', '412-262-1979 Fax', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '7:30 am - 5:00 pm', ' ** Go in Aug. and Nov. maybe pro rate in Nov. ask Bill ** Take I-79 South to Neville Island Exit #18. Loop to traffic light. Make left, follow across island. NOTE: GO 25 MPH - OR YOU WILL BE TICKETED. Cross bridge. At light make right. (should be on 4th ave) Go 2 more lights. At 2nd light they will be on your Right side. '), (57, 2628, 57, '(724) 640-2741 Mike', '(724) 696-4952 Fax', '1145 State Route 31', '', 'Mt. Pleasant', 'PA', '15666', '8:30 am - 5:00 pm/7:00am-5:00pm Job', 'Rt. 31 west-stay on Rt. for about 1 1/2 miles from Rt. 119 Interchange '), (58, 2629, 58, '(740) 387-9224 x3048', '740-387-2139 Fax', '1682 Marion Williamsport Road East', '', 'Marion', 'OH', '43302', '8:00 am - 5:00 pm', 'Off Route 23S take Exit for Marion/Williamsport Rd. Turn left (East) at end of ramp. Go approx. 1/2 mile. Site on left - easy to see. First drive on left after RR tracks. Go to larger building to sign in. Machine in smaller building on right. '), (59, 2630, 59, '412-922-4000(O) 412-', '412-922-4043 Fax', '850 Poplar Street', '', 'Pittsburgh', 'PA', '15220', '8:00 am - 5:00 pm ', 'Off Greentree exit of rt 279 up greentree hill - greentree exit - 3 rights to their office. right off exit 2nd light boston market - R, 2nd stop sign R - Parkway will be infront of you. Rolloff Dumpster on loading dock West end circle 51 south come out infront of tunnels - greentree exit left when forks, left at stop - PNC bank on left L - under parkway parking lot with trucks on left hand side. PSI Corp Tech Help Desk 1-630-691-1490'), (60, 2631, 60, '859-746-9400', '859-746-9408 Fax', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '7:30 am - 6:00 pm ', ' ***continued*** Rt. 75 South to Rt. 275 West, take Mineola Pike Exit , left turn go to \"T\" at intersection. At Donaldson Rd., turn left to Cox Rd. Turn left to 90 degree turn. Second building on left. ***Align & tighten all proving rings prior to calibration*** Referred Harper Company to us'), (61, 2632, 61, '859-746-9400', '859-746-9408 Fax', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '7:30 am - 6:00 pm ', ' \"***continued*** Rt. 75 South to Rt. 275 West, take Mineol Pike Exit, left turn go to \"T\" at intersection. At Donaldson Rd., turn left to Cox Rd. Turn left to 90 degree turn. Second building on left. ***Align & tighten all proving rings prior to calibration*** Referred Harper Company to us'), (62, 2633, 62, '859-509-4998 / 859-3', '859- 299-2481 Fax / ', '375 Codell Dr.', '', 'Lexington', 'KY', '40509', '8:00 am - 5:30 pm', ' I-75 South to Man-o-war Exit (108). Make right turn off exit. Go 3 lights (approx. 1 mile). Take right onto Palumbo Dr. Go approx 2 miles to 2nd light & turn left on Codell Dr. Make immediate left after turning onto Codell. Bldg. on left. Formerly Atlanta Testing & Eng Formerly Qore Property Sciences'), (63, 2634, 63, '(859) 498-0088 Lab ', '(859) 498-7444 Fax J', '265 Fogg Pike', '', 'Mt. Sterling', 'KY', '40353', '8:00AMto5:00PMJob:7:00AMto4:00PM', ' I-64 East of Lexington, LY. About 3Miles to Exit 110. Turn right off exit. Go to 2nd light, Turn right on bypass, Go straight after you go through the 5th light. Go about 3/4 mile and turn right on first road. Go to stop sign. Turn Left, 1st building on left. '), (64, 2635, 64, '502-493-7100', '502-493-8190 Fax', '1762 Watterson Trail ', '', 'Louisville ', 'KY', '40299', '', ' Intersection of Watterson Trail and Blue Grass Trailway, 1/4th mile down road in BlueGrass Industrial Park. 1st exit Blanken Decker, Exit ramp Take Left, stop light CUB Bank & McD\'s take right Blugrass Pky 3/4 Mile stop light - take left onto watterson trail 1/8 mile small hill on right GEM Engineering '), (65, 2636, 65, '859-621-9468 Dave ', '859-252-7373 fax', '1562 Old Frankfort Pike', '', 'Lexington', 'KY', '40504', '8:00am - 5:00pm/7:00am - 3:30pm Job', ' I-64 - I-75 to Exit 115, west onto US 68, Right onto circle 4, to Exit #6, East onto Old Frankfort Pike, 1/2 mile on right '), (66, 2637, 66, '661-276-3644', '', 'Attn: Nancy Couoh', 'Bldg. 4863, NASA, DFRC', 'Edwards', 'CA', '93524', '', 'Use Lou\'s Packing List, Fax copy of Certification & Tracking number to Lou, Original Certification in box Certs are in: Lockheed Martin/Edwards AFB Building 4863, NASA, DFRC Edwards, CA 93524 '), (67, 2638, 67, '262-542-0741', '', '1300 Lincoln Avenue', '', 'Waukesha', 'WI', '53186', '', ' Original Certification to Client, copy of Certification & Tracking number faxed to Lou '), (68, 2639, 68, '724-867-8500/814-275', '814-282-1587 Bob Cel', '1111 Prospect Street', '', 'Emlenton', 'PA', '16373', '', ' Continued...... Overnight Deliveries: Columbia Gas of Pennsylvania NiSource Accounts Payable 211 Quality Circle College Station, Texas 77845 '), (69, 2640, 69, '412-335-0170/412-257', '412-257-0327 Fax ', '2345 Morton Road ', '', 'Pittsburgh', 'PA', '15241', '', ' I-80 West, at I-80 I-79 Exit, merge onto I-79 South, at I-79, Exit 54 (PA-50/Bridgeville), merge SR-50 (Millers Run Road), right onto Chartiers Street, right onto Mayview Road, left onto Morrow Road, right onto Morton Road '), (70, 2641, 70, '(814) 781-6262 x3', '(814) 781-3196 Fax', 'Access Road (Elk Co. Industrial Park)', '', 'St. Marys', 'PA', '15857', '6:30-4:00 (office) 24 hr operation', 'From St. Marys: 120E to stop light. Go 1/8 mile, then just past Market Basket make left onto Sweeney Street. Then turn left onto 4th street - follow blue & white signs to Industrial Park. Go onto Washington St. & make left onto Access Industrial Park. Go onto Washington St. & make left on to Access Road (small industrial park) Yellow metal building. '), (71, 2642, 71, '606-928-0998', '606-929-5668 Fax', '1801 US Rt. 60', '', 'Ashland', 'KY', '41102', '7:00 am - 5:00 pm ', ' I-64, Exit 181, turn left, approximately 1 mile on left '), (72, 2643, 72, '614-761-4700 x 4352', '614-761-8630 Fax', '6375 Shier Rings Road, Suite F', '', 'Dublin', 'OH', '43016-1344', '', ' I-71 West, Exit 119B (I-270/Indianapolis), merge onto I-270 West, at I-270, Exit 17B (US-33/OH-161/Marysville), continue West on US-33 (SR-161), bear right (Avery-Muirfield Drive/Hilliard), turn left onto Avery Road, arrive Shier Ring Road 12/08 Done by Test Technology'), (73, 2644, 73, '954-984-9555', '954-984-9559 Fax ', '2001 Blount Road ', 'Florida Headquarters', 'Pompano Beach', 'FL', '33069', '', 'Send original cert in box with machine, fax copy of cert & copy of invoice to Terry Daniel at 410-850-4111 at Corporate office in Hamover, MD, send original invoice to job site. Ship Ground, insure $1,000.00 per Terry Daniel. Use their own spreadsheet and graph for certs. Gauges in stock already paid for by Structural Group '), (74, 2645, 74, '248-231-2369 Craig\'s', '248-344-2115 Fax', '24371 Catherine Industrial, Suite 229', '', 'Novi', 'MI', '48375', '', ' I-275 South, Exit (Grand River East) keep towards10 mile road, right on Catherine Industrial Drive '), (75, 2646, 75, '814-528-7476-Jim/ 81', '814-774-8120 Fax', '1901 Wager Road', '', 'Erie', 'PA', '16509', '8:00am-5:00pm/6:00am-3:00pm Job ', ' I-79 North to I-90 West to Fairview (Rt. 98) Exit, proceed North past Rt. 20 to Middle Road, which is just North of Rt. 20 and you will pass Carter Lumber on your right side. Midlle Road is just under the overpass. Turn left and proceed approx. 6 miles until you see a building on the right with fencing around the perimeter. Enter to the left and proceed to Eriez Repair Center Door 13 '), (76, 2647, 76, '281-469-0040', '', '9110 Taub Road ', '', 'Houston', 'TX', '77064', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS DHL Account-#805111129 FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (77, 2648, 77, '412-362-3800 ', '724-274-2417 Fax', '816 Railroad Street', '', 'Springdale', 'PA', '15144-0167', '', ' I-80 West to RT. 60 South, to Rt. 168 South to Rt. 18 South, go 5 miles to Doren, Inc. Was formely R.I. Lampus'), (78, 2649, 78, '724-962-7296 Cell Mi', '724-342-3405 Fax/724', 'Storage ', '', 'Hermitage ', 'PA', '', '', ' I-79, Exit 96, merge SR-488 (E. Portersville Road), right onto US-19 (Perry Highway), bear left, merge SR-488 (W. Portersville Raod), right onto Mountville Road, right onto Heinz Camp Road, left onto Hogue Road, left onto Dutch Ridge Road, left onto Camp Allegheny Road '), (79, 2650, 79, '412-751-4001', '412-751-4003 Fax ', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '8:00 am - 5:00 pm ', ' I-76 South (PA Turnpike), bear right onto US-22 Bus (William Penn Hwy), left onto SR-48 (Moss Side Blvd.), left onto Ripple Road, bear right onto Center Street, left onto Walnut Street, cross bridge, left onto Smithfield Street, left onto Wide Drive '), (80, 2651, 80, '330-972-7295', '330-972-6020 Fax', 'Carrol Street', 'Auburn Science & Engineering Center', 'Akron', 'OH', '44305', '', ' I-76, Exit 23, merge onto SR-8 (North), at SR-8 Fountain Street Exit, turn off ramp, bear left (North), onto Fountain Street '), (81, 2652, 81, '607-857-9945 Todd', '607-529-3434 Fax', 'Route 17 Exit 59', '', 'Chemung', 'NY', '14825', '7:00 am - 3:30 pm', 'From 17E. Exit #59. Take right (427S). Take first immediate left onto Chemung Flats Road. Go approx. 1/2 mile. Green Scale House w/Black shutters on left. '), (82, 2653, 82, '315-431-4291', '315-431-4292 Fax ', '6730 Myers Road ', '', 'East Syracuse', 'NY', '13057', '8:00 am - 5:00 pm ', ' Interstate 481 to Kirkville Road West, Kirkville Road to Fly Road North, aprrox. 2 miles to Myers Road, right on Myers Road (Dead End), building on right SOC UPS Account Number 765RF1 '), (83, 2654, 83, '704-394-2344', '', '715 State Street', '', 'Charlotte', 'NC', '28233', '', ' '), (84, 2655, 84, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', 'County Route 64', '', 'Horseheads', 'NY', '14845', '7:00 am - 3:30 pm ', 'Take Rt. 17W to Exit #51. Turn right at stop light. Turn at next stop light onto SR 64E. Go 1/4 miles Large blue & orange building on right side. No sign '), (85, 2656, 85, '937-746-3634', '937-746-3635 Fax', '835 N. Main Street', '', 'Franklin', 'OH', '45005', '', ' 1/08 Ship, UPS Red Next Day Air AM, Acct. # 469196, Insure $1,700'), (86, 2657, 86, '330-672-2968', '330-672-7949 Fax ', 'Geology Department', 'McGilvrey Hall', 'Kent', 'OH', '44242', '', 'McGilvrey Hall, Intersection of Lincoln & Summit Street Across from DuBois Bookstore Rt. 43 N to Rt. 59 East, 2 or 3 lights, turn right '), (87, 2658, 87, '(607) 359-3436', '607-527-4405 Fax', '206 West Water Street', '', 'Addison', 'NY', '14801', '7:00-5:00 Call 1 day prior to arrival', 'Rt 15 North 2nd Exit, Eriwin Adison Exit, Left off exit go into town past RR tracks turn Right Site is in operation April - December (no one there at other times - must call) Need heat before we can calibrate next time - too cold!'), (88, 2659, 88, '(607) 529-3235 ext. ', '(607) 529-3434 Fax', 'Route 17 Exit 59', '', 'Chemung', 'NY', '', '7:00 am -4:00 pm', 'From 17E. Exit #59. Take right (427S). Take first immediate left onto Chemung Flats Road. Go approx. 1/2 mile. Green Scale House w/Black shutters on left. '), (89, 2660, 89, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', 'County Route 64', '', 'Horseheads', 'NY', '14845', '7:00 am -3:30 pm ', 'Take Rt. 17W to Exit #51. Turn left at stop light. Turn left at next stop light onto SR 64E. Go 1/4 miles Large blue & orange building on right side. No sign '), (90, 2661, 90, '(607) 324-3375', '', '30 West Main Street', '', 'Hornell', 'NY', '14843', '7:30 am -3:30 pm ', 'From I-17, Take Exit #33. At end of ramp at \"T\" make right. At T with Rt. 21 turn left onto 21 N. Go 3 3/4 miles. Make 1st right just after Qwick Fill. Go through gate. Stay to right, Go to very end of compound. Go to brick building on right of Gaspways. Take \"As-found\" readings THEY CALIBRATE THEIR OWN EQUIPMENT Machine has oversized upper platen.'), (91, 2662, 91, '614-275-1309 Chris', '614-275-1354 Fax / 6', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', ' 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building '), (92, 2663, 92, '614-275-1309 Chris', '614-275-1354 Fax / 6', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', ' 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building '), (93, 2664, 93, '859-371-4005', '859-371-0186 Fax ', '5719 Limaburg Road ', '', 'Burlington ', 'KY', '41005', '7:00 am - 4:00 pm ', ' I-71/75 South from Cincinnati to Exit #181, Burlington Pike, (Rt-18), turn right (West) onto Rt-18, go 3 miles, turn right onto Limaburg Road, up on left about 1/4 mile '), (94, 2665, 94, '937-236-8805 x 206 D', '937-237-9947 Fax / 9', '1220 Hillsmith Drive, Suite K', '', 'Cincinnati', 'OH', '45215', '8:00 am - 5:00 pm', ' I-275 (NW), Exit 43A (I-75/Cincinnati), merge I-75 South, I-75, Exit 14 (OH-126/Woodlawn/Evendale), left onto Glendale Milford Rd, left onto Chester, left onto Hillsmith Drive '), (95, 2666, 95, '269-337-3900 Jeff/51', '(269) 337-3958 Fax/5', '1501 East Kilgore Road', '', 'Kalamazoo', 'MI', '49001', '7:00 am - 3:30 pm ', ' Take 94 to Exit 78 to Kilgore. Go to top light, go straight 1/4 mile down road '), (96, 2667, 96, '586-755-0900 x 17 Jo', '586-755-7456 Fax', '23450 Regencey Park Drive', '', 'Warren', 'MI', '48089', '7:00 am - 3:00 pm', 'Fabrication shop; one block north of 9 mile rd., one block west of Groesbeck '), (97, 2668, 97, '724-438-7430/724-350', '724-438-7435 Fax', '1122 Jummonville Road', '', 'Hopwood', 'PA', '15445', '8:00am-5:00pm/7:00am-5:00pm Job', 'To Boondocks, make right 1/2 to 1 mile Rt. 40 Bypass to Hopwood, South of Uniontown '), (98, 2669, 98, '', '', '2330 NW Raleigh Street', '', 'Portland', 'OR', '97210', '', ' '), (99, 2670, 99, '416-375-3918', '', 'Regional Aircraft, Std\'s Room Tech./Met', '123 Garratt Boulevard', 'Toronto, Ontario', 'Canada', 'M3K 1Y5', '', ' '), (100, 2671, 100, '(513) 896-2066 / 206', '(513) 896-2079 Fax', '2650 Hamilton-Eaton Road', '', 'New Miami', 'OH', '45012', '8:00 am - 5:00 pm Mon - Thurs ', 'I-75, Rt. 63 Monroe. Turn right and go south (left) Rt. 4 for 5 miles. At High Street make right. 3/4 mile on right on 127 go North. Need last years run sheet for instructions. Take jack '), (101, 2672, 101, '606-326-1070', '606-326-1077 Fax', '3221 SR 5 ', '', 'Ashland', 'KY', '41102', '', ' US-52, SR-7 Exit, continue North on ramp, continue West on US-52, turn left onto 12th Street, entering Kentucky, bear right (SW) onto US-60 (13th Street), turn right onto US-23 (Winchester Avenue), bear left onto SR-5 (Bellefonte Princess Road), arrive 3221 SR-5 '), (102, 2673, 102, '703-421-4000 x 1004', '703-431-8000 Fax ', '21505 Greenoak Way', '', 'Dulles', 'VA', '20166', '7:00 am - 5:00 pm ', ' US-15 South (Catoctin Mountain Hwy), entering Virginia, bear left (South) onto US-15 Bypass (Leesburg Bypass), right onto ramp (VA-7), merge SR-7 (E. Market Street) (SE), turn off onto ramp (VA-28/Dulles Airport/Centerville), merge onto SR-28 (Sully Road), left onto Severn Way, bear right onto Woodland Road, left onto Greenoak Way '), (103, 2674, 103, '541-665-7227', '541-664-9547 Fax', '1993 Kirtland Rd.', '', 'Central Point', 'OR', '97502', '', ' '), (104, 2675, 104, '304-267-5660', '304-264-9944 Fax', '405 Corning Way', '', 'Martinsburg', 'WV', '25405', '', ' I-70, Exit 26, merge onto I-81 (Veterans Memorial Hwy, West), I-81, Exit 23, left onto US-11 (Williamsport Pike), to town of Martinburg Need directions from town of Martinburg to job site 2013 Amercast and Hanson Pipe & Precast joined to CP&P'), (105, 2676, 105, '216-344-4040 Brian', '216-344-4044 Fax Ron', '1575 Fairfield Ave', '', 'Cleveland', 'OH', '44113', '', 'Formally Neyer, Tiseo & Hindo I77N, East on 9th St., 2nd left lane, turn right at light on Terio, past Jacobs Field, through carnegin Ave, 1/2 left, Huron past Hard Rock, Superior Left, west 26 left Send Certs To: NTH Consultants, LTD., 820 W. Superior Avenue, Suite 320, Cleveland, OH 44113, Attn: Joe O\'Connell 216-344-4021/216-276-4689 Cell/216-344-4044 Fax '), (106, 2677, 106, '(610) 495-6255 x 10', '(610) 495-7353 Fax', '3335 W Ridge Pike', '', 'Pottstown', 'PA', '19464', '8:30am-5:00 pm(can vary arrange made)', 'Off Route 422 East at Sanatoga Exit. (East side of town) Take right (east) at end of ramp toward Limerick. Immediately make next left toward Sanatoga. Then right at stop light onto E. High Street. It goes down a ramp and becomes 4 lanes. Site is 1 mile on left (White house) Sign says DBA, Inc. Small airport across street. '), (107, 2678, 107, '717-787-6546', '717-783-5955 Fax', '81 Lab Lane', 'DGS Annex Complex', 'Harrisburg', 'PA', '17110', '4-Aug', 'Rt. 322 to Harris burg, at State St. Bridge go to Cameron St. go 3 miles, make right onto Elmerton Ave. right onto Sycamore, Lab Labe on left, old Hospital grounds GO TO OFFICE FOR VISITORS PASS Elevation: 80 feet Latitude: 40.056 Longitude: 75.026 Dead Weight Correction Value: 0.9993 '), (108, 2679, 108, '717-787-6546 ', '(717) 783-5955 Fax', '81 Lab Lane', 'DGS Annex Complex', 'Harrisburg', 'PA', '17110', '6:30 to 3 Office / 6:30 to 4 Site', 'Rt. 322 to Harrisburg, at State Street Bridge go to Cameron Street go 3 miles, make right onto Elmerton Avenue, right onto Sycamore, Lab Lane on left, old Hospital grounds GO TO OFFICE FOR VISITORS PASS Dead Weight Correction Value: 0.9993 Elevation: 80 feet Latitude: 40.056 Longitude: 75.026 Use proving ring test frame to build pressure to calibrate D-500 Shear force'), (109, 2680, 109, '(717) 787-6546 ', '(717) 783-5955 Fax', '81 Lab Lane', 'DGS Annex Complex', 'Harrisburg', 'PA', '17110', '8:00 am - 4:00 pm', ' e-mail Invoice to chneely@state.pa.us Rt. 322 to Harrisburg, at State Street Bridge go to Cameron Street go 3 miles, make right onto Elmerton Avenue, right onto Sycamore, Lab Lane on left, old Hospital grounds GO TO OFFICE FOR VISITORS PASS Elevation: 80 feet Latitude: 40.056 Longitude: 75.026 Dead Weight Correction Value: 0.9993'), (110, 2681, 110, '215-416-7031 Cell Le', '215-755-4551 Fax ', '3600 S. 26th Street', '', 'Philadelphia', 'PA', '19145', '9:00am - 3:00pm/7:00am-3:00pm Job ', ' I-476 (South) (PA Turnpike NE Exit South), stay on I-476 (Blue Route), West , at I-476 Exit 16 (I-76/Philadelphia/Valley Forge), merge onto I-76 (Schuykill Expy East), at I-76, Exit 347B (PA-291/I-955/Penrose Ave/International Airport), continue SE on SR-291 (S. 26th Street). Near Navy Base Enterance. Look for Cement Plant (GPS only Get you close, not real address. '), (111, 2682, 111, '412-922-4000 ', '412-922-4230 Fax', '850 Poplar Street', '', 'Pittsburgh', 'PA', '15220', '7:00 am - 5:00 pm', 'Off Greentree exit of rt 279 up greentree hill - greentree exit - 3 rights to their office. right off exit 2nd light boston market - R, 2nd stop sign R - Parkway will be infront of you. Rolloff Dumpster on loading dock West end circle 51 south come out infront of tunnels - greentree exit left when forks, left at stop - PNC bank on left L - under parkway parking lot with trucks on left hand side. CALL PRIOR - BEFORE 1:00'), (112, 2683, 112, '814-781-8259 Kathy /', '(814) 781-8570 Fax', '215 Stackpole Street', '', 'St. Marys', 'PA', '15857', '7:30 am - 3:30 pm', 'I-80 Exit #17. North 255 to 120 East. Go 1.6 miles past left on 460W, 1st exit to Farmville. Stop light go right onto Stackpole St. (No sign!) Pass Detallo\'s Markert, bear left. Site on right. NEED AS FOUND READINGS *MUST HAVE 1\" DIALIND. FOR SPEED Need Hard Hat Dead Weight Correction Value: 0.9993 Formerly Carbone of America Formerly Carbone Lorraine '), (113, 2684, 113, '011-599-520-6503', '', 'The Bottom', 'SABA', 'Neth. Antilles', '', '', '', ' '), (114, 2685, 114, '724-657-8787', '724-657-1990 Fax ', '930 Cass Street', '', 'New Castle ', 'PA', '16101', '', ' I-79, Exit 105, merge SR-108, left onto McMurray Road (Stoughton Road), right onto Stoughton Road (T485), left onto US-19, right onto ramp, US-422 (New Castle Road), right onto ramp, continue on US-422, at US-422 SR-65 Exit, bear right, merge onto SR-65 (US-422 Bus) (NW), onto Cass Street '), (115, 2686, 115, '972-636-2090', '972-636-3789 Fax', '1515 East I-30 Service Road', '', 'Royse City', 'TX', '75189', '', ' '), (116, 2687, 116, '540-894-2916 William', '(540) 894-2813 - Fax', 'North Anna Power Station', 'Building 15', 'Mineral', 'VA', '23117', '7:30am-4pm Office/7:30am-2:30pm Lab', 'I 95 S to Thornburg Exit 118, Route 208W, cross lake, make left signs for information center, on Rt. 700 (Kentucky Springs Road?) flashing light, follow signs for North Anna **PLEASE SEND A COPY OF THE FORMAL PO WHEN YOU CONFIRM THIS WORK Send Invoice to: Virginia Power Accounts Payable OJRP-18 PO Box 25459, Richmond, VA 23260-5459 Fax # 804-771-6821'), (117, 2688, 117, '011-297-594-2886', '011-297-583-1545 Fax', 'Canashito z/n', '', 'Oranjestad', 'Aruba', '', '7:30am-4:30pm/7:00am-4:00pm', ' At Airport, traffic light, take a right, then left at Mahuma Intersection, 4th paved road to your right, follow road into Theil Corporation N.V., ask at sales office to call Lab personnel Need Technician\'s information to get work permit issued & rent car '), (118, 2689, 118, '011-297-585-8423/011', '011-297-585-1233 Fax', 'Sahara Blanco 2', '', 'Barcadera z/n', 'Aruba', '', '', ' Need Technician\'s information to get work permit issued & rent car '), (119, 2690, 119, '610-923-5000 x 37022', '610-923-5009 Fax ', '800 Uhler Road', '', 'Easton', 'PA', '18040', '', ' Rt. 80 East to Rt. 33 South Exit, Rt. 191 Stockertown, at light turn right onto Main Street, which turns into Sullivan Trail, at the first light is Uhler Road, turn left. The Plant is ahead on right '), (120, 2691, 120, '814-280-8696 Gary Ce', '814-237-4491 Fax', '185 Tattletown Rd', '', 'Coburn ', 'PA', '16832', '', ' I-99 (US-220) South, go under the I-99 Bridge on ramp, go through VFW parking lot to trailer '), (121, 2692, 121, '(585) 593-2741 ext 2', '(585) 593-0488 Fax', '4316 Bolivar Road ( Warehouse )', '', 'Wellsville', 'NY', '14895', '7:00 am - 3:30 pm', 'From Olean, NY to Portville to Rt. 417. Stay on Rt. 417 to Bolivar Road to Wellsville. Location is just before town of Wellsville on left. Sign on building says LC Whitford. '), (122, 2693, 122, '814-938-7411', '814-938-7474 Fax', '700 Martha Street', '', 'Punxsutawney', 'PA', '15767-0500', '8:00 am - 5:00 pm ', 'Rt 36 South to Stop sign, make right 436 over bridge 2nd left past bridge, 1st mfg on right Martha St. '), (123, 2694, 123, '215-739-5491/215-852', '215-739-5492 Fax ', '3025 Castor Avenue', '', 'Philadelphia', 'PA', '19134', '', 'Interstate I-95 to Allegheny Avenue Extension Tax Exempt No: 20050937'), (124, 2695, 124, '616-459-0204 / 616-2', '616-459-0626 Fax ', '1316 Front Avenue NW, Suite 117', '', 'Grand Rapids', 'MI', '49504', '8:00 am - 5:00 pm ', ' I-96 (West), on I-196 (Gerald R. Ford Fwy), at I-196, Exit 77B, turn off ramp, continue North on US-131 (US-131 / Cadillac), Exit 87 (Leonard Street), bear right onto ramp, bear left onto Scribner Ave NW, turn right onto US-131 Bus (Leonard Street NW), turn left onto Front Avenue NW '), (125, 2696, 125, '540-785-6100', '540-785-3577 Fax', '915 Maple Grove Drive, Suite 206', '', 'Fredericksburg', 'VA', '22407', '8:00 am - 5:00 pm ', ' Interstate 95 to Rte 3 West, left on Taskforce Drive, right on Maple Grove Drive '), (126, 2697, 126, '231-657-1058 Josh Ma', '231-547-9171 Fax / ', '05481 US 31 South', '', 'Charlevoix', 'MI', '49720', '', 'I-96 West, at I-96, Exit 148B (US-23/Flint), continue North on US-23, continue North on I-75 (US-23), at I-75, Exit 282, merge onto SR-32 (W Main Street), stay on SR-32 (M 32), right onto US-131 (SR-32), left onto US-31 (Charlevoix Avenue), arrive 05481 US 31 South 3/09 Said bought machine from Oberfield\'s, we last calibrated it for Fostoria Concrete Products, Inc in Fostoria, OH on 10/21/2002 '), (127, 2698, 127, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', ' **NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (128, 2699, 128, '1-866-639-7667', '1-866-809-6307 Fax ', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', ' **NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (129, 2700, 129, '304-296-2810', '304-295-9658 Fax', 'Storage', '', 'Parkersburg', 'WV', '', '7:00 am - 4:30 pm ', ' '), (130, 2701, 130, '434-856-8115', '804-328-3136 Fax', '4219 Campbell Ave.', 'P.O. Box 11649', 'Lynchburg', 'VA', '24506', '', ' 81 South to 64 East. Exit 99 - 250 East 151 South to Route 6 (Left East) Right-West 29 South to Bypass (cross river) West 460. stop light first exit (501), turn left, go South, first building on right lower gate '), (131, 2702, 131, '412-351-6465', '412-351-6401 Fax ', '2018 Waverly Street', '', 'Pittsburgh', 'PA', '15218', '', ' Take Parkway East thru Squirrel Hill tunnels. Take Edgewood/Swissvale Exit, (keep right), at top of exit ramp, make left at stop sign. At light, make right onto Braddock Avenue, travel past Edgetowne Center Shopping Plaza, go under stone-faced railroad tressel. At light, make right onto Waverly. CEC, Inc. parking lot is about 100 ft from intersection, on the right '), (132, 2703, 132, '804-218-5289 Cell ', '804-794-2635 Fax ', '15871 City View Drive, Suite 200', '', 'Midlothian', 'VA', '23113', '8:00 am - 5:00 pm ', ' I-95 to 295 to Charlottesville, VA , I-64 West to Rt. 288 South to Rt. 60 to Village Bank, new facility across the street '), (133, 2704, 133, '(703) 713-1900', '(703) 713-1910 Fax', '13750 Sunrise Valley Drive', '', 'Herndon', 'VA', '20171', '8:00 am - 5:00 pm', '(Near Dulles Airport) Take 70S to Frederick Exit - US Rt. 15S to Leesburg. Take Rt. 7 about 506 miles to Rt. 28. Follow 28S Go right.) Cross South to Toll Road to Dulles. S 28 to 1st stop light. Go left onto Frying Pan Rd (Rt. 608E) then take left onto Horse Pen Road. Site next to Hyall Hotel on left. Brown brick building. 28N before airport, Frying Pan RD right 2 blocks left on Sunrise Valley DR on left at neck'), (134, 2705, 134, '814-548-7090', '814-933-1411 Fax ', '660 Axemann Road', '', 'Pleasant Gap', 'PA', '16823', '7:00 am - 3:00 pm ', 'I-80 East, Exit 161 (Bellfont), Rt. 26 South, 2nd Exit, Exit 81 (Pleasant Gap), Rt. 26 South, at end of ramp turn right onto Rt. 26 South , go 1 1/2 mile to 2nd red light, turn right onto SR-144 North, go 1 mile on left, White concrete block building '), (135, 2706, 135, '571-237-0590 Huntae ', '703-858-1858 Fax', '8001 Galleria Drive ', '', 'McLean', 'VA', '20122', '', ' I-495 (South), Exit 46A (VA-123/Chain Bridge Road/Tyson Corners/ Vienna), merge SR-123 (Chain Bridge Road), continue North on International Drive to Galleria Drive '), (136, 2707, 136, '304-419-5128 Jeff', '304-755-2349 Fax ', 'Rt. 1, Box 74 ', '', 'Poca', 'WV', '25159', '7:00 am - 5:00 pm ', ' I-64 West, Exit 45, turn right past Pilot to Poca, Smith Concrete on the left Billing: Shelly Central AP Processing, PO Box 600, Thornville OH 43076- 740-246-6315/740-246-4715 Fax (Debbie Havens phone # 740-246-1121'), (137, 2708, 137, '304-422-4841', '304-485-8818 Fax Jim', '316 Murray Lane', '', 'Parkersburg', 'WV', '26104', '8:00am-4:30pm/7:00am-4:00pm Job', ' I-77 exit 173 Camden Ave, 1st right left at school past bus garage, right on Murrary Lane at end of street '), (138, 2709, 138, '304-367-4795', '304-367-4934 Fax ', '1201 Locust Avenue', 'Department of Technology', 'Fairmont', 'WV', '26554', '', ' I-79 South, Exit 137, merge onto SR-310 (CR-3) (North), turn right onto CR-19 (Jefferson Street), turn left onto US-19 (Adams Street), arrive Locust Avenue '), (139, 2710, 139, '724-282-2221', '724-287-1443 Fax ', '685 Glenwood Way', '', 'Butler', 'PA', '16001', '7:00 am - 3:30 pm', ' Rt. 38 South toward Butler, Glenwood Way, turn right, near Oesterling Concrete, went too far if see Milich Auto Wrecking '), (140, 2711, 140, '513-556-4371-Mohamme', '513-556-5323 Fax', '2220 Victory Parkway', '765 Baldwin Hall, 2850 Campus Way', 'Cincinnati', 'OH', '45221-0071', '8:00 am - 5:00 pm', 'I-71N Through tunnel-STAY in left lane. 1st Exit (Eden Park-Reading Rd.) Go right on Eden Park, go to round-about STAY in Right lane-group hill Eden Park turns into Victory Parkway--Follow Victory until you see college of Applied Science Building on Right. CALL MOHAMMED x3 Taft Rd left at 1st , turn left again at next light, Memillan Rd, 1 mile turn left on Victory Pkwy 1/2 mile of left hand side'), (141, 2712, 141, '484-247-3860', '814-224-2185 Fax ', 'Bay #3', 'Adlee/Precast Nucon Plant', 'Roaring Spring', 'PA', '16673', '7:00-3:00', '99 to Roaring Springs, Roaring Springs Complex in Newcrete, Rt. 36, Bay #3 Formerly Ellenberger Precast & Supply, Inc. '), (142, 2713, 142, '(814) 665-8221 ', '(814) 664-9571 Fax', '21 Maple Avenue', '', 'Corry', 'PA', '16407', '7:30 am - 3:30 pm', 'Coming in on Rt. 77 from Rt. 8. At 1st red light (heading east) come to Rt. 426. Go straight ahead 1 block Turn left - go across RR tracks (site on left) '), (143, 2714, 143, '814-766-0313', '814-766-0234 Fax', '3247 Pennington Road', ' ', 'Tyrone', 'PA', '16686', '7:00 am - 4:30 pm', ' I-995, Exit 48, turn left, go to Route 550 North, approx. 2 1/2 miles on the right ONLY PUT MONTH & YEAR ON STICKERS'), (144, 2715, 144, '315-252-7214', '315-252-7859 Fax', '58 Prospect Street', '', 'Auburn', 'NY', '13021', '7:00 am - 5:00 pm', 'Weedsport exit off Thruway, S. Rt. 34 into Auburn Rt. 5E almost to Walmart road to right between bank and bar Brookside Drive, yield to right onto Prospect St. to Sunnycrest, turn left go to back to new plant '), (145, 2716, 145, '315-638-2706/Chris\'s', '315-638-1544 Fax', '7246 State Fair Blvd. ', '', 'Syracuse', 'NY', '13209', '8:00 am to 5:00 pm ', 'Near Syracuse I-90 East, Exit 178A toward Buffalo, (Portions Toll crossing into New York), RT-34, Exit 40, toward Weedsport/Auburn, turn right onto NY-34, turn slight right onto Erie Drive/NY-31, left onto East Brutus Street, it becomes East Brutus Street/CR-31B, it becomes Old Rt-31B/CR-99, turn slight left onto NY-5 E, it becomes NY-174 East, stay straight to go onto West Genesee Street/CR-190 '), (146, 2717, 146, '(814) 456-7027', '(814) 454-0737 Fax', '2550 McKinley Ave.', '', 'Erie', 'PA', '16503', '7:30-4:30 Office / 7:30-3:30 Lab', 'I-79N to Rt. 20 to East 26yh Street Exit. Go thru Erie on East 26th. Go past school\'s football field (on right) and go 4 or 5 miles after that to site. Watch for McKinley Ave at Burger Kind/Red light/ McDonalds. Go across street. They are on the left next to Burger King. '), (147, 2718, 147, '', '', 'County Road #19', '', 'Prewitt', 'NM', '87045', '', ' **NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 - Zip Code 49422 Include Certs with shipment'); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (148, 2719, 148, '585-352-9720', '585-352-7359 Fax ', 'Attn: Samdra Miller ', '5175 Joliet Street', 'Denver', 'CO', '80239', '', ' Certs in: Vestas American Wind 5175 Joliet Street Denver, CO 80239 '), (149, 2720, 149, '570-447-7366 Noah Ce', '607-562-3011 Fax', '3308 State Route 352', '', 'Corning', 'NY', '14830', '7:00 am - 3:00 pm ', 'Out of Corning Rt. 17, Exit 48, at top of ramp turn right, Griffith Energy building there, go 1/4 mile on left hand side is Wayne Nash Truck Service, turn left on driveway (They share Driveway), go down driveway will see plant '), (150, 2721, 150, '717-324-0937', '717-423-6310 Fax ', 'Storage', '', 'New Cumberland', 'PA', '', '', ' Pa Turnpike to Exit 201 (Blue Mountain), go thru booth and turn left onto Rt. 997, go approx. 3 miles and turn left onto 3 Square Hollow Road, you will see the job trailer on left (Note: Stay on 997 until 3 Square Hollow Road) '), (151, 2722, 151, '440-256-6500', '440-256-6507 Fax', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '8:00 am - 5:00 pm', ' 11 North to 322 West to 306 North. Elevation: 710 Feet, Lat: 41.629*N, Long: 81.362*W Dead Weight Correction Value: 0.9993 Fornerly EDP Consultants, Inc. Formerly EDP Geo Sciences, bought out by Soils & Materials Engineers'), (152, 2723, 152, '304-545-7606 Brent ', '(304) 722-4230 Fax', 'Storage', '', 'St. Albans', 'WV', '25177', '', ' '), (153, 2724, 153, '989-240-2936', '989-345-1100 Fax ', '11362 Steckert Bridge Road ', '', 'Roscommon', 'MI', '48653', '', ' I-75, Exit 239, merge onto SR-18 (NE), left onto Lancewood Drive, continue on Steckert Bridge Road, at Crawford County Line 3/4 miles on the left '), (154, 2725, 154, '541-564-7279', 'Ref PO PORC60001316', '78068 Ordance Road', 'Attn: Abby Sanchez/Umatilla Chemical Dep', 'Hermiston', 'OR', '97838', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED Include Certs with shipment SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 DHL Acct# 805111129'), (155, 2726, 155, '859-322-3027', '859-441-2715 Fax', '21 Hartweg Avenue', '', 'Fort Thomas', 'KY', '41075', '', ' '), (156, 2727, 156, '757-456-2220', '757-473-2204 Fax ', '4989 Cleveland Street', '', 'Virginia Beach', 'VA', '23462', '', ' Broker: Paul Davidson BAE Systems Norfolk Ship Repair 750 West Berkley Avenue, Norfolk, VA 23523 757-494-4798/757-409-7507 Cell/757-494-4447 Fax paul.davidson2@baesystems.com '), (157, 2728, 157, '440-239-2015', '440-239-2000 Fax', '125 Blaze Industrial Parkway', 'PO Box 799', 'Berea', 'OH', '44017', '8:00 am - 5:00 pm ', ' CALL FOR DIRECTIONS I-80 to I-71N to Bagley Rd Exit 235 Go west into Berea go through town about 1-2 miles til you see the first Burger King this is Blaze Ind. Parkway-make left they are on left side '), (158, 2729, 158, '607-962-8864 / 716-8', '607-962-5968 Fax', 'Job Site ', '', 'Syracuse ', 'NY', '', '7:00-5:30 (maybe later)', '15 SOoth Epic Pork exit at light turn right, 500 feet right side. Look for equip across from lodge on green hotel 414 South, I-86 West, to 15 South, get in right hand lane, at top of ramp make left aross bridge, at red light turn right '), (159, 2730, 159, '304-767-4595 Jeff B', '', '101 Federal Drive', 'McDowell County', 'Keyser', 'WV', '', '7:00 am to 5:00 pm ', ' Off Highway 16, as soon as you cross McDowell County line you will go approx. 1,000 feet, take right onto gravel road, follow road to Clark Construction '), (160, 2731, 160, '614-888-0576', '614-848-6712 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 am - 4:30 pm', ' Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right '), (161, 2732, 161, '724-712-9291 John\'s ', '412-767-4861 Fax', 'Rt. 910 (S. Montour Rd.)', '', 'Gibsonia', 'PA', '15044', '7:00-5:30', ' 79 to Wexford Exit, (Orange Belt), Rt. 910 East, box trailer sitting on the right hand side of the road approx. 6 to 8 miles from exit, right before the bridge over Turnpike, turn right onto S. Montour Road, site is on the left 1/09 Replaced pump hose & fluid S/N 02059'), (162, 2733, 162, '(814) 435-6541 ', '814-435-8501 fax', '1251 US Route 6 West', ' ', 'Galeton', 'PA', '16922', '8:00am-4:00pm M-F(O) 24hrs. M-F(S)', 'Rt. 6 - halfway between Wellsboro & Coudersport. Galeton is 25 miles west of Wellsboro. Site is 4 miles to West of Galeton on Rt. 6. Left side in yellow brick building. If coming past Coudersport first watch for Denton Hills Ski Area and go about 11 more miles. ISO - Must be calibrated within the year date!!! Take QA Book'), (163, 2734, 163, '814-538-9169 Matt', '724-452-8923 Fax', '3740 Johnsonburg Ridgway Road ', 'Rt. 219', 'Ridgway ', 'PA', '15853', '7-Whenever', ' 80 East, Hazen Exit, 28 North to Brockway, 28 turns into 219 North, take 219 North to Ridgeway, follow 219 thru town, Turn right at Traffic light 3.9 mile North '), (164, 2735, 164, '814-342-7090 x 206 J', '814-342-7099 Fax ', '4031 Allport Cutoff', '', 'Morrisdale', 'PA', '16858', '8:00-3:00', ' Rt. 322 to Bigler, PA, there is a Mini-Oil Minute Mart, John Deere Dealership & Elementary School at stop light, turn left go 1.8 miles they are on the right '), (165, 2736, 165, '814-224-2121', '814-766-0222 Fax', 'Prestress Plant', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', 'Annette - Prestress Secretary', ' PUT MONTH, DAY & YEAR ON STICKERS *** 1 Year Schedule*** Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. Send Cert to: NESL, 8180 Woodbury Pike,Roaring Spring, PA 16673 Attn: Anthony Gale ***GET P.O. NUMBER ON SITE***'), (166, 2737, 166, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS Include Certs with shipment FedEx Account- #2979-5538-1 UPS Account - #Y70V26 DHL Acct.# 805111129 '), (167, 2738, 167, '607-425-6916 Cell', '570-833-5698 Fax', 'One Fairview Street ', '', 'Meshoppen', 'PA', '18630', '', ' '), (168, 2739, 168, '724-258-0364 Andy', '', '401 Railroad St.', '', 'Monongahela', 'PA', '15063', '8:00 am-5:00 pm / 7:00 am-4:00 pm Lab', ' 70 E Centerville Monongahela Exit old 13 Ramp Left 481 North into Monongahela light straight sheetz right to stop left thru 2 stop signs cross tracks on right Formerly Midatlantic Precast.'), (169, 2740, 169, '412-246-0330 x 127/4', '412-246-0341 Fax Joe', 'Intersection Stanwyck & Penn Ave.', '', 'Pittsburgh', 'PA', '15227', '', 'SR-28 (East) (PA-28/Etna), at SR-28, Exit 2 (40th Street Bridge), turn right onto 40th Street Bridge (Washington Xing Brid), continue on 40th Street, right onto Penn Avenue, corner of Penn & Stanwyck Avenue, across from the 5th Avenue Place Building All Invoices must have project number on them. 390100.01-Intials-Sequence ### (3 digit number) If Contact at job site does not know sequence number get their '), (170, 2741, 170, '814-571-7879 Chris', '814-238-0131 Fax', 'Job Site ', '', 'Shippenville', 'PA', '', '', ' Shippenville near the old Exxon '), (171, 2742, 171, '410-850-7000', '410-850-4111 Fax', '6955 San Tomas Rd', ' ', 'Elkridge', 'MD', '21075', '', 'Send original cert in box with machine, fax copy of cert & copy of invoice to Terry Daniel at 410-850-4111 at Corporate office in Hamover, MD, send original invoice to job site. Ship Ground, insure $1,000.00 per Terry Daniel. Use their own spreadsheet and graph for certs. Gauges in stock already paid for by Structural Group Changed name from Structural Preservation Systems, Inc.'), (172, 2743, 172, '410-850-7000 Ext. 33', '410-850-7000 Ext. 33', '7455 New Ridge Road, Suite T ', 'Corporate Headquarters ', 'Hanover', 'MD', '21076-3143', '', 'Send original cert in box with machine, fax copy of cert & copy of invoice to Terry Daniel at 410-850-4111 at Corporate office in Hamover, MD, send original invoice to job site. Ship Ground, insure $1,000.00 per Terry Daniel. Use their own spreadsheet and graph for certs. Gauges in stock already paid for by Structural Group Changed name from Structural Preservation Systems, Inc.'), (173, 2744, 173, '716-649-3260', '716-649-3217 Fax', '5690 Camp Road', '', 'Hamburg', 'NY', '14075', '6:30am-4:00pm ', ' Exit 57 off of New York State Thruway 90, South on Camp Road (Rt. 75), roughly 1 mile on right just past Elmview Avenue before railroad '), (174, 2745, 174, '304-746-1140 ', '304-746-1143 Fax', '510 C Street', '', 'South Charleston', 'WV', '25303', '8:00 am - 5:00 pm ', 'I-64, Exit 56 (Montrose Drive), at end of ramp at stop light, turn right, get in left lane, at next stop light turn left on US Rt. 60 (MacCorkle Avenue SW), take first left turn, go behind Speedway gas station (you are on 4th Avenue), at stop sign turn right (you are now on C Street), go through next stop sign, second building on right (Tan metal 1-story) '), (175, 2746, 175, '(304) 344-0821', '(304) 342-4711 Fax', '912 Morris Street', '', 'Charleston', 'WV', '25301', '7:30 am - 5:00 pm', 'MUST CALL 1 DAY PRIOR!!!!! From 77S get off at Exit # 100 (Broad & Cepted St) At Exit Bear to right (Capitol). At bottom of ramp - turn right (Shrewsbury St) Go straight to stop sigh. AT \"T\" turn right onto Smith St. Go thru 1 stop. At second stop - turn left onto Morris St. Go across RR tracks and go about 100 yds. Site on right (at corner of Morris & Piedmont) Dead Weight correction value: 0.9993'), (176, 2747, 176, '304-203-7224 Matt/30', '(304) 592-5578 Fax30', '306 Chapel Road ', '', 'Gassaway', 'WV', '26624', '', ' I-79, Exit 62, take Rt. 4 to Gassaway, make right on Chapel Road, go across tracks, site on left '), (177, 2748, 177, '330-630-1501', '330-630-1420 Fax ', '1785 Brittain Road, Unit B', '', 'Akron', 'OH', '44310', '', ' Tax Exempt: 99-633 119 '), (178, 2749, 178, '607-758-7182', '607-758-7188 Fax', '60 Miller Street', '', 'Cortland', 'NY', '13045', '', ' Rt. 81 to Homer (Exit 12), take first exit, when you get off the ramp, Rt. 11 (Homer Avenue), take a right at bottom of exit ramp, 2nd red light take a left (West Main), approx. 2 miles to blinking light, approx. 100 yards, take a left (Miller Street), building is at end of street '), (179, 2750, 179, '242-322-8341x 121 Fa', '242-322-2611 Fax ', 'Yellow Elder Sport Center ', '', 'Nassau, Bahamas', '', '', '', ' '), (180, 2751, 180, '513-829-3448/513-659', '513-829-4233 Fax ', '4408 Dixie Highway', '', 'Fairfield', 'OH', '45014', '8:00 am - 5:00 pm ', ' I-76 West, at I-76, Exit 20, merge onto I-76 South, merge onto I-76 (US-224) West, at I-76 I-71 Exit, merge onto I-71 West, merge onto I-275 (NW), at I-275, Exit 41 (OH 4 / Hamilton / Fairfield), merge onto SR-4 (Springfield Pike) North, arrive 4480 Dixie Highway '), (181, 2752, 181, '607-441-4329 Cell St', '(216) 642-7008 Fax', '150 White Wagon Road ', '', 'Waverly', 'NY', '14892', '', ' New York Interstate, Exit 52 North, on the right, in trailer '), (182, 2753, 182, '814-538-9169 Matt ', '(724) 452-8923 Fax', 'Job Site ', 'Martha Street', 'Punxsutawney', 'PA', '15767', '8:00 am - 5:00 pm', ' Rt. 436, go across bridge, Martha Street on left, go up hill to the top, on left CRW '), (183, 2754, 183, '732-489-5273 Cell Jo', '908-788-8922 Fax ', '597 Cherryville Road', '', 'Flemington', 'NJ', '8822', '8:00-5:00', ' I-78 West, Exit 15, left onto CR-513, left onto CR-617 (Sidney Road), 4.7 miles to Cherryville Road, building is red & white garage behind the yellow house, building is on the left, right before the 4-way intersection '), (184, 2755, 184, '610-428-9475 Cell Jo', '610-261-3448 Fax', '5160 Main Street', '', 'Whitehall', 'PA', '18052', '7:00 am - 3:00 pm ', ' I-80 East, Exit 277 go North on NE PA Tpke, right onto I-476 (NE Extension Penn Tpke), (East), at I-476, Exit 74, right onto US-209 (Inerchange Road), left onto SR-248, right onto Blue Mountain Drive, left SR-145 (Riverview Drive), continue onto 2nd Street, left onto SR-329 (Main Street) On Rt.329 '), (185, 2756, 185, '866-639-7667', '866-809-6307 Fax ', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS Include Certs with shipment FedEx Account- #2979-5538-1 UPS Account - #Y70V26 DHL Acct.# 805111129 '), (186, 2757, 186, '978-857-1679 Cell ', '978-671-6423 Fax', '34 Forest Park Avenue', '', 'North Billerica', 'MA', '1862', '', ' '), (187, 2758, 187, '416-491-7001', '905-940-1711 Fax', '51 Bentley Street', '', 'Markham ON', 'Canada', 'L3R 3L1', '', ' '), (188, 2759, 188, '412-287-7215 Cell ', '724-348-4512 Fax ', '3100 Hill Road ', '', 'South Park Twp.', 'PA', '15129', '', ' I-79 South, Exit 55, merge SR-50 (Washington Pike) (South), need directions to job site from here '), (189, 2760, 189, '304-816-6504 Grant ', '412-262-1979 Fax', '137 Raceway Drive ', '', 'Grafton', 'WV', '', '7:30 am - 5:00 pm', ' I-79, Exit 132 (South Fairmont Exit), go towards Grafton, WV, Rt. 250 South, 15 miles to Taylor County Fairgrounds (Yellow Kenny Construction sign), Grant will meet you there to take you to the site '), (190, 2761, 190, '724-651-0953 Jim Cel', '724-658-4486 Fax/330', '91A Montgomery Dam Road ', '', 'Monaca', 'PA', '15061', '8:00am-5:00pm/8:00am-4:00pm Job ', ' Rt. 60 South to Rt. 18 South (After crossing Ohio River), taking Exit which Y\'s to Monaca (Shippingport ) go toward Shippingport a few miles to Montogomery Dam Road (On right) beside Nova Chemical '), (191, 2762, 191, '(419) 324-2222/419-3', '419-241-1808 Fax /41', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '7:00 am - 5:00 pm ', ' *****ISO Requested***** I-80 West take Exit #4A for I-75 N. Take \"Downtown\" Exit #201B for Rt. 25N. Street bears left. Go through a bunch of lights. Turn left at light at Jackson. Turn right on 12th street. Take next right onto Smith Street. 1st building on left. Block frame has an immense lower platen which will require help to lift out.'), (192, 2763, 192, '302-239-6634', '302-239-8485 Fax', '5400 Limestone Road', '', 'Wilmington ', 'DE', '19808', '', '95 south past Wilmington to exit 4B Rt7 Rt4 take Rt4 towards Stanton Newark go to Rt4 & Rt7 merge right for 2 miles Rt 7 or Limestone RD turn left 7 miles to 4 or 5 lights to Goldie Beacon Bus College, 3 lights turn left Limestone Hills West. IST left big barn sign on barn '), (193, 2764, 193, '(302) 836-5304 x 108', '(302) 836-5458 Fax', '268 E. Scotland Drive', '', 'Bear', 'DE', '19701', '2:00 AM - 5:00 PM', 'Route 7S to Rt. 40 - Make right (west) then go 3-4 miles to East Scotland Drive. Across from \"Glasgow Pines\" residential center, next to Glasgow Pines business center. OR---take I-95 to 896 Exit, take 896 South to 40. Take 40 East, cross RR tracks, turn right at next intersection. '), (194, 2765, 194, '330-966-0444 Ext. 20', '(330) 499-9275 Fax /', '8282 Middlebranch Road', 'PO Box 234', 'Middlebranch', 'OH', '44652', '8:00 am - 5:00 pm', 'Take 76 to 77S- Off at Akron / Canton Airport-Exit # 113. At stop make right on lauby Rd. End at State St. Turn right onto State St.. Go about 6 miles, then turn right onto Middlebranch Rd. Go about 1/4 mile on left. Sign says Axim Technologies. Go down drive, cross RR tracks. Go to building on left. MUST, MUST, MUST CALL PRIOR!!! Password for S/N 10595-03110 (12345)'), (195, 2766, 195, '717-418-5650 Scott C', '717-432-7343 FAX', 'Job Site ', '', 'Chambersburg', 'PA', '', '7:00 am - 5:00 pm Mon - Thurs.', ' '), (196, 2767, 196, '585-269-6493 Patrick', '585-269-6612 Patrick', 'SSD Div., 800 Lee Road ', 'Building 601', 'Rochester', 'NY', '14606', '', 'I-90 Exit, Leroy Exit, 490 to 390 North to Lexington Avenue Exit, make right to next left, to Lee Road, Rt. 180 yards North to parking lot Billing Address: ITT Corp, Attn: SSD, PO BOx 900, Seneca Falls, NY 13148 Amex Cedit Card Billing Address is: 191 Miles Cutting Lane, Pittsford, NY 14534 Auth. Code #6208'), (197, 2768, 197, '703-906-4276', '', '1201 First Street NE', 'Constitution Square', 'Washington', 'DC', '20002', '6:00am-6:00pm/1:00am-7:00pm Job', ' I-495 East Interloop, Exit 33, (MD-185/Connecticut Ave,/Chevy Chase) Merge SR-185 (Connecticut Ave. South) at roundabout 4th Exit, Exit Connecticut Avenue NW, bear right onto Dupont Circle NW, South on Massachusetts Avenue NW, at 2nd Exit, exit roundabout onto Massachusetts Avenue NW, left onto Mt. Pleasant PL NW, left onto New York Avenue NW, right onto 1st Street NE '), (198, 2769, 198, '(734) 453-7900', '(734) 453-0724 Fax', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '8:00 am - 5:00 pm', ' I-275N to M-14 West. Take the Sheldon Road Exit #20 Take North Sheldon to 1st left (Helm Street) before Buick car dealership. Go about 1/2 mile, site on left. Plant North of Ford Plant. Dead Weight Correction Value: 0.9993 Need 1K cell'), (199, 2770, 199, '304-860-1924', '304-624-7831 Fax ', '380 Airport Road, Suite A', '(Raleigh County Memorial Airport)', 'Beaver', 'WV', '25813', '8:00-4:00 office/7:00-4:00 site', ' I-79, Exit 57, continue South on US-19, bear right onto US-19 ALT, turn left onto ramp, bear right onto US-19 (Robert Byrd Drive), turn left onto SR-307 (Airport Road), when at the airport, take right into loop, concrete building on the right '), (200, 2771, 200, '724-477-5100', '724-477-5101 Fax / 7', '150 East Brook Lane', '', 'Butler', 'PA', '16002', '8:00 am - 4:00 pm ', 'East of Butler, 422 East Left at Stoplight onto Bonnnybrook Road Turn left on E Brook Lane...DO NOT CROSS RAILROAD TRACKS '), (201, 2772, 201, '715-247-3364', '715-247-3638 Fax ', '425 County Road VV', '', 'Somerset', 'WI', '54025', '', ' '), (202, 2773, 202, '410-458-0309 Cell Ch', '410-515-4895 Fax ', '3445-A Box Hill Corporate Center Drive ', '', 'Abingdon', 'MD', '21009', '', ' I-695 (I-695/Towson) (Baltimore Beltway Inner Loop) (East), at I-695, Exit 33B (I-95/New York), merge onto I-95 (John F. Kennedy Memorial Highway) (East), at I-95, Exit 77A (MD-24/Edgewood), merge SR-24 (Emmorton Road ) (SE), turn left onto SR-7 (Phildelphia Drive) need directions once close '), (203, 2774, 203, '859-255-3308 x 3732 ', '859-254-2327 Fax / 8', '2456 Fortune Drive ', '', 'Lexington', 'KY', '40509', '', 'I-75, Exit 118, merge I-64 (I-75) East, at I-64, Exit 111, continue (South East) on I-75, at I-75, Exit 110, bear right, onto US-60 (Winchester Road), turn left onto Fortune Road '), (204, 2775, 204, '(814) 472-7700 ', '(814) 472-4221 Fax', 'Storage ', '', 'Ebensburg', 'PA', '15419', '7:30 am - 4:30 pm', ' '), (205, 2776, 205, '859-746-9400', '859-746-9408 Fax', '1398 Cox Ave.', '', 'Erlanger', 'KY', '41018-1002', '7:30 am - 6:00 pm ', ' Rt. 75 South to Rt. 275 West, take Mineol Pike Exit, left turn go to \"T\" at intersection. At Donaldson Rd., turn left to Cox Rd. Turn left to 90 degree turn. Second building on left. ***Align & tighten all proving rings prior to calibration*** '), (206, 2777, 206, '814-796-2114', '814-796-9007 Fax', '511 Bagdad Road', '', 'Waterford', 'PA', '16441', '7:00 am - 3:30 pm', 'South of Erie, Rt. 19, Peach Street Rt. 19 to Waterford to Rt. 97 Humes Chrysler Plymouth turn right on next road (Bagdad Road) Tammy Woinelowiiz - Secretary'), (207, 2778, 207, '(724) 658-6638/724-3', '724 658-6636 FAX', '205 West Washington Street', '', 'New Castle', 'PA', '16101', '', '60 South Sampson St 422 East Exit Take Sampson to Stop Straight to stop to turn left light make right larwence county center to light make right cross bridge sign TC Ready Mix Left 10/02 Must have PO to get paid!!!!! Anything over $ 100 7/04 looked at pump on digital, was ok'), (208, 2779, 208, '1-800-275-0482', '', '2900 NW 29th Avenue', '', 'Portland', 'OR', '97210', '', ' Original Certification in box, copy of cert & tracking number faxed to Lou, use her packing list '), (209, 2780, 209, '727-343-5648', '', '5959 Central Avenue, Suite 204', '', 'St. Petersburg', 'FL', '33710', '', 'SEE PO\'S FOR SPECIFIC INSTRUCTIONS Include Certs with shipment UPS Account - #Y70V26 FedEx Account- #2979-5538-1 '), (210, 2781, 210, '276-964-7000', '276-964-4752 Fax', '559 Wardell Industrial Park', '', 'Cedar Bluff', 'VA', '24609', '', ' '), (211, 2782, 211, '814-379-3706 Brad', '814-379-3531 Fax', '1557 Limestone Road', '', 'Summerville', 'PA', '15864-3819', '', ' Tax Exempt# 160 39017 '), (212, 2783, 212, '503-970-6705 Cell ', '503-288-9017 Fax', '1601 Northeast Columbia Blvd. ', '', 'Portland', 'OR', '97211', '', ' '), (213, 2784, 213, '845-938-2436 / 845-9', '845-446-0483 Fax How', 'Dept. of Civil & Mechanical Engineering', 'Mahan Bldg. #752, Thayer Road', 'West Point', 'NY', '10996', '', ' (West Point directions) I-87 (New York State Throughway) North, Exit 16 (RT-17/Harriman), right onto SR-17, turn off ramp (NY 32/ US 6 East/NY 17 South/ Harriman), merge SR-32, southwest, SR-17 (SR-32), continue on US-6 at roundabout, take the third exit (US 6/Palisades Interstate Parkway), at roundabout take 4th exit, exit roundabout onto US-9W, merge onto SR-218 (Main Street), continue North on West Point Highway, arrive Thayer Road '), (214, 2785, 214, '814-224-2121 x 4256', '814-766-0316 Fax', 'Prestress Plant (Carpenter Shop)', 'Route 36 North, Contract Division', 'Roaring Spring', 'PA', '16673', '6:30 am - 3:30 pm ', 'Take Roaring Springs exit off Rt. 200. Take 36 South ( about 1 mile ) on left. Newcrete Plant Door 6 ****Mail Cert**** Attn: Harry McGhee Shipping Address: 8180 Woodbury Pike, Roaring Spring, PA 16673 ***Carpenter Shop Only paying Sales Tax***'), (215, 2786, 215, '(540) 464-7331 ext. ', '(540) 464-7618 Fax', 'Letcher Ave. (Nichols Eng. Hall)', '', 'Lexington', 'VA', '24450', '', ' 2 YEAR SCHEDULE INTERVAL *No Recal date on Label or Certification* Exit #5S. off I-64. Take Business 11 South into Lexington. Pass foot- ball field on left. Look on right and take second sharp right to the back of Morgan Hall. Go up stairs to 3rd floor for Jeff Parrent\'s office. Directly across from Football Field. Under Arch Way to left into doors.'), (216, 2787, 216, '814-772-9279', '814-772-3319 Fax', '143 Maine Lane', '', 'Ridgway', 'PA', '15853', '', ' '), (217, 2788, 217, '717-597-1969 ', '717-597-0572 Fax', '9156 Molly Pitcher Hwy.', 'Plant #1 - South Plant ', 'Greencastle', 'PA', '17225', '8:00 am - 5:00 pm ', ' 81 South get off Exit #10 turn Right onto 914 W follow 914W to Rt.11 South (Molly Pitcher Hwy) turn left onto RT.11 South. Go Approx 4-5 miles blue building on the left after Tarco. gfaehl@eldoradostone.com'), (218, 2789, 218, '724-323-6660', '724-828-2828 Fax', 'Rt. 22 West', '', 'Imperial', 'PA', '15126', '', '2 miles up the road from office Rt. 22 West, take McDonald Exit, turn left off ramp, turn immediatley left onto Steubenville Pike, go up road 1/2 mile, big sign '), (219, 2790, 219, '937-783-2476 x 236', '937-783-2539 Fax ', '838 Cherry Street', '', 'Blanchester', 'OH', '45107', '', ' I-71 West, at I-71, Exit 94 (US-62/OH-3/Harrisburg/Orient), turn left onto US-62 (SR-3), continue on US-62 (Leesburg Avenue), turn right onto SR-28 (W. Main Street), 15 miles to Cherry Street '), (220, 2791, 220, '845-938-2436 Mike /8', '845-938-2591 Don / 8', 'Dept. of Civil & Mechanical Engineering', 'Mahan Bldg. #752, Thayer Road', 'West Point', 'NY', '10996', '', ' I-87 (New York State Throughway) North, Exit 16 (RT-17/Harriman), right onto SR-17, turn off ramp (NY 32/ US 6 East/NY 17 South/ Harriman), merge SR-32, southwest, SR-17 (SR-32), continue on US-6 at roundabout, take the third exit (US 6/Palisades Interstate Parkway), at roundabout take 4th exit, exit roundabout onto US-9W, merge onto SR-218 (Main Street), continue North on West Point Highway, arrive Thayer Road '), (221, 2792, 221, '(607) 565-2452', '(607) 565-8670 Fax', '88 Porters Simmental Lane', '', 'Waverly', 'NY', '14892', '7:00 am - 5:00 pm', 'From I-17E take Exit #61. Make left (north) on Cayuta Ave (Rt. 34) Go to blinking light - turn right (east) on old 17C. Go 2.3 miles Make right on Sheppard. Make 1st left at sign for Porters Simmental Lane. Site on right. '), (222, 2793, 222, '(570) 837-1774', '(570) 837-1184 Fax', '3369 Paxtonville Road', '', 'Middleburg', 'PA', '17842', '5am - ?', 'From Harrisburg - take Rt. 11/15 to Rt. 104 almost to Rt. 522. Turn left (west) at Coastal Mart (Towards Paxtonville). Site 4 miles on left. MUST VERIFY PREPULLS ON JACK!!!!! Formerly Architectural Precast '), (223, 2794, 223, '(570) 748-7747', '(570) 748-5777 Fax', '357 East Walnut Street', '', 'Lockhaven', 'PA', '17745', '7:00 am - 5:00 pm ', 'Take I-80 to Exit #26 to Rt. 220N. Take Lockhaven Exit. At end of ramp, turn left onto Paul Mack Blvd. (Rt. 120W). Take Walnut St. Exit ramp. Centre Concrete in gray building dead ahead. Bear to right side of building. Lab in small block building in back. '), (224, 2795, 224, '703-996-0123 Joe / 5', '703-996-0124 Fax / 7', '22923 Quicksilver Drive', 'Suite 111', 'Sterling', 'VA', '20166', '', ' 66 east to 28 north, 28 north Dull\'s past toll road, Old Ox Road, 606 left at light, right onto Mercur Road. 1st left onto Quick Silver - 3rd building on right 8/10 S/N 0016, shipped to 6181 Rockfish Gap Turnpike, Crozet, VA'), (225, 2796, 225, '(570) 326-4428', '(570) 326-4012 Fax', '294 Freedom Road', '', 'Williamsport', 'PA', '17701', '7:00 am - 5:00 pm', 'MUST USE I-180 WESTBOUND (no exit eastbound for Basin St.) From I-180W, Basin St. Exit. At ramp go straight past Donut Deli toward 15S. After 3rd light go right on Hepburn Street (go past Wegmans) At Multiway Intersection by Statue bear left past pharmacy on to Market St. At St. Luke\'s Church bear left onto Bloomingrove Road. Take 1st right onto Freedom Road to Walnut construction on right. Sign say \"Wolyniec\" on gate. '), (226, 2797, 226, '814-371-3111', '814-371-6858 Matt\'s ', '40 Parkway Drive', '', 'DuBois ', 'PA', '15801', '8:00-4:00', ' '), (227, 2798, 227, '814-591-0239 Scott\'s', '814-371-6858 Matt\'s ', '875 Theresia Street', '', 'St. Marys', 'PA', '15857', '8:00 am - 4:00 pm ', '120 East through St. Mary\'s. Theresa Street on Left. Job Site on left - 1/2 Mile. '), (228, 2799, 228, '(703) 631-9630/703-6', '(703) 631-6041 Fax', 'Lafayette Business Center', '4160 Pleasant Valley Road', 'Chantilly', 'VA', '20151-1226', '6:00 am - 5:00 pm', 'On John Mosby Highway (Rt. 50). Take Pleasant Valley Road until you see building. Sign on side of building says Burgess + Niple '), (229, 2800, 229, '540-379-9294', '540-710-0035 Fax', '8520 Indian Hills Court', '', 'Fredericksburg', 'VA', '22407', '7:00 am - 5:00 pm ', ' Just off Massaponax Church Road. '), (230, 2801, 230, '540-815-4369 Cell Sh', '540-775-2563 Fax', '11023 Dennis W Kerns Parkway', '', 'King George', 'VA', '22485', '8:00 am - 5:00 pm ', ' King Hwy toVA-3 to Birchwood Creek Road to Dennis W. Kerns Parkway '), (231, 2802, 231, '724-867-8500/814-275', '814-282-1587 Bob Cel', '1111 Prospect Street', '', 'Emlenton', 'PA', '16373', '', '***Continued*** Overnight Deliveries: Columbia Gas of Pennsylvania NiSource Accounts Payable 211 Quality Circle College Station, Texas 77845 '), (232, 2803, 232, '724-867-8500/814-275', '814-282-1587 Bob Cel', '1111 Prospect Street', '', 'Emlenton', 'PA', '16373', '', '***continued*** Note: Extra Chart Paper in drawer at Calibration Clerk Desk Overnight Deliveries: Columbia Gas of Pennsylvania NiSource Accounts Payable 211 Quality Circle College Station, Texas 77845'), (233, 2804, 233, '203-577-7819', '815-942-5631 Fax', '7555 East Collins Road', '', 'Morris', 'IL', '60450', '', ' '), (234, 2805, 234, '205-425-1614', '205-428-9259 Fax', '1900 Morgan Road SE', '', 'Bessemer', 'AL', '35022', '8:00 am - 5:00 pm ', ' '), (235, 2806, 235, '724-867-8500/814-275', '814-282-1515 Greg', '1111 Prospect Street', '', 'Emlenton', 'PA', '16373', '', ' '), (236, 2807, 236, '216-839-7280/216-839', '216-839-8801 Fax ', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '', ' I-271 (Either Direction), head West on Chagrin Blvd. (422), our building is almost 0.7 Miles on the left side of the street the driveway is immediatley before the \"BASF\" sign. The center lane is a turning lane, ask for Paul Pridemore at the front desk. '), (237, 2808, 237, '717-458-0800', '717-458-0801 Fax/717', '910 Century Drive', '', 'Mechanicsburg', 'PA', '17055', '8:00 am - 5:00 pm ', '81 South to Route 15 South, Rossmoyne Road Exit off of Route 15, Turn left off ramp and continue to light at Century Drive, turn right and follow Century Drive to Cul-de-sac and make left to site Behind Medical Clinic Formerly Advantage Engineering, LLC to CMX'), (238, 2809, 238, '845-496-1600 x 216 E', '845-496-1398 Fax ', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '7:00 am - 5:00 pm ', ' I-84, Exit 5 (Maybrook), turn onto Route 208 South (towards Maybrook), stay on Route 208 South through Maybrook and well beyond, until you come to an intersection with Route 207, take a right and then a quick left back onto Route 208 South, continue on Route 208 South until you go under a tunnel, shortly after the tunnel you will see the Advance Testing sign on your left, the driveway is before the sign'), (239, 2810, 239, '716-686-3710 / 716-4', '716-686-3716 Fax / 7', '4400 Broadway Street', '', 'Depew', 'NY', '14043', '8:00 am - 4:30 pm ', ' I-90 East, I-90 (New York Throughway) North, go through toll booth, I-90, Exit 52E (Walden Avenue East / Cheektowago), right onto Walden Avenue, right onto SR-277 (Union Road), merge onto SR-277, (Union Road), West, right onto SR-130 (Broadway Street). '), (240, 2811, 240, '216-839-7280/216-839', '216-839-8801 Fax Pau', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '', '**E-Mail Certs and Invoice to paul.pridemore@basf.com** I-271 (Either Direction), head West on Chagrin Blvd. (422), our building is almost 0.7 Miles on the left side of the street the driveway is immediatley before the \"BASF\" sign. The center lane is a turning lane, ask for Paul Pridemore at the front desk. CAL PASSWORD: STUMP Certificate has to have PO# on it. Need Fixture for Cal 60 to Calibrate S/N 599'), (241, 2812, 241, '716-686-3710/716-465', '716-686-3710 Craig ', 'Grand Island Bridge ', '', 'Tonawanda', 'NY', '', '', ' I-190, Exit 17 (River Road), make a left (Between 2 bridge spans) make a quick right, trailers between spans. Closest address is: 4436 River Road, Tonawanda, NY 14150 '), (242, 2813, 242, '724-981-5200 ', '724-983-2226 Fax Bob', '20 Church Street', 'Plant #2', 'Wheatland', 'PA', '16121', '8:00 am - 5:00 pm', 'Go to Wheatland plant on One Council Avenue, at light turn left Plant #2 Passwords: 560199/398398 11.806 Volts Need Cal 60 and 1 Kip Cell Formerly Sharon Tube Company '), (243, 2814, 243, '814-456-4287 x 2159 ', '814-456-4280 Fax', '1325 Liberty Street', '', 'Erie', 'PA', '16502', '', ' I-80 I-79 Exit, merge I-79 North, at I-79, Exit 182, bear right onto US-20 (W. 26th Street), left onto Liberty Street '), (244, 2815, 244, '814-827-6041', '814-827-0021 Fax', '12225 Gresham Road', '', 'Titusville', 'PA', '16354', '5:00 am - 4:00 pm', 'Off Rt. 8 North onto 408 (Hydetown) Pull into Gravel and Sand Plant. Right hand side in bottom of building. '), (245, 2816, 245, '317-452-6788 Bruce P', ' ', '5769 Park Plaza Court', '', 'Indianapolis', 'IN', '46220', '', ' 465, Exit 37 Benford Blvd. South, go 1 mile to 71st Street, right hard turn, go 0.3 miles, turn left on Hawthorne Park Drive, go 0.2 miles turn left onto Park Plaza Court, in front 5769 '), (246, 2817, 246, '317-326-6000', '317-326-2385 Fax', '7950 Castleway Drive, Suite 100', '', 'Indianapolis', 'IN', '46250', '', ' I-465, Exit 37B (I-69/IN-37/Ft. Wayne), merge onto I-69 (SR-37), at I-69, Exit 1 (82nd Street/Castleton), bear right onto E. 82nd Street, continue South onto Castleway Drive '), (247, 2818, 247, '989-846-6601/989-484', '989-846-6607 Fax ', '4471 M-61', '', 'Standish', 'MI', '48658', '8:00 am - 4:30 pm ', ' I-75 to M-61 East, on M-61 , go about 1 mile, south side of road 10/09 Buying new machine from Forney\'s S/N 09136, '), (248, 2819, 248, '989-846-6601/989-484', '989-846-6607 Fax ', '1000 South US-27', '', 'St. John', 'MI', '48879', '8:00 am - 4:30 pm ', ' I-96, Exit 106B (I-496/US-127/Downtown Lansing), merge onto I-496 (US-127)(North), continue on US-127 (US-127/Flint/Clare), bear left onto US-27, continue on ramp (Price Road), turn left onto E. Price Road, turn right onto US-27 '), (249, 2820, 249, '330-876-2171', '330-876-0393 Fax', '8913 State Street', '', 'Kinsman', 'OH', '44428', '7:00 am - 5:00 pm ', 'I 80 W to Rt 7 North '), (250, 2821, 250, '304-277-4720', '304-277-2081 Fax', '385 River Road ', '', 'Wheeling', 'WV', '26003', '8:00am-4:30pm/6:00am-5:00pm Job ', 'I-79 to I-70 West, Wheeling WV, before entering the tunnel get into the right lane, this lane exits at the west end of tunnel onto Rt. 2, keep right so that you will head North on Rt. 2, you will go about 2 miles on Rt. 2 North, our plant is 2 miles North on Rt. 2, look for building that looks like an old school on left (Riverside), follow drive to red brick office Tax Exempt: 91-1-029743'), (251, 2822, 251, '304-485-2115 x 305 J', '304-485-1882 Fax / ', 'Corner of Spring & Bullit Street', '', 'Charleston', 'WV', '25329', '', 'I-79, Exit 1, turn right onto US-119 (Pennsylvania Avenue), turn left onto Spring Street, continue on Spring Street bridge, continue on Spring Street (E), to Bullit Street Physical Address: Essroc Ready Mix, 1105 9th Street, \"Vienna, WV 26105 Formerly Arrow Concrete '), (252, 2823, 252, '412-287-2123 Gary', '724-443-8733 Fax', '31st Street Bridge ', '', 'Pittsburgh', 'PA', '', '', ' Rt. 28, 31st street bridge '), (253, 2824, 253, '719-549-5226', '719-549-5444 Fax / 7', '45825 Hwy 96 East ', '', 'Pueblo', 'CO', '81006', '6:30 am - 5:00 pm Mon - Thurs', ' '), (254, 2825, 254, '209-827-5323', '209-827-9784 Fax', '31770 Gonzaga Road', '', 'Gustine', 'CA', '95322', '', ' Hwy 152 to Hwy 33 Exit go South 300 yards, turn west until you come to our guard shack '), (255, 2826, 255, '418-775-4358', '418-775-7223 Fax ', '105 rue de la fonderie', '', 'Mont-Joli (QC)', 'Canada', 'G5H 1W2', '', ' Formerly Norcast'), (256, 2827, 256, '615-771-2560', '615-771-2551 Fax', '318 Seaboard Lane, Suite 106', '', 'Franklin', 'TN', '37067', '8:00 am - 4:30 pm ', ' '), (257, 2828, 257, '304-685-4440/304-293', '304-293-7109 Fax ', '541 Engineering Science Building', 'Civil & Enviromental Engineering Dept.', 'Morgantown', 'WV', '26506', '8:15 am - 4:45 pm (Closed 12:00-1:00)', 'Off I-79, Exit #155 Star City Exit, ramp bear right, at bottom hill, at light (Sheetz), turn right cross river, light straight to top of hill, right hand lane, straight through light, left lane, light turn left (Ebensdale Drive), to top, stay on road, back buildings Grey Metal Building. Lab is in Room B-13'), (258, 2829, 258, '570-567-1018', '570-567-1017 Fax', '155 Phillips Park Drive', '', 'S. Williamsport', 'PA', '17702', '', 'Take 220 North to Maynard Exit. Go across bridge and make left. Do not cross railroad tracks. Concrete wall next to Dyke ( Third set of buildings on left). Send invoice attn: George Welsh '), (259, 2830, 259, '(717) 845-5333 ', '(717) 848-5565 Fax/7', '915 Loucks Mill Road', '(Off Route 30)', 'York', 'PA', '17405', '6:00 am - 4:00 pm', 'Off Rt. 83 to Rt. 30E (Exit #9E). Go 1/2 mile - at 2nd light turn turn right onto Loucks Mill Road. Then go to second building on left. Need help to remove block platen. Invoice in Duplicate '), (260, 2831, 260, '570-307-0965 x 526 /', '570-307-0962 Fax', '1205 Mid Valley Drive ', '', 'Jessup', 'PA', '18434', '8:00am-4:30pm/7:00am-5:00pm Job ', ' I-380 I-81 Exit, bear right onto Lackawanna Valley Industrial Highway, bear right on ramp, merge onto SR-247, turn left onto Senator Bob Mellow Drive, bear left onto Mid Valley Road '), (261, 2832, 261, '610-313-3227', '610-313-9667 Fax/610', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '7:30 am - 5:00 pm ', ' ***2014 Put in new Back up ring in S/N 75010 one put in 2013 was not a well made ring** ***ISO Requested*** 80E to Exit 277 (PA-940) take 476S to 76W, Exit 16, take Exit toward Conshohocken, turn right on Matson ***continued*** *Baldwin Need to take Zero cable assembly and knob for Low Range*'), (262, 2833, 262, '610-313-3227', '610-313-9667 Fax', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '7:30 am - 5:00 pm ', ' ***ISO Requested*** ***continued*** 80E to Exit 277 (PA-940) take 476S to 76W, Exit 16, take Exit toward Conshohocken, turn right on Matson '), (263, 2834, 263, '814-536-6630', '814-536-5730 Fax ', '340 Strayer Street', '', 'Johnstown', 'PA', '15906', '', ' USD-422 South East (Benjamin Franklin Highway), US-422 SR-954 Exit, continue East, merge onto SR-954 (South), turn left onto SR-56 (Rte-56 Hwy E), arrive 340 Strayer Street '), (264, 2835, 264, '610-313-3227', '610-313-9667 Fax', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '7:30 am - 5:00 pm ', ' ***ISO Requested*** ***continued*** 80E to Exit 277 (PA-940) take 476S to 76W, Exit 16, take Exit toward Conshohocken, turn right on Matson '), (265, 2836, 265, '301-725-1456', '301-725-1268 Fax ', '10980 Guilford Road ', '', 'Annapolis Junction', 'MD', '20701', '6:00 am - 5:00 pm ', ' 95 South, 32 East to Dorsey Run Road, left onto Dorsey Run Road, right onto Guilford, house on right, across from Graingers '), (266, 2837, 266, '307-233-0789 James', '', '5151 Reserve Drive ', '', 'Evansville', 'WY', '82636', '', ' '), (267, 2838, 267, '(814)758-7670 Shawn ', '', '', '', 'Milford', 'PA', '20132', '', ' '), (268, 2839, 268, '973-483-0722', '973-483-7544 Fax', '2121 McCarter Highway', '', 'Newark', 'NJ', '7104', '', ' '), (269, 2840, 269, '303-263-5139', '', '720 South 45th Street', '', 'Boulder', 'CO', '80305', '', ' '), (270, 2841, 270, '412-670-5164/724-967', '724-748-3045 Fax', '966 Perry Highway ', '', 'Mercer', 'PA', '16137', '', ' I-80 West, Exit 15, turn right onto US-19 (Perry Highway) '), (271, 2842, 271, '(304) 342-4171', '(304) 342-4175', 'Corner of Spring & Bullit Street', '', 'Charleston', 'WV', '25329', '6:30 am - 4:30 pm ', 'From Charleston: I-77N. Take Westmoreland Road Exit. Take 1st Right turn to Pennsylvania Ave. Make Right to Spring Road. Make Right. Lab on Left corner of Spring & Bullit Road. '), (272, 2843, 272, '717-763-1900', '717-763-1911 Fax', '1302 Slate Hill Road ', '', 'Camp Hill', 'PA', '17011', '7:00 am - 4:00 pm ', ' US-15 US-11 Bus Exit, right onto US-11 (US-15), at US-15 Simpson Ferry Exit, bear right onto ramp, ontp East Main Street, left onto Gettysburg Road, Left onto Old Slate Road to Slate Hill Road Main Office: Cannonsburg, PA 724-745-6039 Art '), (273, 2844, 273, '412-287-9903 Tracy C', '724-652-8290 Fax ', '2522 Pearl Buck Road', '', 'Bristol', 'PA', '19007', '7:00 am - 5:00 pm ', ' I-276, Exit 358, east on ramp (Delaware Valley Inter.) (US-13/Bristol/ Levittown/Delaware Valley), bear right onto US-13 (Bristol Byp.), turn right onto SR-413 (New Rodgers Road), turn left onto Ford Road, turn right onto Pearl Buck Road '), (274, 2845, 274, '814-574-5556 Tim ', '717-540-1523 Fax', '81 South', '', 'Chambersburg', 'PA', '17201', '7:00 am to 5:00 pm ', 'I-81 South, Exit 17, about 200 yards past the red light on the right Closest address: 433 Walker Road, Chambersburg, PA 17201 MUST Call Larry to schedule If Special Trip, must inform customer about the cost to come to the facility'), (275, 2846, 275, '920-832-4223', '920-832-4219 Fax', '3100 N Mc Carthy', '', 'Appleton', 'WI', '54913', '', ' '), (276, 2847, 276, '419-351-4108 ', '419-241-1808 Fax', '51 Cookstown Brownmill Road ', '', 'Cookstown', 'NJ', '8511', '8:00 am - 5:00 pm', ' I-276, Toll Road, bear right onto New Jersey Parkway, at New Jersey Turnpike Exit 7 (US-206/Bordentown/Trenton), continue south on US-206, bear left onto ramp, merge onto SR-68, turn left onto CR-537 (Monmouth Road), turn right onto Jacobstown Cookstwon Road, continue East on ramp, turn right onto Main Street, turn left onto Cookstown, McGuire Air Force Base, call to get directions to their gate '), (277, 2848, 277, '(814) 838-2011', '814-766-4045 Fax', '2210 Manchester Road', '', 'Erie', 'PA', '16506', '6:00 am - 2:30 pm ', 'I-79N to I-90 West to 98N to 20E to Manchester Road Take left. Building on left. Long bed Cal required for both Hercules & Cauliflower-- for prepull Manipulate IN2 to get span in by lowering # increase bottom readings Cell #1 IN1 = 0249 IN2 = 1771 Cell#2 IN1 = 0028 IN2 = 1769 RD1 = 0500 RD2 = 4020 RD1= 0000 RD2=4040 Cell #3 IN1= 0049 IN2= 7523 Cell #4 IN1 = 0031 IN2 = 7132 RD1 = 0003 RD2 = 5045 RD1 = 0005 RD2 = 5040'), (278, 2849, 278, '989 529-7476 Harry\'s', '989-753-1875 Fax', '1601 Saline St.', '', 'Essexville', 'MI', '48732', '', ' '), (279, 2850, 279, ' 724-619-6888 Dane 6', '(616) 456-5784 Fax', '4621 Runway Blvd.', '', 'Ann Arbor', 'MI', '48108', '', 'I-94 West, Exit 177 (State Street), bear left onto S. State Street, continue South on S. State Road, turn left onto Runway Blvd. Located in Suite owned by Robertson & Morrison Heating (R&M) Telephone# 734-662-3141 '), (280, 2851, 280, '804-541-2117 Ebony', '804-541-7270 Fax', '710 South 6th Avenue', '', 'Hopewell', 'VA', '23860', '9:00am-6:00pm/8:00am-5:00pm Job ', 'Southeast side of Richmond Corner of 6th Avenue and Winston Churchill Drive, Hopewell, VA ebony.matthews@evonek.com'), (281, 2852, 281, '724-776-1580', '724-776-1593 Fax', '2583 Rochester Road', '', 'Cranberry Twp.', 'PA', '16066', '', ' '), (282, 2853, 282, '757-538-2761/757-438', '757-538-8342 Fax ', '3737 Nansemond Parkway', '', 'Suffolk', 'VA', '23435', '', ' I-64 East, Exit 264 (I-664S, Dowtown Newport News/Suffolk/ Chesapeake) on right take I-664 S (Hampton Roads Beltway) ramp, take Exit 11A (VA-337 W/Portsmouth Blvd.) on right continue onto VA-337 W (Portsmouth Blvd.), arrive 3737 Nansemond Parkway Tax Exempt #10-540859881F-001'), (283, 2854, 283, '814-571-4756', '814-237-4491 Fax', '4181 Windy Valley Road', '', 'Forkston', 'PA', '18629', '', ' Forkstown PA, Follow Windy Valley Road Approx. 1 mile to bridge job trailer on left '), (284, 2855, 284, '440-248-0100 x 2519 ', '440-848-8521 Fax', '34600 Solon Road', '', 'Solon', 'OH', '44139', '7:00 am - 3:00 pm', '***ISO REQUESTED*** ***ISO 9000*** ***continued*** **Serial Numbers must be written as shown above on labels & certs!! **For Instron TTD-CS-100-2LP get instructions from file**** Take 480 East to 91 N and just before intersection with Rt. 422 turn right at light onto Solon Road. Make right at sign for Erico at underpass at Rt. 422 Need tensile fixtures for Instron & Bond Pull tester Need tensile fixtures, dead weights / gram weights.'), (285, 2856, 285, '231-218-0602 Jon / 2', '231-943-5534 Fax', '3600 Renie School Road ', '', 'Traverse City', 'MI', '49685', '', ' I-75, Exit 282, merge onto SR-32 (W. Main Street) (West), stay on SR-32 (M 32), turn left onto US-131 (Mackinaw Trail Road), turn right onto SR-72 (CR-612 NE), turn left onto US-31 (SR-72), turn left onto Renie School Road '), (286, 2857, 286, '216-987-4389 Trent ', '216-987-4396 Fax ', '2900 Community College Avenue', '', 'Cleveland', 'OH', '44115', '', ' I-77, Exit 162A (Woodland Avenue/E. 30th Street), turn right onto US-422 (SR-8) (East), turn right onto E. 30th Street, turn left onto Community College Avenue Turn into Parking Lot, Lot #1, left into lower level beside Recycle Facility, go to Room 122, Trent\'s office or room 7D, Ground Level to class room '), (287, 2858, 287, '916-570-4261', '', '5441 Luce Avenue', 'McClellan Business Park', 'McClellan', 'CA', '95652', '', 'Fax copy of Certification & Tracking Number to Lou Original Certification in box Calibration standards: MIL-STD-45662 or ANSI/NCSL Z540-1 or ISO 100012-1 must be used'), (288, 2859, 288, '859-257-7381', '(859) 257-1815 Fax', 'Kentucky Transportation Center', '176 Raymond Building ', 'Lexington', 'KY', '40506-0281', '', 'Follow East Main into town - Rose Street South. Then Right on Washington Ave. Right onto Garden Ave. Then left onto Graham. When on-site job call prior to arrival. Site within Campus grounds - contact will meet you at front gate and reserve parking space for you. Shipping Address: 176 Raymond Building, Lexington, KY 40506'), (289, 2860, 289, '734-848-6845', '734-848-3317 Fax ', '6555 South Dixie Highway', '', 'Erie', 'MI', '48133', '8:00 am - 4:30 pm ', ' '), (290, 2861, 290, '419-687-8238', '419-687-5185 Fax ', '401 Donnenwirth Avenue', '', 'Plymouth', 'OH', '44865', '8:00 am - 4:30 pm ', ' '), (291, 2862, 291, '(574) 232-4388', '(574) 232-4333 Fax', '412 S. Lafayette Blvd.', '', 'South Bend', 'IN', '46601', '8:00 am - 5:00 pm', ' I-80 North (Ohio Tpke), Exit 77, right onto US-31 Bus, right onto W.Western Avenue, to S. Lafayette Blvd. '), (292, 2863, 292, '724-640-7104', '724-696-4952 Fax', 'Rt. 422', '', 'New Castle', 'PA', '', '7:00am - 5:00pm / 6:30am - 3:30pm Job', ' Rt. 422 heading toward New Castle, across from the Sheetz behind Transportation Management Solutions in the yard '), (293, 2864, 293, '814-224-6870 Mark (O', '814-766-0234 Fax', '1959 State Route 903', ' ', 'Jim Thorpe ', 'PA', '18229', '7:00 am - 3:00 pm ', ' '), (294, 2865, 294, '276-202-1183 Cell Pa', '276-889-4066 Fax / 2', '9069 Porterfield Highway', '', 'Abingdon', 'VA', '24210', '8:00am-5:30pm/8:00am-4:30pm Job', ' I-81, Exit 14, in Abingdon, VA, onto Route 19, go right off of exit ramp, follow 19 approx. 10 miles, continue up Johyn Douglass Wayside lab will be on right at the top of the mountain, right off highway '), (295, 2866, 295, '800-738-7659/281-478', '281-478-5900 Fax/281', '1003 Clay Court', 'Houston Headquarters', 'Deer Park ', 'TX', '77536', '', 'Send original cert in box with machine, fax copy of cert & copy of invoice to Terry Daniel at 410-850-4111 at Corporate office in Hamover, MD, send original invoice to job site. Ship Ground, insure $1,000.00 per Terry Daniel. Use their own spreadsheet and graph for certs. Gauges in stock already paid for by Structural Group '), (296, 2867, 296, '410-358-7171 Ext. 30', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', ' ***continued*** ***Take Vacuum Pump*** Take 695----West side of Baltimore. Take Exit 18 RT. 26 --Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. e-mail Solitation Letter to sam.kimani@ebaengineering.com'), (297, 2868, 297, '410-365-5237 Todd', '410-561-8771 Fax', '200 Frankfurst Avenue', '', 'Baltimore', 'MD', '21225', '8:00 am - 5:00 pm ', 'I-70, Exit 91B-91A (I-695/I-95 S/New York/Glen Burnie), merge onto I-695 (Baltimore Beltway Outer Loop) (South), at I-695, Exit 11A/11B (I-95/Baltimore/Washington), merge I-95 North at I-95, Exit 54 (MD-2/Hanover Street), merge onto SR-2, (Hanover Street) (South), left onto Frankfurst Avenue 200 Frankfurst Road behind 420 Frankfurst Road '), (298, 2869, 298, '304-696-2695', '304-696-5454 Fax ', '1628 3rd Avenue ', 'Weisberg Engineering Lab Room 109', 'Huntington', 'WV', '25701', '8:00 am - 4:30 pm ', ' ***continued*** *SEND CERTS TO BILLING ADDRESS ATTN:PATRICK QUINLAN* I-64, Exit 11 (Hal Greer Blvd.), proceed into Huntington and follow Hal Greer Blvd. past 3rd Avenue, turn right into alley, the Engineering Lab is the first building on the right '), (299, 2870, 299, '304-696-2695', '304-696-5454 Fax', '1628 3rd Avenue', 'Weisberg Engineering Lab Room 109', 'Huntington', 'WV', '25701', '8:00 am - 4:30 pm', 'i-64, Exit 11 (Hal Greer Blvd.) proceed into Huntington and follow Hal Greer Blvd. past 3rd Ave, turn right into alley, the Engineering Lab is the first building on the right '), (300, 2871, 300, '304-696-2695', '304-696-5454 Fax ', '1628 3rd Avenue ', 'Weisberg Engineering Lab Room 109', 'Huntington', 'WV', '25701', '8:00 am - 4:30 pm ', ' *SEND CERTS TO BILLING ADDRESS ATTN:PATRICK QUINLAN* I-64, Exit 11 (Hal Greer Blvd.), proceed into Huntington and follow Hal Greer Blvd. past 3rd Avenue, turn right into alley, the Engineering Lab is the first building on the right '), (301, 2872, 301, '740-859-2131Tom', '740-859-2134 Fax ', '1603 West Baltimore Street', '', 'McMechen', 'WV', '26040', '7:00 am - 5:00 pm ', ' I-70, Exit 1B, continue South US-250 ( SR-2), turn right onto 15th Street, turn left onto W. Baltimore Street Behind Asphalt Plant in Grey Steel Building '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (302, 2873, 302, '740-774-8933 Karen', '740-773-3081 Fax', '650 Eastern Avenue', 'District 9 ', 'Chillicothe', 'OH', '45601', '6:00 am to 6:30 pm', ' I-270 (SE), Exit 52 (US-23/High Street/Circleville), bear right onto US-23 (Portsmouth Columbus Road), continue South on local roads, bear right onto ramp, (High Street), bear right onto ramp, bear right onto US-23, at US-23, Exit 50, continue South on ramp, bear right onto US-50 (Eastern Avenue) Tax Exempt # 31-1334820'), (303, 2874, 303, '513-321-5816 / 513-6', '513-321-0294 Fax', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm', '**All machines need our big & small service labels** ***ISO Requested*** ***continued*** Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (304, 2875, 304, '231-597-2030', 'RMA 7039', '632 Coast Guard Drive ', '', 'Cheboygan', 'MI', '49721', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 DHL Account: 805111129 Original Certification In Box Fax copy of Certification & Tracking Number to Lou Lous Packing List on outside of shipment '), (305, 2876, 305, '907-349-7610 / 907-2', '907-344-4513 Fax / 8', '8900 King Street', '', 'Anchorage', 'AK', '99515', '', ' '), (306, 2877, 306, '908-268-3116 Dan', '908-534-6785 Fax ', '1 Fish House Road ', '', 'Kearny', 'NJ', '7032', '', ' Send Certs to: Key Environmental, 1 Fish House Road, Kearny, NJ 07032 '), (307, 2878, 307, '937-604-3083 Sheila', '(937) 435-5162 Fax', '11505 Commonwealth Drive, Suite 104', '', 'Louisville', 'KY', '40299', '', ' I-64, Exit 17, turn left (SE) onto Blankenbaker Pkwy, continue South on New Blankenbaker Road, continue South on Blankenbaker Pkwy, turn right onto Blankenbaker Access Drive, left onto Decimal Drive to Commonwealth Drive '), (308, 2879, 308, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W '), (309, 2880, 309, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W '), (310, 2881, 310, '845-496-1600', '845-496-1398 Fax ', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '7:00 am - 5:00 pm ', ' I-84, Exit 5 (Maybrook), turn onto Route 208 South (towards Maybrook), stay on Route 208 South through Maybrook and well beyond, until you come to an intersection with Route 207, take a right and then a quick left back onto Route 208 South, continue on Route 208 South until you go under a tunnel, shortly after the tunnel you will see the Advance Testing sign on your left, the driveway is before the sign'), (311, 2882, 311, '717-773-1411/412-475', '724-274-0167 Fax/312', '702 Freeport Road, SR 1001', 'Allegheny River Bridge ', 'Cheswick', 'PA', '15024', '', ' Exit 48, turnpike, Hamarville/Cheswick Exit towards Freeport, under bridge Main Office: Cannonsburg, PA 724-745-6039 Art '), (312, 2883, 312, '304-946-5940 Russ', 'Jack\'s cell 614-778-', 'Job Site ', '', 'Logan', 'WV', '', '7:00 am - 5:00 pm Job Site', ' 79 South to Charleston, WV, Rt. 119 South to Rt. 73 East, go to Rt. 10 South (Bad road - Narrow), on left large Catepillar Dealer (Walker Cat), turn into Walker Cat parking lot, batch plant behind '), (313, 2884, 313, '304-552-9026 Cell Ma', '614-276-6377 Fax/304', 'Storage', '', 'Columbus', 'OH', '', '', ' '), (314, 2885, 314, '215-669-6216', '215-937-6734 Fax', '2 International Plaza', 'Suite 540', 'Philadelphia', 'PA', '19113', '', ' Not within the legal city limits of Philadelphia for tax purposes.'), (315, 2886, 315, '(734) 426-6076', '(734) 426-6078 Fax', '7900 Second Street', '', 'Dexter', 'MI', '48130', '7am-5pm Office / 7am-5pm Lab', 'Exit 169 of 94 West. North to Dexter Ann Arbor. Turn west into Dexter. Dover only right go to end. Shipping & Receiving Rt 4 int, Dover '), (316, 2887, 316, '248-669-5140 x 107 J', '248-669-5147 Fax', '46555 Humboldt Drive', 'Suite 100', 'Novi', 'MI', '48377', '8:00 am - 5:30 pm', ' 12 miles west, at light west Park Drive turn right, 1/4 mile turn left on Humboldt '), (317, 2888, 317, '269-344-7690', '269-344-7693 Fax', '1950 Ravine Road ', '', 'Kalamazoo', 'MI', '49004', '7:30 am - 4:00 pm ', ' I-94, Exit 80, bear right onto Sprinkle Road, turn left onto I-94 Bus, turn left onto SR-43 (E. Kalamazoo Avenue), turn right onto Douglass Avenue, bear left onto Ravine Road '), (318, 2889, 318, '330-786-3191 Bobbi /', '330-786-3199 Fax ', '2088 S. Arlington Road ', 'District 4 ', 'Akron', 'OH', '44306', '6:30-3:00(O) 6:00-2:30 (Site)', ' Arlington Road Exit, go approx. 2.5 miles, building on left to 2088 Arlington Road '), (319, 2890, 319, '412-302-3025 John', '304-293-7109 Fax ', '395 Evansdale Drive ', '', 'Morgantown', 'WV', '26506', '', ' Off I-79, Exit 155, turn left onto Chaplin Road (Osage Road), turn right onto US-19 (SR-7), turn left onto SR-705 (Patterson Drive), turn right onto Rawley Lane, turn right onto Evansdale Drive '), (320, 2891, 320, '248-528-1655 ', '248-528-1702 Fax', '1393 Wheaton Drive', 'Suite 800', 'Troy', 'MI', '48083', '9:00 am - 5:00 pm ', ' I-75 (Chrysler Fwy), North, Exit 67 (Rochester Road), Merge SR-150 (Rochester Road), turn left onto local road, turn right onto Wheaton Avenue CAL VALUES: IN1=0 IN2=7971 RD1=0 RD2=300000 Check nuts on frame on Forney------Top & bottom----every year.'), (321, 2892, 321, '517-432-4914 / 517-4', '517-432-4915 Fax ', '2851 Jolly Road ', '', 'Okemos', 'MI', '48864', '8:00 am - 5:00 pm ', ' Hwy 96, take Okemos Exit, turn left onto Jolly, after first traffic light, turn left on a private road, second building on the East side '), (322, 2893, 322, '734-455-8600 ', '734-455-8608 FAX', '44265 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '8:00 am - 5:00 pm', ' I-275 North to SR-14, take 14 West to Exit 20 West, turn left onto N. Sheldon Road, turn left and cross under expressway, turn left on Plymouth Oaks '), (323, 2894, 323, '734-454-9900/734-637', '419-897-0429 Fax', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '8:00-4:00', '75 Toledo, 475 West left to 475 South, Exit 6, Salbury Road turn left, 3 lights turn left on Ford Road, at stop sign turn right onto Tomahawk Drive Off Exit 59 of Turnpike, 20 East, 1st rigth onto Dussel Drive, 1st right onto Holland, 1st road to left Tomahawk '), (324, 2895, 324, '517-432-4914 / 517-4', '517-432-4915 Fax ', '3546 Engineering Bldg.', '', 'East Lansing', 'MI', '48824', '8:00 am - 5:00 pm ', ' I-496, Exit 9, bear right onto Trowbridge Road, turn left onto S. Harrison Road, turn right onto Wilson Road to Campus '), (325, 2896, 325, '989-754-5861/ 989-75', '989-754-5551 Fax', '1701 First Street', '', 'Saginaw', 'MI', '48601', '7:00 am - 4:00 pm ', ' I-267, Exit 2, continue West on Wadsworth Street, turn right onto N. 6th Street, turn left onto Kirk Street, bear right onto First Street Tax Exempt# 20-8982242'), (326, 2897, 326, '814-238-1781', '(814) 238-4323 Fax', '123 Hawbaker Industrial Drive', '', 'State College', 'PA', '16801', '8:00-4:00(O)/7:00-4:00(Site)', 'Call for Directions!!! New Jobsite Behind Hawbakers Bus 322 Northside of town Valley Vista Exit Turn on to 322 Bus N. Atheridge Street 1st light past sheetz on left Formerly Sheesley Supply Formerly Arrow Concrete'), (327, 2898, 327, '717-767-4788', '717-767-5658 Fax', '56 Grumbacher Road, Suite D', '', 'York', 'PA', '17406', '', ' I-83, Exit 24 (Emigsville), off ramp at light straight through, left on May Road, 1/2 mile turn right onto Grumbacher Road, I-83 Industrial Parking '), (328, 2899, 328, '610-562-6421 Jeffery', '(610) 562-2084 Fax', '433 S. Pottsville Pike, Rt.61', '', 'Shoemakersville', 'PA', '19555', '7-00-5:00 ', 'East side of Rt. 61, approx. 5 miles south of Hamburg. Exit off Rt. 78. Research Center is building on your right as you come in driveway. '), (329, 2900, 329, '717-665-2000 X 1154 ', '717-665-2861 Fax / x', '401 West End Avenue', '', 'Manheim', 'PA', '17545', '8:00 - 5:00 Office / 7:00 - 3:30 Shop', 'From Rt. 76 Exit # 20 Take Rt. 72 S to 2nd light - at town square make right onto West 772. Go 7 blocks. Turn left on S. Heintzelman St. Go to 2nd stop - make left onto west End Ave. Site in yellow metal building on right. '), (330, 2901, 330, '(570) 544-2261', '(570) 544-5736 Fax', '9 North Schaeffers Hill Road', '', 'Minersville', 'PA', '17954', '7:00 am - 4:00 pm', 'Route 80 E to Milton. Take Rt. 147S to Sunbury to 61E to Shamokin. Take 901 E to Minerville. Make left onto 4th Street. Follow to end. Turn to Jones then to Shaffer Hill Rd. Behind Bld. Car Wash *Do not reach over counter in office Big Dog will Bite* '), (331, 2902, 331, '412-292-6328 Russ', '412-807-2006 Fax', '4385 Kaby Street', '', 'Harrisburg', 'PA', '17110', '7:00 am - 5:30 pm -- Job Site', ' US322/US-22 Exit, bear right onto ramp, bear left onto US-22, bear right onto ramp, bear left onto US-22 (US-322), turn right onto Linglestown Road, bear left onto N. 6th Street, turn left onto Lucknow Road, turn left onto Kaby Street '), (332, 2903, 332, '(717) 637-2288 x 238', '(717) 637-1180 Fax', '2000 Carlisle Pike', '', 'Hanover', 'PA', '17331', '', 'Rt. 94 South of New Oxford. Take 30W to 94S. Go 2 miles- site on right side. Lab right in back of building. '), (333, 2904, 333, '(717) 637-2288 x 238', '(717) 637-1180 Fax', '% Shrewsburg Concrete Co.', '35 Constitution Ave.', 'Shrewsbury', 'PA', '17361', '7:00 am - 5:00 pm ', 'Rt. 83 South to Shrewsbury Exit #4 - at ramp turn right - go to light and turn 3rd left onto S. Main. Go 1 1/2 miles (small mall) at next light. Turn right onto road to New Freedom. Go 100 yards to site. '), (334, 2905, 334, '717-665-2000 x1154 ', '717-665-2861 Fax / x', '401 West End Avenue', '', 'Manheim', 'PA', '17545', '8:00 - 5:00 Office / 7:00 - 3:30 Shop', ' ***ISO Requested*** ***continued*** From Rt. 76 Exit # 20 Take Rt. 72 S to 2nd light - at town square make right onto West 772. Go 7 blocks. Turn left on S. Heintzelman St. Go to 2nd stop - make left onto west End Ave. Site in yellow metal building on right. S/N HLT-69052 in Building next door '), (335, 2906, 335, '814-224-6877 / 814-2', '814-766-0228 Fax', '526 Ashcom Road', 'Ashcom Plant', 'Everett', 'PA', '15537', '7:00 am -3:00 pm', 'Rt. 220S / 99S from Altoona. Take 30E, pass hospital & go over top of hill. On way down, make right onto Ashcom Rd. VERY WINDING! Cross 1-lane bridge. At \"T\" go straight across overpass. Site is at bottom of hill in white building by silos. Rt into town, Evertt to stop, make Rt 30 1 mile when road bare right past IGA, turn left across bridge, turn right go under PATP turn right '), (336, 2907, 336, '(814) 224-2121 x 427', '814-766-4429 Fax', '7840 Woodbury Pike Rear', ' ', 'Roaring Spring', 'PA', '16673', '6:30 am - 3:30 pm', '80 to Calrion take PA 970 toward Woodland, turn onto US-322 E/Woodland Bigler Hwy, onto N 3rd St/N Centre St. onto PA 350, follow signs for US-220 S/I-99 S and merge onto I-99 take exit 23 PA 36 Roaring Spring. Up the street to old car dealership building owned by NESL still on RT 36N '), (337, 2908, 337, '(717) 267-4500 x 702', '(717) 267-0915 Fax/7', '2733 Molly Pitcher Highway', 'Block Plant', 'Chambersburg', 'PA', '17202', '7:00 am - 5:00 pm', 'I-81 S. Take Exit #5. Turn right onto Wayne Ave (Rt. 316N) Go to 2nd light, turn left onto Orchard. Go 8/10 mile to S. Main Street. Turn left onto Rt. 11S for 1 mile. Site on right. GILFORD SPRINGS BLOCK PLANT '), (338, 2909, 338, '(814) 781-1234/814-7', '(814) 781-8643 Fax ', '1032 Trout Run Road', '', 'St. Marys', 'PA', '15857', '7:30 am - 3:30 pm', 'I-80 Exit #17. North 255 to 120 East. Go 1.6 miles past left onto 120E at red light downtown. Make right at St. Mary\'s Tool & Die (by tractor trailer lot and softball field on right) onto Trout Run. Go 1/4 mile. Site on right in yellow building NEED AS FOUND READINGS Need Hard Hat *MUST HAVE 1\" DIALIND. FOR SPEED Formerly Carbone of America Formerly Carbone Lorraine '), (339, 2910, 339, '814-929-5805', '814-929-5806 Fax', '317 Buena Vista Highway', '', 'Wilcox', 'PA', '15870', '8:00 am-4:30 pm/8:00 am-3:00 pm Job ', 'From I-80, take Hazen Exit & go to Brockway. Take North 219 in Brockway to Wilcox. At \"Y\" in Wilcox, go straight towards Kane (Rt. 219 & 321) Blue metal building on left. '), (340, 2911, 340, '703-963-4939 Jagan', '202-493-2070 Fax/703', '6300 Georgetown Pike', '(Cert in this name)', 'McLean', 'VA', '22101', '', ' '), (341, 2912, 341, '412-292-7371/412-287', '724-443-8733 Fax/724', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', 'From Uniontown take Rt. 119 South towards Point Marion. Go across Cheet River. Bridge job. (only thing happening in Point Marion) '), (342, 2913, 342, '402-556-2171', '', '13478 Chandler Road ', '', 'Omaha', 'NE', '68138', '', ' '), (343, 2914, 343, '504-392-0442', '504-392-0107 Fax ', '2220 Engineers Road', '', 'Belle Chasse', 'LA', '70037', '', ' '), (344, 2915, 344, '330-630-6239/330-630', '330-633-4939 Fax ', '275 Southwest Avenue', '', 'Tallmadge', 'OH', '44278', '', ' I-76 East (Akron) to Exit 29 (Route 532), turn left (North) at end of exit ramp, proceed on RT. 532 (aka Southeat Avenue) to the Tallmadge Circle, take the sixth right off the circle onto Southwest Avenue, proceed on Southwest Avenue approx. 1/4 mile to 275 Southwest Avenue on the left Tax ID# 74-3189734'), (345, 2916, 345, '520-399-1925 Ron', '616-940-3760 Fax', 'Formerly STS Consultants LTD', '3839 E. Paris, Suite 301', 'Grand Rapids', 'MI', '49512', '8:00 am - 5:00 pm', '96 W to 28th Street Exit 43A to Broadmoor, make left, Building on right with red stripe on it '), (346, 2917, 346, '614-888-0576', '614-848-6712 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 am - 4:30 pm', ' Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right '), (347, 2918, 347, '269-565-8460 John', '269-968-7205 Fax', 'One Denso Road ', 'Colume M4', 'Battlecreek', 'MI', '49015', '', '1/2 hour from Kalamazoo I-94 East, 11 Miles, Exit 92, turn off onto ramp 0.3 miles, bear right, Northeast, onto Mercury Drive, 98 yards, continue Northeast on I-94 Business (Columbia Avenue West), 2.9 miles , turn left, West, onto Hill Brady Road, 1.7 miles, arrive at One Denso Road Elevation: Unknown, Lat: 42.292*N Long: 85.587*W Dead Weight Correction Value: 0.9993'), (348, 2919, 348, '724-785-7843 x 111 P', '304-325-8812 Fax/814', '417A Lowhill Road ', '', 'Brownsville', 'PA', '15417', '', ' I-70, Exit 37A (PA-43 Toll/California), merge SR-43 Toll South, continue South on SR-88 (SR-43 Toll), at SR-88, Exit A, stay on SR-88 South, go the whole way through construction zone, when it turns into a 2 lane, go another 500 yards, on left hand side of road, Denbo Volunteer Fire Company, machine behind building '), (349, 2920, 349, '248-454-6300 x 853 M', '248-745-2990 Fax Sus', '1191 Pinckney Road ', 'Wastewater Treatment Plant', 'Howell', 'MI', '48843', '', ' I-75 East, turn off ramp (I-275/Flint) , merge onto I-275 (North), merge onto I-96 (West) (I-96/Lansing), at I-96, Exit 137 (CR-D19/Howell/Pinckney), turn left onto CR-D19 (Pinckey Road) At Wastewater Treatment Plant '), (350, 2921, 350, '248-625-8080 ', '248-625-0978 Fax', '4950 White Lake Road', '', 'Clarkston', 'MI', '48346', '', ' I-75, Exit 51B (I-575/I-375/Downtown/Flint), merge onto I-75 (Chrysler Freeway) ( (North), at I-75, Exit 91 (M-15/Clarkston/ Davison), merge onto SR-15 (Ortonville Road) (South), bear right onto local roads, turn right onto US-24 (Dixie Highway) turn left onto US-24 (Dixie Hwy), turn left onto White Lake Road '), (351, 2922, 351, '(610) 837-9696 x 472', '(610) 837-8420 Fax', '298 Keystone Drive', '', 'Bethlehem', 'PA', '18020', '7:00 am - 2:00 pm', '22E to 512 N. Go 1 1/2 miles. Diner (Golden View). Right at light Hanoverville Road. 1 1/2 miles. Road on left for Cempro behind corn field. Lab building straight ahead at turn. Formerly CEMPRO'), (352, 2923, 352, '(330) 759-0288', '(330) 759-0923 Fax', '1061 Suite G Trumbull Avenue', '', 'Girard', 'OH', '44420', '8:00 am - 5:00 pm', 'I-80 to State Route 193 (Belmont Ave) Exit #229 South to Youngstown. Go 5 or 6 lights pass fast food restaurants. At Burger King turn right onto Trumbull. Go approx. 1/2 mile and watch for large antenna on left and White & Green sign (Their building next door) If you see UPS you went to far Need help? Call (330) 759-0288 Building in back left, second from end '), (353, 2924, 353, '314-385-5577/216-857', '440-848-8482 Fax', '6880 North Broadway', '', 'St. Louis', 'MO', '63147', '', ' I-70 exit 246A, left onto N.Broadway '), (354, 2925, 354, '214-876-1801 Cell/21', '972-937-9841 ext 15 ', '901 Cantrell Street', '', 'Waxahachie', 'TX', '75165', '', ' I-35E (US77) exit 399B right onto I-35E S, left onto FM-1446 (Cantrell Street) '), (355, 2926, 355, '412-257-1325', '412-257-1329 Fax', '500 Bursca Drive', '', 'Bridgeville ', 'PA', '15017', '8:00 am - 5:00 pm', 'Rt 30 East past Greensburg. Pass Westmoreland Mall on right Go straight through 3 red lights, at 3rd red light there will be Red Lobster on right and Sunoco on Left , keep straight. Go approx 7/10 mile and there will be Toyota Dealer on left turn right onto Old Route 30. After turning there will be Oakley Park Shopping Plaza Go approx 100-200 yards and there will be an orangish-red brick bldg Anthony\'s Professional Center. They are in that building. If you pass the Hyundai dealer on 30 you\'ve gone too far'), (356, 2927, 356, '724-637-3552 x 110 T', '724-744-4234 Fax ', '6015 Pleasant Valley Road ', 'Valley Landfill', 'Irwin', 'PA', '15642', '', ' I-76 (Pennsylvania Turnpike) (South), turn off ramp (US-22/I-376/ Murraysville/Pittsburg/Mon), bear right onto US-22 (William Penn Hwy), turn right onto Trafford Road, bear left onto Pleasant Valley Road '), (357, 2928, 357, '206-526-4627', '206-526-6744 Fax ', '7600 Sand Point Way NE', 'Bldg. 3, Room 1107', 'Seattle', 'WA', '98115', '', ' '), (358, 2929, 358, '601-544-7811', '601-544-2005 Fax', '562 Elks Lake Road', '', 'Hattisburg', 'MS', '39403', '', ' '), (359, 2930, 359, '513-200-5572 Steve\'s', '859-586-8891 Fax', 'Cleveland / Hopkins Airport, Gate 30E', '', 'Cleveland', 'OH', '', '7:30 am - 5:00 pm', ' Rt. 80 to 171 South, Take Exit Snow Road, turn right, go until you come to \"T\" turn left, take the next right onto Cargo Road (No sign), take immediate left onto Postal Road, will see job site, go thru gate office on the left '), (360, 2931, 360, '724-640-6952 Pete\'s ', ' ', 'State Route 192 Connor Road', '', 'Mt. Lebanon', 'PA', '15228', '7:00am-5:00pm/7:00am-3:00pm Job', ' I-79 South (I-279/Pittsburgh), to I-279, Exit 8B (East Street/PA-28N), continue South on East Street, turn left onto E. Ohio Street, turn right onto Chestnut Street (16th Street Bridge), continue South-East onto 16th Street Bridge, onto 16th Street, turn left onto Liberty Avenue to the corner of Liberty Avenue & 26th Street '), (361, 2932, 361, '330-758-2100', '330-758-6100 Fax ', '7240 Glenwood Avenue', '', 'Boardman', 'OH', '44512', '8:00 am - 5:00 pm', ' I-80 West toward Sharon, PA , merge onto OH-11 S, Exit 224, on the left toward Canfield, take Exit 34, (US-224), toward US-82/Poland/ Canfield, turn left onto E. Main Street/US-224, continue to follow US-224, turn left onto Glenwood Avenue, site on left Formerly J.N. Cernica & Associates '), (362, 2933, 362, '330-220-8900', '330-220-8944 Fax', '3085 Interstate Parkway', '', 'Brunswick', 'OH', '44212', '8:00 am - 5:00 pm ', ' I-80, Exit 161 (I-71/US-42), merge onto I-71 South, at I-71, Exit 226, merge onto SR-303 (Center Road), turn left onto Industrial Parkway, turn right onto Interstate Parkway '), (363, 2934, 363, '', '', '', '', '', '', '', '', ' '), (364, 2935, 364, '(315) 437-1420', '(315) 437-1752 Fax', '6544 Fremont Road ', '', 'East Syracuse', 'NY', '13057', '8:00am - 5:00pm ', '81 South to 690 East. Take Exit #17. Make left (northbound) on Bridge St. to Rt. 290 intersection, left onto Manlius Townline Road (Townline Road), right onto Kendall Drive (W), arrive Fremont Road Formerly Parratt Wolff '), (365, 2936, 365, '518-377-9841 John x1', '716-694-8638 Fax', '104 Erie Blvd., Suite 1 ', '', 'Schenectady', 'NY', '12305', '', ' I-90, Exit 25, merge onto I-890 (North), at I-890, Exit 4C, turn off ramp, bear right onto Water Street, bear right onto SR-5 (State Street), turn right onto Erie Blvd. '), (366, 2937, 366, '(276) 873-6816', '(276) 873-4809 Fax', ' 2522 Swords Creek Road', ' ', 'Swords Creek', 'VA', '24649', '8:00 am - 4:30 pm', 'From 177 take Route 460 West at Bluefield to Junction 19 at Claypool Hill. Take 19 West to Rt. 80 at Rosedale. Turn right onto Rt. 80 and go approx. 5 miles. Turn right onto Rt. 67. Go approx. 5 miles. E. Dillon on right. The plant is clearly visable from road. '), (367, 2938, 367, '(276) 964-6755', '(276) 963-2021 Fax', '288 Quarry Road ', '', 'Pounding Mill', 'VA', '24637', '7:30am-5:00pm / 7:00am -3:00pm Job', 'Go 15 miles south of Tazewell, VA on Rt. 460 West. Big Rock Quarry on south side of Rt. 460. Look for big sign for Quarry on left. Turn in drive to Quarry (but don\'t turn in at scale house) and go up hill. They are behind the Cardinal Metal Building on top of hill. Gauges & frame are on opposite sides of a wall. You have to look through a window to see frame.'), (368, 2939, 368, '276-964-6047', 'No Fax', '173 Pepper Loop Street', '', 'Cedar Bluff', 'VA', '24609', '', ' Rt. 19S, take Rt. 609 at the 4-way red light, tavel approx. 3 miles on Rt. 609/Kents Ridge Road, Pepper Loop is located on your right, LEC is in the first brick home on Pepper Loop '), (369, 2940, 369, '304-645-4636', '304-645-7614 Fax', '425 N. Jefferson Street', '', 'Lewisburg', 'WV', '24901', '', ' I-79, Exit 57, continue South on US-19, turn left onto ramp, turn left (South) onto US-60, turn left onto ramp, merge onto I-64 (East), at I-64, Exit 169, turn onto ramp, turn right (SW) onto US-219 N Jefferson Street) '), (370, 2941, 370, '276-637-3021 Tony ', '(276) 498-4317 Fax', '155 Red Hollow Road ', '', 'Max Meadows ', 'VA', '24360', '7:00 am - 5:00 pm', ' I-77, Exit 40, merge onto I-77 (I-81) (East) at I-81, Exit 80, turn left onto US-52, bear right onto SR-121, turn right onto SR-614 (RTE-614) to Max Meadows '), (371, 2942, 371, '304-420-4698', ' ', '626 6th Street', '', 'Parkersburg', 'WV', '26101', '6:30-5:00 (O)7:30 am - 4:00 pm (S)', 'I-77, Exit 176, bear right (West) onto US-50 (Northwestern Pike), turn left onto Harris Street, left onto 6th Street Eric Stewart/Susan Coyne--additional Contacts ELE International Attn: Susan Coyne 5600 Lindbergh Dr. Loveland, CO 80539-0389 1-800-323-1242/Susan Coyne ELE Guan 1-800-1242 x 6473'), (372, 2943, 372, '606-864-2173 Tony', '606-864-9828 Fax', '510 Tobacco Road', '', 'London', 'KY', '40741', '6:30 am - 5:00 pm ', 'S I-75 Exit 41 London - Left 2nd light straight through Daniel Boone Pkwy sign for Hal Rogers Second light follow 1/4 mile on left '), (373, 2944, 373, '614-527-7656', '614-527-7489 Fax', '2390 Advanced Business Center Drive ', '', 'Columbus', 'OH', '43228', '7:00 to 4:30', ' From PA, I-70 West, past Columbus (Downtown), to I-270N to Roberts Road, turn left on Roberts Road, go 1/2 mile down road, turn left into Advanced Business Center Drive '), (374, 2945, 374, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (375, 2946, 375, '540-349-4746', '540-347-4755 Fax/540', '400 Belle Air Lane', '', 'Warrenton', 'VA', '20186', '8:00am - 5:00pm', ' Capital Beltway to Route 66 West to Route 29 South, Warrenton business exit, left on Alexandria Pike, left on Walker Road, left on Belle Air Lane '), (376, 2947, 376, '704-400-2758 Cell Bo', '828-256-6921 Fax/336', 'Laboratories, PC', '2019 1st Avenue SW', 'Hickory', 'NC', '28602', '', ' 9/09 Greenlee pump not working properly, they are sending their valve assembly for repair 9/1/2009 Shipped UPS Next Day Air, No Insure, Acct. # W181V2, a seal kit, 9/11/2009 UPS Next Day Air, Insure $1500.00, Acct.# W181V2, shipped repaired valve for their machine'), (377, 2948, 377, '262-642-8201', '262-642-8486 Fax', '2061 Young Street', '', 'East Troy', 'WI', '53120', '', ' '), (378, 2949, 378, '909-820-6800 x 234 A', '909-873-3765 Fax ', '300 South Cedar Avenue', '', 'Rialto', 'CA', '92376-9102', '', ' '), (379, 2950, 379, '607- 778-5074', '607-778-5481 Fax ', '907 Upper Front Street ', '', 'Binghamton', 'NY', '13905', '', ' I-81, Exit 5, right onto US-11 (Front Street), to Upper Front Street '), (380, 2951, 380, '614-340-1690 x 2635', '614-487-3704 Fax ', '1275 Kinnear Road ', '', 'Columbus', 'OH', '43212', '7:30 am - 6:00 pm ', ' I-71, Exit 119B (I-270/Indianapolis), merge onto I-270 (West), at I-270, Exit 22 (OH-315/Olentangy River Road), merge onto SR-315 (South), turn off ramp (Kinnear Road/King Avenue/Fifth Avenue), turn right onto Kinnear Road '), (381, 2952, 381, '859-455-8530', '859-455-8630 Fax', '7130 Highway 1247', '(Burns County)', 'Somerset', 'KY', '40392', '', ' I-75, Exit 62, KY 461, 20 miles or so, take right onto KY 80 West, 6 miles or so, take left onto KY 914, 5 miles take a left onto KY 1247, left onto Cooper Power Plant Road '), (382, 2953, 382, '540-667-2301', '(540) 667-3430 Fax', '2001 Millwood Pike', '', 'Winchester', 'VA', '22602', '7:00am - 4:00pm/6:00am-4:00pm Job ', 'From South 81 get off at Rt. 50 East Exit #313A of I-81. Go east 2 1/2 miles on Rt. 50. Site on left (Septic tank out front) Perry Engineering Co. next door. Just past Winchester Regional Airport. '), (383, 2954, 383, '724-323-5318 David S', '724-828-2828 Fax/Bil', 'Corner of SR-19 & Reichold Road ', '', 'Wexford', 'PA', '15090', '', ' I-79, Exit 78 (PA-228/US-19/Cranberry) , merge onto SR-288 (Route 228), turn ledt onto US-19 (Route 19), corner of SR-19 & Reichold Road '), (384, 2955, 384, '412-292-2522 Glenn B', ' ', 'Lower Mon Area Lab', '13th & Railroad Street', 'Charleroi', 'PA', '15022', '7:30 am - 4:00 pm ', ' 88 North, right 10th Street, right across RR Trax, turn left blue block building on right '), (385, 2956, 385, '419-737-9808', '419-737-9400 Fax', '508 Cedar Street', '', 'Pioneer', 'OH', '43554', '8:00 am - 5:00 pm ', ' I-80 West, Exit 15, Toll Road, Merge onto I-80 (Ohio Turnpike North), at Ohio Turnpike, Exit 13, merge onto SR-15 North, 5 miles turn right (East) onto Michigan Street, go 120 yards to Cedar Street Formerly Promix Admixtures '), (386, 2957, 386, '920-420-3574 Mark Ce', '920-233-9483 Fax/920', '333 29th Street - South Plant', '', 'Oshkosh', 'WI', '54903', '', ' '), (387, 2958, 387, '808-479-8517', '808-583-1703 Fax', '65 N Nimitz Hwy, Pier 14', '', 'Honolulu', 'HI', '96817', '', ' '), (388, 2959, 388, '704-434-6551', '', 'PO Box 755', '', 'Boiling Springs', 'NC', '28017', '', ' '), (389, 2960, 389, '540-537-8203/540-345', '540-345-6989 Fax ', '614 Norwalk Avenue, SW', '', 'Roanoke', 'VA', '24016', '', ' '), (390, 2961, 390, '(419) 668-8167', '(419) 663-0627 Fax', '80 Commerce Drive', '', 'Norwalk', 'OH', '44857', '6:00-5:00', 'Norwalk Exit 118 I-80, go south on Rt. 250, 2nd light turn East 113 for 5 miles to 61 south for 3 or 4 miles to 60 make left, 3 miles Turn right on 20, Pass airport, make left on Commerce Drive, site on right CALIBRATION CODE: 110 10/11 S/N VAC 001 no good, S/N 202 & S/N Unknown not calibrated, S/N 21999 sold to CSI for all Calibration cost on 10/13/2011 & set up,'), (391, 2962, 391, '484-893-1440', '248-324-5178 Fax', '2770 Emrick Blvd. ', '', 'Bethlehem', 'PA', '18020', '7:00am-4:00pm/8:00am-5:00pm', ' I-476, Exit 56, right onto US-22, take US 22/SR-378 Exit, merge onto SR-378 South, 2nd Avenue Exit, arrive town of Bethlehem Formally Neyer, Tiseo & Hindo Ryan Walters-Staff Professional '), (392, 2963, 392, '215-895-2996/895-234', '215-895-2996 Jonatha', '3141 Chestnut St. ', 'Civil Eng. Curtis Hall RM 251', 'Philadelphia', 'PA', '19104', '', ' 76 east exit Drexell University. Behind 30th street post office. Exit 30th street right Market Street. Right go to 31st turn left. RR Tressel at 31st both make right 955, 676 W, 76 E Exit 30th St. / Market '), (393, 2964, 393, '610-519-7009/610-519', '610-519-6754 Fax', 'Lancaster & Ithan Avenue', '', 'Villanova', 'PA', '19085', '', ' Merge I-476 South, coming from Turnpike, merge onto E. Lancaster Ave/US-30 E via Exit 13 (St. Davids), off of 476 South toward Villanova, stay on Lancastor Ave/US-30 for 6 traffic lights then turn onto South Ithan Avenue, after 1st Stop sign on Ithan Avenue, go under the low bridge and make a quick Left hand turn into drive entrance, the Structural Testing Lab will be on your left side, it is a two story building '), (394, 2965, 394, '717-369-3773 ', '717-369-3729 Fax / 7', '5877 Bullitt Road', '', 'Greencastle', 'PA', '17225', '6:30 am - 2:30 pm ', 'From State College take Rt. 522 South to Rt. 16. Take Rt. 16 East to Upton, then take 995 North. Before Williamson, turn right on Wiliamson Road. Take 2nd left onto Bullitt Road. Go approx. 150 yds. to a green gate on the left. Job trailer on left. Bought out by Nitterhouse Masonry Products, LLC'), (395, 2966, 395, '717-368-9855 Mike / ', '717-647-8558 Fax ', '251 Clarks Valley Road ', '', 'Tower City', 'PA', '17980', '', ' Near Harrisburg, PA US-11 (US-15), turn left onto Millersby Ferry Road (T534), take Liverpool-Millersburg (East), take North Street, turn right onto SR-147 (Market Street), turn off ramp, bear right onto US-209 (Union Street), turn right onto SR-325 (10th Street), to Clarks Valley Road'), (396, 2967, 396, '734-453-7900', '734-453-0724 Fax', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '', ' I-275, merge SR-14 (West), at SR-14, Exit 20 (Sheldon Road/ Plymouth), turn right (North) onto N. Sheldon Road, turn left onto Helm Street '), (397, 2968, 397, '740-454-8173 Jeff\'s ', '740-297-8836 Fax', '1907 Linden Ave.', '', 'Zanesville', 'OH', '43701', '', ' '), (398, 2969, 398, '242-477-7796 Cell La', '242-394-4488 Fax / 2', '#21 Wilton Street', 'PO Box SS5589', 'Nassau, Bahamas', '', '', '9:00 am - 5:00 pm', ' From Main drag (West Bay), make a right on Mackey Street, follow for multiple blocks to Wilton, on right '), (399, 2970, 399, '242-322-1703/242-376', '', 'Arawak Kay ', '', 'Nassau, Bahamas', '', '', '9:00am-5:00pm/8:00am-5:00pm Job', ' Engineering and Technical Services Office Billing Address: PO Box SS5589, Nassau Bahamas Office Address: 21 Wilton Street, Nassau, Bahamas '), (400, 2971, 400, '440-666-6935 / 440-6', '440-949-1206 Fax/440', '5190 Oster Road', '', 'Sheffield Lake', 'OH', '44054', '8:00 am - 4:00 pm', ' Off I-80. Route 57N to I-90 (St. Rt 2) go east to Rt 611 (make left at light) at 4th light make right on Abby Road (Rt 301). 1 1/4 mile go over overpass Ford Plant on right to light make left. 2nd drive on left (Oldcastle) *Email-richard.phillips@oldcastle.com*'), (401, 2972, 401, '330-372-3716 x 111', '330-372-5594 Fax', '1929 Larchmont Ave. NE', '', 'Warren', 'OH', '44483', '7:00am-4:40pm/7:00am - 11:00pm Job', 'From Sharon - Take Rt. 5 bypass at Warren. See Delphi-Packed Plant. Take Perkins / Jones Rd. exit. Make left toward Warren Go 1 1/2 miles and cross RR tracks. 1st blue building on right. 2nd gate on right. '), (402, 2973, 402, '330-339-6648', '330-339-6687 Fax', 'County Engineers Office', '832 Front Avenue SW', 'New Philadelphia', 'OH', '44663', '7:00 AM - 4:00 PM', ' I-77, Exit 81, merge SR-39 East, turn right (South) on 10th Street SW, left (East) onto Front Street SW '), (403, 2974, 403, '724-287-1964', '724-287-3070 Fax ', '416 Chicora Road ', '', 'Butler', 'PA', '16001', '8:00 am - 5:00 pm ', ' At Intersection of Rts 38 & 68, at light, turn light go up overhill, three miles to jobsite, 416 Chicora Road (Rt. 68), job is on right '), (404, 2975, 404, '205-664-6270 ', '205-257-2988 Fax', '744 Hwy 87 North ', 'GSC #6', 'Calera', 'AL', '35040', '', ' '), (405, 2976, 405, '228-935-1085 Sean', '228-935-5589 Steve', '1000 Access Road ', '', 'Pascagoula', 'MS', '39567', '', ' 9/10 S/N 012565138/1, the unit stopped communicating between the load cell & the handheld display, shipped circuit board to Israel, Fed Ex '), (406, 2977, 406, '203-627-7696 Ryan Ce', '203-468-4517 Fax/203', '120 Woodward Avenue', '', 'New Haven', 'CT', '6512', '', ' '), (407, 2978, 407, '706-867-7751', '706-867-9203 Fax ', 'PO Box 515, 516 Lakeview Drive ', '', 'Dahlonega', 'GA', '30533', '', ' '), (408, 2979, 408, '570-649-5188', '570-649-5850 Fax ', 'c/o Muncy Machine Tool Company', '5820 Susquehanna Trail', 'Turbotville', 'PA', '17772', '', ' 10/09 S/N D27299, cert in Job Site address, shipped 10/2/2009 on Acct.# 255-698, UPS Ground, No Insure to job site address '), (409, 2980, 409, '52-938-382-5173 x 22', '52-938-382-5195 Fax', 'Av. Adolfo Lopez Mateos No. 179B,', 'Col. Playa Norte CP. 24129', 'Campeche', 'Mexico', '', '', ' '), (410, 2981, 410, '905-683-3100 x 1207', '905-683-4264 Fax', '374 Monarch Avenue', '', 'Ajax, Ontario', 'Canada', '11S 2G8', '7:30 am - 4:00 pm ', ' '), (411, 2982, 411, '619-553-6053', '619-533-7229 Fax', '9284 Balboa Avenue', '', 'San Diego', 'CA', '92123', '', 'Shipping: MSFSC-SSU BATS, USNS Henry J. Kaiser 9284 Balboa Avenue, San Diego, CA 92123 Billing: Supply Officer USNS Henry J. Kaiser (T-AO-187) FPO AP 96670-4086 '), (412, 2983, 412, '616-257-2700', '616-257-2800 Fax', '1150 Gezon Parkway', '', 'Wyoming', 'MI', '49509', '', ' '), (413, 2984, 413, '419-354-2030', '419-354-1052 Fax', '14941 Liberty Hi Road', '', 'Bowling Green', 'OH', '43402', '', ' '), (414, 2985, 414, '502-253-2500 / 502-2', '502-253-2501 Fax', '13425 Eastpoint Centre Drive, Suite 122 ', '', 'Louisville', 'KY', '40223', '8:00 am - 5:00 pm', ' I-265, Exit 30, merge onto SR-146 (Lagrange Road) (South), turn left onto Nelson Miller Pkwy, turn left onto Eastpoint Centre Drive FORMERLY LAW ENGINEERING'), (415, 2986, 415, '814-444-3126 Doug', '814-766-7612 Fax / 8', '1715 Water Level Road', '', 'Somerset', 'PA', '15501', '7:00 am - 3:30 pm', 'Off Turnpike, at 2nd light, turn right onto Rt. 601S. Go to 3rd light. Turn right onto Main Street. Get into left lane. Go 1 block then turn left at the light onto S. Edgewood. Site is 1 1/2 miles on left. Water Level Road turns into S. Edgewood Road '), (416, 2987, 416, '441-293-0775', '(441) 293-8929 Fax', 'Lolly\'s Well Road', 'Smiths Parrish FL, BX', 'Bermuda', '', '', '7:00 am - 4:00 pm', 'Shipping Address: Bierman\'s Concrete Products, LTD Lollys Well Road Smiths Parish, FL BX Bermuda All work in Bermuda coordinated through SAL, Ltd.'), (417, 2988, 417, '859-226-0761/859-743', '859-746-9408 Fax/ 85', '125 Trade Street, Suite D', '', 'Lexington', 'KY', '40511', '', ' I-75 South, Exit 126, bear right onto US-62 (Cynthiana Road), turn right onto US-460 (Paris Pike), bear left onto US-62 (Midway Road), turn left onto US-421, turn right onto Trade Street '), (418, 2989, 418, '(412) 262-2022', '412-262-1979 Fax', '1031 Fourth Ave.', '', 'Coraopolis', 'PA', '15108', '7:30 am - 5:00 pm', 'Take I-79 South to Neville Island Exit #18. Loop to traffic light. Make left, follow across island. NOTE: GO 25 MPH - OR YOU WILL BE TICKETED. Cross bridge. At light make right. (should be on 4th ave) Go 2 more lights. At 2nd light they will be on your Right side. Big grey building with 2 blue stripes along top. RT 51 Make Left in to town. 4th light on right. '), (419, 2990, 419, '509-948-7405 Kyle Ce', '509-545-8103 Fax', '802 South Maitland Avenue', '', 'Pasco', 'WA', '99301', '', ' '), (420, 2991, 420, '910-323-9832', '910-323-5455 Fax', '327 East Jenkins Street', '', 'Fayetteville', 'NC', '28306', '', ' '), (421, 2992, 421, '1/800-562-3235', '570-265-5148 Fax', '216 Main Street', '', 'Monroeton', 'PA', '18832', '', ' '), (422, 2993, 422, '(412) 823-7600', '(412) 823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00 am - 5:00 pm Office & Lab', ' ***ISO Requested*** ***continued*** From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffic light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left.'), (423, 2994, 423, '(412) 823-7600', '(412) 823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00 - 5:00 Office & Lab', ' From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffice light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left.'), (424, 2995, 424, '(412) 823-7600', '(412) 823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00 - 5:00 Office & Lab', ' ***ISO Requested*** ***continued*** From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffice light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left.'), (425, 2996, 425, '(412) 823-7600', '(412) 823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00 - 5:00 Office & Lab', 'From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffice light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left. '), (426, 2997, 426, '740-568-3935', '740-373-7317 Fax ', '1650 Greene Street ', '', 'Marietta', 'OH', '45750', '', ' I-77, Exit 1, merge onto SR-7 (Pike Street), turn right onto Acme Street, turn right onto SR-26 (Greene Street) '), (427, 2998, 427, '(412) 823-7600', '(412) 823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA ', '15112', '8:00 - 5:00 Office & Lab', ' From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffic light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left.'), (428, 2999, 428, '(412) 823-7600', '(412) 823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00 - 5:00 Office & Lab', ' From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffic light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left.'), (429, 3000, 429, '724-252-6384', '724-266-5807 Fax ', '720 Brickworks Drive ', 'Leetsdale Industrial Park', 'Leetsdale', 'PA', '15056', '7:00am-3:30pm/6:00am-3:00pm Job ', ' I-79, Exit 66 (PA-65/Emsworth/Sewickly), turn left onto Glenfield Road, continue on Kilbuck Street, turn right onto ramp (PA-65), merge onto SR-65 (Ohio River Blvd.), Centria is located at Leetsdale Industrial Park, Building 700 at the river end '), (430, 3001, 430, '800-245-4042x557 Rud', '336-969-3566 Fax ', '2152 University Drive', '', 'Lemont Furnace', 'PA', '15456', '9:00 am - 4:00 pm ', ' Take US 119 to Uniontown, onto US-119, continue on Connellsville Road, turn right onto Edison Blvd. (University Drive) Look for big building with blue roof by light '), (431, 3002, 431, '412-782-7330 ext. 73', '412-782-7343 Fax ', 'One McCandless Avenue', '', 'Pittsburgh', 'PA', '15201-2631', '6:00am-4:00pm/5:00am-3:00pm Job', 'Rt. 28 to 40th Street Bridge, go over bridge, make Left on Butler Street, follow to McCandless Avenue (on left) go to end of McCandless, site on Right 5/11 S/N 78950 (ID# M-105), wired machine, 15 pin connector '), (432, 3003, 432, '216-361-5000 / 216-2', '216-361-2279 Fax', '5000 Crayton Avenue', '', 'Cleveland', 'OH', '44104', '7:00am-3:00pm/7:00am-4:00pm Job', ' I-77 (North), turn off ramp (I-490/Toledo/E 55th Street), merge onto I-490 (East), turn left onto E 55th Street, turn left onto Crayton Avenue '), (433, 3004, 433, '716-665-3515', '716-665-3517 Fax', '126 Hopkins Avenue ', '', 'Jamestown', 'NY', '14701', '8:00am-5:00pm/8:am-4:00pm Job ', ' I-90 East, at I-90 SR-17 Exit, turn off ramp, merge onto I-86 (SR-17), (East), entering New York, at SR-17 Exit 12, turn off ramp, merge onto SR-60 (N Main Street), turn left onto Buffalo Street, turn left onto SR-394 (E. 2nd Street), turn right onto Hopkins Avenue, go to man door w/ CPM above it '), (434, 3005, 434, '585-658-2248', '585-658-4054 Fax ', '1 Conlon Avenue', '', 'Mt. Morris', 'NY', '14510', '7:00 am - 4:00 pm', ' From Mt. Morris, 36 North, right on Conlon Drive Tax Exempt: 1116214'), (435, 3006, 435, '717-767-6856', '717-764-2864 Fax ', '11 Grumbacher Road ', 'I-83 Industrial Park', 'York', 'PA', '17406-8422', '8:00-5:00', ' I-83, Exit 24, merge onto SR-238 (Church Road) (East), turn left onto SR-1031 (Board Road), turn left onto May Road, turn right onto Grumbacher Road Password: Moejoe Does have Manuel Mode, See photos on file for Controls '), (436, 3007, 436, '570-419-2531 Ed Cell', '814-237-4491 Fax / 5', '2801 Canfield Lane ', '', 'Montoursville', 'PA', '17754', '', ' I-180 (US-15) at I-180, Old Montoursville Road Exit, turn off ramp, bear right onto Old Montoursville Road to Canfield Lane '), (437, 3008, 437, '202-629-9755 x 1004 ', '202-863-0944 Fax / x', '515 M St., SE, Suite 106, Building 74', 'THE YARDS\"', 'Washington', 'DC', '20003', '7:00 am - 5:00 pm ', 'I-495 Interloop, Exit 33 (MD-185/Connecticut Avenue/Chevy Chase), merge onto SR-185 (Connecticut Avenue) South, at roundabout take the 4th Exit, Exit roundabout onto Connecticut Avenue SW, continue on 17th Street NW, turn left onto H St. NW, left onto 8th St. NW, at Washington, DC, return South on 8th St. NW, left onto H St. NW, right onto Massachusetts Avenue NW, right onto Columbus Circle NE, right onto Massachusetts Avenue NE, right onto 4th St. NE, arrive 4th St. SE call Fadil from 4th & M St. SE to get in Naval '), (438, 3009, 438, '724-725-5203', '724-725-5204 Fax / 4', '4189 Old William Penn Hwy', 'Job# 10-726', 'Monroeville ', 'PA', '15146', '', 'I-79, Exit 78 (PA-228/US-19/Mars/Cranberry), merge onto SR-228 (Route 228)(West), turn left onto US-19 (Route 19), continue South on ramp (I-76/PA Tpke), merge onto I-76 (PA Tpke), turn off ramp, (US-22/I-376/Murraysville/Pittsburgh), bear right onto US-22 (Bus) Old William Penn Highway '), (439, 3010, 439, '412-828-0400', '412-828-0300 FAX', '780 Rt 910', '', 'Cheswick', 'PA', '15024', '6:00 am - 3:00 pm', 'From Harmarville Exit of Rt. 28, approx 2 miles north of Harmarville before you get to Indianola. On right hand side big blue building About 3 minute drive from exit. Penndot Insp. Dave Edwards District 10'), (440, 3011, 440, '765-932-3058', '765-932-2461 Fax ', '875 Industrial Drive ', '', 'Tipton', 'IN', '46072', '', ' I-465, Exit 33 (IN-431/Keystone Avenue), merge onto SR-431 (N. Keystone Avenue) (North), bear right onto US-31 (N. Meridian Street), bear left onto local roads, bear right onto US-31, turn right onto CR-00 (W. Division Road), turn right onto S 300 W, turn left onto Industrial Drive '), (441, 3012, 441, '859-509-3967 Cell Wi', '859-455-8630 Fax', '1109 Commercial Drive, Suite 2 ', '', 'Lexington', 'KY', '40505', '7:00 am - 6:00 pm ', ' I-75, Exit 118, merge onto I-64 (I-75) (East), at I-64, Exit 113, turn right (SW) onto US-27 (N. Broadway), turn left (SE) onto SR-4 (W. New Circle Road), turn right onto Eastland Drive, turn right onto Commercial Drive, machine will be in one of the Units 2/09 S/N 00023 replaced battery & keyboard, installed new traces '), (442, 3013, 442, '317-846-5841 ', '317-773-6227 Fax', '5001 East 106th Street', ' ', 'Indianapolis', 'IN', '46280', '', ' I-465, Exit 33 (IN-431/Keystone Avenue), merge onto SR-431 (N. Keystone Avenue), turn left onto E. 106th Street '), (443, 3014, 443, '260-484-0813 Jason', '317-876-3705 Fax', '208 East Collins Drive ', '', 'Fort Wayne', 'IN', '46825', '', ' I-69, Exit 112, merge onto SRT-327 (Coldwater Road), continue on Coldwater Road, turn right onto Collins Drive, machine located in Office Complex, logo on front door #208 '), (444, 3015, 444, '412-292-7384 John ', '724-443-8733 Fax', 'Corner of 224 & 551 South', '', 'Edinburg', 'PA', '16116', '', ' US-422 US-224 Exit, bear right onto ramp onto US-224, machine located at the corner of 224 & 551 South, between the 2 bridges (Big Blue Bridge & Small Bridge) '), (445, 3016, 445, '1-800-284-8639/There', '248-486-5050 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '8:00am-5:00pm/6:00am-4:00pm', ' ***ISO Requested*** **Must include ID# on Work Order and Certs** I-275 (North), turn off ramp to (I-96/Lansing), at I-96, Exit 159 (Wixom), bear right onto S. Wixom Road, turn left onto Pontiac Trail Elevation: Unknown, Lat: 42.529*N, Long: 83.780*W Dead Weight Correction Value 0.9993'), (446, 3017, 446, '419-530-3128 / 419-5', '419-530-3066 Fax', '1615 N. Westwood Ave.', 'North Engineering Bldg., Room NE 1290', 'Toledo', 'OH', '43607', '8:00-5:00 (can stay until 9:00 pm - call)', 'From west side of town take 475E to Exit #17. Go south on Secor Rd. 2.2 miles. Make left onto Dorr St. Go across RR tracks, make right at light onto Westwood. Turn left at next light onto Nebraska. Look for sign for campus. At sign turn right. Go to southern most buidlings. In Engineering Tech. Building / corner of Park Side & Hill Ave. Acct. Payable Office Toledo, OH 40216'), (447, 3018, 447, '1-800-284-8639/There', '(248) 486-5050 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '8:00am-5:00pm/6:00am-4:00pm', ' ***ISO Requested*** **Must include ID# on Work Order and Certs** I-275 (North), turn off ramp to (I-96/Lansing), at I-96, Exit 159 (Wixom), bear right onto S. Wixom Road, turn left onto Pontiac Trail Elevation: Unknown, Lat: 42.529*N, Long: 83.780*W Dead Weight Correction Value 0.9993 '), (448, 3019, 448, '1-800-284-8639/ Ther', '248-486-5050 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '8:00am-5:00pm/6:00am-4:00pm', '***ISO Requested*** **Must include ID# on Work Order and Certs** I-275 (North), turn off ramp to (I-96/Lansing), at I-96, Exit 159 (Wixom), bear right onto S. Wixom Road, turn left onto Pontiac Trail Elevation: Unknown, Lat: 42.529*N, Long: 83.780*W Dead Weight Correction Value 0.9993 '), (449, 3020, 449, '(248) 486-5100', '(248) 486-5050 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '8:00am-5:00pm/6:00am-4:00pm', '***ISO Requested*** **Must include ID# on Work Order and Certs** I-275 (North), turn off ramp to (I-96/Lansing), at I-96, Exit 159 (Wixom), bear right onto S. Wixom Road, turn left onto Pontiac Trail Elevation: Unknown, Lat: 42.529*N, Long: 83.780*W Dead Weight Correction Value 0.9993 '), (450, 3021, 450, '1-800-284-8639/There', '1-800-669-4234/248-4', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '8:00am-5:00pm/6:00am-4:00pm', '***ISO Requested*** **Must include ID# on Work Order and Certs** I-275 (North), turn off ramp to (I-96/Lansing), at I-96, Exit 159 (Wixom), bear right onto S. Wixom Road, turn left onto Pontiac Trail Elevation: Unknown, Lat: 42.529*N, Long: 83.780*W Dead Weight Correction Value 0.9993 '), (451, 3022, 451, '(616) 538-9000', '(616) 538-8877 Fax', '3705 Bush Dr SW', '', 'Grandville', 'MI', '49418', '8:00 am - 5:00 pm ', 'I-80 to I-75 N. Exit 205C merge onto I-475 W. Bear right onto US-23 Exit 37A continue north on US 23, at exit 60B cont N towards I-96 Merge on I-96W to 196 West, exit 70 28th Street East, approx 1/2 mi to Sanford Avenue make Left. Will be the 3rd driveway on left There is a truck/maint garage the lab is in the back building. '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (452, 3023, 452, '740-374-6256 / 304-4', '740-374-6324 Fax / 3', '900 Gravel Bank Road', 'Division of Mar-Zane Materials Lab ', 'Marietta', 'OH', '45750', '8:00 am - 4:00 pm ', ' I-77, Exit 1, merge onto SR-7 South, go all the way thru the town of South Marietta, outside of town, go 5 or 6 miles, turn right onto Blue Knob Road, then take immediate left onto Gravel Bank Road, machine located on the left '), (453, 3024, 453, '304-755-1401', '304-755-1404 Fax', '4305 First Avenue', '', 'Nitro', 'WV', '25143', '', ' I-77 South, Exit 101, merge onto I-64 (West), at I-64, Exit 45, at stop light, go straight, go across RR Tracks, turn right after tracks turn right, building on left beside traffic sign building '), (454, 3025, 454, '412-292-6382 Mark La', '412-276-0718 Fax', '1877 Berlin Street', ' ', 'Garrett', 'PA', '15542', 'Mon thru Thurs 9:00 am - 5:00 pm ', ' I-279, Exit 6A (I-376E/US-22E/US-30E/Monroeville), continue South on Fort Pitt Blvd., turn right onto Smithfield Bridge, turn left onto SR-387 (E. Carson Street) to the corner of E. Carson Street & 7th Street '), (455, 3026, 455, '765-463-1521 x 231', '765-497-1665 Fax ', '1205 Montgomery Street', 'Research Division', 'West Lafayette', 'IN', '47906', '', ' '), (456, 3027, 456, '864-576-3230 x 327 D', '864-587-8828 Fax ', '3076 N. Blackstock Road', '', 'Spartanburg', 'SC', '29301', '', ' '), (457, 3028, 457, '253-967-7490', '253-966-4288 Fax / 2', 'Bldg 2044 Petlenton Ave', '', 'Joint Base Lewis McChord', 'WA', '98433', '', ' 9/10 S/N 02096798/9 shipped UPS Next Day Air, No Insure on 10/5/2010'), (458, 3029, 458, '734-582-0300', '734-582-0100 Fax/ 31', '13101 Eckles Road', '', 'Plymouth', 'MI', '48170', '', 'Between Schoolcraft and Plymouth Road Haggerty Road North, 1 mile to end, Plymouth Road Right at light, make left on Eckles before RR tracks, brick building on left '), (459, 3030, 459, '317-870-0314 Mike/51', '317-876-3705 Fax / 5', 'Intersection of County Road 60 & St. Rt 49', '', 'Payne', 'OH', '45880', '', ' I-75, Exit 192, merge on to I-475 (US-23)(West), turn off ramp (US-24/Napolean/Maumee), continue on US-24 (Anthony Wayne Trail), bear right onto US-24 (US-6), bear left onto US-127 (US-24), continue West on US-24, turn left onto SR-49 (South Main Street), continue South through the town of Payne, go 2 miles, a lay down yard will be on your left, at the Intersection of County Road 60 & St. Rt. 49'), (460, 3031, 460, '616-866-1057 / 616-6', '616-464-1189 Fax', '2476 10 Mile Road ', '', 'Rockford', 'MI', '49341', '', ' I-96 (West), Exit 31B (US-131/Big Rapids/Cadillac), bear right onto US-131, At US-131, Exit 97, continue North on ramp, turn left onto 10 Mile Road NE, left at light, Red Brick Bldg.., on left 2/11 S/N 81145-00119 replaced rapid travel O\'Ring (Double), meter stem O\'Ring & B/U Ring, and return springs, use Double O\'Rings '), (461, 3032, 461, '240-375-2357', '301-454-0988 Fax', '4217 Annapolis Road ', '', 'Bladensburg', 'MD', '20710', '7:00am-4:00pm/7:00am-5:00pm Job ', ' 95 South to 495 East, Exit 23, to Rt. 201 (Kenilworth Avenue), follow Rt. 210 South approx. 6 miles, turn right onto Upshur Street, to the gate on the left '), (462, 3033, 462, '304-289-2270 Todd / ', '304-558-0253 Fax / 7', 'Route US-50 ', 'District 5 Lab ', 'Burlington ', 'WV', '26710', '7:30 am - 4:00 pm ', ' I-68 (US-40) East, at I-68, Exit 42, bear right onto US-220 (McMullen Hwy SW) US-50 '), (463, 3034, 463, '703-478-0055', '703-478-0137 Fax/70', '43760 Trade Center Place, Suite 110', '', 'Sterling', 'VA', '20166', '', ' \"***continued*** 66 Duelas Rt 28 North 10 miles to old ox Rd Rt 606 take left through Trade Center across from housing development next to last on left Latitude 39.006*N, Longitude 77.429*W, Elevation 300 Feet Dead Weight Correction Value 0.9993'), (464, 3035, 464, '814-479-3645 Jim/814', '814-479-2003 Fax', '111 Hoganas Way', '', 'Hollsopple', 'PA', '15935', '7:00 am - 5:00 pm', ' I-76 South, bear left to I-70 (I-76) Southeast, at I-76 Exit 110, turn onto ramp , South on turnpike 65 yards, left (East), Waterworks Road, left (North), SR-601, North Center Ave., turn off ramp 109 yards, turn right (East) onto US-219 Access Road, turn right (East) onto ramp, bear right (North) onto US-219, bear right (east) onto ramp, merge SR-4025 Woodstock Highway, East, turn right (South) onto SR-403 South Main Street in Holsopple Rt 601 right to plant'), (465, 3036, 465, '732-618-2572 Cell Jo', '732-252-6994 Fax ', '173 Woodcrest Drive ', '', 'Freehold', 'NJ', '7728', '', ' I-195 (East), at I-195, Exit 16A (CR-537/Six Flags/Mt. Holly), turn left onto CR-537 (Monmouth Road), turn right onto Stillwells Corner Road, turn right onto Woodcrest Drive whitney@intelligent-concrete.com'), (466, 3037, 466, '(717) 787-6546 ', '(717) 783-5955 Fax', '81 Lab Lane', 'DGS Annex Complex', 'Harrisburg', 'PA', '17110', '8:00 am - 4:00 pm', ' e-mail Invoice to chneely@state.pa.us Rt. 322 to Harrisburg, at State Street Bridge go to Cameron Street go 3 miles, make right onto Elmerton Avenue, right onto Sycamore, Lab Lane on left, old Hospital grounds GO TO OFFICE FOR VISITORS PASS Elevation: 80 feet Latitude: 40.056 Longitude: 75.026 Dead Weight Correction Value: 0.9993'), (467, 3038, 467, '801-866-1860 Jeff / ', '801-732-2097 Fax', '1527 North 2000 West', '', 'Ogden', 'UT', '84404', '', ' '), (468, 3039, 468, '708-371-4330', '708-371-9986 Fax ', '13701 S. Kenton Avenue', '', 'Crestwood', 'IL', '60445', '', ' '), (469, 3040, 469, '419-704-5459', '419-241-0146 Fax', '2092 Horsepond Road ', 'Dover Air Force Base', 'Dover', 'DE', '19901', '8:00am-5:00pm/Job 7:30am-5:00pm', ' '), (470, 3041, 470, '814-224-6870', '814-766-0234 Fax', '404 Keck Street', '', 'Seward', 'PA', '15954', '7:00 am -3:30 pm Mon-Thurs.', 'I-80 E toward Clarion to PA 66 exit 64 to New Bethlehem turn right onto Broad St/PA 66/PA-28 turn left onto Nort St/PA 66/PA-28 Take the US 422 E turn left onto US 422-BR/Indiana Rd become US-422 E take PA-954 toward Sixth St. take ramp toward Armagh/ Johnstown turn right PA-954 turn left onto PA 56 turn right onto PA-711 turn right onto Keck St. '), (471, 3042, 471, '724-770-2477/724-770', '724-770-5601 Fax/ 72', '400 Frankfort Road', 'Technology Center ', 'Monaca', 'PA', '15061', '', '15 North of Pittsburgh Airport on Rte 60. Rte 60 to Rte 18 go south 1.5-2 miles red light that\'s main gate 79 to 60 North, Exit 12 Beaver Valley Way. Stay Left Down Hill 2 Red Lights go past make Right Straight Back. Need CAL 60 Need special tool & manual to calibrate Compressometer & Swell Will be safety orientation'), (472, 3043, 472, '814-571-4324 Dave/57', '814-641-9533Field Of', '5975 William Penn Highway', '', 'Alexandria', 'PA', '16611', '7:00 am - 5:00 pm', ' I-99 (US-220) South, at I-99, Exit SR-453, merge SR-453 (East), right onto SR-45 TRK (SR-453), right onto SR-453, right onto SR-45 TRK (SR-453), south on SR-453 (SR-45 TRUCK), left onto William Penn Highway '), (473, 3044, 473, '412-475-3908 Ryan', '724-265-3323 Fax', '2071 New Castle Road', '', 'Portersville', 'PA', '16051', '', ' I-79, Exit 105, merge onto SR-108 (West), turn left onto US-19, bear left onto US-422 (New Castle Road) '), (474, 3045, 474, '814-432-3184', '814-437-1110 Fax ', '81 Railcar Road ', '', 'Warren', 'PA', '16365', '', ' US-219, stay straight onto Main Street/PA-948, turn right onto Montmorenci Road/PA-948, continue to follow PA-948 N, PA-948 N becomes PA-999/David Zeisberger Hwy, turn left onto US-6/ W. Main Street/Grand Army of the Republic Hwy, continue to follow road, turn left onto Railcar Road (Just past Fireman Street), site is on the left '), (475, 3046, 475, '302-293-3883', '302-831-3640 Fax', 'Civil & Environmental Engineering', '181 Dupont Hall', 'Newark', 'DE', '19716', '8:00 - 4:30 Mon - Fri', ' Rt. 273 West, Delaware Avenue to Academy Street, right on Academy 100 feet across, on right follow around to roll-up door NEW PASSWORD FOR CAL: 671141 Check with Kevin for range specifications'), (476, 3047, 476, '734-522-0300', '734-522-0308 Fax ', '32121 Schoolcraft Road ', '', 'Livonia', 'MI', '48150', '', ' I-75 East, entering Michigan, merge I-275 North (I-275/Flint), merge I-96 (Jefferies Fwy) (East), at I-96, Exit 174 (Farmington Road), bear left onto Schoolcraft Road '), (477, 3048, 477, '(586) 826-8992', '(586) 826-8996 Fax', 'Materials & Testing Lab', '35414 Mound RD', 'Sterling Heights', 'MI', '48310', '7:30-4:30 Office 7:30-4:00 lab', 'From Warren, MI take Rt. 53 and turn left onto Metropolitan Parkway (16th Mile Rd) to Mound Street and turn left. Site is between 15 Mile and 16 Mile Roads. Site sometimes unmanned. '), (478, 3049, 478, '616-866-0815', '616-866-1890 Rich Fa', '5501 Rusche Drive NW', '', 'Comstock Park ', 'MI', '49321', '8:00 am - 5:00 pm', ' ***Need fitting & adapter*** I-96 West, Exit 30B, (M-37/Alpine Avenue/Newaygo), merge onto SR-37 (Alpine Avenue NW), right onto 6 mile road, 2nd road on left Rusche Drive NW '), (479, 3050, 479, '517-204-4900 Harm\'s ', '517-645-0090 Fax', '3097 Lansing Road ', '', 'Charlotte', 'MI', '48813', '9:00 am 4:30 pm ', ' Entering Michigan, I-69, Exit 66 (M-100/Potterville/Grand Ledge), turn left onto US-27 (SR-100), turn left onto (E) Lansing Road, go 1.3 miles to Lansing Road '), (480, 3051, 480, '(330) 854-4511 ', '(330) 854-6664 Fax', '6845 Erie Avenue NW', '', 'Canal Fulton', 'OH', '44614', '7:30am-4:00pm/7:00am-4:00pm(Lab)', '76 W to Akron - Take 77S to Canal Fulton / N Canton Exit #111 At end of ramp - turn right onto Portage St. - Go approx 7 miles Go though town. Tunr left just past Dairy Queen onto Milfield Rd go to end. Make right onto Erie Ave. - go 1/2 mile, office on Left '), (481, 3052, 481, '330-965-1400', '330-623-7004 Tim Cel', '8433 South Avenue, Bldg. 1, Suite 1', '', 'Boardman', 'OH', '44514', '8:00-5:00 pm', ' I-80, Exit 234, bear right US-62, right onto ramp, left US-62, East River Crossing, I-680 Exit, merge I-680, Exit 14, right onto East Western Reserve Road (CR-32), right onto South Avenue '), (482, 3053, 482, '724-547-0120 ', '724-547-0939 Fax', '111 Thunder Road', ' ', 'Mount Pleasant ', 'PA', '15045', '7:00 am - 3:30 pm', ' SR-885 (Mifflin Road), continue South to Buttermilk Hollow Road, turn left onto Pittsburgh/McKeesport Blvd., bear left onto Yellow Beltway (Richland Avenue), bear left onto Dravosburg Bridge (WD Mansfield Memorial Bridge), turn right onto N. Monongahela Avenue, left onto Harrison Street, right onto Ohio Avenue Glaassport-Clairton Bridge (Trailer on Glassport side) '), (483, 3054, 483, '814-538-9169 Matt Ce', '(724) 452-8923 Fax', 'Rt .66', '', 'Shippenville', 'PA', '16254', '', ' 80 East, 60-66 North, 2 1/2 - 3 miles on left '), (484, 3055, 484, '412-777-0710 Steve/4', '412-777-0727 Fax ', '3600 Neville Road', '', 'Pittsburgh', 'PA', '15225', '8:00 am - 5:00 pm ', ' Rt. 79 to Neville Island Exit, turn right to Grand Avenue, at first Y turn to right on Neville Road, 1 mile on right 2 oak trees in yard, 3600 Neville Road Tax Exempt# 36-3933140'), (485, 3056, 485, '513-255-4444 Tim\'s C', '513-726-5679 Fax ', '416 W. Ritter Street', '', 'Seven Mile', 'OH', '45062', '7-3:30 ', ' I-70, Exit 10, turn left onto US-127 (SR-127), go 30 miles, turn right onto Ritter Street Tax Exempt# 31275844 (4)'), (486, 3057, 486, '740-254-1018', '740-254-1019 Fax', '762 River Road SW', '', 'Gnadenhutten', 'OH', '44629', '9:00 am - 5:00 pm M-F', 'Call cell # to get directions!!! 77S to 36E, 3 miles Port Washington, Right at Light Cross River, Left at \"T\" Left at next \"T\" 1 mile take right on first concrete driveway on right '), (487, 3058, 487, '614-775-4559/614-419', '614-775-4901 Fax / 6', '5500 New Albany Road', '', 'Columbus', 'OH', '43054', '8:00 am - 5:00 pm ', '270 E to exit Rt 161, go east to new Albany Rd, at light turn left over 161, turn left '), (488, 3059, 488, '614-823-3774', '614-865-3589 Fax', '3717 Corporate Drive', '', 'Columbus', 'OH', '43231', '8:00 am - 5:00 pm', '270 north to state route 3 exit (Westerville). Turn left. Go approx. 1 mile after you go under the over pass. Turn left at the 161 east on ramp. Instead of going on 161 Instead of going on 161 east, stay straight (right) into the corporate park. Stay straight until right before the culdesac turn right - building at 2nd to end on right side 3717 Corporate Drive (left but go straight - See Tom) Elevation: 800 Feet, Lat: 39.961*N, Long: 82.999*W Dead Weight Correction Value: 0.9993'), (489, 3060, 489, '(937) 435-3200 / 937', '(937) 435-5162 Fax', '8534 Yankee Street', '', 'Dayton', 'OH', '45458-1864', '8:00 am - 4:30 pm', '75 North to 675 North to 725 East, turn right onto Yankee Road, go to 1st light, straight thru turn into 2nd building on left end of building, back double metal doors **ALWAYS OPEN PUMP CABINET & CLEAN** HEAVY BUILD UP OF DIRT IN THIS AREA'), (490, 3061, 490, '859-814-9047 James', '859-567-5714 Fax', '13268 Innovation Drive', '', 'Florence', 'IN', '47020', '6:00 am - 2:30 pm', ' From Cincinnati: 71/75 South to the 71/75 Split, 71 South to Exit 62 (State Highway 127) turn right (North) on 127, turn left onto US-42, turn right onto RR-1, continue on Florence-Warsaw Bridge, look in front of you (Bid Building), the ramp loops around and dead ends, make left pass a (Big Casino), 1st road on left (Between houses), take next left '), (491, 3062, 491, '216-573-0955', '216-573-0963 Fax', '9885 Rockside Road ', 'Rt. 145', 'Valley View', 'OH', '44125', '8:00 am - 5:00 pm', ' I-271, Exit 23 (OH-14/Broadway Ave./Forbes Road), left onto Fair Oaks Road, left onto SR-14 (Broadway Ave.) (I-271/I-480W), left onto Rockside Road elizabethm@resourceinternational.com Elevation 690 Feet, Lat 41.499*N, Long 81.696*W, Dead Weight Correction Value 0.9993'), (492, 3063, 492, '937-236-8805 x 253 T', '937-237-9947 Fax', '4518 Taylorsville Road', '', 'Dayton', 'OH', '45424', '8:00 am - 5:00 pm', 'From Columbus, take Rt. 70W thru Springfield. Take State Route 202S Exit #36 South, just before Rt. 70 intersects with Rt. 75. Go approx. 1 miles and turn right onto Taylorville Rd. Go to bottom of hill. Site is on left. '), (493, 3064, 493, '(440) 256-6500', '(440) 256-6507 Fax', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '8:00 am - 5:00 pm', '11N to 322W to 306N Humboldt - 95# Elevation: 710 Feet, Lat: 41.629*N, Long: 81.362*W Dead Weight Correction Value: 0.9993 Fornerly EDP Consultants, Inc. Formerly EDP Geo Sciences, bought out by Soils & Materials Engineers'), (494, 3065, 494, '(440) 256-6500', '(440) 256-6507 Fax', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '8:00 am - 5:00 pm', ' CONTINUED NEXT PAGE.......... 11 N to 322 W to 306N Elevation: 710 Feet, Lat: 41.629*N, Long: 81.362*W Dead Weight Correction Value: 0.9993 Humboldt - 95# S/N 154852 & 154851 Password 7029 Fornerly EDP Consultants, Inc. Formerly EDP Geo Sciences, bought out by Soils & Materials '), (495, 3066, 495, '440-256-6500', '440-256-6507 Fax', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '8:00 am - 5:00 pm ', ' ***Must take 1 Kip with hole Through*** CONTINUED NEXT PAGE.......... 11N to 322 W to 306N. Elevation: 710 Feet, Lat: 41.629*N, Long: 81.362*W Dead Weight Correction Value: 0.9993 Humbolt - #95 S/N 154852 & 154851 Password 7029 Formally EDP Consultants, Inc. Formally EDP Geo Sciences'), (496, 3067, 496, '440-256-6500', '440-256-6507 Fax', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '8:00 am - 5:00 pm', 'CONTINUED NEXT PAGE.......... 11 North to 322 West to 306 North. Elevation: 710 Feet, Lat: 41.629*N, Long: 81.362*W Dead Weight Correction Value: 0.9993 Fornerly EDP Consultants, Inc. Formerly EDP Geo Sciences, bought out by Soils & Materials Engineers'), (497, 3068, 497, '330-339-4113', '330-339-1166 Fax', '2384 Brightwood Rd SE', '', 'New Philadelphia', 'OH', '44663', '8:00 am - 4:30 pm', 'Take I-80 West to 77 South to New Philadelphia Exit. (approx. 22 miles south of Canton). Take Rt. 250 East & go three (3) exits to Midvale / Barnhill Exit. Get off exit & go to stop. Turn right, go to next stop & turn right. Site is appprox. 3/4 mile on left. (Large gold building.) Elevation: 1100 Feet, Lat: 40.799*N, Long: 81.379*W Dead Weight Corretion Value: 0.9993 Need weights & baskets.'), (498, 3069, 498, '330-854-5388', '', '516 Elm Ridge NE Avenue', '', 'Canal Fulton', 'OH', '44614', '6:30 to 3', 'Turnpike 76 West, take 77S to Exit Portage Street, turn right,go about 7 or 8 lights (Approx. 5 to 7 Miles) to town of Canal Fulton, building located past Carter Lumber second street on right, 3rd building facing Elm Street on the left, number on mailbox 516 '), (499, 3070, 499, '419-334-2650 x 318 ', '419-334-9445 Fax ', '797 South State Route 19', '', 'Fremont', 'OH', '43420', '7:30 am - 4:30 pm ', ' I-80, Exit 15, merge onto I-80 (Ohio Tpke) North, at Ohio Tpke, Exit 91, merge onto SR-53 (South), off ramp, bear right, West onto US-20 (US-6), at US-20 SR-19 Exit, bear right onto SR-19 South, 797 South State Route 19 *** No Special Favors of Free Advice*** '), (500, 3071, 500, '717-245-9100', '717-245-9656 Fax', '801 Belvedere Street', '', 'Carlisle', 'PA', '17013', ' 8 - 5', ' I-81, Exit 45, right to College Street, right onto Walnut Bottom Road, arrive at 801 Belevedere Street, site on right Formerly Cumberland Geoscience Consultants '), (501, 3072, 501, '814-772-5363', '814-772-5353 Fax ', '44 Spleen Road ', '', 'Ridgway', 'PA', '15853', '7:00 am - 4:30 pm ', 'I-80, Exit 97, onto US-219, bear left onto US-219, bear right onto ramp, right onto US-219 (Main Street), turn right onto SR-948, to Spleen Road Hazen Rt. 28 N, to 219 Brockway, to Rt. 948 on right, 100 yards on right Tax Exempt: 25-1887534'), (502, 3073, 502, '(513) 621-1500/513-2', '513-684-8290 Fax /51', '1223 West 8th Street', '', 'Cincinnati', 'OH', '45202', '8:00-5:00 Office / 8:00-4:00 Lab', '71S Tunnel 3rd St exit, stay on 3rd 8th & Dalton 3rd & Central Ave, take left go toward river MUST CALL FOR APPOINTMENT!!! - not always manned! Use outlet under fuse panel w/GFCI outlet They have put on a plate to catch debris for easy cleaning, but plate is trapping dirt under it and holding it on the ram cylinder wall. You can\'t clean without tearing ram assembly apart.'), (503, 3074, 503, '440-525-7277', '440-525-7639 Fax', '7700 Clocktower Drive', '', 'Kirtland', 'OH', '44094', '8:00 am to 5:00 pm ', ' 11 North to 322 West to 306 North. Fornerly EDP Consultants, Inc. Formerly EDP Geo Sciences, bought out by Soils & Materials Engineers'), (504, 3075, 504, '810-225-4601', '810-225-4602 Fax ', '1200 N. Old US 23', '', 'Harland', 'MI', '48353', '', ' '), (505, 3076, 505, '304-539-1747 James C', '304-558-0253 Fax ', '190 Dry Branch Road', '', 'Charleston', 'WV', '25306', '', ' I-79, I-77 Exit, merge onto I-77 (South), continue South on I-64 (I-77), turn off ramp, continue South on US-60 (Kanawha Blvd.), turn left onto CR-60 (Riverland Drive) to Dry Branch Road '), (506, 3077, 506, '931-486-2145', '931-486-2186 Fax', '3515 Cleburne Road ', '', 'Spring Hill', 'TN', '37174', '', ' Will pay with Credit Card, call Janna when need numbers '), (507, 3078, 507, '817-431-9458', '817-431-3601 Fax ', '4212 Jenny Lake Trail', '', 'Keller', 'TX', '76244', '', ' '), (508, 3079, 508, '228-935-7535 Howard ', '228-933-9108 Fax', 'Westbank Central Receiving', 'Warehouse 221', 'Pascagoula', 'MS', '39567', '', ' '), (509, 3080, 509, '412-292-9642 Josh/41', '412-807-2006 Fax', '942 Manifold Road ', 'Job# 10-565', 'Washington', 'PA', '15301', '', ' 79 South, make left at Racetrack Road, follow to Rt. 19 South, make right to Manifold Road, go 1/4 mile to Cyclone Gate, their yard is on left, look for Trumbull '), (510, 3081, 510, '859-393-2460', '859-586-8891 Fax', 'Cleveland / Hopkins Airport', '', 'Cleveland', 'OH', '', '', ' Rt. 71, RT 480 West to Grayton Road, Exit right onto Grayton Road, left onto Brookpark Road, Yellow trailer says Harper on side '), (511, 3082, 511, '814-322-1545 John ', '814-322-1549 Fax', '5940 Kennedy Avenue ', '', 'Export', 'PA', '15632', '', ' I-76 (PA Turnpike) (South), turn off ramp (US-22/I-376/Murraysville/ Pittsburgh/Mon), bear right onto US-22 (William Penn Highway), turn left onto OLD William Penn Highway, bear left onto Kennedy Avenue '), (512, 3083, 512, '616-866-0815', '616-866-1890 Rich Fa', '5501 Rusche Drive NW', '', 'Comstock Park ', 'MI', '49321', '8:00 am - 5:00 pm', ' ***Need fitting & adapter*** I-96 West, Exit 30B, (M-37/Alpine Avenue/Newaygo), merge onto SR-37 (Alpine Avenue NW), right onto 6 mile road, 2nd road on left Rusche Drive NW '), (513, 3084, 513, '216-515-4493 Jennife', '216-566-3837 Fax ', '7650 Hub Parkway ', '', 'Valley View', 'OH', '44125', '', ' I-90, Exit 172A (I-77/Akron), merge I-77 (SR-21) East, at I-77 Exit 153 (Pleasant Valley/Independence/Seven Hills), continue East on Pleasant Valley Road, turn east on Alexander Road, left onto Hub Parkway '), (514, 3085, 514, '419-424-8377', ' ', '433 Olive Street', '', 'Findlay', 'OH', '45840', '', ' Formerly Hancor, Inc. GET MASTER CARD NUMBER ON SITE'), (515, 3086, 515, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', '6730 Whitestone Road', '', 'Baltimore', 'MD', '21207', '', ' 95 south, security blvd. (in Baltimore, MD), right on Belmont Avenue, right on Dogwood Road first street on right on Whitestone, big Tan building on left hand side 695 West, Exit 17, Security Blvd. exit splits, take Left side split at Second Blvd., Belmont Avenue, go Right on Dogwood '), (516, 3087, 516, '724-916-0300', '724-916-0315 FAX', 'Southpoint Business Park', '4 Grandview Circle', 'Canonsburg', 'PA', '15317', '8:00 am - 6:00 pm Lab', ' ***CONTINUED ON NEXT PAGE*** I-80/I-79 Exit, merge onto I-79 South, I-79 Exit 48, bear right onto Southpointe Blvd., right onto Technology Drive '), (517, 3088, 517, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', '6730 Whitestone Road', '', 'Baltimore', 'MD', '21207', '', ' 95 south, security blvd. (in Baltimore, MD), right on Belmont Avenue, right on Dogwood Road first street on right on Whitestone, big Tan building on left hand side 695 West, Exit 17, Security Blvd. exit splits, take Left side split at Second Blvd., Belmont Avenue, go Right on Dogwood '), (518, 3089, 518, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', '6730 Whitestone Road', '', 'Baltimore', 'MD', '21207', '', ' 95 south, security blvd. (in Baltimore, MD), right on Belmont Avenue, right on Dogwood Road first street on right on Whitestone, big Tan building on left hand side 695 West, Exit 17, Security Blvd. exit splits, take Left side split at Second Blvd., Belmont Avenue, go Right on Dogwood '), (519, 3090, 519, '410-358-7171 ', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', 'Take 695----West side of Baltimore. Take Exit 18 RT. 26 --Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. e-mail Solitation Letter to sam.kimani@ebaengineering.com'), (520, 3091, 520, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', '6730 Whitestone Road', '', 'Baltimore', 'MD', '21207', '', ' 95 south, security blvd. (in Baltimore, MD), right on Belmont Avenue, right on Dogwood Road first street on right on Whitestone, big Tan building on left hand side 695 West, Exit 17, Security Blvd. exit splits, take Left side split at Second Blvd., Belmont Avenue, go Right on Dogwood '), (521, 3092, 521, '724-766-0734 Jeff', '412-449-0704 Fax ', '2130 Campbells Mill Road', '', 'Blairsville', 'PA', '15717', '', ' US-422, Exit US-119, bear right onto US-119 '), (522, 3093, 522, '800-323-7901/814-437', '814-437-5114 Fax ', '60 Gibb Road', '', 'Franklin', 'PA', '16323', '9:00 am - 6:45 pm ', ' Rt. 8 North of Franklin, right onto Gibb Road (Across from Big Lots), ont the road that goes behind Allegheny Toyota '), (523, 3094, 523, 'Mohammad 513-556-437', '513-556-2599 Fax/513', '765 Baldwin Hall ', '(Cliffton Neighborhood)', 'Cincinnati', 'OH', '45221', '8:00 am - 5:00 pm', 'I-71N Through tunnel-STAY in left lane. 1st Exit (Eden Park-Reading Rd.) Go right on Eden Park, go to round-about STAY in Right lane-group hill Eden Park turns into Victory Parkway--Follow Victory until you see college of Applied Science Building on Right. CALL MOHAMMED x3 Taft Rd left at 1st , turn left again at next light, Memillan Rd, 1 mile turn left on Victory Pkwy 1/2 mile of left hand side'), (524, 3095, 524, '859-746-9400/513-617', '513-825-4756 Fax ', '710 West Wescor Road ', 'Cannelton Locks & Dam', 'Hawesville', 'KY', '42348', '', ' US-60 (West), to Domtar Sign, KY-1406 follow to Guard Shack, turn left, follow Walsh Signs to trailers at end of road '), (525, 3096, 525, '(740) 682-7755 x25', '(740) 682-6767 Fax', '454 CR-33', '', 'Oak Hill', 'OH', '60642', '7:00 am - 3:30 pm', 'Take Rt. 52 East to 93 North for about 29 miles. Then take 140W - 3 miles on left. Look for sign. Make right at \"Y\" Exit 157 off 70W take 93 South Attn: Accounts Payable Patrick Schneider 1010 North Hooker Street, Chicago, IL 60622'), (526, 3097, 526, '724-538-5006', '724-538-9118 Fax', '100 South Third Street', '', 'Evan City', ' PA', '16033', '', ' '), (527, 3098, 527, '740-775-6450 x123 Li', '740-775-6498 Fax ', '387 Wetzel Drive ', '', 'Chillicothe', 'OH', '45601', '6:00-5:00', ' I-270 (South East), Exit 52, bear right, US-23 South (Portsmouth Columbus Road), bear right US-23 South (High Street), US-23 US-50 Temporary Exit, bear right onto East Main Street, left onto Renick Avenue, right onto Wetzel Drive Go pas waste water treatment plant to end of road '), (528, 3099, 528, '304-688-3381 Jay', '859-987-0727 Fax', 'Job Site ', 'Rt. 52 & Rt. 65', 'Matewan', 'WV', '', '', ' Go to Pie, WV, turn right on US-52, go down hill, Water Tower on right, turn left onto Beech Creek Road, follow to top of hill, job site entrance on right, stop at Guard Shack, follow job site 5 miles to concrete plant on left '), (529, 3100, 529, '270-927-8606', '270-584-0265 Marty M', '710 West Wescor Road ', 'Cannelton Locks & Dam', 'Hawesville', 'KY', '42348', '', ' US-60 (West), to Domtar Sign, KY-1406 follow to Guard Shack, turn left, follow Walsh Signs to trailers at end of road '), (530, 3101, 530, '(814) 445-5794', '(814) 445-3241 Fax', '1019 East Bakersville-Edie Road', 'PO Box 585', 'Somerset', 'PA', '15501', '7:00 am - 9 pm', 'Route 30 to Jennerstown. Turn right onto 985 South. Go 6 miles past Sipesville to intersection with Minicipal Road. Look for Red/White Brindle Form sign. Turn right. 1/4 mile on left. Need to take large steel plates for pipe tester. '), (531, 3102, 531, '(724) 379-8604', '724-379-5181 Fax ', '85 Washington Avenue', 'Industrial Park ', 'Donora', 'PA', '15033', '7:30 am - 4:00 pm ', 'Take I-70 to Exit #43 (Donora). Follow 201N for 200 yds and turn left toward Donora. Stay on highway for about 3 miles (right lane is for Donoar). Cross bridge and stay in right lane. Go to 1st light and turn right. Go 1 block and turn right again. Go 2 blocks (end of road) turn left and then a quick right. Take the right over RR tracks. Location is 2nd building on right. MUST CALL 1 DAY PRIOR!'), (532, 3103, 532, '724-258-3670 ', '724-258-2595 Fax', '1 Pine Street', '', 'New Eagle', 'PA', '15067', '5:30 to 4:00 Mon.-Thurs.', ' SR-51 (Orange Beltway)(West), turn off ramp, (PA-837/W. Elizabeth) to SR-837 (Orange Beltway)(West), continue (SE) on SR-88 (SR-837), turn right onto Pine Street '), (533, 3104, 533, '412-262-2022', '412-262-1979 Fax', 'St. Rt. 2058, Intersection of Cochrans ', 'Mills Road & Garretts Run Road', 'Cochrans Mills ', 'PA ', '15236', '', ' From Kittanning, go to PA 66 South to 66 Alt. to Cochrans Mill Road, building at right at the \"T\" intersection '), (534, 3105, 534, '304-344-0821 Jim Smi', '304-342-4711 Fax ', '38 Athens Lane ', 'Willow Island', 'St. Marys', 'WV', '26170', '', ' Out of Parkersburg, WV, go North on Rt. 2 '), (535, 3106, 535, '281-447-4100', '281-448-0702 Fax Gal', '16511 Hedgecroft Drive, Suite 218', '', 'Houston', 'TX', '77060', '', ' '), (536, 3107, 536, '216-369-0198', '216-369-0197 Fax ', '6411 Granger Road ', '', 'Independence', 'OH', '44131', '', ' '), (537, 3108, 537, '703-930-4081Matt Cel', '703-996-0124 Fax / ', '8433 Backlick Road, Bay D', '', 'Lorton', 'VA', '22079', '', ' I-495 South, continue South, I-495 (I-495 Outlerloop), at I-495, Exit 57A (I-95/Richmond), merge I-95 South, at I-95, Exit 166A, (Newington/Fort Belvoir), merge onto SR-7100, (Fairfax County Pky) South, turn left onto Backlick Road '), (538, 3109, 538, '814-459-2720 x 140', '814-455-3751 Fax', '1133 West 18th Street', '', 'Erie', 'PA', '16502', '8am-4:30pm/6am-3:30pm Job Mon-Thur', ' I-80 I-79 Exit, merge I-79 North, at I-79 Exit 182, bear right onto US-20 (W 26th Street), turn left onto Cranberry Street, turn right onto W 18th Street Tax Exempt No: 25-0466048 '), (539, 3110, 539, '412-788-8026 Jim / 4', '412-788-1169 Fax/412', '4889 Campbells Run Road ', '', 'Pittsburgh', 'PA', '15205', '7:00 am - 3:30 pm', 'I-79, Exit 60B (PA-60/Airport/Moon Run), merge onto SR-60 (Steubenville Pike) (West), bear left onto Church Hill Road, bear right onto McMichael Road to Campbells Run Road Tan & Brick building with Penndot Field Office sign in window 9/10 S/N 96041 replaced cylinder seal, pump hose, gauge hose, replaced fittings, return springs, letter wrote to confirm calibration is okay, did not need calibrated again, machine was leaking'), (540, 3111, 540, '724-828-2800 David', '724-828-2828 Fax ', '79 South Laboratory Exit', '', 'Laboratory ', 'PA', '16802', '', ' 70 East take 79 South to Laboratory Exit 1st for 70/79 interchange make a left turn (foute 40 east) at the stop sign cross over 79 and take the first forad to right to get back on 79 north you will see concrete off to the right turn in gate and enter yard '), (541, 3112, 541, '517-887-9181', '517-887-2666 Fax', '2663 Eaton Rapids Road', '', 'Lansing', 'MI', '48911-6310', '7:00 am - 5:00 pm', 'I-96 Logan St. Exit 101 (which is Eaton Rapids Road) and (Logan Street is 99) Go 1/4 mile South. Watch on right for brown building with circle drive. Go under 96 to light at Bishop. Get in right lane. 2nd driveway on right. '), (542, 3113, 542, '859-746-9400', ' ', '3568 Intercity Drive ', '', 'Dayton', 'OH', '45424', '', ' I-75 North, Exit 54C, Rt. 4, go north to Harshman Road Exit, turn left, to right on Valley, 1/2 mile past Bingo Hall to Intercity Drive, end of building drive to the back of the building to cylinder molds '), (543, 3114, 543, '248-535-3405 Jeff', '248-745-2990 Fax ', '1191 Pickney Road', '', 'Howell', 'MI', '48843', '', ' Off of I-96 Exit to D19 North on righ past gas Station '), (544, 3115, 544, '(248) 858-4865', '(248) 335-2921 Fax', '2420 Pontiac Lake Road', '', 'Waterford', 'MI', '48328', '7:30 am - 3:30 pm', 'Take 59E to Pontiac Lake Road. Go past airport to 2nd intersection with Pontiac Lake Road (Look for light next to Harley-Davidson dealer). At light make left (east) onto Pontiac Lake Road. Go about 3 miles past several lights to light at County Center drive. Make left onto County Center Drive. Go past first building to open gate in fence. Go inside to brown trailer. '), (545, 3116, 545, '734-946-4966', '(734) 946-1147 Fax ', '26445 Northline Road', '', 'Taylor', 'MI', '48180', '8:00am-5:00pm/7:00am-6:00pm Job', ' \"***ISO Requested*** I-75 to Northline Rd Exit #37(west) - 26445 Northline Road OR--I-94 Middlebelt Rd (South) to Northline Rd (east) - 26445 Northline Road. Office located south side of Northline Road between Beech-Daly Rd. and Inkster Road in the City of Taylor, MI Lab is on western side of building in fenced-in area '), (546, 3117, 546, '920-419-6361', 'No Fax Yet', '1746 Charlestown Road ', '', 'Minden City', 'MI', '48456', '', ' I-94 SR-25 Exit, merge onto SR-25 (Pine Grove Avenue) (North), turn left onto Cedar Avenue, bear right onto B. City Forestville Road (Bay City Forestville), continue on Main Street need directions from there '), (547, 3118, 547, '814-361-2060', '814-361-2061 Fax', '50 Johns Street', '', 'Johnstown', 'PA', '15901', '8:00-4:30', ' '), (548, 3119, 548, '(734) 454-9900', '(734) 454-0629 Fax', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', ' MI', '48170', '8:00-4:00', 'I-275 N to Rt 14. Take 14 W to Exite 28 West on A. A. Sheldon Rd. Turn left cross under expressway turn left on Plymouth Oaks Site on left 1/10 mile, Lab in back Elevation: 780 Latitude: 42.4 DW Correction Value: 0.9995 '), (549, 3120, 549, '412-770-8750 Mick ', '412-449-0704 Fax ', 'Mushroom Farm Road ', '', 'Butler', 'PA', '', '', ' From Worthington, PA, go West on 422 toward Butler, turn left at Mushroom Farm Road there are 2 Grey trailers '), (550, 3121, 550, '724-323-2364 Jarrod ', '724-335-3834 Fax ', '8704 Pine St', ' ', 'Renovo', 'PA ', '17764', '', ' '), (551, 3122, 551, '301-698-4000 x 441', '(717) 848-5565 Fax', '5703 Urbana Pike ', '', 'Frederick', 'MD', '21704', '', ' Entering Maryland I-70, Exit 54 (MD-355/MD-85/Market Street/Frederick), merge onto SR-355 (Urbana Pike) (South) '), (552, 3123, 552, '814-224-2121 x 4256', '814-766-0316 Fax', 'Prestress Plant (Carpenter Shop)', 'Route 36 North, Contract Division', 'Roaring Spring', 'PA', '16673', '6:30 am - 4:00 pm ', ' ***1 Year Schedule*** Take Roaring Springs exit off Rt. 200. Take 36 South ( about 1 mile ) on left. Newcrete Plant Door 6 Mailing Address: PO Box 34, Roaring Spring, PA 16373 Attn: Harry McGhee ***Carpenter Shop Only paying Sales Tax*** '), (553, 3124, 553, '814-360-0076 Bob', '(814) 238-0131 Fax', '1550 Lehigh Drive', '', 'Easton ', 'PA', '18042', '', ' I-76, Exit 201(Blue Mountain), merge onto SR-997 (Cumberland Highway) (East) '), (554, 3125, 554, 'Doug 410-272-1515(O)', '410-272-2136 Fax', '910 Old Philadelphia Road ', '', 'Aberdeen', 'MD', '21001', '6:00-4:00', ' 95 North, Exit 80, to Rt. 543, turn right onto Rt. 40 East, go to 2nd red light, turn right onto Rt. 7 (Old Philadelphia Road), go 3/4 miles on the left '), (555, 3126, 555, '724-443-1533', '724-443-8733 Fax', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', 'From Uniontown take Rt. 119 South towards Point Marion. Go across Cheet River. Bridge job. (only thing happening in Point Marion) '), (556, 3127, 556, '309-797-3232 x 201 B', '309-797-3377 Fax', '1801 River Drive ', '', 'Moline', 'IL', '61265', '', ' '), (557, 3128, 557, '570-655-5574 x 1343 ', '570-414-2640 Fax', '401 York Avenue', '', 'Duryea', 'PA', '18642', '6:00 am - 3:30 pm ', ' '), (558, 3129, 558, '800-966-9856 / 973-6', '973-636-2701 Fax', '39 Utter Avenue', 'New York Headquarters', 'Hawthorne', 'NJ', '7506', '', ' 3/09 S/N 003767, S/N 005286, & S/N 0030 calibrated & shipped UPS Ground, Insurte $1,000.00, 3/10/2009'), (559, 3130, 559, '724-443-1533 / 412-2', '724-443-8733 Fax/412', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', ' 10/09 Bought reconditioned pump from CSI, picked up 12/12/2009 do not know what machine it will go on & where the machine is '), (560, 3131, 560, '242-350-4000', '242-350-4010 Fax ', 'Fishing Hole Road', '', 'Freeport', 'Grand', 'Bahamas', '', ' '), (561, 3132, 561, '412-445-8496', '412-449-0694 Ron ', 'Rt. 308', '', 'Butler', 'PA', '', '', 'From Worthington, PA, go West on 422 toward Butler, at Mushroom Farm Road there are 2 Gray trailers '), (562, 3133, 562, '412-931-0203', '412-287-5444 Jessie ', '1004 Ardmore Blvd', ' ', 'Pittsburgh', 'PA', '15221', '', ' 48 South, go across bridge (Boston Bridge), make a left (Smithfield Street), go 1 1/2 miles to (Wide Drive), turn left onto Wide Drive, there are 2 buildings there (Businesses), go between the two buildings, machine in the Quansit house (Yellow) '), (563, 3134, 563, '724-372-3897/724-216', '724-748-3599 Fax', '1040 Perry Highway ', '', 'Mercer', 'PA', '16137', '8:00 am - 4:00 pm ', ' Sign saying Maintenance Bay Truck for Rent Rt. 19 just South of Interstate 3 Business on right, next to Atwell Prine '), (564, 3135, 564, '440-838-7177', '440-838-7181 Fax ', '8100 Snowville Road', '', 'Brecksville', 'OH', '44141', '8:00 am - 5:00 pm ', ' I-80 West, Exit 15, merge onto I-80 (Ohio Turnpike) (North), at Ohio Tunrpkie, Exit 173, merge onto SR-21 (Brecksville Road), (North), turn right onto Snowville Road '), (565, 3136, 565, '412-638-1272 Brett', '724-265-3323 Fax', '431 Fallow Field Avenue', '', 'Charleroi', 'PA', '15022', '', ' I-70, Exit 41 (PA-906 /Belle Vernon / Monessen), off ramp, go right on Rt-906, stay on Rt-906 for 2 miles, on left there is an Industrial Park, need to be in left hand lane, turn left into lane, take the first left in the park, go straight to the old bridge, trailer there on left '), (566, 3137, 566, '717-436-0099', '717-436-0202 Fax', '4277 William Penn Highway', '', 'Mifflintown', 'PA', '17059', '7:00 am - 4:30 pm Mon thru Thurs', ' US-22, SR-75 Exit, bear right onto ramp, merge onto SR-75 (Henry Crossroad Road) (SW), turn left onto William Penn Hwy '), (567, 3138, 567, '724-640-2624 Dave Wi', '724-696-4952 Fax', '4849 Middle Road', ' ', 'Allison Park', 'PA', '15101', '7:00am-3:30pm ', ' US-422 (SR-28), bear right onto ramp, bear right onto US-422 (Benjamin Franklin Hwy), turn right onto SR-271 (Station Road), to Nanty-Glo/Mundys Corner Exit, at ramp take left, go to red light and go straight thru, once past sign (It says Truck Speed 30 MPH), turn right to job site '), (568, 3139, 568, '724-239-6488', '(724) 239-6489 Fax', '1739 Grange Road', '', 'Charleroi', 'PA', '15022', '5:00 am - 6:00 pm', 'Take I-79 South to Route 70 East to Exit #13 (Monongehela / Centerville Exit) Route 481. At end of ramp turn right. Go 50 yards and turn right again. Go 8/10 mile and site is on right. '), (569, 3140, 569, '412-585-4787 Eric Zo', ' ', '1201 Broughton Road ', '', 'Bethel Park', 'PA', '15102', '7:00-5:30', ' I-79, Exit 55 (Heidelberg/Kirwan Heights), merge onto SR-50 (Washington Pike), turn left onto Vanadium Road, bear left onto Montgomery Avenue, turn right onto Vanadium Road, turn right onto Bower Hill Road, turn left onto Painter Run Road, continue East on Connor Road, turn right onto SR-88 (Yellow Belt), bear left onto Broughton Road '), (570, 3141, 570, '502-722-1401', '502-267-4072 Fax', '11001 Bluegrass Parkway, Suite 250', '', 'Louisville', 'KY', '40299', '8:00 am - 5:00 pm M-F', ' I-265, Exit 25, merge onto I-64 (West), at I-64, Exit 17, continue Northwest (Blankenbaker Pkwy), turn left onto Watterson Trial to Bluegrass Parkway 8/10 Moved all equipment to new location, will move office to new location on August 19, 2010, former office Simpsonville, KY '), (571, 3142, 571, '(740)-773-2172/740-6', '(740) 773-2176 Fax', '1111 East Main Street', '', 'Chillicothe', 'OH', '45601', '8:00 am - 5:00 pm ', 'From Columbus take Rt. 23/35 approx. 43 miles. Take Rt. 50 / Main St. Exit. Go right at end of ramp. Go to 1st light. Make right. Basic in big letters on side of building. Formerly Basic Construction'), (572, 3143, 572, '(502) 241-9441 ', '(502) 241-0931 Fax', '5800 Haunz Lane', '', 'Louisville', 'KY', '40241', '7:00 am - 4:00 pm', '71 S 265 G.S. South Right lane, exit 34 (route 22), left 2 miles, cemetary on left, Haunz Lane on left, Popular Hill SD on left Formerly Atlas'), (573, 3144, 573, '(740) 663-2659', '(740) 663-2017 Fax', '3218 South Bridge St.', '', 'Chillicothe', 'OH', '45601', '7:30 am - 4:00 pm', 'Rt. 23 South to Chillcothe to Rt. 104 West. Exit (Business 23) You will see site off highway exit. Next to Lion\'s Den Adult Book Store. '), (574, 3145, 574, '513-554-1700 x 107 S', '513-554-0092 Fax', '425 Shepherd Ave.', 'PO Box 15527', 'Cincinnati', 'OH', '45215', '6:30 - 3:00', 'Take I-75 to Exit 13 (Shepard), just south of GE Aircraft Engine Plant. Glass & brick building on right. '), (575, 3146, 575, '513-825-4350', '513-825-4756 Fax', '1780 Carillon Blvd.', '', 'Cincinnati', 'OH', '45240', '8:00 am - 5:00 pm', 'Take 127 South past I-275. Next light Waycross Road. Take Left. 1/4 Mile on Left, behind Thrift Way. 90 left on Carillon Blvd, 2nd building '), (576, 3147, 576, '(614) 836-4209 Jeff ', '(614) 836-4226 Fax', '4001 Bixby Road', '', 'Groveport', 'OH', '43125', '7:00 am - 4:00 pm', 'See map From Rt. 270 take Rt. 33E to Rt. 317S (Note: 317 is also call Hamilton Road) Go 1 mile. Make a right off of Hamilton Road onto Bixby Road. Go approx. 1/2 mile and you will see the John E. Dolan Engineering. Lab on left. Go in main entrance to get visitor\'s pass. '), (577, 3148, 577, '(502) 361-8447 x24 S', '(502) 361-4793 Fax /', '994 Longfield Ave.', '', 'Louisville', 'KY', '40215', '7:00 am - 4:00 pm', 'Across from Churchill Downs Racetrack. Take 264W to Taylor Blvd. N. Exit #9 - Go right at end of ramp. Go 5-6 lights and turn right onto Longfield (across from Wendys) Go about 2 blocks - site on right in 2 story brown brick building. Dead weight correction value 0.9993 Elevation: 490 feet Latitude: 38 degrees'), (578, 3149, 578, '270-268-2345 Jimmy', '(270) 737-7277 Fax', '300 Sportsmanlake Road', '', 'Elizabethtown', 'KY', '42701', '7:30 am - 4:00 pm', 'I-65, Exit 91 towards Hodgenville Hwy 61, cross over 31-W then take a right at the first light (Sportsmanlake Road) FORMERLY LINCOLN TRAIL CONCRETE'), (579, 3150, 579, '412-631-3067', '412-299-7734 Fax', '3000 American Bridgeway', '', 'Coraopolis ', 'PA', '94607', '', ' '), (580, 3151, 580, '937-763-4039', '937-382-2199', '1481 US Route 68 S.', '', 'Willminton ', 'OH', '45177', '7:00 am - 5:00 pm', 'Rt 62 south into Hillsboro (rt 62 is High St once into Hillsboro) Turn right onto Main Street (west rt 50) the courthouse and 3 banks will be on the corner go 7 1/2 miles on 50 into Fairview turn left onto Danville Road, then first left onto Roush. There will be signs for Hanson/Highland Concrete on Route 50 Call prior so they can open lab. Formerly Hanson/Highland Stone '), (581, 3152, 581, '610-264-1430', '610-264-1430 Fax (P', '600 Hayden Circle', '', 'Allentown', 'PA', '18109', '', ' Formerly Techjet A & M, Easton, PA '), (582, 3153, 582, '205-664-2077', '205-664-4077 Fax', '100 Piper Lane', '', 'Alabaster', 'AL', '35007', '', ' '), (583, 3154, 583, '413-525-2705', '413-525-6182 Fax', '22 Deer Park Drive ', '', 'East Longmeadow', 'MA', '1028', '', ' '), (584, 3155, 584, 'PHONES DISCONNECTED', '513-228-3483 Fax', '3425 Grant Drive', '', 'Lebanon', 'OH', '45036', '5:00 am - 1:00 pm', '71N., Exit 25 Kings Mills, bear to right, 2 lights Colombia (take left) bottom of hill turn left, under underpass, immediate right, 1/2 mile left on McKinley, turn right on Grant '), (585, 3156, 585, '440-951-9000 / 440-5', '440-951-7487 Fax / 4', '8150 Sterling Court', '', 'Mentor', 'OH', '44060', '8:00 am - 5:00 pm (office)7:00-4:00 (lab)', 'I-90 E (OH-306 Exit), Exit 193, toward (Mentor/Kirkland), turn left onto OH-306/Broadmoor Road, turn right onto Mentor Avenue/ US-20, go 0.4 miles past W. Plaza Blvd. to Sterling Court Turn I-Beam sideways when using 50K cell on 700 system. '), (586, 3157, 586, '(440) 298-3232 ', '440-951-1921 Fax / 4', '6900 Madison Road', 'PO Box 70', 'Thompson', 'OH', '44086', '7:00-3:30 Office (Precast 5:00-5:00)', ' *Jacks may be in different buildings**Certs & Invoice to PO Box* From Route 90 Exit #212, Take 528S (Madison Rd) pass Thompson Road. Go to center of town (Town Square) CT-6300 Site is right about 1/4 miles. Other equipment is 1/2 mile further south on left at precast plant '), (587, 3158, 587, '716-897-1904', '(716) 893-5427 Fax', '1768 William Street', '', 'Buffalo', 'NY', '14206', '', ' I-90, Exit 1, turn right onto CR-315 (Dingens Street), left onto Shanley Street, bear right onto Richard Drive, turn left onto CR-207 (Williams Street) Formerly Niagra Testing, Inc. '), (588, 3159, 588, '304-750-2203', '304-750-2204 Fax', '106 West Main Street', '', 'Sutton', 'WV', '26601', '8:00 am to 4:30 pm', ' I-79, Exit 67, turn left onto CR-19 (Scott Fork), turn right onto US-19 (SR-4), turn left onto W. Main Street '), (589, 3160, 589, '304-749-8898 Lab/ 30', '614-778-4305 Jack\'s ', 'Job Site ', 'Grant County', 'Scherr', 'WV', '26726', '', ' I-68 East, Exit 1, turn right onto US-119 (Grafton Road), turn left onto US-50, entering Maryland, Entering West Virginia, turn right onto SR-42, left onto SR-93, located at the intersection of WV93N & WV42, Pass Ahern & go 3/4 of mile down the road '), (590, 3161, 590, '228-549-1610(O) 251-', '', '3209 Frederic St', '', 'Pascagoula', 'MS', '39567', '', ' '), (591, 3162, 591, '412-812-1276 Ernie F', '724-443-8733 Fax', '221 Hulton RD & 2nd Street', '', 'Oakmont ', 'PA', '15139', '7:00-5:00', ' I-68, Exit 1, turn right onto US-119 (Grafton Road), turn left onto Sunset Drive, bear right on Sunset Drive to Lakeview Drive '), (592, 3163, 592, '(330) 454-1113', '(330) 454-8770 Fax', '2340 Navarre Road S.W.', '', 'Canton', 'OH', '44706', '8am - 5pm ', 'I-77 South to Canton, 30W Exit, to Harrison Avenue Exit Turn Right, Left at light onto Navarre Road, 1/4 mile on left, Perry Tire across road Formerly CMT Service, Ltd.'), (593, 3164, 593, '937-512-2441 / 937-5', '937-512-2475 Fax', '444 W. Third Street', 'Room 11-423', 'Dayton', 'OH', '45402', '8:00 am - 5:00 pm', '75 North, 3rd St Exit East to Perry, Make right, 4th street, make right, 200 feet underground parking on right, stay left in parking lot, 4th floor elevator Building 11, Floor 4, Room 423 Secretary - 11-426 Tax Exempt # - 31-0723444'), (594, 3165, 594, '(606) 639-4411 Gary ', '(606) 639-2144 Fax', '5190 Collins Highway', 'US 23 South', 'Pikeville', 'KY', '41501', '7:00 am - 5:00 pm ', '13 miles South to Pikesville, KY. 119/23 South. Going South - location in little valley to right 3/4 mile past Colley Road sign. (Hard to find) Blacktop Plant - Regina - left at light, bridge old 23, 3 to 4 miles on left Shipping Address: 5190 Collins Highway, Pikeville, KY 41501 '), (595, 3166, 595, '318-290-6410', '318-290-6411 Fax', '119 West Range Road', '', 'Pineville', 'LA', '71360', '', ' '), (596, 3167, 596, '504-733-9822', '504-734-0602 Fax ', '130 Brookhollow ', '', 'Harahan', 'LA', '70123', '', ' Unit owned by: Morgan City Rentals, 102 Nova Drive, Broussard, LA 70518, 337-524-1000, 337-524-1004 Fax, 985-397-1530 Cell Henry Williams, Henry@morgancityrentals.com'), (597, 3168, 597, '337-837-1676 x 261 T', '337-837-6599 Fax', '1196 Petroleum Parkway', '', 'Broussard', 'LA', '70518', '', ' '), (598, 3169, 598, '580-584-6247 Ext. 27', '580-584-3099 Fax Bar', 'Rt.4, Box 371, Hwy 3', '', 'Broken Bow', 'OK', '74728', '', ' Shipping Address: 371 RR1, Broken Bow, OK 74728 Fax Invoice: 580-584-6230 Tony Cunningham Omega Dyne 1-800-872-3963 '), (599, 3170, 599, '(703) 421-4000 / 757', '(703) 421-8000 Fax', '21505 Greenoak Way', '', 'Sterling', 'VA', '20166', '', ' US-15 Byp (Leesburg Byp), bear right (VA-7), merge onto SR-7 (E. Market Street), turn off ramp (VA-28/Dulles Airport/Centerville), merge onto SR-28 (Sully Road), turn left onto Severn Way, bear right onto Woodland Road, turn left onto Greenoak Way '), (600, 3171, 600, '606-436-1111', '', '230 Swartz Drive', '', 'Hazard', 'KY', '41701', '', ' '), (601, 3172, 601, '240-455-8380', '301-330-2710 Fax', '16840 Oakmont Avenue', '', 'Gaithersburg', 'MD', '20877', '9:00-5:00', 'I-270 South to Exit 9B - A, take I-370E, 1.5 miles, take Shady Grove Road Exit toward Rockville, left on Oakmont Avenue to location '), (602, 3173, 602, '570-840-8536 Jeremy', ' ', '3427 Route 611', '', 'Bartonsville ', 'PA', '18321', '', ' I-80, Exit 309, bear right onto US-209 (Seven Bridge Road), go North to job site Tax # 23-2855378'), (603, 3174, 603, '(703) 421-4000 / 757', '(703) 421-8000 Fax', '21505 Greenoak Way', '', 'Sterling', 'VA', '20166', '', ' US-15 Byp (Leesburg Byp), bear right (VA-7), merge onto SR-7 (E. Market Street), turn off ramp (VA-28/Dulles Airport/Centerville), merge onto SR-28 (Sully Road), turn left onto Severn Way, bear right onto Woodland Road, turn left onto Greenoak Way '), (604, 3175, 604, '610-842-6875 Kimberl', '610-362-0211 Fax ', '350 South Governor Printz Blvd. ', '', 'Lester', 'PA', '19029', '7:00-3:30', ' I-476 (Blue Route) (West), turn off ramp (I-95/ Philadelphia), at I-95 (East) at I-95, Exit 9A/9B (PA-420/Essington/Prospect Park), turn off ramp merge onto SR-420 (Wanamaker Avenue), continue South on Wanamaker Avenue, turn left SR-291 (Industrial Hwy), to S Governor Printz Blvd. '), (605, 3176, 605, '717-764-7700 ', '717-764-4129 Fax', '130 Derry Court', '', 'York', 'PA', '17406', '', 'Exit 24 off I-83. Turn West onto Church Road. On west side of I-83, make immediate left onto Derry Court. ATI is straight ahead at end of road. Moved to Building 2 Tax Exemp no: 82-886744 Password to get into Bluehill Software: \"Joe\" then Password: 80FXWG'), (606, 3177, 606, '814-749-9204/814-525', '814-749-0090 Fax', '260 Laurel Ridge Road', '', 'Johnstown', 'PA', '15909', '8:00 am - 5:00 pm ', '422 East, all the way to 219, past Indiana, Rt. 219 South, Exit 22 West go 6 miles, 2nd blinking light Chickoree Hill Road, 1/2 mile on left Scale House 814-749-7578 '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (607, 3178, 607, '814-372-1302 Amanda ', '(814) 371-4640 Fax', '409 3rd Street', '', 'Falls Creek', 'PA', '15840', '8:00am-4:30pm / 8:00am-5:00pm Lab ', ' ***Do every two Years*** Take I-80 East toward DuBois. Get off at DuBois. Rt. 950 goes to right near Sheetz Set cal pts at 0-400-1200-10000 Fornerly Allegheny Powder Formerly Hawk Precision Components'), (608, 3179, 608, '814-371-0184 x1302 A', '(814) 371-4640 Fax', '409 3rd Street', '', 'Falls Creek', 'PA', '15840', '8:00am-5:00pm / 8:00am-4:00pm Lab ', ' Take I-80 East toward DuBois. Get off at DuBois. Rt. 950 goes to right near Sheetz '), (609, 3180, 609, '724-321-1666 Dean', '724-452-8923 Fax', '1790 Rt 588', '', 'Fombell', 'PA', '16123', '7:00-4:00', '19 Ramp, right, left on 19, 2nd light, right across tracks/bridge, stay left (588) across bridge on left, past Zelienople Airport '), (610, 3181, 610, '304-292-1135 / 304-3', '304-296-9302 Fax ', '733 Fairmont Road', '', 'Morgantown', 'WV', '26501', '7:00-5:00', ' Entering West Virginia, I-79, Exit 152, turn left onto US-19 (CR-19 19) to Fairmont Road '), (611, 3182, 611, '724-443-1533', '724-443-1533 x 50326', '327 2nd Street', '', 'Freeport', 'PA', '16229', '6:30-5:30', ' SR-28 (SW), SR-356 Old Exit 17, (PA-356/Freeport/Butler), turn off ramp, merge onto SR-356 (S Pike Road) (East), turn off ramp, (PA-128N / Freeport), merge onto SR-356 (East), turn off ramp, (PA-128N / Freeport), arrive 323 2nd Street Signal at bottom of hill, turn left '), (612, 3183, 612, '412-481-0280', '412-481-3442 Fax', '3447 East Carson Street', '', 'Pittsburgh', 'PA', '15203', '7:00 am - 5:00 pm ', ' I-579 (SE), turn off ramp onto Blvd. of the Allies, right onto SR-885 (Blvd. of the Allies), right onto Hot Metal Street, left onto SR-837 (E. Carson Street) '), (613, 3184, 613, '419-691-4800', '419-691-4805 Fax (D', '1419 Miami Street', 'PO Box 838', 'Toledo', 'OH', '43697', '7:30 am - 5:00 pm ', 'Off I-75 Take Exit 199, Route 65 North (Miami Street or Front Street) Northeast to site. '), (614, 3185, 614, '440-599-7005', '440-599-7575 Fax', '360 Commerce Street', '', 'Conneaut', 'OH', '44030', '8:00-4:30', ' I-79, Exit 166, turn left onto US-6N (Rte-6N), turn left onto US-20 (Rte-20), entering Ohio, turn right onto Chesnut Street, turn left onto W. Adams Street, turn right onto Commerce Street, building has a sign on it that says (Portable Heat) '), (615, 3186, 615, '724-443-1533 x 50204', '724-443-8733 Fax', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', ' '), (616, 3187, 616, '859-274-3447', '859-745-3013 Fax ', '4733 Rockwell Road ', '', 'Winchester', 'KY', '40391', '', ' '), (617, 3188, 617, '(330) 733-6748', '(330) 733-6749 Fax', '2685 Gilchrist Road', '', 'Akron', 'OH', '44305', '', 'Gilcrest Exit off of I-76, turn right then left at Hardee\'s Take Forney-S/N 72150-00113 to 400K. 8/11 S/N 01110-H15326 & S/N Unknown is Out of Service, S/N 72150-00113 replaced release lever O\'Ring on pump'), (618, 3189, 618, '330-308-3913 Bryan ', '330-308-6996 Fax / 3', '2201 Reiser Avenue', ' ', 'New Philadelphia', 'OH', '44663', '6:30 am - 3:00 pm ', ' I-76 West toward Akron, OH, merge onto I-77 South via Exit 23A on the left toward Canton, OH , merge onto US-250 East, Exit 81 toward Uhrichsville, OH, merge onto Reiser Avenue 35/OH-259 toward Schoenbrunn, arrive 2201 Reiser Avenue Tax Exempt No: 311334820'), (619, 3190, 619, '810-772-7573 ', '810-341-7573 Fax', '69338 Omo Road ', '', 'Armada', 'MI', '48005', '', ' I-94, Exit 240B (M-59 W / Utica), bear right onto William P Rosso Highway, continue on Hall Road, continue on William P Rosso Highway, continue on Hall Road, continue on SR-59 (Hall Road), turn right onto North Avenue, turn right onto 32 Mile Road, turn left onto Omo Road, North constuction entrance '), (620, 3191, 620, '814-224-6870 Mark/81', '814-766-4400 Fax / 8', '408 American Parkway NE', ' ', 'Allentown', 'PA', '18109', '7:00 am - 3:00 pm ', ' 1100 American Pky NE gets you close. Site in fenced area with other job trailers. '), (621, 3192, 621, '215-783-2238', '215-443-8362 Fax', '248 East County Line Road', '', 'Hatboro', 'PA', '19040', '5:30 AM to 5:30 PM', ' I-276, Exit 343, bear right (East), onto ramp, (Willow Grove Int.), Road) (North), turn right onto Blair Mill Road, turn right onto (W) County Line Road to East County Line Road '), (622, 3193, 622, '248-361-0958 Mike Ce', '248-592-9130 Fax', '10147 Grand River Avenue', '', 'Brighton', 'MI', '48116', '8:00am-5:00pm/8:00am-4:00pm Lab', 'I-96, Exit 147 (Brighton), at Spencer Road Exit, turn right onto Spencer Road, turn right onto E. Main Street, turn onto Grand River Avenue Office Address: Superior Materials Holdings, LLC, PO Box 2900, Farmington Hills, MI 48333-2900, 30701 W. 10 Mile Road, Suite 500, Farmington Hills, MI 48336 248-788-8000 FORMERLY FENDT TRANSIT MIX'), (623, 3194, 623, '734-476-3156 Greg\'s ', '724-487-8755 Fax', '121 Sill Hall', '', 'Ypsilanti', 'MI', '48197', '', 'Take the Huron St. Exit off of I-94, it is aout 5-6 miles ease of US-23, or about 10-132 miles west of I-125. '), (624, 3195, 624, '734-476-3156 Greg\'s ', '734-487-8755 Fax ', '145 Sill Hall', 'School of Educational Technology', 'Ypsilanti', 'MI', '48197', '', 'Take the Huron St. Exit off of I-94, it is about 5-6 miles east of US-23, or about 10 - 12 mile west of I-275. Jim Stein 734-487-1940 '), (625, 3196, 625, '(330) 456-2700', '330-456-4530 Fax', '3935 Jeffries Circle NE', '', 'Louisville', 'OH', '44641', '5:30 AM - 4:00 PM', 'Take I-77 South to Canton go East on Rt. 62. Go South on Rt. 44. Take Rt. 153 West to job. '), (626, 3197, 626, '814-382-0373', '814-382-0375 Fax', '405 Water Street', '', 'Conneaut Lake', 'PA', '16316', '8:00 am - 5:00 pm M-F', 'Business address: Off I79 take Meadville/Conneaut Lake exit, west, stay on Route 322/Route 6 for about 8 miles to Conneaut Lake, Route 322/6 is also Water Street in Conneaut Lake. 10/05 Connie Lenhardt is initial contact for scheduling, Sherry Morian is President & Camp Owner, Dennis Morian is Co-Owner & Director of Engineering, Rankin Montgomery is Construction Supervisor, & Roxanne Brown is Controller in Accounting'), (627, 3198, 627, '(330) 478-0081', '(330) 478-3267 Fax', '4579 Navarre Road SW', '', 'Canton', 'OH', '44706', '8:00 am - 5:00 pm', 'Toward Canton-take Rt. 77 S to Rt. 30 West (Exit #104B). Exit at Whipple Ave./Raff Rd. Exit. At light at end of ramp, go straight to stop sign. Make left onto Whipple. Then go to next light & turn right onto Navarre Road. About 1/4 miles on Navarre to Inverness Plaza (left side of road) PSI is in center of plaza near laundromat. PSI moved across street, Tan & Green Strip office Send bill to:510 East 22nd Street, Lombard, IL 60148 (Corporate)'), (628, 3199, 628, '330-746-4482', '330-259-3560 Fax ', '1470 Churchill-Hubbard Road ', '', 'Youngstown', 'OH', '44505', '8:00am-12:00pm/1:00pm-5:00pm', ' Head West on I-80, take Exit 229, which is the Belmont Avenue Exit, turn right onto Belmont Avenue, which is State Route 193. Go North on Belmont Avenue for about a quarter mile and turn right onto Churchhill-Hubbard Road, which is State Route 304. Drive East on Churchhill-Hubbard Road for about a mile and a half. Seidler Engineering is on the left side of the road at 1470 Churchhill-Hubbard Road, free parking ia available in front of building'), (629, 3200, 629, '440-604-9943', '440-604-9992 Fax ', '6670 Beta Drive ', '', 'Mayfield Village', 'OH', '44143', '7:00 am - 3:00 pm ', ' 4/11 New client '), (630, 3201, 630, '828-734-1011', '828-926-2229 Fax', '1736 Hemphill Road', '', 'Waynesville', 'NC', '28786', '', ' '), (631, 3202, 631, '(717) 566-5066', '(717) 566-4166 Fax', '8261 Old Derry Street', '', 'Hummelstown', 'PA', '17036-9308', '', ' '), (632, 3203, 632, '502-868-6221', '502-863-0834 Fax', '150 Carley Court ', '', 'Georgetown', 'KY', '40324', '', ' '), (633, 3204, 633, '304-989-2263 Shannon', '304-766-7396', '5725 Kanawha Turnpike SW', ' ', 'South Charleston', 'WV', '25309', '', 'I-64 south to Exit 42 McCorkle Ave. take left off exit 4 miles, BP on left, take left Construction Yard is behind BP '), (634, 3205, 634, '859-509-4998', ' ', '1490 Frankfort Ave.', ' ', 'Louisville', 'KY', '40602', '', 'I-71 S follow signs for Louisville take exit 2 for Zorn Ave Keep right at fork, follow signs for River Rd. and merge onto Zorn Ave turn left onto River Rd. turn left onto Frankfort Ave. '), (635, 3206, 635, '304-461-4676 Jim', '724-443-8733 Fax', '406 Riverside Drive ', '', 'Hinton', 'WV', '25951', '', ' I-79, Exit 57, continue on US-19, bear right onto US-19 Alt., turn left onto ramp, bear right onto US-19 (Robert C. Byrd Drive), bear left onto SR-3 (Hinton Road), turn right onto SR-20 (SR-3), turn right onto Riverside Drive '), (636, 3207, 636, '412-287-3199 Chris', '724-443-8733 Fax', '975 Airbrake Avenue', 'Greensburg Pipe Job ', 'Turtle Creek', 'PA', '15145', '', ' I-376, Exit 8A (US-30/Forest Hills), turn off ramp, continue East on US-30 (Ardmore Blvd.), bear right onto ramp (East Pgh/Turtle Creek), bear left onto Electric Avenue, turn left onto Braddock Avenue, bear right onto Penn Avenue, continue SE on Airbrake Avenue '), (637, 3208, 637, '513-321-5816', '513-321-0294 Fax / 5', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm', '**All machines need our big & small service labels** ***ISO Requested*** ***continued*** Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993'), (638, 3209, 638, '513-321-5816', '513-321-0294 Fax / 5', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm', '**All machines need our big & small service labels** ***ISO Requested*** ***continued*** Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993'), (639, 3210, 639, '513-321-5816', '513-321-0294 Fax / 5', '611 Lunken Park Drive ', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm', '**All machines need our big & small service labels** ***ISO Requested*** ***continued*** Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993'), (640, 3211, 640, '814-837-7743/814-598', '814-837-9155 Fax/814', '55 Apollo Drive', '', 'Kane', 'PA', '16735', '', ' '), (641, 3212, 641, '724-399-2992', '724-399-2480 Fax', '116 N. River Road ', '', 'Parker', 'PA', '16049', '8:00am - 5:00pm/6:00am - 2:00pm Job', ' '), (642, 3213, 642, '(502) 581-1443', '(502) 581-9653 Fax ', '1561 E. Washington ST.', '', 'Louisville', 'KY', '40206', '6:00 am - 4:00 pm', 'I-64 West into town. Off at Exit #7 (Mellwood). Go Right at ramp past flood wall. Turn left at Frankfort Ave. Go straight across Story Ave. Make left onto E. Washington St. or Ohio St. (plant is several blocks long) '), (643, 3214, 643, '859-497-2319 Shayne/', '1-888-792-3121 Fax/8', '250 Gold Rush Road, Suite 6', '', 'Lexington', 'KY', '40503', '', 'I-75 (South), Exit 120, merge onto SR-1973 (Iron Works Pike) (West), turn left onto US-25 (Georgetown Road), turn right onto ramp, merge onto SR-4 (NW New Circle Road), at SW New Circle Road US-68 Exit, turn off ramp, turn left onto US-68 (Harrodsburg Road), turn right onto Pasedena Drive, turn right onto Stone Road, turn left onto Big Run Road, turn left onto Gold Rush Road '), (644, 3215, 644, '606-639-4483/606-639', '606-639-8692 Fax / 6', '17 West Sookeys Creek ', '', 'Pikeville', 'KY', '41501', '7:00 am - 5:00 pm', 'Once entering Kentucky US-119 (Nolan Toll Bridge) SE, stay on US-119 (SR-292), South, turn right onto SR-460 to Sookeys Creek '), (645, 3216, 645, '256-386-2715', '256-386-3657 Fax', 'Hwy 133 Wilson Damn Road ', 'Power Service Shop #2', 'Muscle Shoals', 'AL', '35661', '', ' '), (646, 3217, 646, '418-931-4614 Cell Se', '418-694-7972 Fax ', '85 Abraham-Martin', '', 'Quebec', 'Canada', 'G1K 8N1', '', ' 2/10 New client, S/N 012596176 shipped UPS Ground, Insure $100.00, Acct. # 6RW878, zip code G1K8N1 on 2/5/2010 9/10 S/N 012596176 shipped UPS Ground, Insure $250.00, Acct.# 6RW878 on 9/16/2010 12/10 S/N 012596176 shipped UPS Ground, Insure $250.00, '), (647, 3218, 647, '828-456-9695', '828-456-5505 Fax', '19526 Great Smokey Mtn. Expy., Unit 3', '', 'Waynesville', 'NC', '28786', '', ' '), (648, 3219, 648, '814-224-2121 x 4212 ', '814-766-0222 Fax', 'Prestress Plant', 'Route 36 North', 'Roaring Spring', 'PA', '16673', '8:00 am - 4:30 pm ', ' Tax Exempt # 11-3730293 '), (649, 3220, 649, '717-266-4173', '717-266-5083 Fax', '255 Glen Drive ', '', 'Manchester', 'PA', '17345', '', ' '), (650, 3221, 650, '305-822-5792 x 108', '305-362-3125 Fax ', '8081 W. 21 Lane ', '', 'Hialeah', 'FL', '33016', '', ' '), (651, 3222, 651, '724-342-6851 x1285', '724-983-2226 Fax', '1 Council Avenue', '', 'Wheatland', 'PA', '16161-0608', '8:00 am - 5:00 pm', ' I-80, Exit 4, merge onto SR-60 (West), at SR-60 SR18 Exit, turn off ramp, bear right onto Braodway Avenue, continue on Victor Posner Blvd. (Broadway Road), bear left on Broadway Road, bear left onto SR-718 (Council Street) '), (652, 3223, 652, '330-744-0809 x 157 K', '330-744-3218 Fax / 3', '2100 Poland Avenue', '', 'Youngstown', 'OH', '44514', '8:00 am - 4:30 pm ', 'Enter Ohio on I-80, Exit 229, turn right onto ramp towards OH-193/ Youngstown, left onto SR-193 (Belmont Ave.), straight onto SR-193 (Wirt Street), right onto ramp, take ramp (left) onto SR-193 towards US-422 take ramp onto I-680, Exit 8, turn right onto ramp towards Indianola Ave / Shirley Ave., keep straight (Cooper St.), turn left onto E. Indianola Ave., turn right onto Poland Ave., arrive at Poland Ave. Kevin Lang - Strenn Consulting, Inc. '), (653, 3224, 653, '330-373-6611 x 2443', '', '901 Dietz Road ', '', 'Warren', 'OH', '44483', '', ' SR-11, SR 82 Exit, turn off ramp, merge onto SR-82 (West), turn off ramp, merge onto SR-82 (Warren Outerbelt) (NW), bear left (W) onto SR-5 (SR-5 Outerbelt), turn off ramp, turn left (S) onto CR-149 (NE) (Perkins Jones Ct), turn right (W) onto CR-145 NE (Dietz Road NE) to Dietz Road '), (654, 3225, 654, '(216) 524-2950', '216-524-4069 Fax', '8900 Hemlock Road', '', 'Independence', 'OH', '44131', '8:00 am - 4:00 pm', 'From 77 take Independence Exit #154. Take left at end of ramp onto Rocksville Road Eastbound. Make right onto 21S Go approx. 1 mile, turn onto Stone Road on left (It\'s eastbound only). Go 1 1/2 miles, site on right at end of road. Formerly Hydraulic Press-Brick'), (655, 3226, 655, '312-666-2989 Ron', '', '2945 W. Harrison Street', '', 'Chicago', 'IL', '60212-3334', '', ' '), (656, 3227, 656, '315-334-7600 opt 5 t', '315-334-7660 Fax', '92 Otis Street', '', 'Rome', 'NY', '13441', '7:00 am - 3:00 pm ', ' '), (657, 3228, 657, '440-327-3200', '440-327-3204 Fax', '7864 Root Road', '', 'North Ridgeville', 'OH', '44039', '', 'I-480, Exit 36, merge I-271 (I-480 North), continue North on I-480, at I-480 (I-480/Rock Side Road/Cleveland), Exit 1B, left onto Lorraine Road go to 3rd light (West) on Lorraine Road (go past turnpike entrance & movie drive-in), turn right onto Root Road, go thru stop sign, over RR tracks, 2nd Driveway on the left 3/10 New client, Bill went there on 3/24/2010, machine needs new crosshead gearing, quote for parts $3,200.00, client did not want '), (658, 3229, 658, '517-264-8148 / 517-2', '517-264-0922 Fax Spe', '3301 Sutton Road ', '', 'Adrian', 'MI', '49221', '', ' I-80, Exit 15, merge onto I-80 (Ohio Tpke) (North), merge onto SR-109, turn left onto US-20, turn right onto US-127 (SR-127), entering Michigan, turn right onto US-12 (E. Chicago Road), turn right onto SR-52 (N. Adrian Hwy), turn left onto Sutton Road '), (659, 3230, 659, '859-509-4998/859-536', '859-299-2481 Fax', '375 Codell Drive', '', 'Lexington', 'KY', '40509', '8:00 am - 5:30 pm ', ' I-75 South to Man-o-war Exit (108). Make right turn off exit. Go 3 lights (approx. 1 mile). Take right onto Palumbo Dr. Go approx 2 miles to 2nd light & turn left on Codell Dr. Make immediate left after turning onto Codell. Bldg. on left. Formerly Qore Property Sciences Formerly Atlanta Testing & Engineering'), (660, 3231, 660, '419-739-9300/419-739', '440-947-2099 Fax', '13663 Short Road ', '', 'Wapakoneta', 'OH', '45895', '', ' I-75 (South), Exit 110, off ramp bear right onto US-33, at US-33 SR-67 Exit, bear right onto ramp, merge onto SR-198 (SR-501) (South), continue South on SR-501 (Dixie Highway), continue South on CR-25A, turn left onto Short Road '), (661, 3232, 661, '703-471-8400', '703-471-5292 Fax', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '8:00 am - 6:00 pm ', ' From 66 - Take Exit #53 for Rt. 28N. Get on 50E at intersection Rt. 50/28. Left lane, make Left on Centerville Road. Go 1/4 mil. Turn into Dulles Business Park on left. Make left on Skyhawk Drive, right on Thunderbolt Place. ECS end 1st building on right . Go around back to loading dock. '), (662, 3233, 662, '412-475-1773 Jack Yo', '724-265-3326 Fax', 'West 5th Avenue', 'GPS: 616 West 5th Avenue', 'McKeesport', 'PA', '15132', '7:00 am - 3:30 pm ', 'I-579 (SE), turn off ramp (I-376E/Oakland/Monroeville), continue on Blvd. of the Allies, on SR-885 (Blvd. of Allies), bear right onto Glenwood Bridge, merge SR-885 (Mifflin Road), continue South onto Buttermilk Hollow Road turn onto Pittsburgh/McKeesport Blvd., bear left onto Yellow Beltway (Richland Avenue), bear left onto Dravosburg Bridge (WD Mansfield Memorial Bridge), turn left onto Yellow Beltway (W. 5th Avenue) '), (663, 3234, 663, '412-287-9104 Cell Pa', '412-807-2006 Fax / 4', '735 Noble Drive ', '', 'West Mifflin', 'PA', '15122', '', ' I-579 (I-376E/Oakland/Monroeville), continue on the Blvd. of the Allies, bear right onto Glenwood Bridge, merge onto SR-885 (Mifflin Road), turn left onto Noble Road '), (664, 3235, 664, '304-238-1166 / 304-2', '304-558-0253 Fax ', 'Rt. 3 Box 68', '', 'Triadelphia', 'WV', '26059', '', ' From PA the second Exit when you enter West Virginia, Elmgrove Exit, right off Rt. 40 ***NOTE: S/N 61007-0806122 not wired w/Ground, 2 wire power only***'), (665, 3236, 665, '412-751-4001', '412-751-4003 Fax ', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '8:00 am - 4:30 pm ', ' I-76 South (PA Turnpike), bear right onto US-22 Bus (William Penn Hwy), left onto SR-48 (Moss Side Blvd.), left onto Ripple Road, bear right onto Center Street, left onto Walnut Street, cross bridge, left onto Smithfield Street, left onto Wide Drive '), (666, 3237, 666, '724-535-4397', '724-535-1137 Fax ', '2313 State Route 18', '', 'Wampum', 'PA', '16157', '7:00 - 4:00', ' US-422, SR-168 Exit, bear right onto ramp, merge onto SR-168 (West Pittsburgh Road), bear left onto SR-18 (RTE-18-S) Formerly R.I. Lampus '), (667, 3238, 667, '(724)658-5656', '(724)658-5659', '1409 Moravia Street', '', 'New Castle', 'PA', '16101', '7:00 am - 4:30 pm', ' '), (668, 3239, 668, '859-309-6021 x 215', '888-792-3121 Fax', '10937 Suite E, Reed Hartman Hwy', '', 'Cincinnati', 'OH', '45242', '', ' '), (669, 3240, 669, '937-275-8700 x 190 M', '937-275-9566 Fax / x', '4900 Webster Street', '', 'Dayton', 'OH', '45414', 'M-F 8:00 am - 5:00 pm ', '75S, #58 Needmore take left, 2 lights right on Webster Main Screen: Tensile 42 Password: moejoe Reposition crosshead to cal'), (670, 3241, 670, '330-542-2585', '330-542-2586 Fax ', '4354 South Range Road ', '', 'New Middletown', 'OH', '44442', '7:00am-5:00pm/7:00am-3:30pm Job ', ' At US-422, US-224 Exit, bear right onto US-224, left onto Churchill Road, right onto Columbiana Road (New Castle Columbiana Road), continue on CR-62 (Columbiana New Castle Road), right onto TWP-26 (S. Range Road) '), (671, 3242, 671, '800-947-2837 x 233 o', '330-823-5502 Fax ', '1400 South Mahoning Avenue', '', 'Alliance', 'OH', '44601', '7:00 am - 2:00 pm ', ' I-80, Exit 226, continue South-West on SR-11, at SR-11 US-224 Exit, turn off ramp, turn right onto US-224 (E. Main Street), turn left onto US-62 (Broad Street), at US-62 US-62 Byp Exit, bear right onto ramp, US-62 (SR-45), turn right onto South Mahoning Avenue '), (672, 3243, 672, '(814) 224-2121 x 42', '814-766-0222 Fax / ', 'Prestress Plant', '8180 Woddbury Pike', 'Roaring Spring', 'PA', '16673', 'Annette - Prestress Secretary', ' \"***1 YEAR SCHEDULE*** Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. Send certs to: 8180 Woodbury, Roaring Spring, PA 16673 Attn: Anthony Gale PUT MONTH, DAY & YEAR ON STICKERS ***GET P.O. NUMBER ON SITE*** '), (673, 3244, 673, '570-659-5888', '570-433-4408 Fax', '1500 North Williamson Road', '', 'Covington', 'PA', '16917', '', ' I-80 East to 220 North, on 15 North, 15 (Business) , the site is on your left, across the road from Fat Albert Jr\'s, just after you pass Ricelli\'s Trucking on the right '), (674, 3245, 674, '607-587-4616 Nicole', '607-587-4654 Fax', 'Civil Engin. Tech Dept., SUNY Coll. of Tech', 'Rm. 336, Engineering Building', 'Alfred', 'NY', '14802', '8:00 am - 4:00 pm ', 'Enter Alfred State College (SUNY) NOT ALFRED UNIVERSITY Follow loop road until you see Engineering Bldg (on upper loop) Enter Door near \"Engineering Technology\" Sign. Proceed up one flight of stairs to room 441D where you will meet department secretary who will take you to the lab on the 3rd floor. '), (675, 3246, 675, '410-779-2259', '410-779-2005 Fax', '2400 Boston Street, Suite 200', '', 'Baltimore', 'MD', '21224', '8:00 am - 5:00 pm ', 'From I-70, take 695 to I-95 North, to Exit 57 (Boston Street). Take Boston St. West for approx. 2 miles. On right look for (American Can Company and Austin Grill) Just left of Austin Grill in same bldg. Take elevator to 2nd floor. '), (676, 3247, 676, '814-574-5098 Frank ', '(814) 238-0131 Fax', '3069 SR-29 North', '', 'Noxen', 'PA', '18636', '', ' I-476, US-6 Exit, bear right onto US-11 (Northern Blvd.), bear left onto US-6, turn left onto SR-29 (SR-309) '), (677, 3248, 677, '304-989-2263 Shannon', '304-766-8105 Fax ', '106 Snooks Lane ', '(Ahern a Division of Kokosing)', 'Martinsburg', 'WV', '25405', '', ' I-81 South to Roanoke, take Exit 12 (WV-45) (Winchester Avenue / Charleston) turn left onto 45 East, first right onto US-11 South, turn left onto CR-19, to Paynesford Road, make right onto Airport Road (CR-19/1), turn left then turn right, the site is on the left-hand side '), (678, 3249, 678, '717-843-0081', '717-846-4193 Fax', '1742 Sixth Avenue', '', 'York', 'PA', '17403-2675', '', ' 9/10 S/N 08094240 shipped a keyboard, UPS Ground, No Insure on 9/30/2010'), (679, 3250, 679, '', '', '', '', '', '', '', '', ' '), (680, 3251, 680, '734-947-4000 x 1126', '734-947-4004 Fax ', '12801 Universal Drive ', '', 'Taylor', 'MI', '48180', '8:00 am - 4:30 pm ', ' '), (681, 3252, 681, '847-980-5464 Mike Ce', '847-429-9903 Fax', '925 Tollgate Road ', 'Chicago Headquarters', 'Elgin', 'IL', '60123', '', ' Send original cert in box with machine Ship Ground, insure $1,000.00 Use their own spreadsheet and graph for certs. '), (682, 3253, 682, '814-224-2121 x 4212 ', '814-766-0222 Fax', 'Prestress Plant', 'Route 36 North', 'Roaring Spring', 'PA', '16673', '8:00 am - 4:30 pm ', ' ***Per Tom all equipment shipped back UPS Ground, Insure $700.00 unless notified otherwise*** Tax Exempt # 11-3730293 '), (683, 3254, 683, '504-682-4138 Randy', '504-682-5296 Fax ', '900 St. Bernard Parkway', '', 'Braithwaite', 'LA', '70040', '', ' 10/10 New client, S/N 0504014/1 loses signal, antennea broke, repaired circuit board & antennea connection, shipped UPS Ground, No insure on 10/13/2010, No Calibration'), (684, 3255, 684, '804-261-3700', '804-261-0418 Fax ', '5400 Byrdhill Road ', '', 'Richmond ', 'VA', '23228-5807', '', ' '), (685, 3256, 685, '443-286-8338 Eric\'s ', '410-515-4895 Fax', '3445-A Box Hill Corporate Center', '', 'Abingdon ', 'MD', '21009', '', ' '), (686, 3257, 686, '724-753-2657 / 724-6', '724-496-4380 Cell', '445 Daubenspeck Road', '', 'Parker', 'PA', '16049', '', ' '), (687, 3258, 687, '760-536-0227 x 19 Je', '760-536-0233 Fax', '2453 Cades Way, Suite C', '', 'Vista', 'CA', '92081', '6:30 am - 3:30 pm ', ' '), (688, 3259, 688, '925-798-8900', '925-798-8905 Fax ', '1400 Willow Pass Court', '', 'Concord', 'CA', '94520', '8:30 am - 5:00 pm ', ' '), (689, 3260, 689, '410-796-5000 / 410-9', '410-850-4111 Fax', '6955 San Tomas Road', '', 'Elkridge', 'MD', '21075', '', ' Send original cert in box with machine Use their own spreadsheet and graph for certs.'), (690, 3261, 690, '410-796-5000 / 410-9', '410-850-4111 Fax ', '6955 San Tomas Road ', ' ', 'Elkridge', 'MD', '21075', '', ' Send original cert in box with machine Use their own spreadsheet and graph for certs.'), (691, 3262, 691, '907-451-0200 ', '907-451-8480 Fax', '210 e. Nam Heron RD', '', 'FBKS', 'AK', '99701', '', ' '), (692, 3263, 692, '208-428-2155 x 5152 ', '208-438-8288 Fax', '50 Sough 500 West', '', 'Paul', 'ID', '83347', '', ' '), (693, 3264, 693, '915-525-5029', '915-779-8301 Fax ', '7650 Rickenbacker Parkway West', '', 'Columbus', 'OH', '43217', '', ' I-70, Exit 105A (US-33/Lancaster), bear right onto US-33 (College Avenue), continue South East (OH-317/Hamilton/Groveport), merge onto SR-317 (Hamilton Road) (South), turn left onto Saltzgaber Road, continue South on Pontius Road, turn right onto CR-2 (Hayes Road), ***Gate Access Required***, continue West on N. Permiter Road '), (694, 3265, 694, '317-875-7000/317-875', '317-876-3705 Fax / x', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '7:00 am - 5:00 pm ', ' ***ISO Requested*** ***continued*** Exit 27, Mich. Road, North less than 1 mile car dealer, turn left on 99th street, 1st brick on left before stop sign '), (695, 3266, 695, '(513) 777-9890/513-9', '513-777-9070 Fax/317', '6205 Schumacher Park Drive', '', 'West Chester', 'OH', '45069', '', ' ***continued*** From Cincinnati, Ohio, I-75 West, Exit 19, turn left off ramp onto Union Centre Blvd., left onto Mulhauser, left onto Allen Road, right onto Schumacher Park Drive '), (696, 3267, 696, '740-414-4315 Katie T', ' (Phone)724-584-3564', '702 South First Street', '', 'Ironton', 'OH', '45638', '', ' '), (697, 3268, 697, '317-727-2656 Mike Ro', '317-477-0549 Fax', '3311 Imperial Parkway', '', 'Lafayette', 'IN', '47909', '7:30 am - 5:00 pm ', 'I-65 (North), Exit 168, merge onto SR-38 (Walnut Street), turn left onto Creasy Lane, bear right onto Brady Lane (E 250 S), turn left onto Imperial Parkway '), (698, 3269, 698, '734-941-3008', '724-941-1666 Fax', '37500 Northline Road ', '', 'Romulus', 'MI', '48174', '7:00 am - 5:00 pm ', ' I-94 to Exit 192 (Haggerty Road) (South), take immediate left on I-94 Service Drive, follow thru stop sign, then traffic light, then plant will be on the right, look for concrete fence enclosed facility, dispatch left side of building '), (699, 3270, 699, '313-933-5050', '313-933-1965 Fax ', '8951 Schaefer Highway', '', 'Detroit', 'MI', '48228', '', ' I-94, Exit 210A (US-12/Michigan Avenue/Wyoming Avenue), bear right onto US-12 (Michigan Avenue), turn left onto Wyoming Avenue, turn left onto SR-153 (Ford Road), turn right onto Oakman Blvd., turn left onto Belton Street, turn right onto Schaefer Highway '), (700, 3271, 700, '724-379-6800 Plant', '724-258-4202 Fax ', '60 Washington Street', '', 'Donora', 'PA', '15033', '7:30 am - 4:30 pm ( NOT MONDAYS )', ' Donara, PA First Street, cross tracks, thru intersection to curve, green building on right '), (701, 3272, 701, '412-771-4001 ', '412-771-6824 Fax / 4', '3507 Neville Road', '', 'Pittsburgh', 'PA', '15225', '', ' Exit 65 (Neville Island) right onto Grand Avenue, right onto Neville Road, on the left red brick building, says Research on front, go to the back Need PO number if over $1000.00 (Verbal if under) See letter in files.'), (702, 3273, 702, '412-389-6892 Mark/ R', '412-807-2006 Fax', '810 River Avenue', 'Job # 10591', 'Pittsburgh', 'PA', '15237', '', ' I-80, I-79 Exit, merge onto I-79 South, continue South onto I-279 (I-279/Pittsburgh), at I-279, Exit 88 (East Street/PA-28 N), continue South on East Street, turn left onto E. Ohio Street, bear right onto ramp (PA-28/Etna), merge onto SR-28, turn right onto 31st Street Bridge, turn right onto River Avenue Under Veterans Bridge '), (703, 3274, 703, '724-867-0495/724-867', '(724) 867-0676 Fax, ', '3778 Oneida Valley Road', '', 'Emlenton', 'PA', '16373', '6am - 3pm Office / 6am - 7pm Lab', 'Requires 2 people Needs 2 long extension cords to do Wainbee, no 110V power close to machine Facility in White Pigion, MI, Grant Myers 269-483-2222 4/09 S/N 100295 repaired & returned gauge to Open Joist, did not '), (704, 3275, 704, '412-287-7894 Mark Ce', '412-807-2006 Fax ', '2301 Duss Avenue', '', 'Ambridge', 'PA', '15003', '', ' I-80, I-79 Exit, merge I-79 (South), at I-79, Exit 78 (PA-228/US-19/ Mars/Cranberry), merge onto SR-228 (Rt-228) (West), continue on Freedom Road, continue on Freedom Crider Road, turn left onto SR-989 to Duss Road- Call will take to Lab '), (705, 3276, 705, '619-336-0342', '619-336-0343 Fax ', '1505A Hoover Avenue', '', 'National City ', 'CA', '91950', '', ' '), (706, 3277, 706, '440-992-2997', '440-992-1311 Fax ', '2648 West Prospect Road ', '', 'Ashtabula ', 'OH ', '44004', '', ' I-80, Exit 228, merge onto SR-11 (North), at SR-11, US-20 Exit, turn off ramp, turn left onto US-20 (E. Prospect Road), to West Prospect Road '), (707, 3278, 707, '260-413-0581', 'Eric Sperber 513-967', '516 N. Anderson Street', '', 'Elwood', 'IN', '46036', '', ' '), (708, 3279, 708, '937-604-3083 Sheila\'', ' ', 'Dayton International Airport', '3600 Terminal Drive', 'Vandalia', 'OH', '45377', '', '***** When you get to Newberry call Josh or Jesse at the above #\'s** '), (709, 3280, 709, '724-899-2085', '724-899-2086 Fax ', '1178 Route 30 ', '', 'Imperial', 'PA', '15126', '', ' 376 East towards Pittsburgh (Old Rt. 60 South), get off Exit 52, Clinton (last exit before Pittsburgh Airport), turn right off exit ramp on Clinton Road, follow to Rt. 30, at traffic light, turn left onto Rt. 30 East, go 1 mile to 1178 Route 30 - trucking garage on left '), (710, 3281, 710, '304-709-8512 Joe ', '304-472-9588 Fax', 'Route 33 W. Red Rock Road', '', 'Buckhannon', 'WV', '26201', '7:30am-3:30pm/8:00am-4:00pm Job', 'This site is 1 mile down the road from their other site - on left 33 West, Light Thru, 2nd RD Red Rock, Turn Right 100 YDS Old 33 Turn Left Joe will get platen out for you. Fornerly J.F. Allen Company '), (711, 3282, 711, '410-358-7171x6106/44', '410-358-7213 Fax', 'Patapsco Waste Water Treatment Plant ', 'Northbridge Ave. & Leo Street', 'Baltimore', 'MD', '21226', '', 'From Timonium, MD go West on W. Timonium Road, merge onto I-83. S toward Baltimore, merge onto I-695 E (via the exit on the left toward Towson/New York), merge onto I-95 S (via Exit 33A, toward Baltimore/Washington), keep right to take I-895 S / Harbor Tunnel Trwy toward Annapolis, take the Frankfurst Avenue Exit (Exit 8A), toward Shell Road, turn slight right onto Frankfurst Avenue, Frankfurst becomes Shell Rd., turn left onto E. Patapso Ave., turn right onto Fairfield Rd., Fairfield Rd. becomes Northbridge Ave.,'), (712, 3283, 712, '814-470-6979 Tim', '814-238-1360 Fax -Mi', '20 Ridge Road', ' ', 'Milton ', 'PA', '', '', ' I-80 East, Exit 133, merge onto SR-53, turn onto Maple Street, go 3/4 of a mile, turn left (Office Building, Stone Face, 1 Story) you will see a construction bulletin board, machine located there '), (713, 3284, 713, '703-478-0055', '703-478-0137 Fax/70', '43760 Trade Center Place, Suite 110', '', 'Sterling', 'VA', '20166', '', ' \"***continued*** 66 Duelas Rt 28 North 10 miles to old ox Rd Rt 606 take left through Trade Center across from housing development next to last on left Latitude 39.006*N, Longitude 77.429*W, Elevation 300 Feet Dead Weight Correction Value 0.9993'), (714, 3285, 714, '703-367-9456', '703-335-6100 Fax', '8303 Quarry Road ', '', 'Manassas', 'VA', '20110', '', ' I-495 (I-495 Outerloop), turn off ramp (I-66/Manassas/Front Royal), merge I-66 (Custis Memorial Pky), at I-66, Exit 53 (VA-28/ Centreville), merge onto SR-28 (Sully Road), turn left onto Liberia Avenue, turn left onto Quarry Road '), (715, 3286, 715, '216-433-5465 Dave ', '216-433-8300 Fax / 2', '21000 Brookpark Rd.', 'Send Cert copy Here-Dave Krause', 'Cleveland', 'OH', '44135', '', 'Take I-80 W to I-71 N. Get off at exit 238? onto 480W. Take Exit 10 off rt 480 W to rt 17 Brookpark Road, follow past airport. You will see NASA Bldg on right, go past and you will see another entrance on the left of NASA, make a left and go to guard gate for check in Meet with Mike McGaw at Guard gate Need 2 sets of CERTS, one to McGaw one to NASA Attn: Dave Krause, Mail Stop 51-1'), (716, 3287, 716, '216-433-5465 Dave ', '216-433-8300 Fax / 2', '21000 Brookpark Rd.', 'Send Cert copy Here-Dave Krause', 'Cleveland', 'OH', '44135', '', 'Take I-80 W to I-71 N. Get off at exit 238? onto 480W. Take Exit 10 off rt 480 W to rt 17 Brookpark Road, follow past airport. You will see NASA Bldg on right, go past and you will see another entrance on the left of NASA, make a left and go to guard gate for check in Meet with Mike McGaw at Guard gate Need 2 sets of CERTS, one to McGaw one to NASA Attn: Dave Krause, Mail Stop 51-1'), (717, 3288, 717, '216-839-7120 Paul ', '216-839-8801 Fax / 2', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '', ' I-271 (Either Direction), head West on Chagrin Blvd. (422), our building is almost 0.7 Miles on the left side of the street the driveway is immediatley before the \"BASF\" sign. The center lane is a turning lane, ask for Paul Pridemore at the front desk. Dan Zojtko Cell 330-646-5834'), (718, 3289, 718, '216-400-6230', '216-400-6238 Fax', '2271 Scranton Road ', '', 'Cleveland', 'OH', '44113', '', ' I-77 (North), at I-77, Exit 162B (I-90/I-71/Toledo/Erie PA/E 9th Street), merge onto I-90 (West), at I-90, Exit 171 (W 14th Street/Abbey Ave.), turn right onto Fairfield Avenue, to Scranton Road '), (719, 3290, 719, '724-431-0626 x 114', '724-431-0630 Fax', '629 E. Butler Road ', '', 'Butler', 'PA', '16002', '8:00am-5:00pm/7:00am-6:00pmJob', ' SR-38 to SR-268, turn right onto Fairmont Road (Spur 214), continue South on SR-68 (Chicora Road), bear left onto Bonniebrook Road, turn right onto E. Butler Road '), (720, 3291, 720, '614-419-5005Steve Ca', '614-895-1171 Fax', '1855 Bellbrook Ave', '', 'Xenia', 'OH', '45385', '', ' '), (721, 3292, 721, '(814) 238-2471/ 814-', '814-238-2914 Fax', '2280 East College Avenue', '', 'State College', 'PA', '16801', '8:00am-5:00pm/7:00am-4:00pm Job ', ' US-322, bear right onto ramp, merge onto SR-26 (E. College Avenue) (SW), turn off ramp merge onto SR-26 (E. College Avenue) (NE) '), (722, 3293, 722, '740-833-8333', '740-833-8097 Fax', '400 E. William Street', '', 'Delaware', 'OH', '43015', '', ' '), (723, 3294, 723, '513-777-9890 Eric ', '513-777-9070 Fax ', '2415 Scioto Harper Drive ', '', 'Columbus', 'OH', '43204', '', ' I-670 (West), turn off ramp (US-33/Goodale Street/Neil Avenue), bear left onto W. Goodale Street, turn left onto Neil Avenue, turn right onto Goodale Neil Connector, bear left onto W. Goodale Street, turn left onto Twin Rivers Road, turn right onto US-33 (Dublin Road), turn left onto Grandview Avenue, turn left onto McKinley Avenue, bear left onto Harper Road, bear right onto Scioto Harper Road '), (724, 3295, 724, '307-272-4561/ 307-25', '713-513-4161 Fax', '238 Road, 3EM', '', 'Cody', 'WY', '82414', '', ' 13 miles south of Cody on Highway 120, make left onto Road, 3EM, go about 2 miles and make a right into our main office complex '), (725, 3296, 725, '505-353-3053', '505-345-8303 Rebecca', '4411 The 25 Way NE, Ste 350', '', 'Albuquerque', 'NM', '87109', '8:00 am - 4:00 pm ', ' '), (726, 3297, 726, '724-323-5095 Pete', '724-335-3834 Fax', '200 Hunt Valley Road', '', 'New Kensington ', 'PA', '15068', '7:00 am -3:00 pm mon-Sat', ' '), (727, 3298, 727, '412-622-6943/412-*47', '412-622-6944 Fax Joh', '', '4501 Center Ave', 'Pittsburgh', 'PA', '15213-1501', '', ' '), (728, 3299, 728, '330-534-5017', '330-534-0197 Fax', '7845 Chestnut Ridge Road ', '', 'Hubbard', 'OH', '44425-9702', '', ' '), (729, 3300, 729, '724-833-8333', '', '400 E. William Street', '', 'Delaware', 'OH', '43015', '', ' '), (730, 3301, 730, '440-245-6826 Ext. 21', '440-244-0414 Fax', '1305 Oberlin Ave', '', 'Lorain', 'OH', '44052', '700AM-5:00pm', ' '), (731, 3302, 731, '412-292-0714 Joe Oe', '724-443-8733 Fax', '2240 McClelland Road', '', 'Masontown', 'PA', '15461', '', ' '), (732, 3303, 732, '269-381-1550 Brain C', '269-381-7117Fax', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '8:00-4:00 Office 7:00-3:30 Lab', '***Customer needs 5 points on Intial Gauges***Certs to Job Site*** ***6 Month Schedule (April & October)*** ***ISO Requested*** ***continued*** ***MUST CALL FOR PO BEFORE COMING TO FACILITY*** For PO# must call Tammy - 269-381-1550 - Fax 313-873-4733 Cell 269-720-4822 I-94 W to Sprinkle Road (Exit #80) Go north to 1st light. ( by Dennys). Turn left onto East Cork. Go 1/2 mile.'), (733, 3304, 733, '616-464-1800 / Dave ', '616-464-1189 Fax', 'Special Crew Buildings', '1240 Front Ave NW', 'Grand Rapids', 'MI', '49504', '7:00am-4:00pm/7:00am-3:30pm Job', 'Take Leonard St. off of US 131, go East 2 blocks, then North 2 blocks to office. CS-100-2 taken off of machine and put on S/N 01079 in Grand'), (734, 3305, 734, '(419) 424-8377', ' ', '433 Olive Street', '', 'Findlay', 'OH', '45840', '', ' ***Schedule for April/Sept.*** Rt. 12 W to I-75S to Sugarbeet Carey, Exit 156 follow to Kenton Road, Exit Rt. 685, turn left and follow Main Street (Rt. 68N) to Olive on right (Before Strip Mall) Take jack/Need operator to help - Get Master Card # on Site Password: Instron & Admet BR11 LAB'), (735, 3306, 735, '616-464-1800/616-464', '616-464-1189 Fax / 2', '2660 Leonard Street NE', '', 'Grand Rapids', 'MI', '49505', '7:00am-4:00pm/7:00am-3:30pm Job', 'Take Leonard St. off of US 131, go East 2 blocks, then North 2 blocks to office. '), (736, 3307, 736, '586-294-6430', '586-294-6912 Fax', '14670 23 Mile Road', '', 'Shelby Township', 'MI', '48315', '8:00-5:00 Office 8:00-4:30 Site', 'Rt. 53 North to 23 Mile Road East Exit. Turn right Go approx 1/5 miles on right. Go 1/4 mile straight. Back to trailers by concrete building. Turn on Mega Precast Rd Will require assistance to start engines on 2 of the Simms jacks 7/2013 Put on COD terms after 89 days past due payment New ownership - bought out Shelby'), (737, 3308, 737, '(231) 798-4127 Chip', '(231) 798-1383 Fax', '6480 Grand Haven Road', '', 'Muskegon', 'MI', '49441', '8am - 5pm (can adjust hours - just call)', 'I-96 West toward Muskegon. South on Rt. 31. Watch for Pontaluna Road Exit. Off exit, make right. Go to light (Grandhave Road). Make right. Short way on right hand side. Look for sign. To sensitive to adjust - cert to 500,000# '), (738, 3309, 738, '231-943-5503', '231-943-5534 Fax', '2302 South M-18', '', 'Beaverton', 'MI', '48612', '', ' I-75, Exit 162B, bear right onto US-10 (SR-25), at US-10 SR-18 Exit, bear right, merge onto SR-18 (M-18) '), (739, 3310, 739, '(616) 456-5469', '(616) 456-5784 Fax', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '8:00 am- 5:00 pm Flexible', ' '), (740, 3311, 740, '269-381-1550 Tom x 2', '269-381-4116 Fax Ste', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '8:00 am - 5:00 pm', ' ***ISO Requested*** ***continued*** I-94 W to Sprinkle Road (Exit #80) Go north to 1st light. ( by Dennys). Turn left onto East Cork. Go 1/2 mile. Large concrete sign on left and huge crane in yard. Machine is in building by crane. ***Stress Con should be company name on certificates*** '), (741, 3312, 741, '540-439-3266 x 152 A', '540-439-1232 Fax', '5119 Catlett Road', '', 'Midland', 'VA', '22728', '', ' '), (742, 3313, 742, '614-325-3401 Allen\'s', '276-531-8033 Batch P', '125 Harmin Road', '', 'Breaks ', 'VA', '24607', '8 am - 5 pm', ' HWY 80 Harmin Road '), (743, 3314, 743, '440-248-0100 x 3760 ', '440-848-8521 Fax', '34600 Solon Road', '', 'Solon', 'OH', '44139', '7:00 am to 3:00 pm', ' '), (744, 3315, 744, '724-323-5514 Slip', '724-828-2828 Fax', '100 Airport Blvd.', 'Job Site - Pittsburgh Airport', 'Coraopolis ', 'PA', '15108', '7:00-5:00 Mon-Thurs.', ' 60 North, Clinton Exit, make right up hill, plant on right on service road, then right at gate, go behind Aggregate pile, look for trailer with orange door '), (745, 3316, 745, '814-322-1545, 814-4', '814-322-1549 Fax', '5940 Kennedy Ave', '', 'Export', 'PA', '15632', '7:00 am - 5:30 pm', ' '), (746, 3317, 746, '724-263-0110', '724-250-7450 Fax', '503 Pine Run Road', '', 'Appollo', 'PA', '15613', '8:00am-5:00pm/7:00am-3:30pm Job ', ' I-79, Exit 60B (PA-60/Airport/Moon Road), merge onto SR-60 (Steubenville Pike), (West), continue on Steubenville Pike, continue on US-30 (US-22), bear right on ramp (Montour Church Road/ Old Steubenville Pike), bear left onto Montour Church Road 4/12 79 South Waynesburg Exit, west on 21 4/12 Machine moved to RT 18 & RT 21, Waynesburg, PA '), (747, 3318, 747, '724-372-3911 Jerry ,', '724-748-3599 Fax', '398 S. Church Street', '', 'Waynesburg', 'PA', '15370', '8:00 am - 4:00 pm ', ' Job site at Intersection of South Church & West First Street '), (748, 3319, 748, '770-331-1323 Tony\'s ', '', '6889 Peachtree Industrial Blvd', 'Suite Q', 'Norcross', 'GA', '30092', '', ' '), (749, 3320, 749, '330-297-1225 x 104 C', '330-297-1373 Fax', '5159 S Prospect', '', 'Ravenna', 'OH', '44266', '', 'Blue & White Building off of 76 West- Exit 38 Route44. Red light right 1.5 North. on Left hand side '), (750, 3321, 750, '937-238-2762 Kevin C', '(937) 492-8434 Fax', '1504 N. Gettysburg Avenue', '', 'Dayton', 'OH', '45417-9518', '', '1-75 North into Ohio, Exit 52B, take US 35 toward Eaton, Exit onto James H. McGee Blvd., turn to the right onto James H. McGee follow this until you reach Gettysburg (about 3 miles), turn left onto Gettysburg, plant entrance is located 0.01 mile down on left, just past Chamberlain\'s Fruit Stand. Tax Id: #62-0463919 Formerly Sherman Dixie Concrete Industries, Inc. '), (751, 3322, 751, '937-492-4134', '937-498-1883 Fax ', '815 Oak Avenue', '', 'Sidney', 'OH', '45365', '', ' I-75 South, Exit 93, merge onto SR-29 (Saint Marys Avenue) (SE) turn right onto Grant Street to North Oak Avenue '), (752, 3323, 752, '614-989-2284 Scott', '', '601 N. Sugar St.', '', 'Lima ', 'OH', '45801', '8:00-5:00 (O) 6:00-8:00 (S)', ' '), (753, 3324, 753, '937-299-1214', '937-299-0120 Fax', '3434 Encrete Lane', '', 'Moraine', 'OH', '45439', '', ' Exit 50 B off the I-75 South. Turn left onto Springboro Pike, #NAME? right, located on the left side of the street '), (754, 3325, 754, '614-823-3774', '614-865-3589 Fax', '3717 Corporate Drive', '', 'Columbus', 'OH', '43231', '8:00 am - 5:00 am', '270 north to state route 3 exit (Westerville). Turn left.Go approx. 1 mile after you go under the over pass. Turn left at the 161 east on ramp Instead of going on 161 east, stay stragiht (right) into the corporate park. Stay straight until right before the culdesac turn right- bulding at 2nd to end on right side 3717 Corporate Dirve (left but go straight -See Tom) Elevation : 800 Feet, Lat: 39.961*N, Long: 82.999*W Dead Weight Correction Value : 0.9993'), (755, 3326, 755, '717-245-9100', '717-245-9656 Fax', '801 Belvedere Street', '', 'Carlisle', 'PA', '17013', ' 8 - 5', ' Computer Password 123Mm<<>> (hold down shift button) I-81, Exit 45, right to College Street, right onto Walnut Bottom Road, arrive at 801 Belvedere Street, site on right Formerly Comberland Geoscience Consultants'), (756, 3327, 756, '419-999-6907', '419-222-6877 Fax', '1717 North McCullough St.', '', 'Lima', 'OH', '45801', '', ' Garage in Front machine in the building directly behind '), (757, 3328, 757, '540-667-3750/540-974', '540-667-3730 Fax / x', '166 Windy Hill Lane', '', 'Winchester', 'VA', '22602', '8:00 am - 5:00 pm ', ' I-70 South, Exit 1B, South US-522 Seals are from ELE Part No: 4699-1316 for S/N 1790-4-1044 '), (758, 3329, 758, '405-388-1479 Kurtis', '', 'PO Box 589', '', 'Lindsay', 'OK', '73052', '', ' '), (759, 3330, 759, '410-788-4331', '410-788-4331Fax Also', '412 Montemar Avenue', '', 'Catonsville', 'MD', '21228', '', ' '), (760, 3331, 760, '412-287-5559 Cell Jo', '304-744-7425 Fax ', 'East Conemaugh Township', 'Near Chestnut Street', 'Johnstown', 'PA', '15901', '', ' US-422 (Benjamin Franklin Highway), at US-422 SR-954 Exit, continue East, merge onto SR-954 (South), turn left onto SR-56 (RTE-56 Hwy E), turn right (South), onto SR-403 (Broad Street), bear left onto Roosevelt Blvd., to Chesnut Street 5/09 S/N 68254 extra machine not getting done, S/N BSR-019'), (761, 3332, 761, '269-381-1550 Tom -15', '269-381-4116 Fax Ste', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '7:00-5:00 Office 7:00-3:30 Lab', ' ***ISO Requested*** ***Continued*** I-94 W to Sprinkle Road (Exit #80) Go north to 1st light. ( by Dennys). Turn left onto East Cork. Go 1/2 mile. Large concrete sign on left and huge crane in yard. Machine is in building by crane. ***Stress Con should be company name on certificates*** '), (762, 3333, 762, '412-931-0203 ', '412-292-9630 Dave Re', '1004 ardmore Blvd', '', 'Pittsburgh', 'PA', '15221', '', ' I-80 I-79 Exit, merge I-79 South, continue South on I-279 (I-279/ Pittsburgh), at I-279, Exit 12 (US-19/Perrysville Avenue), turn left onto Cementary Lane, right onto Babcock Blvd. '), (763, 3334, 763, '814-937-7868 Mark ', '814-766-0234 Fax Mar', 'Attn: Mark Moyer', '1274 Nesl Drive', 'Roaring Spring ', 'PA', '16673', '7:00 am - 4:00 pm ---No Fridays', ' '), (764, 3335, 764, '724-556-9039', '724-658-5659 Fax', '305 Steel Street', '', 'Aliquippa', 'PA', '15001', '7:00 am - 4:30 pm', 'Turn left onto PA 68 take the 1st right onto Brighton Ave. take the PA-51/PA-65. Take the PA-51 ramp tuen right onto PA-51 Monaca- East Rochester Bridge. Turn left onto Cochran St/Kiehl St. turn onto Franklin Ave turn right onto Woodlawn Rd. Take your first left onto Steel St. 305 Steel St. on Right. '), (765, 3336, 765, '(301) 724-2000', '1-800-842-2807', '61 National Hwy', '', 'Cumberland', 'MD', '21502', '7:00 am - 4:00 pm', 'Take Exit #39 off of I-68W. Turn right at end of ramp onto Old Alt. Rt. 40. (national highway. Go 2-3 miles. Look for OR 68 East to Vocke Road Exit - make left - Go to 2nd light. Make right. Go about 3-4 miles. Site on left. Motor gets hot'), (766, 3337, 766, '571-436-0438-Farouk ', '703-488-3701 Fax', '14424 Albemarle Point Place, Suite 115', '', 'Chantilly', 'VA', '20151', '8 am to 5 pm ', '***See if Billing is right or would go to AMEC in Alpharetta, GA*** Take I-66 West to Route 28 North. From Route28, take a left onto Williard Road. Take your first right onto Lee Road. Take a right onto Albemarle Point Place. Go Straight to third office building on the left. '), (767, 3338, 767, '724-535-4374', '724-535-8166 FAX', '915 Clyde St. ', '', 'Wampum', 'PA', '16157', '', ' 60 thru toll booth. First Exit 551-218 turn right to light, make left (north) (18), go 2 lights to blinking, turn right on clyde cross RR tracks, 2nd drive on left. '), (768, 3339, 768, '540-854-2145', '540-854-2146 Fax', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '', ' **All invoices must go to aerojet.east.ap@aerojet.com* '), (769, 3340, 769, '540-854-2145', '540-854-2146 Fax', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '', ' **All invoices must go to aerojet.east.ap@aerojet.com* '), (770, 3341, 770, 'Mike Hagen 301-252-0', '301-948-8273 Fax ', '2323 West Joppa Rd', '', 'Lutherville', 'MD', '21093', '', ' I-80 to PA-970 S/Shawville Hwy, turn left onto US 322, take ramp onto I-99N continue on US-322, Merge onto US 22, Continue onto N Cameron St., Turn left onto Paxton St. turn Right onto Paxton St. turn right onto S 13th St, slight right onto I-83 S toward York, take exit 23 B, merge onto Jones Falls Expy, turn right onto W Joppa Rd. '), (771, 3342, 771, '724-323-7080 Chris C', ' ', '369 Glen Eden', 'Route 989', 'Rochester ', 'PA', '15074', '7: 00 am to 3:00 pm', ' '), (772, 3343, 772, '304-725-8889 Jay (Of', ' ', '2009 Towe Station Highway', '', 'Mt. Storm', 'WV', '26739', '', ' I-70 East, Exit 37A (PA-43 -Toll / Califronia), merge onto SR-43 Toll (South), continue South SR-88 (SR-43 Toll), at SR-88, Exit A (US-40 / Brownsville), bear right onto US-40, at the red light turn left, at concrete plant, go into entrance '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (773, 3344, 773, '412-613-5834 Lisa', '412-821-2554 Fax', '128 Church Road', '', 'Pittsburgh', 'PA', '15209', '8:00 am -3:00 pm', ' '), (774, 3345, 774, '703-366-3000', '703-366-3400 Fax', '9303 Center St. ', '', 'Manassas', 'VA', '20110-5547', '8:30 AM - 5:00 PM', 'Left Sudley Rd to left Grant Ave., right onto Church St, left Center St., Wood Blvd. front of parking lot '), (775, 3346, 775, '410-504-6106 Sam Kim', '410-358-7213 Fax', '12700 Virginia Manor Road', '', 'Beltsville', 'MD', '20705', '', ' I-270 (Dwight D. Eisenhower Hwy) (SE), left onto I-495 Interloop, (I-495), at I-495 Interloop, Exit 30A (US-29/Colesville Rd/Columbia), continue North on US-29 (Colesville Road), left onto Fairland Road 10/09 S/N 65209 R08 digital quit working sent to CSI, it was then sent to Industrial Data Systems, Inc. on 10/6/2009, received '), (776, 3347, 776, '484-364-1842 Josh Ev', '610-942-2629 fax', '11023 Dennis W Kearns Parkway', '', 'King George', 'VA', '22485', '', ' '), (777, 3348, 777, '540-854-2145', '540-854-2146', '7499 Pine Stake Road', '', 'Culpeper ', 'VA', '22701', '', ' **All invoices must go to aerojet.east.ap@aerojet.com* '), (778, 3349, 778, '540-854-2145', '', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '', ' **All invoices must go to aerojet.east.ap@aerojet.com* '), (779, 3350, 779, '540-854-2145', '540-854-2145', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '', ' **All invoices must go to aerojet.east.ap@aerojet.com* '), (780, 3351, 780, '304-755-5300/Butcher', '304-755-5367 Fax', 'Lot #3 Orders Drive ', 'Scary Creek Ind. Pk.', 'Winfield', 'WV', '25213', '7:00 am - 4:00 pm ', 'From Charleston, WV take I-64 West across the Kanawha River. Take the St. Albans Exit & at traffic light turn left. Scary Creek Indl. Pk. is on the right , past the black top plant. Turn right on paved road & you will see Arrow Concrete printed on silo. (Winfield is on the far west side of Charleston) '), (781, 3352, 781, '304-485-1708', '304-485-1709 FAX', '402 Buckeye Street', '', 'Parkersburg', 'WV', '26101', '8:00am-5:00pm Off./7:00am-5:00pmJob', 'South Side of Parkersburg N77 Exit 173 Camden Avenue turn left go through 3 lights last one Broadway up grade past little white church on right go 5 houses turn right down to bottom of hill Bear right at RR tracks 300 yds on Right Formerly Quality Concrete'), (782, 3353, 782, '724-459-5950 ex. 328', '724-459-9151 Fax', 'PO Box 93', '9558 Route 22 West', 'Blairsville', 'PA', '15717', '5:00 am -3 pm', 'I 79 to 279N towards Ft Pitt Tunnels Stay in Right hand lane through tunnels, bear right onto 376E towards Monroeville. Follow until you come to 22 E. follow 22 approx 20 miles will be on left Before you get to Blairsville 422 E to Indiana - 80 E, 38S into Butler - 422E into Indiana, Get on Bypass not RUS-RT 119 S to RT 22 W, short distance on right side '), (783, 3354, 783, '410-792-9446/Kerri c', '410-792-7395 FAX', '14280 Park Center Drive', 'Suite A', 'Laurel', 'MD', '20707', '7:30-4:00', 'From Baltimore Get on I-395 S, follow signs for I-95 S/Washinton merge onto I-95 S. Take Exit 33A to merge onto MD-198 E/Sandy Spring Rd toward Laurel. Turn right onto Van Dusen Rd Left onto Laurel Park Dr. Left onto Park Center Dr. www.mragta.com'), (784, 3355, 784, '(614) 876-8000 ext 2', '(614) 876-0548 Fax', '4960 Vulcan Ave', 'Suite C', 'Columbus', 'OH', '43228', '8:00 am - 5:00 pm Mon-Fri.', '(West side of town) Rt. 270 to Exit #10, Roberts Road. Go west on Roberts. Go to second light, turn left onto Walcutt. Go approx. 1 mile, turn right onto Vulcan Ave. PSI in tan metal building on right. 70 West Exit 19. Hillard Rome 15th Exit. North Stay Right,Make Right Rabue. Pass Walmart and Truck lot Center Lane Make Left Atlas Make Right Vulcan St on Left '), (785, 3356, 785, '814-348-5659', '', '2901 East Lake Road', '', 'Erie', 'PA', '16531', '', ' '), (786, 3357, 786, '570-326-9031', '814-574-5556 Tim Qui', '3485 West 4th Street', '', 'Williamsport', 'PA', '17701', '7 am- 5 pm', ' '), (787, 3358, 787, '845-463-6500 x 139', '845-790-0131 Fax ', '32 Griffith Way ', 'Dutchess County Airport', 'Wappingers Falls', 'NY', '12590', '', ' Password: 249 '), (788, 3359, 788, '510-562-2953', '510-562-9757 Fax ', '597 85th Avenue', '', 'Oakland', 'CA', '94621', '', ' '), (789, 3360, 789, '614-839-1255 Tom Fre', '614-895-1171 Fax S. ', ' 1855 Bellbrook Avenue', 'Suite B', 'Xenia', 'OH', '45385', '8:00 am - 5:00 pm ', ' 8/09 S/N 6638-0610162 shipped rebuilt valve from CSI, UPS Ground, Insure $1,000.00 on 8/13/2009, need their old valve for core charge '), (790, 3361, 790, '410-792-9446', '410-792-7395 FAX', '9090 Junction Drive', 'Suite 9', 'Annapolis Junction', 'MD', '20701', '', 'Off Rt 32 and Dorsey Run Road '), (791, 3362, 791, 'Steven 614-987-0216 ', '614-431-4024 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 AM to 4:30 PM', '***** continued on next page ******** Rt 71 South to Exit #117 (Rt 161) Make right - 2 lights, make right '), (792, 3363, 792, '412-782-7330 Harold ', '412-782-7308 Fax', 'One McCandless Avenue', '', 'Pittsburgh', 'PA', '15201-2631', '6:00 am - 4:00 pm/5:00am-4:00pm job', 'Rt. 28 to 40th Street Bridge, go over bridge, make left on Butler St. follow to McCandless Avenue (on left) go to end of McCandless, site on on Right. ***Configuration Password 249*** ***Set point Password 157*** '), (793, 3364, 793, '217-369-1737 Jason Y', '', '1018 South Bradford', '', 'Reese', 'MI', '48757', '', ' '), (794, 3365, 794, '740-482-2313', '740-482-2895 Fax ', '17793 Street, Highway 231', '', 'Nevada', 'OH', '44849', '', ' SR 231 South, take 231 Exit turn left, go 7 miles to stop sign, turn left onto 231, go 1/4 mile on left hand side, gray office bldg '), (795, 3366, 795, '937-898-1200 x 11 Ma', '937-898-1230 Fax', '5599 Webster Street ', '', 'Dayton', 'OH', '45404', '8 am - 5 pm', 'I-70W towards Dayton take Rt 4 Exit, South on Rt 4 to Stanley Ave exit # 41. Left off exit ramp S on Rt 4 about 1/2 mile 1st Building on Right, In back of office complex. Door is marked with Name/address East on Webster '), (796, 3367, 796, '517-887-9181', '517-887-2666 Fax', '2663 Eaton Rapids Road', '', 'Lansing', 'MI', '48911-6310', '7:00 am -5:00 pm', ' I-96 Logan St. Exit 101 (Which is Eaton Rapids Road) and (Logan Street is 99) Go 1/4 mile South. Watch on right for brown building with circle drive. Go under 96 to light at Bishop. Get in right lane. 2nd driveway on right. '), (797, 3368, 797, '814-330-2435', '814-766-0234 Fax', '712 Route 830 ', '', 'Reynoldsville', 'Pa', '15851', '6:30 am - 3:30 pm', 'Reynoldsville exit #86, go south 4/10 of a mile, In old Diamond J Truck Stop, behind buildings. '), (798, 3369, 798, '313-873-4711', '313-873-4733 Fax', '7991 Hartwick Street', '', 'Detroit', 'MI', '48211', '8:00 am - 5:00 pm', ' For PO# Must call Ken- 313-8743-4711- Fax 313-873-4733 Cell 269-720-2006 I-75 North to Clay/E Grand- go through lights to Euclid make right for 1 block '), (799, 3370, 799, '248-535-3460 Suzanne', '248-745-2990 Fax Suz', '2285 Franklin Road, Suite 140', '', 'Bloomfield Hills', 'MI', '48302', '7:30 am - 4:15 pm', ' I-75 East, merge onto I-275 North, merge onto I-696 (Walter P. Reuther Freeway) (East), turn off ramp, merge onto SR-10 (John C. Lodge Freeway) (SE), turn off ramp, bear right onto US-24 (Telegraph Road), bear right onto Franklin Road '), (800, 3371, 800, '904-545-7504 Brian D', '', '60 Haltiner Street', '', 'River Rouge', 'MI', '48218', '', 'Turn into IPS Property Sign will say IPS, go to right..Old Castle sign is on the gate. Follow Old Castle Receiving Signs '), (801, 3372, 801, '616-813-8959 Taylor', '', 'Harvest Windfarm', '176 N. Main Street', 'Elkton ', 'MI', '48731', '', ' '), (802, 3373, 802, '231-946-9191 / 231-9', '231-941-4603 Fax', '1280 Business Park Drive', '', 'Traverse City', 'MI', '49686', '8:00 am-5:00 pm', ' Take 31S- Go thru numerous lights. At light for 3 Mile Road turn left Go 1/2 mile pass RR Traacks. Look for Peninsula Business Park on left. Turn Business Park Road and go toward end of road. Brick building on right. \"Please call in advance to schedule work\"'), (803, 3374, 803, '570-326-9031', '814-574-5556 Tim Qui', 'Eastern Region', '3485 West 4th Street', 'Williamsport', 'PA', '17701', '7am to 5pm', ' '), (804, 3375, 804, '724-372-3897 Rob', '724-748-3599 Fax', 'Standing Stone Rd', '', 'Huntingdon', 'PA', '16652', '', ' 6/12 Construction located on a bridge on Church Street procurement@clearwaterconstruction.com'), (805, 3376, 805, '814-571-5241 Larry K', '', '336 Shawna Road', 'RT 219', 'Northern Cambria', 'PA', '15714', '7:00 am to 5:00 pm', ' RT 219 South out of Mahaffey. Look for a concrete or asphalt plants in town of Northern Cambria, Garmontown. '), (806, 3377, 806, '714-981-1045 Larry ', '714-897-0163 Fax', '1332 N. Miller Street', '', 'Anaheim', 'CA', '21076', '', ' '), (807, 3378, 807, '(716) 665-5410 x 164', '(716) 665-5152 Fax', '100 Blackstone Ave.', '', 'Jamestown', 'NY', '14701', '7:30am-5:00pm/7:00am-3:30pm Job', 'Rt. 394E 2 mile to Wilson Farms. Make right. Blackstone to left. NEW DIRECTIONS------From I-89 take Exit 13. Turn West on 394, go into town, at stop light, turn South on 380 on Work St., go over bridge, turn right onto Allen, go about amile and turn right onto Buffalo, then right onto Blackstone. 1st big Red Brick Bldg. on right. Park in Visitors parking lot. '), (808, 3379, 808, '216-857-0628 Tom\'s C', '440-439-1544 Fax', '350 Golden Oak Parkway', '', 'Oakwood Village', 'OH', '44146', '7:00 am to 4:00 pm', ' '), (809, 3380, 809, '724-352-4471 ext 107', '', '100 Clearfield Road', '', 'Cabot', 'PA', '16023-9521', '8am-4pm', ' PA 208 W to PA-38 S turn right onto PA 68W/E Jefferson St. merge onto US-422 E/Benjamin Franklin Hwy toward Kittianning Sharp right onto S Clearfield Rd. '), (810, 3381, 810, '724-696-3341 x 1609', '(724) 696-4952 Fax /', 'Job Site', '', 'Monaca', 'PA', '', '7:00 am - 5:00 pm', ' Rt. 51 bridge, into the town of Monaca, there is a head stone monument place, machine is across the street in parking lot in tractor trailer box Hanger Service Road near old airport, right thru the stop sign. Under underpass, site on the right staging area '), (811, 3382, 811, '724-439-7405-724-323', '724-439-7434 Fax', '825 N. Gallitin Avenue Extension', '', 'Uniontown', 'PA', '15401', '7:00 am - 3:00 pm ', ' I-76 South, US-119 Exit, turn right onto US-119 South Tax Exempt # 237400001-K '), (812, 3383, 812, '412-906-1579 Scott R', '', 'State Route 66 & 28', '', 'Kittanning', 'PA', '16201', '', ' '), (813, 3384, 813, '412-906-1579 Scott', ' ', '1779 Hwy 28', '', 'Kittaning', 'PA', '16201', '', ' North of Kittaning Rt 28 North '), (814, 3385, 814, '937-669-4500', '937-669-4566 Fax ', '4155-A Lisa Drive ', '', 'Tipp City', 'OH', '45371', '8:00-5:00', ' I-70 (West), at I-70, Exit 36, turn off ramp, merge onto SR-202 (Troy Pike) (North), turn left onto Gibson Drive, turn right onto Lisa Drive Password: supr'), (815, 3386, 815, '412-771-5340', '412-771-5336 Fax', '103 Coraopolis Road', '', 'Coraopolis', 'PA', '15108', '7:30 am - 5:30 pm', '65 North over Sewickly bridge, at the end of the bridge, turn L onto Rt. 51, follow until you go under I-79, 2 miles from I-79 follow the right Y, 2nd building on right. Lab is in the back has a red fence around it , sign on fence says GTS S/N 04034 has an \"F\" pump '), (816, 3387, 816, '412-486-1600 x154', '412-781-7840 Fax ', '1120 William Flynn Hwy.', '', 'Glenshaw', 'PA', '15116', '7:00 am - 5:00 pm ', ' From Butler, PA, on SR-8 (S. Main Street) (South), go 25.1 miles to Glenshaw, PA Next to Glenshaw Steel (On Left if going South), No Sign '), (817, 3388, 817, ' ', '724-438-2634 Fax', '5600 Forward Avenue', '', 'Pittsburgh', 'PA', '15217', '7:00 am - 5:00 pm ', ' Near Squirrel Hill tunnel off 376 in Pittsburgh 5/10 S/N 24106 shipped a Keypad Overlay Pi w/Rate, Fed Ex Ground, Insure $200.00 on 5/7/2010'), (818, 3389, 818, '724-323-5321 Dave\'s ', '724-887-0930', 'Route 119 & 819', '', 'Mt. Pleasant', 'PA', '15666', '7:00-5:00 Mon.-Thurs.', ' I-80 W merge onto I79 S Exit 19A to Pittsburgh take Esit 78-77 toward turnpike/I76/US19/PA 288/Cranberry, take exit 77 toward Youngstown , jmerge onto I-76 E/ PA Turnpike , take I-70 W eixt 75, take exit US-119/PA-66, merge onto New Stanton Youngwood Rd., merge onto US 119 exit 1 take Technology Dr. exit. stay stright on technology Dr. turn left onto Old New Stanton Rd. '), (819, 3390, 819, '', 'Brad 412-818-8385 Bi', '113 Lend Street', '', 'Fombell', 'PA', '16123', '', ' '), (820, 3391, 820, '570-797-2200', '', '694 Trevorton Road', '', 'Shamokin', 'PA', '17872', '7:00-3:30', ' '), (821, 3392, 821, '814-574-5556 Tim Qui', '', 'Job Site', '', 'Ridgway', 'PA', '', '', 'Penfield Exit on I-80 take 153 North to 219 North to Ridgway, go straight through town 12.5 miles west on SR 3002 toward Halton '), (822, 3393, 822, '412-271-1612 / 412-2', '304-485-1882 - Fax', '#1 7th Street', '', 'Braddock', 'PA', '15104', '7:00-5:00', ' I-376, Exit 7 (Edgewood/Swissvale), turn left onto Monongahela Avenue, turn right onto S. Braddock Avenue, continue South on Kenmawr Avenue (Green Beltway), continue South on Green Beltway (Ridge Street), bear right onto ramp (Braddock), bear left onto Kenmawr Avenue, continue on Braddock Avenue, turn right onto 7th Street '), (823, 3394, 823, '440-248-0100 x 3760 ', '440-848-8521 Fax', '34600 Solon Road', '', 'Solon', 'OH', '44139', '7:00 am - 3:00 pm', '***ISO REQUESTED*** ***ISO 9000*** ***continued*** **Serial Numbers must be written as shown above on labels & certs!! **For Instron TTD-CS-100-2LP get instructions from file**** Take 480 East to 91 N and just before intersection with Rt. 422 turn right at light onto Solon Road. Make right at sign for Erico at underpass at Rt. 422 Need tensile fixtures for Instron & Bond Pull tester Need tensile fixtures, dead weights / gram weights.'), (824, 3395, 824, '509-377-8603', '509-377-8219 Fax', '76 North Power Plant Loop', 'Columbia Generating Station', 'Richland', 'WA', '99352', '', ' 11/10 New client, S/N 05086881/10 circuit board peeled off, broken wires exposed, fix, DO NOT CALIBRATE, fixed key pad, shipped Fed Ex Next Day Air, Insure $2,500.00, Acct.# 1375-1806-6 on 2/11/2011, written on outside of box 432269 2/11 S/N 03097163/12 has transmitter error, fixed & replaced charger, shipped Fed Ex Priority Overnight, Insure $12,000.00 on '), (825, 3396, 825, '', '', '', '', '', '', '', '', ' '), (826, 3397, 826, '316-942-2453', '316-942-2555 Fax', '1775 Southwest St.', '', 'Wichita ', 'KS', '67213', '8:00-5:00', ' '), (827, 3398, 827, '316-942-2453', '316-942-2555 Fax', '1775 Southwest St.', '', 'Wichita', 'KS', '67213', '', ' '), (828, 3399, 828, '316-942-2453', '316-342-2555 Fax', '1027 S. McComas Street', '', 'Wichita ', 'KS', '67277', '', ' '), (829, 3400, 829, '316-942-2453', '316-942-2555 Fax', '1775 Southwest St.', '', 'Wichita', 'KS', '67213', '8 am - 5 pm', ' '), (830, 3401, 830, '619-540-9848 Ron Tot', '619-440-8653 fax', 'Box 218', '8417 Oswego Road', 'Baldwinsville', 'NY', '13027', '', ' '), (831, 3402, 831, '412-751-4001', '412-751-4003 Fax ', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '8:00 am - 4:30 pm ', ' I-76 South (PA Turnpike), bear right onto US-22 Bus (William Penn Hwy), left onto SR-48 (Moss Side Blvd.), left onto Ripple Road, bear right onto Center Street, left onto Walnut Street, cross bridge, left onto Smithfield Street, left onto Wide Drive '), (832, 3403, 832, '(937) 428-6150/937-6', '(937) 428-6154 Fax', '125 Westpark Road', '', 'Centerville', 'OH', '45459', '7:00 AM - 5:00 PM', 'From I-71 take Rt. 35 to 675S 3-4 miles, Wilmington Pike Exit. Turn left, go 1/4 mile, Clyo turn right and go 2 miles. Turn right on Franklin Street. Go 2 blocks, turn right on West Park. '), (833, 3404, 833, '(614) 445-3830 x 21', '(614) 445-3839 Fax', '1500 Haul Road', '', 'Columbus', 'OH', '43207', 'Office 8:00-4:30, Lab 7:00-4:00', 'Located on South side of Columbus Rt. I-71. Take Frank Road Exit #104. At end of ramp turn right onto Frank Road. Turn onto Haul Road Exit. Turn left at bottom of ramp. Plant is at end of ramp. Always bring three 12-inch spacers Need to take large steel plates for pipe tester. '), (834, 3405, 834, '419-738-1447 x 1312 ', '(419) 738-7670 Fax', '102 Commerce Road', '', 'Wapakoneta', 'OH', '45895', '8:00-5:00', 'Located 10 miles South of Lima. Take I-75 South to US 33West. Take 1st Exit (County Rd.-25A), at bottom of ramp, go left, will pass under Rt. 33. Go 1/4 mile, bldg. on left. Turn left on Commerce Rd., then take immediate left onto their drive. Sign on front of bldg. '), (835, 3406, 835, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00-5:00 Office & Lab', 'From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffic light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left. '), (836, 3407, 836, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '8:00 - 5:00 Office & Lab', 'From Noblestown take 376 East to Church Hill Exit (Rt. 130) Turn right, 1st light, turn left and follow 2 miles - turns into four lanes at traffic light. cross over 4 lane, next block stop sign (T) turn right, follow to Keystone Commons Complex to Gate Portal #7 (one way) turn left into Portal #7, turn right immediately. Go to garage door and drive inside. 2/3 of the way on left. '), (837, 3408, 837, '304-382-1722 Heather', '304-776-6426 Fax ', '824 Cross Lanes Drive', '', 'Charleston', 'WV', '25313', '8:00-4:00', ' I-77 South, Exit 101, merge onto I-64 (West), at I-64, Exit 47, merge onto SR-622 (Goff Mountain Road) (NE), turn left onto SR-62 (Goff Mountain Road), arrive Cross Lanes Drive In back of parking lot '), (838, 3409, 838, '304-733-1909 Jerry', '610-867-3785 Fax ', '6700 Kyle Lane', '', 'Huntington', 'WV', '25701', '7:00 am - 4:00 pm ', ' I-79, Exit 148, merge onto I-68 (East), at I-68, Exit 1, turn right onto US-119 (Grafton Road), turn left onto CR-7 (Hornbeck Road) Formerly owned by Arrow Concrete Formerly owned by Anderson Concrete, sold back to Arrow Concrete'), (839, 3410, 839, ' 304-923-7752', ' ', '1607 Clay Highway (WV16)', '', 'Clay', 'WV', '25043', '8:00-5:00(O) 7:00-5:00 (S)', ' 1 mile south of clay n Rt 16 on left, accross from saw mill in small shed next to state trailers. '), (840, 3411, 840, '304-872-8110', '304-872-7110 Fax', '87 Grose Lane', '', 'Summersville ', 'WV', '26651', '8:00-8:00', ' Road looks like gravel driveway-Lab in house at end of drive. '), (841, 3412, 841, 'Tom Schulster 603-32', '(330) 467-7984 Fax/3', '7925 Empire Parkway', '', 'Macedonia', 'OH', '44056-2144', '7:00am - 3:00pm (No Tuesdays)', 'From 76 - Exit #23B for Rt. 8N. Go under turnpike- make right at light onto Highland. Go 0.7 miles then turn right onto Empire Parkway. 2nd business on left. Formerly Hanson Pipe & Products Has 300K gauge on it - only took to 200K Customer requested cal to 200K Machine is outside. Note: Rams very slow retracting - needs new springs'), (842, 3413, 842, '(740) 776-3238 x 17 ', '(740) 776-6553 Fax', '6501 Pershing Ave.', '', 'Sciotoville', 'OH', '45662', '5:00 am - 6:00 pm', ' ***continued***Send Certs to Billing Address*** Located South of Columbus - Take Rt. 23 to Portsmouth. Go left (east) on Hwy 52 thru Portsmouth to Sciotoville Exit (a few miles) Rt. 335. Bear left at \"Y\". After exit turn left at stop light. Rt. 335N (Harding Ave). Go past school on left ( 2miles) and turn right on Slocum Rd. Cross bridge and go 1/4 miles to Pershing Ave. Turn right on Pershing. Plant on right. Hard hat / copy of last year\'s data'), (843, 3414, 843, '(740) 776-3238 x 17 ', '(740) 776-6553 Fax', '6501 Pershing Ave.', '', 'Sciotoville', 'OH', '45662', '5:00 am - 6:00 pm', ' Located South of Columbus- Take Rt. 23 to Portsmouth Go left (East) on Hwy 52 thru Portsmouth to Sciotoville Exit (a few miles) Rt. 335. Bear left at \"Y\". After exit turn left at stop light. Rt. 335N (Harding Ave.) . Go past school on left (2 miles) and turn right on Slocum Rd. Cross bridge and go 1/4 miles to Pershing Avenue. Turn right on Pershing. Plant on right. Hard hat / copy of last year\'s data'), (844, 3415, 844, '513-266-8311 Roland ', '513-321-0294 Fax', '9505 W. Mary Ingles Hwy.', 'Meldahl Hydroelectric Project', 'Foster', 'KY', '41043', '8:00-5:00', ' I-275 (E), at I-275, Exit 77 (KY-9/AA Highway/Wilder/Maysville), merge onto SR-9 (AA Highway) (South), turn left onto Kennon Road to Foster, KY '), (845, 3416, 845, '859-233-0250 x 201 C', '937-237- 9947 Fax', '2416-B Overdrive', '', 'Lexington', 'KY', '40510', '8:00 am - 4:30 pm ', '4 NW Leestown Pike, RT 421 NW, 3 lights, Trade St (Coca-Cola) Plant, Take left 2nd St over dirve, take right 100 yd, make left 3rd bldg Stucco Tan '), (846, 3417, 846, '614-292-2617 Shive C', '614-292-2294 Fax / 6', '470 Hitchcock Hall; 050 Material Lab', '2070 Neil Avenue', 'Columbus', 'OH', '43210', '7:30 am - 4:30 pm', ' 71 North to Hudson Street. Turn left onto Neal Street 71S 315S Lane Ave/Ohio St. Left off Exit. Straight over bridge. Tuttle turn Right. Pass 2nd Light, Parking Garage. 405 Hitchcock on Left. '), (847, 3418, 847, '(859) 744-9481 x 255', '(859) 744-9571 Fax', '101 Seventh Street', '', 'Winchester', 'KY', '40391', '8:00-5:00(O) 6:00-4:00 (S)', 'From Lexington: Follow 64 East - take second Winchester Exit (627 South) #96. Bear right on Maple to 1st red light, make right on Washington St. Go straight thru stop sign and bear right onto Elm Street. Go through several stops. Elm turns into 7th street. Continue on 7th. Cross RR tracks. Lab in building on left. Forney has small 3D gauge and hand pump'), (848, 3419, 848, '614-778-4305 Jack\'s ', ' No Fax', 'Greater Cincinnati Airport (CVG)', '84 South Air Field Drive', 'Hebron', 'Ky', '41048', '', ' '), (849, 3420, 849, '513-615-8296 Dennys ', ' ', '2939 Terminal Drive', ' ', 'Hebron', 'KY', '41048', '8:00-5:00', ' '), (850, 3421, 850, '412-264-0690 Jack Di', ' ', 'Route 61', ' ', 'Deer Lake', 'PA', '17961', '', ' Roughly 7 miles from Hamburg PA -61 North 7 or 8 miles '), (851, 3422, 851, '216-584-2174', '(216) 584-2272 Fax', '5500 Transportation Blvd', '', 'Garfield Heights ', 'OH', '44125', '8:00-4:00', 'I-80 W merge onto I-480 toward Cleveland keep right on I-480W Follow signs for Rockside Rd. Take exit 21 Transportation Blvd /E 98th St - Destination on Right '), (852, 3423, 852, '248-787-4073', '1-800-669-4234 / 248', 'Big Muddy Levee Road', '', 'Murphysboro', 'IL', '62940', '8:00am-5:00pm/6:00am-4:00pm', ' ***ISO Requested*** '), (853, 3424, 853, '970-640-5741', '970-245-7737 Fax', '450 S Main St.', '', 'Williamstown ', 'KY', '41097', '', ' '), (854, 3425, 854, '970-985-9473/970-216', '970-245-7737 Fax', '3751 Midway Road', '', 'Hermantown', 'MN', '55810', '', ' '), (855, 3426, 855, '970-985-9473/304-962', '970-245-7737 Fax / 6', '2841 North Avenue', '', 'Grand Junction', 'CO', '81502', '', ' '), (856, 3427, 856, '859-497-2319 Shayne/', '1-888-792-3121 Fax/8', '250 Gold Rush Road, Suite 6', '', 'Lexington', 'KY', '40503', '', ' '), (857, 3428, 857, '604-222-1047', '604-222-1074 Fax', '4004 Wesbrook Mall', '', 'Vancouver BC', 'CA', 'V6T 2A3', '', ' '), (858, 3429, 858, ' 614-445-3839 Jeff ', 'no Fax', '1500 Haul Road', '', 'Columbus ', 'OH', '43207', '8:00-4:30 Lab 7:00-4:00', ' '), (859, 3430, 859, '(703) 421-4000 / 757', '(703) 421-8000', '21505 Greenoak Way', '', 'Sterling', 'VA', '20166', '', ' US-15 Byp (Leesburg Byp), bear right (VA-7), merge onto SR-7 (E. Market Street), turn off ramp (VA-28/Dulles Airport/Centerville), merge onto SR-28 (Sully Road), turn left onto Severn Way, bear right onto Woodland Road, turn left onto Greenoak Way '), (860, 3431, 860, '717-764-7700', '717-764-4129 Fax', '130 Derry Court', '', 'York', 'PA', '17406', '8:00 am - 5:00 pm', 'Exit 24 off I-83. Turn West onto Church Road. On west side of I-83, make immediate left onto Derry Court. ATI is straight ahead at end of road. Moved to Building 2 Tax Exemp no: 82-886744 Password to get into Bluehill Software: \"Joe\" then Password: 80FXWG'), (861, 3432, 861, '717-444-3043', '717-444-9995 Fax', '1192 Perry Valley Road', '', 'Liverpool', 'PA', '17045', '8:00-4:30', ' Rt. 322 to Millerstown to Rt. 17 East to Route 11/15, turn right just before Rt. 11/15, turn right on St. Rt. 1010, go approx. 1/10 mile make a right on Perry Valley Road, go 2.6 miles West to site on left, no sign, look for rock '), (862, 3433, 862, '(412) 262-2022', '412-262-1979 Fax', '100 River Alley ', '', 'Brackenridge', 'PA', '15014', '7:00am - 5:00pm / 7:00am-3:00pm Job', ' SR-28, Old Exit 15 (Natrona Heights/Brackenridge) at Allegheny Ludlum '), (863, 3434, 863, '412-262-2022', '412-262-1979 Fax', '3401 Market Street', 'At Valley Concrete Lab ', 'Wheeling', 'WV', '26003', '7:00am - 5:00pm / 7:00am-3:00pm Job', ' I-70, to Rt. 470 (Market Street), go to top of hill, when start to drop down, take the first right, to Market Street, (on the left side of the interstate), go 3 streets, turn left, at Valley Concrete '), (864, 3435, 864, ' 412-292-4932 Bill', '(412) 431-7683 Fax', '2220 Second Avenue', '', 'Pittsburgh', 'PA', '15219', '7:00 am - 5:00 pm', '2220 Second Avenue Pittsburgh, Right under Big Coors Light sign North Side of River between Hot Metal Bridge and Tenth Street Bridge Take Anvil Company bought by Essroc Ready Mix'), (865, 3436, 865, '614-275-1329 Prasad', '614-887-4027 Fax ', '1600 West Broad Street', 'Cement & Concrete Section', 'Columbus', 'OH', '43223', '', ' 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building '), (866, 3437, 866, '734-759-1600', '734-282-6556 Fax', '13500 Reeck Road', '', 'Southgate', 'MI', '48195', '8:00-4:30', ' '), (867, 3438, 867, '313-304-4979 Cell Ju', '(313) 897-1280 Fax/3', 'Bldg H-120 Warren Service Center', '7940 Livernois Ave.', 'Detroit', 'MI', '48210', '7:00 am - 3:30 pm (Site not manned)', 'Take 94W to Exit #212 for Livernois. Go North (left) on Livernois approx. 2 blocks. Make right at light onto Warren. Make immediate left into Drive. ***All Invoices must have ERS123 on them*** Send bill attention Shirley Martin Lab not always manned - no voice mail Has cast iron cylinder assembly'), (868, 3439, 868, '(906) 293-5168', '906-293-3331 Fax', '14113 M-28', '', 'Newberry', 'MI', '49868', '7:00 am - 4:30 pm', ' Right on M-28 West of Newberry, MI Room off garage '), (869, 3440, 869, '989- 732-3584', '989- 732-6391 Fax', '271 W. McCoy Road', 'PO Box 618', 'Gaylord', 'MI', '49735', '8:00 am -4:30 pm ', 'I-75 Exit #282. Go East on 32. Cross RR tracks Take Old Rt. 27 South out of town, go to 2nd light, McCoy Road Make left, 1/2 mile on right, New building with wooden front Machine behind building in garage '), (870, 3441, 870, '231-468-3456 ', '231-846-0986 Fax ', '1202 N. Mitchell', '', 'Cadillac', 'MI', '49601', '', ' '), (871, 3442, 871, '906-789-7800', '906-789-0100 Fax ', '3500 Ludington Street', '', 'Escanaba', 'MI', '49829', '', ' US 2 to Escanaba at BP & Walgreens turn right, go 2 stop lights, Wilcox on right after 2nd stop light 9/12 Put in schedule next time moving machine and closing office '), (872, 3443, 872, '(248) 620-7400', '(248) 620-7402 Fax', '8265 White Lake Road', '', 'White Lake', 'MI', '48386', '6:00 am - 6:00 pm', 'Take I-75 to Exit #93 - Rt. 24 (Dixie Highway) 24 South to White Lake Road. Turn Right. Go to Anderson Road and turn Right - Then Left (1 mile) onto White Lake Road. Go around road closed sign. www.mackconcrete.com'), (873, 3444, 873, '248-324-5372 Zeerek ', '724-524-0927 Fax Zee', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '7:00am-4:00pm', ' ***Ask Bill about S/N 21262*** ***Must have Calibration Factors & Offsets on Certification*** ***ISO Requested*** ***continued*** 275 North, Exit 28 (Ann Arbor Rd/Plymouth/Livonia), right onto Ann Arbor Road, right onto Plymouth Road, left onto Belden Court Latitude: 42 Degrees Elevation: 642 Feet Dead Weight Correction Value: 0.9993 Need Tensile Fixtures'), (874, 3445, 874, '586-731-3100', '586-731-3582 Fax', '13019 Pauline Drive', '', 'Shelby Township', 'MI', '48315', '9:00-4:30(O) 9:00-5:00 (Site)', '53 North to 23 Mile Road, 60 East, go East under powerlines, go about 3/4 of a mile from 53, Central Industrial, make right South to dead end, turn left, building on left '), (875, 3446, 875, '(231) 526-2119', '(231) 526-7257 Fax', '607 East Lake Street', '', 'Harbor Springs', 'MI', '49740', '8:00 am - 5:00 pm ', 'From Petrosky onto US 31 N - go to North end of town to intersection of US 31 & M119. Take M119 to Harbor Springs (west) turn left. Go 5 miles to Harbor Springs. When in city limits watch for M119 Bypass and Lake St (C77) and make a right. Go 1 mile and watch for a party store on right. Go 2 more driveways - watch for green sign and a yellow building. Parking in back. Garage in back where machine is located.'), (876, 3447, 876, '989- 755-6777', '989-755-6775 Fax', '218 E. Morley Drive ', '', 'Saginaw', 'MI', '48601', '7:00 am - 5:00 pm', ' Right 75S, Holland Ex.149A, East Holland, left onto E. Morley Drive '), (877, 3448, 877, '(313) 849-4571', '(313) 849-4555 Fax', '9333 Dearborn St.', '', 'Detroit', 'MI', '48209', '8:30-5:00 ', 'Route 75N to Exit #44 Dearborne Ave. Make left at light and go to next left (Near Rouge River) Fort Spring Wells straight to light. Fort make right to Woodmere make left dead end make left, one set of tracks right hand side '), (878, 3449, 878, '800-899-1016', '410-850-4111 Fax', '7455 New Ridge Road', 'Suite T', 'Hanover', 'MD', '21076', '', 'Send original cert in box with machine, fax copy of cert & copy of invoice to Terry Daniel at 410-850-4111 at Corporate office in Hamover, MD, send original invoice to job site. Ship Ground, insure $1,000.00 per Terry Daniel. Use their own spreadsheet and graph for certs. '), (879, 3450, 879, '317-875-7000/317-875', '317-876-3705 Fax / x', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '7:00 am - 5:00 pm ', ' Exit 27, Mich. Road, North less than 1 mile car dealer, turn left on 99th street, 1st brick on left before stop sign '), (880, 3451, 880, '508-457-3312', '508-457-3400 Fax', '1 Little Harbor Road ', '', 'Woods Hole', 'MA', '02543-1099', '7:00 am - 4:00 pm ', ' Former Ron Crane client '), (881, 3452, 881, '817-487-8693 Jay\'s C', '817-761-2393 Fax', '3045 CR 401', '', 'Alvarado', 'TX', '76009', '', ' '), (882, 3453, 882, '580-656-0128', '580-251-3607-fax', '100 East Highway 7', '', 'Duncan', 'OK', '73536', '', ' '), (883, 3454, 883, '610-499-4607 Vicky', '610-499-4461 Fax/484', 'One University Place ', '', 'Chester', 'PA', '19013-5792', '', ' I-95 (SW), at I-95, Exit 6, turn right onto Chestnut Street, left onto E. 14th Street, go straight to the corner (17th Street & Melrose), left towards Schwartz Physic Center, lab is on left in little valley Kirkbride Hall, corner of 17th & Walnut '), (884, 3455, 884, '717-534-4331 / 412-2', '717-534-7379 Fax/Jas', '382 Laudermilch Road ', '', 'Hershey', 'PA', '17033', '7:00 am - 5:00 pm', ' I-83, Exit 47, continue East on US-322 (Paxton Street), continue East on US-322 (Benjamin Franklin Highway) at Benjamin Franklin Highway US-322 Exit, continue North-East on US-322, turn left onto SR-743 (Park Avenue), turn off ramp, merge onto SR-743 (Kieffer Road), to Laudermilch Road '), (885, 3456, 885, '717-867-3992', '717-867-3999 Fax', '1956 SR 022', '', 'Jonestown ', 'PA', '17038', '7:00 am - 5:00 pm ', ' I-81 North toward I-83/Hershey/Hazleton, take Exit 90 toward PA-72/ Lebanon turn left onto Fisher Avenue, turn a slight right onto PA-72 to Jonestown, PA '), (886, 3457, 886, '610-644-6370', '610-644-2930', '211 Swedesford Road', '', 'Malvern', 'PA', '19355', '7:00 AM to 3:00 PM/Jobsite until 5:00 PM', 'I-76 East, exit @ Valley Forge, follow I-76 to Rt. 202 South Rt. 202 South to Rt. 29 North exit. At end of ramp/traffic light, turn left onto Swedesford Road. Follow Swedesford Road for one mile Trailer are right. '), (887, 3458, 887, '717-561-1623/ Cell 4', '717-561-1623 Fax Als', '3212 Pike Street', '', 'Harrisburg', 'PA', '17111', '', ' I-83 (US-322) (South), turn off ramp, turn right onto Derry Street, turn left onto Park Terrace, turn right onto Pike Street '), (888, 3459, 888, '215-561-5100 x 1419', '215-561-5101 Fax ', '2400 Market Street, Suite 1', '', 'Philadelphia', 'PA', '19103-3031', '9:00 am - 5:00 pm ', ' PA Turnpike/I-276 West, to Exit 25A/I-476, you will be on I-476 South, take Exit 6, I-76, Exit 345, merge SR-3 (Arch Street), continue South on N. 30th Street, turn left onto Market Street, continue East on SR-3 (Market Street) **Go around to back of building, past loading dock to parking lot, go under street Arch to back of building, call Todd cell he will meet you and let you in'), (889, 3460, 889, '441-232-2000', '441-238-2362 Fax/441', '#7 Industrial Park Road ', 'Southhampton SB04', 'Bermuda', '', '', '', 'Shipping Address: S.A.L., Ltd. 4 Hermitage Road Devonshire, HM EX Bermuda 2 Year schedule All work in Bermuda coordinated through SAL, Ltd. '), (890, 3461, 890, '441-236-4373/441-236', '441-236-2544 Fax/441', 'Lime Building Dockyard', 'Devonshire DV08', 'Bermuda', '', '', '8:00 am - 4:00 pm ', 'Billing Address: Correia Construction Company Limited PO Box DV310 Devonshire DVBX, Bermuda Need Work Permit Need Transporation from Airport to Hotel to Job Site All work in Bermuda coordinated through SAL, Ltd.'), (891, 3462, 891, '818-262-1236', '818-837-8062 Fax', '1150 Aviation Place', '', 'San Fernando', 'CA', '91340', '', ' '), (892, 3463, 892, '410-796-5000/410-365', '410-796-8500 Fax', '6955 San Tomas Road ', 'Baltimore Headquarters', 'Elkridge', 'MD', '21075', '', ' I-80 East, Exit 62, merge onto SR-68 North, right onto US-322 (Main Street) '), (893, 3464, 893, '52 (229)775-2227', '52 (229) 119-1175 Ma', 'Manuel Avila Camacho # 5256 Piso 7', 'Mocambo, Boca del rio', 'Veracruz', 'Mexico', '94298', 'North Zone Purchasing Manager', ' '), (894, 3465, 894, '989-496-2440 / 989-5', '989-496-2465 Fax', '4055 S. Saginaw Road', '', 'Midland', 'MI', '48640', '8:00 am - 5:00 pm', 'I-75 to US 10 to Midland Exit Bay City Road, around loop to Saginaw Road take left, left side of road by watertower. First building on left side in lot. '), (895, 3466, 895, '304-239-3900 / 304-4', '304-239-3905 Fax ', '1238 Holly Ridge Road ', '', 'Holden', 'WV', '25625', '7:00am-5:00pm', 'I-64 West, at I-64 Exit 58A, bear right onto US-119 (SW), bear right onto ramp, continue on US-119 (S), Mile Marker 25, Rt. 119 Logan, pass the Logan Exit, approx. 5 to 6 miles pass the exit & look for a sign to turn left on 22 Mine Road (Mile Marker 20-21), go 2 to 3 miles up the hill, at top of hill turn right, sign post w/ Company Logo, plant is 1 1/2 miles on the right High Range Channel B on box Low Range Channel A on box '), (896, 3467, 896, '304-637-0220', '304-637-0296 Fax ', 'District 8 Materials Lab ', 'Route 219 North ', 'Elkins', 'WV', '26241', '7:30 am - 4:00 pm ', ' I-79 South, Exit 99 (Weston), Rt. 33 East Corridor, right into Elkins (Downtown Elkins Exit), turn right 1/2 mile, on right District Headquarters '), (897, 3468, 897, '304-472-7140/304-677', '304-472-6239 Fax', '1 Moore Avenue', '', 'Buckhannon', 'WV', '26201', '8:00 am - 5:00 pm', 'Take Rt. 33 East, 1st light go straight, 1st exit pass light, Right off ramp. 1st light turn right, courthouse, thru 1st light road splits, stay right, light go straight, make 1st left, is on the right Formerly R.D. Zande Associates, Inc. '), (898, 3469, 898, '330-705-3067 Jay Cel', '724-667-1067 Fax / 7', '8282 Middle Branch Road', ' ', 'Middle Branch ', 'OH', '44652', '', 'From PA 60 (New Castle By-pass) Exit #6A State St. Poland. Go west on 224 - cross blue bridge. Immediate left turn onto 551S. Go 3/4 miles - bear right. Go 3 miles and make right onto Rt. 317. See large school about 1 mile on right. Bear to left. Drive into Bessemer, go in at 2nd street. Lab all the way to the right. Site not always manned. Must call prior.'), (899, 3470, 899, '216-496-9176 Mike Ce', '614-876-0548 Fax', '38 Athens Lane', 'Ruhlin/AMP Ohio Job Site', 'Saint Marys ', 'WV', '26170', '8:00 am - 5:00 pm', ' '), (900, 3471, 900, '(412) 431-2700 ', '(412) 431-4648 Fax/4', '100 South Third Street', '', 'Pittsburgh', 'PA', '15219', '6:00 am - 5:00 pm', 'From 279 South , take W. Carson to 1st light ( back entrance to Station Square). Turn right. Go to next intersection and make right. Turn left on S. Carson (Rt. 837). Go to 3rd red light (by gas station). Turn left. Go to 1st Street & make right. Site is 2 1/2 blocks on right. Need PO number if over $1000.00 (Verbal if under) See letter in files.'), (901, 3472, 901, '412-206-1553 John Mc', '', '500 Bursca Drive Suite 506', '', 'Bridgeville ', 'PA', '15017', '', ' '), (902, 3473, 902, '724-579-6593 Jake Gi', '724-438-2634 Fax', '5600 Forward Avenue', '', 'Pittsburgh', 'PA', '15217', '7:00 am - 5:00 pm ', ' I-476 (NE Extension Pennsylvania Turnpike) ,East, at I-476, Exit 74, bear right onto US-209 (Interchange Road), left onto SR-248, bear right onto SR-892 (Lehigh Street) Main Office: Cannonsburg, PA 724-745-6039 Art 3/09 Bought new machine S/N 09025 from Forney\'s '), (903, 3474, 903, '(231) 348-1180 x 100', '(231) 348-1185 Fax', '2940 Parkview Drive', '', 'Petoskey', 'MI', '49770', '8:00 am - 5:30 pm Mon.-Fri.', '131 to Main Street, 315 left out of town, Parkview Drive, 3rd road from left '), (904, 3475, 904, '248-324-5372 Zeerak ', '734-524-0927 Fax', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '7:00am-4:00pm', 'Formally Neyer, Tiseo & Hindo 275 North, Exit 28 (Ann Arbor Rd/Plymouth/Livonia), right onto Ann Arbor Road, right onto Plymouth Road, left onto Belden Court Geo Comp need Dial Indicator Latitude: 42 degrees Elevation: 642 feet Need tensile fixtures'), (905, 3476, 905, '248-324-5372 Zeerek ', '734-524-0927 Fax', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '7:00am-4:00pm', ' ***ISO Requested*** ***continued*** 275 North, Exit 28 (Ann Arbor Rd/Plymouth/Livonia), right onto Ann Arbor Road, right onto Plymouth Road, left onto Belden Court Geo Comp need Dial Indicator Latitude: 42 Degrees Elevation: 642 Feet Dead Weight Correction Value: 0.9993 Need Tensile Fixtures'), (906, 3477, 906, '724-378-3900', '724-378-3940 Fax', '2780 Brenner Pike', '', 'Bellefonte ', 'PA', '16823', '', ' '), (907, 3478, 907, '970-985-9473 Nate', '970-245-7737 Fax ', '450 S Main ST', '', 'Williamstown ', 'KY', '41097', '', ' eric@gsi.us justin@soilnaillauncher.com'), (908, 3479, 908, 'Billing 1-800-819-28', '402-331-6160 Fax', '8550 S. 137th Cir. Suite 2', '', 'Omaha', 'NE', '68138', '', ' '), (909, 3480, 909, '510-487-1155', '510-487-4466 Fax', 'Vandenberg AFB', '', 'Vandenberg', 'CA ', '93437', '', 'Heco is our customer now not Ron Crane Scale Sales 3/11 S/N 08074258/3 had ERR 999 message, had to be shipped to Israel, Fed Ex Int. Economy, Insure $10,000.00, Acct.# 094125693 on 3/15/2011on Heco Acct., RMA # 113041, CSI replaced the power port, load cell keyboard, load cell plastic case & internal panel 4/11 S/N 08074253/4 Cert in: United Launch Alliance, Cape '), (910, 3481, 910, '269-323-3555/269-720', '269-323-3553 Fax / 2', '3301 Tech Circle ', '', 'Kalamazoo', 'MI', '49008', '8:00 am - 5:00 pm ', ' 94-131 N Stadium Kala Dr 36A, 1st light, turn right, Drake Rd south Dean Ck Trans# (-) 32 4/11 S/N 87043-060329 shipped 6\" O\'Ring, B/U Ring & Cylinder Seal, UPS Next Day Air AM, No Insure on 4/19/2011'), (911, 3482, 911, '724-301-7429 Mike', '724-748-3599 Fax', '', '', 'Philadelphia', 'PA', ' ', '8:00 am to 4:00 pm', 'I-80 East, Exit 260, I-815 to exit 138 (Rt. 309), follow Rt. 309 South to Tamaqua '), (912, 3483, 912, '814-590-1375 Rich Ce', '877-242-2016 Fax', 'Consolidated Construction Testing Labs', '1313 Bucktail Road ', 'St. Marys', 'PA', '15857', '8:00-4:00 Office', ' I-80, Exit 97, turn right onto US-219, bear left onto ramp, turn left onto US-219, bear right onto ramp, turn right onto US-219 (Main Street), turn right onto SR-120 (Depot Street), turn left onto S Saint Marys Street to Bucktail Road, Lab at All-American Car Wash, office is around the back & up the brown stairs '), (913, 3484, 913, '(570) 433-3186', '570-433-4408 Fax', '307 Fairfield Road', '', 'Montoursville', 'PA', '17754', '7:00 am - 3:30 pm', 'From Williamsport, take Rt. 180 East to Fairfield Exit. Make right at stop sign at end of ramp. Go thru 1st intersection - site on left. '), (914, 3485, 914, '814-312-1849/570-752', '814-766-0234 Fax / 8', '7370 Columbia Blvd.', 'ST-259', 'Berwick', 'PA', '18603', '7:00 am - 4:00 pm', ' I-80 East, Exit 241, bear left onto US-11 (Columbia Blvd.), turn left onto (N) Vine Street 7/11 S/N 70052 shipped snubber assembly, UPS Ground, No Insure, on 7/11/2011'), (915, 3486, 915, '440-234-2900 x 120 G', '713-684-1342 Fax / 4', '640 North Rocky River Drive ', '', 'Berea', 'OH', '44017', '8:00 am - 5:00 pm ', 'Turnpike/21 Exit 11 Old Rt. 21 N 1/2 Mile Make left on West Snowville Road Use PO# HD 105570 for all calibrations for multiple years '), (916, 3487, 916, '(440) 428-2105', '(440) 428-8829 Fax', '300 Edwards Street', '', 'Madison', 'OH', '44057', '7:00 am - 5:00 pm', 'Take I-90 East from Cleveland. Go to Madison Exit #212. Turn left off ramp to 528N. Turn right at stop sign onto Rt. 84. At next light turn left onto Hubbard. Cross RR tracks, pass parking lot on left. Take 1st road to left - Edwards Street. Follow to dead end - site on right. Go to 2nd big white building. Go in gate - lab at end inside warehouse. '), (917, 3488, 917, '(330) 638-7680 x 731', '(330) 638-1277 Fax', '2207 Sodom Hutchings Road', '', 'Vienna', 'OH', '44473', '7:00-4:00 Office / 7:00-7:00 Job Site', 'From I-80 - Go north on 11. Go East on 82. Go past Vienna Exit (Rt. 193). Next Exit is Sodom-Hutchings Rd. Turn left onto Sodom. Go thru 2 stop signs (2 miles). Go around left dog let at intersection with King-Graves Rd. Go 1/2 mile - on left. Test lab is in building at back of site. '), (918, 3489, 918, '(800) 824-2092 Ext ', '(330) 723-5690 Fax/3', '820 W Smith Rd', '', 'Medina', 'OH', '44256', '7:00 am - 4:00 pm', '71 South to 18 West through Medina to State - South on State to Smith Rd. - West .25 miles on left Company Owned by: Shelly Materials, Inc. PO Box 226, Thornville, OH 43076 740-246-6315 / 740-246-4381 Fax Billing: PO Box 600 , Thornville OH 73076 740-246-6315 / 740-246-4715 Fax'), (919, 3490, 919, '(216) 741-7007', '216-741-7011 Fax', '1125 Valley Belt Road', '', 'Brooklyn Heights', 'OH', '44131', '8:00 am - 5:00 pm', 'I-80 to 480 W to Exit 17A at end of Ramp- Turn right go 1 mile to Valley Belt Road, at light make left, 3/4 mile on left (1125) E-mail proving ring data to dwh@stlohio.com TAKE PROVING RING PRESS !!!! Dead Weight Correction Value: 0.9993'), (920, 3491, 920, '814-724-4528 / 330-6', '814-333-6259 Fax', '10721 S. Water Street Ext.', '', 'Meadville', 'PA', '16335', '8:00 am - 4:00 pm ', 'I-79 to Exit 147A. Follow through three lights, over bridge. Take Park Ave. exit off bridge to light, take right. Go one block to next light, take right. Follow 322 E for one mile, take right onto McHenry Street. Take first left and follow back to Tapco tube offices. Special price for Ram per Bill, calibrated w/Detroit at same time Mark Putnam 814-720-7904 Cell or 814-724-4528 Nancy/Lisa Acct. Payable Fax: 814-333-6259'), (921, 3492, 921, '440-232-9945', '440-232-9946 Fax', '4 Hemisphere Way ', '', 'Bedford', 'OH', '44146', '8:00 am - 5:00 pm ', 'I-271, Exit 23 (OH-14/Broadway Avenue/Forbes Road), bear left onto Fair Oaks Road, bear left onto SR-14 (Broadway Avenue), (I-271/I-480 W), bear left onto Union Street, left onto Egbert Road, next to Tinkers Creek there is 1 building, office on left, across from the Golf Course (On GPS enter 200 Egbert Road, Bedford, OH 44146 to find) '), (922, 3493, 922, '440-232-9945', '440-232-9946 Fax', '4 Hemisphere Way ', '', 'Bedford', 'OH', '44146', '8:00 am - 5:00 pm ', 'I-271, Exit 23 (OH-14/Broadway Avenue/Forbes Road), bear left onto Fair Oaks Road, bear left onto SR-14 (Broadway Avenue), (I-271/I-480 W), bear left onto Union Street, left onto Egbert Road, next to Tinkers Creek there is 1 building, office on left, across from the Golf Course '), (923, 3494, 923, '440-232-9945', '440-232-9946 Fax', '4 Hemisphere Way ', '', 'Bedford', 'OH', '44146', '8:00 am - 5:00 pm', 'I-271, Exit 23 (OH-14/Broadway Avenue/Forbes Road), bear left onto Fair Oaks Road, bear left onto SR-14 (Broadway Avenue), (I-271/I-480 W), bear left onto Union Street, left onto Egbert Road, next to Tinkers Creek there is 1 building, office on left, across from the Golf Course '), (924, 3495, 924, '734-282-7760', '', '280 West Jefferson', '', 'Treton', 'MI', '48183', '', ' '), (925, 3496, 925, '479-968-3422', '479-968-8404 Fax', '1809 South Elmira Avenue', '', 'Russellville', 'AR', '72802', '', ' '), (926, 3497, 926, '732-827-2397 Bhasker', '732-827-2320 Fax', '11 Cragwood Road ', '', 'Avenel', 'NJ', '7001', '', ' '), (927, 3498, 927, '304-636-5699 ext: Ba', '304-636-7293 Fax', 'Route 219 North, Elkins Plant', '', 'Elkins', 'WV', '26241', '7:00 am - 5:30 pm', ' Coraidor H from Buchannon 2nd Elkins exit turn right 1/4 mile, left on old 219 N; 1/2 mile on right Formerly P&C Concrete / Elkins Builders Supply'), (928, 3499, 928, '740-323-5290 Ed Gebh', '740-323-5292 Fax', '9600 Jackson Town Road SE', '', 'Jacksontown', 'OH', '73030', '', ' I-70, SR-60 Exit, merge onto SR-146 (Underwood Street), bear right onto US-22 (Greenwood Avenue), turn left onto SR-93 (Roseville Road) bear left onto SR-669 (SR-93), continue South on SR-13, turn right onto SR-682 (Main Street), continue NW on US-33, turn right onto Twp-294 (New Floodwood Road), turn left onto CR-11 (Elm Rock Road) '), (929, 3500, 929, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave', '', 'East Pittsburgh', 'PA', '15112', '8:00 - 5:00 Office & Lab', ' '), (930, 3501, 930, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh', 'PA', '15112', '8:00 to 5:00 Office & Lab', ' '), (931, 3502, 931, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '8:00 to 5:00 Office & Lab', ' '), (932, 3503, 932, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '8:00 to 5:00 Office & Lab', ' '), (933, 3504, 933, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '8:00 to 5:00 Office & Lab', ' '), (934, 3505, 934, '(419) 999-5660', '(419) 999-6029 Fax', '3739 Shawnee Road', '', 'Lima', 'OH', '45806', '8:00 am - 5:00 pm', 'Take Rt. 75 to Exit #120. Go west onto Breese Road. Cross Dixie Hwy to next light. Turn left 100 feet before light at Shawnee Road into Plaza (brick row building). Go 100 feet and make another left. Site in corner 9/10 S/N 05234 was leaking, replaced 6 3/4\" O\'Ring, B/U Ring, & Cylinder seal and calibrated 12/10 Special Trip, S/N 05234 still leaking, replaced Piston Seals'), (935, 3506, 935, '614-892-0162 Lab', '614-892-0149 Fax ', '5710 Westbourne Ave.', '', 'Columbus', 'OH', '43213', '8:00 am - 5:00 pm', ' ***Send Certs to Office Address*** ***ISO Requested*** I-70 Exit 108, turn off ramp towards I-270(Cincinnati/Cleveland), merge onto I-270 North, Exit 39, towards OH-16 (Broad St./Taylor Sta Rd), continue North on Morrison Road, turn right (East) onto Westbourne Avenue Billing Contact Robin Lamb'), (936, 3507, 936, '614-892-0162 Lab', '614-892-0149 Fax ', '5710 Westbourne Ave.', '', 'Columbus', 'OH', '43213', '8:00 am - 5:00 pm', ' ***Send Certs to Office Address*** ***ISO Requested*** I-70 Exit 108, turn off ramp towards I-270(Cincinnati/Cleveland), merge onto I-270 North, Exit 39, towards OH-16 (Broad St./Taylor Sta Rd), continue North on Morrison Road, turn right (East) onto Westbourne Avenue Billing Contact: Robin Lamb'), (937, 3508, 937, '412-963-1900', '412-963-1926 Fax', '635 Alpha Drive', '', 'Pittsburgh ', 'PA', '15238', '', 'RIDC Park in Blawnox, Take Gamma to light. Turn Right on Alpha. 365 on your left. TONY Password'); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (938, 3509, 938, '804-512-1707 Allen G', '804-561-5819 Fax', '10101 Superior Way', '', 'Amelia', 'VA', '23002', '8:00 am - 3:00 pm ', '64 W Chester 288 S Amelia US 360 Exit west, 30 miles, T at stop light thru past McDonalds on right 1/2 mile, BBP bank on left, turn left on to Superior Way '), (939, 3510, 939, '724-323-5095 Pete ', '724-335-3834 Fax ', 'Right off Exit 60', '', 'Clarion ', 'PA', '16214', '7:00 am - 3:00 pm Mon-Sat', ' I-79, Exit 78 (PA-228/US-191/Mars/Cranberry), merge onto SR-228 (Rt. 228), turn South onto US-19 (Route 19), bear left onto Warrendale Bayne Road (Red Beltway), turn left onto Northgate Drive '), (940, 3511, 940, '216-839-7280/216-839', '216-839-8801 Fax / 2', '23700 Chagrin Blvd.', '', 'Beachwood', 'OH', '44122', '', '***Mail & fax all Invoices to Paul Pridemore *** I-271 (Either Direction), head West on Chagrin Blvd. (422), our building is almost 0.7 miles on the left side of the street the driveway is immediatley before th BASF sign. The center lane is a turning lane, ask for Paul Pridemore at the front desk. Dan Zojko Cell 330-646-5834 '), (941, 3512, 941, '805-944-8547 Eric Ch', '303-269-7049 Fax', 'Vandenburg Air Force Base', '10th & Utah, Bldg. 7525', 'Vanderberg AFB', 'CA', '93437', '', ' 4/09 S/N 08074253/4 damaged in shipping to CSI, Claim #93625428 replaced Triaxle board, regulator board, case w/ keyboard, Cert in United Launch Alliance, Cape Canaveral, FL 32920 shipped UPS 3rd Day Air, Insure $10,000.00 Acct.# 989-237'), (942, 3513, 942, '(216) 447-1335 x 115', '(216) 642-7008 Fax', '5555 Canal Road', '', 'Cleveland', 'OH', '44125', '8:00 am - 5:00 pm M-F', 'From I-80 West to Exit #13 for Rt. 480 to Exit #21. At end of ramp - make right (north) on Transportation Blvd. At 1st light, make left (west) onto Granger - go down hill At light - turn left onto Canal Site at 2nd driveway on left. Single story brick building '), (943, 3514, 943, '705-748-8025 Jeff', '705-748-8020 fax', '107 Park Street N', '', 'Peterborough', 'ON', 'K9J7B5', '', ' '), (944, 3515, 944, '425-821-0902', '530-268-1203 Fax', '14788 NE 95th Street', '', 'Redmond ', 'WA', '98052', '', ' '), (945, 3516, 945, '530-268-1860', '530-268-1203 Fax', '22835 Industrial Place', '', 'Grass Valley ', 'CA', '95949', '', ' '), (946, 3517, 946, '412-551-3313', '412-931-2820 Fax', '101 Bellevue Road', '', 'Pittsburgh', 'PA', '15229', '7am - 5 pm Office 7:30 am - 4pm Lab', '***Vertical Force use seating load & 300 lb as cal point *** 279 South to Perrysville Exit- Left at Red light, Rt 19N to 1st Red light Bellevue Road - Left - Go about 50feet 2 nd Tier parking lot Metric Tons 1 MT = 2204.6 lbs For D-500 Vertical Force, apply seating load of 0.5 lbs then zero'), (947, 3518, 947, '716-625-6933', '716-625-6983 Fax', '415 South Transit Street', '', 'Lockport', 'NY', '14094', '', ' '), (948, 3519, 948, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '8:00 to 5:00 Office & Lab', ' '), (949, 3520, 949, '814-443-9455', '814-443-9470 Fax ', '150 Dominion Drive ', '', 'Somerset', 'PA', '15501', '', 'I-76, Exit 110, go thru toll booth, there will be a blinking light, (Go straight thru 3 lights, included 1st blinking light), at the 4th light, get in left hand lane, make a left onto Rt. 31, go straight for 5 miles to Mostoller Land Fill, at next hill 1/2 way up, there will be a Guy Chemical sign on the right, turn left and go up a little hill, place at the top of hill Password 268'), (950, 3521, 950, '814-944-4605', '814-766-4426 Fax ', 'Beulah Road', '', 'Ebensburg', 'PA', '15931', '7:00 am - 3:30 pm (can be later)', 'Route 22 East off Route 219. Go 1 Mile and turn Left at sign at Mobile Gas Station & Subway. Go 1/4 Mile on Right. ONLY PUT MONTH & YEAR ON STICKERS '), (951, 3522, 951, '(814) 472-7700 ext.', '(814) 472-4221 Fax', '725 West Triumph Street', '', 'Ebensburg', 'PA', '15931', '7:30 am - 4:30 pm', '*** ISO Requested*** ***continued*** 422E to Ebensburg. At light turn left onto High Street. Go 2 1/2 blocks to BP station. Make left onto Marian Street. Go approx. 6 blocks to Highland. Make left onto Highland. Go 2-3 blocks - site on right. Lab in back of large white bldg. Cal 60, Weights, Magnetic Stand, Marshall Press'), (952, 3523, 952, '724-321-1666 Dean', '724-783-2492 Fax / 7', '10373 State Route 85', 'Rt. 422 & Rt. 85', 'Rural Valley', 'PA', '16201', '', ' Rt. 422 turn off on Rt. 85, 9 miles on the right '), (953, 3524, 953, '(814) 472-7700 ext.', '(814) 472-4221 Fax', '725 West Triumph Street', '', 'Ebensburg', 'PA', '15931', '7:30 am - 4:30 pm', ' *** ISO Requested*** ***continued*** 422E to Ebensburg. At light turn left onto High Street. Go 2 1/2 blocks to BP station. Make left onto Marian Street. Go approx. 6 blocks to Highland. Make left onto Highland. Go 2-3 blocks - site on right. Lab in back of large white bldg. Cal 60, Weights, Magnetic Stand, Marshall Press Elevation 2140 Feet, Long. 78.725*W, Lat. 40.485*N Dead Weight Correction Value 0.9992'), (954, 3525, 954, '814-342-5203', '814-342-1489 Fax ', '740 Laurel Run Road ', '', 'West Decatur', 'PA', '16878', '8:00 am - 4:00 pm ', ' I-80 (East), Exit 123, merge onto SR-970 (South), turn left onto US-322 (20 Eighth Division Highway), bear right onto LR17122 '), (955, 3526, 955, '814-574-6413 Brad', '814-237-4491 Fax', 'Rt. 322', '', 'Reedsville', 'PA', '17084', '', ' I-80, Exit 123, merge onto SR-970 (South), turn left onto US-322 (20 Eigth Division Highway), turn left onto US-220 (E. Plank Road), bear right onto ramp, continue on US-322, st US-322 US-322 Business Exit, continue East on Rt. 322, at Reedsville Exit, make a right, go to the light, and make a right, go thru a little town (Approx. 1 mile), on the right is a Gulf Gas Station, after the Station the trailers are on the right'), (956, 3527, 956, '814-857-7690 ', '814-857-7692 Fax', '1715 Shawville Highway', '', 'Woodland', 'PA', '16881', '6:00am - 5:00pm ', ' I-80, Exit 123, merge onto SR-970 (South), turn left onto SR-1012 need directions to the site '), (957, 3528, 957, '(814) 472-7700 ext. ', '(814) 472-4221 Fax', '725 West Triumph Street', '', 'Ebensburg', 'PA', '15931', '7:30 am -4:30 pm', ' '), (958, 3529, 958, '614-449-3366', '614-542-3680 Fax', '1600 Haul Rd', '', 'Columbus', 'OH', '43207', '', ' '), (959, 3530, 959, '419-207-7037 ', '614-887-4349', '906 N. Clark Ave', '', 'Ashland ', 'OH', '44805', '6:30 to 3', ' '), (960, 3531, 960, '561-504-4305/561-504', '561-330-9355 Fax/561', '777 West 8 Mile Road ', '', 'Whitmore Lake', 'MI', '48189', 'Open till 6 ', ' I-475 (US-23) North, continue North, when entering Michigan continue North on I-94 Bus (US-23), at I-94, Exit 37A, North on US-23, at US-23, Exit 52, bear right onto ramp, turn right onto Barker Road, left onto Main Street, bear left onto 8 mile road '), (961, 3532, 961, '810-240-9286 Marty', '248-592-9130 Fax ', '10147 Grand River', '', 'Brighton ', 'MI', '48116', '8:00am-5:00pm/8:00am-4:00pm Lab', 'I-96 West, at I-96 Exit 106B (I-496/US-127/Downtown Lansing), merge I-496 (US-127) North, continue on US-127 (US-127/Flint/ Clare), continue on ramp (Lake Lansing Road), turn left onto Lake Lansing Road 6/09 S/N 95121 ordered new digital from Testmark, adapter was '), (962, 3533, 962, '419-324-2222 x0133 S', '419-241-1808 Fax', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '8:00-5:00', '75 North, 25 North Exit, left on Jackson, right onto 12th Street (Allied Moving), North about a block on left, intersection Southard left into parking lot '), (963, 3534, 963, '419-324-2222 x 0133 ', '419-241-1808 Fax', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '8:00 AM - 5:00 PM', '75 North, 25 North Exit, left on Jackson, right onto 12th Street (Allied Moving), North about a block on left, intersection Southard left into parking lot Elevation: 615 Feet, Lat: 41.664*N, Long: 83.555*W Dead Weight Correction Value: 0.9993 sheisey@ttlassoc.com Formerly Tol Test ciott@ttlassoc.com'), (964, 3535, 964, '(616) 457-4920', '(616) 457-6440 Fax', '3373 Busch Drive SW', '', 'Grandville ', 'MI', '49418', '6:30-5:30', 'Route 196 West to Jenison Exit #69B - for Chicago Drive West. Go West 3 miles. Southside of road (left side). '), (965, 3536, 965, '303-977-8480 Linda', '303-971-5635 Fax', '12257 South Wadsworth BLVD', '', 'Littleton', 'CO', '80127', '', ' '), (966, 3537, 966, '307-789-0596', '307-789-0598 Fax', '94 Allegiance Circles Suite D', '', 'Evanston ', 'WY', '82931', '5-Aug', ' '), (967, 3538, 967, '941-444-3866', '941-758-9099 Fax', '6503 19th Street East, Unit F', ' ', 'Sarasota ', 'FL', '34243', '', 'Ship UPS Ground, Insure $1,000.00 per unit Use their own spreadsheet and graph for certs. 6/11 S/N 005621 shipped to: Structural Group, Inc., Saint Johns River Power Park Project, 11201 New Berlin Road, Jacksonville, FL 32226, UPS Ground, Insure $1,000.00 on 6/30/2011'), (968, 3539, 968, '609-243-3386', '609-243-2799 Fax', '100 Stellarator Rd', '', 'Princeton ', 'NJ', '8540', '', ' '), (969, 3540, 969, '609-243-3386', '609-243-2799 Fax', 'Plasma Physics Lab (Forrstall Campus)', 'US Route 1 North', 'Princeton', 'NJ', '8543', '', ' '), (970, 3541, 970, '907-562-0707', '907-562-2426 Fax', '6407 Arctic Spur Road', '', 'Anchorage', 'AK', '99518', '', ' '), (971, 3542, 971, '1-800-284-8639/ Ther', '248-486-5050 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '', ' **Must include ID# on Work Order and Certs** '), (972, 3543, 972, '317-875-7040 Dan', '317-870-0314 Fax / 3', '4105 West 99th Street', ' ', 'Carmel', 'IN', '46032', '5-Jul', ' '), (973, 3544, 973, '724-458-6391 Pine', 'Clyde D. Landreth VD', '731 Harrison Ave.', '', 'Salem', 'VA', '24153', '', ' '), (974, 3545, 974, '724-458-6391 Pine', 'Brian Cole VDOT Cont', '870 Bonham Road', '', 'Bristol', 'VA', '22405', '', ' '), (975, 3546, 975, '724-458-6391 Pine', 'Tommy Schinkel VDOT ', '6200 Elko Tract Road', '', 'Sandston', 'VA', '23150', '', ' '), (976, 3547, 976, '824-458-6391 Pine', '', 'Route 11 By-Pass', 'Commerce Road', 'Staunton', 'VA', '24402', '', ' '), (977, 3548, 977, '724-458-6391 Pine', 'Mike Burton VDOT Con', '530 Edgemont Road', '', 'Charlottesville ', 'VA', '22903', '', ' '), (978, 3549, 978, '724-458-6391 Pine', 'Charle Brown VDOT Co', '1601 Orange Road', '', 'Culpeper', 'VA', '22701', '', ' '), (979, 3550, 979, '724-458-6391 Pine', '434-856-8105 Bill Wi', '4219 Campbell Ave.', '', 'Lynchburg', 'VA', '24501', '', ' '), (980, 3551, 980, '724-458-6391 Pine', 'Wayne Bartholomew VD', '1700 North Main St.', '', 'Suffolk', 'VA', '23434', '', ' '), (981, 3552, 981, '724-458-6391 -Pine', 'Ronald Jackson VDOT ', '87 Deacon Road', '', 'Fredericksburg', 'VA', '22405', '', ' '), (982, 3553, 982, '919-549-8661', '919-549-0761 Fax', 'Material Division-Elko', '6200 Elko Tract Road', 'Sandston ', 'VA', '23150', '', ' '), (983, 3554, 983, '919-549-8661', '919-549-0761 Fax', 'Hampton Road', '1700 North Main St.', 'Suffolk ', 'VA', '23434', '', ' '), (984, 3555, 984, '919-549-8661', '919-549-0761 Fax', 'Fredericksburg District', '87 Deacon Road', 'Fredericksburg', 'VA', '22405', '', ' '), (985, 3556, 985, '919-549-8661', '919-549-0761 Fax', 'Lynchburg District', '4219 Campbell Ave.', 'Lynchburg', 'VA', '24502', '', ' '), (986, 3557, 986, '919-549-8661', '919-549-0761 Fax', 'Culpepper District', '1601 Orange Road', 'Culpepper ', 'VA', '22701', '', ' '), (987, 3558, 987, '606-432-0300', '606-433-1820 Fax', '183 Tollage Creek', '', 'Pikeville', 'KY', '41501', '', ' '), (988, 3559, 988, '443-829-2158 Kevin ', '410-847-3354 Fax', '810 Pulaski Highway ', '', 'Joppa', 'MD', '21085', '', ' I-95, Exit 67A (MD-43/White Marsh Blvd. East/US-40), merge onto SR-43 (White Marsh Blvd.) (East), turn off ramp (US-40/Pulaski Hwy) bear right (NE) onto US-40 (Pulaski Hwy) '), (989, 3560, 989, 'Dave Brown 443-829-6', '410-612-0732 Fax', '14824 Southlawn Drive', '', 'Rockville', 'MD', '20850', '', ' From Baltimore, MD Interstate 95 to Exit 100 (Rte 272) South to Rte 40 West, 1 mile, at red light make a right onto Red Toad Road, 1 1/3 mile (go over RR Bridge) immediate next right. Northeast Business Center, go down long lane past red brick building, go all the way around so plant is on your left, huge truck door at the end of building '), (990, 3561, 990, '703-444-4200', '703-444-4368 Fax', '108 Powers Court', '', 'Sterling ', 'VA', '20166', '', 'Close to Tyson Corner off Rt 123 '), (991, 3562, 991, '419-738-6014', '', '12201 Wapak-Fryburg Rd', '', 'Wapakoneta', 'OH', '45895', '', ' '), (992, 3563, 992, '216-839-7280/216-839', '216-839-7280/216-839', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '', ' I-271 (Either Direction), head West on Chagrin Blvd. (422), our building is almost 0.7 Miles on the left side of the street the driveway is immediatley before the \"BASF\" sign. The center lane is a turning lane, ask for Paul Pridemore at the front desk. Dan Zojtko Cell 330-646-5834'), (993, 3564, 993, '276-645-2275 Brian C', '276-669-4799 Fax / 2', '870 Bonham Road', 'P.O. Box 1768', 'Bristol', 'VA', '24201', '', ' ***Check prices before bidding*** 81 South Exit 7, Bristol, make left onto Airport Road, to light Bonham Road, turn left to light, 2nd brick on right ** Look ** **Do Not add any equipment of do any repairs unless u call CSI first** ******Leave Copis of Run Sheets******* **Must keep set Schedule**'), (994, 3565, 994, '540-899-4243 - Ron', '804-328-3136 Fax', '87 Deacon Road', '', 'Fredericksburg', 'VA', '22405', '7:30 am - 4:00 pm ', ' ***Check prices before bidding*** Route 3 East to Cool Springs Road. Make a left. Go straight thru red light. 1 Mile on left. ** Look ** **Do Not add any equipment of do any repairs unless you call CSI** *****Leave copies of Run Sheets***** **Must Keep Set Schedule**'), (995, 3566, 995, '434-856-8105 Bill W', '', '4219 Campbell Ave.', '', 'Lynchburg', 'VA', '24501-4801', '', ' ***Check prices before bidding*** 81 South to 64 East. Exit 99 - 250 East 151 South to Route 6 (Left East) Right-West 29 South to Bypass (cross river) West 460. stop light first exit (501), turn left, go South, first building on right lower gate '), (996, 3567, 996, '540-387-5517 / 540-3', '804-328-3136 Fax', '731 Harrison Ave.', '', 'Salem', 'VA', '24153', '', ' ***Check prices before bidding*** 81 South, Exit 140, right turn, 311 South, Thompson, 1 1/2 mile left, Cleveland, stop sign, right on Craig, 1 block, left on Harrison, Gate B second entrance on left, straight back machines on right Password for digital S/N 64138 12345'), (997, 3568, 997, '540-290-2531 Robert ', '804-328-3136 Fax ', '811 Commerce Road', '', 'Staunton', 'VA', '24401', '', ' ***Check prices before bidding*** Exit 225 turn Right 2nd light turn left Rt. 11, 3 to 4 miles turn right at light bear left center lane (Y), 11 South 1.2 Miles on left, North 81, 225 turn left on West 262 ** Look ** **Do Not add any equipment of do any repairs unless you call CSI** **Must Keep Set Schedule** ***Leave copies of Run Sheets***'), (998, 3569, 998, '757-925-2684 Wayne B', '804-328-3136 Fax / 7', '1700 North Main Street', '', 'Suffolk', 'VA', '23434', '', ' ***Check prices before bidding*** 64 East to 664 South to 58 West - toward Suffolk. Turn Right. Pass truck scales to Route 10 Exit. Stop light - make Left. Next stop light make Left at Hardees. 1/2 mile on Left, turn in next to Ford dealer. Building is between office and Hospital. '), (999, 3570, 999, '804-524-6212 Susan ', '', '2430 Pine Forest Drive ', 'District Lab Room #100 (Richmond)', 'Colonial Heights', 'VA', '23834', '', 'I-495, Exit 57A, merge I-95 South, left onto I-64 (I-95), at I-64, Exit 75, on I-95 (Richmond-Petersburg), at I-95, Exit 58, (VA-620/ VA-746/Walthall), left onto SR-620 (Woods Edge Road), left onto US-1 (US-301), left onto Pine Forest Drive ** Look ** **Do Not add any equipment of do any repairs unless you call CSI** *****Leave copies of run sheets***** **Must Keep Schedule**'), (1000, 3571, 1000, '412-782-2319/412-303', '412-782-2376 Fax', '80 Hafner Street', '', 'Etna', 'PA', '15223', '', ' Butler, PA, 2nd light (Freeport Road), make a right, go across RR Tracks, at stop sign go straight thru, make a right at Etna Industrial Plant, go 3/4 mile, left hand side, go in bldg. '), (1001, 3572, 1001, '412-580-2793 Larry C', '412-268-7813 Fax', 'Frew Street, Porter Hall ', '', 'Pittsburgh', 'PA', '15213', '', ' I-579 (SE), turn off ramp (I-376E/Oakland/Monroeville), continue on the Blvd. of the Allies, continue on SR-885 (Blvd. of the Allies), turn off ramp onto Forbes Avenue, turn right onto Schenley Drive to Frew Street, it is the 2nd building from the bridge (Across from the Phipps Conservatory), at loading dock, machine is 100 feet from dock inside building '), (1002, 3573, 1002, '301-619-7857 Phil', '301-619-6933 Fax/301', 'Bldg. 1054', 'Patchel Street', 'Frederick', 'MD', '21702', '', ' I-70, Exit 48 (US-40 / Frederick), bear right onto US-40 (Baltimore National Pike), turn left onto Bowers Road, turn right onto Shookstown Road, bear left onto Montevere Lane, left onto Rosemont Avenue, right onto Old Farm Drive, turn right ***Gate Access Required*** turn right onto Beasley Drive, right onto Patchel Street, to lab on right '), (1003, 3574, 1003, '434-973-3232 ', '434-973-3238 Fax', '1601 Airport Road', '', 'Charlottesville', 'VA', '22911', '8:00 am - 5:00 pm', '64 East Exit 247, 33 East to Rt 33/Rt 29 South 5 miles Airport Rd turn right , next right Cofey & Air Formerly Engineering Consulting Services '), (1004, 3575, 1004, '804-328-3180 David', '804-328-3136 Fax / 8', '6200 Elko Tract Road', 'Physical Laboratory(Not a mailing address)', 'Sandston ', 'VA', '23150', '', 'Mail Certs to Bill to Address: Attn: David Guffey '), (1005, 3576, 1005, '989-956-2020', '734-522-6427 Fax / C', '2520 S. University Park Drive', '', 'Mt. Pleasant', 'MI', '48858', '', ' Job site contact Craig 989-956-2020 '), (1006, 3577, 1006, '(586) 294-6430', '(586) 294-6912 Fax', '30066 Little Mack', '', 'Roseville', 'MI', '48066', '8:00-5:00 Office 8:00-4:30 Site', 'I-94 East to 12 Mile Rd. East on 12 Mile Rd. to Little Mack (1/2 mile) Go North on Little Mack - 1/2 mile on the East Side. GO TO 45K NEXT TIME-THEY DIDN\'T HAVE BIG ENOUGH CABLE THIS TIME 7/2013 Put on COD terms after 89 days past due payment'), (1007, 3578, 1007, '419-334-6091 x 381 R', '419-334-9445 Fax ', '1512 Old Oak Harbor Road ', '', 'Fremont', 'OH', '43420', '', ' US-20 SR-19 Exit, bear right, merge onto SR-19 (South), to Oak Harbor Road, continue to Old Oak Harbor Road *** No Special Favors of Free Advice*** '), (1008, 3579, 1008, '440-593-6225 / 419-7', '440-593-6269 Fax / 4', '1370 Chamberlain Blvd. ', '', 'Conneaut', 'OH', '44030', '8:00 am - 5:00 pm ', 'to I 90 W take 6N Exit turn right drive to make left on US-20 follow through Conneaut to University Hospital, just after Hospital at light turn right on Parish Road go over bridge make right on first road plant on right. turn right, go over overpass site on the right Acct: Anna Kerchofski 440-593-8107 QA: Michelle Bates 440-593-8183 mbates@generalaluminum.com Kelly Archer karcher@general aluminum.com'), (1009, 3580, 1009, '330-721-6310/Alex 33', '330-723-4510 / Alex ', '955 Lake Road', '', 'Medina', 'OH', '44256', '', ' '), (1010, 3581, 1010, '248-454-6300', '248-454-6359 Fax', '37358 Utica Road', '', 'Sterling Heights', 'MI', '48312', '7:00 am - 4:00 pm', ' I-75, Exit 47B, off ramp turn right onto 24th Street, left onto Jefferson Avenue West, under bridge Pete McCaskill 248-535-3393 '), (1011, 3582, 1011, '313-873-4711 Office', '313-873-4733 Fax', '7991 Hartwick Street', '', 'Detroit', 'MI', '48211', '8:00 am - 5:00 pm', ' ***ISO Requested*** ***MUST CALL FOR PO BEFORE COMING TO FACILITY*** For PO# must call Ken - 313-873-4711 - Fax 313-873-4733 Cell 269-720-2006 I-75 North to Clay/E Grand - go through lights to Euclid make right for 1 block'), (1012, 3583, 1012, '(304) 464-4441 ext. ', '(304) 464-4013 Fax', '362 Waverly Road', 'PO Box 265', 'Waverly', 'WV', '26184', '7:00 am - 4:30 pm', 'Only write 6 month cal due date on all labels. ***Mail Certs to Job Site Address*** Near Parkersburg, WV) Take Rt. 77 to Exit #179, then take Rt. 2N about 5 miles. Turn left at cell tower onto Corbitt Hill Road. Watch for signs (Carr Concrete). At \"Y\" turn left onto Waverly Road. Cross RR tracks and bear left. OTC - Old cast iron assembly - Pressure machine to 225K ONLY !!!!'), (1013, 3584, 1013, '216-839-7120 Paul ', '216-839-7213 Fax ', '23700 Chagrin Blvd. ', '', 'Beachwood', 'OH', '44122', '', ' ***Mail & fax all Invoices to Paul Pridemore*** I-271 (Either Direction), head West on Chagrin Blvd. (422), our building is almost 0.7 Miles on the left side of the street the driveway is immediatley before the \"BASF\" sign. The center lane is a turning lane, ask for Paul Pridemore at the front desk. Dan Zojtko Cell 330-646-5834'), (1014, 3585, 1014, '814-224-2121 ', '814-766-0222 Fax ', 'Prestress Plant', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', 'Annette - Prestress Secretary', 'MONTH & YEAR ONLY ON LABEL ***Continued*** ***6 MONTH SCHEDULE*** (January & July) Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. **Send certs to: 8180 woodbury Pike, Roaring Spring, PA 16673** *****Attn: Anthony Gale ***** ***GET P.O. NUMBER ON SITE***'), (1015, 3586, 1015, '814-224-2121 ', '814-766-0222 Fax ', 'Prestress Plant', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', 'Annette - Prestress Secretary', 'Take Roaring Springs exit off Rt. 220. Take 36 South (about 1 mile) on left. **Send certs to: 8180 woodbury Pike, Roaring Spring, PA 16673** ***Attn: Anthony Gale*** PUT MONTH, DAY & YEAR ON STICKERS ***GET P.O. NUMBER ON SITE***'), (1016, 3587, 1016, '270-706-6689 Ernest', '270-268-6435 Cell Er', '310 Steel Drive', '', 'Elizabethtown', 'KY', '42701', '', 'I-80 W to I-71 S towards Louisville, KY, take I-65 S towards Elizabethtown, KY to 310 Steel Drive '), (1017, 3588, 1017, '330-422-7561(O)330-9', '330-626-4530 Fax ', '9658 State Route 43', '', 'Streetsboro', 'OH', '44241', '7:00 am - 3:00 pm ', ' I-80 West, Exit 15, merge I-80 (Ohio Tpke) (North), at Ohio Tpke, Exit 87, merge SR-14 (Cleveland Road), continue on ramp bear right onto 14 East (Cleveland Road), left onto N-43 (Cleveland Canton Road), arrive 9658 State Route 43 '), (1018, 3589, 1018, '330-483-3161 x 6127 ', '330-483-0111 Fax/330', '201 Columbia Road', '', 'Valley City', 'OH', '44280', '7:00 am - 4:00 pm', 'Route 77N , Exit #137B to 18W on west side of Akron. Follow to Medina to Route 252 N for approx 8 miles. Site on right. (If coming from Cleveland, take Turnpike 71 to 82 then 252. Go south about 3 miles) 9/08 S/N 386191-1027 gauge was broken, Daughtridge drop '), (1019, 3590, 1019, '(304) 425-8955', '(304) 425-1171 Fax', ' 460 Courthouse Road', '', 'Princeton', 'WV', '24740', '7:00 am - 5:00 pm ', 'Take Turnpike 77S to Princeton Exit #9. Take Rt. 460W toward Bluefield, approx. 6 miles. Get on Rt. 19N. Site about 100 yards on left - behind Ford Dealer Forney has block head which must be removed - dolly needed Forney machine eats return springs - always carry a set for this job. '), (1020, 3591, 1020, '304-646-5442 Joe\'s C', '', '231 Valley Road', '', 'Milwood', 'WV', '25262', '', ' 7/13 were 75 days past due if this happens again they will be COD Formerly M & H Concrete Structures, Inc. Formerly CL Belt Construction '), (1021, 3592, 1021, '(304) 286-4524 Offic', '(304) 286-2506 Fax', '865 Clinic Road', '', 'Ivydale', 'WV', '25113', '7:00 am - 5:30 pm', '(NE of Charleston) on I-79. Take Exit #40. Take a right at end of ramp onto Rt. 16, 1st road on left (Clinic Drive), shop on left 7/13 were 75 days past due if this happens again they will be COD Formerly M & H Concrete Structures, Inc. Formerly CL Belt Construction '), (1022, 3593, 1022, '304-984-3333', '304-984-0908 Fax ', '3045 Martins Branch Road ', '', 'Sissonville', 'WV', '25312', '7:30-3:00', ' I-77 South, Exit 114, left onto Rt. 21, at traffic light turn right onto Rt. 622, 2 miles down road turn left on Martins Branch Road, about 2 miles on left '), (1023, 3594, 1023, '937-294-3212 / 937-4', '937-296-7983 Fax/937', '2671 E. River Road', '', 'Dayton', 'OH', '45439', '7:30 am - 4:00 pm', ' Dryden Road, take left, first light, arbor, take left, dead end, left last building, first drive, right turn Tax exempt # 31-0508807'), (1024, 3595, 1024, '989-356-6375', '(231) 775-3135 Fax', '3205 US-23 South', '', 'Alpena', 'MI', '49707', '', ' I-96, Exit 148B (US-23/Flint), continue North on US-23, on I-75 (US-23), bear right onto US-23, continue on ramp, bear right onto US-23 (SR-13), stay on US-23 (N Huron Road) to 3205 US-23 '), (1025, 3596, 1025, '231-237-1367', '231-547-6202 Fax ', '16000 Bells Bay Road ', '', 'Charlevoix', 'MI', '49720', '7:00 am - 3:00 pm ', ' From Traverse City, take US 31 North for 40 miles towards Charlevoix MI, turn left onto Bells Bay Road, follow Bells Bay Road to the end 2 miles, plant is located at the end of Bells Bay Road '), (1026, 3597, 1026, '989-239-3463 Jennife', '989-755-4349 Fax ', '6010 Melbourne Road', '', 'Saginaw', 'MI', '48604', '8:00am-5:30pm/6:00am-6:00pm Job ', ' ***6 Month Schedule (April & October)*** ***ISO Requested*** For PO# must call Cindy 989-755-4348 - Fax 989-755-4349 Cell 989-239-2447 ***MUST CALL FOR PO BEFORE COMING TO FACILITY*** I-275 North, merge I-96 West, at I-96, Exit 148B, US-23 North, at I-75 (US-23), Exit 154, left onto Adam Street, right onto Kochville Road '), (1027, 3598, 1027, '724-785-0801 / 717-7', '724-745-6179 Fax / 4', '520 State Road', ' ', 'Bensalem', 'PA', '19020', '', ' I-70, Exit 37A (PA-43 TOLL/California), merge SR-43 Toll, continue South on SR-88 (SR-43 TOLL), at SR-88, Exit A, stay on SR-88 (South), turn left onto Ridge Road, bear left onto Gills Road, turn left onto Vesta Street in town of Denbo, PA Main Office: Cannonsburg, PA 724-745-6039 Art '), (1028, 3599, 1028, '703-471-8400 x 218 K', '703-834-5527 Fax Ke', '14026 Thunderbolt Place, Suite 100', '', 'Chantilly', 'VA', '20151', '6:00am-6:00pm/1:00am-7:00pm Job', 'From 66 - Take Exit #53 for Rt. 28N. Get on 50E at intersection Rt. 50/28. Left lane, make Left on Centerville Road. Go 1/4 mil. Turn into Dulles Business Park on left. Make left on Skyhawk Drive, right on Thunderbolt Place. ECS end 1st building on right . Go around back to loading dock. '), (1029, 3600, 1029, '(304) 877-5708 x 830', '(304) 877-5987 Fax', '1700 North Sand Branch Road', '', 'Mt. Hope', 'WV', '25880', '7:00 am - 3:00 pm', 'Rt. 19S to mall . Make right on North Sand Branch Road. 3 miles from mall. Formerly Beckley Stone Company Formerly Pioneer Mid Atlantic * IF JIM ISN\'T THERE, ASK FOR TIM AT THE CONCRETE PLANT'), (1030, 3601, 1030, '859-991-8598', '859-441-7986 Fax', '5837 Mary Ingles Highway', '', 'Melbourne ', 'KY', '41059', '', ' '), (1031, 3602, 1031, '570-357-7678 Bob/ 57', '', '490 South Empire St.', '', 'Wilkes-Barre', 'PA', '18702', '', ' '), (1032, 3603, 1032, '573-259-3642 Luke C', '412-287-3333 Chris S', '1750 Power Plant Road', '', 'Homer City', 'PA', '15748', '7:00 am- 4:30 pm', ' Enter Main Entrance, go back to Gaurd Shack. Take safety training if needed. Conex box behind smoke stack. '), (1033, 3604, 1033, '206-622-1151/1-800-6', '206-682-6651 Fax ', '8250 5th Avenue South', ' ', 'Seattle', 'WA', '98108', '', ' Former Ron Crane Client '), (1034, 3605, 1034, '307-685-4615', '307-685-4555 Fax /30', '748 T-7 Road', '', 'Gillette', 'WY', '82718', '', ' Former Ron Crane client '), (1035, 3606, 1035, '703-704-9819', '703-704-9683 Fax ', 'CMRL / Bldg. 367', '585 Wilson Road', 'Fort Belvoir', 'VA', '22060-5824', '', ' I-95, Exit 166A (Newington/Fort Belvoir), merge onto SR-7100 (Fairfax County Pky), turn left onto US-1 (Richmond Hwy), turn right onto Pohick Road, turn right onto Gunston Road, *Gate Access Required* continue South on Gridley Road, continue SE on Totten Road to Wilson Road '), (1036, 3607, 1036, '434-293-1983', '804-328-3136 Fax ', '530 Edgemont Road', 'University Station - Research Council', 'Charlottsville', 'VA', '22903', '8:00 am - 5:00 pm ', ' ***Check prices before bidding*** *E-mail Invoices to lora.adkins@VDOT.Virginia.gov and generaladministrativeservices@VDOT.Virginia.gov I-64 East, at I-64, Exit 118 bear right onto US-29, at US-29 US-29 Bus Exit, right onto US-29 Bus (Fontaine Avenue), left onto Stadium Road, left onto University of Virginia, right onto Observatory Road, arrive Edgemont Road '), (1037, 3608, 1037, '807-328-3180 David', '804-328-3136 Fax / 8', '6200 Elko Tract Road', 'Physical Laboratory (Not a mailing address)', 'Sandston', 'VA', '23150', '', ' ***Check prices before bidding*** I-95 South to 295 East towards Norfolk Exit. 60 East to light, turn Right on Technology Blvd. 1st Left turn behind building. Password: 7029 Mail Certs to Bill to address: Attn: David Guffey Elevation: 165 Feet, Lat: 37.523*N, Long: 77.316*W Dead Weight Correction Value 0.9993'), (1038, 3609, 1038, '804-328-3180 David ', '804-328-3136 Fax / 8', '6200 Elko Tract Road', 'Physical Laboratory (Not a mailing address)', 'Sandston', 'VA', '23150', '', 'I-95 South to 295 East towards Norfolk Exit. 60 East to light, turn Right on Technology Blvd. 1st Left turn behind building. Geo Comp need Dial Indicator Humboldt Passcode 7029 Elevation: 165 Feet, Lat: 37.523*N, Long: 77.316*W Dead Weight Correction Value 0.9993 '), (1039, 3610, 1039, '804-328-3180 David', '804-328-3136 Fax / 8', '6200 Elko Tract Road', 'Physical Laboratory (Not a mailing address)', 'Sandston', 'VA', '23150', '', ' ***Check prices before bidding*** ***continued*** Mail Certs to Bill to address: Attn: David Guffey I-95 South to 295 East toward Norfolk exit. 60 East to light, turn right on Technology Boulevard. 1st Left , turn behind building. Elevation: 165 Feet, Lat: 37.523*N, Long: 77.316*W Dead Weight Correction Value 0.9993'), (1040, 3611, 1040, '(724) 357-9696/724-3', '724-463-7915 Fax', 'Rt. 422', '', 'Indiana', 'PA', '15701', '8:00 am - 5:00 pm ', 'Rt. 422 Near Pike\'s Peak Nursery 10 Miles East of Indiana on Rt. 422 , Right side of road '), (1041, 3612, 1041, '804-328-3180 David/8', '804-328-3136 Fax/804', '6200 Elko Tract Road', 'Physical Laboratory (Not a Mailing address)', 'Sandston ', 'VA', '23150', ' ', ' ***Check prices before bidding*** I-495, Exit 176B, right onto Pershing Avenue, right onto Stovall Street, right onto Eisenhower Avenue Office Address: 14685 Avion Parkway, Chantilly, VA 20151 '), (1042, 3613, 1042, '540-829-7570 / 540-7', '540-829-7583 Charles', '1601 Orange Road', '', 'Culpeper', 'VA', '22701-0671', '8:00 am - 3:00 pm ', ' ***Check prices before bidding*** I-81, Exit 300, merge I-66, at I-66, Exit 6, right onto US-340 (US-522), left onto US-522 (N Commerce Avenue), right onto US-211 (US-522), left onto US-522 (Sperryville Pike), left onto Orange Road ** Look ** **Do Not add any equipment of do any repairs unless you call CSI** *****Leave copies of run sheets ***** **Must Keep Set Schedule ** lora.adkins@vdot.virginia.gov'), (1043, 3614, 1043, '804-328-3180 David ', '804-328-3136 Fax / 8', '6200 Elko Tract Road', 'Physical Laboratory (Not a mailing address)', 'Sandston', 'VA', '23150', '7:30 am - 4:00 pm', 'I-95 South to 295 East towards Norfolk Exit. 60 East to light, turn Right on Technology Blvd. 1st Left turn behind building. Mail Certs to Bill to address: Attn: David Guffey Password: 7029 Paul Wheeler Winclisp - www.vjtech.co.uk 440-118-979-8877'), (1044, 3615, 1044, '804-328-3180 David/8', '804-328-3136 Fax / 8', '6200 Elko Tract Road', 'Physical Laboratory (Not a mailing address)', 'Sandston', 'VA', '23150', '', 'I-95 South to 295 East towards Norfolk Exit. 60 East to light, turn Right on Technology Blvd. 1st Left turn behind building. *** LOOK *** **Do Not add any equipment of do any repairs unless you call CSI** *****Leave copies of Run Sheets ***** ** Must Keep set Schedule **'), (1045, 3616, 1045, '703-383-2162 / 724-2', '804-328-3136 Fax / B', '10228 Residency Rd', ' ', 'Manassas', 'VA', '20110', '7:30 am - 4:00 pm', ' ***Check prices before bidding*** SR-267 (Dulles-Greenway) South, at SR-267, Exit 9A, merge onto SR-28 (Sully Road), south, turn off ramp, US-50 (Lee Jackson Memorial Hwy), right onto Stonecraft Blvd., right onto Avion Parkway Send Certs to: Chantilly District Materials Lab, 4975 Alliance Drive, Fairfax, VA 22030'), (1046, 3617, 1046, '434-293-1983/Richard', '434-293-1990', '530 Edgemont Road', 'University Station - Research Council', 'Charlottsville', 'VA', '22903', '', 'I-64 East, at I-64, Exit 118 bear right onto US-29, at US-29 US-29 Bus Exit, right onto US-29 Bus (Fontaine Avenue), left onto Stadium Road, left onto University of Virginia, right onto Observatory Road, arrive Edgemont Road ** Look ** **Do Not add any equipment of do any repairs unless you call CSI** ****Leave copies of Run Sheets***** **Must Keep Schedule**'), (1047, 3618, 1047, '734-893-1215', '800-780-0023 Fax', '12100 Wayne Road ', '', 'Romulus', 'MI', '48174', '8:00 am - 5:00 pm ', ' From Detroit I-94 West, Exit 196, turn off ramp for 0.3 miles towards Romulus/Wayne, turn left, South, onto Wayne Road Tax Exempt: 204884837'), (1048, 3619, 1048, '(616) 456-5469', '(616) 456-5784 Fax', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '8:00 am - 5:00 pm Flexible', '131 N to I196 E, Fuller Ave Exit, right on Fuller to Mich. 1st light, turn left, Mich.East to 1st light, turn left north 1 st on left before over pass '), (1049, 3620, 1049, '(231) 723-1198', '(231) 723-1194 Fax', '361 First St.', '', 'Manistee', 'MI', '49660', '8:00 am - 5:00 pm Mon. - Fri.', 'See map M-55 to 31 S, turn left at light, go 3 miles to First Street (west turn) go around to back. '), (1050, 3621, 1050, '(231) 825-2473', '(231) 825-8015 Fax', '320 N. Pine Street', '', 'McBain ', 'MI', '49657', '8:00 am - 5:00 pm', 'Off Rt 131 Southeast of Cadillac Go east 9 miles to McBain - at blinker light, turn left (North) go 3/8 mile on east side (400 ft off road - batch plant) Across from Industrial Park. From Cadillac: SSE to M66 South to McBain Ballfield on right side - 2nd paved driveway on left side. '), (1051, 3622, 1051, '269-343-9600', '269-343-9601 Fax ', '3614 Lake Street', '', 'Kalamazoo', 'MI', '49048', '9:00 am - 5:00 pm', 'Take 94 West to Kalamazoo. Take Sprinkle Rd. Exit #80 onto Sprinkle Road, turn left onto Lake Street Bldg. behind 3616 Federick Construction Old Cast Iron Ram '), (1052, 3623, 1052, '734-216-1211 Dave\'s ', '517-347-7740 Fax', '3130 Pine Tree Road', '', 'Lansing', 'MI', '48911', '8:00am - 5:00pm ', 'Off Jolly Road & 127 '), (1053, 3624, 1053, '231-206-4064 Eric Ce', '231-943-0914 Fax', '1371 Trade Centre Drive', '', 'Traverse City ', 'MI', '49696', '8:00 am - 5:00 pm ', ' From Manistee on local roads Southwest for 164 yards, bear right (West) onto 5th Street , turn right (North) onto US-31 Cypress Street (58 Miles), turn right (East) onto South Blue Star Drive '), (1054, 3625, 1054, '(616) 456-5469', '(616) 456-5784 Fax', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '8:00 am - 5:00 pm Flexible', '131 N to I196 E, Fuller Ave Exit, right on Fuller to Mich. 1st light, turn left, Mich. East to 1st light, turn left north 1st on left before over pass '), (1055, 3626, 1055, '(616) 456-5469', '(616) 456-5784 Fax', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '8:00 am - 5:00 pm Flexible', '131 N to I196 E, Fuller Ave Exit, right on Fuller to Mich. 1st light, turn left, Mich. East to 1st light, turn left north 1st on left before over pass '), (1056, 3627, 1056, '(616) 456-5469', '(616) 456-5784 Fax', '693 Plymouth Avenue NE', '', 'Grand Rapids', 'MI', '49505', '8:00 am - 5:00 pm Flexible', '131 N to I196 E, Fuller Ave Exit, right on Fuller to Mich. 1st light, turn left, Mich. East to 1st light, turn left north 1st on left before over '), (1057, 3628, 1057, '540-355-2301 Cell ', '', '186 Lakewood Forest Road ', '', 'Moneta', 'VA', '24121', '7:00 am - 5:00 pm ', ' Rt. 460 at Bedford, VA (Between Roanoke & Lynchburg), take Rt. 122 South to Moneta, VA (Approx. 15 Miles), at traffic light by FoodLion turn left on Rt. 616, go 1 1/2 Miles and take left on Lakewood Forest Road, first right, 2nd bldg on right '), (1058, 3629, 1058, '757-485-5228 ', '757-487-2992 Fax', '3801 Cook Blvd. ', '', 'Chesapeake', 'VA', '23323', '', ' I-664 (Hampton Roads Beltway) (South), merge onto I-264 (North East), at I-264, Exit 2A (Greenwood Dr East), right onto Greenwood Drive, right onto Cavalier Blvd., right onto Cook Blvd. '), (1059, 3630, 1059, '814-598-6515 Ed Cell', '814-837-9155 Fax/814', '98 South Fraley Street', '', 'Kane', 'PA', '16735', '', ' '), (1060, 3631, 1060, '814-598-6515 Ed Cell', '814-837-9155 Fax/814', '15 Mohney Lane ', '', 'Kane', 'PA', '16735', '', ' 4/10 S/N RJ103, RJ104, RJ105, RJ107, RJ108, RJ109, RJ110'), (1061, 3632, 1061, '440-248-0100 x 3760 ', '440-848-8521 Fax ', '31700 Solon Road', '', 'Solon', 'OH', '44139', '7:00 am- 3:00 pm', 'Take 480 East to 91N and just before intersection with Rt. 422 turn right at light onto Solon Road. Make right at sign for Erico just before. underpass at Rt. 422 Need tensile fixtures for Instron & Bond pull tester Use 300K system & 1K cell on Bond pull tester Need dead weights/gram weights for Instron Need procedure in files for Accutek Machine Elev: 1036 Feet, Lat: 41.390*N, Long: 81.441*W, DWCV: 0.9993'), (1062, 3633, 1062, '616-246-3008', '', '300 36st Street SW', 'R.C.S.S. RMA 6017', 'Grand Rapids', 'MI', '49548', '', ' '), (1063, 3634, 1063, '724-947-9401', '724-947-9601 Fax', '201 Smith Township State Road', '', 'Burgettstown', 'PA', '15021-2113', '', ' '), (1064, 3635, 1064, '910-686-9114', '910-686-9666 Fax', '7650 Market Street', '', 'Wilmington', 'NC', '28411', '8:00am - 5:00pm', ' MArket Street to Ogden Business Park '), (1065, 3636, 1065, '864-271-2840', '864-271-8124 Fax', '18 Woods Lake Road', '', 'Greenville', 'SC', '29607', '', ' '), (1066, 3637, 1066, '920-465-1313', '920-465-6430 Fax', '2785 Manitowoc Road', '', 'Green Bay', 'WI', '54311-6633', '', ' '), (1067, 3638, 1067, '478-474-2941', '478-471-0202 Fax', '117 Preston Court', '', 'Macon', 'GA', '31210', '7:00am - 5:30pm', ' '), (1068, 3639, 1068, '804-261-3700', '804-261-0418 Fax ', '5400 Byrdhill Road ', '', 'Henrico', 'VA', '23228', '', ' '), (1069, 3640, 1069, '(724) 929-2125', '(724) 929-3011 Fax', 'Route 519', '', 'Marianna', 'PA', '', '7:00 - 3:00', 'I-79 South to Houston exit. Make right on Rt. 519. Go down road about 300 yards. Batch plant by Amaco gas station. 412-619-2011 Ed\'s pager '), (1070, 3641, 1070, '', '', '', 'JOB SITE ', '', '', '', '7-3:30', 'From Kittaning, take 28 South to Exit 15. Cross long bridge on 366, on right hand side is Valley High School. At next set of lights, go West on 56 for 1/4 mile. Sheetz on left hand side, make right at stop sign. At 2nd stop sign, make left. Cross RR tracks and make right to site. '), (1071, 3642, 1071, '(610) 670-9055', '(610) 678-2719 Fax', '1801 Penn Avenue', '', 'Wyomissing Hills', 'PA', '19609', '', ' '), (1072, 3643, 1072, '205-283-6480 Jeremy ', '', '34200 Vine Street', '', 'Lake City', 'OH', '', '7:00-5:00 M-F', ' '), (1073, 3644, 1073, '(717) 498-9970 Marty', '(717) 325-8892 - Job', 'Hickory Run Plaza', 'Exit #35, NE PA Turnpike', 'Christman\'s', 'PA', '', '8:00-3:00 Office 7:00-3:00 Lab', 'Hickory Run Plaza 2 miles past Exit #35, NE PA Turnpike (Rt. 9) Near Christman\'s, PA '), (1074, 3645, 1074, '', '', '805 Wisteria Drive', '', 'South Charleston', 'WV', '25309', '', ' '), (1075, 3646, 1075, '(717) 569-0441 Ext. ', '(717) 569-5066 Fax', 'Rt. 72N', '', 'E. Petersburg', 'PA', '', '8:00-4:30', '283 East to 722 722 East to 72 72 North --Big Quarry on Left. '), (1076, 3647, 1076, '(804) 395-8265 Ext:', '(804) 395-8241 Fax', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '', 'From Richmond, VA to Farmville from 460W. Stay on 460W, 1st exit to Farmville. Stop light go straight at intersection and go downtown. (Still on 460W) Pass Pizza Hut / Hospital. RR bridge overpass. Stop light - take right. Industrial park. 3 Carbone of America plants. '), (1077, 3648, 1077, '(804) 395-8265', '(804) 395-8241 Fax', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '', 'From Richmond, VA to Farmville from 460W. Stay on 460W, 1st exit to Farmville. Stop light go straight at intersection and go downtown. (Still on 460W) Pass Pizza Hut / Hospital. RR bridge overpass. Stop light - take right. Industrial park. 3 Carbone of America plants. '), (1078, 3649, 1078, '(804) 395-8265', '(804) 395-8241 Fax', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '', 'From Richmond, VA to Farmville from 460W. Stay on 460W, 1st exit to Farmville. Stop light go straight at intersection and go downtown. (Still on 460W) Pass Pizza Hut / Hospital. RR bridge overpass. Stop light - take right. Industrial park. 3 Carbone of America plants. '), (1079, 3650, 1079, '(412) 787-1266', '', '5170 Campbells Run Road', '', 'Pittsburgh', 'PA', '15205', '', 'I-376 East from Pittsburgh Exit #8. Left onto Forward Ave. Approx 1/4 mile - hard left onto westbound ramp. Approx. 1/2 mile yard & trailers on right. See map. '), (1080, 3651, 1080, '(570) 327-6113 - dis', '', '2603 Reach Road', '', 'Williamsport', 'PA', '17701', '8:00 - 4:00 Office / 6:00 - 4:00 Job Site', 'Route 22 North Exit Reach Road. Left off ramp to \"T\". Turn Right. Second buliding on Right. '), (1081, 3652, 1081, '(570) 546-2361', '(570) 546-7060 Fax', 'RD4 Box 275', '', 'Muncy', 'PA', '17756', '7:00-5:00 (varies both ways)', 'From Williamsport, take Rt. 180E. Take Lycoming Mall exit. Go around mall to stoplight. Turn left. Go 1/4 mile Bear to right at \"Y\" into Muncy. Go 2 miles to intersection Blessing Insurance Agency. Turn left onto SR 2053 Go to 2nd crossroads (1 1/2 miles). Site on left. Blue office building. '), (1082, 3653, 1082, '724-258-5460', '', '', '', 'Pittsburgh', 'PA', '15236', '7:00 - 5:30 Monday - Thursday', 'Take 422E into Kittanning, turns into 4 lane, dead end exit ramp turn Right, 1st light 422E, fork in road go Right (still 422E), 1/2 mile on left Cadet Restaurant, on Right Kwik Fill and Auto Parts store, there is a little road between these, turn Right onto this road, make another Right at the end of the road, 3rd driveway on left, go to the office first. '), (1083, 3654, 1083, '(517) 985-9180', '(517) 485-9583 Fax', '2000 Turner Street', '', 'Lansing', 'MI', '48906', '8:30-5:30 (maybe 8:00 am)', 'From Detroit Area: Take I-96 to Rt. 496 and Rt. 127N (Exit #106). Go approximately 5 exit and turn left onto Lake Lansing Road (this is on right). Stay on this road for 2-3 miles. Road gets smaller and turn into Douglas. Stay on til the end at a \"T\" and turn left (you will see Ashland Chemical. Their site is on the corner. (Brick building) '), (1084, 3655, 1084, '', '', '', '', 'Center Valley', 'PA', '', '', ' '), (1085, 3656, 1085, '', '', '', '', 'Winfield', 'PA', '', '', ' '), (1086, 3657, 1086, '757-366-5100', '757-366-5203 Fax', '(Formerly Engineering Consulting Svcs)', 'Suite A 814 Greenbrier Circle', 'Chesapeake', 'VA', '23320', '', ' CALL FOR DIRECTIONS & WRITE DOWN!!! '), (1087, 3658, 1087, '616-399-3500', '616-399-3777 Fax', 'Riley Ave.', '', 'Holland', 'MI', '49424', '8:00 - 5:00 (Hours vary)', 'Take 31 North, turn left on Riley. Site is two buildings past 128th Riley on the right. '), (1088, 3659, 1088, '989-859-2714 Cell Ji', '989-631-5070 Fax', '426 River Street', 'PO Box 592', 'Midland', 'MI', '48640', '8:00-5:00', 'From Rt. 10S - turn right onto Eastman Rd. (Bus. 10S) Go approx. 4 miles. Becomes 1 way -turn right onto Poseyville Rd. Go approx 2 blocks over bridge. After bridge make 1st right Go back under the bridge, 4 way Rally\'s, left for mile, curve right, 3 light, left Cronk St. 2 lights 2004 address: PO Box 592 426 River Street Midland, MI 48640'), (1089, 3660, 1089, '(814) 443-1671', '(814) 445-6729 Fax', '2005 N. Center Avenue', '', 'Somerset', 'PA', '15501', '8:00-5:00', 'From Turnpike Exit - Going East. Go to 2nd light , Rt. 601, turn left (north). go 1 mile past shopping plaza and red light at Walmart. Go 1/4 miles to white stucco building (office) on left. Lab in basement of building across the street. '), (1090, 3661, 1090, '(410) 799-2600', '(410) 799-0436 Fax', '7970 Waterloo Road', '', 'Jessup', 'MD', '20794', '7:00-4:00', 'I-70E to I-695 South, Exit #91A to I-95 South, Exit #41A 5 mile to Rt. 175. Take East Jessup off exit thru several lights to Dorsey Run Road - liquor store & car dealership on corners. Their building is white/blue trim. 2013 Amercast and Hanson Pipe & Precast joined to CP&P 2nd page cert - weight of beam in / High side only Used to be Concrete Pipe & Products'), (1091, 3662, 1091, '', '', '', '', 'Camp Hill', 'PA', '', '', ' '), (1092, 3663, 1092, '(717) 667-0114 or 01', '(717) 677-0116', '7620 S.R. 655', '', 'Reedsville', 'PA', '', '', 'I-80 E to Exit #24 (Rt. 26). Take 26S to Rt. 64-Pleasant Gap. Take 144S to Rt. 322E. On 322 East take Rt. 655, Reedsville / Belleville Exit. Trailer is located at the end of the ramp on left, behind Dutch Co. Inn. '), (1093, 3664, 1093, '', '', '', '', 'State College', 'PA', '', '', ' '), (1094, 3665, 1094, '(814) 446-5620', '', 'Rt. 22 & 56', '', 'Armagh', 'PA', '', '7:00-? (3:00 on Friday)', 'Indiana to 954 South Exit to 56 East to Armagh. Trailer behind Armagh Fire Company on left. (AKA: East Wheatfield Fire Hall) '), (1095, 3666, 1095, '724-321-4522 Harold ', '724-654-5434', 'JOB SITE', '', 'Eastbrook', 'PA', '', '', 'Across from Intersection Rt. 220 & Rt. 6 '), (1096, 3667, 1096, '313-342-8871', '313-342-8879 Fax', '15733 James Couzns Ave', '', 'Detroit', 'MI', '48238', '8:00 - 5:00 ', ' Call for Directions 275N to I696 MS Exit. Right lane. Exit MS East. Grand River Rd. Exit. Make left . Left at Amoco. North Halstead. 1/4 mile. Left side. West Comm. Center. 24657 Unit. '), (1097, 3668, 1097, '800-477-7453', '', '528 E. Main Street', '', 'Hancock', 'MD', '21750', '', ' CALL FOR DIRECTIONS & WRITE DOWN!!! '), (1098, 3669, 1098, '(724) 438-4581', '(724) 438-6998', '480 Pittsburgh Road', 'P.O. Box X', 'Uniontown', 'PA', '15401', '', 'Greensburg Route 30 East between Greensburg and Latrobe by Holiday Inn and Peaches & Cream. '), (1099, 3670, 1099, '215-256-4201', '215-256-1787 Fax', '1499 Delp Drive', '', 'Harleysville', 'PA', '19438', '', ' '), (1100, 3671, 1100, '(517) 546-1005', '(517) 546-9991 Fax', '4950 Mason Road', '', 'Howell', 'MI', '48843', '7:30-4:30', 'I-96 Exit #137. Go North to Mason Rd. (left turn at light) Go straight out of town on Mason. Approx. 3 miles, pass blinking yellow lights. Site on right side, pretty huge place. Go in gate and through large white arch. Go up paved drive to left - in building by barn. '), (1101, 3672, 1101, '', '', '', '', 'Middlesburgh', 'PA', '', '', ' '), (1102, 3673, 1102, '(814) 695-4405', '', 'Church Street', '', 'New Enterprise', 'PA', '16664', '', ' '), (1103, 3674, 1103, '814-330-2435', '814-224-2121 x4364 M', 'JOB SITE', '', 'Port Matilda', 'PA', '', '', ' PUT MONTH, DAY & YEAR ON STICKERS '), (1104, 3675, 1104, '(330) 666-5432', '(330) 666-4130 Fax', '1038 Ghent Road', '', 'Akron', 'OH', '44333', '', ' '), (1105, 3676, 1105, '(717) 263-7964', '(717) 263-7734 Fax', '2060 Lincoln Way East', '', 'Chambersburg', 'PA', '17201', '7:00-5:00', 'I-81 South, Exit #6. Turn left onto Rt. 30E. Go under I-81 bridge and continue 3 miles more. Site on right (bowling lanes on left). Their site / building is behind Heat Hut\" (whirlpool & spa sales store). Watch for signs. '), (1106, 3677, 1106, '(716) 792-4616', '(716) 792-9998 Fax', '5 Lake Ave.', '', 'Brocton', 'NY', '14716', '8:00-12:00 1:15-4:00', 'Route 90 - Exit at Ripley (Shortman Rd) Exit #61. Just pass toll gates. At end of right (onto Shortman) Go 1/4 mile to \"T\" and turn left onto Rt. 20 - follow Rt. 20 for 15-20 miles until Brocton. Go to Arch over road. Turn left at light onto Lake Ave. 2nd building on right - tan building. Lab around back in red barn. Would like linear measurement also 2\"/min'), (1107, 3678, 1107, '440-974-9555 Ext. 10', '440-947-3755 Fax', '8621 Station St.', '', 'Mentor', 'OH', '44060', '8:30 - 5:00', ' '), (1108, 3679, 1108, '(717) 546-7219', '(717) 546-6284 Fax', 'RD 2 Box 5 Industrial Parkway', '', 'Muncy', 'PA', '', '', ' '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1109, 3680, 1109, '(724) 354-3232', '(724) 354-2765 Fax', 'Route 422 East', '', 'Shelocta', 'PA', '15774', 'Office 8:00-4:00 Lab 7:30-4:00', '1 mile east of Shelocta, PA toward Indiana '), (1110, 3681, 1110, '269-373-5500', '269-373-5594 Fax', '5066 South Sprinkle Road', '', 'Kalamazoo', 'MI', '49002-2050', '8:00 AM - 5:00 PM', ' '), (1111, 3682, 1111, '702-597-9393', '', '4343 S Polaris Avenue', '', 'Las Vegas', 'NV', '89103', '', ' '), (1112, 3683, 1112, '301-898-0700', '', '11425 Woodsboro Pike', '', 'Keymar', 'MD', '21757', '', 'Located on MD 194, 1/4 North of MD 550 in Woodsboro, MD. ***Take 15 South, then Maryland Rt. 55 South, turn left on 194. Go 18 mile--on right. '), (1113, 3684, 1113, '(330) 505-1590', '', '1818 N. Main Street', '', 'Niles', 'OH', '44446', '', 'See Map '), (1114, 3685, 1114, '(814) 467-4987', '', '800 Railroad St.', '', 'Windber', 'PA', '', '', 'Rt. 56 & Rt. 160 - Go into Winber. Somerset Ave. to Stop Light. Go Straight. Stop Sign - Turn Left on Somerset Ave. 3 Blocks to 17th Street. Make Right. 3 Miles to Plant. '), (1115, 3686, 1115, '804-266-2199', '804-261-5569 Fax', '8211 Hermitage Road', '', 'Richmond', 'VA', '23228', '8:00am - 5:00pm', '64 West (Exit185) Stapels Mills Rd SR 33 West Turn Rt. Hermitage Rd. 1/2 mile over RR Tracks turn Rt. Geo Comp need Dial Indicator '), (1116, 3687, 1116, '(716) 942-4006 Bra', '(716) 942-2031 Fax', '10282 Rocksprings Road', '', 'West Valley', 'NY', '14171-9799', '7:00 am - 5:00 pm', 'Route 219S from Buffalo. Cross Rt. 39 in Springville and continue on Rt. 219S. Cross bridge - Big Green signs Turn left onto Schwartz Road (CR 85) Rock Springs Road Go about 5 miles to site on left. '), (1117, 3688, 1117, '804-328-3180', '804-328-3136 Fax', '6200 Elko Tract Road', 'Physical Laboratory (Not a mailing address)', 'Sandston', 'VA', '23150', '', 'I-95 South to 295 East towards Norfolk Exit. 60 East to light, turn Right on Technology Blvd. 1st Left turn behind building. Elevation: 165 Feet, Lat: 37.523*N, Long: 77.316*W Dead Weight Correction Value 0.9993 Mail Certs to Bill to address: Attn: David Guffey Password: 7029'), (1118, 3689, 1118, '540-387-5467', '', '731 Harrison Ave.', 'P.O. Box 3071', 'Salem', 'VA', '24153', '', ' '), (1119, 3690, 1119, '1-800-783-3227', '330-426-2210 Fax', '995 N. Market Street', '', 'East Palestine', 'OH', '44413', '', ' '), (1120, 3691, 1120, '513-539-4000', '', 'In Storage', '', 'Monroe', 'OH', '', '7:00 am-5:00 pm (M-Th)', ' '), (1121, 3692, 1121, '440-528-3760 Brian', '440-248-1527 Fax', '34600 Solon Rd.', '', 'Solon', 'OH', '44139', '7:00 am - 3:00 pm', '**Serial Numbers must be written as shown above on labels & certs!! Take 480 East to 91N and just before intersection with Rt. 422 turn right at light onto Solon Road. Make right at sign for Erico just before. underpass at Rt. 422 Need tensile fixtures for Instron & Bond Pull tester Invoice in Duplicate TRUDY IS A/P CONTACT - CALL BARBARA IF TRUDY N/A BARBARA - ACCTS PAYABLE 440-519-1937 / 440-248-1001 FAX'), (1122, 3693, 1122, '540-248-8000', '540-248-9771 Fax', 'One Razor Blade Lane', '', 'Verona', 'VA', '24482', '8:00 am to 5:00 pm ', ' I-81, Exit 235, merge onto SR-256 (Weyers Cave Road), left onto US-11 (Lee Highway) '), (1123, 3694, 1123, '717-987-3118-George ', '717-987-3665 Fax', '27994 Great Cove Rd.', '', 'Ft. Littleton', 'PA', '17223', '7:00 - 5:30 Job Site', ' Located one mile south on SR 522 of the PA Turnpike Exit 180 or Fort Littleton Exit. Or from Chambersburg, you would take 30 west to the SR522 exit at McConnellsburg and head north on 522 for about 8 miles. Driveway is easy to miss. It has 4 mailboxes at the end and a lightpole. You go between the two and head up a long driveway. The offiec sets between the brown house and large shop. '), (1124, 3695, 1124, '804-266-2199', '804-261-5569 Fax', '8211 Hermitage Road', '', 'Richmond', 'VA', '23228', '8:00am - 5:00pm', '64 West (Exit185) Stapels Mills Rd SR 33 West Turn Rt. Hermitage Rd. 1/2 mile over RR Tracks turn Rt. '), (1125, 3696, 1125, '540-727-3233', '', '1601 Orange Road', '', 'Culpeper', 'VA', '22701-0671', '', ' '), (1126, 3697, 1126, '540-332-9174', '', '811 Commerce Road', 'P.O. Box 2249', 'Staunton', 'VA', '24402-2249', '', ' '), (1127, 3698, 1127, '724-651-4650 Tom Cel', '', 'Rutlage Rd', '', 'Hermitage', 'PA', '', '', ' '), (1128, 3699, 1128, '(810) 766-7165 x 262', '(810) 766-7249 Fax ', '702 West 12th Street', '', 'Flint', 'MI', '48502', '7:00-3:30 (best time to reach 7-8 am)', 'I-75 N to I-69 E Go one exit (Hammerburg Rd) turn right then left at \"T\". Go about 1 mile. Site on left. DIFFERENT STREET ADDRESS THAN IN 1999 Mail Certs to 1101 S Saginaw Sreet - ATTN: Craig Bill to: City of Flint PO Box 246 Flint, MI 48501'), (1129, 3700, 1129, '248-454-6327 David W', '248-454-6327 David W', '14787 32 Mile Road', '', 'Romeo', 'MI', '48065', '7:00 am - 4:15 pm (EST)', ' I-75 North to M59 East to M53 North to 32 Mile Road then east. Hidden driveway. Pass Ford & TRW plants. Directly after TRW small driveway marked by teal sign \"Romeo Waste Water Treatment\" '), (1130, 3701, 1130, '517-721-0106', '517-721-0107 Fax', '6539 Westland Way', 'Suite 13 Westland CMC Center', 'Lansing', 'MI', '49817', '8:00 am - 5:00 pm', ' I-96 West, exit 98B, Route 27 to Creyts Road, turn left to Westland Way turn left Lansing Road, 27 E/N '), (1131, 3702, 1131, '616-647-3004', '616-647-3005 Fax ', '960 West River Center Drive, Suite A', '', 'Comstock Park ', 'MI', '49548', '8:00 am - 5:00 pm', ' Near Grand Rapids off M 131 & M 37 If goes over 40 days back on COD Looking for A2LA'), (1132, 3703, 1132, '(248) 446-8208', '(248) 4468209 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '8:00-5:00 office/6:00am-4:00pm Lab', '**Must include ID# on Work Order and Certs** I-275 (North), turn off ramp to (I-96/Lansing), at I-96, Exit 159 (Wixom), bear right onto S. Wixom Road, turn left onto Pontiac Trail Elevation: Unknown, Lat: 42.529*N, Long: 83.780*W Dead Weight Correction Value 0.9993 '), (1133, 3704, 1133, '(513) 777-9890', '513-777-9070 FAX', '5553 Webster Street', 'Suite A', 'Dayton', 'OH', '', '7:00 am - 5:00 pm ', 'Ext 33A I75 South to Ext 58 Needmore Rd, Turn left then left turn onto Webster St. Take Black I Beam for Rainhart. '), (1134, 3705, 1134, '937-424-1011', '1-800-433-1840 Ron ', '6272 Executive Blvd.', '', 'Huber Heights', 'OH', '45424', '', ' I-70 W. to E. Exit 36 (OH-202 Huber Hts Exit) to Old Troy Pike turn right to Executive Blvd. **Send invoice & certificates to billing address '), (1135, 3706, 1135, '703-383-2162', '703-383-2936 - Fax', '6400 Commerce Street', 'Springfield Road Lab ', 'Springfield', 'VA', '', '7:00 am - 6:00 pm', ' I-95, Exit 169A, Franconia Exit, left on Franconia, left on Commerce Street, white building on right Office Address: 14685 Avion Parkway, Chantilly, VA 20151 '), (1136, 3707, 1136, '717-485-5141 Bob/ 81', '', 'Town Hill Job ', '', 'Warfordsburg', 'PA', '', '6:30 am - 3:30 pm', ' I-70 East out of Breezewood to Exit 168 at top of ramp turn right, go 50 ft, turn left on Route 484 East, turn left on Pigeon Cove Road, go over top of I-70 veering left past New Enterprise trailer keep veering left past Lafarge plant (HB Mellot) approximately .3 miles past the Lafarge plant at the P & W plant on right, machine is in the garage (big white building) at far end of plant area next to the millings pile '), (1137, 3708, 1137, '610-428-2547', '', '3900 Glover Road ', '', 'Easton', 'PA', '18040', '', ' I-476, Exit 56, right onto US-22, right onto ramp, left onto Church Road, North on SR-33, at SR-33 SR-191 Exit, merge onto SR-191, right onto SR-115 (Main Street), left onto Church Lane, right onto Kesslersville Road, left onto Kuebler Road, left onto Clover Road '), (1138, 3709, 1138, '276-223-1051', '276-223-1653 Fax ', '510 Kents Lane', '', 'Wytheville', 'VA', '24382', '8:00 am - 4:00 pm ', ' I-81 South, Exit 77, right at top of ramp, immediate left turn at stop sign on to service road, travel 2 miles to Kents Lane on right, right turn on Kents Lane, travel 1 mile to Lane Enterprises, Inc. on right '), (1139, 3710, 1139, '814-312-1849 Steve', '724-863-8586 Fax ', '1520 Highway 315', ' ', 'Wilkes Barre', 'PA', '18702', ' ', ' I-76 (Pennsylvania Turnpike) (South), bear left onto Ramp 7, (US-30/Irwin/N. Huntingdon Twp/Greensburg), continue on US-30 (Lincoln Highway), turn right onto Arona Road Trailer ID# ST-290 '), (1140, 3711, 1140, '724-255-1189/814-525', '724-479-8501 Fax/814', '1310 Luciusboro Road', 'Evergreen Landfill', 'Blairsville', 'PA', '15717', '', 'US-422, US-119 Exit, right onto US-119, left onto SR-56, close to Homer City Send Certs To: Brad Minemyer, Laurel Highlands Landfill, Inc., 260 Laurel Ridge Road, Johnstown, PA 15909 22 East cross over 56, under 403, 20 Laurel Ridge Road, 4 or 5 miles, 1st blinnking light, make left, go 1/2 mile on Chickoree Hill Road, Johnstown, PA, make left on Laurel Ridge Road'), (1141, 3712, 1141, '313-317-1515 Chad ', '313-845-9658 Fax ', 'Richert-Arch/Construction', '22586 Ann Arbor Trail', 'Dearborn Heights', 'MI', '48127', '8:00am-11:30pm/12:30pm-4:00pm', ' Depart Dearborn Heights on local roads South for 65 yards, turn Left onto Doxtator St for 0.2 miles. turn Left onto Kinloch st for 0.2 miles. turn Right onto SR-153 (Ford Rd) for 1.9 miles. Turn left onto Loacl Roads for 43 yards. turn Left onto SR-153 (Ford Rd.) for 0.1 miles. turn Right onto W. Outer Dr for 0.8 miles turn Left onto Ann Abor Trail for 109 yrds. '), (1142, 3713, 1142, '(614) 895-1400 ', '(614) 895-1171 Fax', '720 Greencrest Drive', '', 'Westerville', 'OH', '43081-4902', '8:00 am - 5:00 pm', ' \"***ISO Requested*** ***continued*** North of Columbus. From Rt. 71 follow Rt. 270E until Westerville Freeway Exit #29. Go north on State Street. Turn left ontoHeatherdown Brooksedge then right onto Greencast. '), (1143, 3714, 1143, '(614) 863-3113', '(614) 863-0475 Fax', '790 Morrison Road', '', 'Columbus', 'OH', '43230', '8:00 am - 5:00 pm', 'From the South-Rt 270 W to Taylor Station & Broad St., Exit #39 (Route 16E)-turn left at light - Just before AT&T onto Taylor Station RD. Turn left onto Westbourne turns into Morrison RD - go 2 miles brick bldg on right. Call with EXACT DAY!! Instruct client on how to protect unit through supervisor mode - password in file at CSI'), (1144, 3715, 1144, '614-443-0085 / 614-3', '614-443-1921 Fax ', '400 Frank Road ', '', 'Columbus', 'OH', '43207', '7:00 am - 4:00 pm ', ' Haul Road Exit, back side of Anderson Concrete Formerly Concrete Research & Testing'), (1145, 3716, 1145, '(330) 812-7563', '330-375-2245 Fax', 'Materials Test Labs', '1420 Triplett Blvd., Building #2', 'Akron', 'OH', '44306', '7:00 am - 4:30 pm Job Site', 'Take 76E to East Market Street Exit #26. Follow West to Massillion Road. Make Left onto Marillon (Rt. 241) Make Right onto Triplett Blvd. (Rt. 764W). Go about 1/2 Mile site on Left. Sign says Engineering Testing Lab. Goodyear Clock, Inovation Way, Cyberling to Tripplett through light (coke) dead end, airport, take right (Access Rd.) into parking lot Password 498'), (1146, 3717, 1146, '614-496-2374', '740-965-2454 Fax', '471 Kintner Parkway', '', 'Sunbury', 'OH', '43074', '6:30-3:00', ' I-76 West, I-71 Exit, at I-71, Exit 131(US-36/OH-37/Sunbury/ Delaware), turn left onto US-36 (SR-37), at Cherry Street & Kintner Parkway, brown building next to Parkway '), (1147, 3718, 1147, '(614) 895-1400 ', '(614) 895-1171 Fax', '720 Greencrest Drive', '', 'Westerville', 'OH', '43081-4902', '8:00 am -5:00 pm ', ' ***continued*** ***ISO Requested*** (OOS) Karol Warner Permability Board---1 gauge Model 32 8/10/2010 Cap: 10 psi to 100 psi S/N 2 '), (1148, 3719, 1148, '(740) 385-2184 x249 ', '(740) 385-9336 Fax/7', '201 S. Walnut Street', 'Lab Building', 'Logan', 'OH', '43138', '6:00 am - 3:30 pm Lab', 'From Rt. 270, take Exit #46B. Route 33 South - take Route 93 Exit. Go right toward Logan - on right side - turn right onto E. Bowen St. by Wendy\'s sign. NOTE: 3 edge bearing - not above 60K This machine is indoors '), (1149, 3720, 1149, '440-352-4700', '440-286-2092 Fax', '521 Fifth Ave', '', 'Chardon', 'OH', '44024', '', ' '), (1150, 3721, 1150, '585-624-4500', '585-624-5300 Fax', '1514 Rochester Street', '', 'Lima', 'NY', '14485', '7:00am-3:30pm ', 'South of Rochester off I-390 on Rt 20 E. Exit 11, left light next light left 251. Next light Right 15A. 6.2 miles Rochester Street & Slocum Formerly Shawndra Products IN1: 208 RD1: 0 IN2: 75680 RD2: 40150 Need copy of procedure from files. Use 50K Tensile Road & Blocks Use 300 system with 50K cell (narrow opening)'), (1151, 3722, 1151, '315-263-6794 Wayne C', '(315) 463-9134 Fax', '5894 Court St. Road', '', 'Syracuse', 'NY', '13206', '7:00 AM - 4:00 PM', 'See map From 690 take Exit #16N. (635N.) Follow to circle. Take 298 West. Follow signs for Court Street. This machine has no metering valve - use hand pump'), (1152, 3723, 1152, '716-694-8657', '716-694-8638 Fax', '3784 Commerse Court, Suite 300 ', '', 'North Tonawanda', 'NY', '14120', '8:30 am - 5:00 pm', ' I-290, Exit 2 (Rt. 425 / Colvin Blvd.), merge onto SR-425 (CR-118), turn left into North Tonawanda '), (1153, 3724, 1153, '716-965-2731 x111 Mi', '716-965-2764 Fax ', '10987 Bennett State Road', '', 'Forestville', 'NY', '14062', '8:00 - 5:00 Office / 8:00 - 8:00 Job ', ' I 90 to Fredonia NY, Rt 60 to Rt 20 to Rt 39 to Forestville. Once in Forestville take a left past center of town. Go straight to Y and then go left on Rt 85. Stay on 85 for Baileys is on left side of road after the bend about 1/2 mile. '), (1154, 3725, 1154, '304-872-5326/304-872', '304-877-6845 Fax', '7900 Webster Road', '', 'Summersville', 'WV', '26651', '7:00 am - 4:00 pm', 'Rt 19 S to Somersville turn left across from WalMart and McDonalds 41N on Webster Road, about 3 miles on right. '), (1155, 3726, 1155, '304-340-4277', '304-340-4278 Fax', '601 Ohio Avenue', '', 'Charleston', 'WV', '25302', '8:00 am - 5:00 pm', ' Washington Street Exit. Take right on Washington & Ohio Ave. on left. 1st Exit on I-64. 1st light is Washington, make right at Lee & Ohio intersection. Alley past Ohio. 2nd light turn right '), (1156, 3727, 1156, '(304) 455-2923', '(304) 455-1207 Fax ', '100 Gravel Lane', '', 'New Martinsville', 'WV', '26155', '7:00 am - 5:00 pm', 'Take Rt. 7 South - Cross bridge at Hannibal for New Martinsville. Go north on Route 2 - across street from Foodland, turn left onto gravel road, follow through Cemetary ( by river) Can be let in at other times if call Formerly Arrow Concrete'), (1157, 3728, 1157, '304-522-7077', '', '3520 Mount Union Road', '', 'Huntington', 'WV', '25701', '8:00 am to 4:00 pm', 'I-64 West to Exit 11. South on Route 10 - Then right on Route 39. Lab is on Right in bottom of Office Building. House with fence around it drive way on left. Formally Barboursville Testing Lab, Inc.'), (1158, 3729, 1158, '(304) 344-0821', '(304) 342-4711 Fax', '912 Morris Street', '', 'Charleston', 'WV', '25301', '7:30 am - 5:00 pm', 'From 77S get off at Exit #100 (Broad & Cepted St.). At exit bear to right (Capitol). At bottom of ramp - turn right (Shrewsbury Street) Go straight to stop sign. At \"T\" turn right onto Smith Street. Go thru 1 stop. At second stop - turn left onto Morris St. Go across RR tracks and go about 100 yds. Site on right (at corner of Morris & Piedmont)'), (1159, 3730, 1159, '(304) 344-0821/ 304-', '(304) 342-4711 Fax', '912 Morris Street', '', 'Charleston', 'WV', '25301', '7:30 am - 5:00 pm', 'MUST CALL 1 DAY PRIOR!!!!! ***continued*** From 77S get off at Exit # 100 (Broad & Cepted St) At Exit Bear to right (Capitol). At bottom of ramp - turn right (Shrewsbury St) Go straight to stop sigh. AT \"T\" turn right onto Smith St. Go thru 1 stop. At second stop - turn left onto Morris St. Go across RR tracks and go about 100 yds. Site on right (at corner of Morris & Piedmont) Dead Weight correction value: 0.9993'), (1160, 3731, 1160, '304-545-7041 Dave\'s ', '304-755-2636 Fax', '401 Jacobson Drive', '', 'Poca', 'WV', '25159', '7:00 am - 4:00 pm', 'I-64 to Nitro/Poca exit, right on Rt. 25 toward Poca, left at stop light into Rock Branch industrial park, go all the way to back of park, White building with Terradon sign. In double wide trailer on right side of gravel lot. '), (1161, 3732, 1161, '304-755-0721 ', '304-755-1880 Fax', '4980 Teays Valley Road', '', 'Scott Depot', 'WV', '25560', '8:00-5:00', 'Take I-64 West to St. Albans (Crosslangs) Exit. Turn right, go to light. (approx. 1 mile) Turn right. PASSWORD: 249 NO SPECIAL TRIPS FOR THIS CUSTOMER !!!!'), (1162, 3733, 1162, '304-627-2405 ', ' ', '1081 Country Club Road', '', 'Fairmont', 'WV', '26554', '6:30 am - 5:00 pm/7:30 am -4:00 pm Job ', ' I-79, Exit 137, merge onto SR-310 (CR-3) North, left onto US-250 (Fairmont Avenue), right onto Country Club Road (US-19 Spur) '), (1163, 3734, 1163, '254-287-7237', 'RMA 7052', '88039 Logistics Lane', '', 'Fort Hood', 'TX', '76544', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment '), (1164, 3735, 1164, '1-800-391-8501', '', '21112 Scott Park Road ', '', 'Davenport', 'IA', '52804', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 Original Certification In Box Fax copy of Certification & Tracking Number to Lou Lous Packing List on outside of shipment '), (1165, 3736, 1165, 'PO 1656526', '', 'Central Receiving Department', '17735 West 32nd Avenue', 'Golden', 'CO', '80401', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (1166, 3737, 1166, '602-231-1743', 'RMA 7053', '3235 East Jackson ', '', 'Phoenix', 'AZ', '85034', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (1167, 3738, 1167, '', '', 'I90 & Erie County', '', 'Erie', 'PA', '', '', ' '), (1168, 3739, 1168, '850-445-0224 Jeff Ce', '', '1221 W. Tharpe Street', '', 'Tallahassee', 'FL', '32303', '', ' '), (1169, 3740, 1169, '412-973-6625', '', 'Rt. 857', '', 'Uniontown', 'PA', '', '6:00 AM - ?', 'Take the Turnpike to exit for Rt. 119, Head towards Uniontown on Rt. 119 to 40/43. Come to a dead end, take left to Rt. 857. At Rt. 857 take a right. Go 2 - 3 miles to Gaines Road. Job site is on top of the hill. '), (1170, 3741, 1170, '(724) 663-7988', '(724) 663-4781 Guard', 'Bailey Mine', 'JOB SITE', 'Near Waynesburg', 'PA', '', 'Varies - call prior No Fridays unless necessary', 'From Washington, PA take Rt. 18 South to Rt. 231. At approx. 5-6 miles Rt. 231 vears north. DO NOT TAKE! Stay on road and go approx. 5 more miles to Bailey Mine. Go to guard shack. Can see batch plant from road - just inside gate. About 30 miles from Waynesburg. Very rural country. Call guard shack if any problems finding location. '), (1171, 3742, 1171, '205-283-6082 Jeff C', '', '', '', 'Blairsville', 'PA', '', '7:00-5:00 M-F', '22 E to Blairsville - behind Advanced Auto Parts, Building new Walmart '), (1172, 3743, 1172, '(585) 638-0134', '(585) 638-0135 FAX', '44B State Street', '', 'Holley ', 'NY', '14470', '7:00 AM - 5:00 PM', 'From Williamsport - Take 15N to 17W to 390N to 490 W to 531 W to 31 W. Stay on 31 Past Brockport about 7 miles Once you reach Holley, they are on the Right '), (1173, 3744, 1173, '717-264-7146', '717-264-7634 Fax', '910 Progress Road', '', 'Chambersburg', 'PA', '17201', '', 'I-81 S to Exit 5 (Wayne Avenue) Turn right at end of exit ramp, Proceed West on Wayne Avenue to 3rd light (Orchard Drive) Turn Left onto Orchard Drive, Proceed on Orchard Drive to the next light (approx. 1 mile), turn Right onto Route 11 North to Industrial Drive (approx. 3/4 mile), turn Left onto Industrial Dr. go approx. 1/4 mile to Progress Road, turn Left on Progress Road Chatham is on the right '), (1174, 3745, 1174, '(513) 771-8830', '', '2938 Crescentville Rd.', '', 'Cincinnati', 'OH', '45241', '', ' '), (1175, 3746, 1175, '(315) 668-3868', '(315) 676-3150 Fax', 'N. Rontondo', '', 'Central Square', 'NY', '13036', 'Lab 8:00-5:00 Office 7:00-6:00', 'Route 81N. Get off at Central Square Exit #32. Go over overpass towards Central Square (Route 49W) - residential area 1/4 mile from exit. Look for 2 white house/garages. Across from Prepaid Health Center complex mailboxes - N. Rotondo, PE '), (1176, 3747, 1176, '(724) 843-7315', '(724) 847-7079 Fax', 'Front Street', '', 'Fallston', 'PA', '', '8:00-3:00 (come after 3 if possible)', 'Near New Brighton (Beaver County) '), (1177, 3748, 1177, '(937) 268-6706', '(937) 268-8321 Fax', '1504 N. Gettysburg Ave.', '', 'Dayton', 'OH', '45427', '8:00-4:00', 'Take I-70 to Exit for I-75. Go South to Dayton.Take 3rd St. Exit West ( Rt. 35) at the light, make right. Go to N. Gettysburg Ave. 1/2 mile on right. **NEED PROOF OF INSURANCE, ALL VISITORS REPORT TO OFFICE & SIGN IN. HARD HAT/STEEL TOES/ EYE PROTECTION/ HEARING PROTECTION REQUIRED. LOCK OUT PROCEDURE ON EQUIPMENT INFORCED. 8/01 Replaced main spring & put cylinder rebuild kit in.(CS-0040)'), (1178, 3749, 1178, '(814) 266-6402', '(814) 266-6530 Fax', '4579 Elton Road', 'PO Box 609', 'Elton', 'PA', '15934', '', 'See Map '), (1179, 3750, 1179, '540-368-1414', '540-368-1444 Fax', '11905 Bowman Drive, Suite 507', '', 'Fredericksburg', 'VA', '22408', '7:00 am - 5:00 pm ', '70 East, 270 South, 495 (towards Northern Virginia), 95 South, Exit 130B to Fredericksburg (Rt. 3E), Exit onto Rt 2 N? (Bear right off of exit), lst left after 1st light behind Quarrels Fuel Depot '), (1180, 3751, 1180, '(716) 328-8870', '(716) 328-8348 Fax', '52 Holworthy Street', '', 'Rochester', 'NY', '14606', '6:00 AM - 2:00 PM', 'Take I-490 East to Exit #10B Mt. Read Blvd. (Northbound) Mt. Read Blvd. to Jay Street (turn right) Jay Street to Glide Street (turn left) at 1st light. Glide Street to Holworthy Street (turn right) Next to Areno\'s Body Shop. '), (1181, 3752, 1181, '(716) 624-1990', '(716) 624-2102 Fax', '7525 E Main Road', '', 'Lima', 'NY', '14485', '8:00-5:00', 'Take 21 S to 20 West - left off route 20. '), (1182, 3753, 1182, '', '', '544 Fairground Road', '', 'Front Royal', 'VA', '22630', '', ' I-66 to 522 North to 1st red light which is Fairground Rd, turn east ( only way you can turn) 1 mile on right hand side '), (1183, 3754, 1183, '(724) 564-0914 Terr', '', 'JOB SITE', '', 'Fairchance', 'PA', '', '', 'See files '), (1184, 3755, 1184, '513-726-4371', '513-623-3841 Mike\'s ', '416 Ritter Street', '', '7 Mile', 'OH', '45062', '', ' 11/00 CALL FOR DIRECTIONS !!!!!!! '), (1185, 3756, 1185, '315-474-1511 phone', '315-460-4106 fax', '7437 Henry Clay Blvd.', '', 'E. Syracuse', 'NY', '13202', '7:00 AM - 3:30 PM (must call prior)', 'From Thruway: Get off Exit 37, Turn Right onto Henry Clay Blvd Approx 2 1/2 miles, turn left onto Niagra Mohawk (small sign in front) Stop and Sign in at Guard house '), (1186, 3757, 1186, '(330) 384-4943', '', '', '', 'Stow', 'OH', '44224', '', ' '), (1187, 3758, 1187, '716-565-1808--Discon', '', '251-C Cayuga Street (NO longer a job site)', '', 'Buffalo', 'NY', '', '8:00am - 5:00pm', 'I-90 to RTE 33 (Exit 51 East - Airport), RTE 33 to Dick Road; Cayuga Road Exit, right turn onto Dick Road, Dick Road becomes Cayuga Road (After Genesee), 251 Cayuga on right just after Maryvale, 251-C new metal building in back. '), (1188, 3759, 1188, '(412) 619-1783 Bill ', '', 'Dollar General ', 'Northeast Distribution Center', 'Zanesville', 'OH', '', '', '70 West, Exit 157 (Rt. 93), Turn Right (93N) 2 miles down on left side. Dirt road, go 1/2 mile past Concrete Batch Plant, Lab after Plant. Lab in Cargo Box '), (1189, 3760, 1189, '(304) 648-7131', '(304) 648-7290 Fax', '5803 Big Sandy River Road (Rt. 52)', '', 'Prichard', 'WV', '25555', '8:00 am - 3:00 pm', 'Take exit off I-64 to Rt. 52S. Go about 2 miles, turn left onto Rt. 52 at \"T\". Go south about 13 miles thru Prichard. Site about 2 miles south of town on left. Chain link fence around site. Go in entrance by double doors. Behind building on hill. '), (1190, 3761, 1190, '(716) 475-2900 / 218', '(716) 475-5275', 'James E. Gleason Building', '78 Lomb Memorial Drive', 'Rochester', 'NY', '14623-5604', '', 'Park in \"J\" parking lot. Building #9 (Gleason building) Map in files '), (1191, 3762, 1191, '(585) 359-2730', '(585) 359-9668 Fax', '535 Summit Point Drive', '', 'Henrietta', 'NY', '14467', '8:00 am - 5:00 pm', 'Take 390N to Henrietta and get off a Lehigh State Road Exit #12A. Rt. 253W. At end of ramp turn left. Go approx. 3/4 miles and watch for the Micromotel on the left hand side of of road. This intersection is Summit Point Drive. Turn left onto Summit. Their bldg. is last one on right hand side #535. Office is last one on right. Call if additional directions are needed. '), (1192, 3763, 1192, '(585) 968-9686', '(585) 968-9688', '39 Water Street', '', 'Cuba', 'NY', '14727', '', ' Take Exit 28 off of 17. Turn right at stop light. Post office, site on right. '), (1193, 3764, 1193, '(570) 748-6858', '', 'River Access Road', '', 'Lock Haven', 'PA', '', '', 'I-80 east to Rt. 220 North to Lock Haven. See map for location in Lock Haven. '), (1194, 3765, 1194, '(614) 246-6315', '(614) 246-6810 Fax', '', '', 'Thornville', 'OH', '', '', ' '), (1195, 3766, 1195, '(513) 825-4350', '859-743-0375 Cell Ke', '1034 Woodrow Street', '', 'Cincinnati', 'OH', '', '', 'Rt. 755 to Freeman 1st or 2nd light. Gest Road '), (1196, 3767, 1196, '(606) 567 5797', '', 'Sparta Job Site', '', 'Sparta', 'KY', '', '', '71 North pass Carrol Town, Sparta Warsaw Exit (Route 35) Turn Left, pass Marathon Station. Big Earth Project on Left. Turn Left on next road. Thelen sign on Pole Building. '), (1197, 3768, 1197, '304-549-7192 Mike ce', '304-530-6349 Fax', '115 Hyde Street', '', 'Moorefield', 'WV', '26836', '6:30-5:30', ' '), (1198, 3769, 1198, '(412) 264-0690 Jack ', '(614) 876-1899 Fax', 'Job Site - Near Airport ', '', 'Johnstown', 'PA', '', '', ' US-219 South, Galleria Exit, bear right onto Galleria Drive, right toward airport, when you get to terminal call Jack\'s cell he will come get you '), (1199, 3770, 1199, '(724) 667-7702 or 6', '(724) 667-1067 Fax/7', '2nd Street', 'PO Box 779', 'Bessemer', 'PA', '', 'Lab: 24 hrs.', 'From PA 60 (New Castle By-pass) Exit #6A State St. Poland. Go west on 224 - cross blue bridge. Immediate left turn onto 551S. Go 3/4 miles - bear right. Go 3 miles and make right onto Rt. 317. See large school about 1 mile on right. Bear to left. Drive into Bessemer, go in at 2nd street. Lab all the way to the right. '), (1200, 3771, 1200, '724-321-3383 Pat Cel', '', 'Tuna Cross Road', '', 'Bradford', 'PA', '', '8:00 am to 3:00 pm', '219 N to Bolivar exit, turn left to East Main St, 1 1/2 miles on left on Tuna Cross Road. '), (1201, 3772, 1201, '(304) 755-8228', '(304) 755-8229 Fax', 'HUB Industrial Park', '', 'Nitro', 'WV', '25143', '8:00 am - 5:00 pm', 'From Logan take 119N toward Charleston. I-64 West, Exit #45 for Nitro (Rt. 25) Turn left at end of ramp at light. Get in right lane. At 3rd light turn right onto Pickens Road. Cross RR tracks. At fork look for sign for Ackenheil, bear left. Cross RR tracks. Turn right by big Ackenheil sign. At end of road. Brown metal building on right. '), (1202, 3773, 1202, '276-928-1374', '276-928-1359 Fax', '273 Enterprise Road', '', 'Rocky Gap', 'VA', '24366', '7:00 am - 5:00 pm ', 'Off of 77, Exit 64, Left 2 Miles, at T, Fire Dept on right, Enterprise Lane '), (1203, 3774, 1203, '301-334-2305', '301-334-2305 Fax ', '10 N 3rd Street ', '', 'Oakland', 'MD', '21550', '8:00 am - 5:00 pm M-F', ' US-40 E / George C. Marshall Pkwy / National Pike toward Hopwood, turn slight left onto US-40 E / George C. Marshall Pkwy/ National Pike, continue to follow US-40 E / National Pike (Crossing into Maryland), turn slight right onto US-40, stay straight to US-219 / Garrett Hwy, continue to follow US-219, end at 10 N 3rd Street '), (1204, 3775, 1204, '614-443-0123', '614-443-4001 Fax ', 'Haul Road ', '', 'Columbus', 'OH', '43223', '7:00 am - 5:00 pm', 'From the East: Take I-70 West to I-71 South. Go South on I-71 to 2nd exit (Frank Road/Rt 104). Follow Exit Ramp turning to the right, as you merge into roadway get into the far left lane before the first light. At the first light turn left onto Harmon Avenue. F.W Sloter Concrete is on the left less than 1/4 mile '), (1205, 3776, 1205, '(606) 789-4784 or 78', '304-475-4321 Harvey ', 'Route 65', '', 'Lenore', 'WV', '41224', '7:00 am - 5:00 pm', 'From Rt. 64E, Exit #58A. Take Rt. 119 South from Charleston about 20 miles south of Logan. Take Rt. 65N towards Naugatuck - go approx. 4 miles. Blacktop plant on left / Lenore High School on right. Go down road between car wash & plant, site on left in fenced-in area. '), (1206, 3777, 1206, '805-373-4418 - Mike', '805-373-4268 Fax ', '1049 Camino Dos Rios', '', 'Thousand Oaks', 'CA', '91360', '8 am (pst) - 5 pm (pst)', ' Calibrate in house for tension/compression, also check repeatability'), (1207, 3778, 1207, '(304) 877-6451', '(304) 877-5789 Fax', '6513 Robert C. Byrd Drive', 'Route 16 North', 'Bradley', 'WV', '25818', '8:00 am - 4:00 pm', 'Off Rt. 77 South to Exit #48N Beckley/Summerville. Exit - then take the north Beckley/Bradley Exit. Turn left after ramp toward Bradley on Rt. 16N. Go thru Bradley and watch for Appalachian Heating on right. Go 1/2 mile to their site on left. 19S left, Hill, Right 77N North Beckley exit, toll booth, 19 exit, first then left on 16 thru Bradley, RV place down hill, left hand turn on left'), (1208, 3779, 1208, '(304) 344-0821', '(304) 342-4711 Fax', '912 Morris Street', '', 'Charleston', 'WV', '25301', '7:30 am -5:00 pm ', 'From 77S get off at Exit # 100 (Broad & Cepted St) At Exit Bear to right (Capitol). At bottom of ramp - turn right (Shrewsbury St) Go straight to stop sigh. AT \"T\" turn right onto Smith St. Go thru 1 stop. At second stop - turn left onto Morris St. Go across RR tracks and go about 100 yds. Site on right (at corner of Morris & Piedmont) Dead Weight correction value: 0.9993 Latitude: 38 degrees Elevation: 631 feet'), (1209, 3780, 1209, '(304) 727-4301 ext. ', '(304) 727-4306 Fax', '400 Oliver Street', '', 'St. Albans', 'WV', '25177', '7:00 am -5:00 pm ', 'I-64 West from Charleston to St. Albans exit. Turn right onto Rt. 35S. Go 5 miles & turn left onto Route 60E (2nd light) Go 1 mile. At next light turn left (Oliver St). End of road goes directly into their parking lot. Full size yellow bill board with arrow on Rt. 60 '), (1210, 3781, 1210, '(304) 525-9485 / 724', '304-525-9481 Fax', '3520 Mount Union Road', '', 'Huntington', 'WV', '25701', '7:00 am - 5:00 pm', 'Take I-64, Exit #11 (Hal Greer Blvd) State Route 10 south approx. 1/2 mile to Mt. Union Road. Go approx. 1/4 mile (1st brick building on right) EQUIPMENT NEEDS DONE IN BARBOURSVILLE TESTING LAB\'S MACHINE - TURMAN\'S OFFICE IS UPSTAIRS IN THE SAME BUILDING AT BARBOURSVILLE TESTING Formerly Turman Construction Company '), (1211, 3782, 1211, '402-563-6436', '402-563-6252 Fax', '1122 23rd Street', '', 'Columbus', 'NE', '68601', '8am-5pm office / 7am-4pm site', ' Elevation: 1449 Feet, Lat: 41.430*N, Long: 97.368*W Dead Weight Correction Value: 0.9993'), (1212, 3783, 1212, '869-465-8664/869-662', '869-465-1857 Fax/869', 'Canadian Industrial Estate', '', 'St. Kitts', 'VI', '', '7:00am-4:00pm/7:00am-6:00pm Job', ' 1 mile heading north-east along island main road '), (1213, 3784, 1213, '869-465-8664/869-662', '869-465-1857 Fax/869', 'Soils & Materials Lab ', 'Wellington Road ', 'Basseterre,St. Kitts', 'VI', '', '', ' '), (1214, 3785, 1214, '(814) 231-8845 EXT 1', '(814) 231-8846 Fax', '2701 Carolean Industrial Drive ', '', 'State College', 'PA', '16801', '7:00 am - 5:00 pm', ' ***Continued*** ***Need special fixture to Calibrate Proving Rings T & C*** **DO NOT COVER BATTERY COVER W/ LABEL ON DIGITAL PRESSURE GAUGE** 322 East, turn right, merge onto SR-26 (E. College Ave.), turn off on ramp staying on SR-26 (E. College Ave.), right onto Struble Road, left onto Carolean Industrial Drive **Dead Weight Corr. Value 0.9993**'), (1215, 3786, 1215, '814-774-3573', '814-774-2854 Fax', '438 Church Street', '', 'Girard', 'PA', '16417', '', 'Take I-79 to 90W to Fairview Exit 16, 98N West on 20 3rd Red light Church Street '), (1216, 3787, 1216, '(814) 231-8845', '(814) 231-8846 Fax', '2701 Carolean Industrial Drive ', '', 'State College', 'PA', '16801', '7:00 am - 5:00 pm', ' ***Continued*** 322 East, turn right, merge onto SR-26 (E. College Ave.), turn off on ramp staying on SR-26 (E. College Ave.), right onto Struble Road, left onto Carolean Industrial Drive **Dead Weight Corr. Value 0.9993** '), (1217, 3788, 1217, '', '', '210 1st Avenue NE', '', 'Gwinner', 'ND', '58040', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (1218, 3789, 1218, '702-286-0934 Paul A.', '', 'Atlantic Station', '241 20th Street ', 'Atlanta', 'GA', '30363', '', ' '), (1219, 3790, 1219, '', '', '1920 East Walnut Avenue, Building 23', '', 'El Segundo', 'CA', '90245', '', ' '), (1220, 3791, 1220, '787-758-7830', '787-764-8553 Fax', 'GPO Box 363307', '', 'San Juan', 'PR', '', '7:00 am - 4:00 pm', ' '), (1221, 3792, 1221, '410-987-7330', '410-987-2124 Fax ', '415 Headquarters Drive , Suite 6', '', 'Millersville', 'MD', '21108', '', ' '), (1222, 3793, 1222, '740-367-9363', '740-367-0428 Fax', 'Cheshire Plant', 'Ohio State Route 7', 'Cheshire', 'OH', '45620', '7:30 - 5:30 Mon - Thur', ' Rt. 77S to Exit 1, Rt. 7 South, Plant on right '), (1223, 3794, 1223, '(859) 253-9395', '(859) 255-9939 Fax', '1054 B Brentwood Court', '', 'Lexington', 'KY', '40511', '8:00-5:00', 'I-75 N. Take Airport Exit #115. Take left at Exit #115 (Newtown Pike) Go about 5 light to Nandino Blvd. Turn right (Melbourn Ind. Park) Go 1 block. Turn right onto Brentwood Ct. 3rd building on right. '), (1224, 3795, 1224, '440-423-0113 x 124', '', '82 West Ashtabula St.', '', 'Jefferson', 'OH', '44047', '', ' '), (1225, 3796, 1225, '609-771-2267', '609-771-2353 Barbara', '2000 Penning Rd', '', 'Ewing', 'NJ', '8628', '', ' Route 95 North, 31 south, left '), (1226, 3797, 1226, '859-336-7096', '859-336-7533', '', '', 'Richmond', 'KY', '', '', ' '), (1227, 3798, 1227, '(814) 362-4013', '(814) 362-5590 Fax', '105 Lafferty Hollow', '', 'Bradford', 'PA', '16701', '', ' '), (1228, 3799, 1228, '(614) 275-1307', '(614) 275-1354 Fax', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', ' See Map '), (1229, 3800, 1229, '614-275-1308', '614-275-1354 Fax', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', ' '), (1230, 3801, 1230, '513-651-4007', '513-651-4009 Fax', '884 Mehring Way', '', 'Cincinnati', 'OH', '45202', '', ' '), (1231, 3802, 1231, '989- 755-8147', '989-755-5423 Fax', '2981 Carrollton Road', '', 'Saginaw', 'MI', '48604', '', ' '), (1232, 3803, 1232, '(859) 509-4998', '859- 299-2481 Fax/85', '422 Codell Dr.', '', 'Lexington', 'KY', '40509', '8:00 am - 5:30 pm', 'I-75 South to Man-o-war Exit (108). Make right turn off exit. Go 3 lights (approx. 1 mile). Take right onto Palumbo Dr. Go approx 2 miles to 2nd light & turn left on Codell Dr. Make immediate left after turning onto Codell. Bldg. on left. '), (1233, 3804, 1233, '(517) 788-7067/517-7', '(517) 788-1724 Fax', 'Division of CMS Energy', 'Corner of Jackson & Trail St.', 'Jackson', 'MI', '49201', '7:00 am to 3:30 pm ', '94 W Exit 139, turn left on Cooper St., turn left to 135 W. Trail Street, 2nd light Gawson, take right at next light turn left onto Jackson street, 1 block to Trail Street, take right (SE) corner '), (1234, 3805, 1234, '724-899-3300', '724-899-3340 Fax', '640 Clinton Enlow Road', '', 'Imperial', 'PA', '15126', '', '79S toward Airport (Pittsburgh Airport) Exit 6, Rt 60 Clinton Exit 7, left to stop light, left 1/2 mile left, on Rt 30 and Crescent Drive '), (1235, 3806, 1235, '(513) 771-0820', '(513) 771-3379 Fax', '2786 E. Cresentville Road', '', 'West Chester', 'OH', '45069', '7:00 am - 5:00 pm ', 'Take I-275 to Mosteller Road Exit. Take Mosteler Road North--go 1 mile to dead end. Turn right (which is East) on Cresentville Road. The 3rd building on left. '), (1236, 3807, 1236, '(502) 244-3848 ', '(502) 244-3580', '13005 Middletown Industrial Blvd.', 'Suite D', 'Louisville', 'KY', '40223', '8am-4:30pm Office / 9am-4pm Lab', 'Rt. 64 Exit #19B onto Gene Snyder Parkway (Rt. 265) Northbound. Go 1 1/2 miles. Get off at Middleton / Eastwood Exit-#27 onto US 60 (Shelbyville Road). Take left at bottom of ramp at light. Go to 2nd light. Make right onto English Station RD. Go approx. 1/4 mile - Middletown Industrial Blvd. Stone/block building on right. FORMERLY: ATLANTA TESTING & ENGINEERING'), (1237, 3808, 1237, '(724) 652-7878', '(724) 657-8652 Fax', '203 W. Washington Street', '', 'New Castle', 'PA', '16101', '7:00 am - 4:00 pm ', 'Rt. 79 South to Rt. 422 West to New Castle. Go straight on Butler Ave. to East Washington Street. Make right, go through town past Burger King and Eat-N-park. Over bridge and make left into parking lot. '), (1238, 3809, 1238, '800-277-2439', 'RMA 6101', '929 North Lucas Street', '', 'West Columbia', 'SC', '29169', '', ' '), (1239, 3810, 1239, '662-840-9710', '662-840-9773 Fax ', '751 Rex Drive ', '', 'Tupelo', 'MS', '38801', '', ' '), (1240, 3811, 1240, '204-476-4771 Seth', '321-406-0536 Fax ', 'Viceroy West End ', '', 'Anguilla', 'BWI ', '', '8:00am to 6:00pm/8:00am-5:00pm Job ', ' Need lodging & Food Set Up before coming Flight to Island 8:55 PM Flight from Island 8:25 AM One Flight Each Way Only - Might have Mid Day Flights '), (1241, 3812, 1241, '787-743-6767 / 787-7', '787-743-6769 Fax', 'Carr 172 KM 1.2', 'Bo Canaboncito', 'Caguas', 'PR', '725', '7:00 am - 4:00 pm', 'GPS Okay Billing Address: PO Box 4952, PMB 586, Caguas, PR 00726 '), (1242, 3813, 1242, '787-820-777/787-817-', '787-262-2777 FAX', 'Carr # 2 , KM 89.0', 'BO Pueblo', 'Hatillo', 'PR', '659', '7:00 AM - 5:00 PM', 'PR 2, Rio Camey, GPS as close as can get Billing Address: Attn: Jegsal Ortiz PO Box 1351 Hatillo, PR 00659 787-898-7777 787-262-2777 Fax'), (1243, 3814, 1243, '787-284-3065/3066', '787-284-3077 FAX/787', 'Carr 14 KM 9.6', 'PO Box 801028', 'Coto Laurel', 'PR', '', '7:00 am - 3:30 pm ', 'PR 52, Exit 95, left PR 506, right PR 14, site on right Billing Address: PO Box 801028, Coto Laurel, PR 00078-1028 787-284-3065/787-284-3077 Fax Gyratory Compactor: Force 600 kpa Height 109.97 mm Angle 1.25* Rotation 30 Rpm '), (1244, 3815, 1244, '787-837-7271', '787-837-3967 FAX', 'Carr P.R. 1 KM. 113 HM.2', 'Barrio Pastillo', 'Juana Diaz', 'PR', '', '7:00 am - 4:00 pm', 'PR 52 to PR 153, turn right on PR 161 to PR 1 West, turn right KM 113 Billing Address: PO Box 5058 Caguas, PR 00726 787-837-7271 787-837-3967 Fax'), (1245, 3816, 1245, '787-841-3122/787-841', '787-841-3164 Fax', 'Ba Tibes Highway 503 KM 5.5', '', 'Ponce', 'PR', '721', '', 'PR-10 to PR-503, follow road until site, long snaky way USACE - Mercedes Mercado, PO Box 7825, Ponce PR 00732-7825 787-841-3181 / 787-841-3164 Fax 5/09 Ben James went down to calibrate S/N 129, it was still leaking '), (1246, 3817, 1246, '(809) 725-2227', '', 'Calle Figueroa #611', '', 'Santurce', 'PR', '907', '', ' '), (1247, 3818, 1247, '787-783-3000 x 3259', '787-783-8290 FAX', 'Carr 165 KM 2.7', 'Centro Industrial Amelia Guayna', 'Catano', 'PR', '', '', ' '), (1248, 3819, 1248, '787-758-7830', '787-758-8553 Fax', 'PO Box 364487', '', 'San Juan', 'PR', '00936-4487', '', ' '), (1249, 3820, 1249, '770-781-8008', '770-781-8003 Fax /6', 'Portugues Dam ', '503/Portugues River and 10 ', 'Ponce', 'PR', '', '8:00 am - 5:00 pm ', 'PR 52, Exit 98A, PR 10 North, 4 lane to 2 lane, left onto PR 503, end of road is entry gate Billing Address: PO Box 800458 Cota Laurel, PR 00780 Formerly contracted through Schnabel Engineering, LLC'), (1250, 3821, 1250, '787-268-3616', '787-268-3699 Fax / 7', '1916 Eduardo Conde Ave', '', 'San Juan', 'PR', '912', '7:00-12:00 1:00-5:00', 'GPS Okay Billing Address: PO Box 19034, Fernandez Juncos Station, San Juan, PR 00910-9034 '), (1251, 3822, 1251, '787-792-8904', '787-782-7455 FAX', 'A-5 Amur Street', 'Reparto Landrau', 'San Juan', 'PR', '921', '7:30am-4:00pm/7:00am- 4:00pm Job', 'GPS Okay, Calle Amur, PR 21 & Repto Landrau Billing Address: PO Box 270033 San Juan, PR 00927-0033 787-792-8904 787-782-7455 Fax '), (1252, 3823, 1252, '787-740-5254 / 787-6', '787-740-5267 Fax', 'Carr 2 KM 20.6 Bo Candelaria', '', 'Toa Baja', 'PR', '949', '7:00 am - 4:00 pm ', 'GPS Okay, PR 2, Tao Baja, East of PR 165 Billing Address: 425 Carr 693, PMB 240 Dorado, PR 00646-4802 Other cell phone numbers: 787-675-5389 Michelle Machado 787-487-0439 Carmen Burgos, 787-615-5932 Luis Correa '), (1253, 3824, 1253, '787-607-1331', '787-724-0270 Fax', 'Oficina Aluma', '', 'Vieques', 'PR', '', '8am-4pm Office / 7am-3pm Lab', ' Billing Address: PO Box 9066611, San Juan, PR 00906-6611 787-721-2526/787-724-0270 Fax '), (1254, 3825, 1254, '787-783-3585', '787-793-0410 Fax', 'Urb Industrial Monterrey, Lot #6', '', 'Puerto Nuevo', 'PR', '920', '9:00 am - 3:00 pm', 'PR 22 to PR 28, site on right, park under building Billing Address: PO Box 362040 San Juan, PR 00920 787-783-3585 '), (1255, 3826, 1255, '787-830-0366', '787-830-8962 Fax', 'Carr #2 KM 108.9', '', 'Isabela', 'PR', '662', '7:00 am - 4:00 pm', ' PR 2, 4916 Avenida Militar, Isabela Billing Address: PO Box 1286, Isabela, PR 00662-1286 787-830-0366/787-830-8962 Fax '), (1256, 3827, 1256, '1-787-887-2005', '1-787-887-2265 Fax', 'Carr 955 KM 0.9', '', 'Rio Grande', 'PR', '745', '7:00 am - 4:00 pm ', 'Billing Address: PO Box 1707 Rio Grande, PR 00745 '), (1257, 3828, 1257, '787-467-3021/787-467', '787-625-2211 Fax/787', 'Ponce Cement Plant , State Road #123', 'Frente a la planta de cemento', 'Ponce', 'PR', '731', '8:00 am - 5:00 pm', 'Billing Address Cemex Carr #3 K.13.2 Parque Ind. Metropolitano Carolina, PR 00985 '), (1258, 3829, 1258, '787-834-6666 x 2222', '787-805-0005 Fax/787', 'Ave. Santa Jeresa Jornet 637 Sur', 'BO Huanajiho Castillo', 'Mayaguez', 'PR', '682', '7:00 AM - 4:00 PM', ' '), (1259, 3830, 1259, '787-748-1706', '787-748-1706 Fax', 'PO Box 29348', 'Carr 853, KM 2.6', 'Carolina', 'PR', '', '7:00 am - 4:00 pm', ' '), (1260, 3831, 1260, '787-799-1100787-799-', '787-279-9508 Fax', 'Carr 827, KM 8.0 BO Pinas', '', 'Toa Alta', 'PR', '', '7:00 am - 4:00 pm', ' Billing Address: Calle KM35-17 Santa Rose, Tagerian, PR 787-785-7820/787-740-5808 Fax '), (1261, 3832, 1261, '787-444-5516', '787-625-2211 Fax', 'Grupo Cemex, Carr # 887', 'Zona Industrial Carolina ', 'Carolina', 'PR', '', '7:00 am- 5:30 pm', 'Billing Address: Cemex Carr #3 K. 13.2 Parque Ind. Metropolitano Carolina, PR 00985 Formerly Hormigonera Mayaguezana Looks to be a Testmark with a Heise gauge with 250 lb. counts'), (1262, 3833, 1262, '787-562-9904 Hector ', '787-733-0814 - Fax', 'Carr #1 Km 42.2 Bo. Bealriz Sector', 'Las Flores', 'Caguas', 'PR', '', '', ' '), (1263, 3834, 1263, '787-774-9403', '787-253-8400 Fax ', 'D-15 Buen Samaritano St.', 'Garden Ville Bo. Juan Domingo', 'Guaynabo', 'PR', '966', '7:00 am - 4:00 pm', ' Formerly owned by Concreto Mixto '), (1264, 3835, 1264, '787-894-2650', '787-828-0724 FAX', 'Planta Hormigon Utuado', 'Carr # 10 ', 'Utuado', 'PR', '', '7:00 AM - 3:00 PM', ' '), (1265, 3836, 1265, '787-796-0553', '787-796-0365 FAX', 'Carretera Estate 659 KM 1.1', 'Bo Maguayo', 'Dorado', 'PR', '', '7:00AM - 5:00 PM', ' Billing address: PO Box 1232 Bayamon, PR 00621 '), (1266, 3837, 1266, '787-317-2413 Rita ', '787-625-2211 Fax ', 'Carr #3', 'Barrio Villola Sector Cora Guayama', 'Guayama', 'PR', '', '', ' '), (1267, 3838, 1267, '787-444-3097/787-486', '787-625-2211 Fax', 'Carr # 923', 'Bo. Buena Vista Humacao', 'Humacao', 'PR', '', '', ' '), (1268, 3839, 1268, '(809) 757-5500', '787-625-2211 Fax Rit', 'Carr #3 K. 13.2', 'Parque Ind. Metropolitano', 'Carolina', 'PR', '985', '', 'Note: Micor switch needed for Barksdale Electrical Shutdown Also: Limit switch for platen sutdown (Allen Bradley) June - New 16\" Heise Glass, Work Hand, & Max Assembly w/Needle Billing Address: Cemex Carr #3, K. 1.3.2, Parque Ind. Metropolitano, Carolina, PR 00985 '), (1269, 3840, 1269, '787-687-7838/787-717', '787-687-7838 Fax ', 'Calle Soto Solar C', 'Valle Santa Barbara', 'Gurabo', 'PR', '778', '', ' Billing Address: PO Box 193145, San Juan, PR 00919-3145 787-687-7838, 7:00 am - 4:00 pm '), (1270, 3841, 1270, '787-733-0811', '787-733-0814 Fax /78', 'Carr 917 KM 1.0', 'Bo Tejas Sector Tomas Diaz', 'Las Piedras', 'PR', '771', '7:00 am - 4:00 pm', 'PR 30, Exit 21 to PR 183 West to PR 917 on left, go 1 mile, lab on left Billing: PO Box 1412, Las Piedras, PR 00771-1412 787-733-0811 / 787-733-0814 Fax Javier Matias '), (1271, 3842, 1271, '787-258-2737/787-661', '787-258-2727 Fax/787', 'Carr 183 KM 1.7', 'Bo. Thomas de Castro', 'Caguas', 'PR', '725', '8:00 am - 5:00 pm', ' PR 183 East Caguas, junk yard west of site Mailing: PO Box 9778 Caguas, PR 00726 Formerly Degussa Construction Chemicals'), (1272, 3843, 1272, '787-740-5252 x 2177 ', '787-740-5269 Fax ', 'Carr #2, KM 20.6', 'Bo Candelaria', 'Toa Baja', 'PR', '949', '', ' Billing Address: PO Box 2409 Toa Baja, PR 00951-2409 '), (1273, 3844, 1273, '787-312-4274 Cell/78', ' 787-886-4010 Fax', 'Carr 185 KM 4.2', 'Plant #4', 'Canovanas', 'PR', '729', '8am-4pm Office / 7am-4pm Lab', ' PR-17 East to PR-3 East, go to right, PR-185, right off ramp, site on right Billing Address: PO Box 9022889, San Juan, PR 00902-2889 787-883-7140 Telephone / 787-883-7173 Fax'), (1274, 3845, 1274, '787-312-4274 Cell/78', ' 787-886-4010 Fax', 'Carr 185 KM 4.2 ', 'Plant #2', 'Canovanas', 'PR', '729', '8am-4pm Office / 7am-4pm Lab', ' MUST TAKE ALL PROVING RINGS TO 1 LOCATION TO GET BETTER PRICE Billing Address: PO Box 9022889, San Juan, PR 00902-2889 787-883-7140 Telephone / 787-883-7173 Fax'), (1275, 3846, 1275, '787-258-8111', '787-258-6868 FAX', 'Carr 189 Km 4.0 Barrio Navarro', '', 'Gurabo', 'PR', '778', '8:00 pm - 5:00 pm ', ' Billing Address: PO Box 9057, Caguas, PR 00726 787-258-8111/787-258-6868 Fax Formerly Star Ready Mix '), (1276, 3847, 1276, '317-875-7040 Dan', '317-870-0314 Fax/317', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '7:00 am - 5:00 pm ', ' ***ISO Requested*** ***continued*** 70 West to 465 Exit 27, Mich. Road, North less than 1 mile car dealer, turn left on 99th street, 1st brick on left before stop sign ***Good Air Compressor System***'), (1277, 3848, 1277, '937-673-6427 ', '937-233-9203 Fax/937', '2181 Ferry Road', '', 'Bellbrook', 'OH', '45305', '7:00 am - 5:00 pm ', 'Take Exit 7 off of I-675, turn East on Wilmington, then turn North on Rt. 725. Go into Bellbrook to Main St., turn right at light, make right on Ferry Road, just across bridge, make right. '), (1278, 3849, 1278, '859-252-7558', '859- 255-0940 Fax/85', '446 E. High Street, Suite 140', '', 'Lexington', 'KY', '40507', '8:00 am - 4:00 pm', 'I-75 & I-64 onto BUS 60, turn left onto Walton Avenue, right onto Woodland Avenue, right onto East High Street 446 East High St. UK Campus, Broadway Cross Main, Maxwell East, 6-8 light Left, Woodland Ave Left immediate left on High on Left. FT-20 to be calibrated every other cycle - it is kept as a backup and not used.'), (1279, 3850, 1279, '937-748-2412 Ext. 63', '937-748-2195 Fax/937', '95 Mound Park Drive', '', 'Springboro', 'OH', '45066', '8:00 am - 5:00 pm ', 'Take I-75S to Springboro Exit #38 (State Route 73). Go east on Rt. 73 toward Springboro 2 miles. At the intersection of 73 and 741, go South on 741 to 1st light. Turn left on East Mill Street. Go 2 blocks. make left on Mound Park Drive. (Big sign with Concrete Technologies) Yellow building is straight ahead. Use DR2001 Cal Procedure Formerly Concrete Technologies'), (1280, 3851, 1280, '513-402-5039 / 859-2', '513-402-5002 Fax', '550 S. Main Street', '', 'Monroe', 'OH ', '45050', '7:00am-5:00pm / 6:00am-5:30pm Job ', ' I-75 South, Exit 29, merge onto SR-63, turn left onto N. Main Street (Cincinnati Dayton Raod), go 1.3 miles onto S. Main Street Formerly Moraine Materials '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1281, 3852, 1281, '937-704-1732 Kathy', '937-746-1528 Fax', '125 N River Street', '', 'Franklin', 'OH', '45005', '7:00am-4:00pm/7:00am-5:00pm Job', '**This machine is just down the road from the Oxford address** I-75 turn right off Exit Franklin/Springboro, west on St Rt 73 all the way thru town to bridge (2 lions on bridge), go accross bridge at the end, turn left onto Oxfor Road, go 1/4 miles right before over pass, turn left into plant, stay to left near guard shacks, park anywhere, go in front door Dead weight correction value: 0.9993'), (1282, 3853, 1282, '(937) 492-9119/937-5', '(937) 492-8434 Fax', '4625 Hardin-Wapak Road', '', 'Sidney', 'OH', '45365', '7:30 am - 4:30 pm', '4th Right, Robert Blvd. Make Right Before Bridge. Stay straight to 75 75 S to Rt. 47 exit 92, 47 west (right) Hardin Town left at crossroad, 1 to 2 miles, next drive past Springcreek Gravel Formerly Robert Oldham, Ltd. '), (1283, 3854, 1283, '937-456-4539', '937-456-9247 Fax', '805 S. Franklin Street', 'PO Box 671', 'Eaton', 'OH', '45320', '7:30 am - 4:30 pm', 'I-70 to Exit 10, go South on US 127, left onto US 35, right onto SR 122, cross railroad tracks and building will be at the Northwest corner of the next road to the left. Tax Exempt Number: 3108 '), (1284, 3855, 1284, '(513) 777-9890/513-9', '513-777-9070 Fax/317', '6205 Schumacher Park Drive', '', 'West Chester', 'OH', '45069', '7:00 am - 5:00 pm ', ' From Cincinnati, Ohio, I-75 West, Exit 19, turn left off ramp onto Union Centre Blvd., left onto Mulhauser, left onto Allen Road, right onto Schumacher Park Drive Take Black I Beam for Rainhart.'), (1285, 3856, 1285, '517-582-4002 Steve C', '517-676-3758 Fax', '201 Plains Road', '', 'Mason', 'MI', '48854', '', 'Take 127 South to Barns Road #61 Exit. Turn left on Barns to Maridian. Go right, then right on Plains. 5/01 Installed digital.'), (1286, 3857, 1286, '810-240-9286 Marty c', '810-787-0515 Fax/810', 'G5300 North Dort Highway', '', 'Flint', 'MI', '48505', '', 'From 75 to 475 South, take Exit 11 Carpenter Street, make left (east) 2nd light Dort Highway, make left, 1/4 mile on right, Green block building on left of scales Office Address: Superior Materials Holdings, LLC, PO Box 2900, Farmington Hills, MI 48333-2900, 30701 W. 10 Mile Road, Suite 500, Farmington Hills, MI 48336 248-788-8000 Formerly Kurtz Gravel Company '), (1287, 3858, 1287, '440-731-1964 Mike\'s ', '216-378-1497 Fax', '23225 Mercantile Road', '', 'Beachwood', 'OH', '44122', '8:00-5:00', 'I-80 W toward Sharon, onto I480W Ex. 187 toward Cleveland keep left take I-271 N toward Erie, Keep right take I-271 N, take US-422W, turn left onto Chagrin Blvd follow the turn left onto Mercantile Rd. '), (1288, 3859, 1288, '734-397-3100', '734-397-3131 Fax', '2365 Haggerty Road South, Suite 100', '', 'Canton', 'MI', '48188', '8:00 am - 5:00 pm', ' ***ISO Requested*** Continued... 275 Michigan Avenue, Michigan West, First crossroads is Haggerty Road, make right 1/2 mile on right hand side '), (1289, 3860, 1289, '734-397-3100', '734-397-3131 Fax', '2365 Haggerty Road South, Suite 100', '', 'Canton', 'MI', '48188', '7:00 am - 5:00 pm', ' ***ISO Requested*** Continued... 275 Michigan Avenue, Michigan West, First crossroads is Haggerty Road, make right 1/2 mile on right hand side '), (1290, 3861, 1290, '989-496-3610', '989-496-3190 Fax', '3730 James Savage Road ', '', 'Midland', 'MI', '48642', '7:30 am - 5:30 pm/8:00 am - 5:00 pm Job', ' I-75, Exit 162B, bear right onto US-10 (SR-25), left onto SR-20, (US-10 Bus), left onto James Savage Road '), (1291, 3862, 1291, '231- 777-3451', '231-777-3621Fax', '2225 Olthoff Drive', '', 'Muskegon', 'MI', '49444', '7:00 am to 4:30 pm', '96 West to 31 North. Sherman Exit to East. Left on Black Creek Rd. (2nd light). Right on Olphoff Road. Building for lab back left of parking lot Only need PO if total is over $1,500.00 '), (1292, 3863, 1292, '(248) 858-0140', '(248) 452-2250 Fax', '#1 Public Works Drive', '', 'Waterford', 'MI', '48328', '7:00 am - 3:30 pm', 'Take Telegraph Road onto Pontiac Lake Road to Watkin Rd. At 2nd light make right hand fork. Go 1/2 mile. Army Reserve on right. Turn right onto Public Works Drive. Only building on left. Go in lower level. '), (1293, 3864, 1293, '814-677-2093', '', '1303 State Route 227', '', 'Oil City', 'PA', '16301', '', ' '), (1294, 3865, 1294, '419-324-2222 x 0133 ', '419-241-1808 Fax', '1915 N. 12th Street', '', 'Toledo', 'OH', '43604', '8:00 AM - 5:00 PM', 'Gauge must be Calibrated in order to calibrate consolidation machine 75 North, 25 North Exit, left on Jackson, right onto 12th Street (Allied Moving), North about a block on left, intersection Southard left into parking lot Elevation: 615 Feet, Lat: 41.664*N, Long: 83.555*W Dead Weight Correction Value: 0.9993'), (1295, 3866, 1295, '989-686-3100 x 11109', '989-686-4329 Fax/989', '3933 Monitor Road', '', 'Bay City', 'MI', '48706', '8:00 am - 5:00 pm', 'I-75 North Exit to Wilder Street Exit M13 - left at light over overpass Right on Monitor Road first building on right after S curve not marked, first road 3/03 Purchased machine from Granger & Associates'), (1296, 3867, 1296, '419-466-8169 Brian B', '419-841-0312 Fax (Te', '7901 Sylvania Avenue ', '', 'Sylvania', 'OH', '43560', '7:30am-4:00pm ', ' I-80 (North), Exit 59, right onto US-20 (Reynolds Road), right onto W. Dussel Drive, right merge onto I-475 (US-23), North, Exit 13, left onto US-20 (SR-120), right onto King Road, left onto CR-5 (Sylvania Avenue) QC Lab out back @ Fuel Island Billing: Shelly Central AP Processing, PO Box 600, Thornville OH 43076/740-246-6315/740-246-4715Fax(Debbie Havens 740-246-1121)'), (1297, 3868, 1297, '419-625-9132', '419-625-1201 Fax', '2020 Caldwell Street', '', 'Sandusky', 'OH', '44870', '7:00 am - 4:00 pm ', ' Rt. 250 North, 7 miles past Walmart, light at Perkins Avenue turn left, 3rd light Caldwell Street make a right, last on right '), (1298, 3869, 1298, '304-252-0691', '304-252-0693 FAX', '97 S Hill Street', '', 'Mabscott', 'WV', '25871', '8:00 am - 4:00 pm', ' 77 Mabscott Exit 42 , off to right Mabscott, at stop sign, turn right, at red light turn left, 1 mile on left May 2003 - Purchased Reconditioned Forney Machine From CSI'), (1299, 3870, 1299, '(724) 852-1112', '(724) 852-1114 Fax', '165 Rolling Meadow Road', '', 'Waynesburg', 'PA', '15370', '7:00 am - 4:00 pm', 'I-79 to Exit #3. West Rt. 21 to 3rd light and make left at \"T\". South on Rt. 19. Go 1 block and make left at \"Y\" onto Rolling Meadows Road. Site about 3/4 mile on right. '), (1300, 3871, 1300, '304-460-7221 Archie', '304-636-6096 Fax', 'Rt. 33 East, Saul\'s Run ', 'Rt. 6, Box 169', 'Buckhannon', 'WV', '26201', '7:30am-3:30pm/6:00am -2:00pm Job', 'West of Buckhannon, Exit #99 off I-79 south. Take 33 East for 8 miles. Turn right on 2nd Saul\'s Run Road Site on right. Verizon on left, up 1/10th mile, first building on left '), (1301, 3872, 1301, '304-635-7321', '(304) 636-6096 Fax', 'US Route 33 West', 'Aggregates', 'Elkins', 'WV', '26241', '7:30am-3:30pm/6:00am -4:00pm Job', 'I-79S to Exit #99. Take Rt. 33 to Crystal Springs Exit, 1/2 mile on the right Billing Address: J.F. Allen Company PO Box 2049 Buckhannon, WV 26201'), (1302, 3873, 1302, '304-592-0154 / 304-5', '304-636-6096 Fax', 'Saltwell Road, RT 131 West ', 'Rt. 2, Box 141', 'Bridgeport', 'WV', '26330', '7:30am-3:30pm/6:00am-2:00pm Job ', 'I -79 to 279 Saltwell Road Outside of Clarksburg 1125 Exit. Turn Right 2/10 mile to Exxon. Make Left. 4/10 Mile. Up a Hill, Down a Hill. On Left Chain Link Thru Fence Lab 500 ft Straight '), (1303, 3874, 1303, '(304) 752-2330', '(304) 752-7961 Fax', '209 Powerhouse Drive ', '', 'Logan', 'WV', '25601', '7:00 am - 4:00 pm', 'Intersection of Rt. 10 / 119 - Edge of town under bridge. Bought 2 machines from Barboursville Testing in 1997 '), (1304, 3875, 1304, '304-727-7062', '304-722-1822 Fax', '107 Industrial Road ', '', 'St. Albans', 'WV', '25177-1780', '7:00 am - 5:00 pm', 'I-64 West, St. Albans exit, turn Right on Rt. 35, 1 1/2 - 2 miles '), (1305, 3876, 1305, '(412) 963-0303 x 252', '(412) 963-7620 Fax /', '160 Gamma Drive (RIDC Industrial Park)', '', 'Pittsburgh', 'PA', '15238', '7:30 am - 4:00 pm ', 'To Rt. 28 South towards Pittsburgh - RIDC Park Exit. Make a right, go 1/10 mile. Site on right. Need Cal 60 Invoice in duplicate'), (1306, 3877, 1306, '724-222-4254', '724-222-2859 Fax', '45 Arden Road', '', 'Washington', 'PA', '15301', '6:00 am - 5:00 pm ', 'Take 79 South to Meadowlands Exit (41), turn right, then left at light. Next light, take a right.Go to stop sign and go right, cross RR tracks, turn right on Arden Road. Site on left. '), (1307, 3878, 1307, '304-647-7560', '304-647-7617 Fax / 7', 'District 9 Materials Lab', 'Exit 175, Rt. 60 ', 'Harts Run', 'WV', '24986', '7:30 am - 4:00 pm ', 'East on 64, Exit 175, to Route 60 towards White Sulphur Springs, at intertsection turn right onto Route 60, approx. 1/2 mile, located behind Sterling Corp. Building, just pass white house type structure named Sterling Corp., turn right (Entrance has guardrail on both side of the entrance), we are located within the Div. of Highways Maintenance lot located on right of Route 60, within a chain linked fence, entrance road is straight shot towards our gated entrance tan metal building, is Materials Lab'), (1308, 3879, 1308, '304-466-6950 ', '304-466-6951 Fax ', 'HC 78 Box 6C (Rt. 20)', 'US Army Corps of Engineers ', 'Hinton', 'WV', '25951', '', ' I-64 (NE), Sandstone Exit, turn left onto 20 South, all the way up river, go through town of Hinton, go across bridge, Rt. 20, 3 or 4 miles , on top of dam '), (1309, 3880, 1309, '', '', 'Powell Electrical Mfg. Co.', '8550 Mosley Drive', 'Houston', 'TX', '77075', '', ' '), (1310, 3881, 1310, '724-746-5080', 'RMA 8004', '396 Morganza Road ', '', 'Cannonsburg', 'PA', '15317', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1311, 3882, 1311, '256-974-3731', '256-974-5880 Fax', '9701 Al Hwy 157', '', 'Moulton', 'AL', '35650', '9:00am - 5:00pm', ' '), (1312, 3883, 1312, '919-831-8010', '', '3301 Atlantic Avenue', '', 'Raleigh', 'NC', '27604', '', ' 3/08 Ship on Fed Ex Acct.# 0276-0243-6 Will ship their old front valve section back to CSI when receive reconditioned one Needs a receipt Requistion 17612 Received old valve 3/10/2008 '), (1313, 3884, 1313, '(724) 475-3867', '', '119 Old Harmony Road', '', 'Irwin', 'PA', '15642', '', ' '), (1314, 3885, 1314, '937-704-1732 Kathy', '937-746-1528 Fax ', '675 Oxford Road ', '', 'Franklin', 'OH', '45005', '7:00am-4:00pm/7:00am-5:00pm Job ', ' I-75 Turn right off Exit Franklin/Springboro. West on State Route 73 all the way thru town to bridge (2 lions on bridge) go across bridge at the end turn left onto Oxford Road. Go 1/4 miles right before overpass turn left into plant. Stay to left near guard shacks park anywhere go in front door Dead weight correction value: 0.9993'), (1315, 3886, 1315, '517-655-4602 x112/51', '517-655-8042 Fax', '3416 Corwin Road ', '', 'Williamston', 'MI', '48895', '9:00 am - 4:00 pm ', ' I-96 to Williamston Exit, go North to Lynn Road, go West to Corwin Road, go North on Corwin, take right just before R.R. Tracks, go all the way to back to Kelcris Corporation '), (1316, 3887, 1316, '412-805-1683 Bert Ho', '412-805-1642 Lance L', '1000 Banksville Road', '', 'Pittsburgh', 'PA', '15216', '', 'Under the Ft. Duquense Bridge '), (1317, 3888, 1317, '716-649-6780', '716-649-7389 Fax', '5225 Southwest Blvd.', '', 'Hamburg', 'NY', '14075', '', 'Hwy. 75North from I-90 (West Side of Buffalo) left on Hwy. 20, go 500 feet on left hand side. '), (1318, 3889, 1318, '(989) 463-5476', '', '1277 Bridge Street', '', 'Alma', 'MI', '48801', '', ' '), (1319, 3890, 1319, '859-277-5300 ext 32 ', '859-991-5265 Malcolm', 'Storage', '', 'Centerville', 'OH', '', '', ' CALL MALCOLM FOR DIRECTIONS - PER BILL ROBERTSON '), (1320, 3891, 1320, '419-221-1667 ext 581', '419-221-5189 Fax', '', '', 'Lima', 'OH', '', '', ' CALL FOR DIRECTIONS - PLEASE WRITE THEM DOWN '), (1321, 3892, 1321, '412-665-3618', '', 'Washington Blvd', '', 'Pittsburgh', 'PA', '', '', 'Off Rt 28 S - Take Highland Park Exit - Cross Bridge - Stay in Left lane circle under bridge to Butler Street - Stay in Left lane to Washington Blvd. Small Block Building '), (1322, 3893, 1322, '(585) 254-8740', '(716) 254-1351 Fax', '385 Sherman Street', '', 'Rochester', 'NY', '14606', '8:00-5:00', 'I 90 to Leroy Exit #47 onto 490E. Take Mount Read Blvd. Exit #10B. Go 1 mile on Mt. Read. Turn right at light onto Emerson St. Go 3 lights. (4 lights is too far) Turn right onto Sherman Street. Go 2 blocks on right. Site on right in red brick building next to a blue building. See map. '), (1323, 3894, 1323, '(716) 877-9577', '(716) 877-9629 Fax', '861 Sheridan Drive', '', 'Tonawanda', 'NY', '14150', '8:00-5:00', 'Rt. 190 N to Kenmore Ave. / Sheridan Drive. At end of ramp go straight at stop onto Sheridan (324E). Go to \"Y\" at next light. Site on right in blue metal/block building. Red dump truck outside. '), (1324, 3895, 1324, '(814) 269-2642', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '', ' '), (1325, 3896, 1325, '(814) 269-2642', '', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '', 'Take 219 South to Scalp Level Road or (Galina Exit), make left at bottom of ramp. Past Sheetz . Site in red brick bldg. on right hand side. Past Lockheed Martin. Include ID #\'s on Certs continued next page...................................................'), (1326, 3897, 1326, '304-232-1040', '', '124th Street', '', 'Wheeling', 'WV', '26003', '', ' From Pittsburgh: I-79 S to 70 W to Wheeling, go through tunnel in right lane, exit on 25 (Main Street) after tunnel, right onto 24th Street. Machine in back of building, turn right in alley before building '), (1327, 3898, 1327, '', '', '', '', '', '', '', 'Call prior', 'Past PA State line - bear to left onto Rt. 549. Go to Rt. 6. Take Rt. 6 W. Go past college to red light - straight through pass school. Go under underpass and up hill. Sign on left. Green building. '), (1328, 3899, 1328, '(716) 372-6300 Ext.', '(716) 372-6864 Fax', '211 Franklin Street', '', 'Olean', 'NY', '14760', '8:00-5:00', 'Take 17E, Exit #25. At end of ramp turn left. Make right onto Homer Street. Turn right at stop onto Johnson Street. Go under 17 and across RR tracks. Site on right. (Big sign - tan building) '), (1329, 3900, 1329, '1-800-222-1020/ 716-', '', '10 Carriage St.', '', 'Heneoye', 'NY', '14472', '', ' '), (1330, 3901, 1330, '440-234-8985', '', '792 W. Bagley Rd.', '', 'Berea', 'OH', '44012', '', 'Job site is located at the intersections of Alexis & Lewis Avenues. From 80 West (Turnpike) , use Exit 71 to 280. Take 280 to 75 North (Detroit). Get off at second exit, Alexis Rd. Turn left. Follow Alexis to the intersection of Alexis & Lewis, turn left. Job trailer is on right hand side. '), (1331, 3902, 1331, '732-271-9301', '302-326-2399 Fax', 'Worlds Fair Drive', 'Building 24 Suite B', 'Somerset', 'NJ', '8873', '', 'I-287 South to Exit 10 to Worlds Fair Drive (Turn Right only) Building 24 Suite B '), (1332, 3903, 1332, '', '', '115 Rauch Drive', '', 'Marietta', 'OH', '45750', '', ' '), (1333, 3904, 1333, '304-636-3886 Main Of', '304-636-4487 Job Sit', 'Rt. 219 North', '', 'Elkins', 'WV', '', '7:00 - 5:30 M-Th', 'Site is approx. 1 1/2 miles North on Rt. 219 from Elkins. White bldg. on right. If you go to flashing red light, you have gone 150 yards too far north. '), (1334, 3905, 1334, '570-784-4866 ext 223', '', '1525 Millville Road', '', 'Bloomsburg', 'PA', '17815', '', 'From I-80 take exit 232, 42 North 4-5 miles on right '), (1335, 3906, 1335, '606-885-6001', '', '', '', 'Nicholasville', 'KY', '', '', ' '), (1336, 3907, 1336, '724-352-9421', '724-352-9512 Fax', '409 Saxonburg Blvd.', '', 'Saxonburg', 'PA', '16056-9405', '', ' '), (1337, 3908, 1337, '607-776-7391', '607-776-3888 Fax', '7291 Knight Settlement Road', '', 'Bath', 'NY', '14810', '', ' '), (1338, 3909, 1338, '(517) 486-6321', '(517) 486-2546', '11505 East US 223', '', 'Blissfield', 'MI', '49228', '', 'West of Blissfield, Southside of Rt 223 Easay to see Bldg & Number '), (1339, 3910, 1339, '(412) 539-2311', '', 'Longbridge Quarry', '', 'Latrobe', 'PA', '15650', '7:00am-3:00pm', 'Rt. 30E toward Ligonier. Pass Sleepy Hollow Inn. Cross bridge. Make 1st left, turn left onto Rt. 30W. Go 100 feet and make right turn up hill. (Town at bottom of hill is McCance.) '), (1340, 3911, 1340, '859-743-5470 Rick Ce', '', '14869 US Highway 52', '', 'Manchester', 'OH', '45144', '', 'I-80 West, take I-76 West toward Akron, merge onto I-71 South via Exit 1 toward Columbus, merge onto I-70 West via Exit 107 toward Dayton/Cincinnati, merge onto I-71 South via Exit 99A-B on the left toward Cincinnati/Dublin Road, merge onto I-270 East via Exit 101 toward Wheeling, merge onto Us-23 South via Exit 52 toward Circleville, merge onto US-23 South toward Portsmouth, take OH-32/OH-124 Exit toward Jackson/Cincinnati, turn right onto OH-124 W/OH-32 West, continue to folow OH-32 West, turn'), (1341, 3912, 1341, '315-469-3285', '315-469-1614 Fax', '4603 Nixon Park Drive', '', 'Syracuse', 'NY', '13215', '7:30 - 4:00', ' '), (1342, 3913, 1342, '502-244-3848', '', 'S.R. 42', 'JOB SITE', 'Carroltown', 'KY', '', '', 'North American Steel Plant I-71 toward exit Carroltown/Worthington I71N Carroltown exit 44, right onto SR 227, 3 - 5 miles right SR 42 3 - 5 miles, right side of road, Stop at guard shack '), (1343, 3914, 1343, '606-428-2400', '606-428-3354 fax', '240 Rodgers Road', '', 'Crittenden', 'KY', '41030', '', 'See Attached Map(s) '), (1344, 3915, 1344, '315-702-7485 Bill', '315-252-7595 Fax', '3486 Franklin Street Road', '', 'Auburn', 'NY', '13021', '', '34 N ot 5E in Auburn 3rd or 4th light, turn left onto Seymore St to stop sign. Left onto Franklin 3 miles, ahead on right '), (1345, 3916, 1345, '732-445-3148', '723-445-0577 Fax', '102 Bowser Road', '', 'Piscataway', 'NJ', '8854', '8:30am - 4:30pm/8:00am - 3:00pm Job', ' '), (1346, 3917, 1346, '(716) 649-8110', '(716) 821-0163 Fax', 'Route 5 Ridge Road Exit', '', 'Buffalo', 'NY', '14218', '', 'Route 5 E to Lackawana. Take Ridge Road Exit. Make left at stop sign. Go 100\' to next stop sign. Make right. Industrial park is on left. Go to Gate 1 - check in with guards. '), (1347, 3918, 1347, '616-224-6176', '(616) 457-6440 Fax', '3373 Busch Drive', '', 'Grandville', 'MI', '49418', '8:00 - 5:00', 'Route 196 West to Jenison Exit #69B - for Chicago Drive West. Go West 3 miles. Southside of road (left side). '), (1348, 3919, 1348, '502-776-8001', '', '2700 Marine Street', '', 'Louisville', 'KY', '40212', '', ' '), (1349, 3920, 1349, '434-385-5028', '434-385-8943', '3401 Forest Brook Rd.', 'PO Box 4237', 'Lynchburg', 'VA', '14502', '7:00am - 5:00pm', ' CALL FOR DIRECTIONS & WRITE DOWN! '), (1350, 3921, 1350, '412-771-4983', '', '', '', 'McKees Rocks', 'PA', '', '', 'Take Neville Island Exit. Follow Rt. 51 South into McKees Rocks. at \"TRIANGLE\" type intersection, make left on McKees Rocks Bridge, exit off at Helen Street at bottom of ramp, make left and go under bridge, at firehall on left make a left, go one (1) block to \"T\" and make right. Follow four (4) blocks to Trinity Ind. Go to next gate (MRIE) , make right. First building on left. '), (1351, 3922, 1351, '(216) 963-3500', '(216) 963-3307 Fax', '8500 Hadden Road', '', 'Twinsburg', 'OH', '44087', '', 'See work order '), (1352, 3923, 1352, '(814) 885-8517', '(814) 885-8498 Fax', '135 Green Road', '', 'Kersey', 'PA', '15846', '7:00am - 4:00pm', 'From Dubois take 255N to 948N into Kersey Go 1 mile (large straight stretch). Several plants located along this highway. Watch for Keystone Gas Station. US Heat Treaters is beside gas station on Green St. '), (1353, 3924, 1353, '(804) 293-1983', '(804) 293-1990 Fax', 'Research Center', '530 Edgemont Road', 'Charlottsville', 'VA', '22903', '', ' '), (1354, 3925, 1354, '(716) 487-1901', '', '335 Harrison', '', 'Jamestown', 'NY', '14701', '', ' '), (1355, 3926, 1355, '610-559-9000', '610-559-1919 FAX', '12 McFadden Road', '', 'Easton', 'PA', '18045', '6:00 am - 5:00 pm ', 'Take Rt. 22 East to Rt. 33 Exit to Rt. 248 to Nazareth. Stay in right hand lane. make right at light, go 1/2 mile--Blue Nursery on left, turn right on Hollow Rd. Go to stop sign, make right onto Van Buren, go to stop light & make left on Newlins Mill Road. Go 1/2 mile---- make left, entrance to Industrial Park--is 2nd on right. Go around bend to driveway. '), (1356, 3927, 1356, '215-631-4264 Harry', '267-446-8390 Kevin ', '5885 West River Road ', '', 'Salem', 'VA', '24153', '', ' I-81 North, Exit 132, turn off ramp, Merge onto SR-647, Dow Hollow Road (South East), turn right (South) onto US-11, West Main Street, turn left (South East) onto SW River Road '), (1357, 3928, 1357, '574-289-8378/574-276', '', '3725 Foundation Court', '', 'South Bend', 'IN', '46628', '', ' '), (1358, 3929, 1358, '317-796-3507', '317-870-0314 Fax', '4420 Midfield Road (Airport)', '', 'Indianapolis', 'IN', '46032', '8:00 am - 4:00 pm ', ' 05/06/06 Call Sam Prater 317-796-3057 For directions Dan Dilk 317-753-3725/317-875-7040 '), (1359, 3930, 1359, '260-484-0813 Sam Cal', '260-413-0581 Additio', 'Fort Wayne Office', '363 East Airport Road', 'Kendallville', 'IN', '46755', '', '69S to US 6W, north on state rd 3 about 1 mile, airport rd on right NE corner of Hanger next to terminal building. 208 E Collins, Ft. Wayne, IN 46852 '), (1360, 3931, 1360, '814-269-2580 Ray', '814-269-2499 Fax', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '8:00 am to 5:00 pm ', 'Take 219 South to Scalp Level Road or (Galina Exit), make left at bottom of ramp. Past Sheetz. Site in red brick bldg. on right hand side. Past Lockheed Martin. '), (1361, 3932, 1361, '419-385-2018', '419-385-5487 Fax', '3401 Glendale Ave', '', 'Toledo', 'OH', '43614', '', ' '), (1362, 3933, 1362, '614-203-3917 Jason C', '', '6211 Avery Road', '', 'Dublin', 'OH', '43016', '', ' Elev. 850 Feet Lat. 40.099 Degrees North Long. 83.114 Degrees West DW Correction Value 0.9993 '), (1363, 3934, 1363, '248-535-3375 Rob Cel', '248-535-3463 Marty G', 'Job Site', '', 'Flint', 'MI', '', '7:00 am - 4:00 pm', 'I-75 North through Detroit towards Flint. Take I-475 (Exit 111) North past I-69 to Carpenter Road (Exit 10). Turn right onto Carpenter Road, head East crossing railroad tracks and then through Dort Highway. Job site is on left side of Carpenter Road just past the Flint River, if you get to Branch Road you\'ve gone too far. There will be 4 trailers lined up by the road, the furthest trailer East is home to the break machine. 11/02 Install Digital on s/n 95129'), (1364, 3935, 1364, '(304) 755-0131', '304-755-0131 Fax num', '220 Steward Lane (Rt. 35)', '', 'Winfield', 'WV', '', '6:30AM - 5:00PM Mon-Thurs', 'Off St. Albans Exit from I-64. Turn left - approx. 4 miles past Power Plant. Watch for signs McKinney Drilling on right. Turn onto Stewart Lane. '), (1365, 3936, 1365, '304-466-6950', '304-466-6951 Fax', 'Bluestone Dam', 'HC 78, Box 6C', 'Hinton', 'WV', '25957', '7:00 am - 4:30 pm', 'From Beckley, WV. Go South on I-77, East on 64, approx. 12-14 miles to WV Rt. 20. At the New River, go South on Rt. 20 in Hinton, WV. Follow Rt. 20 and cross back over river, follow Rt. 20 for 4 miles to the dam. Office @ dam. '), (1366, 3937, 1366, '734-422-8000/586-615', '734-422-5342 Fax/734', '33080 Industrial Road ', '', 'Livonia', 'MI', '48150', '8:00 am - 5:00 pm ', ' ***Check S/N on Displacement S/N A81547*** I-96 to Exit 175 Meriman exit, go South to first light turn right onto Glendale, the third building on the left 26 minutes from Detroit Ship to Address: 31628 Glendale Avenue, Livonia, MI 48150 Federal ID# 38-3488259'), (1367, 3938, 1367, '434-296-7181', '434-220-0129 Fax', '1000 Harris Street', '', 'Charlottesville', 'VA', '22903', '', ' I-81, Exit 221, merge onto I-64 East, Exit 118, bear right (North-East), onto US-29, continue North on US-250 (US-29), right (South-West), onto Harris Street '), (1368, 3939, 1368, '814-235-0649/814-659', '814-242-7307/814-235', '1050-6 Benner Pike', 'JOBSITE', 'State College', 'PA', ' ', '', ' 322 to Siloh Street Exit, turn right at Sheetz, turn left 200 yards, Tractor Supply, turn right at group of offices '), (1369, 3940, 1369, '', '', '1520 East Main Street', '', 'Lansing', 'MI', '', '7:00 am - 5:00 pm', ' '), (1370, 3941, 1370, '814-242-8918 Bruce', '', 'Storage', '', 'Ebensburg', 'PA', '15931', '', ' 80E Limestoneville Exit, Make left follow into Washintonville at red light straight through road on left to power plant - USG road to power plant job trailer to right. '), (1371, 3942, 1371, '513-569-1749 Tom Bur', '513-569-4689 Fax', '3520 Central Parkway', '', 'Cincinnati', 'OH', '45223', '', 'From Cincinnati I-75N to Exit 3 Hopple St. Left at end of ramp to next light. Left turn onto Central Parkway, go 1 mile and College on right. Tom Burns office is Room 210 and lab is Room 134A '), (1372, 3943, 1372, '513-398-8604', '513-398-2735', '755 Reading Road', '', 'Mason', 'OH', '45040', '8:30am-4:30pmOffice/7am-3:30pmLab', ' I-71 south to the Kings Island exit. Turn right on 741 and take that to Route 42. Turn left on Route 42 and Hamilton Security is approx. 10 miles up on the right side next to the Mason Bowl Tylersville Road Exit, Left to 42, BP Corner, Turn Right, 1st Baptist Church, 2nd drive strip mall, drive to back '), (1373, 3944, 1373, '859-582-5426 / 606-6', '859-263-4625 Fax', '9615 Alexandria Pike ', 'Job Site - Highway 27', 'Alexandria', 'KY', '41001-7525', '8:00am - 5:00pm/7:00am - 5:00pm Job', 'Highway 27 just outside of Alexandria, Ky I-80 West take I-76 West toward Akron, merge onto I-71 South via Exit 1toward Columbus, merge onto I-70 West via Exit 107 toward Dayton/Cincinnati, merge onto I-71 South via Exit 99A-B on left toward Cincinnati/Dublin Road, merge onto I-471 South via Exit 10 toward Newport, KY, I-471 South becomes US-27, 9615 Alexandria Pike'), (1374, 3945, 1374, '814-536-6767x235 Bri', '(814) 536-6770 Fax/8', '647 Main St., Suite 200 2nd floor', '', 'Johnstown', 'PA', '15901', '7:30 am - 4:30 pm', 'Rt 219 S to 56 W and Get off at Bedford Street Exit, Go Right at Adams St at Stop Sign at end of exit ramp. Go to first stop and go left - go about 100 ft and RT onto Feeder Street & Park in Lot on Right side of the street - Go into brick bldg opposite of parking lot to second floor for key to testing room in the basement '), (1375, 3946, 1375, '812-221-0013 Bill Ce', '', 'Job Site', '', 'Wises Landing', 'KY', '', '7:00am - 5:00pm/7:30am-5:00pm Job', ' I-75 in Kentucky to I-71 South towards Louisville to Exit #34, Bedford, take Exit #34, turn right onto SR 421, go 8 miles to Bedford, turn left onto US 42, go about 1 mile, turn right on SR 754, go 6 miles, turn right on SR 1488, your at the power plant Bechtel Power Corporation/Wises Landing, Tremblo County'), (1376, 3947, 1376, '304-949-1934 Terry', '304-949-1937 Fax', 'Marmet Locks', '', 'Belle', 'WV', '', '6:00-4:00 (can be there later if you call)', 'South East of Charleston, WV - Belle, WV - Along Kanawha River Past Dupont Factory 64 East to split of Rt. 60, Midland Trail, past Toutors , 4 lights Moldon Exit, 1st Exit turn left at 1st Stop sign '), (1377, 3948, 1377, '317-875-7000', '317-876-3705 Fax', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '7:00 am - 5:00 pm ', ' Exit 27, Mich. Road, North less than 1 mile car dealer, turn left on 99th street, 1st brick on left before stop sign '), (1378, 3949, 1378, '616-559-7272', '616-977-8617 Fax / 6', '3700 32nd Street SE', '', 'Grand Rapids', 'MI', '49512', '', ' I-275 North (I-96/Lansing), merge I-96, at I-96 Exit 43A (28th St West/ M-11/Kent Co. Airport), bear right onto 28th Street SE, continue on SR-11 (28th St SE), left onto Lake Easbrook Blvd. SE, right onto 32nd Street SE S/N 29020206 Cal# 2794'), (1379, 3950, 1379, '269-276-3214 John', '269-276-3211 Fax', 'Civil & Construction', '4601 Campus Drive, Room G253', 'Kalamazoo', 'MI', '49008-5316', '8:00 am - 5:00 pm', ' 94W, 131N, exit 36 MU Park, right Derrick Road to Campus Bark View '), (1380, 3951, 1380, '(513) 242-3644', '(513) 242-7845 Fax', '5155 Fischer Place', '', 'Cincinnati', 'OH', '45217', '8:00 am - 4:30 pm', 'Take 75 South to Exit #7 for Norwood Lateral Expressway (Route 562). Take Paddock Rd. (Route 4S) and turn onto Tennessee at light. Make right at first light, Fischer Place. Site at end of street. '), (1381, 3952, 1381, '419-399-4861 x 224 J', '419-399-5301 Fax', '11435 Road 176', '', 'Paulding', 'OH', '45879', '', ' I-80 North (Ohio Turnpike), at Ohio Tpke, I-75 Exit, merge onto I-75, at I-75, Exit 192, merge I-475 (US-23 West), turn off turnpike US-24/Napoleon/Maumee, continue SW onto US-24 (Anthony Wayne Trail), right onto US-24, continue West on ramp, bear right US-24 (US-6), left onto ramp, bear left onto US-127 (SR-127) South, right onto CR-176 (Road 176) West, arrive 11435 Road 176 '), (1382, 3953, 1382, '724-333-6600 Mason', '', 'No longer a job site', '', 'Alliquippa', 'PA', '', '8am-5pm Office / 7am-5pm Lab', ' '), (1383, 3954, 1383, '610-398-1151 Main No', '610-530-6119 Fax', '1 Willow Lane ', '', 'East Texas ', 'PA', '18046', '', ' Depart Allentown on Allen St. (West) for 1.8 mile turn right onto N24th street turn left onto Tilghman st turn left onto ramp, merge onto SR-309, At SR-309 I-78 exit, turn off onto ramp Merge onto I-78 Exit 54 turn off onto ramp continue on US-222 (Hamilton Blvd). Turn left onto S. Krocks Rd, turn left onto Lower Macungie Road '), (1384, 3955, 1384, '513-967-2199 Bruce', '317-870-0314 Fax', 'Storage ', '', 'Carmel ', 'IN', '', '', ' I-74 W to SR3 south to right on SR421 to left on Michigan Ave (left just before ODOT garage & salt dome) to site on left. 1 hour from cincinnati '), (1385, 3956, 1385, '318-925-1020', '318-925-1033 Fax', '9901 Drag Strip Road ', '', 'Keithville', 'LA', '71047', '', ' '), (1386, 3957, 1386, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', ' **NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS '), (1387, 3958, 1387, '866-639-7667 Toll Fr', '866-809-6307 Fax Lou', '8840 E. Sunland Avenue #66', '', 'Mesa', 'AZ', '85208', '', ' **NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS '), (1388, 3959, 1388, '724-981-4212', '724-981-4214 Fax', '1325 Broadway Avenue', '', 'Hermitage', 'PA', '16148', '8:00 am - 5:00 pm ', ' I-80 West, Exit 4, merge SR-60 West, at SR-60 SR-18 Exit, bear right onto Broadway Avenue '), (1389, 3960, 1389, '607-962-8983', '607-962-8984 FAX', '3877 Curtis Coopers Road', 'PO Box 300', 'Coopers Plains', 'NY', '14827', '7:00 am - 4:00 pm ', 'From Corning - I-86E to Exit 42 Coopers Plains - Top of Ramp Right Cross over 4 lane - Straight through red light to bottom of hill 1/4 mile Right by fire Station - Go over green bridge and RR Crossing approx 100 Yds Bear right - 1/4 mile driveway on left. there should be a sign up by the time we\'re out that way '), (1390, 3961, 1390, '614-275-1309 Chris', '614-275-1354 Fax / 6', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', '***Calibration procedure in file for S/N 510 Deflection*** 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building '), (1391, 3962, 1391, '(724) 658-5656', '(724) 658-5659 Fax', '1409 Moravia Street', 'Batch Plant', 'New Castle', 'PA', '16101', '7:00 am - 4:30 pm', 'Go 80W to 60S to 422 East - to Moravia St. Exit (Rt. 168). Bear right and turn right. Go to next stop sign and turn left. Thru next light. Watch immediately on right for site. (Just past bridge on left side at light) '), (1392, 3963, 1392, '814-224-2121 x 4212 ', '814-766-0222 Fax / ', 'Prestress Plant', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', 'Annette - Prestress Secretary', 'Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. **Send certs to: 8180 Woodbury Pike, Roaring Spring, PA 16673** ****Attn: Anthony Gale **** ***GET P.O. NUMBER ON SITE***'), (1393, 3964, 1393, '(412) 931-6393', '412-931-2820 Fax', '101 Bellevue Road', 'The Gristmill Suite 100', 'Pittsburgh', 'PA', '15229', '7am - 5pm Office: 7:30am - 4pm Lab', ' *** Vertical Force use seating load & 300 lb as cal point*** 279 South to Perrysville Exit - Left at Red light, Rt 19N to 1st Red light Bellevue Road - Left - Go about 50 feet 2nd Tier parking lot Metric Tons 1MT = 2204.6 lbs For D-500 Vertical Force, apply seating load of 0.5 lbs then zero'), (1394, 3965, 1394, '724-537-6805 Pat / H', '724-537-6835 Fax', '117 Marcia Street', '', 'Latrobe', 'PA', '15650', '7:30 am - 4:30 pm ', ' I-76 South (PA Turnpike), bear left US-30 East (Lincoln Highway) bear left US-30 Bypass, US-30 (East Pittesburgh Street), bear right, merge onto SR-982 North, right onto Ligonier Street, to Marcia Street '), (1395, 3966, 1395, '(614) 287-3873 Ms. ', '(614) 287-3644 Fax /', '550 E. Spring Street', '', 'Columbus', 'OH', '43215', '8:00 am - 5:00 pm', 'South on Rt. 71. Left lane look for Spring Street ( Exit 109C) . Exit off ramp. Right on Spring Street. On 1st right past Jefferson enter parking lot - Academic Center B. Davison Hall Room 205. Ask for Bob Mergel or Ms. Grubbs Mrs. Grubbs (614) 287-3873 Department Secy (614) 287-5030 Call prior to let them know date & time'), (1396, 3967, 1396, '614-575-2132 x 116 D', '614-575-1307 Fax', '7657 Taylor Road', '', 'Reynoldsburg', 'OH', '43068', '7:00 am - 4:30 pm LAB', 'I-70 to State Rt. 310. Go north on 30 for approx. 1 mile. Turn left onto State Rt. 40. Go approx. 3 miles and turn right at traffic light onto Taylor Road. Big Ashpalt/Concrete Plant. Concrete part is in rear. sign say \"NEWCON\" - same company '), (1397, 3968, 1397, '740-654-7398', '740-654-7426 Fax', '194 Whiley Road', '', 'Lancaster', 'OH', '43130', '6:00-3:00', 'Take 33 SE from Columbus to Collins Road. (Meijer Store at corner) (15 miles from 270) Make right turn onto Collins (County Road #68) - dead ends. 1 mile into \"T\". Make right onto Fair. Go 1 1/2 miles to Whiley Road (to left only) Make left onto Whiley. Plant on Wiley Road 1/2 miles from turn on left. Go to small door on right side. See work order for comments to put on work order this year.'), (1398, 3969, 1398, '614-837-8444', '614-837-1198 Fax', '7415 Diley Road', '', 'Canal Winchester', 'OH', '43110', '7:00 - 5:00 Office / 7:00 - 5:00 Job ', '(East side of town) Rt. 270S to Exit #46B, Rt. 33. Take Rt. 33E to Canal Winchester. Stay on Rt. 33, go through town, about 2 miles to Diley Road. Turn right (South) on Diley. Go over RR tracks. Site on right. From other site 33 west to Diley RD to stop light make right, crossover 33 again to light, make Right and there now, right '), (1399, 3970, 1399, '(330) 784-7008/330-3', '330-798-0546 Fax', '124 Darrow Road', '', 'Akron', 'OH', '44305', '6:00 am - 3:00 pm', 'Route 80W to 76W - Gillcrest Road Exit - Turn Right off exit Follow road straight, you will run into Darrow Road and will see Mack Concrete '), (1400, 3971, 1400, '814-443-3344 x 3017 ', '814-444-0365 Fax', '165 East Union Street, Suite 100', '', 'Somerset', 'PA', '15501', '8:00am-5:30pm/6:00am-5:30pm Job ', ' From Turnpike exit, go two lighst, turn right onto Rt 601 (Turkey Hill Store), go two lights, make left on E. Union Street (Court House on left), go to end of the block, at stop sign, Somerset office is on left side '), (1401, 3972, 1401, '(814) 224-2121 x 42', '814-766-0222 Fax / ', 'Prestress Plant', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', 'Annette-Prestress Secretary', ' PUT MONTH, DAY & YEAR ON STICKERS ***1 YEAR SCHEDULE*** Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. Send all certs to: Attn: Anthony Gale 8180 Woodbury Pike, Roaring Spring, PA 16673 ***GET P.O. NUMBER ON SITE***'), (1402, 3973, 1402, '(315) 437-1517', '(315) 434-9954 Fax', '5971 Butternut Drive', '', 'East Syracuse', 'NY', '13057', '8:00am-4:30pm/7:00am-3:30pm ', 'Take 690E. Make left onto 290E. Bridge Street Go past Amtrack. Go 1/2 mile. At intersection look for Doug\'s Fish Fry on right. Job site behind it in tan building. Need 10 Kip and 1 Kip cells. Take 300 or 400 system. Customer has custom fixtures Tensile fixtures.'), (1403, 3974, 1403, '716-366-1000 ext 236', '716-363-8818 Fax', '830 Brigham Road', '', 'Dunkirk', 'NY', '14048', '7:00 am - 3:00 pm ', 'Left at last light (3rd Light), turn right onto Central Avenue, under viaduct, make left to end, turn right 1/2 mile, Blue Gray building, make right, go around to left door ***Take Special Fixture*** ***MUST cal Channel #0 Extensometer in STRAIN, will not cal in length*** Long: 79.334 Degrees, Elev: 598 Feet, Latitude: 42.479 degrees Correction Value: 0.9993'), (1404, 3975, 1404, '716-686-3710 Craig', '716-686-3716 Fax', '4490 Broadway Street', '', 'Depew', 'NY', '14043', '7:00 - 5:00', ' I-90 East, I-90 (New York Throughway) North, go through toll booth, I-90, Exit 52E (Walden Avenue East / Cheektowago), right onto Walden Avenue, right onto SR-277 (Union Road), merge onto SR-277, (Union Road), West, right onto SR-130 (Broadway Street). \"***Put ID #\'s on Run Sheets, Labels, & Certifications*** Must Have PO before going in'), (1405, 3976, 1405, '315-431-4291 ', '315-431-4292 Fax ', '6730 Myers Road ', '', 'East Syracuse', 'NY', '13057', '8:00 am - 5:00 pm ', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications*** ***continued*** Interstate 481 to Kirkville Road West, Kirkville Road to Fly Road North, aprrox. 2 miles to Myers Road, right on Myers Road (Dead End), building on right SOC '), (1406, 3977, 1406, '716-238-3148 / 585-4', '585-458-2402 Fax / 7', '1679 Lyell Avenue', '', 'Rochester', 'NY', '14606-2311', '8:00 am - 5:00 pm ', ' Exit 47 onto I-490 East, towards I-490 (Leroy/Rt-19/Rochester), Exit 10A-B towards Mt. Read Blvd, slight left at fork towards ramp towards Mt. Read Blvd. Northbound, slight right at fork towards ramp towards Mt. Read Blvd. Northbound, straight on Mt. Read Blvd Northbound, left onto Lyell Avenue Behind BIS Building in Industrial Park '), (1407, 3978, 1407, '1-800-248-2677--Tim ', '440-248-1527 FAX', '34600 Solon Rd.', '', 'Solon', 'OH', '44139', '', ' '), (1408, 3979, 1408, '713-451-0802', 'HPEG-22-05', 'C/O Foreign Trade Export-Fara Calhoun', '1350 Lathrop', 'Houston', 'TX', '77020', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment '), (1409, 3980, 1409, '856-489-9459', '', '2901 Springdale Road, Unit 3', 'PO 245241', 'Cherry Hill', 'NJ', '8003', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (1410, 3981, 1410, '801-975-9494', '', '961 South Pioneer Road', '', 'Salt Lake City', 'UT', '84104', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1411, 3982, 1411, '510-272-0218', '', '1425 5th Street', 'PO 59488', 'Oakland', 'CA', '94607-1810', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1412, 3983, 1412, '724-438-4811 Bud Sca', '724-439-2945 FAX Bud', 'PO Box 903', '', 'Uniontown', 'PA', '15401', '', ' '), (1413, 3984, 1413, '803-822-7441', '803-822-7586 Fax ', '2401 Edmund Road', '', 'West Columbia', 'SC', '29171', '', ' ***Include Tracking Number on Invoice for payment*** '), (1414, 3985, 1414, '(724) 347-2227', '(724) 347-2240 Fax', 'Rosedale Ave.', '', 'Wheatland', 'PA', '16161', '', ' '), (1415, 3986, 1415, '1-330-671-5162 John', '', '6200 Frank Ave. N. W.', '', 'Canton', 'OH', '44720', '', ' '), (1416, 3987, 1416, '804-328-3029 ', '', '6200 Elko Tract Road', '', 'Sandston', 'VA', '23150', '', ' '), (1417, 3988, 1417, '(810) 987-7770 ext. ', '810-987-9108 Fax ', '2199 Lapeer Ave`', '', 'Port Huron', 'MI', '48060', '', ' '), (1418, 3989, 1418, '508-678-5800 x 22 Ma', '508-678-5884 Fax', '1 Lewiston Street', '', 'Fall River', 'MA', '2721', '8:00 am - 4:00 pm ', ' Shipping Instructions: (Per Mark Carroll) UPS Ground, No Insure on CSI Account '), (1419, 3990, 1419, '651-280-4260', '651-288-4753 Fax ', '69 Empire Drive', '', 'St. Paul', 'MN', '55103', '', ' Use their own spreadsheet and graph for certs. '), (1420, 3991, 1420, '253-966-0548', '253-967-7342 Fax ', 'DOL IMD Bldg. 9580 D4', '', 'Fort Lewis', 'WA', '98433', '', ' '), (1421, 3992, 1421, '216-400-1575', '216-459-8954 Fax', '1414 East Schaaf Road', '', 'Brooklyn Heights', 'OH', '44131', '7:00-5:00', 'Take Turnpike to I-480 Exit. Follow I-480 West at least 20 miles to Brookpark Exit. Make left onto Rt. 17. At 1st light turn right onto Tuxedo Dr. At end of Tuxedo make left onto Schaaf Rd. At next light make right onto Van Epps. Follow Van Epps to Hays Industrial Park on right. Make right, go to end of culdesac. They are at end. '), (1422, 3993, 1422, '(440) 567-3707', '(440) 576-5663 Fax', '25 W. Jefferson St.', '', 'Jefferson', 'OH', '44047', '', 'From Route 11 to State Route 307 (Jefferson Exit) to Route 46 North to first stop light - turn right onto Satin Street Go 2 blocks to City Garage (186 E. Satin) '), (1423, 3994, 1423, '(216) 831-3800', '216-292-1465 Fax', '5185 Richmond Road', '', 'Bedford Heights', 'OH', '44146', '8:00am - 5:00pm', 'Take 480W to 217N to Miles Exit. Go 2 lights, make right on Richmond. '), (1424, 3995, 1424, '(216) 277-9305', '(216) 277-6878 Fax', '2509 E. Northridge, Route 25', '', 'Sheffield', 'OH', '', '', 'From Rt. 90 (West of Cleveland) to Rt. 254. Off ramp and turn right. Go approx. 2 miles (Northside) on right. If gone to Rt. 57 - went too far. '), (1425, 3996, 1425, '724-323-5321', '724-828-2828 Fax', 'Rt. 30 West', '', 'Imperial', 'PA', '', '', ' Rt. 22 - 30 Imperial exit make Right on 30 West 3 1/2 miles on left side 1/04 Special Price as per Bill'), (1426, 3997, 1426, '(216) 758-2100', '', '7240 Glenwood Ave.', '', 'Boardman', 'OH', '44512', '', 'I-80 West to Exit #224 to Rt. 11S. Go approx 8 miles. Get off at Poland/Canfield Exit (Rt. 224E). Go left at end of ramp, got to 6th traffic light, turn left onto Glenwood Ave. Site approx. 100 feet on left, beside BP station. Go to rear of brick building. '), (1427, 3998, 1427, '716-665-5313 x 245', '716-665-5121 FAX', '178 Blackstone Avenue', '', 'Jamestown', 'NY', '14701', '', 'Exit 13 make right Falkner thru 1st red light at 2nd light make left Tiffing Avenue Take 2nd right that\'s Blackstone Ave. 1st FActory on Left '), (1428, 3999, 1428, '412-262-2022', '', '', 'JOB SITE', 'Pittsburgh', 'PA', '', '', 'Job Site behind old 3 Rivers Stadium on North Shore Drive----- Lot #4. Take Three Rivers Exit west. Beside old stadium next to river. '), (1429, 4000, 1429, '(814) 454-0195', '(814) 453-2020 Fax', '3405 State Street', '', 'Erie', 'PA', '16508', '', 'See files '), (1430, 4001, 1430, '225-767-9126', '225-767-9179 Fax ', '4101 Gourrier Ave 3216', '', 'Baton Rouge', 'LA', '70808', '', ' '), (1431, 4002, 1431, '(740) 453-0127', '', '3570 S. River Road', '', 'Zanesville', 'OH', '43702', 'MUST CALL PRIOR', 'Rt. 60S to Rt. 555. Turn right, cross bridge. Long white building on left. Turn left. '), (1432, 4003, 1432, '216-831-5500', '(216) 831-6053', 'Chagrin Boulevard', '', 'Cleveland', 'OH', '44122', '', 'I271N to Chagrin Blvd (422 W) Go West to Commerce Park and Merchantile, Make left, bear to Right at Y follow to big Master Builders sign 1/25/00 NO AS PER MIKE O\'BRIEN '), (1433, 4004, 1433, '(814) 224-2121', '814-224-6804 Fax', 'Prestress Plant', 'Route 36 North', 'Roaring Spring', 'PA', '16673', 'Annette-Prestress Secretary', 'Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. '), (1434, 4005, 1434, '(814) 224-2121', '814-224-6804 Fax', 'Prestress Plant', 'PO Box 34', 'Roaring Spring', 'PA', '16673', 'Annette-Prestress Secretary', 'Take Roaring Springs exit off Rt. 200. Take 36 South (about one mile) on left. '), (1435, 4006, 1435, '(540) 951-0124', '', '106 Landsdowne Street', '', 'Blacksburg', 'VA', '24060', '', 'I-64/81 South. Take 460 North. Across form Lake Terrace Motel. Second building on Right. '), (1436, 4007, 1436, '(717) 291-9560', '', '223 Wilson Way', '', 'Lancaster', 'PA', '17603', '', 'Need directions Needle spun around / spring problems '), (1437, 4008, 1437, '(814) 865-2904', '(814) 863-6185 Fax', 'Applied Research Lab', 'Drive Train Ctr Lab (Research West Bldg)', 'State College', 'PA', '16804', '', ' '), (1438, 4009, 1438, '724-728-3045', '724-728-1588 Fax', '10 Industrial Park Road', '', 'Monaca', 'PA', '15061', '', 'RT 60 S to Monach Exit RT 18 S Past Beaver Valley Mall turns into Pennsylvania Ave. keep going it will turn into RT 51 go towards Allequippa to Industrial Park Road Look for a big sign that says \"Rome Monument\" across a set of RR tracks to the plant. '), (1439, 4010, 1439, '734-454-9900 (O)734-', '734-454-0629 Fax', '5847 W. 74th Street', '', 'Indianapolis', 'IN', '46278', '8:00 am - 5:00 pm ', ' 27 minutes from Cleveland Certificate on Job Site address line put Strongville, OH (Maumee) '), (1440, 4011, 1440, '(412) 678-0100', '', '1 Harrison Street', '', 'Glassport', 'PA', '15045', '', 'Need directions '), (1441, 4012, 1441, '(814) 865-4780', '(814) 863-7304', 'Civil & Envr. Engineering', '216 Sackett', 'University Park', 'PA', '16802', '', 'Off North Atherton Street, across form Polleck Street. '), (1442, 4013, 1442, '724-368-2022', '412-807-2467 Fax', '2015 New Castle Road', '', 'Portersville', 'PA', '16051', '', ' Take I-79 N to Exit 99, Follow 4222 West past the Pilot gas Station through the first red light. Across the Street from a large barrier wall is there 4 trailers '), (1443, 4014, 1443, '', '', '', '', '', '', '', '', ' '), (1444, 4015, 1444, '804-328-3029 Kenwood', '', '6200 Elko Tract Road', '', 'Sandston', 'VA', '23150', '', 'I-95 South to 295 East toward Norfolk exit. 60 East to light, turn right on Technology Boulevard. 1st Left , turn behind building. '), (1445, 4016, 1445, '330-941-3745 direct', '', '1 University Plaza', '', 'Youngstown', 'OH', '44555', '', 'Bellmont Avenue 193 3 1/2 Miles across border to Lincoln Avenue, turn left 2 blocks at stop, on left Moser Hall, Eng Science bldg, 4th floor School of Tcchnology '), (1446, 4017, 1446, '419-720-5254', '419-720-5255 Fax', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '8:00 am - 4:30 pm', ' Located on Bancroft Street near Ottawa Hills, between Reynolds and Talmadge, North side of the street. Large sign out front of brick building says, JAJ Company, Lab is around the side door, or you may come through the front. '), (1447, 4018, 1447, '(614) 777-6013 / 614', '(614) 777-6160 Fax', '3530 Parkway Lane', '', 'Hilliard', 'OH', '43026', '8:00 am - 5:00 pm', 'Take I-270 to Exit 13. Turn left, just after Motel 6, turn left again. At stop sign follow road to end, building on left. Changed name from Solar Testing to Lee Testing & Engineering'), (1448, 4019, 1448, '570-837-0430', '570-837-1591 Fax', '3612 Paxtonville Road ', '', 'Middleburg', 'PA', '17842', '7:00 am - 5:00 pm ', '80 West to Lewisburg, 15 South, 11-15 South, over green bridge, 522 South into Middleburg, 104 South 1/4 mile to big red building before Sunoco Market, Packstonville Road 3 1/2 miles on road big orange silo '), (1449, 4020, 1449, '(716) 649-3260 Ext. ', '716-649-3217 Fax/716', '5690 Camp Road (Precast Plant)', '', 'Hamburg', 'NY', '14075', '7:00am - 4:30pm', 'Take Rt. 90 Exit #57 to Route 75 (Hamburg) Take 75 South off ramp. Go 1/2 mile. Watch for Riefler sign. Right hand side of road. '), (1450, 4021, 1450, '716-460-6597 Pager', '716-649-3217 Fax/716', '5690 Camp Road (Block Plant)', '', 'Hamburg', 'NY', '14075', '7:00 - 4:30', 'Take Rt. 90 Exit #57 to Route 75 (Hamburg) Take 75 South off ramp. Go 1/2 mile. Watch for Riefler sign. Right hand side of road. All vendors need to report to front office prior to doing work per letter from them dated 9/3/97. Need hard hats & saftey glassses in designated areas.'); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1451, 4022, 1451, '330-941-3745 direct ', '', '1 University Plaza', '', 'Youngstown', 'OH', '44555', '', ' Bellmont Avenue 193 3 1/2 Miles across border to Lincoln Avenue, turn left 2 blocks at stop, on left Moser Hall, Eng Science bldg, 4th floor School of Technology '), (1452, 4023, 1452, '216-741-7007', '216-741-7011 Fax', '1125 Valley Belt Road', '', 'Brooklyn Heights', 'OH', '44131', '8:00 am - 5:00 pm', 'I80 to 480W to Exit 17A at end of Ramp-turn right go 1 mile to Valley Belt Road, at light make left, 3/4 mile on left (1125) '), (1453, 4024, 1453, '412-559-1095 Jerry C', '', 'Job Site', '', 'Masontown', 'PA', '', '8:00 am - 4:00 pm ', 'I-79 South to the Waynesburg Exit, Left onto Rt. 21 East, go approx 9 miles to flashing light, bear right at light toward Masontown, go approx 4 miles to Plant (the Plant will be on your left but you cannot make a left turn off of Rt. 21 - go past the Plant, across the bridge, then turn around and come back), go past the entrance marked \"Construction Entrance\" and enter at \"Operations Entrance\", stop at the security office at the gate, once cleared for entry,go to stop sign,make a left then a right to Howard '), (1454, 4025, 1454, '937-596-3232', '937-596-6268 Fax', '18015 St. Rt. 65', '', 'Jackson Center', 'OH', '45334', '8:00am-5:00pm/7:30am-4:00pm Job', ' I-76, I-71 Exit turn off ramp and merge onto I-71 West, on I-71, Exit 131, right onto US-36 (SR-37), right onto Northwest US-33 (US-36) '), (1455, 4026, 1455, '814-224-2121', '814-224-6804 Fax/814', 'Prestress Plant ', 'Route 36 North', 'Roaring Spring', 'PA', '16673', 'Annette - Prestress Secretary', ' Take Roaring Spring Exit off Rt. 200. Take 36 South (about 1 mile) on left. '), (1456, 4027, 1456, '(716) 285-3211', '716-286-6931 Fax', '5777 Lewiston Road', '', 'Lewiston', 'NY', '14092', '7:00 am - 3:00 pm', 'Take I-90 to Rt. 290 West. Go 190N. Go over bridges and take Exit #24 Witmer Road, Rt. 31W (make left). Go 1/4 mile. Take 1st road to right. Road will bend left to stop sign (Hyde Park Blvd). Go straight down large hill to security gate. Intercom there. ***See map. Machine is used to calibrate load cells only (no concrete) Machine is at least 1/8 mile inside building - need cart'), (1457, 4028, 1457, '803-557-4946', '', 'Building 731-1N', 'Operations Receiving ', 'Akin', 'SC', '29808', '', '**SEND UPS GROUND UNLESS OTHERWISE SPECIFIED **NEVER INSURE EQUIPMENT WHEN SHIPPING SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1458, 4029, 1458, '865-573-6130', '865-573-6132 Fax', '500 Maryville Hwy', 'Building 1, Suite B', 'Seymour', 'TN', '37865', '', ' Federal ID# 20-4030497 '), (1459, 4030, 1459, '229-386-3079 David', '', '606 W 2nd Street ', '', 'Tifton', 'GA', '31794', '', ' '), (1460, 4031, 1460, '502-639-5260', '330-252-2421 Fax', '102 North Street', '', 'Akron', 'OH ', '', '8:00 am - 5:00 pm ', ' I-76 East to 59th Street Exit, long exit to Howard Street, make left at Howard Street at light, take Howard to bottom of hill, turn right at light at North Street, go on North Street, will see job site on right past the bridge '), (1461, 4032, 1461, '419-720-5254', '419-720-5255 Fax', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '9:00am - 5:00pm/8:00am-4:00pm Job ', ' Located on Bancroft Street near Ottawa Hills, between Reynolds and Talmadge, North side of the street. Large sign out front of brick building says, JAJ Company, Lab is around the side door, or you may come through the front. '), (1462, 4033, 1462, '419-995-8071', '', '4240 Campus Drive', '', 'Lima', 'OH', '45804', '', 'I-80 West, I-76 West toward Akron, I-71 South via Exit 1 toward Columbus, US-30 West via Exit 176 toward Mansfield, Exit toward Fourth St/Crestline, turn right onto Mansfield-Crestline Rd, US-30, US-30 West, left onto US-30/OH-235, continue OH-235, turn slight right onto OH-235/OH-309, right onto S Mumaugh Rd., right onto Campus drive '), (1463, 4034, 1463, '(585) 584-3132 ext ', '(585) 584-3466 Fax', '6896 Ellicot Street Rd. (Rt. 63)', ' (Job address is different)', 'Pavilion', 'NY', '14525', '7:00 am - 4:00 pm', 'I-90 to Exit #47 Leroy. Take Rt. 19S through Leroy. Continue on Rt. 19 Turn right (west) on Rt. 63. Go 1/4 mile. Dewitt has buidlings on both sides of road. Lab on left. Take Anvil '), (1464, 4035, 1464, '716-213-5832 x1018', '716-213-5850 Fax ', '561 Pavement Road ', '', 'Lancaster', 'NY', '14086', '8:00 am - 5:00 pm', ' I-90 to Depew Exit, right on Transit Road, left on Genessee Road, right on Pavement Road, building on left Formerly Frey Concrete'), (1465, 4036, 1465, '(330) 799-3221 x 149', '(330) 799-9098 Fax', '3760 Oakwood Ave.', '', 'Youngstown', 'OH', '44509', '7:00 am - 4:30 pm', 'I-80 E to Exit #224B to 680E. Get off at Exit #2 (Meridan Ave) At end of ramp turn right on Meridan. Go 1 mile Turn right on Oakwood Ave. Go approx. 1/4 mile. Cross RR tracks. Site on right. Red brick building. Go in parking lot between buildings. Go in freight doors. '), (1466, 4037, 1466, '814-834-2470', '814-834-6251 Fax ', '74 PM Street', '', 'St. Marys', 'PA ', '15857', '8:00 am - 5:00 pm ', 'I-80 Exit #17. North 255 to 120 East. Go 1.6 miles past left on 460W, 1st exit to Farmville. Stop light go right onto Stackpole St. (No sign!) Once in St. Marys go to the Stackpole Complex, once in the complex, (It is a horseshoe), make first left, then next right down gravel road, their building right behind Elk County Heat Treating '), (1467, 4038, 1467, 'Jim 412-264-8835(O) ', '(412) 264-8849 FAX', '889 Pennyslvania Avenue', '', 'Coraopolis', 'PA', '15108', '7:00 am - 4:30 pm M-F', 'I-79 South to Neville Island Exit 65. At end of ramp turn left Grand Avenue= main street. Concrete towers visible from main street. Site along river. '), (1468, 4039, 1468, '412-429-2324 Mike Sc', '724-327-5280 Fax', '4315 Campbells Run Road', '', 'Pittsburgh ', '15205', '15632', '8:00 am - 5:00 pm ', ' I-80 West take exit 19A to merge onto I-79 towards Pittsburgh take exit 59B merge onto I-376 W/US 30W toward Beaver/Pittsburgh Internation Airport Take Exit 62 for Campbells Run Road Turn right on to Campbells Run Road '), (1469, 4040, 1469, '', '', 'Attn: Keith A. Reed/Receiving off N20115', 'Sealoglant, Pier 8 Naval Base', 'Norfolk', 'VA', '23512', '', ' '), (1470, 4041, 1470, '', 'RMA 6052', 'Attn: Christy Muccillo', '1499 East 6th Street', 'Beaumont', 'CA', '92223', '', ' '), (1471, 4042, 1471, '206-623-1635 x 491', 'RMA 7038', '1801 16th Avenue SW', '', 'Seattle', 'WA', '98134', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 Original Certification In Box Fax copy of Certification & Tracking Number to Lou Lous Packing List on outside of shipment '), (1472, 4043, 1472, '', '', '204 East Railroad Street', '', 'Shelton', 'WA', '98584', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 Original Certification In Box Fax copy of Certification & Tracking Number to Lou Lous Packing List on outside of shipment '), (1473, 4044, 1473, '304-466-8042', '304-466-8043 Fax ', '406 Riverside Drive ', '', 'Hinton', 'WV', '25951', '', ' '), (1474, 4045, 1474, '(412) 350-5929', '', 'Fourth and Ross Streets', '', 'Pittsburgh', 'PA', '15219', '7:30-3:30 (early morn or 1:00 best)', 'Downtown Pittsburgh - go 4 lights past Mellon Center, past jail, Go to 2nd light and make left onto 4th street. 2 Garage doors roll up next to street. Park there. Ring doorbell at lab. '), (1475, 4046, 1475, '(740) 598-4053', '(740) 598-4378 Fax', 'Cardinal Plant', 'Fly Ash Dam Project', 'Brillant', 'OH', '', '', '7/30/98 Machine will get relocated back to original location (Chesire?) by next year. 5/00 THIS MACHINE WAS MOVED TO BRIDGMAN FOR A SPECIAL ONE TIME DEAL NEED AS FOUND READINGS'), (1476, 4047, 1476, '(517) 354-4111', '', '% Alpena Community College', '666 Johnston Street', 'Alpena', 'MI', '49707', '', 'Route 23 N - pass 32 - on way out of town. Cross bridge and pass General Hospital. At 1st light after hospital turn right onto Johnson. From corner - 3rd building on left. '), (1477, 4048, 1477, '(330) 963-3500 ext. ', '330-963-3307', '8500 Hadden Road', '', 'Twinsburg', 'OH', '44087', '8:00 - 4:00 Mon. - Fri.', '480W to 82, make left at top of ramp, go across 480, make left onto Hadden Road, site on right '), (1478, 4049, 1478, '(717) 755-2933', '(717) 757-1574 Fax', '3990 East Market Street', '', 'York', 'PA', '', '7:00-3:30 (can be later)', 'See files * Need to sign in Need 400K load cell 2% cal Attempted calibration with new digital on 10/10/97 Bill to: Cooper Industries Cooper Hand Tools Div. / Attn: Accounts Payable PO Box 251 Apex, NC 27502-0251'), (1479, 4050, 1479, '(734) 466-2574', '(734) 466-2195 Fax', '33000 Civic Center Drive', '', 'Livonia', 'MI', '48154', '8:30-5:00', 'Rt. 275 to 96E to Farmington Road exit. Go north on Farmington Road. Hit 5 mile road and go east on 5 mile Big highrise building. They are on ground floor. '), (1480, 4051, 1480, '(517) 727-2692', '', '5910 Scott Road', '', 'Hubbard Lake', 'MI', '49747', '', 'From Alpena, MI. Take Worth Rd. (SW Corner of Alpena) to Hubbard Lake Road. Go South 8 miles to Hubbard Lake Village. At Caution light - go east on Scott Road (1 mile) Location is at Corner of Scott and Osborn. '), (1481, 4052, 1481, '(989) 636-1041 Lab ', '(989) 636-9951 Fax', '1691 North Swede Street', 'Larkin Lab', 'Midland', 'MI', '48674', '7:00-3:30 / 8:00 - 5:00 Job Site', 'See map. Take 75N to Exit #162E - Route 10 to Midland. Take Eastman Rd. Exit. At stop light turn right. Go past Midland Mall. Turn right at light by Meijers-Joe Mann Blvd. Pass Nursery. At stop light at Jefferson go straight. Go through gate, turn left at stop sign. Single story building on the right. Ask for Karen Laplow at desk-Lab is before Concrete Lab. Map in files'), (1482, 4053, 1482, '(716) 586-3121 x221 ', '(716) 264-1498 Fax', '909 Linden Ave.', '', 'Rochester', 'NY', '14625', '8:00-5:00 (closed 12:00-1:00)', 'Take 490E to Exit #23 Rt. 441E. At end of ramp turn left onto 441E. Go 1 1/2 miles to 3rd light, turn right onto Linden Ave. Go 1 miles, site on right. Brown metal building. Lab around back. '), (1483, 4054, 1483, '(814) 764-6126', '', 'I-80 Exit #10', '', 'Exit 10, I-80', 'PA', '', '', 'Take I-80 East to Exit #10. Take Rt. 66 towards New Bethlehem. Go 3-4 miles. Site on right. '), (1484, 4055, 1484, '(716) 759-6911', '(716) 759-2949 Fax', '1971 Gunnville Road', '', 'Lancaster', 'NY', '14086', '7:00 - 4:30', 'From Buffalo to Lancaster Take Rt. 33 East (Exit for the Airport) Go pass airport and pass Route 78 and a traffic light. Go approximately 2 miles and turn left onto Gunnville Road (Gunnville Road is between Genessee Street & Main St. , Rt. 5) '), (1485, 4056, 1485, '(717) 675-2717', '', 'Old Route 115', '', 'Lehman', 'PA', '18627', '', ' '), (1486, 4057, 1486, '(717) 238-9331', '717-364-1640 Fax', '1649 Bobali Dr', '', 'Harrisburg', 'PA', '17101', '7:00 am - 4:30 pm ', ' '), (1487, 4058, 1487, '(330) 652-2640-Disco', '(330) 652-4118 Fax', '1818 North Main Street', '', 'Niles', 'OH', '44446', '8:30-5:00 Office 7:00 am-5:00 pm Lab', 'Take Route 46N into Niles - Go past McKinley Memorial downtown. At light Rt. 46 goes right - go straight to get onto Rt. 169 (Main St.) Go 1 mile. Just past Moose Hall is Niles Commerce Park on left. Go to guard shack. '), (1488, 4059, 1488, '(440) 526-5600', '(440) 526-5601 Fax', '10330 Brecksville Road', '', 'Brecksville', 'OH', '44141', '9:00-5:00', 'I-80 Ohio Turnpike. Exit #11 North on Rt. 21 (Brecksville Road) Go north on Rt. 21 approx. 1 mile. Located on west side of Rt. 21 Building right next to Clark Oil Co. Red brick building - they are in extreme left end of building. '), (1489, 4060, 1489, '(314) 589-0701 Pager', '', '22701 Trolley Industrial Drive', 'JOB SITE', 'Taylor', 'MI', '48180', '', 'I-94 to Rt. 24 N to Van Born Road. Make right (east) on Van Born to Monroe Blvd. Make right (south) on Monroe Blvd. Job site on left by railroad tracks. Trolley Industrial Drive will be on your left. (see map) '), (1490, 4061, 1490, '717-676-8207 Cell Ni', '', 'Job Site- 3400 East Bungalo Raod', '', 'Morris', 'IL', '60450', '', ' '), (1491, 4062, 1491, '(517) 394-5700', '', '174 E. James Street', '', 'Whitecloud', 'MI', '49349', '', ' '), (1492, 4063, 1492, '(716) 685-2821', '', '4 Spruceland Terrace', '', 'Lancaster', 'NY', '14086', '8:00-5:00', 'Take I-90 to exit #49 onto 78 South (Transit Road) to Walden Ave. (approx. 3 miles) Go (left at light) East on Walden to 2nd light Sheldon. Make right onto Sheldon and cross RR tracks. Make left onto Beach. 1st building on left - lot 3 '), (1493, 4064, 1493, '(215) 788-5571', '(215) 788-5204 Fax', 'Linton Avenue', '', 'Croydon', 'PA', '19021', '', 'Rt. 422 to Turnpike 276 Exit #29. Turn onto 13S. Go to 413 and veer to right to make turn onto 413S. Go under old RR bridge. Get into right lane. Make right at light (2nd) onto State Road. Go through residential area (approx. 1 mile) Just past 1st set of blinking lights. Make right onto Linton Ave. Go to end. '), (1494, 4065, 1494, '(301) 564-9355', '(301) 530-6376 Fax', '10215 Fernwood Road Suite 250', '', 'Bethesda', 'MD', '20814-1106', '6:30 a.m. - 7:00 p.m. ', ' '), (1495, 4066, 1495, '(570) 326-7077 ', '(570) 326-4990 Fax', '', '', 'Benton', 'PA', '17703', '', ' Rt 487 to Benton to Rt-239 left turn to site '), (1496, 4067, 1496, '(412) 335-6000', '(412) 335-3834 Fax', '', '', 'Franklin', 'PA', '', '', 'No directions on work order in files. '), (1497, 4068, 1497, '859-229-0816', '859-231-6184 Fax ', '613 Laco Drive ', '', 'Lexington', 'KY', '40510', '', ' I-75, Exit 120, merge onto SR-1973 (Iron Works Pike), left onto US-25 (Georgetown Road), turn right on ramp, merge SR-4 (NW New Circle Road), off ramp merge SR-1681 (Old Frankfort Pike), turn right Laco Drive '), (1498, 4069, 1498, '814-642-2945', '814-642-2946 Fax ', '345 Fogel Crossing Road ', '', 'Port Allegany', 'PA', '16734', '8:00am-4:30pm/7:00am-5:00pm Job ', ' 2 miles South of Port Alleghany, Route 155 South, turn left onto T-409 (Fogel Crossing Road), office is 1/4 mile straight ahead '), (1499, 4070, 1499, '614-679-3793 Annette', '614-778-4305 Jack\'s ', 'Job Site ', '', 'Pittsburgh', 'PA', '', '', 'I-80 East to exit #84 (Reynoldsville Exit), at bottom of exit ramp turn right, them make left at the old Diamond J Truckstop, you will see their concrete batch plant '), (1500, 4071, 1500, '724-350-4038', '', 'Route 980 & Stuebenville Pike Road', '', 'McDonald', 'PA', '', '7:00am - 4:00pm', 'I-79 South to business 60 West. This will turn into Route 22 once you pass over the parkway. Go to the McDonald/Midway exit. Get off @ end of ramp, go right under 22 & make 1st left. 20 yards make a right onto Stuebenville Road. Go 1,000 feet and make a right into plant '), (1501, 4072, 1501, '717-632-7722', '717-630-8441 Fax', '576 Edgegrove Road', '', 'Hanover', 'PA', '17331', '7:00 am - 3:30 pm ', 'Rt. 116 West out of York into Hanover to Hardees (at light) right on Oxford Road, left on Edgegrove Road, turn right at second plant entrance '), (1502, 4073, 1502, '717-258-7519 Denny (', '717-258-7532 Fax (Di', '50 Spring Road', 'PO Box 40', 'Carlisle', 'PA', '17013', '8am-5pm Office / 7am-11pm Lab', 'DIRECTIONS FROM HIA(AIRPORT): Exit airport and follow signs to Harrisburg, Route 283. Take Turnpike Route 76 West, towards Pittsburgh. Travel approx 25 mi. Exit ay #16 Carlisle. Make a right turn off exit ramp onto route #11 South. Travel Route 11 South for approx 2.5 mi. You will go thru 5 lights. Travel another 1/4 mi after last light. Just before railroad tracks, make a hairpin right onto Rt 34N(Spring Rd). Lear Corp will be on your left. Go 2 blocks & park in lot on right. Enter Main Office across street.'), (1503, 4074, 1503, '(717) 235-6351', '717-227-1259', '14 Onion Blvd.', '', 'Shrewsbury', 'PA', '17361', '8:00am - 3:00pm', ' Take I-81 South to Exit 4. Bear right at Main St. Turn left and go 1.4 miles to Onion Blvd. '), (1504, 4075, 1504, '(740) 363-1376 QC ex', '(740) 363-1377 Fax/7', '620 Liberty Road', '', 'Delaware', 'OH', '43015', '5:00 am - 6:00 pm ', 'Take 270 to 23 North to Williams St. Exit, Rt. 36 and turn left on Sandusky St. Go 4 or 5 blocks to London Rd. Turn right at 2nd traffic light, then left on Liberty. Go 3/8 mile. Site on right. **NEED PROOF OF INSURANCE, ALL VISITORS REPORT TO OFFICE & SIGN IN. HARD HAT/STEEL TOES/ EYE LOCK OUT PROCEDURE ON EQUIPMENT INFORCED. Must have PO# to receive payment. Need to take large steel plates for pipe tester.'), (1505, 4076, 1505, '330-335-0606', '330-335-0908 Fax', '215 Rainbow Street', '', 'Wadsworth', 'OH', '44281', '', '76 to Exit 9, turn South, 2 miles to Rainbow on Right, one way St. 1/2 mile to lab on left '), (1506, 4077, 1506, '330-393-4101', '330-393-4102 Fax', '1401 South Pine Avenue', '', 'Warren', 'OH', '44483', '7:00 am - 3:00 pm', 'Go 80 West to 422 Girard, North past Eastwood Mall Warren Tribune Review, make left, 3 sets of RR tracks across from Steel Plant '), (1507, 4078, 1507, '814-330-4077 John Ce', '814-766-0231 Fax', 'JOB SITE', '', 'Tyrone', 'PA', '', '', 'I-80 East to 322 West to 350 south to I-99 South to Exit 48, at bottom of ramp, turn left, go under I-99, 453 E/S, follow past turn off to the stationary plant on 550, go past sewer plant on left, turn into the quarry on left about 1/2 mile past the route 550 turn off, go to the right of the scale house, follow back through quarry under the conveyor belt, about 1/4 mile back on left you will see the portable plant, John Weist is the superintendent. '), (1508, 4079, 1508, '814-269-7243 ', '814-269-7245 Fax/814', '450 Schoolhouse Road', '114 E &amp; S Building; E & S Building', 'Johnstown', 'PA', '15904', '8:00 am - 5:00 pm ', 'Take Elton Road, Exit off US 219 in Cambria County (Richland Township), and follow signs to University of Pittsburgh at Johnstown, the Engineering and Science Building is near the &quot; Performing Arts Center&quot; and the &quot; Living Learning Center.&quot At Walmart-Richland, right at sign, go to the rear, will not be albe to see symbol on Elton Road exit. Joseph Parker/Purchasing 814-269-7080 / 814-269-7082 FAX'), (1509, 4080, 1509, '724-283-6200 x201 Rh', '724-321-0096 Rhonda ', 'Storage', '', 'Fenelton', 'PA', '', '', ' '), (1510, 4081, 1510, '734-764-3322 Prof Gh', '734-764-8495 Dept of', 'Dow Herbert H Building', '3062 H.H. Dow 2136', 'Ann Arbor', 'MI', '48109-2136', '', ' 23 North to Plymouth Road go left (west) to stoplight Plymouth Road & Huron Parkway go left on Huron Parkway (south) to light make right (Hubbard Road) to stop sign go straight Hubbard will turn into Hayward Avenue. To next stop go straight look for 3 entrances on left use 2nd or 3rd entrance HHDOW GG Brown connected cabin basement '), (1511, 4082, 1511, '937-847-9707', '937-847-9720 Fax ', '238 School Street', '', 'Weirton', 'WV', '26062', '', ' US-22, Freedom Way Exit, bear right on Freedom Way, right onto Cove Road, right onto ramp, continue North on Weir Avenue, right onto South 11th Street, right onto School Street '), (1512, 4083, 1512, '(724) 538-1114', '(724) 538-1119 Fax', '1559 Mars-Evans City Road', '', 'Evans City', 'PA', '16033-9362', '8:00-5:00 (No Wed) 8am-5pm (Site)', 'Take 79 South to Zelienople Exit. Turn right at end of exit ramp (follow signs to Zelienople). Turn left at stop sign onto Rt. 19, and left at first traffic light onto Rt. 68. Take Rt. 68 into Evans City. At 1st traffic light, turn right onto Mars-Evans City Road. Go about 1 mile - watch for John\'s Bar on your right. Tall tan building on your left across from John\'s Bar. '), (1513, 4084, 1513, '(340) 692-1134', '(340) 692-2889 Fax', '1 & 5A Estate Montpellier', '', 'St. Croix', 'USVI', '840', '7:00 am - 5:00 pm ', ' Need pass & plane ticket Send Invoice to: Heavy Materials, 7865 Estate Mariendahl #11, St. Thomas, USVI 00802, Fax: 340-775-2926, Greg Moorehead Mervin Brown Cell 340-626-8101 Quality Control Technician'), (1514, 4085, 1514, '(340) 775-0100 x 111', '(340) 777-7499 Fax/3', 'c/o Heavy Materials', '7865 Estate Mariendahl #11', 'St. Thomas', 'USVI', '802', '7:00am-4:00pm ', ' Computer Password: HMliburd '), (1515, 4086, 1515, '340-643-4361 KenCell', '340-778-1394 Fax ', '194-2 Contant ', '', 'St. Thomas', 'USVI', '802', '', ' '), (1516, 4087, 1516, '340-643-4361 KenCell', '340-778-1394 Fax / 3', 'PO Box 1127 Christiansted', 'Hovensa, LLC Est.Hope, St. Croix, VI 00820 ', 'St. Croix', 'USVI', '820', '', ' Pass paperwork ia taken care of by Caribbean Quality Control '), (1517, 4088, 1517, '284-494-2223', '284-494-2225 Fax', 'Fish Bay', '', 'Tortola', 'BVI', '', '', ' Go back on Maintown Ferry Formerly Virgin Concrete '), (1518, 4089, 1518, '340-690-6407 Julio C', '304-775-2016 Fax ', '128A + 128B Subbase', '', 'St. Thomas', 'USVI', '803', '', ' '), (1519, 4090, 1519, '340-642-0859 Cell ', '', '86 Castle Coakley, Unit 10', 'Kings Hill ', 'St. Croix', 'USVI', '', '', ' '), (1520, 4091, 1520, '340-514-2250 Don Cel', '340-777-5779 Fax/340', 'Job Site ', '', 'St. John', 'USVI', '831', '7:00 am - 3:30 pm ', ' Don Blumenthal, St. John, U.S. Virgin Islands, 5000 Est. Enighed 193, St. John, VI 00830 Formerly Breckinridge Custom Homes '), (1521, 4092, 1521, '340-332-5700 Ken', '', '', '', 'St. Thomas', 'USVI', '802', '', ' '), (1522, 4093, 1522, '340-513-2924 Cell To', '(340) 779-2207 Fax/4', 'Bovoni Office Complex #6', '7410 Bovoni 2-2, Bay 6', 'St. Thomas', 'USVI', '802', '7:00 am - 5:00 pm M-F', ' Located in Bovoni Office Complex (near landfill) Will pick technician up '), (1523, 4094, 1523, '284-542-0695 Cell Ch', '284-494-5175 Fax', 'Pockwood Pond', '', 'Tortola', 'BVI', '802', '7:00 am - 5:00 pm ', ' West End Ferry better Send Certs: Attn: Chris Ballie '), (1524, 4095, 1524, '284-541-2554 Dwight', '284-495-5674 Fax', 'The Valley', '', 'Virgin Gorda', 'BVI', '', '', 'Ferry on Thursday We will bring you to the yard after arriving at dock in Spanish Town Virgin Gorda by Ferry Send Certs To: PO Box 1285, The Valley, Virgin Gorda, BVI VG1150 '), (1525, 4096, 1525, '340-514-3500 Donald ', '866-267-1882 Fax', '9 - 10 Gallows', '', 'St. Croix', 'USVI', '820', '', ' '), (1526, 4097, 1526, '412-631-1000', '412-631-2000 FAX', '1000 American Bridge Way', '', 'Corapolis', 'PA', '15108', '', 'Cruz Bay, up hill, Texaco station go straight '), (1527, 4098, 1527, '(340) 778-8828', '', '', '', 'St. Croix', 'VI', '', '', ' '), (1528, 4099, 1528, '(340) 775-0100', '(340) 775-2926 Fax', 'PO Box 7368', '', 'St. Thomas', 'VI', '801', '', ' '), (1529, 4100, 1529, '242-322-1703 Dolores', 'Rose Island Project ', 'East Bay Street, just before Paradise', 'Island Bridge ', 'Nassau, Bahamas', '', '', '', ' '), (1530, 4101, 1530, '(724) 475-2511', '(724) 475-3057 Fax', '97 Main St.', '', 'Fredonia', 'PA', '16124', '7:00 am-3:30 pm ', 'Off 58 from Delaware Road. Left on Main. Cross railroad. 1st driveway to left or Rt. 19. Take Redonia Road to West Larg Hepper ahead. Formerly American Stone Mix '), (1531, 4102, 1531, '989-224-2642', '989-224-3455 Fax', '811 West State Street', '', 'St. Johns', 'MI', '48879', '9:00 am - 4:00 pm ', ' I-96 to 127N turns into 27. Take US 27 N to M-21 in St. Johns. Go west on M-21 to the edge of town. On the south side of M -21 the sign out front reads Chasco Plumbing & Heating. '), (1532, 4103, 1532, '419-878-7304', '419-878-7305 Fax / 4', '700 S. River Road', '', 'Waterville', 'OH', '43566', '8:30 am - 4:00 pm Wed. 8:30 - 11:30', 'I-80 West to 75 South to 475 West to 24 West turns into river road do not turn onto River Road Stay on 24 West People at site all the time '), (1533, 4104, 1533, '(269) 342-0501x 27', '(269) 384-0194 Fax', 'Technical Services', '700 Nazareth Road', 'Kalamazoo', 'MI', '49001', '7:00 am - 5:00 pm', 'Take 94W. Take Exit #80 to Sprinkle Rd. North. Left on E. Michigan. Right onto Nazareth. Go 1 mile. On right. '), (1534, 4105, 1534, 'Steven 614-987-0216 ', '614-848-6712 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 am - 4:30 pm', '***Continued on next page*** Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right. Need Cal 60, 1 K Cell, Pressure Transducer System Formerly Dodson Stilson.'), (1535, 4106, 1535, 'Steven 614-987-0216 ', '614-431-4024 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 am - 4:30 pm', '***Continued on next page*** Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right Need Cal 60, 1 K Cell, Pressure Transducer System Formerly Dodson Stilson.'), (1536, 4107, 1536, 'Steven 614-987-0216 ', '614-848-6712 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 am - 4:30 pm', '***Continued on next page*** **Run Regressions on Load Cells** Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right Need Cal 60, 1 K Cell, Pressure Transducer System ***Need 400 System or Lebow to Calibrate S/N MG3709*** ***Need small 10K Cell to calibrate S/N 48A05001***'), (1537, 4108, 1537, '989- 288-2661 Ext. 2', '989- 288-6918 Fax', '7505 Highway M-71', '', 'Durand', 'MI', '48429', '5:00 am - 5:00 pm', 'From I-75 take 69W to Corunna/Durand Exit #118. Turn right at end of ramp. Then go north on 71W approx. 3/4 mile on right. Pipe tester - Calibrate between piston and lower beam This machine is indoors, has hand pump Weight of bottom beam - 900 lb. DO NOT TAKE ABOVE 125K'), (1538, 4109, 1538, '517-645-2777', '517-645-2356 Fax ', '5281 Lansing Road', '', 'Charlotte', 'MI', '48813', '8:00 - 5:00 Office / 7:00 - 6:00 Job Site', 'I-96 to Lansing Road Exit. Go south on Lansing. Site on right hand side. Exit 70 off I-69. One Exit from 96-69. Site is on west side of 69. 66 Right **Beam Weigh = 725 lbs** '), (1539, 4110, 1539, '(517) 394-5700', '(517) 394-5796 Fax', '3120 Sovereign Drive Suite C', '', 'Lansing', 'MI', '48911', '8:00 am - 5:00 pm', 'Take 96 to 127N. Get onto Jolly Road (E. Side of town). You will come to an intersection where Jolly Rd. runs East & West. Turn left. Go west to Pine Tree Road. Turn right. Go almost to the end of Industrial Park. 2nd row of buildings. 2nd building in row. '), (1540, 4111, 1540, '616-406-1756', '616-406-1749 Fax', '4705 Clyde Park Avenue SW', '', 'Grand Rapids', 'MI', '49509', '8:00 am - 5:00 pm ', 'Take 96W to Exit 196. Take 131 South to 44th Street (West), next street Clyde Park (South), 1/3 mile on right hand side, 2 tone brown building Ck Trans# (-) 32 '), (1541, 4112, 1541, '517-887-9181', '517-887-2666 Fax', '2663 Eaton Rapids Road', '', 'Lansing', 'MI', '48911-6310', '7:00 am - 5:00 pm', ' ***continued***ISO Requested*** *****2014 Get Battery for Digital (coin style)****** I-96 Logan St. Exit 101 (which is Eaton Rapids Road) and (Logan Street is 99) Go 1/4 mile South. Watch on right for brown building with circle drive. Go under 96 to light at Bishop. '), (1542, 4113, 1542, '330-972-8464 Max Ce', '330-972-4904 Fax', '240 Carroll Street', '123 Schrank Hall South', 'Akron', 'OH', '44325', '', 'I-76, Exit 23, merge onto SR-8 (North), at SR-8 Fountain Street Exit, turn off ramp, bear left (North) onto Fountain Street, go 43 Yards turn left onto Carroll Street From Emlenton i-76 west to Wolfs Ledges Exit, Follow Wolfs Ledges go under a concrete foot bridge, right after take right under Schrank Hall North Builing. Call to Schedule Friday before so Professor can arrange to be present *****PASSWORD 218355******'), (1543, 4114, 1543, '419-358-6946 x 120 B', '419-358-6258 Fax ', '8950 N. Dixie Highway', '', 'Bluffton', 'OH', '45817', '6:00 - 3:00', ' I-75 to Beaver Dam Exit, go East on Lincoln Highway about .5 miles to Phillips Road, make a left, go to Y and make a right on Dixie to plant (Near Findley, OH) Tax Exempt# 02-27803'), (1544, 4115, 1544, '616-891-0800/616-262', '989- 752-6600 Fax', '8180 Broadmoor Avenue SE', '', 'Caledonia', 'MI', '49316', '', ' I-96 (West), Exit 43A (28th Street/M-11/Kent Co. Airport), bear right onto 28th Street SW, continue on SR-11 (28th Street SE), left onto Patterson Avenue SE, bear left onto SR-37 (Broadmoor Avenue SE) '), (1545, 4116, 1545, '989-684-6050', '989-684-0210 Fax', '1501 West Thomas Street', '', 'Bay City', 'MI', '48706', '7:30am - 5:00pm Job', 'CALL FOR DIRECTIONS From 75. M-25 East. Residential, get in right hand lane. Go past SME building, go down side street, around back of building. (Before M-13.) '), (1546, 4117, 1546, '586-795-2877', '586-795-5183 Fax', '35410 Mound Rd.', '', 'Sterling Heights', 'MI', '48310', '8:00 am - 5:00 pm ', ' I-75, Exit 51B, turn off ramp, merge onto I-75 (Chrysler Fwy) (North) turn off ramp, merge onto I-696 (Walter P. Reuther Fwy) (East), at I-696, Exit 22, turn off ramp, bear right (North) onto Mound Road '), (1547, 4118, 1547, '810-984-5596 ext 126', '810-984-8760 Fax', '519 Huron Ave.', '', 'Port Huron', 'MI', '48060', '7am-5pm M-Th', 'Stay on I-94 (or from Flint Exit I-69 to East bound I-94) to Exit #274 (Water Street), Turn right on Water Street. 1.2 miles to Tenth St., Turn right on Tenth St. At first traffic light (Lapeer) turn left. Continue on Lapeer to 2nd traffic light (Military/Huron), turn left at Military/Huron. Go approximately 4 blocks north to 519 Huron. Located on the west side in a red brick building with green awnings HCLM Street 1st left 0.5 mile on left '), (1548, 4119, 1548, 'Ted (C) 616-633-6207', '616-677-3014 Fax', '0-10561 Linden Drive', '', 'Grand Rapids', 'MI', '49504', '9:00am-5:00pm/7:00am-6:00pm Job ', 'Take 131N to Gerald Ford I-96W to Lake MI Drive Ext(M-45W). west through Standale-7 miles west to Lyndon Ave South. (if cross river too far) Site in right side--yellow & white mixer. '), (1549, 4120, 1549, '219-874-4217 Tom Fri', '219-979-6728 Fax', '1919 E US 12', '', 'Michigan City', 'IN', '46360', '6:00 am - 3:30 pm', 'I-80, Exit 72, bear right (South), onto US-31, at US-31/US-20 Exit, bear right onto ramp, turn right onto US-20 (Lincold Way W), continue West onto US-35 (E Michigan Blvd.), go 4.1 miles, bear right onto US-12 (Spring Street) IN 1: -019 RD 1: 0000 IN 2: 7006 RD 2: 3981'), (1550, 4121, 1550, '313-399-2113 Michael', '313-875-2732 Fax', '385 Midland Street ', '', 'Highland Park', 'MI', '48203', '8:00am-5:00pm/7:00am-4:00pm Job ', ' I-94, Exit 215B (Glendale Avenue), turn off ramp, turn right onto Glendale Avenue, turn left onto Hamilton Avenue, turn left onto Midland Street '), (1551, 4122, 1551, '1-800-821-0265/734-4', '734-439-8311 Fax', '10475 N. Ann Arbor Road', '', 'Milan', 'MI', '48160', '7:30 am - 4:00 pm ', 'Exit 22, Left, 1/4 on Right, Ann Arbor '), (1552, 4123, 1552, '(269) 925-0212', '(269) 925-5222 Fax', '2235 Pipestone Road', '', 'Benton Harbor', 'MI', '49022', '8:00-5:00 (office) 7:00-3:00(site)', 'I-94 to Exit #29 Pipestone Road. Stop sign make Left. Cal Code 218355 '), (1553, 4124, 1553, '(231) 843-3353', '(231) 843-7676 Fax', '815 East Ludington Ave.', '', 'Ludington', 'MI', '49431', '8:00 am -5:00 pm ', 'Route 31 N to Route 10. Go 3 1/2 miles (turns onto Ludington Ave. East) Watch for site on right side. #NAME? just past corner - lab in garage in back. '), (1554, 4125, 1554, '231-777-3447 x32 Ric', '231-773-3453 FAX', '2534 Black Creek Road', '', 'Muskegon', 'MI', '49444', '8:00 am - 5:00 pm', '80 W to I-280N - to I-75N to I-275N towards Flint Continur on I-96W/I-275N - take I-96W towards Lansing/Grand Rapids Take US31N towards Ludington Exit 1B - Merge onto US31 N Take Sherman Blvd/CR-B72 exit - Bear right on Sherman Blvd Turn left on Black Creek Road / Port City Industrial park on Right side across from Frito Lay as soon as you turn onto Black Creek Road '), (1555, 4126, 1555, '(734) 285-7510', '(734) 285-7572 Fax', '17700 Fort Street', '', 'Riverview', 'MI', '48183', '8:00 am - 4:30 pm', '75 S to Sibley Rd. Exit #34 Turn right (East on Sidley) Go about 4 miles. Take Rt. 85N (Fort St) Site on left - on left of apartment building Mail Invoices to: PO Box 150, Painesville, OH 44077 FAX: 440-358-1604 '), (1556, 4127, 1556, '989-358-7467 Mike ', '989-358-7562 Fax', '750 Woodward Avenue', '', 'Alpena', 'MI', '49707', '7:30-3:30', 'Route 23 N - Pass 32 - on way out of town. Cross bridge and pass General Hospital. At 1st light after hospital, turn right onto Johnson. From corner - 3rd building on left. Go inside to get directions to lab (around back) 6/11 S/N 03218 digital is bad, customer ordering a digital from '), (1557, 4128, 1557, '989-358-3319 ', '989- 354-2223 Fax / ', '1435 Ford Avenue', '', 'Alpena', 'MI', '49707', '6:00 - 2:00 Lab hours', '75N to Rt. 23N to Alpena. Go into town - go through 2 stop lights. Continue to \"T\" make left. Go straight to next stop light - make rigth onto 2nd Ave. Stay on 2nd over bridge, post office is on right, make right onto road by RR tracks. Go 1 block - make left onto Ford Ave. Go 8 blocks to stop sign. Go straight. Plant on right. Pass main gate-go in next entrance. By dome structure. Lab in single story cement block building by loading dock.'), (1558, 4129, 1558, '989-892-3545', '989-892-3533 Fax / 9', '2701 Chicago Drive SW', '', 'Wyoming', 'MI', '79519', '', 'I-80 west toward Sharon, merge onto I-69 N via Ex 144, mergo onto I-94 Ex 38, merge ontoUS-131N via Ex 74B, take M-11/28th St. Ex 81, turn left onto M-11/28th St. SW, turn right onto Byron Center Ave SW, turn left onto Chicago DR '), (1559, 4130, 1559, '989-892-3545/517-719', '989-892-3533 Fax / 9', '4950 White Lake Road', '', 'Clarkston ', 'MI', '48346', ' ', ' From Detroit MI-go onto I375 N/Walter P Chrysler Fwy this become I-75 N. keep right toward Flint. Take US-24/Dixie Hwy exit 93 Toward Waterford. Turn left onto US-24 Dixie Hwy. Turn right onto White Lake Rd. '), (1560, 4131, 1560, '989-892-3545', '989-892-3533 Fax / 9', '401 Kelton Street', '', 'Bay City', 'MI', '48706', '9:00am-5:00pm/8:00am-5:00pm Job', 'From 75 take Rt. 10E into Bay City. Make right on Euclid (M13 S) Make left on Kelton Street. (Across street from Sugar Factory) 2nd stop, right, 2nd Kelton Site on right. ALT Route: Take M-84E to Red Light. Make a Right onto Eculid Then Left on to Kelton. '), (1561, 4132, 1561, '(734) 454-9900', '734-454-0629 Fax', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '8:00-4:00', '***S/N M11847 see instructions for fitting removal - Calibrate in reverse*** Need pressure trandsucer & hand pump (green box) I-275 N to Rt 14. Take 14 W to Exite 28 West on A. A. Sheldon Rd. Turn left cross under expressway turn left on Plymouth Oaks Site on left 1/10 mile, Lab in back Elevation: 780 Latitude: 42.4 DW Correction Value: 0.9995'), (1562, 4133, 1562, '(734) 454-9900', '(734) 454-0629 Fax', '43980 Plymouth Oaks Blvd.', '', 'Plymouth', 'MI', '48170', '8:00-4:00', ' ***ISO Requested*** ***continued*** I-275 N to Rt 14. Take 14 W to Exite 28 West on A. A. Sheldon Rd. Turn left cross under expressway turn left on Plymouth Oaks Site on left 1/10 mile, Lab in back '), (1563, 4134, 1563, '989- 752-6500', '989- 752-6600 Fax', '5859 Sherman Road', '', 'Saginaw', 'MI', '48604', '8:00 am - 5:00 pm', 'I-75N Cross bridge. Take Zilwaukee Exit #5154. Make left at 1st stop and 2nd stop onto Kochrike Rd. Make left onto Sherman. Yellow/tan steel & block building on west side of Serman. Input 1 - 37 Read 0 Input 2 39275 Read 194182 Take Anvil Cust has own Press Fornerly R.C. Engineering'), (1564, 4135, 1564, '989- 752-6500', '989- 752-6600 Fax', '5859 Sherman Road', '', 'Saginaw', 'MI', '48604', '7:00 am - 5:00 pm', 'I-75N Cross bridge. Take Zilwaukee Exit #5154. Make left at 1st stop and 2nd stop onto Kochrike Rd. Make left onto Sherman. Yellow/tan steel & block building on west side of Serman. ***Fax Solicitation Letters to Job Site*** Take Anvil Cust has own Press'), (1565, 4136, 1565, '989-358-3320 Dave Go', '989- 354-2223 Fax ', '1435 Ford Avenue', '', 'Alpena', 'MI', '49707', '6:00 am - 2:00 pm ', '75N to Rt. 23N to Alpena. Go into town - go through 2 stop lights. Continue to \"T\" make left. Go straight to next stop light - make rigth onto 2nd Ave. Stay on 2nd over bridge, post office is on right, make right onto road by RR tracks. Go 1 block - make left onto Ford Ave. Go 8 blocks to stop sign. Go straight. Plant on right. Pass main gate-go in next entrance. By dome structure. Lab in single story cement block building by loading dock.'), (1566, 4137, 1566, '228-813-2242', '', 'Attn: Kisha Stanford ', 'Bldg. 5100', 'Stennis Space Center', 'MS', '39529', '', ' Certs in Lockheed Martin Metrology Center name '), (1567, 4138, 1567, '713-451-0802', 'HPEG-22-05', 'C/O Foreign Trade Export-Fara Calhoun', '1350 Lathrop', 'Houston', 'TX', '77020', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1568, 4139, 1568, '330-774-8306', '', '219 S. Phelps Street', '', 'Youngstown', 'OH', '44503', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 Original Certification In Box Fax copy of Certification & Tracking Number to Lou Lous Packing List on outside of shipment '), (1569, 4140, 1569, '843-607-8331/843-607', '', '209 Clarine Drive ', '', 'Goose Creek', 'SC', '29445', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS DHL Account #805111129 FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1570, 4141, 1570, '803-808-9059', '', '2400 Two Knotch Road ', '', 'Lexington', 'SC', '29072', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED Include Certs with shipment SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 DHL Acct# 805111129'), (1571, 4142, 1571, '804-553-0244', '804-553-0272', '8439 Glazebrook Drive', '', 'Richmond', 'VA', '23228', '', ' '), (1572, 4143, 1572, '(724) 475-3867', '724-309-1353 Cell', '119 Old Harmony Road', '', 'Irwin', 'PA', '15642', '', ' '), (1573, 4144, 1573, '321-674-7555', '321-674-7565 Paul\'s ', '150 W. University Blvd', '', 'Melbourne', 'FL', '32901', '8:00am - 5:00pm', ' '), (1574, 4145, 1574, '304-772-5736', '304-772-5736 *54 to ', 'HC 83, Box 131-C', 'PO Box 498', 'Union', 'WV', '24983', '', ' '), (1575, 4146, 1575, '(585) 593-2741 ext 2', '', '164 North Main Street', 'PO Box 663', 'Wellsville', 'NY', '14895', '', ' '), (1576, 4147, 1576, '(814) 781-4013', '(814) 834-9201 Fax', '259 Eberl St', '', 'St. Marys', 'PA', '15857', 'Job Site 7:00a-3:00p Office 7:30a-4:30p', 'Take Rt. 219 to Ridgeway. Take Rt. 120E toward St. Marys Go about 11 miles. Site on right in yellow brick building about 100 yards from the road. '), (1577, 4148, 1577, '724-925-3565 x1027', '724-925-2644 Fax', '3519 Wheeler Street', '', 'New Stanton', 'PA', '15672', '', ' '), (1578, 4149, 1578, '412-287-3250 Ed Cell', '', 'Rt 22', '', 'Syracuse', 'NY', '', '7:00-3:30', 'Rt 22 to Blairsville, past 119 junction heading east. After passing 119 you will see Batch plant '), (1579, 4150, 1579, '', '', 'Job site', '', '', '', '', '', 'I-79 Exit 61 South on rout 61 to light at bottom of hill. Easy left onto Ingram Avenue, take blue belt to Route North L to McKees rocks Stay on Blue belt route to left on Island Avenue Rt 51 - Approx 1 mile turn left onto Churchill street to top of hill, left onto Meyers Street and Meyers Ridge Phase II job site and locate small gray construction office trailer for testing machine '), (1580, 4151, 1580, '(269) 465-5901 x70', '(269)- 466-2819 Fax', 'Cook Nuclear Plant Storeroom', 'One Cook Place', 'Bridgman', 'MI', '49106', '6:30-3:00', 'See directions attached. I-94 West to Exit 22. Make Left at stop. Turn Right at 1st Light. You will see signs for Plant. Make Right at that light. Stop at a Guard House and call. Visitor parking lot on Right. 5/00 Special deal for S/N 77060 NEED AS FOUND READINGS'), (1581, 4152, 1581, '', '', '', '', '', 'FL', '', '7:00-5:00 M-F', 'From Interstate 77 take Everharo to first intersection turn right on exit, go west on Everharo approximately 2 to 3 miles. Look for Rally\'s on left & Fisher Foods on right, take left at intersection, small white trailer on right past bank. Entrance to site is behind bank. Site is Canton Center. '), (1582, 4153, 1582, '205-283-6082 Jeff C', '', 'Job Site', '', 'Job Site', 'AL', '', '7:00-5:00 M-F', ' GET DIRECTIONS '), (1583, 4154, 1583, '(304) 937-4053', '', 'Toyota Site', 'JOB SITE', 'Buffalo', 'WV', '', '8:00-5:30', 'I-64 to Exit #39 in WV. At Exit #39 turn left onto Highway 34 Go until road comes to \"T\" in Winfield. Turn right onto Highway 35 at \"T\". Go less than 1 mile and take bridge across river. Across river turn left onto Highway 62. Go 9 miles, site on the right. If you get into Buffalo, WV you\'ve gone to far on Highway 62. '), (1584, 4155, 1584, '(814) 444-0459', '', 'South Center Ave.', '', 'Somerset', 'PA', '', '', 'Take Somerset exit off of Turnpike. Go through toll Make right onto Rt. 601 south towards town. Rt. 601 dead ends and turns into South Center Ave. You\'ll run right into site. (Beside Penn Dot) '), (1585, 4156, 1585, '(412) 931-1946 Field', '', 'McNight Road', '', 'Pittsburgh', 'PA', '', '', 'Corner of Ivory Ave & Nelson Run on McNight Road '), (1586, 4157, 1586, '315-737-9471 Bob Bar', '', 'Rasbach Road', '', 'Clayville', 'NY', '13322', '7:00 - 6:00 can be flexible', ' 90 Exit 32 make right. Turn left on 233. Rt. 5E. Left on Rt.8South. At Washington Mill Exit, make left. Go to Stoplight. Turn right on Onida Street. Go left on Roberts Rd. Then right on Rasboch Rd. Site on right. '), (1587, 4158, 1587, '814-387-0166', '', '109 Turkey Eye Lane', '', 'Moshannon', 'PA', '16859', '8:30a-5:00p(Office) 7:00a-4:00p(Site)', ' I-8 exit 133 make left go 11 miles to Bridge Construction site '), (1588, 4159, 1588, '(716) 692-3680', '(716) 693-3402 Fax', '2200 Military Road', '', 'Tonawanda', 'NY', '14150', '8:30-4:30', 'Route 90 to Route 290. Get off at Delaware Exit (south). Go west on Knocke to Military Road (turn right) Look for sign that says \"Martin Fireproofing\" '), (1589, 4160, 1589, '(517) 646-7800', '', '6716 Lansing Road', '', 'Diamond Dale', 'MI', '48821-0635', '', ' '), (1590, 4161, 1590, '(989) 894-4581', '(989) 894-0520 Fax', '1505 Main Street', '', 'Essexville', 'MI', '48732', '7:30-4:30', 'Root of Lanstaff Street - Rt. 25 East - out of Bay City - North on Pine (before Mall) to the end. Turn onto Saline Road. Lab in small white & blue building across the street from Silos. Says \"Tech Service\" on door '), (1591, 4162, 1591, '313-849-1890', '313-849-1893 Fax', '9401 West Jefferson Avenue', '', 'Detroit', 'MI', '48209', '', 'Off I-75 (Springwell Exit) North, Make right on Springwell to Jefferson, make right, take to plant, make left into shipping yard (Detroit Marina Building) '), (1592, 4163, 1592, '989-835-7187', '', '921 South Jefferson', '', 'Midland', 'MI', '48641', '', ' '), (1593, 4164, 1593, '585-475-0450', '585-475-0469 FAX', '975 John Street', '', 'West Henrietta', 'NY', '14586', '', ' '), (1594, 4165, 1594, '(616) 534-9645 x641', '(616) 534-3385 ', '2701 Chicago Dr. (Pipe Plant)', '', 'Grand Rapids', 'MI', '49509', '8:00-5:00 Office 5:00-5:00 Yard', 'Take 131S to Hall St. (Exit #83A) Go straight (uphill) at light. West (left) onto Hall St. at hill. Go to traffic light and make left onto Grandville - which turn into Chicago Drive (Bus. 196) Go several miles. 131N. to Burton Road. Go west to Burlingame Road. Take Right (N). Next Light Left on Chicago Drive. Pass under overpass. Site on Right. Go to Building #1 - pipe tester outside behind building. '), (1595, 4166, 1595, '(740) 695-9977 ext 1', '(740) 695-7298 Fax', '156 Woodrow Avenue', '', 'St. Clairsville', 'OH', '43950', '8:00-4:30 (Lunch 12:00-1:00)', 'From Wheeling on 70 West to Rt. 9 (near Ohio Valley Mall) Exit #216. Turn right at ramp. Go 1 mile on 9N. Coming from North. Pass Main St. Site on left. Building on right hand side-brown/beige building Office on 2nd floor. Lab in basement. '), (1596, 4167, 1596, '412-292-8489 Jim Cel', '724-853-3542 Home Of', '410 North 3rd Street', '', 'Youngwood', 'PA', '15697', '', 'See Attached '), (1597, 4168, 1597, '(607) 723-5117', '(607)722-2515 Fax', 'One Brick Ave.', '', 'Binghamton', 'NY', '13901', '8:00-5:00', 'From 81 headed South. 2nd Binghamton Exit. Front street - Left over bridge. 2nd light - Left - Next light - West State Street '), (1598, 4169, 1598, '(248) 348-2680', '(248) 348-2777 Fax', '45650 Grand River', '', 'Novi', 'MI', '48374', '8:00 - 5:00 (can go later if needed)', '275N - then take 96W Take Novi Rd. Exit #162. Turn left at exit onto Novi Road. Go 1500 ft., turn right on Grand River Ave. Go about 1 1/4 miles. Just west of Taft Road. Big brown brick building. Between DeMaria Construction and Fairlane. Field office in back (Tension Pond) - Gray wood building. '), (1599, 4170, 1599, '1-800-732-2420', '724-265-3323 Fax', 'Route 322', '', 'Ruffelton', 'PA', '15076', '6:00am - 4:00pm M-Th', ' I-80 East, Route 26 exit, follow this South Reedsville exit off Route 322, take left into Reedsville, 3 red lights at very end of Reedsville, across from Old Country Store 1.5 miles from exit approximately '), (1600, 4171, 1600, '304-329-2594', '304-329-2447 FAX', 'Rt 3, Box 69J', 'Casteel Road', 'Hazelton', 'WV', '26525', '', 'Rt 68 East Hazelton Exit, Turn Left, First Road to Right to facility '), (1601, 4172, 1601, '(607) 266-0147', '(607) 266-6409 Fax', 'Attn: CME Dept.', '2415 N. Triphammer , Suite 3', 'Ithaca', 'NY', '14850', '7:30-5:00 (can call to stay later)', 'Route 13 N thru Ithaca. Past Ithaca along lake. Go past first Exit (Cayuga Heights Exit) onto 2nd Exit (Triphammer Road Exit) (Near Pyramid Mall) Get off this exit. Go approx. 1 mile on N. Triphammer Road. Site is on right side of road (east side) 10/27/99 Installing Digital'), (1602, 4173, 1602, 'No Phone Yet', '(715) 832-0282 Joel ', 'Walmart Job Site', '', 'Alpena', 'MI', '', '', ' Call for Directions - they did not have an address when they called '), (1603, 4174, 1603, '606-564-5508 Lab', '', '107 West 2nd Street', '', 'Maysville', 'KY', '41056', '', ' West of 68 on 9 - 2.5 miles North on 3071. 2400 feet - 2nd entrance, turn left - 1500 feet. Dairy barn will be lab. '), (1604, 4175, 1604, '(231) 775-3487 or 87', '(231) 775-0301 Fax', 'Seneca Street', '', 'Cadillac', 'MI', '49601', '7:30-4:30', 'Take Seneca off 131N - Take Exit #176 to 115N. Go approx. 3 miles pass Mitchell State Park. Look for Division Street. Turn right. Go 1-2 miles. Look for party store. Turn left onto Seneca Street. Go 1/2 mile to site on left - yellow building on left - empty lab on right of garage door. 131 N. turn Left on to E. River Street. Go through several 4 way stops. Road dead ends at site.'), (1605, 4176, 1605, '(517) 322-5695', '(517) 322-1219 Vic P', 'Secondary Complex, 8885 Rick Rd.', 'PO Box 30049', 'Lansing', 'MI', '48909', '7:00-4:00', 'No directions in files from previous years. '), (1606, 4177, 1606, '', '', '', '', 'Roaring Spring', 'PA', '', '7:00am - 9:00pm', ' PUT MONTH, DAY & YEAR ON STICKERS '), (1607, 4178, 1607, '(412) 347-2227', '(412) 347-2240 Fax', 'Rosedale Ave.', '', 'Wheatland', 'PA', '16161', '', ' '), (1608, 4179, 1608, '', '', '6600 Mount Elliott Avenue', '', 'Detroit', 'MI', '48211-2437', '6:00 - 3:00', ' 94E. Mt. Elliott Exit. 2nd light, make a left, go about 1/2 mile on right hand side. '), (1609, 4180, 1609, '(724) 349-5858', '', 'RD2 Old Rt. 119', '', 'Homer City', 'PA', '15748', '7:00-4:30', 'Through Kittanning, East on 422. Take 422 bypass, 2nd exit-Wayne Ave. (119 South). Make big circle 1st stop light (Best Western on Right) turn left - go 1 mile - on right side of road. Billing : Shelly Central AP Processing, PO Box 600 Thornville OH 43076- 740-246-6315 / 740-246-4715 Fax Debbie Havens phone # 740-246-1121'), (1610, 4181, 1610, '(517) 754-4717', '(517) 754-4440 Fax', '1258 South Washington Ave.', '', 'Saginaw', 'MI', '', '8:00-4:30', 'I-75 North to Exit #151. Left onto Rt. 81 to Rt. 13 South. Follow until it turns to South Washington '), (1611, 4182, 1611, '231-237-1362', '231-547-6202 Fax', '16000 Bells Bay Road', '', 'Charlevoix', 'MI', '49720', '', ' '), (1612, 4183, 1612, '765-454-0454', '765-459-4105 Fax', '1000 North Touby Pike', '', 'Kokomo', 'IN', '46901', '8:00 am - 5:00 pm ', ' '), (1613, 4184, 1613, '(724) 656-9108', '', 'c/o McDuff Corporation', '1 Rockwell Drive', 'New Castle', 'PA', '16101', 'Flexible', ' From square downtown. Take Jefferson St. south to CBS Concrete on right. Turn left and cross bridge. Enter thru gate on left and ask guard. '), (1614, 4185, 1614, '(315) 463-0088', '(315) 463-0754 Fax', '6512 A Basile Rowe', '', 'E. Syracuse', 'NY', '13057', '7:00-4:00', 'Take 690 E to Bridge St. Exit #17 Turn left onto Bridge St. 290 E. Go past WalMart (Qwick Fill gas station on right). Make right turn just before station This is Basile Rowe Park. Watch for gray building. '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1615, 4186, 1615, '(734) 595-6504 ext. ', '734-595-6556 Fax', '33809 Michigan Ave.', '', 'Wayne', 'MI', '48184', '7:30-4:00', '2 Miles East of I-75. East on Wayne Road, on south side -- new building. Have Road -- cross Street. I-275N. Michigan Ave East - 4 Mile Corner of Michigan and Howe Drive near RR. Overhead door (1st door on right) '), (1616, 4187, 1616, '724-321-1953 Steve R', ' ', 'RT-38/208', ' ', 'Emlenton ', 'PA', '16373', ' ', ' '), (1617, 4188, 1617, '231-775-3761 ', '231-775-0072 Fax ', '5305 M115', '', 'Cadillac ', 'MI', '49601', '7:00 am - 5:00 pm', 'From Grand Rapids go North on 131. Take Exit #176. Go 4-5 miles North on M 115 West. Site is several miles pass lake on right. '), (1618, 4189, 1618, '(724) 981-5200 x264 ', '(724) 981-5267 Fax', '134 Mill Street', '', 'Sharon', 'PA', '16146', '8:00 am - 5:00 pm', 'Passwords: 560199/398398 11.806 Volts Need Cal 60 and 1 Kip Cell '), (1619, 4190, 1619, '814-360-3384', '570-857-0149 Fax', '3576 West Fourth Street', '', 'Williamsport ', 'PA', '17701', '7:00am-5:00am/Job 7:00am-4:00pm', 'Rt 84 East, Exit 26, go to 390, (make left) under 84, past Exxon Station next place on right, 2 office trailers on right Mailing Address: Job Site HC1, Box 1745, Tafton, PA 18464 MUST Call Larry to schedule If Special Trip, must inform customer about the cost to come to the facility'), (1620, 4191, 1620, '412-788-8308', '412-788-8370 Fax', '516 Parkway View Drive', '', 'Pittsburgh', 'PA', '15205', '', ' 79 to Crafton Exit. Go North, Sheetz Left. Campbells Run RD Left. Follow to Exon Station on Left Across from Exon. up hill Building 5 '), (1621, 4192, 1621, '412-231-8600', '412-231-6950 Fax', '3862 East Street', '', 'Pittsburgh', 'PA', '15214', '', 'Hazlett Street, Left 4 lights, do leg to left, on right side blue/gray building. 6 month calibration schedule '), (1622, 4193, 1622, '231-946-9310 Ron Off', '231-946-8926 Fax', '1212 Veterans Drive', '', 'Traverse City', 'MI', '49684', '', 'CALL FOR DIRECTIONS - NEW JOBSITE '), (1623, 4194, 1623, '724-743-8557', '724-745-2268 Fax', '10 Wilson Road ', '', 'Eighty Four ', 'PA', '15126', '7:00 am - 4:30 pm ', ' 79 South toward Washington, take Rt. 519, Exit for Houston/ Eighty Four, turn right, follow 519 South about 4 miles, turn left on Wilson Road, building is on corner of 519 and Wilson Road '), (1624, 4195, 1624, '724-323-2343 Mike ', '412-828-5260 Job Fax', 'Storage ', '', 'New Kensington ', 'PA', '', '', ' '), (1625, 4196, 1625, '574-289-8378/574-276', '574-289-0282 Fax ', '2 Easy Street', '', 'Michigan City', 'IN', '46360', '7:00 am - 4:00 pm ', ' I-80, Exit 72, bear right onto US-31, at US-31/US-20 Exit, bear right onto ramp, turn right onto US-20 (Lincoln Way West), continue West on US-35 (East Michigan Blvd.), turn left (South) onto South Carroll Avenue, turn right onto Pear Street, arrive Michigan City, at Blue Chip Casino, turn into parking lot, at stop sign turn right construction zone their machine is in trailer '), (1626, 4197, 1626, '814-765-2474 ext. 13', '814-765-1530 Fax/814', '114 Appalachian Drive', 'Fireman\'s Industrial Park', 'Clearfield', 'PA', '16830', '', 'Take Exit 120 on I-80 (old Exit 19). Make a right. At 2nd stop light, turn left on Ind. Park Road. Go until Appalachian Wood Products (they are behind that building). Set cal pts at 0-400-1200-10000 Formerly Allegheny Clearfield'), (1627, 4198, 1627, '724-253-3161 ext: 22', '724-253-3853 Fax', '2426 Perry Highway', '', 'Hadley', 'PA', '16130', '8:00am-4:00pm/7:00am-3:00pm Job ', 'I-80 W to I-79 N via exit 19B towards Erie, Merge onto PA 358 W via Exit 130 towards Greenville, turn left on to Perry Highway/US 19 (47 min and 42.98 miles from Emlenton) Need Dead Weights to 100 lbs - S Hook - Instron Tensile Fixture to hang weights '), (1628, 4199, 1628, '(607) 565-3032', '(607) 565-2339 Fax', '1 William Donnelly Parkway', '', 'Waverly', 'NY', '14892', '', 'From Elmira NY take Rt. 17 East to Exit #61. Get off at Exit #61 and go to stop sign at bottom of ramp. Take left and go to 4-way stop under RR bridge. Take a right and go approx. 300 yds. and turn left. Hancor on corner. They have Silos. Sister company in Findlay, OH Take QA Book and 400 system, 10 Kip cell Take jack'), (1629, 4200, 1629, '814-464-0262', '814-464-0268 Fax', '140 E. 16th St.', '', 'Erie', 'PA', '16503', '7:00 am - 5:00 pm', 'I80 E to I79N, to 12th St. E to French S to 16th '), (1630, 4201, 1630, '(585) 289-3530/585-5', '(585) 289-9263 Fax/5', '155 State Street', '', 'Manchester', 'NY', '14504', '7:30am-4:00pm/6:00am-3:00pm M-Th', 'NYS Thruway (I-90) to Exit #43 Manchester. Turn right onto Rt. 21 South. Go 1 mile to 2nd light and make right turn onto State Street. Spancrete is 1 mile on left. Sign says Oldcastle Spancrete Northeast. Machines are in several different areas '), (1631, 4202, 1631, '(616) 735-6500 x 539', '(616) 735-6700 FAX', '3079 3 Mile Road NW', 'PO Box 141637', 'Walker', 'MI', '49504', '8:30-5:00 Office/6:00AM-12:00AMshop', 'Take 96W towards Muskegon. Take Exit #28. At end of ramp turn left on Walker Ave. Go .4 miles. Turn right onto 3 mile road. Go 1 mile. Building on right - brown metal buildings Note: Building has no sign! Load in at concrete ramp on left side of building. See last year\'s run sheet'), (1632, 4203, 1632, '937-746-8500 x2037 K', '937-746-8500 x2006 D', '200 South Pioneer Blvd.', '', 'Springboro', 'OH', '45066-0430', '9:00 am - 5:00 pm ', 'East Rt. on Pioneer, past building Password: moejoe Need QA Book'), (1633, 4204, 1633, '734-763-9660 Will Ha', '734-764-4292 Fax/734', 'Dept. of Civil Engineering\n', '2340 Haywood St.', 'Ann Arbor', 'MI', '48109', '', 'Take M-14 West to 23 South, first exit will be Plymouth Road Exit, make right at end of exit, turn left on Murfin, then left on Haywood. Last parking lot on right, just before Beal road. (In G.G. Brown Building) '), (1634, 4205, 1634, '513-829-3448/513-276', '513-829-4233 Fax /51', '4408 Dixie Highway', '', 'Fairfield', 'OH', '45014', '8:00 am - 5:00 pm ', ' I-76 West, at I-76, Exit 20, merge onto I-76 South, merge onto I-76 (US-224) West, at I-76 I-71 Exit, merge onto I-71 West, merge onto I-275 (NW), at I-275, Exit 41 (OH 4 / Hamilton / Fairfield), merge onto SR-4 (Springfield Pike) North, arrive 4480 Dixie Highway '), (1635, 4206, 1635, '231-937-7780/616-690', '231-937-2281Fax', '19153 W. Howard City / Edmore Rd.', '', 'Howard City', 'MI', '49329', '7:30 am - 4:30 pm', 'From Grand Rapids, go North on Rt. US 131to Exit M46. Go East on RT. 46 , approx. 1 1/2 mile. Building on southside of Rt. 46. '), (1636, 4207, 1636, '(248) 474-3211', '(248) 474-8110 Fax', '22005 Gill Road', '', 'Farmington Hills', 'MI', '48335', 'Lab 5:00 a.m. - 1:00 p.m.', 'Int 275/96 North. Off at Exit #167. Go east on 8 mile road to Gill Road. Make left onto Gill Road. (Gill is between Halstead and Farmington). Approx. 1 1/2 miles. Site on left. Office Address: Superior Materials Holdings, LLC, PO Box 2900, Farmington Hills, MI 48333-2900, 30701 W. 10 Mile Road, Suite 500, Farmington Hills, MI 48336 248-788-8000 Formerly Fendt Builders Supply'), (1637, 4208, 1637, '', '', '', '', 'St. Croix', 'VI', '', '', ' '), (1638, 4209, 1638, '869-456-2521 ext. 12', '869-465-5501', 'PO Box 54, Wellington Road', '', 'Basseterre, St. Kitts', 'VI', '', '', ' '), (1639, 4210, 1639, '(340) 774-6707', '(340) 776-8321 Fax', '', '', 'St. Thomas', 'VI', '', '', ' '), (1640, 4211, 1640, '', '', 'Harbour View', 'Airport Road 160', 'St. Maarten', 'VI', '', '', ' '), (1641, 4212, 1641, '340-777-9644 ', '', '210-3A Altona Suite 201', '', 'St. Thomas', 'USVI', '802', '7:30 am - 5:00 pm ', ' Located in the Frostco building across from the Addelita Cancryn Junior High School '), (1642, 4213, 1642, '787-622-8000 x 434 &', '787-773-0098 Fax / 7', 'Civil Engineering Dept.', 'Ave. Ponce De Leon #377', 'San Juan', 'PR', '918', '', ' PR-1 Calle Bolivia, right to Calle Chile, right Alhombria site on left '), (1643, 4214, 1643, '787-549-0628/787-755', '787-748-5920 Fax', 'Carr 181 R860 KM 0.5 H6', 'Int. BO Matienzo Cintron', 'Trujillo Alto', 'PR', '976', '7:00 am-3:00 pm', ' Billing Address: Ave. San Claude 352, Suite 319, San Juan, PR 00926-0319 787-755-5015/787-748-5920 Fax Billing Contact: Ivelisse Pojals '), (1644, 4215, 1644, '787-854-6458', '787-854-4911 Fax', 'Carr#2 KM 46.6', 'BO Campo Alegre', 'Manati', 'PR', '674', '', ' GPS instructions okay, PR 2 & PR 686 *Bill prices the Soiltest like a 400K machine - this price specific for this S/N Difficult to calibrate - Must check previous Cal. Pt. first Take electric from inside building'), (1645, 4216, 1645, '787-253-1400', '787-253-8400 Fax', '#80 Calle Sirio Extension ', 'Los Angeles ', 'Carolina', 'PR', '979', '7:00 am - 4:00 pm', ' Closest intersection, Calle Jazmin & Calle Begonia, Carolina '), (1646, 4217, 1646, '(787) 721-5878 Ext. ', '787-883-2388 FAX/787', 'Carr 2 KM 26.7', '', 'Dorado', 'PR', '646', '8:00am-5:00pm/7:00am-5:00pm Job ', 'PR 2, left turn West of PR 679, Dorado Billing Address: PO Box 366698 San Juan, PR 00936-6698 787-721-5878 x 206 Violeta x 257 Javier 787-883-5747 Fax FORMERLY SAN JUAN CEMENT'), (1647, 4218, 1647, '787-831-4107', '787-831-0458 Fax', 'Cambiar a: HG Concrete, Inc. ', 'Carr #352, KM 4.6 Leguisamo ', 'Mayaguez', 'PR', '680', '7:00 am - 5:00 pm ', 'PR 2 R North to PR 65 East, left PR 108 East, right on Camino Adelina, left PR 352, lab on right before plant Billing Address: PO Box 1659, Mayaguez, PR 00681 Formerly Premezclados del Oeste '), (1648, 4219, 1648, '787-226-1010', '787-675-0377 Fax ', 'Rd 193, Suite 12 ', 'Luquillo Plaza', 'Luquillo', 'PR', '773', '7:00 am - 4:00 pm ', ' Billing: PO Box 1856, Luquillo, PR 00773-1856 '), (1649, 4220, 1649, '', '', '', '', 'Hormigueros', 'PR', '610', '', ' '), (1650, 4221, 1650, '787-785-5190', '787-798-2460 Fax', 'Centro Indl Luchetti', 'Ave. Central Juanita', 'BO Palmas Baymon', 'PR', '', '', ' GPS good to Exit then turn right on street to site Billing Address: GPO Box 42007, San Juan PR 00940-2207 9\" O\'Ring on Fortec'), (1651, 4222, 1651, '787-708-0690/787-420', '787-720-2350 FAX/787', 'PR 836 KM 1.6 Borio Canovanas', '', 'Guaynabo', 'PR', '969', '7:00 AM - 4:00 PM', 'GPS Okay Office: Plaza Alta, Suite 76, Guaynabo, PR 00969-3304 787-643-2058/787-708-0670/787-370-8127 Fax '), (1652, 4223, 1652, '787-760-1094x231Mari', '(787)760-1021 Fax / ', 'PR 845 KM 1.4', 'Cupey Bajo', 'Rio Piedras', 'PR', '926', '6:30 am - 3:30 pm ', ' \"***Gyratory Compactors calibrated every 6 months w/ Angle*** Continued next page........... ***ISO Requested*** Billing: PO Box 21420, Rio Piedras, PR 00928-1420 7:00 am - 5:00 pm 787-764-1000 x 305 Milagras / 787-620-2628 Fax Job works well for a Saturday. Replicate stickers and log plant # on run sheet'), (1653, 4224, 1653, '787-760-1094x231Mari', '(787)760-1021Fax/(78', 'PR 845 KM 1.4', 'Cupey Bajo', 'Rio Piedras', 'PR', '926', '6:30 am - 3:30 pm ', ' ***Gyratory Compactors calibrated every 6 months w/ Angle*** ***ISO Requested*** Continued next page........... Billing: PO Box 21420, Rio Piedras, PR 00928-1420 7:00 am - 5:00 pm 787-764-1000 x 305 Milagras / 787-620-2628 Fax'), (1654, 4225, 1654, '787-708-2999', '787-708-3020 FAX', '643 Greenwood Street', '', 'San Juan', 'PR', '926', '7:00 am - 5:00 pm ', 'Billing Address: MSC-928 138 Avinida Winston Churchill San Juan, PR 00926-6023 787-708-2999 / 787-708-3020 Fax '), (1655, 4226, 1655, '787-783-3585 Alex Do', '787-793-0410 FAX', 'Urb Industrial Monterrey, Lot #6', '', 'Puerto Nuevo', 'PR', '920', '8:00-5:00 Office 7:00 - 5:00 Site', ' ***ISO Requested*** ***continued*** PR 22 to PR 28, site on right, park under building Billing: PO Box 362040, San Juan, PR 00920 787-783-3585/787-793-0410 Fax Must have 1 Kip Cell Pressure System '), (1656, 4227, 1656, '787-312-4274 Cell / ', ' 787-886-4010 Fax', 'Carr #185 KM 4.2 BO Campo St CA', 'Plant #1 ', 'Canovanas', 'PR', '729', '8am-4pm Office / 7am-4pm Lab', 'PR 66, Exit 10, left at PR 185 5 on right, look for sign MUST TAKE ALL EQUIPMENT (PROVING RINGS) TO 1 LOCATION TO GET BETTER PRICE! Billing Address: PO Box 9022889, San Juan, PR 00902-2889 787-883-7140 Telephone / 787-883-7173 Fax'), (1657, 4228, 1657, '787-753-0147', '787-753-8387 Fax', '258 Chile Street', 'Hato Rey', 'San Juan', 'PR', '917', '8:00am-4:00pm/8:00am-4:00pm Job', 'GPS Okay Billing Address: PO Box 10208, 258 Chile Street, San Juan, PR 00917 787-753-0147/787-753-8387 Fax arleenrsuelos@gmail.com'), (1658, 4229, 1658, '787-720-0022', '787-790-7681', 'Carr #3, Km 57.1 Bo.', '', 'Quebrada Seca Ceiba', 'PR', '926', '', ' '), (1659, 4230, 1659, '', '', 'Ind. Park', 'BO San Isidro', 'Canovanas', 'PR', '729', '7:00 AM - 4:00 PM', ' '), (1660, 4231, 1660, '787-849-3322/787-848', '787-849-6223 Fax / A', 'Carr 309 KM 0.6', 'Bo San Romualdo', 'Hormigueros', 'PR', '610', '8:00 am - 5:00 pm', 'PR 2 to PR 100 to PR 309, site on right Billing Address: PMB 265, PO Box 5103 Cabo Rojo, PR 00623 Carr 309 Int. #2 KM 0.6 787-849-3322 787-849-6223 Fax'), (1661, 4232, 1661, '787-760-1094x231Mari', '(787)760-1021 Fax / ', 'PR 845 KM 1.4', 'Cupey Bajo', 'Rio Piedras', 'PR', '926', '6:30 am - 3:30 pm ', ' \"***ISO Requested*** Continued next page........... Billing: PO Box 21420, Rio Piedras, PR 00928-1420 7:00 am - 5:00 pm 787-764-1000 x 305 Milagras / 787-620-2628 Fax Job works well for a Saturday. Replicate stickers and log plant # on run sheet'), (1662, 4233, 1662, ' ', '787-846-5425 Fax / 7', 'Carr # 2 KM 35', '', 'Bo-Ceiba Vega Baja', 'PR', '693', '7:00 am - 5:00 pm', ' ***ISO REQUESTED*** Billing Address: 425 Carr 693, PMB 114, Dorado, PR 00646 Formerly Central Industrial Services lcorrea@gmail.com nmls28@gmail.com'), (1663, 4234, 1663, '787-785-5190 / 787-8', '787-787-8212 Fax / 7', 'Carr #114, KM 0.6', 'Bo Castello', 'Mayaguez', 'PR', '680', '', ' PR 2, right to PR 114, site on right Billing Address: GPO Box 42007 San Juan, PR 00940-2207 '), (1664, 4235, 1664, '(787) 832-7612', '787-832-6360 Fax', '258 McKinley Street', 'Candelaria Street', 'Mayaguez', 'PR', '682', '7:00 AM - 5:00 PM', 'Machine came from Caribbean Soiltest Billing Address: PO Box 345 Mayaguez, PR 00681-0345 '), (1665, 4236, 1665, '787-851-6010', '787-851-4660 Fax', 'Carr 309 KM 1.0', '', 'Hormigueros', 'PR', '660', '7:00 am - 4:00 pm', 'PR-2 to PR-309, site on left Billing Address: Mildred Olivera HC-02 Box 19505, Cabo Rojo, PR 00623-9721 787-849-6011/787-849-4357 Fax '), (1666, 4237, 1666, '(788) 5400 x201', '(787) 788-5427 - Fax', 'BO Jacaguas 14 Calle 2', 'Carr #14 Km 11.2', 'Juana Diaz', 'PR', '795', '', ' PR 52, Exit 95, PR 506 North, right on PR 14 East, site on right Billing Address: GPO Box 366259, San Juan , PR 00936-6259 PT-D-Load Beam Weight=850 lbs PT-75 Beam Weight=900 lbs'), (1667, 4238, 1667, '(787) 281-0686', '787-764-4709 FAX', 'Villa Nevarez Prairie', '#323 State Road PR-21', 'San Juan', 'PR', '927', '7:00 am - 4:00 pm', ' PR-1 East to PR-21, on right, near Cuerda office Billing Address: PO Box 11562, San Juan, PR 00910-2662 787-281-0686/787-764-4709 Fax '), (1668, 4239, 1668, '787-792-2626', '787-782-5990 Fax', 'Lot 26A Calle Emma', 'Amelia Distr. Center', 'Guaynabo', 'PR', '968', '7:00 am - 5:00 pm', 'PR-22 Exit 7, to PR-165E, right onto Amelia, left onto Diania, right onto Emma, site on left Billing Address: PO Box 10872 Caparra Heights San Juan, PR 00936 '), (1669, 4240, 1669, '787-818-0720', '787-818-0725 FAX', 'Carr 111, Int 125 KM 4.1 Interior', 'Zana Industrial', 'Moca', 'PR', '676', '8:00am-5:00pm/7:00am-3:30pm Job ', 'PR-2 to PR-111 East, turn right, Calle Jose, turn right to road to plant Billing Address: 221N Conceprion Vera Ayala, Moca, PR 00676 787-818-0720/787-818-0725 Fax Jog switch doesn\'t work on S/N 356978'), (1670, 4241, 1670, '787-622-8000 x 434 &', '787-773-0089 Fax / 7', 'Civil Engineering Dept.', 'Ave. Ponce De Leon # 377', 'San Juan', 'PR', '918', 'M-TH 1:00 PM - 8:00 PM', ' PR-1 Calle Bolivia, right to Calle Chile, right Alhombria site on left Password Instrom computer - Tensionlab Password Partner Softeare- Tension Need tensil fixtures to do ATS machine '), (1671, 4242, 1671, '787-809-2444 / 783-3', '787-809-2442 FAX/787', 'Carr 955 KM 0.9', 'Bo Jimenez', 'Rio Grande', 'PR', '745', '7:00am to3:30 pm/7:00am - 3:30pm Job', 'PR 3 West to PR 967, turn right in Ornamental Poles site, PR 955 Mailing: Marxuach & Longo, Inc. PO Box 788 Rio Grande, PR 00745 787-809-2444 787-809-2442 Fax'), (1672, 4243, 1672, '787-841-1377', '787-841-1391 Fax', 'Ponce Laboratory, PR 591 KM 8', 'El Tuque Ward', 'Ponce', 'PR', '731', '', 'PR 52 to PR 2 West, right to PR-591, left to site, 2 - 3 blocks on left Billing Address: Highway & Transportation Authority Department of Transportation & Public Works PO Box 42007 San Juan, PR 00940-2007 787-821-8787/787-269-5830/787-798-2460 Fax'), (1673, 4244, 1673, '724-652-6668 x 124', '724-652-6664 Fax', '606 McCleary Avenue', '', 'New Castle ', 'PA', '16101', '', ' sue.fuchs@rescoproducts.com'), (1674, 4245, 1674, '787-251-9474', '787-779-7508 Fax', 'Carr 866 KM 0.7 Street CA', '', 'Sabana Seca', 'PR', '952', '8:00am - 5:00pm / 6:00am - 3:00pm Job ', ' PR-22 Exit 16 to PR-866 turn right, next right West on PR-866 go 100 yards, turn right, still on PR-866, left onto PR-866 to site on left Billing address: PO Box 1052, Sabana Seca PR 00952 '), (1675, 4246, 1675, '787-259-1410', '787-259-1604 Fax', 'State Rd. Lo 2 KM 221.8', 'Lot 100.5 El Tuque Ward', 'Ponce', 'PR', '00731-7761', '7:00 am - 5:00 pm', 'Billing Address: PO Box 32198 Ponce, PR 00732-2198 '), (1676, 4247, 1676, '787-986-1400 ', '787-986-1411 Fax / 7', 'Carr #114 KM 0.3 (Int) Guanajibo', '', 'Mayaguez', 'PR', '00681-0495', '8:00 am - 6:00 pm ', 'Billing Address: PO Box 7999, PMB 360 Mayaguez, PR 00681 Down the Road for Highway Authority '), (1677, 4248, 1677, '787-760-1094x231Mari', '787-760-1021 Fax', 'Plant # 19', '', 'Mayaquez', 'PR', '926', '6:30 am -3:30 pm', ' '), (1678, 4249, 1678, '787-795-2047', '787-261-5557 Fax', 'Carr 867 Km 2.7', 'Sector EL 26 Ingenio', 'Toa Baja', 'PR', '', '8:00 am - 5:00 pm ', ' Invoice: PO Box 1234, Sabana Saca, PR 00952 787-795-2047/787-261-5557 Fax PASSWORD - 268'), (1679, 4250, 1679, '(787) 758-7830', '(787) 764-8553 Fax', 'GPO Box 363307', '', 'San Juan', 'PR', '936', '', ' '), (1680, 4251, 1680, '(787) 841-3181', '(787) 841-3164', 'Ponce Resident Office', 'PR-139 KM 6.1 Maraquez Road', 'Ponce', 'PR', '732', '', ' '), (1681, 4252, 1681, '', '', '', '', 'Santurce', 'PR', '', '', ' '), (1682, 4253, 1682, '787-758-7830', '787-758-7830 Fax', '', '', 'Barceloneta', 'PR', '', '', ' '), (1683, 4254, 1683, '780-0670', '', '', '', 'Bayamon', 'PR', '', '', ' '), (1684, 4255, 1684, '(809) 844-8181 x252', '', '', '', 'Ponce', 'PR', '', '', ' '), (1685, 4256, 1685, '787-855-3607', '787-855-3638', 'Carr 688 KM 4.0 BO', 'Sabana Vega Baja', '', 'PR', '', '', ' '), (1686, 4257, 1686, '(809) 725-8824', '', 'Calle Hoare 714', 'Santurce', 'Hato Rey', 'PR', '', '', ' '), (1687, 4258, 1687, '', '', 'PO Box 193588', '', 'San Juan', 'PR', '00919-3588', '', ' '), (1688, 4259, 1688, '', '', 'Carr 175 Km 0.2', '', 'Caguas', 'PR', '', '', ' '), (1689, 4260, 1689, '', '', 'Sector Campeche', 'Cerca Rio RT 860-KM.1', 'Guayama', 'PR', '', '', 'Only able to cert to 18K Has electrical problems - they are getting it repaired. '), (1690, 4261, 1690, '(809) 755-5015', '', '', '', 'Caparras', 'PR', '', '', ' '), (1691, 4262, 1691, '(809) 846-8163', '', 'Carr 140 Km 0.3', '', 'Barceloneta', 'PR', '617', '', ' '), (1692, 4263, 1692, '', '', '', '', 'Hato Rey', 'PR', '', '', ' '), (1693, 4264, 1693, '783-1498', '', 'Ave Kennedy', 'Zona Portuaria, Calle Principal', 'Puerto Nuevo', 'PR', '', '', 'Billing Address: PO Box 4185, San Juan, PR 00936 '), (1694, 4265, 1694, '253-1620', '', '', 'Plaza Los Americas Job', '', 'PR', '', '', ' '), (1695, 4266, 1695, '(787) 758-7830', '', '', '', 'Rio Piedras', 'PR', '', '', ' '), (1696, 4267, 1696, '(787) 783-9003', '(787) 793-4139 Fax', 'PO Box 10791', '', 'San Juan', 'PR', '922', '', ' '), (1697, 4268, 1697, '(787) 585-3089', '787-855-2794 FAX', 'Centro Ind. Rio Abajo', 'Ave. Trio Verga Bajeno KM 1.0', 'Vega Baja', 'PR', '', '8:00 am - 4:00 pm', ' '), (1698, 4269, 1698, '642-6432', '', 'Div. of Francisco Levy Hijo', 'Carr #3 (65th Infantry) Bo Palmerejo', 'Canovanas', 'PR', '907', '', ' Billing Address: Ave Magdalena 1400 Condado, PR 00907 '), (1699, 4270, 1699, '787-318-5361/ 787-73', '787-738-2868 Tel/Fax', 'KM 51 HM 5 BA', 'Beatriz Cayey, Carretera #1', 'Caguas', 'PR', '', '7:00 AM - 4:00 PM', 'Billing Address: PMB #199, PO Box 4960, Caguas, PR 00726 787-738-2868/787-318-5361/787-738-2868 Fax '), (1700, 4271, 1700, '787-312-4274 Cell/78', ' 787-886-4010 Fax', 'Carr 185 KM 4.2', 'Plant #3', 'Canovanas', 'PR', '729', '8am-4pm Office / 7am-4pm Lab', ' MUST TAKE ALL PROVING RINGS TO 1 LOCATION TO GET BETTER PRICE Billing Address: PO Box 9022889, San Juan, PR 00902-2889 787-883-7140 Telephone / 787-883-7173 Fax'), (1701, 4272, 1701, '540-829-5695', '(540) 829-6325 Fax', '10496 Quarry Drive ', 'Reference #87', 'Mitchells', 'VA', '22729', '7:00am-5:00pm/7:00am-4:00pm Job ', '522 South around Culpepper to Rapidan Road. Follow until Quarry Road on Right. Turn Right on Quarry Road. '), (1702, 4273, 1702, '202-673-2155 Rezene ', '202-671-0646 Fax Was', '400 McMillan Drive(Not a mailing address)', '(Use 300 McMillan Dr NW to map)', 'Washington', 'DC', '20001', '', '95S to 495W Exit, New Hampshire Ave S, to Georgia Ave, make left, go 1 - 1 1/2 , Harvard St, make left, go 1 blk to T, make right on 4th St, go 1 blk to traffic light, left on McMillin Dr 1st bldg on right Cert to: DC Dept of Trans 2000 14th St NW QA/QC Div 4th Fl Room 401 Washington DC 20009 or Wasi Kahn, 200014 Street NW, 4th Floor, Washington, DC 20009 Send Certs Attn to : Rezene Medhani'), (1703, 4274, 1703, '410-297-8108', '410-297-8151 Fax / 4', '1202 Technology Drive, Suite D', '', 'Aberdeen', 'MD', '21001', '8:00 am - 5:00 pm M - F', 'Take I-95 to Exit 85, take Rt. 22 W to traffic light at Technology Dr make a left and look for Technology Buisiness Park on the right **All invoices must have an ECS project number of the name of the** **person ordering the services** '), (1704, 4275, 1704, '703-471-8400', '703-834-5527 Fax', '(Formerly Engineering Consulting Svcs)', '14026 Thunderbolt Place, Suite 100', 'Chantilly', 'VA', '20151', '8:00 am - 6:00 pm ', ' \"**CONTINUED** From 66 - Take Exit #53 for Rt. 28N. Get on 50E at intersection Rt. 50/28. Left lane, make Left on Centerville Road. Go 1/4 mil. Turn into Dulles Business Park on left. Make left on Skyhawk Drive, right on Thunderbolt Place. ECS end 1st building on right . Go around back to loading dock. Ned Cal 60, 1 K cell & Weights.'), (1705, 4276, 1705, '(703) 471-8400', '(703) 834-5527 Fax', '14026 Thunderbolt Place', ' ', 'Chantilly', 'VA', '20151', '6:30 am - 6:00 pm', 'All Invoices must have an ECS project number of the name of the person ordering the services **CONTINUED** From 66 - Take Exit #53 for Rt. 28N. Get on 50E at intersection Rt. 50/28. Left land make Left onto Centerville Road. Go 1/4 mile Turn into Dulles Business Park on left. Make left on Skyhawk Drive, right on Thunderbolt Place. ECS end 1st building on right. Go around back to loading dock.'), (1706, 4277, 1706, '410-847-3148 Niles', '410-847-3266 Fax / 4', '11411 Marriotsville Road', '', 'Marriotsville', 'MD', '21104', '', '95 North to 695 North, Towson exit, I-70 West to Marriotsville Exit, ramp right to Marriotsville Road, 3 or 4 miles, 2nd red light, quarry on right, building 11 on left Invoices sent to: MUST HAVE PO# Financial Services Center PO Box 4091, Postal Station \"A\" Toronto, ON M5W 5K4 CANADA'), (1707, 4278, 1707, '(814) 437-3013', '814-437-2497 Fax', '970 Mercer Rd.', '', 'Franklin', 'PA', '16323', '7:00 am - 3:30 pm ', 'Take Rt. 8 & 62 South thru Franklin to 62W towards Polk. Go 2-3 miles. Site on left before 4-H fairgrounds. '), (1708, 4279, 1708, '216-692-8333 Ralph ', '216-531-9399 Fax', '19320 Redwood Road', '', 'Cleveland', 'OH', '44110', '7:30 am - 4:30 pm', 'Route 271 N to Rt. 90 West to east 185th St. Exit #182A. Go to 2nd light, turn left (south) onto E. 185th. Go 1/2 mile, turn right onto Redwood. 2nd building on left is lab. Red brick white wall at coadiz dock. Yellow stairs. Go in main door for access Dry Plant end of road through Gate. invoices e-mailed to apeuclidus@euclidchemical.com'), (1709, 4280, 1709, '(814) 474-4777', '(814) 474-2848 Fax', '3000 Blair Road', '', 'Fairview', 'PA', '16415', '8:00 am - 4:00 pm', ' 90 W to Fairview Exit #4, Make right on Rt. 98 2 miles one light, make left on 20, 1 mile, Pleasant Ridge Manor, turn right on Blair Road '), (1710, 4281, 1710, '(717) 532-5959 x1207', '(717) 532-7997 Fax', '34 Strohm Road', '', 'Shippensburg', 'PA', '17257', '8:00-4:30 Office 7:00-3:30 Lab ', 'Go to Blue Mountain to Exit #15. Go thru toll booth and make left to Rt. 997. Follow to 696 straight ahead to Shippensburg. At 2nd traffic light (Junction 11) make left on Rt. 11 North. Go 5 lights - look for Gulf Station. Just past - bear right onto 174E. Go 4 1/2 miles (cross Rt. 81) and turn right onto Strohm Road. Cross RR tracks. 1st drive on left. DO NOT SCHEDULE FOR FRIDAYS!'), (1711, 4282, 1711, '717-483-0100', '717-483-9962 FAX', '12345 Big Valley Pike ', '', 'Millcreek', 'PA', '17060', '6:00 - 4:00 ', ' Near Huntington Rt. 655 to Millcreek, NE of town Rt. 655, on right '), (1712, 4283, 1712, '717-349-2412/717-349', '814-766-0201 Fax ', '18476 Dry Run Road', '', 'Dry Run', 'PA', '17220', '7:00 am to 3:30 pm ', 'Off Rt 75, Exit 14 on turnpike Left into Dry Run. On Dry Run Road, look for quarry. N75 Spring Run 2-3 miles on left/fire company/take left ONLY PUT MONTH AND YEAR ON STICKERS AS PER DAVE CHILLCOTE Input 1 798 Input 2 21980'), (1713, 4284, 1713, '717-767-6868', '717-767-1522 Fax Tom', 'One Connelly Road', '', 'Emigsville', 'PA', '17318', 'No Friday\'s', 'I-83 Emigsville exit, turn toward Emigsville, follow to red light at T, make a right to Hess Station, make left under 1 lane RR Trestle Emigsville Road to Busser Road to Connelly Road, end of road on the right ***If using Lebow System, do not need to remove the block platen*** '), (1714, 4285, 1714, '215-416-7031 Cell Le', '215-426-7283 Fax', '2870 E Allegheny Ave', '', 'Philadelphia', 'PA', '19134', '7:00am-4:00pm ', ' Turnpike 276, to Rt. 1 (Old exit 28), Rt. 1 South to 63 East onto Woodhaven Road, at end of Woodhaven follow 95 South, go 10 miles to Allegheny Avenue, at end of ramp make left go 300 feet the driveway is on the right, it is a Asphalt plant. tanks '), (1715, 4286, 1715, '(717) 792-4700 (Lab-', '(717) 792-1599 Fax', '5952 Lincoln Highway West', '', 'Thomasville', 'PA', '17364', '7:00 am - 4:00 pm', '10 miles west of York, PA. Take 30 W to Thomasville. Martins Potato Chip Factory on right. Go 1 mile and look for sign on left. (Can\'t see site from road before airport). Turn left - go 3/4 mile (by airport) Formerly Workrite Packaged Cement Products, changed name to York Building/Workrite Division'), (1716, 4287, 1716, '610-258-8737', '610-258-4884 Fax ', '635 Industrial Drive ', '', 'Easton', 'PA', '18042', '7:00 am - 4:00 pm ', ' I-78, Exit 75, right onto Morgan Hill Road, right onto Cedarville Road, west on Industrial Drive '), (1717, 4288, 1717, '814-865-9678 Dan ', '814-865-9668 Fax', 'PA Transportation Institute, Cato Park Lab', '3127 Research Drive--Room 198', 'State College', 'PA', '16801', '8:00 am - 5:00 pm', 'From downtown State College, go west on W. College Ave. Approx. 4 miles off campus, go past developments. Sign for Kato Park. Go left on Kato Road, go approx. 2 blocks to Research Drive, turn right, bldg. on left. '), (1718, 4289, 1718, '717-733-4823 x 113', '717-733-0959 Fax', '824 East Main St. (Rt. 322)', 'PO Box 759', 'Ephrata', 'PA', '17522', '7am-5pm Office / 7am-4 pm Site', '30 East to 222 East to 322 North '), (1719, 4290, 1719, '412-828-1500 x6101', '412-828-6639 Fax', '128 First Street', ' ', 'Pittsburgh ', 'PA', '15238', '', '28 South to Ride Park Exit. Bare Right thru Park 4way stop light. Turn Left downhill Freeport Rd. Turn left at light gas station next light Center St. turn right to end, turn right on First St. Few hundred feet plant parking. Tax Exempt No: 02-04066-4'), (1720, 4291, 1720, '814-781-3744', '814-781-3230 Fax', '1059 Trout Run Road', '', 'St. Marys', 'PA', '15857', '6:00 am - 2:00 pm', 'From St. Marys take I-120E towards Emporium . Approx. 1 mile from town you will see Eagle Trucking. Turn at 1st right, then bear right on Trout Run Road. Go 1/4 mile & site is on left. '), (1721, 4292, 1721, '412-622-6943', '412-622-6944 Fax Joh', '4501 Centre Ave.', '', 'Pittsburgh', 'PA', '15213-1501', '7:30 am - 4:00 pm ', 'Take I-579 South, take Exit on Bigelow Road. Go south on N. Dithridge St. to Centre Ave. '), (1722, 4293, 1722, '(814) 781-7333 EXT:', '(814) 834-9201 FAX', '259 Eberl Street', '', 'St. Marys', 'PA', '15857', 'Job Site - 7:00-3:30 Office - 7:00-3:30', 'Take Rt. 219 to Ridgeway. Take Rt. 120E toward St. Marys Go about 11 miles. Site on right in yellow brick building about 100 yards from the road. Take QA Book Must take 400 system & 1K cell. Elevation: 2020 Feet, Lat: 41.663*N, Long: 78.811*W Dead Weight Correction Value: 0.9992'), (1723, 4294, 1723, '724-952-9832x103', '724-925-8947 Fax', '100 Brady Place', '', 'New Stanton', 'PA', '15672', '', ' '), (1724, 4295, 1724, '(814) 781-4013', '(814) 834-9201 Fax', '259 Eberl St', '', 'St. Marys', 'PA', '15857', '7:00am-3:30pm/7:00am-3:00pm Job ', 'I80 Hazen Exit (East of Brookville Exit)-- Next to Prison '), (1725, 4296, 1725, '330-966-0444 x 2012 ', '(330) 966-8505 Fax/3', '% Axim Concrete Technologies', '8282 Middlebranch Road', 'Middlebranch', 'OH', '44652', '8:00 am - 5:00 pm', 'Take 76 to 77S - Off at Akron/Canton Airport Exit #113. At stop make right on Lauby Rd. / End at State St. Turn right onto State St. Go about 6 miles then turn right onto Middlebranch Rd. Go about 1/4 mile on left. Sign says Axim Concrete Technologies. Go down drive, cross RR tracks. Go to building on left. Formerly Essroc Materials Company being bought by Sika Corporation'), (1726, 4297, 1726, '218-279-8080', 'RMA 8010', '2606 West Michigan Street', '', 'Deluth', 'MN', '55806', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1727, 4298, 1727, '610-264-1430', '', '600 Hayden Circle', '', 'Allentown', 'PA', '18109', '', ' Formerly Techjet A & M, Easton, PA'), (1728, 4299, 1728, '662-329-5560 APAC', '', 'PO Box 1388', '462 Lake Norris Road', 'Columbus', 'MS', '39703', '', ' '), (1729, 4300, 1729, '205-620-3360', '205-620-9262 Fax', '2395 Highway 11', '', 'Pelham', 'AL', '35124', '', ' '), (1730, 4301, 1730, '(410) 785-5790', '(410) 785 1103', '243 Cockeysville Road', 'PO Box 129', 'Cockeysville', 'MD', '21030', '7:00 am - 5:00 pm', 'Off Rt. 83 from York, PA. About 45 minutes away - south on Rt. 83 to Warren Rd, Exit 18. Make left onto Beaver Dam Rd. at light. Make right onto Cockeyville Rd. Site on right. '), (1731, 4302, 1731, '216-696-7158', '(216) 696-7164 Fax', '404 Literary Ave.', '', 'Cleveland', 'OH', '44113', '7:30-3:30', 'I-77 into town to E 9th Street Exit then turn right and get into left lane. Go 2 lights, turn left. Turn left on Commercial Street and follow onto Canal Street. Turn left over the bridge (river). Site 1st drive on right. '), (1732, 4303, 1732, '412-824-0678/412-670', '412-829-0387 Fax', 'Monroeville Facility', '600 Thomas Street', 'Monroeville', 'PA', '15146', '7:00 am - 3:30 pm', 'Into Monroeville Mall, Make left, go behind Mall, top of hill to stop make Right, James Street. Make left on Spielman St. at Church thru stop sign pass cemetary on left, 2nd street on left is Thomas Street, 1st trailer on left Take hole through cell Elevation: 1200 Feet, Lat: 40.421*N, Long: 79.788*W Dead Weight Correction Value: 0.9993'), (1733, 4304, 1733, '814-474-4904/724-321', '724-283-1067 Fax', 'Storage ', '', 'Fenelton', 'PA', '', '', ' North on 79, Exit 174 (McKain), off ramp to left, stay on road until Rt. 832, at the crossroads go left '), (1734, 4305, 1734, '304-233-3990', '304-233-9331', '1025 Main Street Suite 634', '', 'Wheeling', 'WV', '26003', '', ' '), (1735, 4306, 1735, '(304) 926-7200', '(304) 926-0666 Fax', '1000 River East Drive', '', 'Belle', 'WV', '25015', '8:00-5:00', '2/26/98 - Selling equipment as per Dave Parks '), (1736, 4307, 1736, '724- 774-5100', '724-774-9140 Fax', '600 Railroad Street', '', 'Rochester', 'PA', '15074', '7:00am - 5:00pm', 'Take 68 West to Rochester. At Sheetz, make right - at 1st stop sign turn left onto New York Ave. Go down hill & across main road (Rt. 65). Take Spiral Bridge over RR tracks. At \"T\" turn right. Go 1/4 mile on right. '), (1737, 4308, 1737, '540-896-8852 Cell P', '540-896-8288', 'PO Box 575', '', 'Broadway', 'VA', '22815', '', 'Near Winchester I-81 South to Exit 235. Weyers Cave (Grottoes). Take a Right at stop sign. Make Left onto 11S. Go 3 miles to Mt. Sidney in Plaza, diagonal form Texaco Station. '), (1738, 4309, 1738, '(304) 327-4020 / 412', '', '', '', 'Bluefield', 'WV', '', '', 'Need directions. '), (1739, 4310, 1739, '724-438-4811 Bud Sca', '724-439-2945 FAX Bud', 'PA Dot Garage', 'Galliten Avenue', 'Uniontown', 'PA', '', '', 'PA Dot Garage Galliten Avenue - Uniontown - Call John Ross for directions!!!! Bill Bud Scales For Calibration '), (1740, 4311, 1740, '(301) 468-9400', '(301) 468-9669', '170 Rollins Ave.', '', 'Rockville', 'MD', '20852', '8:00-5:00', 'From Frederick, MD take 270 South to Montrose Road East, go East to Rt. 355, turn left on to Rt. 355, go 3 lights, turn left on Rollins Ave., 1st block, 3/4 way down, on left. '), (1741, 4312, 1741, '540-829-5695', '', '10496 Quarry Drive', 'PO Box 12', 'Mitchells', 'VA', '22729', '', ' '), (1742, 4313, 1742, '(724) 843-7315', '(724) 843-7079 Fax', 'Front Street', '', 'Fallston', 'PA', '15066', '8:00-5:00', 'Near New Brighton (Beaver County) 3/01 Spoke with Mary. Machine no longer in use. Bought new one this year, but no mention of calibration needed. 3/02 Spoke with Steve Brown. New machine calibrated. Try next year--2003. Mary Wilcox no longer there. Need Dial Indicators 5/25/98 - Service call on Tinius Olsen to rebuild hydraulic'), (1743, 4314, 1743, '(703) 361-4193', '(703) 361-8638 Fax', '7816 Bethleham Road', '', 'Manassas', 'VA', '20109', '7:00-5:00', ' '), (1744, 4315, 1744, '814-269-2549 Greg', '', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '', ' '), (1745, 4316, 1745, '814-269-2549 Greg', '', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '', ' '), (1746, 4317, 1746, '', '', '3200 Patuxent River Road', '', 'Davidsonville', 'MD', '21035', '', ' '), (1747, 4318, 1747, '(800) 544-8607', '(606) 845-7607 Fax', 'Rt. 2 Box 136', '', 'Flemingsburg', 'KY', '41041', '', 'See directions in files. '), (1748, 4319, 1748, '216-348-3838', '216-348-3896 Fax', '2433 Superior West Bridge Garage', 'Test Lab', 'Cleveland', 'OH', '44113', '', 'At corner of West 25th & Detroit Sts. At the west end of Detroit Superior Bridge (may be called Veterans Memorial Bridge). Across the street from Malachi Church. '), (1749, 4320, 1749, '724-785-7952', '724-640-5980 Kevin c', '175A Brashear Street', '', 'Brownsville', 'PA', '15417', '', 'Take 73 to 43, go 3 exits to Brownsville exit Rt. 40, go across bridge, take first right, at the first street take another right, keep going straight and will see the trailers. '), (1750, 4321, 1750, '(540) 785-6100', '(540) 785-3577 Fax', '(Formerly Engineering Consulting Svcs)', 'Suite G 11047 Pierson Drive', 'Fredericksburg', 'VA', '22048', '8:00 am - 5:00 pm', 'Take 95 South to Exit #130A, Rt. 3 East. Continue on Rt. 3 East to Rt. 2 South. Follow Rt. 2 to job site (about 5 miles) Site on right in Fredericksburg Business Center - just past Shannon Airport (small airport) '), (1751, 4322, 1751, '', '', '(Formerly Engineering Consulting Svcs)', '1600 Mountain Road', 'Glen Allen', 'VA', '', '', ' '), (1752, 4323, 1752, '(703) 818-8519', '(703) 361-3798 Fax', '6997 Gateway Court', '', 'Manassas', 'VA', '22110', '8:00-5:00', ' '), (1753, 4324, 1753, '(717) 763-7212 Ext: ', '(717) 763-1808 Fax', '202 Senate Ave.', '', 'Camp Hill', 'PA', '17011', '7:00am - 4:00pm', 'From Rt. 11/15. Turn north on Erford Road. Turn left onto Senate at large white building (Senate Plaza) pass stop sign and go to next large building on right (#202). Site is in basement at southeast corner of building next to small crane. Put Offset / Scale etc. points on certs. Must use 400 system, 10K cell on Soiltest,'), (1754, 4325, 1754, '410-631-2374', '410-631-5454 fax', '2122 Broening Highway', '', 'Baltimore ', 'MD', '21224', '6:00AM to 2:30 PM', '695 East - 95 South - O Donald Street Exit - 2nd Light on Left - Right on Broening Highway. **Bernie is there from 6:00 am to 2:30 pm. Call before going to try and be there when she is. '), (1755, 4326, 1755, '', '', 'Rt. 219 North', '', 'West Middlesex', 'PA', '', '', ' '), (1756, 4327, 1756, '304-454-9308', '', 'Route 1 Box 129', '', 'Rowlesburg', 'WV', '26425', '7:00-5:30 Monday-Thursday', 'Take 68E to Bruceton Mills Exit#23. Take Rt. 26 South into Albright. Do not cross bridge on Rt. 26. Bear left toward Camp Dawson. Go 3 or 4 miles to intersection with Rt. 7. Turn right on Rt. 7W Go across New Bridge. Make 1st left onto Rt. 72S to Rowlesburg. At stop sign go straight. Cross bridge and make 1st left. Follow to end. DO NOT EVER TAKE RT. 7 - BAD ROAD. See map. '), (1757, 4328, 1757, '717-845-7096', '717-845-5421 Fax', '135B East North St.', '', 'York', 'PA', '17401', '', ' '), (1758, 4329, 1758, '', '', '', '', 'Columbus', 'OH', '', '', ' '), (1759, 4330, 1759, '724-452-8621', '724-452-0514 FAX', 'SR 1005 Beaver County Jobsite', 'Shady Rest Road', 'Ellwood City', 'PA', '', '', 'CALL FOR DIRECTIONS ! (412-475-1269 Butch) Take PA Turnpike - West. Take Freeport Rd. Exit. Go to west end of Sharpsburg. Take Rt. 28 bridge. Site at car lot on the right side. '), (1760, 4331, 1760, '', '', 'c/o Baltimore Packaging', '7670 Canton Center', 'Baltimore', 'MD', '21224', '', ' '), (1761, 4332, 1761, '(513) 891-2000', '', '10930 Deerfield Road', '', 'Cincinnati', 'OH', '45242', 'Open 23 hours', 'From I-71 take 275W to Reed Harman Highway Exit #47. Turn right at end of ramp. go up to Cornell Road. Take left onto Cornell. Go to approx. 3rd light. Take a right onto Deerfield Road. Go 1/2 mile on left. Go in 3rd driveway. '), (1762, 4333, 1762, '(304) 592-3011', '(304) 592-3024 Fax', 'Route 131 West', '', 'Bridgeport', 'WV', '26330', '7:30 - 4:00Office / 7:00-3:00Lab', ' Exit 125 on I-79 '), (1763, 4334, 1763, '(606) 325-2411', '(606) 324-5411 Fax', '1717 13th street', '', 'Ashland', 'KY', '41105', '', 'Rt. 52 to Ashland Exit. Cross bridge. Follow Rt. 60S (which is 13th ST) to top of hill, pass college. At next light, park at Baptist Church parking lot on left. They are in an old gray building like a garage, on right across the street. Go inside and someone will take you to lab (machine not at office) (on Rt. 168W) '), (1764, 4335, 1764, '(304) 788-3213', '(304) 788-3232 Fax', 'Route 4 Box 226', '', 'Keyser', 'WV', '26726', '7:30am - 4:00pm', 'South of Keyser on Rt. 220. 1 1/4 mile - turn right onto Stoney Run Road (at Pizza Hut) Go 1/4 mile. 1st concrete driveway on right (Sign) '), (1765, 4336, 1765, '(814) 797-1261', '', 'Beatty Avenue', '', 'Knox', 'PA', '16232', '', ' '), (1766, 4337, 1766, '(502) 830-7840', '', '401 Hoffman Drive', '', 'Hendersonville', 'KY', '', '', ' '), (1767, 4338, 1767, '(502) 495-5800', '(502) 495-5801 Fax', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '', 'Go 71 West to Exit #9A (Gene Snyder Freeway) South to Rt. 265S Get off at Exit #25B (Rt. 64W). At next exit #17 which is Blankenbaker Road - go to top of exit and turn left (south). At next light turn right and stay on this road (Bluegrass Pky) thru industrial park. Go through one light and make left to job site (watch for small company sign). 1 story building on right. '), (1768, 4339, 1768, '(502) 495-5800', '(502) 495-5801 Fax', '', '', 'Wickliffe', 'KY', '', '7:00-5:00 Central', ' '), (1769, 4340, 1769, '(703) 968-4780', '(703) 968-4778 Fax', '4465 Brookfield Corp. Drive', '', 'Chantilly', 'VA', '22021', '', ' '), (1770, 4341, 1770, '484-257-0010', '', '100 Pine Street', '', 'Colwyn', 'PA', '19023', '', ' '), (1771, 4342, 1771, '(216) 341-8096', '', '9540 Midwest Ave.', '', 'Garfield Heights', 'OH', '', '8:00-4:30', 'West on 480 to Exit #21 for East 98th Street (Transportation Blvd) Make right (north) on Transportation. Cross Granger Street. Continue until you see a convient Food Mart and Industrial Park sign. Make left onto Midwest Ave. Go straight. Building is straight ahead at curve. Small sign on fron of building that says Lonco Engineers. '), (1772, 4343, 1772, '314-739-2727', '', '340 Painter Koser Road', '', 'Smithton', 'PA', '15479', '', 'Below Greensburg - near I-70 Exit 23 & Rt. 51 Levin Furniture Factory across from Clayco Construction Company. '), (1773, 4344, 1773, '(412) 863-0316', '', '', '', 'Irwin', 'PA', '', '', ' '), (1774, 4345, 1774, '(304) 743-3400', '(304) 743-3405 Fax', '', '', 'Near Huntingdon', 'WV', '', '', 'Will fax '), (1775, 4346, 1775, '(616) 381-1550', '(616) 381-1711 Fax', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '', ' '), (1776, 4347, 1776, '(412) 347-2227', '', 'Rosedale Ave.', '', 'Wheatland', 'PA', '', '', ' '), (1777, 4348, 1777, '814-865-4780', '814-863-5844 fax', 'Civil & Enviromental Engineering', '212 Sacket', 'University Park', 'PA', '16802', '', 'From I-80 take 26S toward center of town. Cross Rt. 322 overpass Just past Damon\'s Restaurant, turn right at light onto Porter Rd. Turn left on Hastings. Administration building '), (1778, 4349, 1778, '(304) 257-4664', '', 'Intersection of Rt. 42 & Rt. 28', '', 'Near Keyser', 'WV', '', '7:00-4:00', '40 miles south of Keyser at Intersection of Rt. 42 & Rt. 28 building on left. '), (1779, 4350, 1779, '', '', 'Office of Finance/Accounting Division', 'County Administration Building', 'Upper Marlboro', 'MD', '20772', '', ' '), (1780, 4351, 1780, '1-800-834-7686', '', '145 Clinton Street', '', 'Grove City', 'PA', '', '', ' '), (1781, 4352, 1781, '1-800-779-7107', '', '521 College Avenue', '', 'Grove City', 'PA', '', '', ' '), (1782, 4353, 1782, '330-536-2232', '', 'Route 224 Stateline Road', 'P.O. Box 388', 'Hillsville', 'PA', '16132', '7:00-3:30', 'Off Rt. 224 Next to BFI Landfill. Old Carbon Limestone plant. '), (1783, 4354, 1783, '1-800-253-5615', '', '1550 Hall Furnace Road', '', 'Sharon', 'PA', '', '', ' '), (1784, 4355, 1784, '(724) 794-4451', '(724) 794-6820 Fax', '715 New Castle Road', '', 'Slippery Rock', 'PA', '16057', '', '2 miles west of Slippery Rock on Rt. 108 SEND CERTS TO SLIPPERY ROCK ADDRESS Machine in block plant - watch out for bottom block platen. '), (1785, 4356, 1785, '(800) 889-9905 / (', '', '3401 New Castle Road', '', 'West Middlesex', 'PA', '16159', '', 'From I-80 Exit #1N. Take Swamp Road and turn left. Take 18 South. Go approx. 500\'. Site on left. '), (1786, 4357, 1786, '(216) 573-6350', '(216) 581-1698 Fax', '623 North Meridian Road', '', 'Youngstown', 'OH', '44509', '8:00 am - 5:00 pm', ' '), (1787, 4358, 1787, '(245) 372-1600', '', '12034 134th Court NE, Suite 102', 'PO Box 230', 'Redmond', 'WA', '98073-0230', '8:00-4:30', 'See map & directions attached. '), (1788, 4359, 1788, '301-533-0755', '', '1045 N. 4th St. JOB SITE', '', 'Oakland', 'MD', '21550', '', 'Take Rt. 68 to 219S. Approx. 23 miles to jobsite on left. Blue & white house trailer. '), (1789, 4360, 1789, '(814) 886-5559', '814-886-2842 Fax', '905 Pennsylvania Ave.', '', 'Cresson', 'PA', '', '8:00-4:00', 'From Altoona - Take Rt. 22W to Cresson Summit Exit. Turn right on olde Rt. 22 towards Cresson. Go to bottom of hill. Go under RR underpass then go about 100 yards and bear right at \"Y\" before college. Go under another RR underpass. Make 1st right onto Penn Ave. Site on right. '), (1790, 4361, 1790, '(242) 323-4966', '(242) 323-7656 Fax', '', '', 'Nassau, Bahamas', '', '', '', ' '), (1791, 4362, 1791, '(724) 656-9108', '', 'McDuff Corporation Building', '1 Rockwell Drive', 'New Castle', 'PA', '16102', '7:00-5:00', 'Rt. 422West - exit Rt. 168. Stop sign - turn right. Next stop sign - turn left. Junction 108/18 - turn Left after crossing bridge - turn Left into McDuff Building Go to guard gate and ask for Swank Sign '), (1792, 4363, 1792, '(304) 752-1017', '(304) 752-7324 Phone', 'Route 44S', '', 'Wilkinson', 'WV', '25653', 'MUST CALL PRIOR - NO ONE AT LAB', 'Entering Gilbert - go towards Williamson. Look for blue bridge. Go thru Hampden. At peak of mountain take Rt. 44 N at BP station. site on left. Gray house beside Super America '), (1793, 4364, 1793, '', '', 'Job Site', '', 'Erie ', 'PA', '', '', 'Machine last located on Rt. 8 South, Erie, PA 4/1/98 - Ed will call back & let us know if they have any jobsites and where they are. '), (1794, 4365, 1794, '724-847-2317/724-847', '', '800 Fifth Avenue', '', 'New Brighton', 'PA', '15066', '8:00-5:00', 'From 60S to 68 South (Beaver) and go to Rochester, PA to 65 North to New Brighton. In New Brighton, watch for YMCA on left side. Turn to the right onto 7th street. Go 2 blocks. Site at corner of 5th Ave. & 7th street. '), (1795, 4366, 1795, '440-349-2708', '', '30775 Bainbridge Road', '', 'Solon', 'OH', '44139', '', ' '), (1796, 4367, 1796, '(804) 947-6511 / 657', '', '4219 Campbell Ave.', '', 'Lynchburg', 'VA', '', '', ' '), (1797, 4368, 1797, '410-392-3200', '', '201 Airport Road', '', 'Elkton', 'MD', '21921', 'On any shift-1,2,3 *Must call during 1st', 'Site right by I-95. At Maryland & Delaware line, take Newark Exit. (Six (6) buildings at site) 2nd building on right.---- Appleton East. '), (1798, 4369, 1798, '(410) 531-4000', '(410) 531-4367Fax', '7379 Route 32', '', 'Columbia', 'MD', '21044', '', ' '), (1799, 4370, 1799, '(304) 293-3111 x364', '', 'College of Engineering', 'Mechanical Engineering Department', 'Morgantown', 'WV', '', '8:15-4:45', ' '), (1800, 4371, 1800, '(717) 944-1488', '(717) 944-9912 Fax', '325 Fulling Mill Road', '', 'Middletown', 'PA', '17057', '6:00-5:00', '(Near Harrisburg) Rt. 76E to Exit #19. Take Rt. 283E. Go 1/2 mile then get off at Airport Exit. Left to Rt. 441 at stop. Make 1st left onto 441N. Go 300 yards to light. Turn right on Fulling Mill Road. Site on left about 1/2 mile. '), (1801, 4372, 1801, '(304) 725-4025', '(304) 725-8525 Fax', '398 Koonce Road', '', 'Harpers Ferry', 'WV', '25425', '7:00 am - 3:00 pm', '18 miles from Martinsburg. Rt. 9E to Charlestown, WV (NOT CHARLESTON!) Get on Rt. 340N to Harpers Ferry. At 1/4 mile pass 1st Frontage Road (there are 2) go 2 1/2 miles (pass Spill Garden restaurant) and turn right onto Frontage Road. Site is visable from road. Go to back of plant. Lab is behind batch plant. '), (1802, 4373, 1802, '410-683-9202/410-461', '410-683-9297 FAX/443', 'E South Street', '', 'Frederick', 'MD', '', '', '70 East to South Street Exit, cross RR Tracks, stay to right of split rail fence, 100 yards, take right, building marked Lab Invoices sent to: MUST HAVE PO# Financial Services Center PO Box 4091, Postal Station \"A\" Toronto, ON M5W 5K4 CANADA'), (1803, 4374, 1803, '216-469-1106 Bill', '216-781-2820 Gary ', 'Cleveland/Hopkins Airport', '', 'Cleveland', 'OH', '', '', ' Rt. 237 to Cargo Road, Exit 1X, center on left, one stop, turn right go to Gate 30 (Once at Gate call Technician to get in) '), (1804, 4375, 1804, '336-526-6484', '253-928-2492 Fax ', '184 Gentry Road ', '', 'Elkins', 'NC', '28621', '', ' I-77 South, Exit 85, off ramp turn left onto CC Camp Road, right onto SR-1139 (Friendship Road), left onto SR-268, right onto SR-1141 (Gentry Road) Kelly Jones, C.P.M., Strand Technologies, Buyer, Elkin, NC/ Sutton, WV'), (1805, 4376, 1805, '', '', 'Jobsite', '', 'Millersville', 'PA', '', '', 'I-80 East to Exit 242, at bottom of ramp make left onto Rt. 339 North go approx. 1 mile. Make right onto Market Street (SR 2028) go approx. 2 miles, bear right at Y until you come to a refuse container lot. Trailer is in this lot. 3/04- BE SURE TO PUT SURGE PROTECTOR ON OUR DIGITAL'); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1806, 4377, 1806, '301-678-2023/443-564', '717-739-2849 Fax', '10100 Mapleville Road', '', 'Hagerstown', 'MD', '21740', '6:00am-4:00pm/6:30am-4:30pm Job ', ' From Warfordsburg take 70 East toward Frederick MD, At exit 35 go to bottom ramp make left, go 1 mile make left into Quarry, cros bridge 2nd building on right '), (1807, 4378, 1807, '(717) 294-6819/443-5', '(717) 294-6722 Fax', '424 Pigeon Cove Road', '', 'Warfordsburg', 'PA', '17267', '6:00am-4:00pm/6:30am-4:30pm Job ', 'From I-70 to Exit # 168 Warfordsburg. Go towards Warfordsburg. Make left on Pigeon Cove Road. Pass asphalt plant-cross bridge. Site on right in 1st building on left. '), (1808, 4379, 1808, '304-258-0425/443-564', '304-258-0426 Fax', '4000 Valley Road ', '', 'Berkeley Springs', 'WV', '25411', '6:00am-4:00pm/6:30am-4:30pm Job', 'Whomever is scheduled to go to Warfordsburg, PA will be taken to the Berkeley Springs site, it is 15 minutes away from this location '), (1809, 4380, 1809, '301-322-5190', '301-322-5197 Fax', '1500 Marblewood Avenue', '', 'Fairmount Heights', 'MD', '20743', '', 'Exit 17 Landover Road go west at Circut City turn left go to the stop sign at Sherrill Road. make Right. At blinking light in front of the Fire Department make first right onto Marblewood. '), (1810, 4381, 1810, '703-478-0055/703-216', '703-478-0137 Fax', '43760 Trade Center Place Suite 110', '', 'Sterling', 'VA', '20166', '', '66 Duelas Rt 28 North 10 miles to old Rd Rte 606 take left through Trade Center across from housing development next to last on left Latitude 39.006*N, Longitude 77.429*W, Elevation 300 Feet Dead Weight Correction Value 0.9993'), (1811, 4382, 1811, '610-366-3890 x 47106', '610-366-3895 Fax / x', '7130 Ambassador Drive ', '', 'Allentown', 'PA', '18106', '7:00 am - 5:00 pm ', ' I-476, Exit 56, right onto US-22, at US-22 Tilghman Street Exit, West on Old US-22 (Tilghman Street), right onto Mill Road, right onto Ambassador Drive '), (1812, 4383, 1812, '', '', 'Storage ', '', '', 'MN', '', '9:00 am - 5:00 pm ', ' SR-33 & US-209, Manor Drive Exit, bear right (North) onto ramp 0.1 miles, turn left (West) onto Manor Drive 0.3 miles, turn left, (South), onto Middle Easton Belmont Pike 0.1 miles, turn right (West) onto Keller Drive 0.3 miles, bear left (South), onto Bush Lane 0.4 miles, arrive 2443 Bush Lane '), (1813, 4384, 1813, '724-352-2200', '724-352-2290 Fax', '2900 South Noah Drive', '', 'Saxonburg', 'PA', '16056', '', ' I-80 West, Exit 29, merge onto SR 8 (William Flynn Highway) North '), (1814, 4385, 1814, '703-725-1494', '703-383-2936 Fax', 'Manassas, VA (Job)', '', 'Manassas', 'VA', '', '7:00 am - 6:00 pm', ' Office Address: 14685 Avion Parkway, Chantilly, VA 20151 '), (1815, 4386, 1815, '412-231-1283', '412-231-0889 Fax/812', '600 Reedsdale Street', '', 'Pittsburgh', 'PA', '15212', '8:00am-5:00pm/7:00am-5:00pm Job', ' 79 to 279, left before get in tunnel, stay left, North Shore Exit, end of ramp at light make left, Tony Dorsett Drive, make left into parking garage, sight is on right, 3 trailers, last one, no name on it North Shore Connector Project Site across from PNC Park in a northwestern direction, office trailer is on North side of parking garage just off of Reedsdale Street'), (1816, 4387, 1816, '(304) 263-6108/304-2', '(304) 263-0142 Fax ', 'Potomac Ready Mix', 'Kelly Island Road', 'Martinsburg', 'WV', '25401', 'Asphalt 7:00-3:30 Concrete 7:00-5:00', 'From I-81S Exit #12. Turn left onto Rt. 45E. Go straight thru 3 lights. Go approx. 1 1/2 miles. Rt. 9E turn right. At light turn right on Kelly Island Road (Brickyard is to far) About 1/2 mile on left. Machines are in 2 different buildings. '), (1817, 4388, 1817, '703-753-7832', '703-753-9648 Fax', '7201 Rail Line Court', 'Reference # 88', 'Gainesville', 'VA', '20155', '7:00 am - 3:00 pm', ' I-66 West to 29 north exit to Wellington Road (left) to Rail Line (left) '), (1818, 4389, 1818, '724-255-2775 ', '304-413-0617 Dean x ', 'Storage', '', 'Morgantown', 'WV', '', '8:00 a.m. - 5:00 p.m.', ' '), (1819, 4390, 1819, '(814) 472-7700 ext.', '(814) 472-4221 Fax', '725 West Triumph Street', '', 'Ebensburg', 'PA', '15931', '7:30 am - 4:30 pm', ' *** ISO Requested*** 422E to Ebensburg. At light turn left onto High Street. Go 2 1/2 blocks to BP station. Make left onto Marian Street. Go approx. 6 blocks to Highland. Make left onto Highland. Go 2-3 blocks - site on right. Lab in back of large white bldg. Cal 60, Weights, Magnetic Stand, Marshall Press Elevation 2140 Feet, Long. 78.725*W, Lat. 40.485*N Dead Weight Correction Value 0.9992'), (1820, 4391, 1820, '724-916-0300', '724-916-0315 FAX', 'Southpoint Business Park', '4 Grandview Circle', 'Canonsburg', 'PA', '15317', '8:00 am - 6:00 pm Lab', ' ***CONTINUED ON NEXT PAGE*** I-80/I-79 Exit, merge onto I-79 South, I-79 Exit 48, bear right onto Southpointe Blvd., right onto Technology Drive '), (1821, 4392, 1821, '724-966-9450 ', '724-966-9169 Fax/724', '169 Green Valley Road', '', 'Carmichaels', 'PA', '15320', '6:00am-5:00pm/7:00am-4:00pm Job', ' Waynesburg exit off 79, 21 East, left on Green Valley Road, 3 or 4 miles to flashing yellow light junction 43 to 88, to light make a right onto W. George Street, to blinking light junction, deli, make right '), (1822, 4393, 1822, '614-778-4305 Jack ce', '614-876-1899 Fax', '845 4th Avenue', '', 'Coraopolis', 'PA', '15108', '', '79S to Neville Island Exit. Left at stop light at end of ramp. 2 miles bear left and cross bridge. Right at end of bridge onto 4th Avenue. Go 1 mile or so, site is on left across from Grogans Beer Dist '), (1823, 4394, 1823, '703-396-6259', '703-396-6298 Fax', '9409 Innovations Drive', '', 'Manassas', 'VA', '20110', '8:00 am - 5:00 pm ', 'All Invoices must have an ECS project number of the name of the person ordering the services I-80 E to Rt. 220/I-99 to I-70 towards Hagerstown, take I-81 to I--66 E take Rt. 234 to Rt.28 towards Manassas From 495, take 66 West, go straight then take Exit 44 (234 South Bypass), go straight about 5 miles, turn left on University Blvd. then make a right on Innovation Drive'), (1824, 4395, 1824, '610-568-2881/610-644', '610-644-8682 Fax', '3178 Phoenixville Pike', '', 'Devault', 'PA', '19432', '7:00 am - 3:00 pm ', ' Rt. 202 to Great Valley Exit, take 29 North, go approx. 6-7 miles, make left on Phoenixville Pike, one left 1/4 mile to Pipe & Precast '), (1825, 4396, 1825, '412-372-4000/412-589', '412-372-4664 Fax ', '570 Beatty Road ', '', 'Monroeville', 'PA', '15146', '8:00 am - 5:00 pm ', ' I-76 (PA Turnpike) South, turn off ramp (US-22/I-376/Murraysville/ Pittsburgh/Mon) bear right (West) onto US-22 Bus (William Penn Hwy), turn right (North) onto SR-48 (Haymaker Road), turn right (North-East) onto Beatty Road. Lab in basement '), (1826, 4397, 1826, '410-358-7171 Ext. 30', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', 'Take 695----West side of Baltimore. Take Exit 18 RT. 26 --Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. Accounting Fax: 410-358-3682 '), (1827, 4398, 1827, '703-396-6259', '703-396-6298 Fax', '9409 Innovations Drive', '', 'Manassas', 'VA', '20110', '8:00 am - 5:00 pm ', ' I-80 E to Rt. 220/I-99 to I-70 towards Hagerstown, take I-81 to I--66 E take Rt. 234 to Rt.28 towards Manassas From 495, take 66 West, go straight then take Exit 44 (234 South Bypass), go straight about 5 miles, turn left on University Blvd. then make a right on Innovation Drive'), (1828, 4399, 1828, '(304) 295-1016', '(304) 295-9658 Fax', '153 Williams Highway', '', 'Parkersburg', 'WV', '26105', '8:00 am - 5:00 pm', 'Rt. 50W to Parkersburg, WV. Take Rt. 77N to Parkersburg Get off at Exit #179. Turn left onto 68S - Emerson Ave. Follow for 4 miles to first light and turn right onto Rosemar Road. Follow 3 miles to end to Rt. 14N. Turn right. Go 100 yards and site is on left. Grey metal building. Dupont past BP-Job Map attached. '), (1829, 4400, 1829, '304-859-8601 Bobby /', '(304) 565-3113 Fax', '153 John Street', '', 'Weston', 'WV', '26452', 'Call prior-not always manned-7:00-5:30', 'Going south on I-79, Exit #99. Loop around and turn left toward Weston. Go approx. 2 miles past Weston town sign - Chevron Station and Mini mart on left. Turn right on street just past Chevron Station by bridge. Then immediate right on to John Street. Customer on left in garage beside white house across from small greenhouse and a custom sign and graphics shop. Neighbor in Yellow House also has a key - Roy. Key in awning at front door.'), (1830, 4401, 1830, '(304) 592-5577 ', '(304) 592-5578 Fax', 'Rt. 73 N', '', 'Bridgeport', 'WV', '26330', '7:30 - 5:00 Office / 7:00 - 5:00 Job Site', 'OFF OF 79 SOUTH. SALTWELL EXIT 125. TURN RIGHT. THEN GO STRAIGHT ON ROUTE 73 NORTH, FOR APPROX. 1 MILE. SITE ON LEFT. '), (1831, 4402, 1831, '(304) 296-2562', '(304) 296-8739 Fax', '219 Hartman Run Road', 'PO Box 889', 'Morgantown', 'WV', '26505', '8:00 am - 5:00 pm', 'Take Exit #148 off I-79. Get onto I-68E to Cumberland, MD. Go to Exit #4, Sabraton. At end of ramp turn right on 7W to Sabraton. At 3rd light (on left is Ford dealership) turn right onto Hartman Run Rt. 857N. Go 1/2 mile on left up hill. Watch for tan building with blue sign. Elevation: 947 Feet, Lat: 39.629*N, Long: 79.956*W, Dead Weight Correction Value: 0.9993'), (1832, 4403, 1832, '304-528-5806(O)Randy', '304-528-5622 Fax', '801 Madison Avenue', '', 'Huntington', 'WV', '25704', '', 'Take I-64W. to 17th St. Exit.(Exit 6- Rt. 52N.) Take Madison Ave. off exit. Turn right on Madison. Thru 1st stop light on right. Turn right on 8th Ave., then right in alley behind building. Lab is in door on right in parking lot to the right. Send Invoice To: West Virginia Department of Highways, Attn: Melissa Mathis, 801 Madison Avenue, Huntington, WV 25704 '), (1833, 4404, 1833, '304-356-3852 Johnat', '304-558-3443 Fax', 'Materials Soil Testing and Control', '1334 Smith Street', 'Charleston', 'WV', '25301', '7:30 am - 4:00 pm ', 'On East side of Charleston, take I-64E to Leon Sullivan Exit. Hang right on ramp at fork to end of ramp. Turn right on Smith St. Go thru 2 stop signs. Building on End of street on Left. Knock on material Lab door on right. (5/12) Corner of Ruffner and Smith. 1/2 block from the office '), (1834, 4405, 1834, '(304) 768-9733 ', '(304) 768-9384 Fax', '2950 Charles Avenue', '', 'Dunbar', 'WV', '25064', '7:00 am - 5:00 pm ', 'I-79 to 64W thru Charleston to Roxalana Road Exit. Bear right . At 1st light turn right (west) onto Rt. 25. Go 2 miles. Turn left on King Street. Watch for Shoney Park, Charles Road Plant. Machine was moved over by main office in building to the left at bottom. '), (1835, 4406, 1835, '304-269-0472- Timoth', '304-269-0477 Fax', '937 US Highway South ', 'District 7, Materials Lab', 'Weston', 'WV', '26452', '7:30 - 4', 'Take 79South to Exit 96. Turn right, Go to Intersectionthere on the right when coming through the gate there on the left side of the building. '), (1836, 4407, 1836, '304-476-8045 Bruce\'s', 'No Fax', '436 Dominion Blvd', '', 'Mount Storm', 'WV', '26739', '', ' '), (1837, 4408, 1837, '859-293-5518', '859-299-2481 Fax', '2020 Liberty Road', '', 'Lexington ', 'KY', '40505', '8:00-5:30', ' Formerly Qore Property Sciences Formerly Atlanta Testing & Engineering'), (1838, 4409, 1838, '859-293-5518', '859-299-2481 Fax', '2020 Liberty Road', '', 'Lexington', 'KY', '40505', '8:00 am - 5:30 pm ', ' Formerly Qore Property Sciences Formerly Atlanta Testing & Engineering'), (1839, 4410, 1839, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm', '***continued*** **All machines need our big & small service labels** Rt. 52 W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (1840, 4411, 1840, '513-321-5816', '(513) 321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm', 'Rt. 52 W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W **All machines need our big & small service labels**'), (1841, 4412, 1841, '513-321-5816', '(513) 321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', '**All machines need our big & small service labels** Rt. 52W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (1842, 4413, 1842, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', 'Rt. 52W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (1843, 4414, 1843, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', '**All machines need big & small service labels** \"***continued*** Rt. 52W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (1844, 4415, 1844, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (1845, 4416, 1845, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52W Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave. take right 1 mile to Lunken Park Drive, across from Hanger 4, turn left, building on left Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W'), (1846, 4417, 1846, '606-219-5177 George\'', '606-451-8899 Fax', '39 Garner School Road', '', 'Somerset', 'KY', '42502', '7:30-4:00', 'Take 75 South to Mt. Vernon/Renfro Valley exit. Go right on 461 toward Somerset. Follow all the way through until you come to KY 80. Turn right on KY 80. Go west to 1st stop light (914 bypass) You will turn right here. Go around curve and up the hill. To light make left, 3rd light on 80 make left '), (1847, 4418, 1847, '(502) 448-9500/502-4', '(502) 448-3134 Fax', '3701 Kramers Lane', '', 'Louisville', 'KY', '40216', '8:00am - 5:00pm/6:30am-5:00pm Job', 'From 64 - take 264W to Exit #5B - Cane Run Road. At end of ramp turn left onto Cane Run South. Go to seconde light. Turn right onto Kramers Lane. Go 3/4 mile. Site on right - 1st gate. *Special pricing per Bill 2 Pipe Testers**'), (1848, 4419, 1848, '513-248-0090 ', '513-248-1872 Fax', '911 US Rt. 50', '', 'Milford', 'OH', '45150', '8:00am-4:00pm (O)/7:00am-4:00pm Job ', 'NEAR CINCINNATI.. Take Rt. 275 (17 mile marker). Go South or East on Rt.275 to 59 mile marker. Take Rt. 50 to traffic light. Turn left. Site on left hand side. This is a 2% machine '), (1849, 4420, 1849, '606-743-3485', '606-743-2025 Fax', '505 West Main Street', '', 'West Liberty', 'KY', '41472', '8:00 am - 5:00 pm ', ' Route 460 south of town on left-building with Wells across front '), (1850, 4421, 1850, '859-393-4556 Tom (Ce', '859-282-4012 Fax ', '1658 Production Drive ', '', 'Burlington', 'KY', '41005', '8:00 am - 4:00 pm ', ' I-71, Exit 181, merge SR-18 (Burlington Pike) (West), turn right onto SR-3168 (Limaburg Road), turn right onto Production Drive '), (1851, 4422, 1851, '859-586-8890', '859-586-8891 Fax', '1648 Petersburg Road', '', 'Hebron', 'KY', '41048', '7:30 am - 5:00 pm', ' I-75 to I-275 West, exit Rt. 212/ Rt. 20. Go to stop light, turn left on Rt. 20/Petersburg Road. Go approximately 3 miles through tunnel. Harper is on right after the tunnel. '), (1852, 4423, 1852, '', '', '100 Trumb o Pt. Bldg. 48', 'USCGC VALIANT-EO', 'Key West', 'FL', '33040', '', ' '), (1853, 4424, 1853, '', '', '7070 International Drive ', '', 'Louisville', 'KY', '40258', '', ' '), (1854, 4425, 1854, '', '', '17865 SE 82nd Drive ', '', 'Gladstone', 'OR', '97027', '', '**SEND UPS GROUND UNLESS OTHERWISE SPECIFIED **NEVER INSURE EQUIPMENT WHEN SHIPPING SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1855, 4426, 1855, '214-631-7006', '', '4040 Singleton Blvd. ', '', 'Dallas', 'TX', '75212', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 Original Certification In Box Fax copy of Certification & Tracking Number to Lou '), (1856, 4427, 1856, '', '', '100 Piscataqua Drive', '', 'Newington', 'NJ', '3801', '', 'UPS Account: Y70V26 Fed Ex Account: 2979-5538-1 Original Certification In Box Fax copy of Certification & Tracking Number to Lou Lous Packing List on outside of shipment '), (1857, 4428, 1857, '216-357-2335/419-704', '419-241-1808 Fax', '8100 Grand Avenue, Suite 100A', '', 'Cleveland', 'OH', '44104', '', 'From Pittsburgh Airport PA-60 N toward Moon/Beaver/Cargo/ Pennsylvania Turnpike West, merge PA-60 Toll N, merge I-76 W via exit 33 toward Ohio, merge I-80 W via exit 218 on the left toward Cleveland, merge I-480 W via exit 187 toward Cleveland, keep right take I-480 W via exit 26A-B toward Cleveland, Merge I-77 N via exit 20B, Take I-490W exit 161B toward Toledo, merge I-490 E toward East 55th Street, left onto East 55th Street, right onto Woodland ave/OH-87, right E 70th Street, left onto Grand Avenue'), (1858, 4429, 1858, '(717) 868-5856', '', 'Exit #42 Small Mountain Road', '', 'Dorance', 'PA', '', '6:00-5:00', 'See files '), (1859, 4430, 1859, '(724) 366-6941', '(303) 781-2006 Pager', 'Route 51 (Job Site)', '', 'Darlington ', 'PA', '', '', '1/4 Mile East of 4 Lane to 2 Lane. 4073 Sign SSCM Inc. '), (1860, 4431, 1860, '(412) 299-6890', '(412) 299-7734 Fax', '301 Thorn Street', '', 'Coraopolis', 'PA', '15108', '7:00 am - 5:00 pm', 'See MAP '), (1861, 4432, 1861, '614-424-3282', '', '505 King Avenue', '', 'Columbus', 'OH', '43201', '', ' '), (1862, 4433, 1862, '724-352-2200', '724-352-2290 Fax', '2900 South Noah Drive', '', 'Saxonburg', 'PA', '16056', '7:30a-5pm Office / 6am-6pm Lab', ' CALL FOR DIRECTIONS & WRITE DOWN!!! '), (1863, 4434, 1863, '(814) 269-2451 Jim M', '(814) 269-6831 Fax (', '211 Industrial Park', '', 'Johnstown', 'PA', '', '', ' '), (1864, 4435, 1864, '(814) 269-2783', '(814) 269-2549 (Greg', '1450 Scalp Avenue', '', 'Johnstown', 'PA', '15904', '', ' '), (1865, 4436, 1865, '(814) 269-2451', '', '', '1450 Scalp Avenue Suite 001', 'Johnstown', 'PA', '15904', '', ' '), (1866, 4437, 1866, '(814) 269-2451', '', 'SSM Gauges', '1450 Scalp Avenue Suite 001', 'Johnstown', 'PA', '15904', '', ' '), (1867, 4438, 1867, '(814) 269-2451', '', 'SSM Gauges', '1450 Scalp Avenue Suite 001', 'Johnstown', 'PA', '15904', '', ' '), (1868, 4439, 1868, '(814) 269-2451', '', 'SSM Gauges', '1450 Scalp Avenue Suite 001', 'Johnstown', 'PA', '15904', '', ' '), (1869, 4440, 1869, '(814) 269-2642', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '', ' '), (1870, 4441, 1870, '(814) 269-2549 (Greg', '(814) 269-6480 Fax -', '211 Industrial Park', '', 'Johnstown', 'PA', '', '', ' '), (1871, 4442, 1871, '(814) 269-2549 (Greg', '(814) 269-6480 Fax -', '211 Industrial Park', '', 'Johnstown', 'PA', '', '', ' '), (1872, 4443, 1872, '(814) 269-2549 (Greg', '(814) 269-6480 Fax -', '211 Industrial Park', '', 'Johnstown', 'PA', '', '', ' '), (1873, 4444, 1873, '(717) 828-1510', '', '1080 Harlem Road', '', 'Cheektowaga', 'NY', '14227', '', ' '), (1874, 4445, 1874, '(330) 756-3210 Ext:', '(330) 756-3220 ', '9318 Erie Street SW', '', 'Navarre', 'OH', '44662', '', '77 South to 30 West to 215. About 3 Miles out of Navarre '), (1875, 4446, 1875, '304-486-9185', '', '4659 Big Sandy River Road', '', 'Prichard', 'WV', '25555', '', 'Job site is 9 miles South of Kenova on Rt. 52 South. Take 1st Prichard Exit. Turn right after getting off ramp. '), (1876, 4447, 1876, '703-471-8400', '', '800 3rd ST NE', '', 'Washington', 'DC', '20002', '', ' '), (1877, 4448, 1877, '304-842-1970', '304-842-1972 Fax', '1200 W. Benedum Ind. Dr.', '', 'Bridgeport', 'WV', '26330', '', 'Fron Pittsburgh, take 79South to Exit 124, get off exit & turn left. Go East on WVA 279 to the end (approx. 3.8 miles). Turn right on US 50West & go approx. 1-1 1/2 miles to top of the hill. Turn right at top of hill (1st road---UNMARKED). Keep bearing to the left & go down the hill. You will see the Pratt & Whitney Plant. Continue down the hill & on left side you will see a single story yellow bldg.. '), (1878, 4449, 1878, '(313) 522-4665', '(313) 522-2807 Fax', '1866 Woodslee Street', '', 'Troy', 'MI', '48083', '7:00-6:00', ' '), (1879, 4450, 1879, '770-987-5190 x 227', '', '', '', 'Decatur', 'GA', '', '', ' '), (1880, 4451, 1880, '724-323-5321 Dave Ce', '724-323-5321 Dave ce', 'Federal Street', '', 'Pittsburgh', 'PA', '', '', 'Located at the old Sunoco Station on Federal Street, close to the Allegheny Center Mall '), (1881, 4452, 1881, '(616) 876-1772', '', '', '', 'Cadillac', 'MI', '', '', '131 North thru Cadillac. Last light out of town just out of town just past Meyer across street Location on right. Contractor: Irving Zeringe Company Greg Dyksterhouse '), (1882, 4453, 1882, '(616) 534-9645 x63', '(616) 534-0118 Fax', '2701 Chicago Dr. (Bridge Dept)', '', 'Grand Rapids', 'MI', '49509', '8:00-5:00 Office 5:00-5:00 Yard', 'Take 131S to Hall St. (Exit #83A) Go straight (uphill) at light. West (left) onto Hall St. at hill. Go to traffic light and make left onto Grandville - which turn into Chicago Drive (Bus. 196) Go several miles. Pass under overpass. Site on right. Go to building #4. 5/99 MOULDS DID THEM AGAIN '), (1883, 4454, 1883, '', '', '', '', 'Pittsburgh', 'PA', '', '', ' '), (1884, 4455, 1884, '', '', 'JOB SITE', 'Pittsburgh Airport', 'Pittsburgh', 'PA', '', '', 'Take I-81 to Exit 72B. ( Linglestown ). Cross bridge & swing in circle. Plant will be on the right ( in the middle of the ramp ) Ed Wetzel - Project Supervisor / Jack Bernie (head guy) Pager number for Gary 1-800-759-7243, PIN 5719713 (Larry Kincade - alternate in Main Office in OH)'), (1885, 4456, 1885, '(304) 472-8890 (Buck', '', 'Saltwell Road', '', 'Clarksburg', 'WV', '', '', 'I-79 to Saltwell Road Exit. Up ramp, make right to Exxon Station. Make left on Saltwell Road. 1 mile out on left. '), (1886, 4457, 1886, '', '', '', '', 'Middletown', 'OH', '', '', 'CALL FOR DIRECTIONS !! West Commonwealth to Houston Road '), (1887, 4458, 1887, '859-743-5470 Rick\'s ', '513-383-3518 John Ce', 'WRP Project', '3352.4.2024', 'Mason', 'OH', '', '7:15am - 4:30pm', ' SEE MAP ATTACHED '), (1888, 4459, 1888, '(614) 491-7643', '(614) 491-1877 Fax', '4033 Alum Creek Drive', '', 'Obetz', 'OH', '43207', '7:00-4:00', ' '), (1889, 4460, 1889, '724-366-6852 Dick Ha', '', '(At Klondike Tire Co.)', 'Job Site', 'Masontown', 'PA', '', '7:00 am - 5:00 pm Mon. thru Thurs.', 'Take I-79 South to below Pittsburgh, then take Rt. 21 East aprrox. 15 miles (will cross bridge over Monongahela River) go approx. another 2 miles. Machine located at Klondike Tire Co. (beside GM dealer.) '), (1890, 4461, 1890, '(937) 426-7795', '', '780 N. Valley Road', '', 'Xenia', 'OH', '45385', '7:30-5:30', ' '), (1891, 4462, 1891, '(412) 495-4285', '', '4301 Dutch Ridge Road', '', 'Beaver', 'PA', '15009', '', ' '), (1892, 4463, 1892, '(412) 295-0093', '(412) 295-0083 Fax', 'Route 28', '', 'Butler', 'PA', '', '7:00-3:30', 'See files '), (1893, 4464, 1893, '', '', '', '', 'Farmington Hills', 'MI', '', '', ' '), (1894, 4465, 1894, '', '', '', '', 'Stow', 'OH', '', '', ' '), (1895, 4466, 1895, '(313) 304-3150 Ernes', '(313) 965-0036 John ', 'I-75 and John R', '', 'Detroit', 'MI', '', '', 'Take I-94 to Southbound/Southfield Freeway. Turn Left- go north to Rotondo Drive Exit (East). Go Approx. 1/2 mile east of freeway on Northside. Watch for orange signs (Ellis Dunn Construction). Turn just beyond bridge left into parking lot. Entrance before TPC Gold. Follow arrows to Dunn\'s trailers. Job site trailer is located there. Formally Neyer, Tiseo & Hindo '), (1896, 4467, 1896, '(330) 666-5432', '(330) 666-1130 Fax', '1038 Ghent Road', '', 'Akron', 'OH', '44333', '', 'I-76 West to 80 West. 77 South about 7 miles to Ghent Road Exit. Turn Left. 2nd building on Left. '), (1897, 4468, 1897, '(330) 478-0081', '(330) 478-3267 Fax', '4616 Novarre Road SW', '', 'Canton', 'OH', '44706', '', ' '), (1898, 4469, 1898, '330-793-7374', '330-533-5775 Fax', '3424 Oregon Avenue', '', 'Youngstown', 'OH', '44509', '', ' Saltsprings Road off I-80, go south, 680 Meridian Road Exit, go south, Oregon Avenue '), (1899, 4470, 1899, '(304) 863-0363', '', 'Corner of Rt. 68S and County Rd. 17', '', 'Belleville', 'WV', '', '8:00-?', 'Take Rt. 50W to Parkersburg - go under Rt. 77 Go through 7 or 8 Red lights. Pass Market St. and go 2 more blocks, then make left at \"T\" onto Rt. 68S towards Ravenswood. Go approx. 16 miles. Site on right at Belleville Hydroelectric. (can see huge dam/locks) Turn right, cross RR tracks. Take 2nd left (dirt road) Go 100 yds. turn right at \"T\". Go to 2nd double-wide trailer. '), (1900, 4471, 1900, '(412) 231-8600 offic', '412-657-9083 cell', 'Route 50', 'Blennerssett Bridge', 'Parkersburg', 'WV', '', '', ' US 892 south of town past Chemical Plant '), (1901, 4472, 1901, '740-254-4626', '740-254-9108', '7574 US Route 36 SE', 'PO Box 176', 'Gnadenhutten', 'OH', '44629', '7:30-5:30', 'Go South past Canton on 77S. Take exit #65. Go up Route 36 East 9.2 miles. Site on left. '), (1902, 4473, 1902, '(937) 299-1213', '(937) 299-0120 Fax', '3434 Encrete Lane', '', 'Dayton', 'OH', '45439', '', 'I-75 South to Springboro Road - Exit #50B left to 3rd light. Turn left on Dorothy Lane. Up hill to first light. '), (1903, 4474, 1903, '724-640-7047', '(724) 696-4952 Fax', 'Job Site', '', 'Aliquippa', 'PA', '', '7:00 am - 5:00 pm', ' 60 North to Aliquippa, Center Street Exit, job box at end of ramp '), (1904, 4475, 1904, '304-472-7140/304-677', '304-472-6239 Fax/304', 'Storage ', '', 'Columbus', 'OH', '', '', ' From Elkins, WV take Rt. 219 to Rt. 93, go 14 miles, across Mt. Storm Lake, 3 miles take a left, sign says Bismarck Road, there is a parking lot just before road, they are in the garage there Interested in machine for cubes and beams. Used or new. Formerly R.D. Zande Associates, Inc. '), (1905, 4476, 1905, '513-321-5816', '513-321-0294 Fax', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W '), (1906, 4477, 1906, '606-436-8931/606-438', '606-436-0802 Fax / 6', 'East Kentucky Plant', '610 Trus Joist Lane', 'Chavies', 'KY', '41727', '', '23 south, 15 north from Hazard, 6 miles on left Once you get into Jackson you should be about 25 mi from plant. Big sign for Coal Fields Industrial Park on right. Turn there and it will be the first plant you come to. Go to the scalehouse to have them call John on radio Ch 2. Need hard hat, safety glasses, gloves, ear plugs to enter plant'), (1907, 4478, 1907, '201-386-8110 x 1126', '201-386-8155 Fax ', '426 Barell Avenue', '', 'Carlstadt', 'NJ', '7072', '', ' 9/07 Rebulit machine, cube head, & top section of sphere, numerous parts put on machine, Calibrated by Ben James (Accu-Cal, Inc.), out of our territory shipped out 9/14/2007'), (1908, 4479, 1908, '(606) 673-4413', '(606) 673-4415 Fax', 'US Route 23, South of Louisa', '', 'Louisa', 'KY', '', '7:00am - 5:00pm', 'US Route 23 - 5 miles south of Louis (traffic light) Tan & Brown metal building on left. Next to Hylton Taxidermy. (30 Miles South of Ashland) '), (1909, 4480, 1909, '606-864-7384', '606-878-9225 Fax', '1355 Keavy Road', '', 'London', 'KY', '40744', '8:00am - 6:00pm', 'North of I-75; Take I-75 South and take Exit 38. Turn right onto 1006. Go straight until light that junctions with 363. Turn right onto 363. Travel along 363 until you see an excavation site on the left with gravel entry way. Next left is the office. '), (1910, 4481, 1910, '606-784-9519', '606-780-1230 Fax', '1466 Flemingsburg Road ', '', 'Morehead', 'KY', '40351', '7:00 am - 4:00 pm', ' From Ashland, KY, take Rt. I-64 West to Morehead, KY ramp off to traffic light, Rt. 32 turn left go under I-64 proceed 1/8 of a mile turn left Bran Big 4 Lumber Company and strip mall, pickett sign on highway, concrete plant up the hollow on the left '), (1911, 4482, 1911, '(330) 336-3109', '(330) 336-2882 Fax', '6875 Boneta Road', '', 'Medina', 'OH', '44256', 'Call ahead !!', 'Rt. 76 West to Wadworth Exit (#9) to Rt. 94 N to Fixler Rd. & go West (turn left) Go 2 streets Beechroad / Bonita turn right (north) Field Duplex Gray Colonial on right hand side. x218 18E 94S Elevation: 1092 Feet, Lat: 41.138*N, Long: 81.864*W Dead Weight Correction Value: 0.9993 '), (1912, 4483, 1912, '330-723-3618 ', '330-723-7019 Fax', '850 West Smith Road; Building A', '', 'Medina', 'OH', '44256', '8:00 am - 5:00 pm', 'From 77 to Fairlon, take Rt. 18 into Medina. Hospital on left. At next traffic light, turn left at church. Go to stop sign and make a right. Go about 2 miles. Site on left after 2nd set of RR tracks. SECURITY CHECK NECESSARY! MUST CHECK IN AT FRONT OFFICE PRIOR TO CALIBRATION FOR EACH PLANT Elevation: 1092 Feet, Lat: 41.138*N, Long: 81.864*W Dead Weight Correction Value: 0.9993'), (1913, 4484, 1913, '330-725-0205 Ext.227', '330-725-5716 FAX', '850 West Smith Road; Building B', '', 'Medina', 'OH', '44256', '', 'From 77 to Fairlon, take Rt. 18 into Medina. Hospital on left. At next traffic light, turn left at church. Go to stop sign and make a right. Go about 2 miles. Site on left after 2nd set of RR tracks. SECURITY CHECK NECESSARY! MUST CHECK IN AT FRONT OFFICE PRIOR TO CALIBRATION FOR EACH PLANT Elevation: 1092 Feet, Lat: 41.138*N, Long: 81.864*W Dead Weight Correction Value: 0.9993'), (1914, 4485, 1914, '(724) 746-4441', '(724) 745-4261 Fax', '(Formerly J & L Testing)', '938 S Central Ave.', 'Cannonsburg', 'PA', '15317', '6:30-? Can be flexible - call', 'I-79 S to Exit #9 Houston. Turn right onto Rt. 519. Go 1 mile to stop sign. (You will pass Cannonburg Hosp on Rt. 519) Turn left at stop sign. 2nd building on left. Sign says J & L Testing. '), (1915, 4486, 1915, '919-369-1469 Trevor ', '', 'Storage ', '', 'Raleigh', 'NC', '', '7:30 am - 5:00 pm', ' In Maryland, Exit 41 B off of I-95, right on 108, right on Lark Brown, right on marie Curie Drive, trailer , sign on door '), (1916, 4487, 1916, '812-539-4300', '812-539-4301 Fax', 'Connoly Park', '252 Charles A Liddle Drive, Suite 1', 'Lawrenceburg', 'IN', '47025', '8:00 am - 5:00 pm ', ' 275 South to Lawrenceburg exit left on to US 50, shell gas go light Kroger strip mall turn right on to 48 go straight on Ind. Dr. go to right Charles A Liddle Motor Cycle Shop Password 218355'), (1917, 4488, 1917, '412-670-7939', '(412) 344-8913 Fax', 'Storage ', '', 'Pittsburgh', 'PA', '', '7:00 am - 3:30 pm ', 'Call for Directions. Site is at Pgh airport need directions from there Bus 60 to Bears School Road, take left at Maintenance facility '), (1918, 4489, 1918, '304-598-0456/724-255', '859-748-4601 Fax/812', 'In Storage ', '', 'Portsmouth', 'NH', '', '8:00am-5:00pm/7:00am-3:00pm Job ', ' '), (1919, 4490, 1919, '(304) 296-2562', '(304) 296-8739 Fax', '219 Hartman Run Road', 'PO Box 889', 'Morgantown', 'WV', '26505', '8:00 am - 5:00 pm', 'Take Exit #148 off I-79. Get onto I-68E to Cumberland, MD. Go to Exit #4, Sabraton. At end of ramp turn right on 7W to Sabraton. At 3rd light (on left is Ford dealership) turn right onto Hartman Run Rt. 857N. Go 1/2 mile on left up hill. Watch for tan building with blue sign. Elevation: 947 Feet, Lat: 39.629*N, Long: 79.956*W, Dead Weight Correction Value: 0.9993'), (1920, 4491, 1920, '859-509-9266 Brian', '', 'Storage ', '', 'Lexington ', 'KY', '', '', ' Right off I-75 '), (1921, 4492, 1921, '(937) 878-8666', '(937) 878-9293 Fax', '7900 New Carlisle Pike', 'PO Box 24305', 'Dayton', 'OH', '45424', '8:00-5:00 Office 8:00-4:00 Lab', '(From Columbus, OH) 70 West to Exit #41 (SR 235/4), South on 235/4 (Across 70). GET IN RIGHT LANE - to New Carlisle Pike (1st Road to Right) Right on New Carlisle Pike - straight at 3 way stop - plant will be on your right. Call (937) 878-8666 if any problems. Formerly North Star Concrete Wants to be on the same schedule as Columbus job site.'), (1922, 4493, 1922, '(513) 398-7300', '(513) 398-1997 Fax', '7300 Industrial Row Drive', '', 'Mason', 'OH', '45040', '8:00 am - 3:30 pm ', '75N to Exit #22. Go right (east) 3 miles Right on 42. At second light make left onto Western Row. Take next right onto Industrial Road. Tax ID # 58-2652780 Formerly WR Bonsal'), (1923, 4494, 1923, '724-640-7108', '724-696-4952 Fax', 'SR 51 (near Rostraver Airport)', '', 'Rostraver (Belle Vernon)', 'PA', '', '7 AM to 5 PM', 'State Route 51 (Near Rostraver Airport) Rostraver (Belle Vernon) 3/01 Replaced CS-0405 (platen, nut, stud & washer) on Soiltest CT-755B 3/02 Replaced work hand (old Thimuline hand on machine), cleaned lubed & set machine speed.'), (1924, 4495, 1924, '410-358-7171 Ext. 30', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', '***continued*** Take 695----West side of Baltimore. Take Exit 18 RT. 26 East, Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. Accounting Fax: 410-358-3682 '), (1925, 4496, 1925, '717-652-8620', '717-651-0725 Fax ', '3608 N. Progress Avenue', '', 'Harrisburg', 'PA', '17110', '', ' I-81 East, at Exit 69, turn off ramp, turn left (North) onto North Progress Avenue LT 700 has block platen - need help to remove! '), (1926, 4497, 1926, '(787) 788-5400 x224', '787-788-5427 FAX', 'Intersection PR 5 & PR 22 Catano', 'PO Box 366259', 'San Juan', 'PR', '00936-6259', '', 'Billing Address: PO Box 366259 San Juan PR 00936-6259 '), (1927, 4498, 1927, '(787) 641-3840', '', 'PO Box 29530', '', 'San Juan', 'PR', '009290-0530', '', ' '), (1928, 4499, 1928, '', '', 'Int Carr # 2 with Ave Hostos', '', 'Ponce', 'PR', '', '', ' '), (1929, 4500, 1929, '787-648-4445', '787-744-6657', 'Carr #1 KM 80.2 Secter', '', 'Ca Barra', 'PR', '728', '7:00 am-5:00 pm', ' '), (1930, 4501, 1930, '(787) 786-2885 Ext.', '(787) 288-4740 Fax', 'Departamento de Ingenierfa Edif. 400', 'Oficina Inge 1', 'Bayamon', 'PR', '959', '8:00am-4:30pm', ' '), (1931, 4502, 1931, '787-891-0992', '787-891-0992 FAX', 'Road PR #2 Km 119.9', '', 'Aquadilla', 'PR', '', '8:00 am - 5:00 pm', 'Billing Address: PO Box 363116 San Juan, PR 00936-3116 787-761-2570 787-748-6970 Fax '), (1932, 4503, 1932, '787-272-2201', '787-790-8066 Fax', 'CARR #20, KM 6.3, Sector Mariquita', 'Barriolos Frailes, Ser. Piedras Buancas ', 'Guaynabo', 'PR', '', '7:00 am - 4:00 pm', ' Billing Address: PO Box 923, Guaynabo, PR 00910-0923 787-272-2201/787-790-8066 Fax '), (1933, 4504, 1933, '787-781-6340 / 787-3', '787-706-0183 Fax', 'Carr #21 Reparto Landrau #1413', '', 'Rio Piedras', 'PR', '927', '8:00am - 5:00pm; closed Noon-1pm', 'Billing Address: PO Box 270328 San Juan, PR 00927-0328 787-781-6340/787-706-0183 Fax '), (1934, 4505, 1934, '787-282-7886', '787-282-7553 FAX', 'Calle Lepanto #3', 'Urb. Reparto Alamein R.P.', 'Rio Piedras', 'PR', '926', '7:30 am - 5:00 pm', ' Billing Address: PO Box 525, Eldeterial Mail Station, San Juan, PR 00926 Has a 15 minute duty-cycle motor! Also has a hydraulic fitting which is too short, allowing hose to rub against chip shroud.'), (1935, 4506, 1935, '(809) 761-2570', '(787) 748-6970 Fax', 'PR-850 KM 0.2, Las Cuevas Ward', 'PO Box 363116', 'Trujillo Alto', 'PR', '976', '7:00 am - 5:00 pm', 'Billing Address: PO Box 363116 San Juan, PR 00936-3116 787-761-2570 787-748-6970 Fax '), (1936, 4507, 1936, '787-752-6470', '', 'Pargue Indl Julio N Matas #17', '', 'Carolina', 'PR', '987', '7:00 am - 4:00 pm', ' Compactor Pasword 54321 '), (1937, 4508, 1937, '787-753-0146, 0147', '787-753-8387 Fax', 'Chile St #258', '', 'San Juan', 'PR', '00917-2103', '7:00am - 4:00pm, closed Noon-1pm', ' '), (1938, 4509, 1938, '787-887-4940', '787-888-8391 Fax', 'Carr 958 KM 1.9 BO CienagaBaja ', '', 'Rio Grande', 'PR', '', '7:00am-3:30pm', ' '), (1939, 4510, 1939, '787-793-2500', '787-781-7372', '1213 Americo Mirando', '', 'San Juan', 'PR', '921', '', ' Billing Address: PO Box 362291, San Juan, PR 00936 '), (1940, 4511, 1940, '787-771-7138', '787-771-7138 Fax', 'Benigno Reyes ', 'H 321 - Urb. Roosevelt', 'San Juan', 'PR', '918', '8:00 pm - 5:00 pm ', ' '), (1941, 4512, 1941, '(205) 879-7899', '', '', '', 'Lexington', 'KY', '', '', ' '), (1942, 4513, 1942, '(242) 363-4760', '(242) 363-4761 Fax', '', '', 'Bahamas', 'Bahamas', '', '', ' '), (1943, 4514, 1943, '(610) 447-8618', '', '', '', 'Chester', 'PA', '', '', ' '), (1944, 4515, 1944, '(919) 549-1813', '(919) 547-6025 Fax', '12 Laboratory Drive', '', 'Reasearch Triangle Park', 'NC', '27709', '', ' '), (1945, 4516, 1945, '304-558-3043', '304-342-4711 Fax', 'District 7, Materials Lab', 'Rt. 19S', 'Weston', 'WV', '', '', ' '), (1946, 4517, 1946, '410-441-9851', '443-674-8782 Fax', '800 Red Toad Road ', '', 'North East', 'MD', '21901', '8:00 am - 5:00 pm ', ' From Baltimore, MD Interstate 95 to Exit 100 (Rte 272) South to Rte 40 West, 1 mile, at red light make a right onto Red Toad Road, 1 1/3 mile (go over RR Bridge) immediate next right. Northeast Business Center, go down long lane past red brick building, go all the way around so plant is on your left, huge truck door at the end of building '), (1947, 4518, 1947, '513-489-1460', '513-489-1470 Fax', '7841 Palace Drive ', '', 'Cincinnati', 'OH', '45249', '8:00 am - 5:00 pm ', ' I-71 West, I-71, Exit 19, left (SW) onto Escort Drive, right (W) onto Fields Ertel Road, left (S) onto School Road, left (S) onto Solzman Road, right onto E. Kemper Road, left (S) onto Goldcoast Drive, right (W) onto Palace Drive '), (1948, 4519, 1948, '304-752-3600(O)304-8', ' ', 'Rita Rd', '', 'Lyburn', 'WV', '25632', '7-5 Mon.-Thurs 7-3:30 Fri.', ' Man WV Logan detour Rt. 10 Walker CaT Back Trailer '), (1949, 4520, 1949, '412-476-2000 x 1309 ', '412-476-2020 Fax', '385 Waterfront Drive E', '', 'Homestead', 'PA', '15120', '8:00 am - 5:00 pm ', ' I-376, Exit 5 (Squirrel Hill/Homestead/Greenfield), straight onto Beechwood Blvd., bear straight onto Browns Hill Road (Blue Beltway), continue SE on Blue Beltway (Hi Level Bridge), turn left, NE, onto SR-837, turn left onto Amity Street, go 3 blocks to \"T\" turn, right onto E. Waterfront Drive, site on left '), (1950, 4521, 1950, '859-509-4007 Darrin', '888-792-3121 Fax ', '218 South Mulberry Street', '', 'Elizabethtown', 'KY', '42701', '', ' I-71 (SW), Exit 5, merge onto I-264 (SE), at I-264, Exit 12, merge onto I-65 (SE), at I-65, Exit 94, bear right onto US-62 (SR-62), to South Mulberry Street, in a building with a green roof and yellow sides, across the road from Elizabethtown Laundry Service Dean 859-559-1399'), (1951, 4522, 1951, '269-673-4563', '269-673-4573 Fax Lou', 'Amphibious & Expeditionary Department', 'Port Hueneme Naval Sta. 1100 23rd Ave', 'Port Hueneme', 'CA', '94043-4370', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment'), (1952, 4523, 1952, '800-452-9116x236', '', '1807 FM 2352', 'RMA 6088', 'Sumner', 'TX', '75486', '', 'Put original Certification in box before shipping. Ship UPS Ground on Acct.# Y70V26, no insure , use their packing slip, fax copy of certification & tracking number to Lou. '), (1953, 4524, 1953, '', '', '600 Oakwood Road', '', 'Watertown', 'SD', '57201', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (1954, 4525, 1954, '256-876-9757', 'CC71026-1323IO4', 'Transportation Officer', 'Attn: AMSAM-TMD-SS Building 5435', 'Redstone Arsenal', 'AL', '35898-5000', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment '), (1955, 4526, 1955, '216-509-2406', 'PO RCS-ATLANTA TBM', '9715 Clington Road', '', 'Brooklyn', 'OH', '44144', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS FedEx Account- #2979-5538-1 UPS Account - #Y70V26 Include Certs with shipment '), (1956, 4527, 1956, '724-316-6023 Kasey', '724-443-8733 Fax', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', 'Verify Gauges '), (1957, 4528, 1957, '724-316-6023 Kasey', '724-443-8733 Fax', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', ' Verify Gauges '), (1958, 4529, 1958, '(724) 443-1533', '724-443-8733 Fax', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', 'From Uniontown take Rt. 119 South towards Point Marion. Go across Cheet River. Bridge job. (only thing happening in Point Marion) '), (1959, 4530, 1959, '(724) 443-1533', '724-443-8733 Fax', '1000 John Roebling Way', '', 'Saxonburg', 'PA', '16056', '', ' '), (1960, 4531, 1960, '614-276-8123', '614-276-6377', '2860 Fisher Road', '', 'Columbus', 'OH', '43204', '', ' '), (1961, 4532, 1961, '907-696-0722', '907-694-0846 Fax', '20321 Raven Drive ', '', 'Eagle River', 'AK', '99577', '', ' '), (1962, 4533, 1962, '(330) 273-6305 Phone', '', '', '', 'Hickley', 'OH', '', '', ' '), (1963, 4534, 1963, '(610) 917-1167', '(610) 917-8973 Fax', '1805 Berks Rd.', '', 'Worchester', 'PA', '19440', '', 'From I-76 take Hwy 29 North. Construction field trailer located in parking lot of the Mansion House Restaurant '), (1964, 4535, 1964, '888-442-7077', '252-799-0208 Fax', '1522 Twin Bridges Road', '', 'Everett', 'NC', '27825', '', ' Take I-95 South to Rocky Mt., NC, take Rt. 64 East (approximately 40 minutes ) tp Exit 507 (Everetts & 64 Alt.) Turn right at end of exit. Go under the overpass and take the first left. Sign says Industrial Park. We are the only business on th right. '), (1965, 4536, 1965, '717-759-3540', '', 'River Road (US Rt. 11 North)', '', 'Berwick', 'PA', '18603', '7:00-3:00', 'From I-80 East to Exit #38. At end of ramp turn right to 93 N and follow to Rt. 11 North. Go pass the Toyota Dealership and turn right onto River Road. Their building is on the right. '), (1966, 4537, 1966, '304-926-8464', '304-926-8460 Fax', '', '', 'Charleston', 'WV', '', '7:30 - 5:00 *call to verify someone is there', 'Greenbrier St. Exit, go to airport, look for signs, 1st intersection go right to Air Army Guard Unit(sign), at next trafic light turn left go to Air Guard Unit. Go to guard shack and ask for concrete job. Ask to go to hanger at South Gate at the Fire Station. They will escort you. '), (1967, 4538, 1967, '231-591-2626', '', 'CTC Building Room 117', '915 Campus Drive Swan 312', 'Big Rapids', 'MI', '49307', '', '131 N. to Exit 139 (Perry\'s Street). Go East to \"T\". Turn Left. Go 2 blocks, Turn Right at Subway (Chestnut Street) Go East 2 Streets to \"T\". Go Right to back of building to white overhead door in back. '), (1968, 4539, 1968, '814-437-3726', '', '600 Atlantic Ave.', '', 'Franklin', 'PA', '16323', '8:00 To 4:00 PM', ' '), (1969, 4540, 1969, '847-426-7495 ', '', '230 Sawmill Run Blvd.', '(Liberty Tubes)', 'Pittsburgh', 'PA', '', '7:00 AM -3:30 PM', 'I-79 South to I-279S. On I-579 make a left at intersection at end of tubes. Take Rt. 51 South (Sawmill Run Blvd) Will be in construction site. 200 yds on right after intersection, 2 trailers. '), (1970, 4541, 1970, '(906) 875-6795', '(906) 875-6264 Fax', 'Carpenter Road', '', 'Crystal Falls', 'MI', '49920', '', 'Off US 2 in Crystal Falls, the corner of 141 & US 2 MI DOT, main location then proceed to job site. '), (1971, 4542, 1971, '304-379-8188 or 7555', '304-379-3376 Fax', 'Route 3, Box 69N', '(Near Hazelton, WV)', 'Bruceton', 'WV', '26525', '7:00 - 3:30', 'Take Rt. 68 East, go 6 miles past Bruceton Exit to Hazelton Exit. Cross overpass, take 1st road to right, past store on right. Go 1 1/2 miles, there will be a sign on left. (Located near Hazelton, WV.) '), (1972, 4543, 1972, '(419) 843-9118', '(419) 841-7055 Fax', '7880 West Central Ave.', '', 'Toledo', 'OH', '43617', '7:00 am to 3:00 pm (later if needed)', '75N, 475 Exit 13, Head west approx. 1/2 mile Right onto Timberstone Square on left Mile Marker 58 off Turnpike (Maumee) South, R at Stop Light Dossel Drive, Head North on 475-23 '), (1973, 4544, 1973, '(330) 454-1113 (CMT ', '', '2905 Columbus Road N.E.', '', 'Canton', 'OH', '44706', '6:30-3:30', 'I-77 South to Rt. 62 East to Regent. Left (North) on Regent. Right (East) on Columbus to ready mix plant. Stop in office (down hill to the left) '), (1974, 4545, 1974, '(517) 546-1478', '', '4841 Golfclub', '', 'Howell', 'MI', '48843', '', 'From Detroit-Take 696 to 96 past Novi, MI. Past Wixom & US Route 23 to Grand River Exit (right turn). Go 4 miles to Hughes Road (watch for boat dealer on corner). Turn right. Go 3 miles to first intersection - keep going 200 feet and watch for driveway on left side with 2 pillars. Go back driveway. Site on NW Corner. '), (1975, 4546, 1975, '724-468-4640', '724-468-3166 Fax', 'Slickville County Road', '', 'Export', 'PA', '15632', '9:00 - 5:00 Office 7:00 - 4:00 Job Site', 'Take 79 South to 76 East. Take Exit 6 to Rt. 22. Go East on Rt. 22 to Delmont Exit. Take North on Rt. 66 to Slickville Road. Turn right. Site 3/4 mile on left ahnd side, go through gate. ( Watch for dogs.) '), (1976, 4547, 1976, '(231) 796-8685', '(231) 796-3199', 'PO Box 612', '15151 Mill Pond Road', 'Big Rapids', 'MI', '49307', '8:00-5:30 office / 7:30-5:30 lab', 'Route 131. Exit 139 through Big Rapids on 20 East. Cross river and go past BP. Go straight where 20 East curves left onto Old Mill Pond Road. Can see from turn. '), (1977, 4548, 1977, '(717) 327-4275 Bob L', '(717) 327-4274 Fax', '100 Maynard Street', '', 'Williamsport', 'PA', '11701', 'Office 7:00-4:00 Plant 24 hrs.', 'From Rt. 80 take Exit #26 Route 220 (Williamsport Exit) Go through Lock Haven & Jersey Shore. Go past Rt. 15N. Take Maynard St. Exit. At stop, make left (don\'t go across bridge) Make right at 1st light onto Maynard St. Go through main gate. WATCH THIS MACHINE!!! '), (1978, 4549, 1978, '717-755-2933 ext. 23', '717-757-3808 Fax', '3990 East Market Street', '', 'York ', 'PA', '17402', '', ' '), (1979, 4550, 1979, '(740) 373-3211 ext 2', '(740) 373-5409 Fax', '2633 Waterford Road', '', 'Marietta', 'OH', '45750', 'Office: 8:00-5:00 Site: 7:00-3:30', ' CALL FOR DIRECTIONS & WRITE DOWN! '), (1980, 4551, 1980, '724-255-2775 Heath', '', 'Job Site', '', ' Morgantown', 'WV', '', '', 'I-80 W to I-79 S to Morgantown '), (1981, 4552, 1981, '716-664-5108', '716-484-0100 Fax ', 'Walden Avenue', '', 'Jamestown', 'NY', '', '', ' '), (1982, 4553, 1982, '484-994-9573 Steve C', '610-489-1522 Fax ', '', '', 'Collegeville', 'PA', '', '', ' '), (1983, 4554, 1983, '740-522-1144', '(614) 575-1307 Fax', '2000 West Main Street', '', 'Newark', 'OH', '43055', '8:00-5:00 (Office) 7:00-4:30 Lab', ' CALL FOR DIRECTIONS - WRITE DOWN! '), (1984, 4555, 1984, '787-763-5616/787-347', '787-282-7949 Fax/787', 'Calle Almirante Pinzon & 239', 'Urb El Vedado', 'San Juan', 'PR', '918', '7:00 AM to 4:00 PM', ' Billing Address: Delta Consulting Eng., Inc. PMB 494, PO Box 7891 Guaynabo, PR 00970-7891 787-763-5616 787-281-0890 Fax'), (1985, 4556, 1985, '787-253-1010', '787-253-1266 Fax/787', '150 Sector Central Road ', 'Concrete Plant ', 'Carolina', 'PR', '979', '7:00 am - 4:00 pm', 'Business Address: CAF Building 1, Suite 1, Office 213 I5O Sector Central Road, Carolina, PR 00979 Testing Beams & Cylinders to ASTM All power is 220V including outlets, English plugs need long extension cord to go to adjacent building for power'), (1986, 4557, 1986, '787-788-0863', '787-788-0917 Fax', 'PR 165 KM 1.1', '', 'Catano', 'PR', '962', '8:00am-5:00pm/7:00am-4:00pm Job', 'Billing Address: PO Box 2025 Las Piedras, PR 00771 787-788-0863 787-788-0917 Fax '), (1987, 4558, 1987, '787-848-2075/787-848', '787-848-1253 FAX/787', '3009 San Cristobal Avenue ', '', 'Coto Laurel', 'PR', '00780-2808', '7:00 AM - 4:00 PM Closed 12 to 1', 'Billing Address: PO Box 515 Cato Laurel, PR 00780 7/07 Digital retrofit for S/N 66034-0706151'); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (1988, 4559, 1988, '787-887-2005 / 505-1', '787-887-2265 Fax / 3', 'Carretera 955 KM 0.9, Road # 3', '', 'Rio Grande', 'PR', '745', '8:00am-5:00pm/7:00am-3:30pm Job ', ' ***ISO Requested*** Send bill to: Power Poles, Inc. Att: Engelbert Jimenez Fuxench, Supervisor QC PO Box 1707 Rio Grande, PR 00745 Power pipe tester S/N Unknown not done, pipe tester frame not square, beam not level causing beam to jam, also uneven load cell '), (1989, 4560, 1989, '(787) 832-4040 x 343', '787-833-8260 FAX', 'Department of Civil Engineering ', 'Road 108 KM 1.8', 'Mayaguez', 'PR', '680', '8:00 am - 12:00 pm / 1:00 pm - 4:30 pm ', ' Billing Address: University of Puerto Rico at Mayaguez Finance Department PO Box 9003 Mayaguez, PR 00681-9003 787-832-4040 x 2244 / 787-833-7340 Fax 7:45 am - 11:45 pm / 1:00 pm - 4:30 pm '), (1990, 4561, 1990, '787-653-3430', '787-653-3431 Fax', 'HIMA (Hospital Medicina Avenzada)', '1600 Ave. Luis Monez Marin, Esq. Degetan ', 'Caguas', 'PR', '725', '7:00am-3:30pm/7:00am-3:30pm Job ', 'Business Address: Castmaster Precast, Inc. PO Box 9528 Caguas, PR 00726 787-653-3430 787-653-3431 Fax '), (1991, 4562, 1991, '787-579-0702/787-848', '787-848-1562 Fax/787', '3009 San Cristobal Avenue ', '', 'Coto Laurel', 'PR', '00780-2808', '7:00 am - 4:00 pm Job Site ', ' Billing Address: 3009 San Cristobal Avenue Coto Laurel, PR 00780-2808 '), (1992, 4563, 1992, '787-848-2075', '787-848-1562 Fax ', '54 Tenerife Street', 'URB Sultana', 'Mayaguez', 'PR', '680', '7:00 am - 4:00 pm Closed 12 to 1', ' Billing Address: 54 Tenerife Street, URB Sultana Mayaguez, PR 00680 '), (1993, 4564, 1993, '787-894-4607/787-894', '787-894-4610 Fax', 'Barrio Salto Arriba', 'Utuado Carr 123 KM 50.4', 'Utuado', 'PR', '641', '', ' Password: 937707 Billing Address: Avenue Ponce De Leon, 1250, San Jose Building Office 711, San Juan, PR 00907 787-725-5505/787-725-6530 Fax '), (1994, 4565, 1994, '787-848-2075', '787-848-1562 Fax', '1213 Americo Mirando', '', 'San Juan', 'PR', '936', '', ' '), (1995, 4566, 1995, '787-306-4907', '', '', '', 'Aquadilla', 'PR', '', '', ' '), (1996, 4567, 1996, '787-986-1717', '787-986-1747 Fax', 'RD 64 KM 6.1', 'Sector Malecan', 'Mayaguez', 'PR', '680', '7:00am - 3:00pm/7:00am - 3:30pm Job ', ' Mailing: PO Box 3778, Road 64 KM 6.1 Mayaguez, PR 00680 '), (1997, 4568, 1997, '787-760-1094x231Mari', '(787)760-1021Fax/(78', 'PR 845 KM 1.4', 'Cupey Bajo', 'Rio Piedras', 'PR', '926', '6:30 am - 3:30 pm ', ' ***ISO Requested*** Billing: PO Box 21420, Rio Piedras, PR 00928-1420 7:00 am - 5:00 pm 787-764-1000 x 305 Milagras / 787-620-2628 Fax'), (1998, 4569, 1998, ' 989-742-4223 x 222 ', '989-742-2310 Fax/989', '410 N. State Street', '', 'Hillman', 'MI', '49746', '7:00 am - 3:30 pm', 'Route 32 towards Alpena, MI '), (1999, 4570, 1999, '989-956-2020', '734-522-6427 Fax', '929 Bridgeview South', '', 'Saginaw ', 'MI', '48604', '', ' '), (2000, 4571, 2000, '(231) 775-7755', '(231) 775-3135 Fax', '8684 S. Mackinaw Trail', '', 'Cadillac', 'MI', '49601', '8:00 am - 5:00 pm', ' 31S to 37S to M115 (approx. 20-25 miles.) Go left on M115 (approx. 20 miles) Go into Cadillac, cross 131 Expressway. Take next left at yellow flashing light on Mackinaw Trail. Building on left, just past Expressway '), (2001, 4572, 2001, '(248) 887-4173', '(248) 887-2755 Fax', '975 North Milford Road', '', 'Highland', 'MI', '48357', '7:00am-4:00pm/7:00am-3:30 pm Job', 'From US Rt. 23 North to M-59 Exit #67 at end of ramp turn right (go east 6 miles to Milford Rd) Turn left (north) approx 1 mile on left hand side of road. From Lansing Exit 133 off 96, take to M-59 '), (2002, 4573, 2002, '(517) 546-4250 ', '(517) 546-9628 Fax', '3535 Grand Oak Drive', '', 'Howell', 'MI', '48843', '7:00am-3:30', 'From Lansing I-96E - Get off at Exit #137 going E, 141 going W. Go North follow Grand River eastward (Bus 96E) and turn right (2 miles) Wal Mart and Urb Lumber on corner. Turn right onto Grand Oak. Follow to left turn. Take 2nd drive to left. Lab in corner. See map. Can calibrate up to midnight if call day in advance and make arrangements.'), (2003, 4574, 2003, '586-445-7002/Terry 5', '586-445-7887 Fax', 'M-Bldg. Warehouse', '14500 E 12 Mile Road', 'Warren', 'MI', '48088', '', ' '), (2004, 4575, 2004, '(586) 291-9049 Gene ', '586-749-8657 Fax ', '58270 Williams Street', '', 'New Haven', 'MI', '48048', '(O)7:00am - 3:30pm-(S)7:00am to 3:00pm', 'Take exit 247 off of I-94 on to Rt. 19 towards New Haven, go to Williams Street '), (2005, 4576, 2005, '540-854-2145', '540-854-2146 Fax', '7499 Pine Stake Road', '', 'Culpeper', 'VA', '22701', '6:30 am - 3:00 pm ', '29 to Route 3 east, light turn right, on 522 South 9-10 miles, Pine Stake Road, Rt 621 turn left go 3-4 miles, plant on left Must call prior for machines to be cool. All machines are 2% Take QA Book **MAKE SURE TO GET WORK ORDER SIGNED!! Formerly Atlantic Research'), (2006, 4577, 2006, '301-668-4303 ', '301-668-3519 Fax', '5112 Pegasus Court, Suite S', '', 'Frederick', 'MD', '21704', '7:00 am - 4:00 pm', 'From Oak Hill take Rt. 19 S to I64 East. Follow I-64E out of W.V. to Virginia. I-64 East meets I-81 North and they join together. Keep following I-64 E until you get to Stannton, then follow I-81 North to Exit 257. Take Rt. 259 toward the town of Broadway. Follow Rt. 259 approx. 37 miles to Rt. 55. Turn Left (west) on Rt. 55 to Moorefield to get to Fredrick. Take Rt. 55 East to I-81 North to I-66 East to Rt. 522/ Rt. 340 North. Rt. 340 splits off, follow Rt. 340 in to Fredrick '), (2007, 4578, 2007, '703-817-1106/703-801', '703-817-1170 Fax', '14155 Sullyfield Circle, Suite A', '', 'Chantilly', 'VA', '20151', '8:00 am - 5:00 pm', '70 East, to 270 South, to 495 South, to 66 West, to Exit 57B, Rt. 50 West, left on Sullyfield Circle 5.7 Miles, lst White/Grey building on right '), (2008, 4579, 2008, '(302) 836-5304 x 108', '(302) 836-5458 Fax', '268 E. Scotland Drive', '', 'Bear', 'DE', '19701', '2:00 AM - 5:00 PM', 'Route 7S to Rt. 40 - Make right (west) then go 3-4 miles to East Scotland Drive. Across from \"Glasgow Pines\" residential center, next to Glasgow Pines business center. OR---take I-95 to 896 Exit, take 896 South to 40. Take 40 East, cross RR tracks, turn right at next intersection. '), (2009, 4580, 2009, '610-524-6770 / 610-5', '248-324-5178 Fax', '444 Creamery Way, Suite 100 ', '', 'Exton', 'PA', '19341', '7:00 am - 3:00 pm ', 'I-76, Exit 312, merge onto Sr-100 (N. Pottstown Pike), right onto US-30 Bus (W. Lincoln Highway), turn left onto Oakland Blvd., right onto Creamery Way Formally Neyer, Tiseo & Hindo '), (2010, 4581, 2010, '410-392-230', '410-392-2324 Fax', '505 Blue Ball Road #160', 'Corner of Zeitler Lane & Hope Lane ', 'Elkton', 'MD', '21921', '8:00 am - 5:00 pm ', '95 to Elkton, Exit 109B, 270 towards Elkton through 4 lights make right on Blue Ball Road, left into Triumph Industrial Park '), (2011, 4582, 2011, '989-249-1105/989-928', '989-249-1171 Fax', '3111 Christy Way', 'Suite F ', 'Saginaw', 'MI', '48603', '8:00 am - 5:00 pm', '75N Exit 675 Bus. Loop Thasolas Rd Exit, get off, stop light (left) past mall (Bay Rd) Left, South past Mccarty Rd, Jack Fruit Market (right) on Christy way \"T\", take left, 2nd building past curve Formerly Snyder & Staley to SMAC Testing '), (2012, 4583, 2012, '989- 759-1413 Beth L', '989-759-1563 FAX', '1435 South Washington Ave.', '', 'Saginaw', 'MI', '48601', '7:30-4:30 (closed 12:00-1:00) M-F', 'I-75 North to Exit #151. Left onto Rt. 81W (Washington Ave) to M-13 South. Go through downtown. Follow until it turns to South Washington. Pass Post Office. Watch on right at corner of Holland & Washington. Sign say \"Public Works Service Center\". Their office is in Engineering section in basement. Lab is on ground floor. '), (2013, 4584, 2013, '1-800-486-2932/616-4', '269-751-6409 Fax/616', '4555 134th Avenue', '', 'Hamilton', 'MI', '49419', '8:00 am - 5:00 pm', ' 28th St., Burlinghame North, third light, turn left (west) on Chicago Drive, follow to highway entrance, 196 West, 10 miles, Exit Country Road 40 (Alleghan/Holland Exit), turn Left (South) to town of Hamilton, 134th Avenue south of town, turn left on 134th street, first driveway on left, no sign. '), (2014, 4585, 2014, '517-780-7894 (Lab)51', '(517) 780-7896 Fax', '2800 N. Elm Street', '', 'Jackson', 'MI', '49201', '7:00 am - 3:30 pm', 'I-94 to Exit #141 Elm Road. Go north - Past Chanter Road Turn into Gated Entrance at North end of building Go behind building to find someone to open building '), (2015, 4586, 2015, '269-963-1554', '269-963-6109 Fax ', '15150 6 1/2 Mile Road', '', 'Battle Creek', 'MI', '49014', '', ' I-94 West, Exit 98, merge I-194 (SR-66) South, bear left onto SR-66, left onto B Dr N, right onto 6 1/2 Mile Road '), (2016, 4587, 2016, '(419) 353-7081', '(419) 354-4153 Fax', '507 Derby Avenue', '', 'Bowling Green', 'OH', '43402', '7:00 am - 4:30 pm ', 'I-75S to Exit #179 take Route 6 West to Rt. 25N (Main St.) to second light (Napoleon Rd) and turn right (east). Go across RR tracks (3 blocks) and make next left onto Manville - Go to 3rd St and turn left to site through gate in fence. See map in files. '), (2017, 4588, 2017, '', '', '1180 North Miller Street', '', 'Anaheim', 'CA', '92806', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (2018, 4589, 2018, '907-424-3434', 'RMA 7070', 'POB 300', '', 'Cordova', 'AK', '99574', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (2019, 4590, 2019, '(615) 350-8124', '(615) 350-8149 Fax ', '7378 Cockrill Bend Blvd. ', '', 'Nashville ', 'TN ', '37209', '', ' '), (2020, 4591, 2020, '765-477-0484 Eric', '', 'McCarty Lane', '', 'Lafayette', 'IN', '47909', '7:30 - 5:00 (unmanned sometimes)', 'Eric Felix will take to this site from the Imperial Site. '), (2021, 4592, 2021, '(412) 429-1212 ext 1', '(412) 429-0191 Fax', '14 Sycamore Street', 'PO Box 529', 'Carnegie', 'PA', '15106', 'til 3:30', 'I-79 S to Exit #13. Go toward Carnegie. Go several miles to \"T\" by Batey\'s Chevrolet. Turn left over bridge. Sycamore is 3rd street on right. Go to end - site on left in metal building. Tensil Fixtures & Tensile Cells'), (2022, 4593, 2022, '(248) 349-8710 / (24', '', '51777 W. 12 Mile Road', '', 'Wixom', 'MI', '48393', '7:00-5:30', ' W. 12 Mile Road, Wixom '), (2023, 4594, 2023, '(412) 695-1342', '', 'Pittsburgh Airport Area', '', 'Pittsburgh', 'PA', '', '', 'See files. '), (2024, 4595, 2024, '(717) 391-8311', '(717) 391-8316 Fax', 'State Rd. 23 & Walnut Street', '', 'Lancaster', 'PA', '17604', '7:00 am - 5:00 pm', 'Take PA Turnpike to Lancaster Exit #21 (#22?). Take State Rd. 222 South to the end to State Rd 30. Go East on Rt. 30 and take 2nd exit - State Rd. 23/Walnut Street Exit. Make left at stop onto Rt. 30. Bear right onto dirt road to job site. '), (2025, 4596, 2025, '(517) 484-3320 Job ', '(515) 484-3951 Batc', '2627 E. Clark Road', '', 'Bath', 'MI', '48808', '', 'Go up 127N and turn onto 69. Make left at light on King to get on 27S (27 Busher) Make 1st left at light by shopping mall onto Clark Road. Go 1 1/2 mile on left to batch plant. '), (2026, 4597, 2026, '(412) 472-0190', '', '', 'Pittsburgh Airport', 'Pittsburgh', 'PA', '', '', 'Rt. 60 Hanger Rd. Make left, 2nd trailer '), (2027, 4598, 2027, '440-333-4704', '440-333-3781 Fax', '1127 Linda Street', 'PO Box 16334', 'Rocky River', 'OH', '44116', '7:00-5:00 Mon. - Thurs. (No Fridays)', 'I-90 West out of Cleveland. Take Hilliard Blvd. Rocky River Exit (Exit #162?). to light (Westway Blvd.). Turn right. 1/10 mile turn right on Lakeview Ave. to Detroit Rd. Turn right, 2 streets up to Linda Street. Turn left, 1/4 mile up on Right. Last building before RR tracks. '), (2028, 4599, 2028, '419-435-3655', '419-435-2544 Fax', '912 Sandusky St.', '', 'Fostoria', 'OH', '44830', '7:30 - 4:00', 'Take Route 12 East to Fostoria. They are on the right side just before going into town. Cement blocks all around building. '), (2029, 4600, 2029, '(814) 585-7755 CELL ', '', 'CES Landfill', '25 Commonwealth Road', 'Hegins', 'PA', '17938', '', 'South on I-81, Exit #34. Make left off of exit and go East on Rt. 25. Go 1 mile to CES Landfill. Go to Guardshack and they will direct you to trailer. Trailer has an American Flag on top of it. '), (2030, 4601, 2030, '(614) 679-3792', '', 'Vienna Airport', '', 'Youngstown', 'OH', '', '', 'I-80 West to 193 North (Exit 229). Go 5-6 miles on 193N into Vienna. Kirila Contractors on 193 Off of 193 at Airport '), (2031, 4602, 2031, '(412) 583-8844', '(412) 583-1007 Fax', '', '', 'Waynesburg', 'PA', '', '', 'See files '), (2032, 4603, 2032, '(412) 583-8844', '(412) 583-1007 Fax', '', '', 'Masontown', 'PA', '15461', '', 'See files '), (2033, 4604, 2033, '(616) 456-5469', '(616) 456-5784 Fax', 'Parker Road', 'JOB SITE', 'Dexter', 'MI', '', '', 'From I-94 (East of Jackson, MI) Exit at Baker Road, go North to Shield Road, West to Parker Road, South approx. 500\' Construction drive to the East '), (2034, 4605, 2034, '(248) 625-8080 (Ext', '(248) 625-7820 Fax', '4950 White Lake Road', '', 'Clarkston', 'MI', '48016', '8:00-5:00', 'Take I-75S to Exit #93 - Rt. 24 (Dixie Highway). Take 24S about 2 miles to White Lake Road (2nd light). Turn right onto White Lake Road and go approx. 1 mile on left '), (2035, 4606, 2035, '314-568-9748', '', 'Route 30', 'JOB SITE', 'Hampstad', 'MD', '', '', 'Route 30 Sweetheart Cup Co. 1/2 Block west off Rt. 30 Houckville Road 30 Miles NW of Baltimore Hwy 30 '), (2036, 4607, 2036, '314-568-9744 Cell Ph', '', '2775 Indian River SW', 'JOB SITE', 'Massilon', 'OH', '4464', '6:00 AM - ?', 'State Highway 21, 77, 62, 21, W. Erie Street, off 21 '), (2037, 4608, 2037, '(734) 462-0030', '(734) 462-0079', '38401 Amrheim Road', '', 'Livonia', 'MI', '', '', 'Go 1 1/2 miles South of I-96. Off of the Newburg Exit. '), (2038, 4609, 2038, '(412) 292-1071 Bill ', '412-965-3899 Bill Ce', '170 Mt Pleasant Drive', 'JOB SITE / Warrendale Toll Plaza', 'Marshall Twp', 'PA', '', '', 'Off 79 Rt 228 Left lane on 19 South, 5th light 2 Lefts Quick Right onto Pleasant '), (2039, 4610, 2039, '330-454-1113 Brad', '', '1516 Timken Road', '', 'Wooster', 'OH', '44691', '', '30 West, 2 lane road, Madison Avenue, turn left End of Bridge turn right on Timken Road '), (2040, 4611, 2040, '313-475-0518', '248-848-1042', '9401 W. Jefferson', '', 'Detroit', 'MI', '48209', '8 - 5 Office & Job Site', ' CALL FOR DIRECTIONS !!! Formally Neyer, Tiseo & Hindo '), (2041, 4612, 2041, '(734) 994-3210', '(734) 994-3950', '683 Airport Boulevard', 'Suite 5', 'Ann Arbor', 'MI', '48108', '8:30-5:00', 'State St. North - Exit 177 off I-94. South on State St. Airport Blvd Right - 2nd driveway to left 2nd building on right '), (2042, 4613, 2042, '1-859-983-9445 Harol', '859-299-2481 Fax', '637 Cool Road', '', 'Lima', 'OH', '45801', '', '75S Exit 125 (309) Take left, 3 miles, Coal Rd, past college on left resevoir No more freebies per Bill'), (2043, 4614, 2043, '(269) 323-3555', '(269) 323-3553 Fax/2', '4460 Commercial Ave. , Suite B', '', 'Kalamazoo', 'MI', '49002', '7:00 am - 5:00 pm', 'I-94 to Kalamazoo. Take Exit #80 Sprinkle Ave. Go approx. 3 miles south on Sprinkle. Turn onto Commercial Drive on left. Go into Portage Commerce Park. Go to 4460 on right. Gray metal building 10/9/01 Replaced needle on high gauge. Repaired leak on top of frame. Major adjustments required to bring into 1%'), (2044, 4615, 2044, '(313) 874-2660 ext 1', '(313) 874-2650 FAX', '622 West Baltimore ', '', 'Detroit', 'MI', '48202', '8:00 - 5:00', '75N MION Lodge. West Grand a Millwackie Exit, Right Hand Lane Baltimore go through the light at 3rd, 4th Bldg on left '), (2045, 4616, 2045, '734-464-6711 Robin', '(937) 435-5162 Fax', '37541 Schoolcraft Rd', '', 'Livonia', 'MI', '48150', '8:00 am - 5:00 pm', 'I-94 W to exit 177 State St., go south 2 lights, turn right on Airport Blvd. in buildings on left. Left end of building 771 Suite 1, says CESO on door '), (2046, 4617, 2046, '586-531-6801/586-855', '586-752-5231 Fax', '73408 Van Dyke Avenue', '', 'Romeo', 'MI', '48065', '7:00 am - 5:00 pm', ' I-75 to 696, 696 to Van Dyke. Our plant is located just north of Van Dyke and 34 mile road on the east side of the road '), (2047, 4618, 2047, '(313) 485-3181', '(313) 485-3228 Fax', '1785 Rawsonville Road', '', 'Belleville', 'MI', '48111', '', 'Take 94 East to Detroit - Rawsonville Exit #187. Make left to stop sign. Make right onto I-94 N. Service Drive. Make left onto Old Rawsonville Rd. Building right inside plant - watch for Big Green Towers from road. '), (2048, 4619, 2048, '610-323-7995 Plant', '610-323-2988 FAX', '400 Old Reading Pike', '', 'Stowe', 'PA', '19464', '', ' '), (2049, 4620, 2049, '(610) 874-1454', '(610) 874-5609 Fax', '', '', 'Chester', 'PA', '', '7:00-3:30', 'No exit Southbound. From I-95N - Kerlin St. Exit #5 - bear left at end of ramp. At light make right onto Kerlin (southbound) go to 3rd light - at 9th and Kerlin. Take Concord - it\'s ahead on left at 45 degree angle. Go 3 blocks - go under Amtrak bridge. Big red brick building on right. NASTY NEIGHBORHOOD - BE CAUTIOUS (map in files) '), (2050, 4621, 2050, '724-342-6851 Ext. 12', '724-983-2226 Fax', '200 Clark Street', '', 'Sharon', 'PA', '16146', '8:00 am - 5:00 pm', 'From I-80 Exit #1N take 18S Farrel/Wheatland (Left at \"Y\") Exit where 18S turns left, go straight. Go past Forneys. Follow Rt. 718N. Go through 5-6 lights, past Armco\'s main office. Go through several more lights. Cross Rt. 62. At next light make right onto State Street. At next light make left onto Sharpsville Ave. (Rt. 518N) Go through 2 lights. Look for Armco sign on left. Turn left into Armco (Between 2 large bldgs) onto Clark Street. Go to'), (2051, 4622, 2051, '(410) 354-0658', '(410) 355-1827 Fax', '21 Stahl Point Road', '', 'Baltimore', 'MD', '21226', '7:00-3:30', 'Near Glen Burnie, Md. Off of Key Bridge I-695 (83 runs into 695) Exit #2. Off Route 10 to Ordance Road (Rt. 710E) Go over RR tracks and turn right on Stahl Point Rd. Make left into yard. '), (2052, 4623, 2052, '(616) 327-3532', '(616) 327-7679 fax', '9835 Portage Road', '', 'Portage', 'MI', '49002', '7: 00 AM to 5:00 PM', '131 N Center Avenue Exit 31? Last one before I94. Go East 5 miles to Portage Road South, 2 miles on left side (U-Haul) '), (2053, 4624, 2053, '(410) 785-5790', '(410) 785-1103 Fax', '243 Cockeysville Road', '', 'Cockeysville', 'MD', '', '7:00 am - 5:00 pm', 'Off Rt. 83 from York, PA. About 45 minutes away - south on Rt. 83 to Warren Rd, Exit 18. Make left onto Beaver Dam Rd. at light. Make right onto Cockeysville Rd. Site on right. 10/00 DID NOT WANT CALIBRATED 11/99 DID NOT WANT CALIBRATED - WILL CALL '), (2054, 4625, 2054, '703-396-6000', '703-396-6090 FAX', '7505 Mason King Court', '', 'Manassas', 'VA', '20109', '', ' I-66 (Curtis Memorial Pky)(West), I-66/Manassas/Front Royal, I-66, Exit 47A, merge SR-234 (SR-234 Bus)(South), continue South on SR-234 Bus (Sudley Road), turn right (West) onto Balls Ford Road, go 1.2 miles to Mason King Court '), (2055, 4626, 2055, '302-654-6948/302-654', '302-656-9149 Fax/302', '1526 Matassino Road ', '', 'New Castle ', 'DE', '19720', '7:00 am - 2:00 pm ', ' Rt. 13 North, Approx. 1 to 2 miles North of New Castle Airport. Turn right at traffic light, Boulder Blvd. go 1/2 mile turn right on Matassino Road, follow to end to concrete plant. Plant phone# 302-654-2225 '), (2056, 4627, 2056, '248-514-6961 Mark ', '248-399-2157 Fax', '1609 Biddle Avenue', '', 'Wyandotte', 'MI', '48192', '', ' I-75 Exit 36, turn left (North) onto Fourth Street, turn right onto Northline Drive, cross Railroad tracks, at red light go straight through, dead end (Biddle Avenue), turn left into BAFF Chemical Plant parking lot, call Mark to get through security '), (2057, 4628, 2057, '(302) 836-5304 x 108', '(302) 836-5458 Fax', '268 E. Scotland Drive', '', 'Bear', 'DE', '19701', '2:00 AM - 5:00 PM', 'Route 7S to Rt. 40 - Make right (west) then go 3-4 miles to East Scotland Drive. Across from \"Glasgow Pines\" residential center, next to Glasgow Pines business center. OR---take I-95 to 896 Exit, take 896 South to 40. Take 40 East, cross RR tracks, turn right at next intersection. '), (2058, 4629, 2058, '610-524-6770 Deb', '610-280-6666 Fax', '444 Creamery Way, Suite 100 ', '', 'Exton', 'PA', '19341', '7:00 am - 3:00 pm Job ', ' I-76, Exit 312, merge onto Sr-100 (N. Pottstown Pike), right onto US-30 Bus (W. Lincoln Highway), turn left onto Oakland Blvd., right onto Creamery Way Formally Neyer, Tiseo & Hindo '), (2059, 4630, 2059, '304-725-9370 ', '304-728-5170 Fax', '165 Bradstone Lane ', '', 'Harpers Ferry', 'WV', '25425', '', 'Harpers Ferry & Fredricks, 2 bridge, 2 miles on left, Blair Road Citgo - 1/4 mile on left '), (2060, 4631, 2060, '703-392-7400', '703-330-1285 Fax', '8551 Sudley Road', '', 'Manassas', 'VA', '20110', '8:00 am - 5:00 pm', ' Rt 495 to 66W (Exit 49 west towards Manassas) travel on 66W about 14 miles and take exit 47A towards city of Manassas. This road is also called Sudley Road. Site address is 8551 Sudley Road **62 miles from Frederick, MD** '), (2061, 4632, 2061, '330-654-2501', '330-654-3302', '4200 Universal Drive', '', 'Diamond', 'OH', '44412', '', 'From I-76, take Exit 54 (534). Then take 534 South to intersection, make right on to Mahoning, go over lake and through town. Make right onto Universal Road . Plant at end of road. (dead end) '), (2062, 4633, 2062, '(734) 455-8600 Jim S', '419-704-5462 Roger C', '16100 Moross Road', '', 'Detroit', 'MI', '48025-48205', '8:00 am - 5:00 pm ', 'I-94 East in Detroit to Moross Road( Exit 244A). Get off and turn left (North). 2 miles to Kelley Road, on corner - Left side of Intersection thru Intersection. '), (2063, 4634, 2063, '(906) 786-0934', '(906) 786-2622 Fax', '6480 US Highway 2', '', 'Escanaba', 'MI', '49829', '', 'North of Escanaba about 2 miles 2nd page cert - weight of beam in / out of gauge'), (2064, 4635, 2064, '610-323-6600', '610-323-6601 Fax', '23 Quarry Road', '', 'Douglassville', 'PA', '19518', '7:00 am - 5:00 pm', ' US-422 to Stowe exit, end of ramp straight at stop sign, 1st light left, next light turn right onto Quarry Road it is on the left hand side. Federal ID# 04-3786366'), (2065, 4636, 2065, '(814) 571-7318', '(570) 698-7863', '643 Keystone RD', '', 'Lake Ariel', 'PA', '18436', '7:00 am to 5:00 pm ', ' RT 80 west to RT 81N to 84E. Take exit 17. Make a left towards Hamlin on RT 191, go thru light aprox 1 1/2 mi road. Stay left RT 196 go aprox 3 1/2 mi. Hanson Quarry sign on Right. Keystone Rd. on left. Turn left go past scale house and thru gate stay left to office trailer -any trouble call 814-571-7318 '), (2066, 4637, 2066, '248-324-5372 Zeerak ', '(248) 324-5304 Fax', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '7:00am-4:00pm/8:00am-5:00pm Job ', ' 275 North, Exit 28 (Ann Arbor Rd/Plymouth/Livonia), right onto Ann Arbor Road, right onto Plymouth Road, left onto Belden Court Formally Neyer, Tiseo & Hindo Latitude: 42 degrees Elevation: 642 feet DWCV: 0.9993 Need tensile fixtures'), (2067, 4638, 2067, '330-618-6979 Jon', '330-628-6674 Fax', '3225 Mogadore Road', '', 'Akron', 'OH', '44312', '7am-5pm Office / 7am-10pm Lab', 'Route 76E. Take Exit #29 for SR 532 South. Turn right at light at bottom of ramp. Pass light at Newton St.. Go to stop light (several miles). This is the center of town - turn right onto Mogadore Road. Go 1-2 miles on right. Machine is on lower level around the back fabrication building See brochure in files for other contacts, etc. Also have Forney QC-150 Compression Machine (not in use)'), (2068, 4639, 2068, '(810) 667-6911', '(810) 245-5767 Fax', '77 DeMille Rd', '', 'Lapeer', 'MI', '48446', '7:00 am - 3:30 pm ', 'I-75N to M24 Lapeer Road. Take road N into Lapeer (approx 35-40 min). In Lapeer go under I-69. Go to 2nd working traffice light. Marathon Station on corner. Make right onto De Mille Road (If gone to RR tracks-to far) Go 500 feet and take next right (still on De Mille). Don\'t take McCormick. Go .7 miles, cross over RR tracks. There will be one farm house and then their building (tan metal) If you get to stop sign at High School - to far.'), (2069, 4640, 2069, '717-773-1412/717-436', '717-436-2064 Fax', 'RR5 Box 133', '', 'Mifflintown', 'PA', '17059', '7:00 am - 5:00 pm', ' 322 - Oldstone House Arch Rock Exit between Miffltown and Lewistown 322 Past Lewistown. Construction Zone. 4 Miles QC lab on Left. '), (2070, 4641, 2070, '410-666-2350 x 125 M', '410-666-8781 Fax ', '10111 Beaver Dam Road ', '', 'Cockeysville', 'MD', '21030', '6:30am-4:30pm/6:00am-4:00pm Job ', ' I-83 South toward Baltimore, take Exit 17, Padonia Road West, left at bottom of ramp onto Padonia Road, at second light make left onto Beaver Dam Road heading North go approx. 1 mile to a right into facility '), (2071, 4642, 2071, '734-287-1000', '810-955-5791 Larry/7', '20501 Goddard Road', '', 'Taylor', 'MI', '48180', '', ' I-75 (East), I-75, Exit 37 (Allen Road/Line Road), turn left (North) onto Allen Road, go 1.4 miles, turn left (West) onto Goddard Road '), (2072, 4643, 2072, '301-405-8593', '301-502-3842 Cell Re', '0147F Engineering Lab Building (089)', '', 'College Park', 'MD', '20742', '8:00 am - 5:00 pm ', 'I-95 to Capital Beltway, exit (Rt. 1 College Park / 495 West), end of exit turn left, get into right hand lane to exit 23 - Rt. 1 College Park/Baltimore Avenue, make right and go South 1 or 2 miles and turn right onto Campus Drive, take first right to Engineering building on left, turn right to parking lot XX, need to park at metered parking, call Regis on his cell 301-502-3842 to show you where machine is '), (2073, 4644, 2073, '301-405-8593', '301-502-3842 Cell Re', '0147F Engineering Lab Buidling (089)', '', 'College Park', 'MD', '20742', '8:00 am - 5:00 pm ', 'I-95 to Capital Beltway, exit (Rt. 1 College Park / 495 West), end of exit turn left, get into right hand lane to exit 23 - Rt. 1 College Park/Baltimore Avenue, make right and go South 1 or 2 miles and turn right onto Campus Drive, take first right to Engineering building on left, turn right to parking lot XX, need to park at metered parking, call Regis on his cell 301-502-3842 to show you where machine is '), (2074, 4645, 2074, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', '6730 Whitestone Road', '', 'Baltimore', 'MD', '21207', '8am-4pm Office / 7am-5pm Lab', ' 695 south, security blvd. (in Baltimore, MD), right on Belmont Avenue, right on Dogwood Road first street on right on Whitestone, big Tan building on left hand side '), (2075, 4646, 2075, '313-873-4711', '313-873-4733 Fax', '7991 Hartwick Street', '', 'Detroit', 'MI', '48211', '8:00 am - 5:00 pm', ' ***ISO Requested*** For PO# must call Ken - 313-873-4711 - Fax 313-873-4733 Cell 269-720-2006 I-75 North to Clay/E Grand - go through lights to Euclid make right for 1 block '), (2076, 4647, 2076, '(814) 224-2121 x 427', '(814) 224-6016 Fax ', 'Route 36 North', '(Ready Mix Plant)', 'Roaring Spring', 'PA', '16673', '6:30 am - 3:30 pm', 'Take Roaring Springs Exit off Route 220. Take 36S (about 1 mile) on left - Middle of site - across bridge toward quarry - lab in tin roof building on left just across bridge. '), (2077, 4648, 2077, '865-228-1527 Jake Ce', '865-573-6132 Fax', 'Job Site ', '', 'Chattanooga', 'TN', '', '', ' '), (2078, 4649, 2078, '248-399-2066', '248-399-2157 Fax', '21355 Hatcher Avenue', '', 'Ferndale', 'MI', '48220', '8:00 am - 6:00 pm ', '275-696 East-Coolage Highway, Exit 14, Coolage South to North End Avenue, East on North End Avenue, 3/4 mile to Hatcher Avenue, brown building on corner turn left '), (2079, 4650, 2079, '(734) 453-7900/734-5', '(734) 453-0724 Fax', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '8:00 am - 5:00 pm', ' May need Limit Switch for S/N 72066 ***continued*** I-275N to M-14 West. Take the Sheldon Road Exit #20 Take North Sheldon to 1st left (Helm Street) before Buick car dealership. Go about 1/2 mile, site on left. (Plant directly north of Ford Plant) Dead Weights Correction Value: 0.9993 Need 1K cell'), (2080, 4651, 2080, '(734) 453-7900', '(734) 453-0724 Fax', '45749 Helm Street', '', 'Plymouth', 'MI', '48170', '8:00 am - 5:00 pm', ' ***continued*** I-275N to M-14 West. Take the Sheldon Road Exit #20 Take North Sheldon to 1st left (Helm Street) before Buick car dealership. Go about 1/2 mile, site on left. Plant North of Ford Plant. Dead Weight Correction Value: 0.9993 Need 1K cell'), (2081, 4652, 2081, '804-691-3361 Cell Pe', '804-732-1609 Fax ', 'Pudedledock Lab Site ', '', 'Prince George', 'VA', '', '7:00 am - 5:00 pm ', ' Shipping Address: 1006 East Bank Street Petersburg, VA 23804 '), (2082, 4653, 2082, '313-304-0822 Larry\'s', '248-521-0537 Jim\'s c', '2701 Greenfield Road', '', 'Dearborn', 'MI', '', '', 'I-94 exit 208 South on Greenfield Road, cross railroad tracks. Near Butler Street Trailers back corner of parking lot. Formally Neyer, Tiseo & Hindo Ernest Domas 313-304-3150 Eric Tucker 313-475-0518'), (2083, 4654, 2083, '443-200-0059/0057 wa', '443-200-0156 Fax Joh', '6730 Whitestone Road', '', 'Baltimore', 'MD', '21207', '', ' 95 south, security blvd. (in Baltimore, MD), right on Belmont Avenue, right on Dogwood Road first street on right on Whitestone, big Tan building on left hand side '), (2084, 4655, 2084, '814-224-2121 x 4212 ', '814-766-0222 Fax', 'Prestress Plant', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', '', ' '), (2085, 4656, 2085, '(570) 546-7686', '(570) 546-7708 FAX', '173 Industrial Parkway North', 'Muncy Industrial Park', 'Muncy', 'PA', '17756', '8:00 am - 4:00 pm', 'Rt 80 East, exit 220 N (Lock Haven), 220 will turn into 180, Exit 180 at Halls Pennsdale exit, right at bottom of ramp, left at redlight, approx 1 1/2 mile look for Blessings Insurance agency sign. Turn Right at sign to enter Industrial park, straight through intersection at Kellogg. Take next right, go across railroad tracks, building at end of road. '), (2086, 4657, 2086, '717-764-7700 ', '717-764-4129 Fax', '130 Derry Court', '', 'York', 'PA', '17406', '8:00 am - 5:00 pm', 'Exit 24 off I-83. Turn West onto Church Road. On west side of I-83, make immediate left onto Derry Court. ATI is straight ahead at end of road. Moved to Building 2 Tax Exemp no: 82-886744 Password to get into Bluehill Software: \"Joe\" then Password: 80FXWG'), (2087, 4658, 2087, '248-669-9886', '248-669-3533 Fax', '150 Landrow Drive', '', 'Wixom ', 'MI', '48393', '', ' '), (2088, 4659, 2088, '610-481-9648 x 30 Ke', '610-481-0218 Fax', '7331 Williams Ave.', 'Suite #300', 'Allentown', 'PA', '18106', '', ' '), (2089, 4660, 2089, '717-267-4567', '(717) 267-4554 Fax', '2655 Molly Pitcher Highway South', '', 'Chambersburg', 'PA', '17202', '8am - 5pm Office / 6am-4pm Site', '***CONTINUE NEXT PAGE*** ***DO NOT USE 700 SYSTEM*** I-81 S. Take Exit #5. Turn right onto Wayne Ave (Rt. 316N) Go to 2nd light, turn left onto Orchard. Go 8/10 mile to S. Main Street. Turn left onto Rt. 11S for 1 mile. Site on right Take Jack S/N 10110 to 45,000 lbs. in future per letter dated 6/24/98 from Kirk Myers Input 1 = 4479 Read 1 = 4000 Input 2 = 40381 Read 2= = 35000 MUST TAKE PROCEDURE FROM FILES FOR HAYES S/N 10110'), (2090, 4661, 2090, '570- 325-3293', '570- 325-3687 Fax', '1588 Center Ave.', '', 'Jim Thorpe', 'PA', '18229', '7:00 am - 5:00 pm', 'Take Rt. 9N. Take Mahoning Valley Exit #34. Get on 209 S towards Lehighton. Go into Jim Thorpe to light. Turn left on Broadway Street. Go 3.8 miles, crest hill immediately turn right up gravel driveway between pet center & Mauch Chunk Medical site in 2 story house. Elevation: 1000 feet Latitude: 40 deg 50 inches Dead Weight Correction Value: 0.9993 '), (2091, 4662, 2091, '(717) 264-4178 Lab', ' ', '3587 Stone Quarry Road', '', 'Chambersburg', 'PA', '17201', '6:00-4:00', 'I-81 S take Exit #5. At end of ramp turn left 316S Go approx. 1 mile, turn right on Stone Quarry Road. Cross RR tracks - pass blacktop plant, go 1/2 mile to quarry. Stop at scalehouse. Take 2nd entrance - awning /rood over door on long gray building. Password: 937707'), (2092, 4663, 2092, '717-267-4567', '717-267-4554 Fax', '2655 Molly Pitcher Highway South', '', 'Chambersburg', 'PA', '17202', '8am - 5pm Office ; 6am-4pm Site', ' ***DO NOT USE 700 SYSTEM*** Send Certs to Billing Address ...continued... I-81 S. Take Exit #5. Turn right onto Wayne Ave (Rt. 316N) Go to 2nd light, turn left onto Orchard. Go 8/10 mile to S. Main Street. Turn left onto Rt. 11S for 1 mile. Site on right. '), (2093, 4664, 2093, '412-331-1500 Kevin', '412-331-2950 Fax', '1095 Thompson Ave.', '', 'McKees Rocks', 'PA', '15136', '7:00 am - 5:00 pm ', '79S to Rt 65 Crafton Exit, at Red light go over Lorish Rd to red light go through to Giant Eagle to stop signs, go straight Silver Star meets to red light- Texaco on Rt Follow to St Johns Make right stop sign at RR track Blue Bldg. (Right at light Island Avenue, next light left train - library (Rudys), right & quick left) 795 Neville Island, right on Grand, \"Y\" at road turn Right, follow to end take left - Island Ave, 4 lights Straight thru, dog left right, quick leftt stop sign, turn left'), (2094, 4665, 2094, '412-287-0010 Bob\'s C', '(724) 755-0207 Fax', '88 E. Hillis Street', '', 'Youngwood', 'PA', '15697', '8:00am-4:00pm/7:30am-3:00pm Job', 'I-76 to New Staton, Exit #8. Take Rt. 119N. At 2nd light turn right (just behind Sunoco Station) on to Hillis. Cross RR tracks, bear right at \"Y\". Site approx. 1 mile on left. S/N 051585: Built into a large machine which runs up and down rails on a bed.'), (2095, 4666, 2095, '304-233-2710', '304-233-2711 Fax', '3401 Market Street', '', 'Wheeling', 'WV', '26003', '7:00 am - 4:00 pm', 'Wheeling Exit 26th Street. Turn Left on to Chapline. Cross R/R Tracks. Take second Right. Site straight in front. 70E First exit thru town, at 2 South, 10th Street to 31st (Main Street), 29th street block (left), 1 block, turn right under (470) to 31st street Formerly AOK Trucking'), (2096, 4667, 2096, '937-414-6890 Joe', '937-435-5162 Fax ', '8164 Executive Court, Suite C', '', 'Lansing', 'MI', '48917', '8:00 am - 5:00 pm', '96E Sagi Hwy west, left most lane, gas station make left, after dead end, left up to bank (Behind) '), (2097, 4668, 2097, '419-465-4611', '419-465-2866 Fax', '309 Monroe Street', '', 'Monroeville', 'OH', '44847', '8:00am-4:30pm/7:00am-3:00pm Job ', ' Ohio Turnpike to exit 110, 4 south to 20E to 99 South to Monroe Street take right site on right '), (2098, 4669, 2098, '616-451-6270 Wendy', '616-451-6271 fax ', '1430 Monroe Ave Suite 180', '', 'Grand Rapids', 'MI', '49505', '8 am - 5 pm', 'South side of Michigan Take Rt. 75 to Springwells Fort Exit. Take Left ( South) to Jefferson, take right on Jefferson (waste water treatment center) Site on left. DMT in trailer. I-96, 131N, 1st exit Formally Neyer, Tiseo & Hindo '), (2099, 4670, 2099, '517-484-6900', '517-485-8323 Fax', '608 South Washington Avenue', '', 'Lansing', 'MI', '48933', '8:00 am - 5:00 pm', 'Near Grand Rapids - See map attached. 96W 28th Street Exit, 43A to M-37 Broadmoor to 44th Street, make left, site on left side before airport, x95, 496, x 6 left north corner of Hills Dale & Washington Formally Neyer, Tiseo & Hindo '), (2100, 4671, 2100, '269-327-1956', '269-324-1212 Fax', '333 Peterman Lane', '', 'Portage', 'MI', '49002', '7:00 am - 4:00 pm', ' I94 to exit 76, south Westnedge, South on Westnedge, 10th light is Schuring Road, Clark Gas on right go through light, old plaza on right. Peterman Lane splits plaza in half '), (2101, 4672, 2101, '(248) 474-0415 x14 G', '(248) 474-5199 Fax', '29800 West 8 Mile Road', '', 'Farmington Hills', 'MI', '48336', '7:00 am - 5:00 pm', 'I-275 to Exit #167. Go East on 8 mile road. Cross Merriman Road, 1/4 mile West of Middlebelt on 8 Mile Road. Site North side of road (5 miles east of I-275) (4 miles North of I-96) '), (2102, 4673, 2102, '', '', 'Zona Franca de Gurabo E-10', '', 'Santiago', 'DR', '', '', ' '), (2103, 4674, 2103, '', '', '1902 Marine Drive', 'Attn: Amry Dougherty 360-457-4474', 'Port Angeles', 'WA', '98363', '', ' '), (2104, 4675, 2104, '434-522-6424 Don Har', '', 'Attn: Don Harris', '2016 Mt. Athos Road', 'Lynchburg', 'VA', '24504', '', ' '), (2105, 4676, 2105, '907-562-3501', 'PO 8513', '5050 Cordova Street', '', 'Anchorage', 'AK', '99503', '', '**NEVER INSURE EQUIPMENT WHEN SHIPPING **SEND UPS GROUND UNLESS OTHERWISE SPECIFIED SEE PO\'S FOR SPECIFIC INSTRUCTIONS UPS Account - #Y70V26 FedEx Account- #2979-5538-1 Include Certs with shipment'), (2106, 4677, 2106, '864-576-3230', '864-587-8828 Fax', 'Attn: Jose Villalba, QC Manager', '3361 Grant Road', 'Conley', 'GA', '30288', '', ' '), (2107, 4678, 2107, '740-967-4801', '740-397-5993 FAX', '7720 Johnstown Alex Road', '', 'Johnstown', 'OH', '43031', '9:00 AM - 4:30 PM', 'I-71 to 36E into Mt. Vernon to KFC, turn right past fire department, at stop go straight, Ellis Bros 2nd office in back '), (2108, 4679, 2108, '(412) 260-5952 Stan ', '724-929-3011 Fax', 'Jacob Street', '', 'Pittsburgh', 'PA', '', '7:00-3:00', 'Rt 51 South 1 1/2 miles south of Liberty Tunnels. Turn right onto Whited Street (76 Station) 100-200 yards Left on Jacob St Then Right into Storage Yard '), (2109, 4680, 2109, '(703) 378-7263', '(703) 378-7274 Fax', '14554 Lee Road', '', 'Chantilly', 'VA', '20151', '', 'From Rt. 66 take Rt. 50W towards Winchester. Go approx. 5 miles. Cross Rt. 28. Make next left onto Lee Road (no stop light. (West Fairfax Commerce Center) Go approx. 1 mile on right . Pass Annheuser Busch Distr (Red Roof). Then make 1st right onto 14554 Lee Road. Go to last building. Tan metal single story building. '), (2110, 4681, 2110, '606-874-9057 Vicki', '', 'IN STORAGE', '', 'Allen', 'KY', '', '7:30 - 5:00', 'Just south of Prestonburg. Same location as S/N 11501G '), (2111, 4682, 2111, '(301) 932-5451-Roy', '301-399-2222 Dave Mi', 'Acton Lane', '', 'Waldorf', 'MD', '20604', '7:00 am - 5:00 pm', 'Take 495 S to Exit #7A Route 5 (Branch Ave) toward Waldorf. Take Rt. 301S. In Waldorf go 4 lights and make left onto Acton Lane (by Walmart). Go straight through stop light and RR tracks. Site on left side. Concrete Store - Go in and ask for lab. '), (2112, 4683, 2112, '(502) 351-3118', '(502) 351-3110 Fax', '1026 S. Wilson Road', '', 'Radcliff', 'KY', '40160', '7:00-4:30', 'From Bluegrass Parkway take Rt. 31 West onto Radcliff At red light by Volkwagon Dealer turn left on Vine St (R144W) At next light turn left on S. Wilson Road. Go 2 blocks, site on left. Lab is downstairs. '), (2113, 4684, 2113, '(814) 269-2783', '(814) 269-2549 (Greg', '1450 Scalp Avenue', '', 'Johnstown', 'PA', '15904', '', ' '), (2114, 4685, 2114, '412-287-0659 Dave Ce', '412-341-2710 Fax', '50 1/2 Wood Lawn Avenue', '', 'Washington', 'PA', '', '8:00 - 5:00', ' 279 South, Veteran\'s Brige, 579 for left lane through Liberty Tunnels West Liberty Avenue, Eat & Park, turn left on Pioneer, take first right McNeilly Road for 1/2 mile, first red light, yellow building, 3 story, driveway on right hand side '), (2115, 4686, 2115, '(610) 433-6871', '(610) 433-7594 Fax', '925 N. Jerome Street', '', 'Allentown', 'PA', '18109-1927', '8:00am - 4:30pm', '(North) Airport side of Allentown. Rt. 22E to Airport Road (Rt. 987) Follow Airport Road south to Union Blvd. Make left onto Union. Go 2-3 blocks, look for Top Diner on left. Turn left onto Jerome St. beside diner. Go 1 block, site in corner of building on right. '), (2116, 4687, 2116, '330-683-5060 Ext. 18', '330-683-0446 Fax', 'Building C', '510 Collins Blvd.', 'Orrville', 'OH', '44667', '', 'Take I-76 to Exit 7, then take 57 South about 12 miles to Collins Rd. ( Orrville Industrial Park ) Go to Yield sign and turn left. Big gray building on left. '), (2117, 4688, 2117, '757-874-4140', '(757) 886-0442 Fax', '700 Shields Road', '', 'Newport News', 'VA', '23602', '7:00 am - 5:00 pm', 'Take 64 East thru Williamsburg to Fort Hustis / Yorktown Exit #255B onto Jefferson (Rt. 143W) Go 4 miles, make right onto Industrial Park Road. Turn right on Shields Road. Site on right, about 2 blocks. Take 2nd entrance - lab at back corner - white metal building. '), (2118, 4689, 2118, '(814) 432-2118', '(814) 432-5342 Fax', 'Plant #2', '191 Howard Street', 'Franklin', 'PA', '16323', '8:00 - 5:30 office/ 7:00 - 3:00 Plant', 'Take 38 North to 322 West to Franklin. Rt. 322 goes through Franklin and make 2 right hand turns in town. Go pass McDonalds and across bridge. Make very 1st immediate left BEFORE railroad tracks (Howard Street). (Was the old CPT plant) Go along river to truck door by Precision Technologies. Site inside on left. Can drive on inside building to park. '), (2119, 4690, 2119, '(304) 645-4056', '(304) 645-4489 Fax', '425 1/2 N Jefferson St.', '', 'Lewisburg', 'WV', '24901-1149', '7:30 am - 5:00 pm', 'Take 64E to Lewisburg Exit - Take Rt. 219 South (Exit #169) for about 1 mile (Ford Dealer on left) Mountaineer on right in brick building. Sign says Brachenrich & Associates. Lab in gray building in back. '), (2120, 4691, 2120, '(518) 238-2915', '(518) 238-2614 Fax', '', '', 'Cohoes', 'NY', '12047', '', 'Take I-90 East to Albany Exit #23. Take I-297 North for 10-12 miles Can see office from Rt. 787. Go 3 lights - Turn right onto bridge - Turn rith again immediatley onto Oliver Street. (no sign) which runs parallel with Rt. 787. Go to end. Office near Safe Storage Building (one story) '), (2121, 4692, 2121, '(606) 248-0133', '', '', '', 'Middlesboro', 'OH', '40965', '', 'Cumberland Gap Project Office 1/2 mile south on US Route 25 East '), (2122, 4693, 2122, '814-861-4120-Disconn', '814-861-5118 Fax', '3697 N. Atherton St', 'Port Matilda Hwy.', 'Port Matilda', 'PA', '16870', '7:00 am - 5:00 pm', 'Rt 322 half way between State College and Port Matilda 322E thru Port matilda across Skytop Mt. Cross Rt 550 Bridge 322 entrance on left Call Larry if you need better directions '), (2123, 4694, 2123, '(502) 456-6930', '(502) 456-4298 Fax', '1440 Selinda Ave.', '', 'Louisville', 'KY', '40213', '8:00-5:00 Office 7:00-5:00 Site', 'I-71 W to Rt. 264S. Exit at Poplar Level Rd. Exit #14 Go through 1 light on overpass. Sign for IMI on 2nd overpass. Turn left at bottom of overpass onto Selinda Ave. Site: Brick building straight ahead. Lab is on right by tower. '), (2124, 4695, 2124, '724-545-7850', '', '233 Northpark Drive', 'West Hills Industrial Park', 'Kittanning', 'PA', '16201', '8:00 - 5:00', 'Take I-80 West to 79 South, follow to 422 East to West Hills Exit. Go to stop sign at intersection, Turn Left, at next stop sign, turn right. You will be on Northpark Drive, but there is no sign. Pass Dr. Sotos office on left, next building on left. Gray cement building with lots of glass. '), (2125, 4696, 2125, '(740) 373-0296', '', '209 Putman Ave., Suite B', '', 'Marietta ', 'OH', '45750', '', 'Rt. 7 South. Cross Muskingam River Bridge. Turn right after bridge then right again onto Gilman Road. Site 1 mile ahead on right in orange trailer. '), (2126, 4697, 2126, '(757) 543-8832', '(757) 545-8933 Fax', 'Foot of Ohio Street', '', 'Chesapeake', 'VA', '23324', '7:00 am - 3:30 pm', 'Take I-17S to I-64E to Exit #291A, I-464N to Exit #4B, Poindexter Street (Rt. 337W). At light make right onto Truxton Street. Go to \"T\", turn left on Ohio Street. Cross RR tracks. Gate on right. Go to trailer on right. '), (2127, 4698, 2127, '(800) 952-6460', '(502) 348-7709 Fax', 'Spencer Mattingly Lane, Ind.', '', 'Bardstown', 'KY', '', '', '30 miles SE of Louisville. Exit #112 to Rt. 245 Louisville. Exit #16 off of 264. When in Bardstown go thru 4 stop lights in a mile. Pass stone quarry on right, go thru light & over RR. Go 1/2 mile and take road to left. 1/2 mile Spencer/Mattingly Lane. '), (2128, 4699, 2128, '(276) 322-5467', '(276) 322-1510 Fax', 'Bluefield Industrial Park', 'Rt. 720', 'Bluefield', 'VA', '24605', '8:00 - 5:00', 'I-77S take Exit #1 toward Bluefield. Do not go through tunnel. (John Nash Blvd) to \"T\". Turn left on Rt. 460. Go 3 lights, look for Sam\'s & Walmart. 2nd exit after that is Rt. 720. Make left past golf course. Go under Rt. 460, take first right (welding supply). Go under 460 again. Last 3 buildings on right. '), (2129, 4700, 2129, '(513) 831-8092', '(513) 831-7032 Fax', '#16 State Route 126', '', 'Loveland', 'OH', '45140', '7:30-5:00 (Flexible)', 'From 71 South Exit #17A. 275E to Exit #54 Wards Corner Road Turn irght onto Wards Corner Road (toward Miamiville?) Go to 4-way intersection, turn irght onto Rt. 126 Go about 2 1/2 miles. Site on right - Old barn-like buidlings Machine is in small building to left. '), (2130, 4701, 2130, '240-876-6724', '', '451 Hungerford Dr, Suite 113', '', 'Rockville', 'MD', '20850', '8:00am - 5:00pm', ' 95 South to 495 West, to 355 North to 451 Hungerford(355) '), (2131, 4702, 2131, '443-885-3815', '410-319-3843 Fax', 'Dept. of Civil Engineering', '5200 Perring Parkway', 'Baltimore ', 'MD', '21251', '', ' '), (2132, 4703, 2132, '814-224-6011', '814-224-2121 Phone', 'JOB SITE', '', 'Roaring Spring', 'PA', '', '', ' Will probably not need calibrated in 1998 - jacks were rented from another company by New Enterprise. See work order for more information.'), (2133, 4704, 2133, '(304) 387-2700 ext 3', '', '5th & Harrison Streets', 'PO Box 309', 'Newell', 'WV', '26050', '8:00-5:00 Office / 7:00 - 3:30 Job Site', 'Take I-70 West to Exit #225 Bridgeport. Take 7N to East Liverpool. Get on 30E - cross bridge. Bear right. At stop make left onto Rt. 2 South. Follow through city to Newell. Just past Dodge dealer make right onto 5th street. Go 3 blocks onto Harrison Street. Main entrance on 5th and Harrison. '), (2134, 4705, 2134, '740-829-4557/740-829', '740-829-4014 Fax', '47201 County Rd 273', '', 'Conesville', 'OH', '43011', '7:30am - 5:30pm (Mon-Thurs)', ' From Columbus, Route 16 East to Route 83 South 4.5 miles to flashing light. 5 miles on left From Coshocton, Route 16 West to Route 83 South 4.5 miles to flashing lights. 5 miles on left '), (2135, 4706, 2135, '703-263-0400', '703-263-9024 Fax', '14221A Willard Road, St 500', '', 'Chantilly', 'VA', '20151', '7:00am - 5:00pm', ' I-66 exit 53 towards VA-38 (Dulles Airport) Right onto SR-28 ( Sully Rd) right onto Willard Rd '), (2136, 4707, 2136, '(716) 894-2255', '', '2255 Bailey Ave.', '', 'Buffalo', 'NY', '14211', '', 'From Lancaster take Rt. 33 to Buffalo and go to Suffolk Exit. Turn left and go to next light and turn right. Follow this street to Bailey Ave (Rt. 62) and turn left onto Bailey. Go approx. 2 1/2 miles in building on left with steel gate. Watch for directions to front office. (Bailey is in a BAD section of town) '), (2137, 4708, 2137, '(301) 967-5756 Jeff ', '', '8711 West Phalia RD', '', 'Upper Marlboro', 'MD', '20772', '6:30-3:30', 'Take I-95 / I-495, off at Exit 11 (Get into left lane at light) Watch for West Phalia RD. (Go 1/2 mile) Watch for site (watch for Murrys Steaks). Call on site (Danny Arbough) (301) 967-5721. Invoice to: Accounts Payable, PO Box 37215 Washington, DC 20013-7215'), (2138, 4709, 2138, '(610) 489-2646', '(610) 489-4195 Fax', '430 Bridge Street', '', 'Rahns', 'PA', '19426', '7:00 a.m. - 5:00 p.m.', 'Take 76E - Morgantown Exit #22. Take Rt. 10S to Rt. 23E to Rt. 100N to Pottstown to 422E - to Rt. 29N by McDonalds make right, get in left land and stay on 29. At corner of Rt. 113, site on right. '), (2139, 4710, 2139, '(540) 546-5118', '(540) 546-1202', 'Rt. 2 Industrial Park', '', 'Pennington Gap', 'VA', '24277', '', 'Route 421S. through Peninton Gap. Turn Right at Rite Aide Store. Take 58 Right - 1.9 Miles. Route 638 turn Left Industrial Park on Right. '), (2140, 4711, 2140, '513-922-1125', '513-922-1520 Fax', '3640 Muddy Creek Road', '', 'Cincinnati', 'OH', '45238', '8:00am - 5:00pm ', 'I-74 exit 14, Montana Avenue turn left. Boudinot Avenue turn left, Werk Road turn right, Glenmore Avenue turn left, Muddy Creek turn right '), (2141, 4712, 2141, '718-526-9700', '914-490-2449 Vincent', '143-05 Liberty Ave', '', 'Jamaica', 'NY', '11435', '5:00am - ', ' 80 East Gross GW Bridge to 95 North until white stone bridge stay right. Van Wick Express-to Exit 4 Liberty Ave make a left & go 2 blocks red brick on left '), (2142, 4713, 2142, '(724) 258-6900', '(724) 258-8075 Fax', '1101 Railroad Street', '', 'Monongahela', 'PA', '15063', '7:30 am - 4:00 pm', 'I-79S to 70 East. 70 East to Exit # 35 (Rt. 481) into Monongahela. Make left onto Main Street. Go 10-11 blocks. Turn right on 11th Street Cross RR tracks. Rt 136 Dry Run Left Eat N Park, Taco Bell Conv LIght Make Right - 519 - 5 mile '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (2143, 4714, 2143, '724-342-6851 x1285', '724-983-2226 Fax', '1 Council Avenue', '', 'Wheatland', 'PA', '16161-0608', '8:00 am - 5:00 pm', ' I-80, Exit 4, merge onto SR-60 (West), at SR-60 SR18 Exit, turn off ramp, bear right onto Braodway Avenue, continue on Victor Posner Blvd. (Broadway Road), bear left on Broadway Road, bear left onto SR-718 (Council Street) '), (2144, 4715, 2144, '610-366-7120 x 101 D', '717-458-0801Fax/610-', '941 Marcon Blvd', 'Suite 801', 'Allentown', 'PA', '18109', '7:00 am - 5:00 pm M-F', 'I-80 East, Exit 277, North on NE PA Tpke, bear right (North-West) onto ramp, *Toll Road*, Merge onto I-476 (NE Extension Penn Tpke), stay on I-476 South, *Toll Road*, at I-476, Exit 56 bear right (West) onto US-22. US-22, I-78 Exit, continue west, merge onto I-78 (US - 22), continue East on US-22, at split on 22 take first Exit Airport Road North, at first light turn left onto Postal Road, take first left on Marcon Blvd. Formerly Advantage Engineering, LLC'), (2145, 4716, 2145, '(419) 424-8222 / 419', '(419) 424-5208 Fax', '12370 Jackson Twp Road 172', '', 'Findlay', 'OH', '45839', '', 'Main Street past Olive Street Plant, over bridge to US 75, Twp. Road 172 on left about 1 mile past bridge '), (2146, 4717, 2146, '', '', 'Main Street', '', 'Martin', 'KY', '41649', '7:30 am-5:00 pm / 7:30 am-5:00 pm Lab', 'SEE MAP '), (2147, 4718, 2147, '606-436-8973/606-436', '606-436-8903 Acct./6', 'East Kentucky Plant', '610 Trus Joist Lane', 'Chavies', 'KY', '41727', '', '23 south, 15 north from Hazard, 6 miles on left Once you get into Jackson you should be about 25 mi from plant. Big sign for Coal Fields Industrial Park on right. Turn there and it will be the first plant you come to. Go to the scalehouse to have them call John on radio Ch 2. 8/05 Broken wire on load cell S/N 1018414. Repaired In-house & 9/05 Load Cells S/N 1018414, S/N 952059, S/N 959278, S/N 108555'), (2148, 4719, 2148, '(703) 713-1900', '(703) 713-1910 Fax', '13750 Sunrise Valley Drive', '', 'Herndon', 'VA', '20171', '', '(Near Dulles Airport) Take 70S to Frederick Exit - US Rt. 15S to Leesburg. Take Rt. 7 about 506 miles to Rt. 28. Follow 28S Go right.) Cross South to Toll Road to Dulles. S 28 to 1st stop light. Go left onto Frying Pan Rd (Rt. 608E) then take left onto Horse Pen Road. Site next to Hyall Hotel on left. Brown brick building. 28N before airport, Frying Pan RD right 2 blocks left on Sunrise Valley DR on left at neck'), (2149, 4720, 2149, '(717) 787-1910', '', '81 Lab Lane ', '', 'Harrisburg', 'PA', '17110', '8:00 am - 4:00 pm', ' Rt. 322 E. to Harrisburg. Go over Rt. 81. Get on Rt. 22 E. pass light at Farm Show. Pass 1st street. Keep going immediately before bridge (look for blue sign). Yellow brick buidling on left. Park under the Bridge Arches. (Market Street is too far) ***From 83 N take 13th St. Exit. Make right at end of ramp. Left at light onto Paxton. Next light make right onto Cameron (Rt. 230 N)'), (2150, 4721, 2150, '(717) 787-6546 or (7', '(717) 783-5955 Fax', '81 Lab Lane ', 'DGS Annex Complex', 'Harrisburg', 'PA', '17110', '8:00 am - 4:00 pm', 'Rt. 322 E. to Harrisburg. Go over Rt. 81. Get on Rt. 22 E. pass light at Farm Show. Pass 1st street. Keep going immediately before bridge (look for blue sign). Yellow brick buidling on left. Park under the Bridge Arches. (Market Street is too far) ***From 83 N take 13th St. Exit. Make right at end of ramp. Left at light onto Paxton.Next light make right onto CameronRt.230N e-mail Invoice to chneely@state.pa.us GO TO OFFICE FOR VISITORS PASS'), (2151, 4722, 2151, '330-567-2145 Ext. 82', '330-567-2260 Fax/330', '453 W. McConkey Street', '', 'Shreve', 'OH', '44676', '7:30 am - 4:00 pm ', '3 South, 2 1/2 miles left on 226, 9 miles to Shreve, Cerco truck route, Robinson Street, right before trax, left on Main , then right on Liberty , 2 blocks, left on Orchard. 605 turn right N, Carter Lumber on right on Rt. 3 Federal ID# 90-0066311'), (2152, 4723, 2152, '734-522-0300', '734-522-0308 Fax', '32121 Schoolcraft Road', '', 'Livonia', 'MI', '48150', '', 'I-75 East, entering MI, merge I-275 North (I-275/Flint), merge I-96 (Jefferies Fwy)(East), at I-96, Exit 174 (Farmington Road) bear left onto Schoolcraft Road '), (2153, 4724, 2153, '614-679-3793 Annette', '614-778-4305 Jack ce', 'Job Site ', '', 'Hamburg', 'PA', '', '', 'Rte 80 East to Rte 81 South to Rte 78 East to Hamburg exit, end of exit ramp bear left, go 1/4 mile turn left at Getty Gas Station, follow road to the end, at stop sign turn left, travel two miles to 4-way intersection and turn left on Monument Road, go 1/4 mile to Batch Plant on right '), (2154, 4725, 2154, '(304) 797-1411 Ext. ', '(304) 797-0043 Fax', '4996 Freedom Way', '', 'Weirton', 'WV', '26062', '8:00 am - 4:00 pm ', 'Rt. 22 W to Wierton, Exit #2, Main Street. Immediately get in left hand lane at 1st light. Turn left onto Freedom Way. Pass Elby\'s Big Boy. Go pass Rollcoaters. Go under blue railroad bridge in gray cinder block building immediately on right. '), (2155, 4726, 2155, '(814) 774-2664', '814-774-5394 Fax New', '432 Noble Road', 'PO Box 192', 'Girard', 'PA', '16417', '7:00 am - 4:30 pm', 'Rt. 20W thru Girard. Turn Left on Old Ridge Road before bridge. Turn left onto Noble Rd. Blue building '), (2156, 4727, 2156, '412-787-7220', '412-787-3499 Fax', '500 Beaver Grade Road', '', 'Coraopolis', 'PA', '15108', '8:00am-5:00pm Off./7:00am-4:00pmLab', 'Take Rt. 60 North Exit, at light turn left. On Rt. 60, go 3/10 mile to red light. Turn right at car wash. Go down hill to stop sign. Site 1,000 yards on left. '), (2157, 4728, 2157, '734-453-5123', '734-453-5201 Fax', '14496 Sheldon Road, Suite 200', '', 'Plymouth', 'MI', '48170', '8:00-5:00', ' I-75 East, merge onto I-275 North, merge onto SR-14 West, at SR-14, Exit 20 (Sheldon Road/Plymouth), turn off ramp onto Sheldon Road Formally:Inspecsol Engineering, Inc. Formerly CRA- Conestoga-Rovers & Associates'), (2158, 4729, 2158, '540-332-9161', '540-332-9181 Fax', 'Commerce Road', 'Rt. 11 Bypass', 'Staunton', 'VA', '24402-2249', '', '79 South to 33 East to 250 into Staunton '), (2159, 4730, 2159, '412-973-7234', '717-664-0886 Fax', 'Lebanon/Lancaster Exit ', '3042 Lebanon Road', 'Manheim', 'PA', '17545', '', 'Turnpike to Lebanon/Lancaster exit, mile post 266, go through toll booth, look for big white building, get in left lane, make left on Route 72 North, 100 feet make another left '), (2160, 4731, 2160, '(304) 344-0821/304-3', '(304) 342-4711', '912 Morris Street', '', 'Charleston', 'WV', '25301', '7:30 am - 5:00 pm', ' '), (2161, 4732, 2161, '570-784-4100 x381', '570-784-4106 Fax', '480 West, Fifth Street', '', 'Bloomsburg', 'PA', '17815', '8:00am=5:00pm/7:00am-4:00pm Job', ' Take 80 East for 185.9 miles to Exit 232/42 Mall Blvd. Go 1.9 miles and take left to Route 11 North to Railroad Street. (Go through one red light.) On Railroad at second stop sign go right. Short distance and plant is on left. '), (2162, 4733, 2162, '', '', '', '', '', '', '', '', ' '), (2163, 4734, 2163, '', '', '', '', '', '', '', '', ' '), (2164, 4735, 2164, '', '', '', '', '', '', '', '', ' '), (2165, 4736, 2165, '', '', '', '', '', '', '', '', ' '), (2166, 4737, 2166, '', '', '', '', '', '', '', '', ' '), (2167, 4738, 2167, '', '', '', '', '', '', '', '', ' '), (2168, 4739, 2168, '', '', '', '', '', 'OH', '44139', '', ' '), (2169, 4740, 2169, '', '', '', '', '', '', '', '', ' '), (2170, 4741, 2170, '', '', '', '', '', '', '', '', ' '), (2171, 4742, 2171, '', '', '', '', '', '', '', '', ' '), (2172, 4743, 2172, '', '', '', '', '', '', '', '', 'Billing Address: Attn: Marcos O. Arocho Ramirez PO Box 365116 San Juan, PR 00936-3116 787-761-2570 787-748-6970 Fax '), (2173, 4744, 2173, '', '', '', '', '', '', '', '', ' '), (2174, 4745, 2174, '', '', '', '', '', '', '', '', ' Follow the yellow brick road '), (2175, 4746, 2175, '', '', '', '', '', '', '', '', 'Billing Address: Box 198 Station #6 Ponce, PR 00731 '), (2176, 4747, 2176, '', '', '', '', '', '', '', '', ' '), (2177, 4748, 2177, '', '', '', '', '', '', '', '', 'Parkway to Rt 22 East, past Beckwith Machinery & Mall, go up hill Brick Building on right side '), (2178, 4749, 2178, '', '', '', '', '', '', '', '', ' '), (2179, 4750, 2179, '', '', '', '', '', '', '', '', ' '), (2180, 4751, 2180, '', '', '', '', '', 'PA', '', '', ' '), (2181, 4752, 2181, '', '', '', '', '', '', '', '', ' '), (2182, 4753, 2182, '', '', '', '', '', '', '', '', ' '), (2183, 4754, 2183, '', '', '', '', '', '', '', '', ' '), (2184, 4755, 2184, '', '', '', '', '', '', '', '', ' '), (2185, 4756, 2185, '', '', '', '', '', 'OH', '', '', ' '), (2186, 4757, 2186, '', '', '', '', '', '', '', '', ' '), (2187, 4758, 2187, '', '', '', '', '', '', '', '', ' '), (2188, 4759, 2188, '', '', '', '', '', '', '', '', ' '), (2189, 4760, 2189, '', '', '', '', '', '', '', '', ' '), (2190, 4761, 2190, '', '', '', '', '', '', '', '', ' '), (2191, 4762, 2191, '', '', '', '', '', '', '', '', ' '), (2192, 4763, 2192, '786-975-9573', '305-365-9376 Fax', '2517 NW 21 Terrace, Unit 9', '', 'Miami', 'FL', '33142', '', ' '), (2193, 4764, 2193, '814-330-2435 Curtis', '', '712 Route 1830', '', 'Brookville', 'PA', '15825', '', ' '), (2194, 4765, 2194, '713-336-1300(O) 832-', '713-336-1487 Fax', '3100 S. Sam Houston Pky E.', '', 'Houston ', 'TX', '77047', '', ' '), (2195, 4766, 2195, '', '', '', '', '', '', '', '', ' '), (2196, 4767, 2196, '316-942-2453', '316-942-2555 Fax', '1775 Southwest St.', '', 'Wichita ', 'KS', '67213', '8:00-5:00', ' '), (2197, 4768, 2197, '317-875-7000', '317-876-3705 Fax', '4105 West 99th Street', '', 'Carmel', 'IN', '46032', '7:00 am - 5:00 pm ', ' Exit 27, Mich. Road, North less than 1 mile car dealer, turn left on 99th street, 1st brick on left before stop sign '), (2198, 4769, 2198, '434-296-7181', '434-220-0129 Fax', '1000 Harris Street', '', 'Charlottesville', 'VA', '22903', '', ' I-81, Exit 221, merge onto I-64 East, Exit 118, bear right (North-East), onto US-29, continue North on US-250 (US-29), right (South-West), onto Harris Street '), (2199, 4770, 2199, '(412) 350-5929', '', 'Fourth and Ross Streets', '', 'Pittsburgh', 'PA', '15219', '7:30-3:30 (early morn or 1:00 best)', 'Downtown Pittsburgh - go 4 lights past Mellon Center, past jail, Go to 2nd light and make left onto 4th street. 2 Garage doors roll up next to street. Park there. Ring doorbell at lab. '), (2200, 4771, 2200, '330-618-6979 Jon', '330-628-6674 Fax', '3225 Mogadore Road', '', 'Akron', 'OH', '44312', '7am-5pm Office / 7am-10pm Lab', 'Route 76E. Take Exit #29 for SR 532 South. Turn right at light at bottom of ramp. Pass light at Newton St.. Go to stop light (several miles). This is the center of town - turn right onto Mogadore Road. Go 1-2 miles on right. Machine is on lower level around the back fabrication building See brochure in files for other contacts, etc. Also have Forney QC-150 Compression Machine (not in use)'), (2201, 4772, 2201, '304-539-2680 Ron/304', '304-766-8105 Fax', 'US 460', '', 'Bluefield', 'WV', '', '7:00 am - 5:00 pm ', ' US 460, Exit US-52, as soon as off exit will see bridge, machine on side street '), (2202, 4773, 2202, '520-399-1925 Ron', '616-940-3760 Fax', 'Formerly STS Consultants LTD', '3839 E. Paris, Suite 301', 'Grand Rapids', 'MI', '49512', '8:00 am - 5:00 pm', '96 W to 28th Street Exit 43A to Broadmoor, make left, Building on right with red stripe on it '), (2203, 4774, 2203, '703-392-7400', '703-330-1285 Fax', '8551 Sudley Road', '', 'Manassas', 'VA', '20110', '8:00 am - 5:00 pm', ' Rt 495 to 66W (Exit 49 west towards Manassas) travel on 66W about 14 miles and take exit 47A towards city of Manassas. This road is also called Sudley Road. Site address is 8551 Sudley Road **62 miles from Frederick, MD** '), (2204, 4775, 2204, '845-496-1600 x 216 E', '845-496-1398 Fax ', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '7:00 am - 5:00 pm ', ' I-84, Exit 5 (Maybrook), turn onto Route 208 South (towards Maybrook), stay on Route 208 South through Maybrook and well beyond, until you come to an intersection with Route 207, take a right and then a quick left back onto Route 208 South, continue on Route 208 South until you go under a tunnel, shortly after the tunnel you will see the Advance Testing sign on your left, the driveway is before the sign'), (2205, 4776, 2205, '845-496-1600', '845-496-1398 Fax ', '3348 Route 208', '', 'Campbell Hall', 'NY', '10916', '7:00 am - 5:00 pm ', ' I-84, Exit 5 (Maybrook), turn onto Route 208 South (towards Maybrook), stay on Route 208 South through Maybrook and well beyond, until you come to an intersection with Route 207, take a right and then a quick left back onto Route 208 South, continue on Route 208 South until you go under a tunnel, shortly after the tunnel you will see the Advance Testing sign on your left, the driveway is before the sign'), (2206, 4777, 2206, '(513) 896-2066 / 206', '(513) 896-2079 Fax', '2650 Hamilton-Eaton Road', '', 'New Miami', 'OH', '45012', '8:00 am - 5:00 pm Mon - Thurs ', 'I-75, Rt. 63 Monroe. Turn right and go south (left) Rt. 4 for 5 miles. At High Street make right. 3/4 mile on right on 127 go North. Need last years run sheet for instructions. Take jack '), (2207, 4778, 2207, '419-720-5254', '419-720-5255 Fax', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '8:00 am - 4:30 pm', ' Located on Bancroft Street near Ottawa Hills, between Reynolds and Talmadge, North side of the street. Large sign out front of brick building says, JAJ Company, Lab is around the side door, or you may come through the front. '), (2208, 4779, 2208, '419-720-5254', '419-720-5255 Fax', '4756 West Bancroft St.', '', 'Toledo', 'OH', '43615', '9:00am - 5:00pm/8:00am-4:00pm Job ', ' Located on Bancroft Street near Ottawa Hills, between Reynolds and Talmadge, North side of the street. Large sign out front of brick building says, JAJ Company, Lab is around the side door, or you may come through the front. **Putting in archived database**'), (2209, 4780, 2209, '724-459-5950 x 328 C', '724-459-3890 Fax', '9558 Route 22 West', '', 'Blairsville', 'PA', '15717', '4-Aug', 'I 79 to 279N towards Ft Pitt Tunnels Stay in Right hand lane through tunnels, bear right onto 376E towards Monroeville. Follow until you come to 22 E. follow 22 approx 20 miles will be on left Before you get to Blairsville 422 E to Indiana - 80 E, 38S into Butler - 422E into Indiana, Get on Bypass not RUS-RT 119 S to RT 22 W, short distance on right side '), (2210, 4781, 2210, '(304) 755-8228', '(304) 755-8229 Fax', 'HUB Industrial Park', '', 'Nitro', 'WV', '25143', '8:00 am - 5:00 pm', 'From Logan take 119N toward Charleston. I-64 West, Exit #45 for Nitro (Rt. 25) Turn left at end of ramp at light. Get in right lane. At 3rd light turn right onto Pickens Road. Cross RR tracks. At fork look for sign for Ackenheil, bear left. Cross RR tracks. Turn right by big Ackenheil sign. At end of road. Brown metal building on right. '), (2211, 4782, 2211, '(724) 538-1114', 'None', '1559 Mars-Evans City Road', '', 'Evans City', 'PA', '16033-9362', 'M-TH 6:30 A to 4:30 P', 'Take 79 South to Zelienople Exit. Turn right at end of exit ramp (follow signs to Zelienople). Turn left at stop sign onto Rt. 19, and left at first traffic light onto Rt. 68. Take Rt. 68 into Evans City. At 1st traffic light, turn right onto Mars-Evans City Road. Go about 1 mile - watch for John\'s Bar on your right. Tall tan building on your left across from John\'s Bar. '), (2212, 4783, 2212, '937-746-3634', '937-746-3635 Fax', '835 N. Main Street', '', 'Franklin', 'OH', '45005', '', ' 1/08 Ship, UPS Red Next Day Air AM, Acct. # 469196, Insure $1,700'), (2213, 4784, 2213, '317-796-3507', '317-870-0314 Fax', '4420 Midfield Road (Airport)', '', 'Indianapolis', 'IN', '46032', '8:00 am - 4:00 pm ', ' 05/06/06 Call Sam Prater 317-796-3057 For directions Dan Dilk 317-753-3725/317-875-7040 '), (2214, 4785, 2214, '260-484-0813 Sam Cal', '260-413-0581 Additio', 'Fort Wayne Office', '363 East Airport Road', 'Kendallville', 'IN', '46755', '', '69S to US 6W, north on state rd 3 about 1 mile, airport rd on right NE corner of Hanger next to terminal building. 208 E Collins, Ft. Wayne, IN 46852 '), (2215, 4786, 2215, '574-289-8378/574-276', '', '3725 Foundation Court', '', 'South Bend', 'IN', '46628', '', ' '), (2216, 4787, 2216, '502-639-5260', '330-252-2421 Fax', '102 North Street', '', 'Akron', 'OH ', '', '8:00 am - 5:00 pm ', ' I-76 East to 59th Street Exit, long exit to Howard Street, make left at Howard Street at light, take Howard to bottom of hill, turn right at light at North Street, go on North Street, will see job site on right past the bridge '), (2217, 4788, 2217, '740-829-4557/740-829', '740-829-4014 Fax', '47201 County Rd 273', '', 'Conesville', 'OH', '43011', '7:30am - 5:30pm (Mon-Thurs)', ' From Columbus, Route 16 East to Route 83 South 4.5 miles to flashing light. 5 miles on left From Coshocton, Route 16 West to Route 83 South 4.5 miles to flashing lights. 5 miles on left '), (2218, 4789, 2218, '(740) 598-4053', '(740) 598-4378 Fax', 'Cardinal Plant', 'Fly Ash Dam Project', 'Brillant', 'OH', '', '', '7/30/98 Machine will get relocated back to original location (Chesire?) by next year. 5/00 THIS MACHINE WAS MOVED TO BRIDGMAN FOR A SPECIAL ONE TIME DEAL NEED AS FOUND READINGS'), (2219, 4790, 2219, '540-248-8000', '540-248-9771 Fax', 'One Razor Blade Lane', '', 'Verona', 'VA', '24482', '8:00 am to 5:00 pm ', ' I-81, Exit 235, merge onto SR-256 (Weyers Cave Road), left onto US-11 (Lee Highway) '), (2220, 4791, 2220, '(216) 362-1850 ', '(216) 898-6307 Fax', '11830 Brookpark Road', '', 'Cleveland', 'OH', '44130-1177', '8:00am-3:00pm/7:00am-3:00pm Job', 'From Rt. 71 take Rt. 480 E to Brookpark /W 130th St / W 150th St. Exit #12. Turn left (East) on Brookpark (Rt. 17). Go 1 mile. Site on left across from Hugh GM plant. Go to 2nd building. These use Red Lion IMS digital loading indicators make sure you have info if necessary to adjust. (Info in files)'), (2221, 4792, 2221, '614-443-0123', '614-443-4001 Fax ', 'Haul Road ', '', 'Columbus', 'OH', '43223', '7:00 am - 5:00 pm', 'From the East: Take I-70 West to I-71 South. Go South on I-71 to 2nd exit (Frank Road/Rt 104). Follow Exit Ramp turning to the right, as you merge into roadway get into the far left lane before the first light. At the first light turn left onto Harmon Avenue. F.W Sloter Concrete is on the left less than 1/4 mile '), (2222, 4793, 2222, '610-313-3227', '610-313-9667', '401 E. Fourth Street, Bldg 12B', '', 'Bridgeport', 'PA', '19405', '7:30-5:00 ', ' '), (2223, 4794, 2223, '(724) 663-7988', '(724) 663-4781 Guard', 'Bailey Mine', 'JOB SITE', 'Near Waynesburg', 'PA', '', 'Varies - call prior No Fridays unless necessary', 'From Washington, PA take Rt. 18 South to Rt. 231. At approx. 5-6 miles Rt. 231 vears north. DO NOT TAKE! Stay on road and go approx. 5 more miles to Bailey Mine. Go to guard shack. Can see batch plant from road - just inside gate. About 30 miles from Waynesburg. Very rural country. Call guard shack if any problems finding location. '), (2224, 4795, 2224, '', '', '', '', '', 'FL', '', '7:00-5:00 M-F', 'From Interstate 77 take Everharo to first intersection turn right on exit, go west on Everharo approximately 2 to 3 miles. Look for Rally\'s on left & Fisher Foods on right, take left at intersection, small white trailer on right past bank. Entrance to site is behind bank. Site is Canton Center. '), (2225, 4796, 2225, '513-539-4000', '', 'In Storage', '', 'Monroe', 'OH', '', '7:00 am-5:00 pm (M-Th)', ' '), (2226, 4797, 2226, '204-476-4771 Seth', '321-406-0536 Fax ', 'Viceroy West End ', '', 'Anguilla', 'BWI ', '', '8:00am to 6:00pm/8:00am-5:00pm Job ', ' Need lodging & Food Set Up before coming Flight to Island 8:55 PM Flight from Island 8:25 AM One Flight Each Way Only - Might have Mid Day Flights '), (2227, 4798, 2227, '734-464-6711 Robin', '(937) 435-5162 Fax', '37541 Schoolcraft Rd', '', 'Livonia', 'MI', '48150', '8:00 am - 5:00 pm', 'I-94 W to exit 177 State St., go south 2 lights, turn right on Airport Blvd. in buildings on left. Left end of building 771 Suite 1, says CESO on door '), (2228, 4799, 2228, '937-424-1011', '1-800-433-1840 Ron ', '6272 Executive Blvd.', '', 'Huber Heights', 'OH', '45424', '', ' I-70 W. to E. Exit 36 (OH-202 Huber Hts Exit) to Old Troy Pike turn right to Executive Blvd. **Send invoice & certificates to billing address '), (2229, 4800, 2229, '513-771-8471', '513-771-8475 Fax ', '11699 Chesterdale Road ', '', 'Cincinnati', 'OH', '45246', '', ' I-71 South to I-275 West ( towards I-75) Exit 44, Mosteller Road, left onto Mosteller, right onto East Kemper Road, right onto Chesterdale Road, building will be on the left hand side, approx. 1/4 mile (just past extended Stay) '), (2230, 4801, 2230, '724- 774-5100', '724-774-9140 Fax', '600 Railroad Street', '', 'Rochester', 'PA', '15074', '7:00am - 5:00pm', 'Take 68 West to Rochester. At Sheetz, make right - at 1st stop sign turn left onto New York Ave. Go down hill & across main road (Rt. 65). Take Spiral Bridge over RR tracks. At \"T\" turn right. Go 1/4 mile on right. '), (2231, 4802, 2231, '570-837-0430', '570-837-1591 Fax', '3612 Paxtonville Road ', '', 'Middleburg', 'PA', '17842', '7:00 am - 5:00 pm ', '80 West to Lewisburg, 15 South, 11-15 South, over green bridge, 522 South into Middleburg, 104 South 1/4 mile to big red building before Sunoco Market, Packstonville Road 3 1/2 miles on road big orange silo '), (2232, 4803, 2232, '440-245-6826 Ext. 21', '440-244-0414 Fax', '1305 Oberlin Ave', '', 'Lorain', 'OH', '44052', '700AM-5:00pm', ' '), (2233, 4804, 2233, '(517) 354-4111', '', '% Alpena Community College', '666 Johnston Street', 'Alpena', 'MI', '49707', '', 'Route 23 N - pass 32 - on way out of town. Cross bridge and pass General Hospital. At 1st light after hospital turn right onto Johnson. From corner - 3rd building on left. '), (2234, 4805, 2234, '(513) 242-3644', '(513) 242-7845 Fax', '5155 Fischer Place', '', 'Cincinnati', 'OH', '45217', '8:00 am - 4:30 pm', 'Take 75 South to Exit #7 for Norwood Lateral Expressway (Route 562). Take Paddock Rd. (Route 4S) and turn onto Tennessee at light. Make right at first light, Fischer Place. Site at end of street. '), (2235, 4806, 2235, '(513) 398-7300', '(513) 398-1997 Fax', '7300 Industrial Row Drive', '', 'Mason', 'OH', '45040', '8:00 am - 3:30 pm ', '75N to Exit #22. Go right (east) 3 miles Right on 42. At second light make left onto Western Row. Take next right onto Industrial Road. Tax ID # 58-2652780 Formerly WR Bonsal'), (2236, 4807, 2236, '937-236-8805 x 206 D', '937-237-9947 Fax / 9', '1220 Hillsmith Drive, Suite K', '', 'Cincinnati', 'OH', '45215', '8:00 am - 5:00 pm', ' I-275 (NW), Exit 43A (I-75/Cincinnati), merge I-75 South, I-75, Exit 14 (OH-126/Woodlawn/Evendale), left onto Glendale Milford Rd, left onto Chester, left onto Hillsmith Drive '), (2237, 4808, 2237, '304-725-9370 ', '304-728-5170 Fax', '165 Bradstone Lane ', '', 'Harpers Ferry', 'WV', '25425', '', 'Harpers Ferry & Fredricks, 2 bridge, 2 miles on left, Blair Road Citgo - 1/4 mile on left '), (2238, 4809, 2238, '440-327-3200', '440-327-3204 Fax', '7864 Root Road', '', 'North Ridgeville', 'OH', '44039', '', 'I-480, Exit 36, merge I-271 (I-480 North), continue North on I-480, at I-480 (I-480/Rock Side Road/Cleveland), Exit 1B, left onto Lorraine Road go to 3rd light (West) on Lorraine Road (go past turnpike entrance & movie drive-in), turn right onto Root Road, go thru stop sign, over RR tracks, 2nd Driveway on the left 3/10 New client, Bill went there on 3/24/2010, machine needs new crosshead gearing, quote for parts $3,200.00, client did not want '), (2239, 4810, 2239, '410-357-9683 Insp./7', '724-443-8733 Fax', 'Storage ', '', 'Saxonburg', 'PA', '16056', 'M-TH 7:00 am - 5:00 pm', ' '), (2240, 4811, 2240, '(304) 525-9485 / 724', '304-525-9481 Fax', '3520 Mount Union Road', '', 'Huntington', 'WV', '25701', '7:00 am - 5:00 pm', 'Take I-64, Exit #11 (Hal Greer Blvd) State Route 10 south approx. 1/2 mile to Mt. Union Road. Go approx. 1/4 mile (1st brick building on right) EQUIPMENT NEEDS DONE IN BARBOURSVILLE TESTING LAB\'S MACHINE - TURMAN\'S OFFICE IS UPSTAIRS IN THE SAME BUILDING AT BARBOURSVILLE TESTING Formerly Turman Construction Company '), (2241, 4812, 2241, '412-287-2123 Gary', '724-443-8733 Fax', '31st Street Bridge ', '', 'Pittsburgh', 'PA', '', '', ' Rt. 28, 31st street bridge '), (2242, 4813, 2242, '607- 778-5074', '607-778-5481 Fax ', '907 Upper Front Street ', '', 'Binghamton', 'NY', '13905', '', ' I-81, Exit 5, right onto US-11 (Front Street), to Upper Front Street '), (2243, 4814, 2243, '412-287-9903 Tracy C', '724-652-8290 Fax ', '2522 Pearl Buck Road', '', 'Bristol', 'PA', '19007', '7:00 am - 5:00 pm ', ' I-276, Exit 358, east on ramp (Delaware Valley Inter.) (US-13/Bristol/ Levittown/Delaware Valley), bear right onto US-13 (Bristol Byp.), turn right onto SR-413 (New Rodgers Road), turn left onto Ford Road, turn right onto Pearl Buck Road '), (2244, 4815, 2244, '717-444-3043', '717-444-9995 Fax', '1192 Perry Valley Road', '', 'Liverpool', 'PA', '17045', '8:00-4:30', ' Rt. 322 to Millerstown to Rt. 17 East to Route 11/15, turn right just before Rt. 11/15, turn right on St. Rt. 1010, go approx. 1/10 mile make a right on Perry Valley Road, go 2.6 miles West to site on left, no sign, look for rock '), (2245, 4816, 2245, '740-522-1144', '(614) 575-1307 Fax', '2000 West Main Street', '', 'Newark', 'OH', '43055', '8:00-5:00 (Office) 7:00-4:30 Lab', ' CALL FOR DIRECTIONS - WRITE DOWN! '), (2246, 4817, 2246, '', '', 'Main Street', '', 'Martin', 'KY', '41649', '7:30 am-5:00 pm / 7:30 am-5:00 pm Lab', 'SEE MAP '), (2247, 4818, 2247, '937-456-4539', '937-456-9247 Fax', '805 S. Franklin Street', 'PO Box 671', 'Eaton', 'OH', '45320', '7:30 am - 4:30 pm', 'I-70 to Exit 10, go South on US 127, left onto US 35, right onto SR 122, cross railroad tracks and building will be at the Northwest corner of the next road to the left. Tax Exempt Number: 3108 '), (2248, 4819, 2248, '(717) 755-2933', '(717) 757-1574 Fax', '3990 East Market Street', '', 'York', 'PA', '', '7:00-3:30 (can be later)', 'See files * Need to sign in Need 400K load cell 2% cal Attempted calibration with new digital on 10/10/97 Bill to: Cooper Industries Cooper Hand Tools Div. / Attn: Accounts Payable PO Box 251 Apex, NC 27502-0251'), (2249, 4820, 2249, '(804) 395-8265 Ext:', '(804) 395-8241 Fax', 'PO Box M', 'West Industrial Park', 'Farmville', 'VA', '23901', '', 'From Richmond, VA to Farmville from 460W. Stay on 460W, 1st exit to Farmville. Stop light go straight at intersection and go downtown. (Still on 460W) Pass Pizza Hut / Hospital. RR bridge overpass. Stop light - take right. Industrial park. 3 Carbone of America plants. '), (2250, 4821, 2250, '(216) 831-3800', '216-292-1465 Fax', '5185 Richmond Road', '', 'Bedford Heights', 'OH', '44146', '8:00am - 5:00pm', 'Take 480W to 217N to Miles Exit. Go 2 lights, make right on Richmond. '), (2251, 4822, 2251, '724-352-2200', '724-352-2290 Fax', '2900 South Noah Drive', '', 'Saxonburg', 'PA', '16056', '', ' I-80 West, Exit 29, merge onto SR 8 (William Flynn Highway) North '), (2252, 4823, 2252, '800-245-4042x557 Rud', '336-969-3566 Fax ', '2152 University Drive', '', 'Lemont Furnace', 'PA', '15456', '9:00 am - 4:00 pm ', ' Take US 119 to Uniontown, onto US-119, continue on Connellsville Road, turn right onto Edison Blvd. (University Drive) Look for big building with blue roof by light '), (2253, 4824, 2253, '937-428-6150/937-603', '937-428-6154 Fax', 'Dayton International Airport', '', 'Dayton ', 'OH', '45377', '7 am to 5 pm', 'Dayton Airport Ex. just past 75 Rt. 40 Turn Left at light to next light turn right on Dog Leg Road '), (2254, 4825, 2254, '859-277-5300 ext 32 ', '859-991-5265 Malcolm', 'Storage', '', 'Centerville', 'OH', '', '', ' CALL MALCOLM FOR DIRECTIONS - PER BILL ROBERTSON '), (2255, 4826, 2255, '937-428-6150', '937-428-6154', '112 Dennis Drive', '', 'Centerville', 'OH', '45459', '10:00-6:00 (O) 8:00-4:00 Site', 'I-75 South, Exit 118, merge I-64 (I-75) (East), at I-64, Exit 113, turn right onto US-27 (N Broadway), right onto Dennis Drive '), (2256, 4827, 2256, '434-296-7989 x 306 B', '434-293-7139 Fax', '1201 Five Springs Road ', ' ', 'Charlottesville', 'VA', '22902', '8:30 am to 5:30 pm ', ' I-64, Exit 121, at I-64, Exit 121, turn left at end of ramp for SR-20 / Scottsville Road South towards Scottsville, 1.4 miles , turn right onto Mill Creek Drive, right onto Avon Street Ext., left onto Southern Parkway, right onto Five Springs Road, arrive at 1201 Five Spring Road, Suite C at end of building CMI$#8217;s Manufacturing Center '), (2257, 4828, 2257, '(814) 472-7700 ext.', '(814) 472-4221 Fax', '725 West Triumph Street', '', 'Ebensburg', 'PA', '15931', '7:30 am - 4:30 pm', ' *** ISO Requested*** 422E to Ebensburg. At light turn left onto High Street. Go 2 1/2 blocks to BP station. Make left onto Marian Street. Go approx. 6 blocks to Highland. Make left onto Highland. Go 2-3 blocks - site on right. Lab in back of large white bldg. Cal 60, Weights, Magnetic Stand, Marshall Press Elevation 2140 Feet, Long. 78.725*W, Lat. 40.485*N Dead Weight Correction Value 0.9992'), (2258, 4829, 2258, '814-242-8918 Bruce', '', 'Storage', '', 'Ebensburg', 'PA', '15931', '', ' 80E Limestoneville Exit, Make left follow into Washintonville at red light straight through road on left to power plant - USG road to power plant job trailer to right. '), (2259, 4830, 2259, '(814) 472-7700 ', '(814) 472-4221 Fax', 'Storage ', '', 'Ebensburg', 'PA', '15419', '7:30 am - 4:30 pm', ' '), (2260, 4831, 2260, '(570) 327-6113 - dis', '', '2603 Reach Road', '', 'Williamsport', 'PA', '17701', '8:00 - 4:00 Office / 6:00 - 4:00 Job Site', 'Route 22 North Exit Reach Road. Left off ramp to \"T\". Turn Right. Second buliding on Right. '), (2261, 4832, 2261, '301-334-2305', '301-334-2305 Fax ', '10 N 3rd Street ', '', 'Oakland', 'MD', '21550', '8:00 am - 5:00 pm M-F', ' US-40 E / George C. Marshall Pkwy / National Pike toward Hopwood, turn slight left onto US-40 E / George C. Marshall Pkwy/ National Pike, continue to follow US-40 E / National Pike (Crossing into Maryland), turn slight right onto US-40, stay straight to US-219 / Garrett Hwy, continue to follow US-219, end at 10 N 3rd Street '), (2262, 4833, 2262, '330-567-2145 Ext. 82', '330-567-2260 Fax/330', '453 W. McConkey Street', '', 'Shreve', 'OH', '44676', '7:30 am - 4:00 pm ', '3 South, 2 1/2 miles left on 226, 9 miles to Shreve, Cerco truck route, Robinson Street, right before trax, left on Main , then right on Liberty , 2 blocks, left on Orchard. 605 turn right N, Carter Lumber on right on Rt. 3 Federal ID# 90-0066311'), (2263, 4834, 2263, '(616) 735-6500 x 539', '(616) 735-6700 FAX', '3079 3 Mile Road NW', 'PO Box 141637', 'Walker', 'MI', '49504', '8:30-5:00 Office/6:00AM-12:00AMshop', 'Take 96W towards Muskegon. Take Exit #28. At end of ramp turn left on Walker Ave. Go .4 miles. Turn right onto 3 mile road. Go 1 mile. Building on right - brown metal buildings Note: Building has no sign! Load in at concrete ramp on left side of building. See last year\'s run sheet'), (2264, 4835, 2264, '248-669-9886', '248-669-3533 Fax', '150 Landrow Drive', '', 'Wixom ', 'MI', '48393', '', ' '), (2265, 4836, 2265, '703-753-7832', '703-753-9648 Fax', '7201 Rail Line Court', 'Reference # 88', 'Gainesville', 'VA', '20155', '7:00 am - 3:00 pm', ' I-66 West to 29 north exit to Wellington Road (left) to Rail Line (left) '), (2266, 4837, 2266, '540-829-5695 Clint', '(540) 829-6325 Fax', '10496 Quarry Drive ', ' ', 'Mitchells', 'VA', '22729', '7:00am-5:00pm', '522 South around Culpepper to Rapidan Road. Follow until Quarry Road on Right. Turn Right on Quarry Road. DALRY/VIRG'), (2267, 4838, 2267, '(513) 771-8830', '', '2938 Crescentville Rd.', '', 'Cincinnati', 'OH', '45241', '', ' '), (2268, 4839, 2268, '410-666-2350 x 125 M', '410-666-8781 Fax ', '10111 Beaver Dam Road ', '', 'Cockeysville', 'MD', '21030', '6:30am-4:30pm/6:00am-4:00pm Job ', ' I-83 South toward Baltimore, take Exit 17, Padonia Road West, left at bottom of ramp onto Padonia Road, at second light make left onto Beaver Dam Road heading North go approx. 1 mile to a right into facility '), (2269, 4840, 2269, '(810) 766-7165 x 262', '(810) 766-7249 Fax ', '702 West 12th Street', '', 'Flint', 'MI', '48502', '7:00-3:30 (best time to reach 7-8 am)', 'I-75 N to I-69 E Go one exit (Hammerburg Rd) turn right then left at \"T\". Go about 1 mile. Site on left. DIFFERENT STREET ADDRESS THAN IN 1999 Mail Certs to 1101 S Saginaw Sreet - ATTN: Craig Bill to: City of Flint PO Box 246 Flint, MI 48501'), (2270, 4841, 2270, '(734) 466-2574', '(734) 466-2195 Fax', '33000 Civic Center Drive', '', 'Livonia', 'MI', '48154', '8:30-5:00', 'Rt. 275 to 96E to Farmington Road exit. Go north on Farmington Road. Hit 5 mile road and go east on 5 mile Big highrise building. They are on ground floor. '), (2271, 4842, 2271, ' ', '724-748-3599 Fax', '398 S. Church Street', '', 'Waynesburg', 'PA', '15370', '8:00 am - 4:00 pm ', ' Job site at Intersection of South Church & West First Street '), (2272, 4843, 2272, '607-962-8864 / 716-8', '607-962-5968 Fax', 'Job Site ', '', 'Syracuse ', 'NY', '', '7:00-5:30 (maybe later)', '15 SOoth Epic Pork exit at light turn right, 500 feet right side. Look for equip across from lodge on green hotel 414 South, I-86 West, to 15 South, get in right hand lane, at top of ramp make left aross bridge, at red light turn right '), (2273, 4844, 2273, '(315) 668-3868', '(315) 676-3150 Fax', 'N. Rontondo', '', 'Central Square', 'NY', '13036', 'Lab 8:00-5:00 Office 7:00-6:00', 'Route 81N. Get off at Central Square Exit #32. Go over overpass towards Central Square (Route 49W) - residential area 1/4 mile from exit. Look for 2 white house/garages. Across from Prepaid Health Center complex mailboxes - N. Rotondo, PE '), (2274, 4845, 2274, '610-731-0430', '610-731-0435 Fax', '470 Drew Court', '', 'King of Prussia', 'PA', '19406', '', ' '), (2275, 4846, 2275, '610-366-7120 x 101 D', '717-458-0801Fax/610-', '941 Marcon Blvd', 'Suite 801', 'Allentown', 'PA', '18109', '7:00 am - 5:00 pm M-F', 'I-80 East, Exit 277, North on NE PA Tpke, bear right (North-West) onto ramp, *Toll Road*, Merge onto I-476 (NE Extension Penn Tpke), stay on I-476 South, *Toll Road*, at I-476, Exit 56 bear right (West) onto US-22. US-22, I-78 Exit, continue west, merge onto I-78 (US - 22), continue East on US-22, at split on 22 take first Exit Airport Road North, at first light turn left onto Postal Road, take first left on Marcon Blvd. Formerly Advantage Engineering, LLC'), (2276, 4847, 2276, '717-458-0800', '717-458-0801 Fax/717', '910 Century Drive', '', 'Mechanicsburg', 'PA', '17055', '8:00 am - 5:00 pm ', '81 South to Route 15 South, Rossmoyne Road Exit off of Route 15, Turn left off ramp and continue to light at Century Drive, turn right and follow Century Drive to Cul-de-sac and make left to site Behind Medical Clinic Formerly Advantage Engineering, LLC to CMX'), (2277, 4848, 2277, '276-637-3021 Tony ', '(276) 498-4317 Fax', '155 Red Hollow Road ', '', 'Max Meadows ', 'VA', '24360', '7:00 am - 5:00 pm', ' I-77, Exit 40, merge onto I-77 (I-81) (East) at I-81, Exit 80, turn left onto US-52, bear right onto SR-121, turn right onto SR-614 (RTE-614) to Max Meadows '), (2278, 4849, 2278, '(614) 287-3873 Ms. ', 'Use Email', '550 E. Spring Street', '', 'Columbus', 'OH', '43215', '8:00 am - 5:00 pm', 'South on Rt. 71. Left lane look for Spring Street ( Exit 109C) . Exit off ramp. Right on Spring Street. On 1st right past Jefferson enter parking lot - Academic Center B. Davison Hall Room 205. Ask for Bob Mergel or Ms. Grubbs Mrs. Grubbs (614) 287-3873 Department Secy (614) 287-5030 Call prior to let them know date & time'), (2279, 4850, 2279, '304-598-0456/724-255', '859-748-4601 Fax/812', 'In Storage ', '', 'Portsmouth', 'NH', '', '8:00am-5:00pm/7:00am-3:00pm Job ', ' '), (2280, 4851, 2280, '317-846-5841 ', '317-773-6227 Fax', '5001 East 106th Street', ' ', 'Indianapolis', 'IN', '46280', '', ' I-465, Exit 33 (IN-431/Keystone Avenue), merge onto SR-431 (N. Keystone Avenue), turn left onto E. 106th Street '), (2281, 4852, 2281, '814-269-2580 Ray', '814-269-2499 Fax', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '8:00 am to 5:00 pm ', 'Take 219 South to Scalp Level Road or (Galina Exit), make left at bottom of ramp. Past Sheetz. Site in red brick bldg. on right hand side. Past Lockheed Martin. '), (2282, 4853, 2282, '(814) 269-2642', '', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '', 'Take 219 South to Scalp Level Road or (Galina Exit), make left at bottom of ramp. Past Sheetz . Site in red brick bldg. on right hand side. Past Lockheed Martin. Include ID #\'s on Certs continued next page................................................... Must use 300 system 10 & 50K cells, Cal 60 & magnetic test stand Must have 700 system for MTS I Small weights, 1 K cell, Dial Indicators'), (2283, 4854, 2283, '(814) 269-2642', '', '1450 Scalp Avenue Suite 001', '', 'Johnstown', 'PA', '15904', '', ' '), (2284, 4855, 2284, '814-269-2549 Greg', '', '100 Allenbill Drive', 'Johnstown Industrial Park', 'Johnstown', 'PA', '15904', '', ' Putting in archived database. Include ID #\'s on Certs'), (2285, 4856, 2285, '717-632-7722', '717-630-8441 Fax', '576 Edgegrove Road', '', 'Hanover', 'PA', '17331', '7:00 am - 3:30 pm ', 'Rt. 116 West out of York into Hanover to Hardees (at light) right on Oxford Road, left on Edgegrove Road, turn right at second plant entrance '), (2286, 4857, 2286, '(517) 788-7067/517-7', '(517) 788-1724 Fax', 'Division of CMS Energy', 'Corner of Jackson & Trail St.', 'Jackson', 'MI', '49201', '7:00 am to 3:30 pm ', '94 W Exit 139, turn left on Cooper St., turn left to 135 W. Trail Street, 2nd light Gawson, take right at next light turn left onto Jackson street, 1 block to Trail Street, take right (SE) corner '), (2287, 4858, 2287, '734-287-1000', '810-955-5791 Larry/7', '20501 Goddard Road', '', 'Taylor', 'MI', '48180', '', ' I-75 (East), I-75, Exit 37 (Allen Road/Line Road), turn left (North) onto Allen Road, go 1.4 miles, turn left (West) onto Goddard Road '), (2288, 4859, 2288, '859-393-1439 Dan ', '937-878-8780 Fax ', '7941 New Carlisle Pike', '', 'Huber Heights', 'OH', '45424', '', ' I70, Exit 41, merge SR-235 (North), left onto Gerlaugh Road, bear right onto CR-177 (S. Palmer Road), bear left onto CR-241 (Bellefontaine Road), continue on Bellefontaine Road, left onto Artz Road, right onto New Carlisle Pike (Technology Blvd.) '), (2289, 4860, 2289, ' 614-445-3839 Jeff ', 'no Fax', '1500 Haul Road', '', 'Columbus ', 'OH', '43207', '8:00-4:30 Lab 7:00-4:00', ' '), (2290, 4861, 2290, '440-951-9000 / 440-5', '440-951-7487 Fax / 4', '8150 Sterling Court', '', 'Mentor', 'OH', '44060', '8:00 am - 5:00 pm (office)7:00-4:00 (lab)', 'I-90 E (OH-306 Exit), Exit 193, toward (Mentor/Kirkland), turn left onto OH-306/Broadmoor Road, turn right onto Mentor Avenue/ US-20, go 0.4 miles past W. Plaza Blvd. to Sterling Court Turn I-Beam sideways when using 50K cell on 700 system. '), (2291, 4862, 2291, '248-486-5100 x201 Be', '248-486-5050 Fax', 'B Street', ' ', 'Belleville ', 'MI', '48111', '5-Aug', ' ISO Requested Must include ID# on Work Order and Cert Near Yankee Ait Museum Beck Rd to B Street go to fence straight back to parking lot trailer furthest back. '), (2292, 4863, 2292, '1-800-284-8639/ Ther', '248-486-5050 Fax', '51331 W. Pontiac Trail', '', 'Wixom', 'MI', '48393', '', ' **Must include ID# on Work Order and Certs** '), (2293, 4864, 2293, '304-552-9026 Cell Ma', '614-276-6377 Fax/304', 'Storage', '', 'Columbus', 'OH', '', '', ' '), (2294, 4865, 2294, '607-529-3235/607-738', '607-529-3434 Fax', 'Route 17 Exit 59', '', 'Chemung', 'NY', '14825', '7:00 am - 3:30 pm', 'From 17E. Exit #59. Take right (427S). Take first immediate left onto Chemung Flats Road. Go approx. 1/2 mile. Grey Scale House shutters on left. '), (2295, 4866, 2295, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', 'County Route 64', '', 'Horseheads', 'NY', '14845', '7:00 am - 3:30 pm ', 'Take Rt. 17W to Exit #51. Turn right at stop light. Turn at next stop light onto SR 64E. Go 1/4 miles Large blue & orange building on right side. No sign '), (2296, 4867, 2296, '216-987-4389 Trent ', '216-987-4396 Fax ', '2900 Community College Avenue', '', 'Cleveland', 'OH', '44115', '', ' I-77, Exit 162A (Woodland Avenue/E. 30th Street), turn right onto US-422 (SR-8) (East), turn right onto E. 30th Street, turn left onto Community College Avenue Turn into Parking Lot, Lot #1, left into lower level beside Recycle Facility, go to Room 122, Trent\'s office or room 7D, Ground Level to class room '), (2297, 4868, 2297, '(607) 529-3235 ext. ', '(607) 529-3434 Fax', 'Route 17 Exit 59', '', 'Chemung', 'NY', '', '7:00 am -4:00 pm', 'From 17E. Exit #59. Take right (427S). Take first immediate left onto Chemung Flats Road. Go approx. 1/2 mile. Green Scale House w/Black shutters on left. '), (2298, 4869, 2298, '(607) 529-3235 ext. ', '(607) 529-3434 Fax/6', 'County Route 64', '', 'Horseheads', 'NY', '14845', '7:00 am -3:30 pm ', 'Take Rt. 17W to Exit #51. Turn left at stop light. Turn left at next stop light onto SR 64E. Go 1/4 miles Large blue & orange building on right side. No sign '), (2299, 4870, 2299, '', '', '', '', '', '', '', 'Call prior', 'Past PA State line - bear to left onto Rt. 549. Go to Rt. 6. Take Rt. 6 W. Go past college to red light - straight through pass school. Go under underpass and up hill. Sign on left. Green building. '), (2300, 4871, 2300, '610-398-1151 Main No', '610-530-6119 Fax', '1 Willow Lane ', '', 'East Texas ', 'PA', '18046', '', ' Depart Allentown on Allen St. (West) for 1.8 mile turn right onto N24th street turn left onto Tilghman st turn left onto ramp, merge onto SR-309, At SR-309 I-78 exit, turn off onto ramp Merge onto I-78 Exit 54 turn off onto ramp continue on US-222 (Hamilton Blvd). Turn left onto S. Krocks Rd, turn left onto Lower Macungie Road '), (2301, 4872, 2301, '859-743-5470 Rick Ce', '', '14869 US Highway 52', '', 'Manchester', 'OH', '45144', '', 'I-80 West, take I-76 West toward Akron, merge onto I-71 South via Exit 1 toward Columbus, merge onto I-70 West via Exit 107 toward Dayton/Cincinnati, merge onto I-71 South via Exit 99A-B on the left toward Cincinnati/Dublin Road, merge onto I-270 East via Exit 101 toward Wheeling, merge onto Us-23 South via Exit 52 toward Circleville, merge onto US-23 South toward Portsmouth, take OH-32/OH-124 Exit toward Jackson/Cincinnati, turn right onto OH-124 W/OH-32 West, continue to folow OH-32 West, turn'), (2302, 4873, 2302, '(610) 837-9696 x 472', '(610) 837-8420 Fax', '298 Keystone Drive', '', 'Bethlehem', 'PA', '18020', '7:00 am - 2:00 pm', '22E to 512 N. Go 1 1/2 miles. Diner (Golden View). Right at light Hanoverville Road. 1 1/2 miles. Road on left for Cempro behind corn field. Lab building straight ahead at turn. Formerly CEMPRO'), (2303, 4874, 2303, '610-366-3890 x 47106', '610-366-3895 Fax / x', '7130 Ambassador Drive ', '', 'Allentown', 'PA', '18106', '7:00 am - 5:00 pm ', ' I-476, Exit 56, right onto US-22, at US-22 Tilghman Street Exit, West on Old US-22 (Tilghman Street), right onto Mill Road, right onto Ambassador Drive '), (2304, 4875, 2304, '724-962-7296 Cell Mi', '724-342-3405 Fax/724', 'Storage ', '', 'Hermitage ', 'PA', '', '', ' I-79, Exit 96, merge SR-488 (E. Portersville Road), right onto US-19 (Perry Highway), bear left, merge SR-488 (W. Portersville Raod), right onto Mountville Road, right onto Heinz Camp Road, left onto Hogue Road, left onto Dutch Ridge Road, left onto Camp Allegheny Road '), (2305, 4876, 2305, '269-565-8460 John', '269-968-7205 Fax', 'One Denso Road ', 'Colume M4', 'Battlecreek', 'MI', '49015', '', '1/2 hour from Kalamazoo I-94 East, 11 Miles, Exit 92, turn off onto ramp 0.3 miles, bear right, Northeast, onto Mercury Drive, 98 yards, continue Northeast on I-94 Business (Columbia Avenue West), 2.9 miles , turn left, West, onto Hill Brady Road, 1.7 miles, arrive at One Denso Road Elevation: Unknown, Lat: 42.292*N Long: 85.587*W Dead Weight Correction Value: 0.9993'), (2306, 4877, 2306, '703-704-9819', '703-704-9683 Fax ', 'CMRL / Bldg. 367', '585 Wilson Road', 'Fort Belvoir', 'VA', '22060-5824', '', ' I-95, Exit 166A (Newington/Fort Belvoir), merge onto SR-7100 (Fairfax County Pky), turn left onto US-1 (Richmond Hwy), turn right onto Pohick Road, turn right onto Gunston Road, *Gate Access Required* continue South on Gridley Road, continue SE on Totten Road to Wilson Road '), (2307, 4878, 2307, '313-304-4979 Cell Ju', '(313) 897-1280 Fax/3', 'Bldg H-120 Warren Service Center', '7940 Livernois Ave.', 'Detroit', 'MI', '48210', '7:00 am - 3:30 pm (Site not manned)', 'Take 94W to Exit #212 for Livernois. Go North (left) on Livernois approx. 2 blocks. Make right at light onto Warren. Make immediate left into Drive. ***All Invoices must have ERS123 on them*** Send bill attention Shirley Martin Lab not always manned - no voice mail Has cast iron cylinder assembly'), (2308, 4879, 2308, '724-899-3300', '724-899-3340 Fax', '640 Clinton Enlow Road', '', 'Imperial', 'PA', '15126', '', '79S toward Airport (Pittsburgh Airport) Exit 6, Rt 60 Clinton Exit 7, left to stop light, left 1/2 mile left, on Rt 30 and Crescent Drive '), (2309, 4880, 2309, '724-785-7952', '724-640-5980 Kevin c', '175A Brashear Street', '', 'Brownsville', 'PA', '15417', '', 'Take 73 to 43, go 3 exits to Brownsville exit Rt. 40, go across bridge, take first right, at the first street take another right, keep going straight and will see the trailers. '), (2310, 4881, 2310, '732-658-1052', '', '425 Old Georges Road', '', 'North Brunswick', 'NJ', '8902', '', ' '), (2311, 4882, 2311, '814-280 1704 Tom', '814-342-1489 Fax ', '740 Laurel Run Road ', '', 'West Decatur', 'PA', '16878', '8:00 am - 4:00 pm ', ' I-80 (East), Exit 123, merge onto SR-970 (South), turn left onto US-322 (20 Eighth Division Highway), bear right onto LR17122 '), (2312, 4883, 2312, '614-888-0576', '614-848-6712 Fax', '6121 Huntley Road', '', 'Columbus', 'OH', '43229', '8:00 am - 4:30 pm', ' Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right '), (2313, 4884, 2313, '814-432-3184', '814-437-1110 Fax ', '81 Railcar Road ', '', 'Warren', 'PA', '16365', '', ' US-219, stay straight onto Main Street/PA-948, turn right onto Montmorenci Road/PA-948, continue to follow PA-948 N, PA-948 N becomes PA-999/David Zeisberger Hwy, turn left onto US-6/ W. Main Street/Grand Army of the Republic Hwy, continue to follow road, turn left onto Railcar Road (Just past Fireman Street), site is on the left '), (2314, 4885, 2314, '614-778-4869 Steve C', '614-987-0216', '6121 Huntley Rd', '', 'Columbus', 'OH', '43229', '8-4:30', '***Continued on next page*** ACH PAYMENT Rt. 71 South to Exit #117 (Rt. 161) Make right - 2 lights make right. Need Cal 60, 1 K Cell, Pressure Transducer System Formerly Dodson Stilson.'), (2315, 4886, 2315, '540-894-2916 William', '(540) 894-2813 - Fax', 'North Anna Power Station', 'Building 15', 'Mineral', 'VA', '23117', '7:30am-4pm Office/7:30am-2:30pm Lab', 'I 95 S to Thornburg Exit 118, Route 208W, cross lake, make left signs for information center, on Rt. 700 (Kentucky Springs Road?) flashing light, follow signs for North Anna **PLEASE SEND A COPY OF THE FORMAL PO WHEN YOU CONFIRM THIS WORK Send Invoice to: Virginia Power Accounts Payable OJRP-18 PO Box 25459, Richmond, VA 23260-5459 Fax # 804-771-6821'), (2316, 4887, 2316, '215-390-7684', '', '4620 Aramingo Ave', '', 'Philadelphia', 'PA', '19137', '', ' '), (2317, 4888, 2317, '716-366-1000 ext 236', '716-363-8818 Fax', '830 Brigham Road', '', 'Dunkirk', 'NY', '14048', '7:00 am - 3:00 pm ', 'Left at last light (3rd Light), turn right onto Central Avenue, under viaduct, make left to end, turn right 1/2 mile, Blue Gray building, make right, go around to left door ***Take Special Fixture*** ***MUST cal Channel #0 Extensometer in STRAIN, will not cal in length*** Long: 79.334 Degrees, Elev: 598 Feet, Latitude: 42.479 degrees Correction Value: 0.9993'), (2318, 4889, 2318, '302-239-6634', '302-239-8485 Fax', '5400 Limestone Road', '', 'Wilmington ', 'DE', '19808', '', '95 south past Wilmington to exit 4B Rt7 Rt4 take Rt4 towards Stanton Newark go to Rt4 & Rt7 merge right for 2 miles Rt 7 or Limestone RD turn left 7 miles to 4 or 5 lights to Goldie Beacon Bus College, 3 lights turn left Limestone Hills West. IST left big barn sign on barn '), (2319, 4890, 2319, '513-265-7511 Mark', '937-743-0651 Fax', '550 S. Main Street', '', 'Monroe', 'OH ', '45050', '6:00am-5:30pm ', ' I-75 South, Exit 29, merge onto SR-63, turn left onto N. Main Street (Cincinnati Dayton Raod), go 1.3 miles onto S. Main Street Formerly Moraine Materials '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (2320, 4891, 2320, '734-476-3156 Greg\'s ', '734-487-8755 Fax ', '145 Sill Hall', 'School of Educational Technology', 'Ypsilanti', 'MI', '48197', '', 'Take the Huron St. Exit off of I-94, it is about 5-6 miles east of US-23, or about 10 - 12 mile west of I-275. Jim Stein 734-487-1940 '), (2321, 4892, 2321, '410-358-7171 Ext. 30', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', ' ***continued*** ***Take Vacuum Pump*** Take 695----West side of Baltimore. Take Exit 18 RT. 26 --Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. e-mail Solitation Letter to sam.kimani@ebaengineering.com'), (2322, 4893, 2322, '410-358-7171 Ext. 30', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', '***continued*** Take 695----West side of Baltimore. Take Exit 18 RT. 26 East, Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. Accounting Fax: 410-358-3682 '), (2323, 4894, 2323, '410-358-7171 Ext. 30', '410-358-7213 Fax', '4813 Seton Drive', '', 'Baltimore', 'MD', '21215', '8:00 am - 5:00 pm', ' Certs to billing attn: Sam Kimanu Take 695----West side of Baltimore. Take Exit 18 RT. 26 --Liberty RD. Turn left on Northern Parkway, then 1st left into Seton Drive. EBA on right hand side.. Accounting Fax: 410-358-3682'), (2324, 4895, 2324, '724-459-7500 ext. 22', '724-459-0630 Fax', '200 Martha Street', '', 'Blairsville', 'PA', '15717', '8-430', ' I-80 I-79 Exit, merge I-79 North, at I-79, Exit 182, bear right onto US-20 (W. 26th Street), left onto Liberty Street *Speed and Displacement done by Instron, do next year (2016) 3/09 S/N 1093/1051 would not go to full scale '), (2325, 4896, 2325, '757-366-5100', '757-366-5203 Fax', '(Formerly Engineering Consulting Svcs)', 'Suite A 814 Greenbrier Circle', 'Chesapeake', 'VA', '23320', '', ' CALL FOR DIRECTIONS & WRITE DOWN!!! '), (2326, 4897, 2326, '703-906-4276', '', '1201 First Street NE', 'Constitution Square', 'Washington', 'DC', '20002', '6:00am-6:00pm/1:00am-7:00pm Job', ' I-495 East Interloop, Exit 33, (MD-185/Connecticut Ave,/Chevy Chase) Merge SR-185 (Connecticut Ave. South) at roundabout 4th Exit, Exit Connecticut Avenue NW, bear right onto Dupont Circle NW, South on Massachusetts Avenue NW, at 2nd Exit, exit roundabout onto Massachusetts Avenue NW, left onto Mt. Pleasant PL NW, left onto New York Avenue NW, right onto 1st Street NE '), (2327, 4898, 2327, '703-906-4276', '', '1201 First Street NE', 'Constitution Square', 'Washington', 'DC', '20002', '6:00am-6:00pm/1:00am-7:00pm Job', ' I-495 East Interloop, Exit 33, (MD-185/Connecticut Ave,/Chevy Chase) Merge SR-185 (Connecticut Ave. South) at roundabout 4th Exit, Exit Connecticut Avenue NW, bear right onto Dupont Circle NW, South on Massachusetts Avenue NW, at 2nd Exit, exit roundabout onto Massachusetts Avenue NW, left onto Mt. Pleasant PL NW, left onto New York Avenue NW, right onto 1st Street NE '), (2328, 4899, 2328, '(734) 426-6076', '(734) 426-6078 Fax', '7900 Second Street', '', 'Dexter', 'MI', '48130', '7am-5pm Office / 7am-5pm Lab', 'Exit 169 of 94 West. North to Dexter Ann Arbor. Turn west into Dexter. Dover only right go to end. Shipping & Receiving Rt 4 int, Dover '), (2329, 4900, 2329, '740-967-4801', '740-397-5993 FAX', '7720 Johnstown Alex Road', '', 'Johnstown', 'OH', '43031', '9:00 AM - 4:30 PM', 'I-71 to 36E into Mt. Vernon to KFC, turn right past fire department, at stop go straight, Ellis Bros 2nd office in back '), (2330, 4901, 2330, '231-943-5503', '231-943-5534 Fax', '2302 South M-18', '', 'Beaverton', 'MI', '48612', '', ' I-75, Exit 162B, bear right onto US-10 (SR-25), at US-10 SR-18 Exit, bear right, merge onto SR-18 (M-18) '), (2331, 4902, 2331, '231-218-0602 Jon / 2', '231-943-5534 Fax', '3600 Renie School Road ', '', 'Traverse City', 'MI', '49685', '', ' I-75, Exit 282, merge onto SR-32 (W. Main Street) (West), stay on SR-32 (M 32), turn left onto US-131 (Mackinaw Trail Road), turn right onto SR-72 (CR-612 NE), turn left onto US-31 (SR-72), turn left onto Renie School Road '), (2332, 4903, 2332, '614-775-4559', '614-775-4896 Fax / 6', '5500 New Albany Road', '', 'Columbus', 'OH', '43054', '8:00 am - 5:00 pm ', '270 E to exit Rt 161, go east to new Albany Rd, at light turn left over 161, turn left '), (2333, 4904, 2333, '814-459-2720 x 140', '814-455-3751 Fax', '1133 West 18th Street', '', 'Erie', 'PA', '16502', '8am-4:30pm/6am-3:30pm Job Mon-Thur', ' I-80 I-79 Exit, merge I-79 North, at I-79 Exit 182, bear right onto US-20 (W 26th Street), turn left onto Cranberry Street, turn right onto W 18th Street Tax Exempt No: 25-0466048 '), (2334, 4905, 2334, '(724) 667-7702 or 6', '(724) 667-1067 Fax/7', '2nd Street', 'PO Box 779', 'Bessemer', 'PA', '', 'Lab: 24 hrs.', 'From PA 60 (New Castle By-pass) Exit #6A State St. Poland. Go west on 224 - cross blue bridge. Immediate left turn onto 551S. Go 3/4 miles - bear right. Go 3 miles and make right onto Rt. 317. See large school about 1 mile on right. Bear to left. Drive into Bessemer, go in at 2nd street. Lab all the way to the right. '), (2335, 4906, 2335, '412-670-7939', '(412) 344-8913 Fax', 'Storage ', '', 'Pittsburgh', 'PA', '', '7:00 am - 3:30 pm ', 'Call for Directions. Site is at Pgh airport need directions from there Bus 60 to Bears School Road, take left at Maintenance facility '), (2336, 4907, 2336, '540-775-4546 King Ge', '610-942-2629 fax', '11023 Dennis W Kearns Parkway', '', 'King George', 'VA', '22485', '', ' '), (2337, 4908, 2337, '304-367-4795', '304-367-4934 Fax ', '1201 Locust Avenue', 'Department of Technology', 'Fairmont', 'WV', '26554', '', ' I-79 South, Exit 137, merge onto SR-310 (CR-3) (North), turn right onto CR-19 (Jefferson Street), turn left onto US-19 (Adams Street), arrive Locust Avenue '), (2338, 4909, 2338, '412-751-4001', '412-751-4003 Fax ', '401 Wide Drive ', '', 'McKeesport', 'PA', '15135', '8:00 am - 4:30 pm ', ' I-76 South (PA Turnpike), bear right onto US-22 Bus (William Penn Hwy), left onto SR-48 (Moss Side Blvd.), left onto Ripple Road, bear right onto Center Street, left onto Walnut Street, cross bridge, left onto Smithfield Street, left onto Wide Drive Putting in archived database; uses other cal. company.'), (2339, 4910, 2339, '', '', 'Storage ', '', '', 'MN', '', '9:00 am - 5:00 pm ', ' SR-33 & US-209, Manor Drive Exit, bear right (North) onto ramp 0.1 miles, turn left (West) onto Manor Drive 0.3 miles, turn left, (South), onto Middle Easton Belmont Pike 0.1 miles, turn right (West) onto Keller Drive 0.3 miles, bear left (South), onto Bush Lane 0.4 miles, arrive 2443 Bush Lane '), (2340, 4911, 2340, '800-323-7901/814-437', '814-437-5114 Fax ', '60 Gibb Road', '', 'Franklin', 'PA', '16323', '9:00 am - 6:45 pm ', ' Rt. 8 North of Franklin, right onto Gibb Road (Across from Big Lots), ont the road that goes behind Allegheny Toyota '), (2341, 4912, 2341, '(248) 474-3211', '(248) 474-8110 Fax', '22005 Gill Road', '', 'Farmington Hills', 'MI', '48335', 'Lab 5:00 a.m. - 1:00 p.m.', 'Int 275/96 North. Off at Exit #167. Go east on 8 mile road to Gill Road. Make left onto Gill Road. (Gill is between Halstead and Farmington). Approx. 1 1/2 miles. Site on left. Office Address: Superior Materials Holdings, LLC, PO Box 2900, Farmington Hills, MI 48333-2900, 30701 W. 10 Mile Road, Suite 500, Farmington Hills, MI 48336 248-788-8000 Formerly Fendt Builders Supply'), (2342, 4913, 2342, '610-559-9000', '610-559-1919 FAX', '12 McFadden Road', '', 'Easton', 'PA', '18045', '6:00 am - 5:00 pm ', 'Take Rt. 22 East to Rt. 33 Exit to Rt. 248 to Nazareth. Stay in right hand lane. make right at light, go 1/2 mile--Blue Nursery on left, turn right on Hollow Rd. Go to stop sign, make right onto Van Buren, go to stop light & make left on Newlins Mill Road. Go 1/2 mile---- make left, entrance to Industrial Park--is 2nd on right. Go around bend to driveway. '), (2343, 4914, 2343, '717-652-8620', '717-651-0725 Fax ', '3608 N. Progress Avenue', '', 'Harrisburg', 'PA', '17110', '', ' I-81 East, at Exit 69, turn off ramp, turn left (North) onto North Progress Avenue LT 700 has block platen - need help to remove! '), (2344, 4915, 2344, '440-239-2015', '440-239-2000 Fax', '125 Blaze Industrial Parkway', 'PO Box 799', 'Berea', 'OH', '44017', '8:00 am - 5:00 pm ', ' CALL FOR DIRECTIONS I-80 to I-71N to Bagley Rd Exit 235 Go west into Berea go through town about 1-2 miles til you see the first Burger King this is Blaze Ind. Parkway-make left they are on left side '), (2345, 4916, 2345, '304-636-3886 Main Of', '304-636-4487 Job Sit', 'Rt. 219 North', '', 'Elkins', 'WV', '', '7:00 - 5:30 M-Th', 'Site is approx. 1 1/2 miles North on Rt. 219 from Elkins. White bldg. on right. If you go to flashing red light, you have gone 150 yards too far north. '), (2346, 4917, 2346, '859-824-5097', '859-824-5130 Fax', '25 Ruthman Drive ', '', 'Dry Ridge', 'KY', '41035', '7:30 am - 4:00 pm ', ' I-75 South, Exit 159, merge onto SR-22 (SR-467) (West), left onto Ruthman Drive Formerly Gallatin County Ready Mix '), (2347, 4918, 2347, '412-292-8489 Jim Cel', '724-853-3542 Home Of', '410 North 3rd Street', '', 'Youngwood', 'PA', '15697', '', 'See Attached '), (2348, 4919, 2348, '724-640-7104', '724-696-4952 Fax', 'Rt. 422', '', 'New Castle', 'PA', '', '7:00am - 5:00pm / 6:30am - 3:30pm Job', ' Rt. 422 heading toward New Castle, across from the Sheetz behind Transportation Management Solutions in the yard '), (2349, 4920, 2349, '513-398-8604', '513-398-2735', '755 Reading Road', '', 'Mason', 'OH', '45040', '8:30am-4:30pmOffice/7am-3:30pmLab', ' I-71 south to the Kings Island exit. Turn right on 741 and take that to Route 42. Turn left on Route 42 and Hamilton Security is approx. 10 miles up on the right side next to the Mason Bowl Tylersville Road Exit, Left to 42, BP Corner, Turn Right, 1st Baptist Church, 2nd drive strip mall, drive to back '), (2350, 4921, 2350, '(607) 565-3032', '(607) 565-2339 Fax', '1 William Donnelly Parkway', '', 'Waverly', 'NY', '14892', '', 'From Elmira NY take Rt. 17 East to Exit #61. Get off at Exit #61 and go to stop sign at bottom of ramp. Take left and go to 4-way stop under RR bridge. Take a right and go approx. 300 yds. and turn left. Hancor on corner. They have Silos. Sister company in Findlay, OH Take QA Book and 400 system, 10 Kip cell Take jack'), (2351, 4922, 2351, '206-313-8620 Jimmy', '(330) 467-7984 Fax/3', '7925 Empire Parkway', '', 'Macedonia', 'OH', '44056-2144', '7:00am - 3:00pm ', 'From 76 - Exit #23B for Rt. 8N. Go under turnpike- make right at light onto Highland. Go 0.7 miles then turn right onto Empire Parkway. 2nd business on left. Formerly Hanson Pipe & Products Has 300K gauge on it - only took to 200K Customer requested cal to 200K Machine is outside. Note: Rams very slow retracting - needs new springs'), (2352, 4923, 2352, '(937) 492-9119/937-5', '937-268-8321 Fax', '4625 Hardin-Wapak Road', '', 'Sidney', 'OH', '45365', '7:30 am - 4:30 pm', '4th Right, Robert Blvd. Make Right Before Bridge. Stay straight to 75 75 S to Rt. 47 exit 92, 47 west (right) Hardin Town left at crossroad, 1 to 2 miles, next drive past Springcreek Gravel Formerly Robert Oldham, Ltd. '), (2353, 4924, 2353, '(585) 584-3132 ext ', '(585) 584-3466 Fax', '6896 Ellicot Street Rd. (Rt. 63)', ' (Job address is different)', 'Pavilion', 'NY', '14525', '7:00 am - 4:00 pm', 'I-90 to Exit #47 Leroy. Take Rt. 19S through Leroy. Continue on Rt. 19 Turn right (west) on Rt. 63. Go 1/4 mile. Dewitt has buidlings on both sides of road. Lab on left. Take Anvil '), (2354, 4925, 2354, '(937) 878-8666', '(937) 878-9293 Fax', '7900 New Carlisle Pike', 'PO Box 24305', 'Dayton', 'OH', '45424', '8:00-5:00 Office 8:00-4:00 Lab', '(From Columbus, OH) 70 West to Exit #41 (SR 235/4), South on 235/4 (Across 70). GET IN RIGHT LANE - to New Carlisle Pike (1st Road to Right) Right on New Carlisle Pike - straight at 3 way stop - plant will be on your right. Call (937) 878-8666 if any problems. Formerly North Star Concrete Wants to be on the same schedule as Columbus job site.'), (2355, 4926, 2355, '989-859-2714 Cell Ji', '989-631-5070 Fax', '426 River Street', 'PO Box 592', 'Midland', 'MI', '48640', '8:00-5:00', 'From Rt. 10S - turn right onto Eastman Rd. (Bus. 10S) Go approx. 4 miles. Becomes 1 way -turn right onto Poseyville Rd. Go approx 2 blocks over bridge. After bridge make 1st right Go back under the bridge, 4 way Rally\'s, left for mile, curve right, 3 light, left Cronk St. 2 lights 2004 address: PO Box 592 426 River Street Midland, MI 48640'), (2356, 4927, 2356, '276-928-1374', '276-928-1359 Fax', '273 Enterprise Road', '', 'Rocky Gap', 'VA', '24366', '7:00 am - 5:00 pm ', 'Off of 77, Exit 64, Left 2 Miles, at T, Fire Dept on right, Enterprise Lane '), (2357, 4928, 2357, '703-930-4081Matt Cel', '703-996-0124 Fax / ', '8433 Backlick Road, Bay D', '', 'Lorton', 'VA', '22079', '', ' I-495 South, continue South, I-495 (I-495 Outlerloop), at I-495, Exit 57A (I-95/Richmond), merge I-95 South, at I-95, Exit 166A, (Newington/Fort Belvoir), merge onto SR-7100, (Fairfax County Pky) South, turn left onto Backlick Road '), (2358, 4929, 2358, '(740) 373-3211 ext 2', '(740) 373-5409 Fax', '2633 Waterford Road', '', 'Marietta', 'OH', '45750', 'Office: 8:00-5:00 Site: 7:00-3:30', ' CALL FOR DIRECTIONS & WRITE DOWN! '), (2359, 4930, 2359, '586-755-0900 x 17 Jo', '586-755-7456 Fax', '23450 Regencey Park Drive', '', 'Warren', 'MI', '48089', '7:00 am - 3:00 pm', 'Fabrication shop; one block north of 9 mile rd., one block west of Groesbeck '), (2360, 4931, 2360, '724-295-2800 x 202 J', '724-295-2815 Fax', '500 Mill St.', '', 'Freeport', 'PA', '16229', '', ' '), (2361, 4932, 2361, '937-746-8500 x2037 K', '937-746-8500 x2006 D', '200 South Pioneer Blvd.', '', 'Springboro', 'OH', '45066-0430', '9:00 am - 5:00 pm ', 'East Rt. on Pioneer, past building Password: moejoe Need QA Book'), (2362, 4933, 2362, '410-631-2374', '410-631-5454 fax', '2122 Broening Highway', '', 'Baltimore ', 'MD', '21224', '6:00AM to 2:30 PM', '695 East - 95 South - O Donald Street Exit - 2nd Light on Left - Right on Broening Highway. **Bernie is there from 6:00 am to 2:30 pm. Call before going to try and be there when she is. '), (2363, 4934, 2363, '(814) 443-1671', '(814) 445-6729 Fax', '2005 N. Center Avenue', '', 'Somerset', 'PA', '15501', '8:00-5:00', 'From Turnpike Exit - Going East. Go to 2nd light , Rt. 601, turn left (north). go 1 mile past shopping plaza and red light at Walmart. Go 1/4 miles to white stucco building (office) on left. Lab in basement of building across the street. '), (2364, 4935, 2364, '412-823-7600', '412-823-8999 Fax', '544 Braddock Ave.', '', 'East Pittsburgh ', 'PA', '15112', '8:00 to 5:00 Office & Lab', ' '), (2365, 4936, 2365, '410-792-9446/Kerri c', '410-792-7395 FAX', '14280 Park Center Drive', 'Suite A', 'Laurel', 'MD', '20707', '7:30-4:00', 'From Baltimore Get on I-395 S, follow signs for I-95 S/Washinton merge onto I-95 S. Take Exit 33A to merge onto MD-198 E/Sandy Spring Rd toward Laurel. Turn right onto Van Dusen Rd Left onto Laurel Park Dr. Left onto Park Center Dr. www.mragta.com'), (2366, 4937, 2366, '732-271-9301', '302-326-2399 Fax', 'Worlds Fair Drive', 'Building 24 Suite B', 'Somerset', 'NJ', '8873', '', 'I-287 South to Exit 10 to Worlds Fair Drive (Turn Right only) Building 24 Suite B '), (2367, 4938, 2367, '216-857-0628 Tom\'s C', '440-439-1544 Fax', '350 Golden Oak Parkway', '', 'Oakwood Village', 'OH', '44146', '7:00 am to 4:00 pm', ' '), (2368, 4939, 2368, '410-792-9446', '410-792-7395 FAX', '9090 Junction Drive', 'Suite 9', 'Annapolis Junction', 'MD', '20701', '', 'Off Rt 32 and Dorsey Run Road '), (2369, 4940, 2369, '989-496-2440 / 989-5', '989-496-2465 Fax', '4055 S. Saginaw Road', '', 'Midland', 'MI', '48640', '8:00 am - 5:00 pm', 'I-75 to US 10 to Midland Exit Bay City Road, around loop to Saginaw Road take left, left side of road by watertower. First building on left side in lot. '), (2370, 4941, 2370, '330-705-3067 Jay\'s C', 'A/P: Colleen 724-620', '8282 Middle Branch Road', ' ', 'Middle Branch ', 'OH', '44652', '8:30-3:00', 'From PA 60 (New Castle By-pass) Exit #6A State St. Poland. Go west on 224 - cross blue bridge. Immediate left turn onto 551S. Go 3/4 miles - bear right. Go 3 miles and make right onto Rt. 317. See large school about 1 mile on right. Bear to left. Drive into Bessemer, go in at 2nd street. Lab all the way to the right. Accounting.Services@essroc.com (for info on invoice only) Site not always manned. Must call prior.'), (2371, 4942, 2371, '513-200-5572 Steve\'s', '859-586-8891 Fax', 'Cleveland / Hopkins Airport, Gate 30E', '', 'Cleveland', 'OH', '', '7:30 am - 5:00 pm', ' Rt. 80 to 171 South, Take Exit Snow Road, turn right, go until you come to \"T\" turn left, take the next right onto Cargo Road (No sign), take immediate left onto Postal Road, will see job site, go thru gate office on the left '), (2372, 4943, 2372, '(513) 891-2000', '', '10930 Deerfield Road', '', 'Cincinnati', 'OH', '45242', 'Open 23 hours', 'From I-71 take 275W to Reed Harman Highway Exit #47. Turn right at end of ramp. go up to Cornell Road. Take left onto Cornell. Go to approx. 3rd light. Take a right onto Deerfield Road. Go 1/2 mile on left. Go in 3rd driveway. '), (2373, 4944, 2373, '606-326-1070', '606-326-1077 Fax', '3221 SR 5 ', '', 'Ashland', 'KY', '41102', '', ' US-52, SR-7 Exit, continue North on ramp, continue West on US-52, turn left onto 12th Street, entering Kentucky, bear right (SW) onto US-60 (13th Street), turn right onto US-23 (Winchester Avenue), bear left onto SR-5 (Bellefonte Princess Road), arrive 3221 SR-5 '), (2374, 4945, 2374, '412-828-0400', '412-828-0300 FAX', '780 Rt 910', '', 'Cheswick', 'PA', '15024', '6:00 am - 3:00 pm', 'From Harmarville Exit of Rt. 28, approx 2 miles north of Harmarville before you get to Indianola. On right hand side big blue building About 3 minute drive from exit. Penndot Insp. Dave Edwards District 10'), (2375, 4946, 2375, '616-559-7272', '616-977-8617 Fax / 6', '3700 32nd Street SE', '', 'Grand Rapids', 'MI', '49512', '', ' I-275 North (I-96/Lansing), merge I-96, at I-96 Exit 43A (28th St West/ M-11/Kent Co. Airport), bear right onto 28th Street SE, continue on SR-11 (28th St SE), left onto Lake Easbrook Blvd. SE, right onto 32nd Street SE S/N 29020206 Cal# 2794'), (2376, 4947, 2376, '313-317-1515 Chad ', '313-845-9658 Fax ', 'Richert-Arch/Construction', '22586 Ann Arbor Trail', 'Dearborn Heights', 'MI', '48127', '8:00am-11:30pm/12:30pm-4:00pm', ' Depart Dearborn Heights on local roads South for 65 yards, turn Left onto Doxtator St for 0.2 miles. turn Left onto Kinloch st for 0.2 miles. turn Right onto SR-153 (Ford Rd) for 1.9 miles. Turn left onto Loacl Roads for 43 yards. turn Left onto SR-153 (Ford Rd.) for 0.1 miles. turn Right onto W. Outer Dr for 0.8 miles turn Left onto Ann Abor Trail for 109 yrds. '), (2377, 4948, 2377, '540-368-1414', '540-368-1444 Fax', '11905 Bowman Drive, Suite 507', '', 'Fredericksburg', 'VA', '22408', '7:00 am - 5:00 pm ', '70 East, 270 South, 495 (towards Northern Virginia), 95 South, Exit 130B to Fredericksburg (Rt. 3E), Exit onto Rt 2 N? (Bear right off of exit), lst left after 1st light behind Quarrels Fuel Depot '), (2378, 4949, 2378, '304-688-3381 Jay', '859-987-0727 Fax', 'Job Site ', 'Rt. 52 & Rt. 65', 'Matewan', 'WV', '', '', ' Go to Pie, WV, turn right on US-52, go down hill, Water Tower on right, turn left onto Beech Creek Road, follow to top of hill, job site entrance on right, stop at Guard Shack, follow job site 5 miles to concrete plant on left '), (2379, 4950, 2379, '859-582-5426 / 606-6', '859-263-4625 Fax', '9615 Alexandria Pike ', 'Job Site - Highway 27', 'Alexandria', 'KY', '41001-7525', '8:00am - 5:00pm/7:00am - 5:00pm Job', 'Highway 27 just outside of Alexandria, Ky I-80 West take I-76 West toward Akron, merge onto I-71 South via Exit 1toward Columbus, merge onto I-70 West via Exit 107 toward Dayton/Cincinnati, merge onto I-71 South via Exit 99A-B on left toward Cincinnati/Dublin Road, merge onto I-471 South via Exit 10 toward Newport, KY, I-471 South becomes US-27, 9615 Alexandria Pike'), (2380, 4951, 2380, '614-778-4305 Jack De', ' ', 'Route 61', ' ', 'Deer Lake', 'PA', '17961', '', ' Roughly 7 miles from Hamburg PA -61 North 7 or 8 miles '), (2381, 4952, 2381, '304-946-5940 Russ', 'Jack\'s cell 614-778-', 'Job Site ', '', 'Logan', 'WV', '', '7:00 am - 5:00 pm Job Site', ' 79 South to Charleston, WV, Rt. 119 South to Rt. 73 East, go to Rt. 10 South (Bad road - Narrow), on left large Catepillar Dealer (Walker Cat), turn into Walker Cat parking lot, batch plant behind '), (2382, 4953, 2382, '614-679-3793 Rob', 'Use Email ', 'Interstate 81', 'Exit 107', 'Tremont', 'PA', '17981', '', ' Schuylkill county. Going North/South take exit 107 to Tremont at stop sign turn left, 1/8 mile batch plant is on the right. Lab on left '), (2383, 4954, 2383, '614-778-4305 Jack Ce', '(614) 876-1899 Fax/6', 'Johnstown Airport ', '', 'Johnstown', 'PA', '', '', ' Rte 219 either North or South depending upon where you are coming from, get off at the Galleria Exit, follow Airport signs, you are on Airport road for 1.2 miles, just past construction entrance sign turn left onto Fox Run Road to concrete plant, 1st trailer on left '), (2384, 4955, 2384, '614-679-3793 Rob/ 41', '614-876-1899 Fax', '4343 Weaver Court North', '', 'Hilliard', 'OH', '43026', '', '79S to Neville Island Exit. Left at stop light at end of ramp. 2 miles bear left and cross bridge. Right at end of bridge onto 4th Avenue. Go 1 mile or so, site is on left across from Grogans Beer Dist '), (2385, 4956, 2385, '614-679-3793 Annette', '614-778-4305 Jack\'s ', 'Job Site ', '', 'Pittsburgh', 'PA', '', '', 'I-80 East to exit #84 (Reynoldsville Exit), at bottom of exit ramp turn right, them make left at the old Diamond J Truckstop, you will see their concrete batch plant '), (2386, 4957, 2386, '(304) 797-1411 Ext. ', '(304) 797-0043 Fax', '4996 Freedom Way', '', 'Weirton', 'WV', '26062', '8:00 am - 4:00 pm ', 'Rt. 22 W to Wierton, Exit #2, Main Street. Immediately get in left hand lane at 1st light. Turn left onto Freedom Way. Pass Elby\'s Big Boy. Go pass Rollcoaters. Go under blue railroad bridge in gray cinder block building immediately on right. '), (2387, 4958, 2387, '513-829-3448/513-276', '513-829-4233 Fax /51', '4408 Dixie Highway', '', 'Fairfield', 'OH', '45014', '8:00 am - 5:00 pm ', ' I-76 West, at I-76, Exit 20, merge onto I-76 South, merge onto I-76 (US-224) West, at I-76 I-71 Exit, merge onto I-71 West, merge onto I-275 (NW), at I-275, Exit 41 (OH 4 / Hamilton / Fairfield), merge onto SR-4 (Springfield Pike) North, arrive 4480 Dixie Highway '), (2388, 4959, 2388, '(330) 336-3109', '(330) 336-2882 Fax', '6875 Boneta Road', '', 'Medina', 'OH', '44256', 'Call ahead !!', 'Rt. 76 West to Wadworth Exit (#9) to Rt. 94 N to Fixler Rd. & go West (turn left) Go 2 streets Beechroad / Bonita turn right (north) Field Duplex Gray Colonial on right hand side. x218 18E 94S Elevation: 1092 Feet, Lat: 41.138*N, Long: 81.864*W Dead Weight Correction Value: 0.9993 '), (2389, 4960, 2389, '(814) 774-2664', '814-774-5394 Fax New', '432 Noble Road', 'PO Box 192', 'Girard', 'PA', '16417', '7:00 am - 4:30 pm', 'Rt. 20W thru Girard. Turn Left on Old Ridge Road before bridge. Turn left onto Noble Rd. Blue building '), (2390, 4961, 2390, '304-233-2710', '304-233-2711 Fax', '3401 Market Street', '', 'Wheeling', 'WV', '26003', '7:00 am - 4:00 pm', 'Wheeling Exit 26th Street. Turn Left on to Chapline. Cross R/R Tracks. Take second Right. Site straight in front. 70E First exit thru town, at 2 South, 10th Street to 31st (Main Street), 29th street block (left), 1 block, turn right under (470) to 31st street Formerly AOK Trucking'), (2391, 4962, 2391, '814-574-5095 Dan ', '814-571-5241 Larry', 'Job Site ', '', 'Lackawanna County ', 'PA', '', '8:00am-5:00pm/7:00am-5:00pm', ' MUST Call Larry to schedule If Special Trip, must inform customer about the cost to come to the facility'), (2392, 4963, 2392, '248-535-3375 Rob Cel', '248-535-3463 Marty G', 'Job Site', '', 'Flint', 'MI', '', '7:00 am - 4:00 pm', 'I-75 North through Detroit towards Flint. Take I-475 (Exit 111) North past I-69 to Carpenter Road (Exit 10). Turn right onto Carpenter Road, head East crossing railroad tracks and then through Dort Highway. Job site is on left side of Carpenter Road just past the Flint River, if you get to Branch Road you\'ve gone too far. There will be 4 trailers lined up by the road, the furthest trailer East is home to the break machine. 11/02 Install Digital on s/n 95129'), (2393, 4964, 2393, '440-232-9945/ 440-82', '440-232-9946 Fax', '4 Hemisphere Way ', '', 'Bedford', 'OH', '44146', '8:00 am - 5:00 pm ', 'I-271, Exit 23 (OH-14/Broadway Avenue/Forbes Road), bear left onto Fair Oaks Road, bear left onto SR-14 (Broadway Avenue), (I-271/I-480 W), bear left onto Union Street, left onto Egbert Road, next to Tinkers Creek there is 1 building, office on left, across from the Golf Course '), (2394, 4965, 2394, '440-232-9945/440-823', '440-232-9946 Fax', '4 Hemisphere Way ', '', 'Bedford', 'OH', '44146', '8:00 am - 5:00 pm ', 'I-271, Exit 23 (OH-14/Broadway Avenue/Forbes Road), bear left onto Fair Oaks Road, bear left onto SR-14 (Broadway Avenue), (I-271/I-480 W), bear left onto Union Street, left onto Egbert Road, next to Tinkers Creek there is 1 building, office on left, across from the Golf Course (On GPS enter 200 Egbert Road, Bedford, OH 44146 to find) '), (2395, 4966, 2395, '614-203-3917 Jason C', '', '6211 Avery Road', '', 'Dublin', 'OH', '43016', '', ' Elev. 850 Feet Lat. 40.099 Degrees North Long. 83.114 Degrees West DW Correction Value 0.9993 '), (2396, 4967, 2396, '440-232-9945/440-823', '440-232-9946 Fax', '4 Hemisphere Way ', '', 'Bedford', 'OH', '44146', '8:00 am - 5:00 pm', 'I-271, Exit 23 (OH-14/Broadway Avenue/Forbes Road), bear left onto Fair Oaks Road, bear left onto SR-14 (Broadway Avenue), (I-271/I-480 W), bear left onto Union Street, left onto Egbert Road, next to Tinkers Creek there is 1 building, office on left, across from the Golf Course '), (2397, 4968, 2397, '201-386-8110 x 1126', '201-386-8155 Fax ', '426 Barell Avenue', '', 'Carlstadt', 'NJ', '7072', '', ' 9/07 Rebulit machine, cube head, & top section of sphere, numerous parts put on machine, Calibrated by Ben James (Accu-Cal, Inc.), out of our territory shipped out 9/14/2007'), (2398, 4969, 2398, '(330) 799-3221 x 149', '(330) 799-9098 Fax', '3760 Oakwood Ave.', '', 'Youngstown', 'OH', '44509', '7:00 am - 4:30 pm', 'I-80 E to Exit #224B to 680E. Get off at Exit #2 (Meridan Ave) At end of ramp turn right on Meridan. Go 1 mile Turn right on Oakwood Ave. Go approx. 1/4 mile. Cross RR tracks. Site on right. Red brick building. Go in parking lot between buildings. Go in freight doors. '), (2399, 4970, 2399, '717-258-7519 Denny (', '717-258-7532 Fax (Di', '50 Spring Road', 'PO Box 40', 'Carlisle', 'PA', '17013', '8am-5pm Office / 7am-11pm Lab', 'DIRECTIONS FROM HIA(AIRPORT): Exit airport and follow signs to Harrisburg, Route 283. Take Turnpike Route 76 West, towards Pittsburgh. Travel approx 25 mi. Exit ay #16 Carlisle. Make a right turn off exit ramp onto route #11 South. Travel Route 11 South for approx 2.5 mi. You will go thru 5 lights. Travel another 1/4 mi after last light. Just before railroad tracks, make a hairpin right onto Rt 34N(Spring Rd). Lear Corp will be on your left. Go 2 blocks & park in lot on right. Enter Main Office across street.'), (2400, 4971, 2400, '814-464-0262', '814-464-0268 Fax', '140 E. 16th St.', '', 'Erie', 'PA', '16503', '7:00 am - 5:00 pm', 'I80 E to I79N, to 12th St. E to French S to 16th '), (2401, 4972, 2401, '845-938-2591 Don', '845-938-4495 Fax', 'Dept. of Civil & Mechanical Engineering', 'Mahan Bldg. #752, Thayer Road', 'West Point', 'NY', '10996', 'PUTTING IN ARCHIVED DATABASE', ' (West Point directions) (Payment set up throught Fed. BID) I-87 (New York State Throughway) North, Exit 16 (RT-17/Harriman), right onto SR-17, turn off ramp (NY 32/ US 6 East/NY 17 South/ Harriman), merge SR-32, southwest, SR-17 (SR-32), continue on US-6 at roundabout, take the third exit (US 6/Palisades Interstate Parkway), at roundabout take 4th exit, exit roundabout onto US-9W, merge onto SR-218 (Main Street), continue North on West Point Highway, arrive Thayer Road *(Make no tour as per Bill)*'), (2402, 4973, 2402, '732-618-2572 Cell Jo', '732-252-6994 Fax ', '173 Woodcrest Drive ', '', 'Freehold', 'NJ', '7728', '', ' I-195 (East), at I-195, Exit 16A (CR-537/Six Flags/Mt. Holly), turn left onto CR-537 (Monmouth Road), turn right onto Stillwells Corner Road, turn right onto Woodcrest Drive whitney@intelligent-concrete.com'), (2403, 4974, 2403, '440-234-2900 x 8101', ' 440-234-7466 Fax', '640 North Rocky River Drive ', '', 'Berea', 'OH', '44017', '8:00 am - 5:00 pm ', 'Turnpike/21 Exit 11 Old Rt. 21 N 1/2 Mile Make left on West Snowville Road Use PO# HD 105570 for all calibrations for multiple years '), (2404, 4975, 2404, '313-918-4492', '248-344-2115 Fax', '24371 Catherine Industrial, Suite 229', '', 'Novi', 'MI', '48375', '9:00am - 4:00pm', ' I-275 South, Exit (Grand River East) keep towards10 mile road, right on Catherine Industrial Drive ** Conditional Net 30 hold certs for payment** '), (2405, 4976, 2405, '585-269-6493 Patrick', '585-269-6612 Patrick', 'SSD Div., 800 Lee Road ', 'Building 601', 'Rochester', 'NY', '14606', '', 'I-90 Exit, Leroy Exit, 490 to 390 North to Lexington Avenue Exit, make right to next left, to Lee Road, Rt. 180 yards North to parking lot Billing Address: ITT Corp, Attn: SSD, PO BOx 900, Seneca Falls, NY 13148 Amex Cedit Card Billing Address is: 191 Miles Cutting Lane, Pittsford, NY 14534 Auth. Code #6208'), (2406, 4977, 2406, '219-874-4217 ', '219-979-6728 Fax', '1919 E US 12', '', 'Michigan City', 'IN', '46360', '6:00 am - 3:30 pm', 'I-80, Exit 72, bear right (South), onto US-31, at US-31/US-20 Exit, bear right onto ramp, turn right onto US-20 (Lincold Way W), continue West onto US-35 (E Michigan Blvd.), go 4.1 miles, bear right onto US-12 (Spring Street) IN 1: -019 RD 1: 0000 IN 2: 7006 RD 2: 3981'), (2407, 4978, 2407, '330-335-0606', '330-335-0908 Fax', '215 Rainbow Street', '', 'Wadsworth', 'OH', '44281', '', '76 to Exit 9, turn South, 2 miles to Rainbow on Right, one way St. 1/2 mile to lab on left '), (2408, 4979, 2408, '(724) 746-4441', '(724) 745-4261 Fax', '(Formerly J & L Testing)', '938 S Central Ave.', 'Cannonsburg', 'PA', '15317', '6:30-? Can be flexible - call', 'I-79 S to Exit #9 Houston. Turn right onto Rt. 519. Go 1 mile to stop sign. (You will pass Cannonburg Hosp on Rt. 519) Turn left at stop sign. 2nd building on left. Sign says J & L Testing. '), (2409, 4980, 2409, '814-774-3573', '814-774-2854 Fax', '438 Church Street', '', 'Girard', 'PA', '16417', '', 'Take I-79 to 90W to Fairview Exit 16, 98N West on 20 3rd Red light Church Street '), (2410, 4981, 2410, '716-665-5313 x 245', '716-665-5121 FAX', '178 Blackstone Avenue', '', 'Jamestown', 'NY', '14701', '', 'Exit 13 make right Falkner thru 1st red light at 2nd light make left Tiffing Avenue Take 2nd right that\'s Blackstone Ave. 1st FActory on Left '), (2411, 4982, 2411, '412-719-1409 Jim Gov', ' ', '1237 Berlin Plant Rd.', 'Suite 200', 'Somerset', 'PA', '15501', '7:00-4:00', ' 79 to Wexford Exit, (Orange Belt), Rt. 910 East, box trailer sitting on the right hand side of the road approx. 6 to 8 miles from exit, right before the bridge over Turnpike, turn right onto S. Montour Road, site is on the left Steve Rhodes 412-475-5300 1/09 Replaced pump hose & fluid S/N 02059'), (2412, 4983, 2412, '517-721-0106', '517-721-0107 Fax', '6539 Westland Way', 'Suite 13 Westland CMC Center', 'Lansing', 'MI', '49817', '8:00 am - 5:00 pm', ' I-96 West, exit 98B, Route 27 to Creyts Road, turn left to Westland Way turn left Lansing Road, 27 E/N '), (2413, 4984, 2413, '517-655-4602 x112/51', '517-655-8042 Fax', '3416 Corwin Road ', '', 'Williamston', 'MI', '48895', '9:00 am - 4:00 pm ', ' I-96 to Williamston Exit, go North to Lynn Road, go West to Corwin Road, go North on Corwin, take right just before R.R. Tracks, go all the way to back to Kelcris Corporation '), (2414, 4985, 2414, '814-536-6630', '814-536-5730 Fax ', '340 Strayer Street', '', 'Johnstown', 'PA', '15906', '', ' USD-422 South East (Benjamin Franklin Highway), US-422 SR-954 Exit, continue East, merge onto SR-954 (South), turn left onto SR-56 (Rte-56 Hwy E), arrive 340 Strayer Street '), (2415, 4986, 2415, '330-672-2968', '330-672-7949 Fax ', 'Geology Department', 'McGilvrey Hall', 'Kent', 'OH', '44242', '', 'McGilvrey Hall, Intersection of Lincoln & Summit Street Across from DuBois Bookstore Rt. 43 N to Rt. 59 East, 2 or 3 lights, turn right '), (2416, 4987, 2416, '(616) 457-4920', '616-224-2651 Fax', '3373 Busch Drive SW', '', 'Grandville ', 'MI', '49418', '6:30-5:30', 'Route 196 West to Jenison Exit #69B - for Chicago Drive West. Go West 3 miles. Southside of road (left side). '), (2417, 4988, 2417, '(304) 788-3213', '(304) 788-3232 Fax', 'Route 4 Box 226', '', 'Keyser', 'WV', '26726', '7:30am - 4:00pm', 'South of Keyser on Rt. 220. 1 1/4 mile - turn right onto Stoney Run Road (at Pizza Hut) Go 1/4 mile. 1st concrete driveway on right (Sign) '), (2418, 4989, 2418, '(814) 797-1261', '', 'Beatty Avenue', '', 'Knox', 'PA', '16232', '', ' '), (2419, 4990, 2419, '(814) 797-1261', '', 'Beatty Avenue', '', 'Knox', 'PA', '16232', '', ' '), (2420, 4991, 2420, '724-545-7850', '', '233 Northpark Drive', 'West Hills Industrial Park', 'Kittanning', 'PA', '16201', '8:00 - 5:00', 'Take I-80 West to 79 South, follow to 422 East to West Hills Exit. Go to stop sign at intersection, Turn Left, at next stop sign, turn right. You will be on Northpark Drive, but there is no sign. Pass Dr. Sotos office on left, next building on left. Gray cement building with lots of glass. '), (2421, 4992, 2421, '614-679-8338 Steve', '', '601 N. Sugar St.', '', 'Lima ', 'OH', '45801', '8:00-5:00 (O) 7-5 (S)', ' '), (2422, 4993, 2422, '724-350-4038', '', 'Route 980 & Stuebenville Pike Road', '', 'McDonald', 'PA', '', '7:00am - 4:00pm', 'I-79 South to business 60 West. This will turn into Route 22 once you pass over the parkway. Go to the McDonald/Midway exit. Get off @ end of ramp, go right under 22 & make 1st left. 20 yards make a right onto Stuebenville Road. Go 1,000 feet and make a right into plant '), (2423, 4994, 2423, '410-683-9202/410-461', '410-683-9297 FAX/443', 'E South Street', '', 'Frederick', 'MD', '', '', '70 East to South Street Exit, cross RR Tracks, stay to right of split rail fence, 100 yards, take right, building marked Lab Invoices sent to: MUST HAVE PO# Financial Services Center PO Box 4091, Postal Station \"A\" Toronto, ON M5W 5K4 CANADA'), (2424, 4995, 2424, '276-223-1051', '276-223-1653 Fax ', '510 Kents Lane', '', 'Wytheville', 'VA', '24382', '8:00 am - 4:00 pm ', ' I-81 South, Exit 77, right at top of ramp, immediate left turn at stop sign on to service road, travel 2 miles to Kents Lane on right, right turn on Kents Lane, travel 1 mile to Lane Enterprises, Inc. on right '), (2425, 4996, 2425, '(502) 830-7840', '', '401 Hoffman Drive', '', 'Hendersonville', 'KY', '', '', ' '), (2426, 4997, 2426, '(502) 495-5800', '(502) 495-5801 Fax', '9810 Bluegrass Parkway', '', 'Louisville', 'KY', '40299', '', 'Go 71 West to Exit #9A (Gene Snyder Freeway) South to Rt. 265S Get off at Exit #25B (Rt. 64W). At next exit #17 which is Blankenbaker Road - go to top of exit and turn left (south). At next light turn right and stay on this road (Bluegrass Pky) thru industrial park. Go through one light and make left to job site (watch for small company sign). 1 story building on right. '), (2427, 4998, 2427, '(502) 495-5800', '(502) 495-5801 Fax', '', '', 'Wickliffe', 'KY', '', '7:00-5:00 Central', ' '), (2428, 4999, 2428, '(703) 968-4780', '(703) 968-4778 Fax', '4465 Brookfield Corp. Drive', '', 'Chantilly', 'VA', '22021', '', ' '), (2429, 5000, 2429, '(614) 777-6013 / 614', '(614) 777-6160 Fax', '3530 Parkway Lane', '', 'Hilliard', 'OH', '43026', '8:00 am - 5:00 pm', 'Take I-270 to Exit 13. Turn left, just after Motel 6, turn left again. At stop sign follow road to end, building on left. ***ISO Requested*** Changed name from Solar Testing to Lee Testing & Engineering'), (2430, 5001, 2430, '606-573-4300', '606-573-6722 Fax', '114 North 2nd Street', 'PO Box 488', 'Harlan', 'KY', '40831', '7:30 am - 4:00 pm', 'Two streets above Court House Narrow alley next to building before parking lot, machine in back of building. '), (2431, 5002, 2431, '724-651-4650 Tom Cel', '', 'Rutlage Rd', '', 'Hermitage', 'PA', '', '', ' '), (2432, 5003, 2432, '225-767-9126', '225-767-9179 Fax ', '4101 Gourrier Ave 3216', '', 'Baton Rouge', 'LA', '70808', '', ' '), (2433, 5004, 2433, '717-418-5650 Scott C', '717-432-7343 FAX', 'Job Site ', '', 'Chambersburg', 'PA', '', '7:00 am - 5:00 pm Mon - Thurs.', ' '), (2434, 5005, 2434, '502-253-2500 / 502-2', '502-253-2501 Fax', '13425 Eastpoint Centre Drive, Suite 122 ', '', 'Louisville', 'KY', '40223', '8:00 am - 5:00 pm', ' I-265, Exit 30, merge onto SR-146 (Lagrange Road) (South), turn left onto Nelson Miller Pkwy, turn left onto Eastpoint Centre Drive FORMERLY LAW ENGINEERING'), (2435, 5006, 2435, '', '', '544 Fairground Road', '', 'Front Royal', 'VA', '22630', '', ' I-66 to 522 North to 1st red light which is Fairground Rd, turn east ( only way you can turn) 1 mile on right hand side '), (2436, 5007, 2436, '859-509-9266 Brian', '', 'Storage ', '', 'Lexington ', 'KY', '', '', ' Right off I-75 '), (2437, 5008, 2437, '571-237-0590 Huntae ', '703-858-1858 Fax', '8001 Galleria Drive ', '', 'McLean', 'VA', '20122', '', ' I-495 (South), Exit 46A (VA-123/Chain Bridge Road/Tyson Corners/ Vienna), merge SR-123 (Chain Bridge Road), continue North on International Drive to Galleria Drive '), (2438, 5009, 2438, '859-255-3308 x 3732 ', '859-254-2327 Fax / 8', '2456 Fortune Drive ', '', 'Lexington', 'KY', '40509', '', 'I-75, Exit 118, merge I-64 (I-75) East, at I-64, Exit 111, continue (South East) on I-75, at I-75, Exit 110, bear right, onto US-60 (Winchester Road), turn left onto Fortune Road '), (2439, 5010, 2439, '614-325-3401 Allen\'s', '614-875-1175 Fax', '125 Harmin Road', '', 'Breaks ', 'VA', '24607', '8 am - 4 pm', ' HWY 80 Harmin Road '), (2440, 5011, 2440, '', '', '37 S. Main St, Suite A', '', 'Chambersburg', 'PA', '17201', '5-Aug', ' '), (2441, 5012, 2441, '989- 288-2661 Ext. 2', '989- 288-6918 Fax', '7505 Highway M-71', '', 'Durand', 'MI', '48429', '5:00 am - 5:00 pm', 'From I-75 take 69W to Corunna/Durand Exit #118. Turn right at end of ramp. Then go north on 71W approx. 3/4 mile on right. Pipe tester - Calibrate between piston and lower beam This machine is indoors, has hand pump Weight of bottom beam - 900 lb. DO NOT TAKE ABOVE 125K'), (2442, 5013, 2442, '412-303-7022 Cell To', '412-782-2376 Fax', '80 Hafner Street', '', 'Etna', 'PA', '15223', '', ' Butler, PA, 2nd light (Freeport Road), make a right, go across RR Tracks, at stop sign go straight thru, make a right at Etna Industrial Plant, go 3/4 mile, left hand side, go in bldg. '), (2443, 5014, 2443, '216-831-5500', '(216) 831-6053', 'Chagrin Boulevard', '', 'Cleveland', 'OH', '44122', '', 'I271N to Chagrin Blvd (422 W) Go West to Commerce Park and Merchantile, Make left, bear to Right at Y follow to big Master Builders sign 1/25/00 NO AS PER MIKE O\'BRIEN '), (2444, 5015, 2444, '989-240-2936 John', '989-345-1100 Fax ', '11362 Steckert Bridge Road ', '', 'Roscommon', 'MI', '48653', 'By appointment only', ' I-75, Exit 239, merge onto SR-18 (NE), left onto Lancewood Drive, continue on Steckert Bridge Road, at Crawford County Line 3/4 miles on the left '), (2445, 5016, 2445, '(717) 675-2717', '', 'Old Route 115', '', 'Lehman', 'PA', '18627', '', ' '), (2446, 5017, 2446, '(717) 238-9331', '717-364-1640 Fax', '1649 Bobali Dr', '', 'Harrisburg', 'PA', '17101', '7:00 am - 4:30 pm ', ' '), (2447, 5018, 2447, '724-283-6200 x201 Rh', '724-321-0096 Rhonda ', 'Storage', '', 'Fenelton', 'PA', '', '', ' '), (2448, 5019, 2448, '814-474-4904/724-321', '724-283-1067 Fax', 'Storage ', '', 'Fenelton', 'PA', '', '', ' North on 79, Exit 174 (McKain), off ramp to left, stay on road until Rt. 832, at the crossroads go left '), (2449, 5020, 2449, '614-340-1690 x 2635', '614-487-3704 Fax ', '1275 Kinnear Road ', '', 'Columbus', 'OH', '43212', '7:30 am - 6:00 pm ', ' I-71, Exit 119B (I-270/Indianapolis), merge onto I-270 (West), at I-270, Exit 22 (OH-315/Olentangy River Road), merge onto SR-315 (South), turn off ramp (Kinnear Road/King Avenue/Fifth Avenue), turn right onto Kinnear Road '), (2450, 5021, 2450, '240-876-6724', '', '451 Hungerford Dr, Suite 113', '', 'Rockville', 'MD', '20850', '8:00am - 5:00pm', ' 95 South to 495 West, to 355 North to 451 Hungerford(355) '), (2451, 5022, 2451, '616-866-1057 / 616-6', '616-464-1189 Fax', '2476 10 Mile Road ', '', 'Rockford', 'MI', '49341', '', ' I-96 (West), Exit 31B (US-131/Big Rapids/Cadillac), bear right onto US-131, At US-131, Exit 97, continue North on ramp, turn left onto 10 Mile Road NE, left at light, Red Brick Bldg.., on left 2/11 S/N 81145-00119 replaced rapid travel O\'Ring (Double), meter stem O\'Ring & B/U Ring, and return springs, use Double O\'Rings '), (2452, 5023, 2452, '540-815-4369 Cell Sh', '540-775-2563 Fax', '11023 Dennis W Kerns Parkway', '', 'King George', 'VA', '22485', '8:00 am - 5:00 pm ', ' King Hwy toVA-3 to Birchwood Creek Road to Dennis W. Kerns Parkway '), (2453, 5024, 2453, '217-369-1737 Jason Y', '', '1018 South Bradford', '', 'Reese', 'MI', '48757', '', ' '), (2454, 5025, 2454, '616-647-3004', '616-647-3005 Fax ', '960 West River Center Drive, Suite A', '', 'Comstock Park ', 'MI', '49548', '8:00 am - 5:00 pm', ' Near Grand Rapids off M 131 & M 37 If goes over 40 days back on COD Looking for A2LA'), (2455, 5026, 2455, '724-263-0110', '724-250-7450 Fax', '503 Pine Run Road', '', 'Appollo', 'PA', '15613', '8:00am-5:00pm/7:00am-3:30pm Job ', ' I-79, Exit 60B (PA-60/Airport/Moon Road), merge onto SR-60 (Steubenville Pike), (West), continue on Steubenville Pike, continue on US-30 (US-22), bear right on ramp (Montour Church Road/ Old Steubenville Pike), bear left onto Montour Church Road 4/12 79 South Waynesburg Exit, west on 21 4/12 Machine moved to RT 18 & RT 21, Waynesburg, PA '), (2456, 5027, 2456, '502-868-6221', '502-863-0834 Fax', '150 Carley Court ', '', 'Georgetown', 'KY', '40324', '', ' '), (2457, 5028, 2457, '276-202-1183 Cell Pa', '276-889-4066 Fax / 2', '9069 Porterfield Highway', '', 'Abingdon', 'VA', '24210', '8:00am-5:30pm/8:00am-4:30pm Job', ' I-81, Exit 14, in Abingdon, VA, onto Route 19, go right off of exit ramp, follow 19 approx. 10 miles, continue up Johyn Douglass Wayside lab will be on right at the top of the mountain, right off highway '), (2458, 5029, 2458, '304-872-8110', '304-872-7110 Fax', '11 Hanna Farm Rd', '', 'Summersville ', 'WV', '26651', '6-Sep', ' I79 to US19N, right on Mountaineer pkwy, right on Phillips Run Road, Right on CR-8 south on Hanna Farm Road(Bld. at turn with grey siding '), (2459, 5030, 2459, '(412) 863-0316', '', '', '', 'Irwin', 'PA', '', '', ' '), (2460, 5031, 2460, '360-388-0288 Jason\'s', 'No Fax (Use E-Mail)', '3146 Sanatoga Road', '', 'Pottstown', 'PA', '19464', '', 'INFO THAT NEEDS SUBMITED BEFORE ARRIVAL: Company Name Drivers name as it appears on drivers license Drivers License # and State Vehicle Year, Make, Model Vehicle #(if applicable) License Plate # and State Description of the load or equipment Brought onsite.'), (2461, 5032, 2461, '216-433-5465 Dave ', '216-433-8300 Fax / 2', '21000 Brookpark Rd.', 'Send Cert copy Here-Dave Krause', 'Cleveland', 'OH', '44135', '', 'Take I-80 W to I-71 N. Get off at exit 238? onto 480W. Take Exit 10 off rt 480 W to rt 17 Brookpark Road, follow past airport. You will see NASA Bldg on right, go past and you will see another entrance on the left of NASA, make a left and go to guard gate for check in Meet with Mike McGaw at Guard gate Need 2 sets of CERTS, one to McGaw one to NASA Attn: Dave Krause, Mail Stop 51-1'), (2462, 5033, 2462, '216-433-5465 Dave ', '216-433-8300 Fax / 2', '21000 Brookpark Rd.', 'Send Cert copy Here-Dave Krause', 'Cleveland', 'OH', '44135', '', 'Take I-80 W to I-71 N. Get off at exit 238? onto 480W. Take Exit 10 off rt 480 W to rt 17 Brookpark Road, follow past airport. You will see NASA Bldg on right, go past and you will see another entrance on the left of NASA, make a left and go to guard gate for check in Meet with Mike McGaw at Guard gate Need 2 sets of CERTS, one to McGaw one to NASA Attn: Dave Krause, Mail Stop 51-1'), (2463, 5034, 2463, '(304) 743-3400', '(304) 743-3405 Fax', '', '', 'Near Huntingdon', 'WV', '', '', 'Will fax '), (2464, 5035, 2464, '', '', '', '', 'Roaring Spring', 'PA', '', '7:00am - 9:00pm', ' PUT MONTH, DAY & YEAR ON STICKERS '), (2465, 5036, 2465, '814-224-2121 x 4256', '814-766-4402 Fax ', 'Prestress Plant (Carpenter Shop)', 'Route 36 North, Contract Division', 'Roaring Spring', 'PA', '16673', '6:30 am - 4:00 pm ', ' ***1 Year Schedule*** Take Roaring Springs exit off Rt. 200. Take 36 South ( about 1 mile ) on left. Newcrete Plant Door 6 Certs to billing ***Carpenter Shop Only paying Sales Tax*** '), (2466, 5037, 2466, '', '', 'Job Site ', '', 'New Jersey', 'NJ', '', 'Annette - Prestress Secretary', ' '), (2467, 5038, 2467, '814-224-6870', '814-766-4402 Fax ', '404 Keck Street', '', 'Seward', 'PA', '15954', '7:00 am -3:30 pm Mon-Thurs.', 'I-80 E toward Clarion to PA 66 exit 64 to New Bethlehem turn right onto Broad St/PA 66/PA-28 turn left onto Nort St/PA 66/PA-28 Take the US 422 E turn left onto US 422-BR/Indiana Rd become US-422 E take PA-954 toward Sixth St. take ramp toward Armagh/ Johnstown turn right PA-954 turn left onto PA 56 turn right onto PA-711 turn right onto Keck St. '), (2468, 5039, 2468, '(814) 224-2121 x 427', '814-766-4402 Fax ', 'Route 36 North', '(Ready Mix Plant)', 'Roaring Spring', 'PA', '16673', '6:30 am - 3:30 pm', 'Take Roaring Springs Exit off Route 220. Take 36S (about 1 mile) on left - Middle of site - across bridge toward quarry - lab in tin roof building on left just across bridge. '), (2469, 5040, 2469, '814-937-7868 Mark ', '814-766-4402 Fax ', 'Attn: Mark Moyer', '1274 Nesl Drive', 'Roaring Spring ', 'PA', '16673', '7:00 am - 4:00 pm ---No Fridays', ' '), (2470, 5041, 2470, '814-330-2435', '814-766-4402 Fax ', 'JOB SITE', '', 'Port Matilda', 'PA', '', '', ' PUT MONTH, DAY & YEAR ON STICKERS '), (2471, 5042, 2471, '570-235-1724', '814-766-4402 Fax ', '1500 Highway 315', '(In Trailer St. 290)', 'Wilkes Barre', 'PA', '18702', '3-Jul', ' I-76 (Pennsylvania Turnpike) (South), bear left onto Ramp 7, (US-30/Irwin/N. Huntingdon Twp/Greensburg), continue on US-30 (Lincoln Highway), turn right onto Arona Road Trailer ID# ST-290 '), (2472, 5043, 2472, '412-231-1283', '412-231-0889 Fax/812', '600 Reedsdale Street', '', 'Pittsburgh', 'PA', '15212', '8:00am-5:00pm/7:00am-5:00pm Job', ' 79 to 279, left before get in tunnel, stay left, North Shore Exit, end of ramp at light make left, Tony Dorsett Drive, make left into parking garage, sight is on right, 3 trailers, last one, no name on it North Shore Connector Project Site across from PNC Park in a northwestern direction, office trailer is on North side of parking garage just off of Reedsdale Street'), (2473, 5044, 2473, '412-246-0330 x 127/4', '412-246-0341 Fax Joe', 'Intersection Stanwyck & Penn Ave.', '', 'Pittsburgh', 'PA', '15227', '', 'SR-28 (East) (PA-28/Etna), at SR-28, Exit 2 (40th Street Bridge), turn right onto 40th Street Bridge (Washington Xing Brid), continue on 40th Street, right onto Penn Avenue, corner of Penn & Stanwyck Avenue, across from the 5th Avenue Place Building All Invoices must have project number on them. 390100.01-Intials-Sequence ### (3 digit number) If Contact at job site does not know sequence number get their '), (2474, 5045, 2474, '724-770-2477/724-770', '724-770-5601 Fax/ 72', '400 Frankfort Road', 'Technology Center ', 'Monaca', 'PA', '15061', '', '15 North of Pittsburgh Airport on Rte 60. Rte 60 to Rte 18 go south 1.5-2 miles red light that\'s main gate 79 to 60 North, Exit 12 Beaver Valley Way. Stay Left Down Hill 2 Red Lights go past make Right Straight Back. Need CAL 60 Need special tool & manual to calibrate Compressometer & Swell Will be safety orientation'), (2475, 5046, 2475, '216-344-4040', '216-344-4044 Fax', '820 W. Superior Avenue, Suite 320 ', '', 'Cleveland', 'OH', '44113', '', ' I-77 North, at I-77, Exit 162A (Woodland Avenue/ E. 30th Street), turn right onto US-422 (SR-8), left onto W. Huron Road, continue west onto W. Superior Road Formally Neyer, Tiseo & Hindo '); INSERT INTO `job_site` (`JobSiteID`, `siteContact`, `customerID`, `Phone`, `Fax`, `Address1`, `Address2`, `City`, `State`, `Zip`, `WorkingHours`, `Directions`) VALUES (2476, 5047, 2476, '616-451-6270 Wendy', '616-451-6271 fax ', '1430 Monroe Ave Suite 180', '', 'Grand Rapids', 'MI', '49505', '8 am - 5 pm', 'South side of Michigan Take Rt. 75 to Springwells Fort Exit. Take Left ( South) to Jefferson, take right on Jefferson (waste water treatment center) Site on left. DMT in trailer. I-96, 131N, 1st exit Formally Neyer, Tiseo & Hindo '), (2477, 5048, 2477, '248-324-5272', '', '11675 Belden Court', '', 'Livonia', 'MI', '48150', '4-Aug', 'Formally Neyer, Tiseo & Hindo I77N, East on 9th St., 2nd left lane, turn right at light on Terio, past Jacobs Field, through carnegin Ave, 1/2 left, Huron past Hard Rock, Superior Left, west 26 left Send Certs to NTH Consultants, LTD. 820 W. Superior Ave. Suite 320, Cleveland OH 44113 Attn: Joe O\'Connell '), (2478, 5049, 2478, '313-304-0822 Larry\'s', '248-521-0537 Jim\'s c', '2701 Greenfield Road', '', 'Dearborn', 'MI', '', '', 'I-94 exit 208 South on Greenfield Road, cross railroad tracks. Near Butler Street Trailers back corner of parking lot. Formally Neyer, Tiseo & Hindo Ernest Domas 313-304-3150 Eric Tucker 313-475-0518'), (2479, 5050, 2479, '484-893-1440', '248-324-5178 Fax', '2770 Emrick Blvd. ', '', 'Bethlehem', 'PA', '18020', '7:00am-4:00pm/8:00am-5:00pm', ' I-476, Exit 56, right onto US-22, take US 22/SR-378 Exit, merge onto SR-378 South, 2nd Avenue Exit, arrive town of Bethlehem Formally Neyer, Tiseo & Hindo Ryan Walters-Staff Professional '), (2480, 5051, 2480, '610-524-6770 / 610-5', '248-324-5178 Fax', '444 Creamery Way, Suite 100 ', '', 'Exton', 'PA', '19341', '7:00 am - 3:00 pm ', 'I-76, Exit 312, merge onto Sr-100 (N. Pottstown Pike), right onto US-30 Bus (W. Lincoln Highway), turn left onto Oakland Blvd., right onto Creamery Way Formally Neyer, Tiseo & Hindo '), (2481, 5052, 2481, '610-524-6770 Deb', '610-280-6666 Fax', '444 Creamery Way, Suite 100 ', '', 'Exton', 'PA', '19341', '7:00 am - 3:00 pm Job ', ' I-76, Exit 312, merge onto Sr-100 (N. Pottstown Pike), right onto US-30 Bus (W. Lincoln Highway), turn left onto Oakland Blvd., right onto Creamery Way Formally Neyer, Tiseo & Hindo '), (2482, 5053, 2482, '(616) 381-1550', '(616) 381-1711 Fax', '3102 East Cork Street', '', 'Kalamazoo', 'MI', '49001', '', ' '), (2483, 5054, 2483, '513-321-5816', 'Use Email ', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W '), (2484, 5055, 2484, '513-321-5816', 'Use Email ', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W '), (2485, 5056, 2485, '513-321-5816', 'Use Email ', '611 Lunken Park Drive', '', 'Cincinnati', 'OH', '45226', '8:00 am - 5:00 pm ', ' Rt. 52 W. Kellogg Ave. off I-275 Beltway 4 miles to Wilmer Ave., take right 1 mile to Lunken Park Drive, across form Hanger 4, turn left, building on left. Dead Weight Correction Value - 0.9993 Elevation 683 Ft, Lat 39.162 N, Long 84.457 W '), (2486, 5057, 2486, '(607) 324-3375', '', '30 West Main Street', '', 'Hornell', 'NY', '14843', '7:30 am -3:30 pm ', 'From I-17, Take Exit #33. At end of ramp at \"T\" make right. At T with Rt. 21 turn left onto 21 N. Go 3 3/4 miles. Make 1st right just after Qwick Fill. Go through gate. Stay to right, Go to very end of compound. Go to brick building on right of Gaspways. Take \"As-found\" readings THEY CALIBRATE THEIR OWN EQUIPMENT Machine has oversized upper platen.'), (2487, 5058, 2487, '812-539-4300', 'Use Email ', 'Connoly Park', '252 Charles A Liddle Drive, Suite 1', 'Lawrenceburg', 'IN', '47025', '8:00 am - 5:00 pm ', ' 275 South to Lawrenceburg exit left on to US 50, shell gas go light Kroger strip mall turn right on to 48 go straight on Ind. Dr. go to right Charles A Liddle Motor Cycle Shop Password 218355'), (2488, 5059, 2488, '304-767-4595 Jeff B', 'Use Email', '101 Federal Drive', 'McDowell County', 'Keyser', 'WV', '', '7:00 am to 5:00 pm ', ' Off Highway 16, as soon as you cross McDowell County line you will go approx. 1,000 feet, take right onto gravel road, follow road to Clark Construction '), (2489, 5060, 2489, '315-469-3285', '315-469-1614 Fax', '4603 Nixon Park Drive', '', 'Syracuse', 'NY', '13215', '7:30 - 4:00', ' '), (2490, 5061, 2490, '(716) 285-3211', '716-286-6931 Fax', '5777 Lewiston Road', '', 'Lewiston', 'NY', '14092', '7:00 am - 3:00 pm', 'Take I-90 to Rt. 290 West. Go 190N. Go over bridges and take Exit #24 Witmer Road, Rt. 31W (make left). Go 1/4 mile. Take 1st road to right. Road will bend left to stop sign (Hyde Park Blvd). Go straight down large hill to security gate. Intercom there. ***See map. Machine is used to calibrate load cells only (no concrete) Machine is at least 1/8 mile inside building - need cart'), (2491, 5062, 2491, '614-275-1309 Chris', '614-275-1354 Fax / 6', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', ' 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building **Must have PO Number** Putting in archived database.'), (2492, 5063, 2492, '614-275-1309 Chris', '614-275-1354 Fax / 6', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', ' 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building '), (2493, 5064, 2493, '614-275-1309 Chris', '614-275-1354 Fax / 6', '1600 West Broad Street', '', 'Columbus', 'OH', '43223', '', '***Calibration procedure in file for S/N 510 Deflection*** 71 South to 70 West to West Broad St. Exit 5 Miles bottom ramp Red Light go straight off on right Art Building **Must have PO number*** Putting in archived database.'), (2494, 5065, 2494, '440-949-1815 x 1800 ', '440-949-1206 Fax', '5190 Oster Road', '', 'Sheffield Lake', 'OH', '44054', '8:00 am - 4:00 pm', ' Off I-80. Route 57N to I-90 (St. Rt 2) go east to Rt 611 (make left at light) at 4th light make right on Abby Road (Rt 301). 1 1/4 mile go over overpass Ford Plant on right to light make left. 2nd drive on left (Oldcastle) '), (2495, 5066, 2495, '904-545-7504 Brian D', '', '60 Haltiner Street', '', 'River Rouge', 'MI', '48218', '', 'Turn into IPS Property Sign will say IPS, go to right..Old Castle sign is on the gate. Follow Old Castle Receiving Signs '), (2496, 5067, 2496, '304-545-7606 Brent ', '(304) 722-4230 Fax', 'Storage', '', 'St. Albans', 'WV', '25177', '', ' '), (2497, 5068, 2497, '(304) 755-0131', '304-755-0131 Fax num', '220 Steward Lane (Rt. 35)', '', 'Winfield', 'WV', '', '6:30AM - 5:00PM Mon-Thurs', 'Off St. Albans Exit from I-64. Turn left - approx. 4 miles past Power Plant. Watch for signs McKinney Drilling on right. Turn onto Stewart Lane. '), (2498, 5069, 2498, '330-630-6239/330-630', '330-633-4939 Fax ', '275 Southwest Avenue', '', 'Tallmadge', 'OH', '44278', '', ' I-76 East (Akron) to Exit 29 (Route 532), turn left (North) at end of exit ramp, proceed on RT. 532 (aka Southeat Avenue) to the Tallmadge Circle, take the sixth right off the circle onto Southwest Avenue, proceed on Southwest Avenue approx. 1/4 mile to 275 Southwest Avenue on the left Tax ID# 74-3189734'), (2499, 5070, 2499, '(606) 673-4413', '(606) 673-4415 Fax', 'US Route 23, South of Louisa', '', 'Louisa', 'KY', '', '7:00am - 5:00pm', 'US Route 23 - 5 miles south of Louis (traffic light) Tan & Brown metal building on left. Next to Hylton Taxidermy. (30 Miles South of Ashland) '), (2500, 5071, 2500, '937-847-9707', '937-847-9720 Fax ', '238 School Street', '', 'Weirton', 'WV', '26062', '', ' US-22, Freedom Way Exit, bear right on Freedom Way, right onto Cove Road, right onto ramp, continue North on Weir Avenue, right onto South 11th Street, right onto School Street '), (2501, 5072, 2501, '(724) 258-6900', '(724) 258-8075 Fax', '1101 Railroad Street', '', 'Monongahela', 'PA', '15063', '7:30 am - 4:00 pm', 'I-79S to 70 East. 70 East to Exit # 35 (Rt. 481) into Monongahela. Make left onto Main Street. Go 10-11 blocks. Turn right on 11th Street Cross RR tracks. Rt 136 Dry Run Left Eat N Park, Taco Bell Conv LIght Make Right - 519 - 5 mile '), (2502, 5073, 2502, '703-263-0400', '703-263-9024 Fax', '14221A Willard Road, St 500', '', 'Chantilly', 'VA', '20151', '7:00am - 5:00pm', ' I-66 exit 53 towards VA-38 (Dulles Airport) Right onto SR-28 ( Sully Rd) right onto Willard Rd '), (2503, 5074, 2503, '814-536-6767x235 Bri', '(814) 536-6770 Fax/8', '647 Main St., Suite 200 2nd floor', '', 'Johnstown', 'PA', '15901', '7:30 am - 4:30 pm', 'Rt 219 S to 56 W and Get off at Bedford Street Exit, Go Right at Adams St at Stop Sign at end of exit ramp. Go to first stop and go left - go about 100 ft and RT onto Feeder Street & Park in Lot on Right side of the street - Go into brick bldg opposite of parking lot to second floor for key to testing room in the basement '), (2504, 5075, 2504, '740-667-7309', '740-667-7306 Fax', '25745 Cemetery Road', '', 'Coolville', 'OH', '45723', '8:00am-5pm Office; 8:30am-4pm Lab', ' SR 7 south out of Parkersburg to right on County Road 56 (at Coolspots) almost an immediate left on Cemetery Road to top of grade. Grey building with teal gutters. '), (2505, 5076, 2505, '517-206-4775 Fernand', '989-755-4254 Ashley ', '2675 Chicago Drive SW', '', 'Wyoming', 'MI', '49519', '8-5/6-6', ' ***ISO Requested***Certs to Job Site*** For PO# must call Cindy 989-755-4348 - Fax 989-755-4349 Cell 989-239-2447 ***MUST CALL FOR PO BEFORE COMING TO FACILITY*** '), (2506, 5077, 2506, '814-224-2121', '814-766-4402 Fax ', 'Formerly New Enterprise Stone & Lime', '8180 Woodbury Pike', 'Roaring Spring', 'PA', '16673', '', ' PUT MONTH, DAY & YEAR ON STICKERS *** 1 Year Schedule*** PO is persons name ordering and date of service Take Roaring Springs exit off Rt. 200. Take 36 South (about 1 mile) on left. '), (2507, 5078, 2507, '(717) 787-6546 ', '(717) 783-5955 Fax', '81 Lab Lane', ' ', 'Harrisburg', 'PA', '17110', '6:30-3 (O) 7-4 (S)', ' e-mail Invoice to chneely@state.pa.us Send Certs to Jobsite Rt. 322 to Harrisburg, at State Street Bridge go to Cameron Street go 3 miles, make right onto Elmerton Avenue, right onto Sycamore, Lab Lane on left, old Hospital grounds GO TO OFFICE FOR VISITORS PASS Elevation: 80 feet Latitude: 40.056 Longitude: 75.026 Dead Weight Correction Value: 0.9993'), (2508, 5079, 2508, '(717) 787-6546 or (7', '(717) 783-5955 Fax', '81 Lab Lane ', 'DGS Annex Complex', 'Harrisburg', 'PA', '17110', '8:00 am - 4:00 pm', 'Rt. 322 E. to Harrisburg. Go over Rt. 81. Get on Rt. 22 E. pass light at Farm Show. Pass 1st street. Keep going immediately before bridge (look for blue sign). Yellow brick buidling on left. Park under the Bridge Arches. (Market Street is too far) ***From 83 N take 13th St. Exit. Make right at end of ramp. Left at light onto Paxton.Next light make right onto CameronRt.230N e-mail Invoice to chneely@state.pa.us GO TO OFFICE FOR VISITORS PASS'), (2509, 5080, 2509, '(717) 787-1910', '', '81 Lab Lane ', '', 'Harrisburg', 'PA', '17110', '8:00 am - 4:00 pm', ' Rt. 322 E. to Harrisburg. Go over Rt. 81. Get on Rt. 22 E. pass light at Farm Show. Pass 1st street. Keep going immediately before bridge (look for blue sign). Yellow brick buidling on left. Park under the Bridge Arches. (Market Street is too far) ***From 83 N take 13th St. Exit. Make right at end of ramp. Left at light onto Paxton. Next light make right onto Cameron (Rt. 230 N)'), (2510, 5081, 2510, '(814) 781-6262 x3', '(814) 781-3196 Fax', 'Access Road (Elk Co. Industrial Park)', '', 'St. Marys', 'PA', '15857', '6:30-4:00 (office) 24 hr operation', 'From St. Marys: 120E to stop light. Go 1/8 mile, then just past Market Basket make left onto Sweeney Street. Then turn left onto 4th street - follow blue & white signs to Industrial Park. Go onto Washington St. & make left onto Access Industrial Park. Go onto Washington St. & make left on to Access Road (small industrial park) Yellow metal building. '), (2511, 5082, 2511, '859-991-8598', '859-441-7986 Fax', '5837 Mary Ingles Highway', '', 'Melbourne ', 'KY', '41059', '', ' '), (2512, 5083, 2512, '440-248-0100 x 2519 ', '440-248-1527 Fax', '34600 Solon Rd.', '', 'Solon', 'OH', '44139', '7:00 am - 3:00 pm', '**Serial Numbers must be written as shown above on labels & certs!! Take 480 East to 91N and just before intersection with Rt. 422 turn right at light onto Solon Road. Make right at sign for Erico just before. underpass at Rt. 422 Need tensile fixtures for Instron & Bond Pull tester Invoice in Duplicate TRUDY IS A/P CONTACT - CALL BARBARA IF TRUDY N/A BARBARA - ACCTS PAYABLE 440-519-1937 / 440-248-1001 FAX'), (2513, 5084, 2513, '724-651-0953 Jim Cel', '724-658-4486 Fax/330', '91A Montgomery Dam Road ', '', 'Monaca', 'PA', '15061', '8:00am-5:00pm/8:00am-4:00pm Job ', ' Rt. 60 South to Rt. 18 South (After crossing Ohio River), taking Exit which Y\'s to Monaca (Shippingport ) go toward Shippingport a few miles to Montogomery Dam Road (On right) beside Nova Chemical '), (2514, 5085, 2514, '301-322-5190', '301-322-5197 Fax', '1500 Marblewood Avenue', '', 'Fairmount Heights', 'MD', '20743', '', 'Exit 17 Landover Road go west at Circut City turn left go to the stop sign at Sherrill Road. make Right. At blinking light in front of the Fire Department make first right onto Marblewood. '), (2515, 5086, 2515, '610-568-2881/610-644', '610-644-8682 Fax', '3178 Phoenixville Pike', '', 'Devault', 'PA', '19432', '7:00 am - 3:00 pm ', ' Rt. 202 to Great Valley Exit, take 29 North, go approx. 6-7 miles, make left on Phoenixville Pike, one left 1/4 mile to Pipe & Precast '), (2516, 5087, 2516, '724-258-0364 Andy', '', '401 Railroad St.', '', 'Monongahela', 'PA', '15063', '8:00 am-5:00 pm / 7:00 am-4:00 pm Lab', ' 70 E Centerville Monongahela Exit old 13 Ramp Left 481 North into Monongahela light straight sheetz right to stop left thru 2 stop signs cross tracks on right Formerly Midatlantic Precast.'), (2517, 5088, 2517, '330-723-3618 ', '330-723-7019 Fax', '850 West Smith Road; Building A', '', 'Medina', 'OH', '44256', '8:00 am - 5:00 pm', 'From 77 to Fairlon, take Rt. 18 into Medina. Hospital on left. At next traffic light, turn left at church. Go to stop sign and make a right. Go about 2 miles. Site on left after 2nd set of RR tracks. SECURITY CHECK NECESSARY! MUST CHECK IN AT FRONT OFFICE PRIOR TO CALIBRATION FOR EACH PLANT Elevation: 1092 Feet, Lat: 41.138*N, Long: 81.864*W Dead Weight Correction Value: 0.9993'), (2518, 5089, 2518, '330-725-0205 Ext.227', '330-725-5716 FAX', '850 West Smith Road; Building B', '', 'Medina', 'OH', '44256', '', 'From 77 to Fairlon, take Rt. 18 into Medina. Hospital on left. At next traffic light, turn left at church. Go to stop sign and make a right. Go about 2 miles. Site on left after 2nd set of RR tracks. SECURITY CHECK NECESSARY! MUST CHECK IN AT FRONT OFFICE PRIOR TO CALIBRATION FOR EACH PLANT Elevation: 1092 Feet, Lat: 41.138*N, Long: 81.864*W Dead Weight Correction Value: 0.9993'), (2519, 5090, 2519, '937-596-3232', '937-596-6268 Fax', '18015 St. Rt. 65', '', 'Jackson Center', 'OH', '45334', '8:00am-5:00pm/7:30am-4:00pm Job', ' I-76, I-71 Exit turn off ramp and merge onto I-71 West, on I-71, Exit 131, right onto US-36 (SR-37), right onto Northwest US-33 (US-36) '), (2520, 5091, 2520, '724-668-8000', ' ', '1779 Hwy 28', '', 'Kittaning', 'PA', '16201', '', ' North of Kittaning Rt 28 North '), (2521, 5092, 2521, '(304) 263-6108/304-2', '(304) 263-0142 Fax ', 'Potomac Ready Mix', 'Kelly Island Road', 'Martinsburg', 'WV', '25401', 'Asphalt 7:00-3:30 Concrete 7:00-5:00', 'From I-81S Exit #12. Turn left onto Rt. 45E. Go straight thru 3 lights. Go approx. 1 1/2 miles. Rt. 9E turn right. At light turn right on Kelly Island Road (Brickyard is to far) About 1/2 mile on left. Machines are in 2 different buildings. '), (2522, 5093, 2522, '301-336-6857', '301-336-6899 Fax ', '9244 E. Hampton Drive, Suite 615', '', 'Capital Heights', 'MD', '20743', '9:00 am - 5:00 pm ', ' 495 Beltway, Take Exit 15B, turn left at light on Hampton Pike Boulevard, pass 2 lights, turn left on East Hampton Drive, drive up to end of road and come to back side to #615 '), (2523, 5094, 2523, '248-625-8080 ', '248-625-0978 Fax', '4950 White Lake Road', '', 'Clarkston', 'MI', '48346', '', ' I-75, Exit 51B (I-575/I-375/Downtown/Flint), merge onto I-75 (Chrysler Freeway) ( (North), at I-75, Exit 91 (M-15/Clarkston/ Davison), merge onto SR-15 (Ortonville Road) (South), bear right onto local roads, turn right onto US-24 (Dixie Highway) turn left onto US-24 (Dixie Hwy), turn left onto White Lake Road '), (2524, 5095, 2524, '', '', 'Office of Finance/Accounting Division', 'County Administration Building', 'Upper Marlboro', 'MD', '20772', '', ' '), (2525, 5096, 2525, '540-355-2301 Cell ', '', '186 Lakewood Forest Road ', '', 'Moneta', 'VA', '24121', '7:00 am - 5:00 pm ', ' Rt. 460 at Bedford, VA (Between Roanoke & Lynchburg), take Rt. 122 South to Moneta, VA (Approx. 15 Miles), at traffic light by FoodLion turn left on Rt. 616, go 1 1/2 Miles and take left on Lakewood Forest Road, first right, 2nd bldg on right '), (2526, 5097, 2526, '518-377-9841 John x1', '716-694-8638 Fax', '104 Erie Blvd., Suite 1 ', '', 'Schenectady', 'NY', '12305', '', ' I-90, Exit 25, merge onto I-890 (North), at I-890, Exit 4C, turn off ramp, bear right onto Water Street, bear right onto SR-5 (State Street), turn right onto Erie Blvd. '), (2527, 5098, 2527, '607-441-4329 Cell St', '(216) 642-7008 Fax', '150 White Wagon Road ', '', 'Waverly', 'NY', '14892', '', ' New York Interstate, Exit 52 North, on the right, in trailer '), (2528, 5099, 2528, '(517) 394-5700', '', '174 E. James Street', '', 'Whitecloud', 'MI', '49349', '', ' '), (2529, 5100, 2529, '703-396-6000', '703-396-6090 FAX', '7505 Mason King Court', '', 'Manassas', 'VA', '20109', '', ' I-66 (Curtis Memorial Pky)(West), I-66/Manassas/Front Royal, I-66, Exit 47A, merge SR-234 (SR-234 Bus)(South), continue South on SR-234 Bus (Sudley Road), turn right (West) onto Balls Ford Road, go 1.2 miles to Mason King Court '), (2530, 5101, 2530, '', '', '6600 Mount Elliott Avenue', '', 'Detroit', 'MI', '48211-2437', '6:00 - 3:00', ' 94E. Mt. Elliott Exit. 2nd light, make a left, go about 1/2 mile on right hand side. '), (2531, 5102, 2531, '(502) 244-3848 ', '(502) 244-3580', '13005 Middletown Industrial Blvd.', 'Suite D', 'Louisville', 'KY', '40223', '8am-4:30pm Office / 9am-4pm Lab', 'Rt. 64 Exit #19B onto Gene Snyder Parkway (Rt. 265) Northbound. Go 1 1/2 miles. Get off at Middleton / Eastwood Exit-#27 onto US 60 (Shelbyville Road). Take left at bottom of ramp at light. Go to 2nd light. Make right onto English Station RD. Go approx. 1/4 mile - Middletown Industrial Blvd. Stone/block building on right. FORMERLY: ATLANTA TESTING & ENGINEERING'), (2532, 5103, 2532, '1-859-983-9445 Harol', '859-299-2481 Fax', '637 Cool Road', '', 'Lima', 'OH', '45801', '', '75S Exit 125 (309) Take left, 3 miles, Coal Rd, past college on left resevoir No more freebies per Bill'), (2533, 5104, 2533, '716-909-5840 Ernie', '716-853-2619 Fax', 'Grand Island Bridge', '', 'Buffalo', 'NY', '14072', '5-Jul', ' Meet at main office 80 Lawrence Dale Drive Williamsville NY 14221 '), (2534, 5105, 2534, '814-382-0373', '814-382-0375 Fax', '405 Water Street', '', 'Conneaut Lake', 'PA', '16316', '8:00 am - 5:00 pm M-F', 'Business address: Off I79 take Meadville/Conneaut Lake exit, west, stay on Route 322/Route 6 for about 8 miles to Conneaut Lake, Route 322/6 is also Water Street in Conneaut Lake. 10/05 Connie Lenhardt is initial contact for scheduling, Sherry Morian is President & Camp Owner, Dennis Morian is Co-Owner & Director of Engineering, Rankin Montgomery is Construction Supervisor, & Roxanne Brown is Controller in Accounting'), (2535, 5106, 2535, '716-686-3710 / 716-4', '716-686-3716 Fax / 7', '4400 Broadway Street', '', 'Depew', 'NY', '14043', '8:00 am - 4:30 pm ', ' I-90 East, I-90 (New York Throughway) North, go through toll booth, I-90, Exit 52E (Walden Avenue East / Cheektowago), right onto Walden Avenue, right onto SR-277 (Union Road), merge onto SR-277, (Union Road), West, right onto SR-130 (Broadway Street). '), (2536, 5107, 2536, '716-818-6671 Keith', '716-853-2619 Fax', '80 Lawrence Bell Dr.', '', 'Williamsville', 'NY', '14221', '7:00 am - 5:00 pm ', ' '), (2537, 5108, 2537, '716-818-6671 Keith', '716-686-3716 Fax', '80 Lawrence Bell Dr.', '', 'Williamsville', 'NY', '14221', '7:00 am - 5:00 pm ', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications*** Billing to Applus Certs in Quality Inspections Name Putting in archived database. '), (2538, 5109, 2538, '716-818-6671 Keith', '716-853-2619 Fax', '80 Lawrence Bell Dr.', '', 'Williamsville', 'NY', '14221', '7:00 am - 5:00 pm ', ' Billing to Applus Certs in Quality Inspections Name \"***Put ID #\'s on Run Sheets, Labels, & Certifications*** ***continued*** '), (2539, 5110, 2539, '915-238-2673 Jason', '915-779-8301 Fax ', '7650 Rickenbacker Parkway West', '', 'Columbus', 'OH', '43217', '7:00-5:00', ' I-70, Exit 105A (US-33/Lancaster), bear right onto US-33 (College Avenue), continue South East (OH-317/Hamilton/Groveport), merge onto SR-317 (Hamilton Road) (South), turn left onto Saltzgaber Road, continue South on Pontius Road, turn right onto CR-2 (Hayes Road) on N. Permiter Road '), (2540, 5111, 2540, '610-644-6370', '610-644-2930 Fax', '211 Swedesford Road', '', 'Malvern', 'PA', '19355', '7:00 AM to 3:30 PM', 'I-76 East, exit @ Valley Forge, follow I-76 to Rt. 202 South Rt. 202 South to Rt. 29 North exit. At end of ramp/traffic light, turn left onto Swedesford Road. Follow Swedesford Road for one mile Trailer are right. '), (2541, 5112, 2541, '330-372-3716 x 120', '330-372-5594 Fax', '1929 Larchmont Ave. NE', '', 'Warren', 'OH', '44483', '7:00am-3:30 pm', 'From Sharon - Take Rt. 5 bypass at Warren. See Delphi-Packed Plant. Take Perkins / Jones Rd. exit. Make left toward Warren Go 1 1/2 miles and cross RR tracks. 1st blue building on right. 2nd gate on right. *Check for tightness of holding stem '), (2542, 5113, 2542, '216-469-1106 Bill', '216-781-2820 Gary ', 'Cleveland/Hopkins Airport', '', 'Cleveland', 'OH', '', '', ' Rt. 237 to Cargo Road, Exit 1X, center on left, one stop, turn right go to Gate 30 (Once at Gate call Technician to get in) '), (2543, 5114, 2543, '419-995-8071', '', '4240 Campus Drive', '', 'Lima', 'OH', '45804', '', 'I-80 West, I-76 West toward Akron, I-71 South via Exit 1 toward Columbus, US-30 West via Exit 176 toward Mansfield, Exit toward Fourth St/Crestline, turn right onto Mansfield-Crestline Rd, US-30, US-30 West, left onto US-30/OH-235, continue OH-235, turn slight right onto OH-235/OH-309, right onto S Mumaugh Rd., right onto Campus drive '), (2544, 5115, 2544, '412-362-3800 ', '724-274-2417 Fax', '816 Railroad Street', '', 'Springdale', 'PA', '15144-0167', '', ' I-80 West to RT. 60 South, to Rt. 168 South to Rt. 18 South, go 5 miles to Doren, Inc. Was formely R.I. Lampus'), (2545, 5116, 2545, '(716) 649-3260 Ext. ', '716-649-3217 Fax/716', '5690 Camp Road (Precast Plant)', '', 'Hamburg', 'NY', '14075', '7:00am - 4:30pm', 'Take Rt. 90 Exit #57 to Route 75 (Hamburg) Take 75 South off ramp. Go 1/2 mile. Watch for Riefler sign. Right hand side of road. '), (2546, 5117, 2546, '716-460-6597 Pager', '716-649-3217 Fax/716', '5690 Camp Road (Block Plant)', '', 'Hamburg', 'NY', '14075', '7:00 - 4:30', 'Take Rt. 90 Exit #57 to Route 75 (Hamburg) Take 75 South off ramp. Go 1/2 mile. Watch for Riefler sign. Right hand side of road. All vendors need to report to front office prior to doing work per letter from them dated 9/3/97. Need hard hats & saftey glassses in designated areas.'), (2547, 5118, 2547, '(740) 363-1376 QC ex', '(740) 363-1377 Fax/7', '620 Liberty Road', '', 'Delaware', 'OH', '43015', '5:00 am - 6:00 pm ', 'Take 270 to 23 North to Williams St. Exit, Rt. 36 and turn left on Sandusky St. Go 4 or 5 blocks to London Rd. Turn right at 2nd traffic light, then left on Liberty. Go 3/8 mile. Site on right. **NEED PROOF OF INSURANCE, ALL VISITORS REPORT TO OFFICE & SIGN IN. HARD HAT/STEEL TOES/ EYE LOCK OUT PROCEDURE ON EQUIPMENT INFORCED. Must have PO# to receive payment. Need to take large steel plates for pipe tester.'), (2548, 5119, 2548, '610-323-6600', '610-323-6601 Fax', '23 Quarry Road', '', 'Douglassville', 'PA', '19518', '7:00 am - 5:00 pm', ' US-422 to Stowe exit, end of ramp straight at stop sign, 1st light left, next light turn right onto Quarry Road it is on the left hand side. Federal ID# 04-3786366'), (2549, 5120, 2549, '920-419-6361', 'No Fax Yet', '1746 Charlestown Road ', '', 'Minden City', 'MI', '48456', '', ' I-94 SR-25 Exit, merge onto SR-25 (Pine Grove Avenue) (North), turn left onto Cedar Avenue, bear right onto B. City Forestville Road (Bay City Forestville), continue on Main Street need directions from there '), (2550, 5121, 2550, '814-642-2945', '814-642-2946 Fax ', '345 Fogel Crossing Road ', '', 'Port Allegany', 'PA', '16734', '8:00am-4:30pm/7:00am-5:00pm Job ', ' 2 miles South of Port Alleghany, Route 155 South, turn left onto T-409 (Fogel Crossing Road), office is 1/4 mile straight ahead '), (2551, 5122, 2551, '(814) 454-0195', '(814) 453-2020 Fax', '3405 State Street', '', 'Erie', 'PA', '16508', '', 'See files '), (2552, 5123, 2552, '215-631-4264 Harry', '267-446-8390 Kevin ', '5885 West River Road ', '', 'Salem', 'VA', '24153', '', ' I-81 North, Exit 132, turn off ramp, Merge onto SR-647, Dow Hollow Road (South East), turn right (South) onto US-11, West Main Street, turn left (South East) onto SW River Road '), (2553, 5124, 2553, '734-422-8000/586-615', '734-422-5342 Fax/734', '33080 Industrial Road ', '', 'Livonia', 'MI', '48150', '8:00 am - 5:00 pm ', ' ***Check S/N on Displacement S/N A81547*** I-96 to Exit 175 Meriman exit, go South to first light turn right onto Glendale, the third building on the left 26 minutes from Detroit Ship to Address: 31628 Glendale Avenue, Livonia, MI 48150 PUTTING IN ARCHIVED DATABASE Federal ID# 38-3488259'), (2554, 5125, 2554, '412-596-2228 Chad', '', 'State Route 56', '', 'Vandergrift', 'PA', '15690', '', ' 356 Past Freeport Bridge to intersection of Rt 56 make left on Rt 56 Little Plaza on Right '), (2555, 5126, 2555, '724-766-0734 Jeff', '412-449-0704 Fax ', '2130 Campbells Mill Road', '', 'Blairsville', 'PA', '15717', '', ' US-422, Exit US-119, bear right onto US-119 '), (2556, 5127, 2556, '724-625-1505 Mars Of', '412-449-0704 Fax ', 'Mushroom Farm Road ', '', 'Butler', 'PA', '', '', ' From Worthington, PA, go West on 422 toward Butler, turn left at Mushroom Farm Road there are 2 Grey trailers '), (2557, 5128, 2557, '412-445-8496', '412-449-0694 Ron ', 'Rt. 308', '', 'Butler', 'PA', '', '', 'From Worthington, PA, go West on 422 toward Butler, at Mushroom Farm Road there are 2 Gray trailers '), (2558, 5129, 2558, '(245) 372-1600', '', '12034 134th Court NE, Suite 102', 'PO Box 230', 'Redmond', 'WA', '98073-0230', '8:00-4:30', 'See map & directions attached. '), (2559, 5130, 2559, '615-294-8825 David', '(502) 448-3134 Fax', '3701 Kramers Lane', '', 'Louisville', 'KY', '40216', '8:00am - 5:00pm/6:30am-5:00pm Job', 'From 64 - take 264W to Exit #5B - Cane Run Road. At end of ramp turn left onto Cane Run South. Go to seconde light. Turn right onto Kramers Lane. Go 3/4 mile. Site on right - 1st gate. *Special pricing per Bill 2 Pipe Testers**'), (2560, 5131, 2560, '270-706-6689 Ernest', '270-268-6435 Cell Er', '310 Steel Drive', '', 'Elizabethtown', 'KY', '42701', '5am to 4:30pm', 'I-80 W to I-71 S towards Louisville, KY, take I-65 S towards Elizabethtown, KY to 310 Steel Drive '), (2561, 5132, 2561, '216-515-4493 Jennife', '216-566-3837 Fax ', '7650 Hub Parkway ', '', 'Valley View', 'OH', '44125', '', ' I-90, Exit 172A (I-77/Akron), merge I-77 (SR-21) East, at I-77 Exit 153 (Pleasant Valley/Independence/Seven Hills), continue East on Pleasant Valley Road, turn east on Alexander Road, left onto Hub Parkway '), (2562, 5133, 2562, '330-746-4482', '330-259-3560 Fax ', '1470 Churchill-Hubbard Road ', '', 'Youngstown', 'OH', '44505', '8:00am-12:00pm/1:00pm-5:00pm', ' Head West on I-80, take Exit 229, which is the Belmont Avenue Exit, turn right onto Belmont Avenue, which is State Route 193. Go North on Belmont Avenue for about a quarter mile and turn right onto Churchhill-Hubbard Road, which is State Route 304. Drive East on Churchhill-Hubbard Road for about a mile and a half. Seidler Engineering is on the left side of the road at 1470 Churchhill-Hubbard Road, free parking ia available in front of building'), (2563, 5134, 2563, '330-966-0444 x 2012 ', '(330) 966-8505 Fax/3', '% Axim Concrete Technologies', '8282 Middlebranch Road', 'Middlebranch', 'OH', '44652', '8:00 am - 5:00 pm', 'Take 76 to 77S - Off at Akron/Canton Airport Exit #113. At stop make right on Lauby Rd. / End at State St. Turn right onto State St. Go about 6 miles then turn right onto Middlebranch Rd. Go about 1/4 mile on left. Sign says Axim Concrete Technologies. Go down drive, cross RR tracks. Go to building on left. Formerly Essroc Materials Company being bought by Sika Corporation'), (2564, 5135, 2564, '937-512-2441 / 937-5', '937-512-2475 Fax', '444 W. Third Street', 'Room 11-423', 'Dayton', 'OH', '45402', '8:00 am - 5:00 pm', '75 North, 3rd St Exit East to Perry, Make right, 4th street, make right, 200 feet underground parking on right, stay left in parking lot, 4th floor elevator Building 11, Floor 4, Room 423 Secretary - 11-426 PUTTING IN ARCHIVED DATABASE. Tax Exempt # - 31-0723444'), (2565, 5136, 2565, '607-758-7182', '607-758-7188 Fax', '60 Miller Street', '', 'Cortland', 'NY', '13045', '', ' Rt. 81 to Homer (Exit 12), take first exit, when you get off the ramp, Rt. 11 (Homer Avenue), take a right at bottom of exit ramp, 2nd red light take a left (West Main), approx. 2 miles to blinking light, approx. 100 yards, take a left (Miller Street), building is at end of street '), (2566, 5137, 2566, '(304) 877-6451', '(304) 877-5789 Fax', '6513 Robert C. Byrd Drive', 'Route 16 North', 'Bradley', 'WV', '25818', '8:00 am - 4:00 pm', 'Off Rt. 77 South to Exit #48N Beckley/Summerville. Exit - then take the north Beckley/Bradley Exit. Turn left after ramp toward Bradley on Rt. 16N. Go thru Bradley and watch for Appalachian Heating on right. Go 1/2 mile to their site on left. 19S left, Hill, Right 77N North Beckley exit, toll booth, 19 exit, first then left on 16 thru Bradley, RV place down hill, left hand turn on left'), (2567, 5138, 2567, '(269) 323-3555', '(269) 323-3553 Fax/2', '4460 Commercial Ave. , Suite B', '', 'Kalamazoo', 'MI', '49002', '7:00 am - 5:00 pm', 'I-94 to Kalamazoo. Take Exit #80 Sprinkle Ave. Go approx. 3 miles south on Sprinkle. Turn onto Commercial Drive on left. Go into Portage Commerce Park. Go to 4460 on right. Gray metal building 10/9/01 Replaced needle on high gauge. Repaired leak on top of frame. Major adjustments required to bring into 1%'), (2568, 5139, 2568, '616-406-1756', '616-406-1749 Fax', '4705 Clyde Park Avenue SW', '', 'Grand Rapids', 'MI', '49509', '8:00 am - 5:00 pm ', '**All invoices to ap@sme-usa.com ** Take 96W to Exit 196. Take 131 South to 44th Street (West), next street Clyde Park (South), 1/3 mile on right hand side, 2 tone brown building Ck Trans# (-) 32 '), (2569, 5140, 2569, '(440) 256-6500', '(440) 256-6507 Fax', '9375 Chillicothe Road', '', 'Kirtland', 'OH', '44094', '8:00 am - 5:00 pm', '11N to 322W to 306N Send Certs to Jobsite ISO Requested Humboldt - 95# Elevation: 710 Feet, Lat: 41.629*N, Long: 81.362*W Dead Weight Correction Value: 0.9993 Fornerly EDP Consultants, Inc. Formerly EDP Geo Sciences, bought out by Soils & Materials Engineers'), (2570, 5141, 2570, '317-876-0200 Debbie/', ' ', '1600 Edison Rd', '', 'Notre Dame', 'IN', '46556', '5-Jul', ' allison@sme-usa.com '), (2571, 5142, 2571, '(412) 231-8600 offic', '412-657-9083 cell', 'Route 50', 'Blennerssett Bridge', 'Parkersburg', 'WV', '', '', ' US 892 south of town past Chemical Plant '); -- -------------------------------------------------------- -- -- Table structure for table `machinery` -- CREATE TABLE `machinery` ( `MachineryID` int(11) NOT NULL, `customerID` int(11) DEFAULT NULL, `SerialNumber` varchar(50) DEFAULT NULL, `MD` varchar(100) DEFAULT NULL, `MachineRange` varchar(50) DEFAULT NULL, `lastCalibrationDate` date DEFAULT NULL, `priceOfRepairs` int(11) DEFAULT NULL, `lastCalibrationDateInput` varchar(25) DEFAULT NULL, `JobSiteID` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `machinery` -- INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (1, 1, 'S/N 89028', 'Forney FT-40-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-22', 1, '1/22/2013', NULL), (2, 2, 'S/N 46011-5 ', 'Tinius Olsen Universal Testing Machine (E-4)', 'Range: 10K / 60K ', '2013-01-23', 2, '1/23/2013', NULL), (3, 3, 'S/N 5', 'Simms P-3000 Prestress - Jack #5 (E-4 & PCI)', 'Range: 4K / 45K', '2008-07-29', 3, '7/29/2008', NULL), (4, 4, 'S/N 96-05', 'TECO QA2E Dig Comp Machine w/Load Cell s/n 84510A (E-4) ', 'Range: 20 lbs to 2K (Floor Sample)', '2012-02-23', 4, '2/23/2012', NULL), (5, 5, 'S/N 02019', 'Forney FX-250E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2007-05-14', 5, '5/14/2007', NULL), (6, 6, 'S/N 34577', 'Soiltest CT-761Compression Machine (E-4) ', 'Range: 30K / 250K', '2007-11-06', 6, '11/6/2007', NULL), (7, 7, 'S/N 96118', 'Forney F-250E-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-02-26', 7, '2/26/2008', NULL), (8, 8, 'S/N 04060/GBP0701151', 'Forney F-502F-GB Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-05-08', 8, '5/8/2013', NULL), (9, 9, 'S/N 79126', 'Forney QC-400-2 Compression Machine (E-4)', 'Range: 30K / 400K', '2013-05-14', 9, '5/14/2013', NULL), (10, 10, 'S/N 050179-002', 'Tamtron Mdl. BCS-100-A Crane Scale (ManSp & 0.1% FS) ', 'Range: 10,000 Kg ', '2007-07-11', 10, '7/11/2007', NULL), (11, 11, 'S/N 1212763', 'Eilon Engineering RON 2000-S-12.5 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Tons', '2006-05-05', 11, '5/5/2006', NULL), (12, 12, 'S/N 350A', 'Dynamic Fluid Component Gauge Model CF1P', 'Range: 5,000 psi', '1999-05-24', 12, '5/24/1999', NULL), (13, 13, 'S/N 06242', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K (SOLD)', '2008-10-20', 13, '10/20/2008', NULL), (14, 14, 'S/N 914', 'Gilson Direct Shear Machine (E-4)', '', '2013-05-13', 14, '5/13/2013', NULL), (15, 15, 'S/N 13027', 'Forney FX-30EX-B-CPILOT Compression Machine (E-4)', 'Range: 3K to 300K', '2013-05-13', 15, '5/13/2013', NULL), (16, 16, 'S/N 08171', 'Forney F-40EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-06-11', 16, '6/11/2013', NULL), (17, 17, 'S/N 85075', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2008-02-19', 17, '2/19/2008', NULL), (18, 18, 'S/N 131154', 'Instron Satec HVL 60 C3275 Universal TestingMachine (E-4)', 'Range: 600 lbs/2.4K/12K/32K ', '2013-07-17', 18, '7/17/2013', NULL), (19, 19, 'S/N 151345', 'Transducer Techniques Pressure Transducer LBO-5K OPT-HT', 'Range: 5K ', '2006-12-18', 19, '12/18/2006', NULL), (20, 20, 'S/N 95034', 'Forney F-250F-01Compression Machine (E-4)', 'Range: 250K', '2008-07-30', 20, '7/30/2008', NULL), (21, 21, 'S/N 88021', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K/250K', '2012-08-21', 21, '8/21/2012', NULL), (22, 22, 'S/N 9044-04103', 'Soiltest CT-6200-2A Digital Compression Machine (E-4)', 'Range: 4.5K to 450K', '2013-08-28', 22, '8/28/2013', NULL), (23, 23, 'S/N 6112', 'Soiltest CT-710-A Compression Machine (E-4)', 'Range: 250K', '2013-08-27', 23, '8/27/2013', NULL), (24, 24, 'S/N 66238', 'Forney FT-31 Compression Machine (E-4)', 'Range: 250K', '2013-08-27', 24, '8/27/2013', NULL), (25, 25, 'S/N 2541', 'Soiltest CT-710 Compression Machine (E-4 & 2%)', 'Range: 250K', '2013-08-27', 25, '8/27/2013', NULL), (26, 26, 'S/N 97027', 'Forney F-500S-LC1 Digital Compression Machine (E-4)', 'Range: 3K to 500K', '2013-08-27', 26, '8/27/2013', NULL), (27, 27, 'S/N 88091', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-08-27', 27, '8/27/2013', NULL), (28, 28, 'S/N 16281-6-0011', 'Wykeham-Farrance PIR Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-08-27', 28, '8/27/2013', NULL), (29, 29, 'S/N 90020433', 'Brainard Kilman C-100 Digital Compression Machine (E-4)', 'Range: 20K to 250K', '2013-08-27', 29, '8/27/2013', NULL), (30, 30, 'S/N 9820', 'ELE CT-7250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-08-28', 30, '8/28/2012', NULL), (31, 31, 'S/N 95119', 'Forney F-250F-DR1 Digital Compression Machine (E-4) ', 'Range: 5K to 250K', '2013-08-27', 31, '8/27/2013', NULL), (32, 32, 'S/N 05075417', 'Eilon Engioneering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', '2008-08-18', 32, '8/18/2008', NULL), (33, 33, 'S/N 210919', 'German Instrument Hammer (C-805)', 'Range: ', NULL, 33, 'New', NULL), (34, 34, 'S/N 12241', 'Wykeham-Farrance 14230P Single Proving Ring (E-4 & Man Specs) ', 'Cap: 11,200 lbs ', '2008-08-28', 34, '8/28/2008', NULL), (35, 35, 'S/N 21301', 'Testmark CM-3000-LD Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2008-10-28', 35, '10/28/2008', NULL), (36, 36, 'S/N 04190', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-08-23', 36, '8/23/2011', NULL), (37, 37, 'S/N 060700000062', 'Accu-Tek ELE 36-0650/02-1BR Digital Compression Tester (E-4)', 'Range: 2.5K to 250K', '2013-03-26', 37, '3/26/2013', NULL), (38, 38, 'S/N 101', 'Enerpac Pushout Tester w/ CS-100-1S Digital Readout ', 'Range: 100 lbs to 8K (E-4)', '2009-08-13', 38, '8/13/2009', NULL), (39, 39, 'S/N 3034', 'Soitest CT-710 Compression Machine (E-4)', 'Range: 250K', '2008-08-26', 39, '8/26/2008', NULL), (40, 40, 'S/N 98038', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-08-13', 40, '8/13/2008', NULL), (41, 41, 'S/N 9047-8624', 'Soiltest CT-755 Compression Machine (E-4)', 'Range: 250K', '2013-09-04', 41, '9/4/2013', NULL), (42, 42, 'S/N 08252', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-09-03', 42, '9/3/2013', NULL), (43, 43, 'S/N 05085717/8', 'Eilon Engineering Ron ', 'Range: 50 Ton', NULL, 43, 'New', NULL), (44, 44, 'S/N 166', 'Brainard Kilman CM215 Digital Compression Machine (E-4)', 'Range: 25K / 250K ', '2013-09-24', 44, '9/24/2013', NULL), (45, 45, 'S/N 82130', 'Forney FT-40 DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-09-24', 45, '9/24/2008', NULL), (46, 46, 'S/N 69077', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K', '2006-12-19', 46, '12/19/2006', NULL), (47, 47, 'S/N 01040', 'Forney F-250F-01 Compression Machine (Moved) (E-4)', 'Range: 250K', '2008-09-16', 47, '9/16/2008', NULL), (48, 48, 'S/N 83086 ', 'Forney FT-250F-01-w/PI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-10-14', 48, '10/14/2008', NULL), (49, 49, 'S/N 523725', 'Satec Emery Mdl. UVI/V Universal Testing Machine (Digital) (E-4)', 'Range: 4.8K/24K/48K/120K ', '2010-10-20', 49, '10/20/2010', NULL), (50, 50, 'S/N 02365', 'Form Test DIGIMAXX C-20 Compression Machine (E-4)', 'Range: 10 Kn (Beam Frame)', '2011-10-19', 50, '10/19/2011', NULL), (51, 51, 'S/N 050179-003', 'Tamtron Mdl. BCS-100-A Crane Scale (ManSp & 0.1% FS) ', 'Range: 10,000 Kg ', '2008-10-07', 51, '10/7/2008', NULL), (52, 52, 'S/N 5012721/1', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K (ID# MN0470100J01)', '2009-03-21', 52, '3/21/2009', NULL), (53, 53, 'S/N A4969', 'Enerpac Beam Breaker (OOS) (E-4)', 'Range: 10K', '2006-10-10', 53, '10/10/2006', NULL), (54, 54, 'S/N 1005 ', 'Soiltest CT-710-02 Compression Machine (E-4)', 'Range: 30K/250K', '2008-11-17', 54, '11/17/2008', NULL), (55, 55, 'S/N 081109', 'Testmark CM-2500-SD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-11-05', 55, '11/5/2012', NULL), (56, 56, 'S/N 70162', 'Forney QC-50-ID Digital Compression Machine ( E-4)', 'Range: 3K to 400K', '2013-08-19', 56, '8/19/2013', NULL), (57, 57, 'S/N 91049', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2012-11-06', 57, '11/6/2012', NULL), (58, 58, 'S/N 91105-101111-67', 'Forney FT-250C-CS-100-2B Digital Compression Machine (E-4)', 'Range: 200 lbs to 60K ', '2012-11-05', 58, '11/5/2012', NULL), (59, 59, 'S/N 00-1049-6-00', 'ATS Model 910 UTM Digital T&C Machine (ID# SPT-012) (E-4)', 'Range: 1K/2K/5K/10K T&C', '2012-11-19', 59, '11/19/2012', NULL), (60, 60, 'S/N 76187-0911121-32', 'Forney QC-200-CS-100-2BG Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2012-11-27', 60, '11/27/2012', NULL), (61, 61, 'S/N 1155-16-20046', 'ELE 1155B0900 Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-11-27', 61, '11/27/2012', NULL), (62, 62, 'S/N 970123-1111', 'Karol Warner Unconfined Tester Model 7611-6543 w/ Digital (E-4)', 'Range: 200 lb to 2,000 lb (S&ME #24000) ', '2012-11-29', 62, '11/29/2012', NULL), (63, 63, 'S/N Unknown ', 'Lane Tester Digital Compression Machine w/ DRI Dig. (E-4) ', 'Range: 15K to 150K ', '2011-11-29', 63, '11/29/2011', NULL), (64, 64, 'S/N 00-07', 'ELE 36-0650/02 ADR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-11-26', 64, '11/26/2012', NULL), (65, 65, 'S/N 92026', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2012-11-27', 65, '11/27/2012', NULL), (66, 66, 'S/N 0543878/2', 'Eilon Engineering RON 2501 S-05 Load Cell [ID#M265376] ', 'Cap: 5 Tons (10K) (ManSp & 0.1% FS)', '2008-08-07', 66, '8/7/2008', NULL), (67, 67, 'S/N 01075387/2', 'Eilon Engineering RON 2501 H-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', '2008-11-13', 67, '11/13/2008', NULL), (68, 68, 'S/N 45108', 'Marsh Service Gauge', 'Range: 100 PSI', '2007-03-09', 68, '3/9/2007', NULL), (69, 69, 'S/N 72175', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', NULL, 69, 'New', NULL), (70, 70, 'S/N 93073', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 30K', '2008-11-25', 70, '11/25/2008', NULL), (71, 71, 'S/N 10394', 'Testmark Industries CM2500-1G Compression Machine (E-4)', 'Range: 250K', '2008-11-18', 71, '11/18/2008', NULL), (72, 72, 'S/N ', 'Accu-Tek ELE 36-0650/02 Digital Compression Tester (E-4)', 'Range: 2.5K to 250K ', NULL, 72, 'New', NULL), (73, 73, 'S/N 003048', 'Hilti Pull Tester Model 59604 (Pompano, FL) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2007-03-08', 73, '3/8/2007', NULL), (74, 74, 'S/N 15089', 'Tetsmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-12-06', 74, '12/6/2012', NULL), (75, 75, 'S/N PTM 1 ', 'Eriez Pull Tester w/ Red Lion Digital (E-4)', 'Range: 200 lbs to 40K ', '2011-12-14', 75, '12/14/2011', NULL), (76, 76, 'S/N 0372502/9', 'Eilon Engineering RON 2501 S-03 Load Cell (ManSp & 0.1% FS)', 'Range: 6K ', '2008-12-02', 76, '12/2/2008', NULL), (77, 77, 'S/N 63199', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K', '2010-12-14', 77, '12/14/2010', NULL), (78, 78, 'S/N Unknown', 'Lane Tester CS-100-1 Digital Compression Machine (E-4)', 'Range: 2.5Kto250K(Do not take above 250)', '2008-12-18', 78, '12/18/2008', NULL), (79, 79, 'S/N 60238-3', 'Tinius Olsen Electromatic (E-4)', 'Range: 600lbs/2.4K/12K/60K', '2011-01-12', 79, '1/12/2011', NULL), (80, 80, 'S/N 08013', 'Forney FX-500F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2011-01-20', 80, '1/20/2011', NULL), (81, 81, 'S/N 65116-041006', 'Forney FT-31-CS-100-1S Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-21', 81, '1/21/2013', NULL), (82, 82, 'S/N P112016-02', 'Salter Brecknell Electro Samson Scale (ID# Q-2655) (E-898 & 1%)', 'Range: 1 lbs to 100 lbs', '2013-01-22', 82, '1/22/2013', NULL), (83, 83, '', 'Pump', '', '0000-00-00', 83, '', NULL), (84, 84, 'S/N 68247', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-02-05', 84, '2/5/2008', NULL), (85, 85, 'S/N', 'Tinius Olsen Model L Compression Machine (E-4)', 'Range: 10K / 60K ', NULL, 85, 'New', NULL), (86, 86, 'S/N 84151', 'Forney LT-900-D Universal Testing Machine (E-4)', 'Range: 4K to 400K ', '2009-01-20', 86, '1/20/2009', NULL), (87, 87, 'S/N 86085', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2011-01-24', 87, '1/24/2011', NULL), (88, 88, 'S/N 910', 'Pine Instrument AF850T Asphalt Tester w/Test Spring S/N 695 ', 'Range: 2.5K / 5K / 10K (E-4)', '2008-02-06', 88, '2/6/2008', NULL), (89, 89, 'S/N 215 ', 'Pine Instrument 750 Asphalt Tester w/ Test Spring S/N 185 (E-4)', 'Range: 2.5K / 5K / 10K', '2008-02-05', 89, '2/5/2008', NULL), (90, 90, 'S/N 90073', 'Forney QC-400C-01 Compression Machine (E-4)', 'Range: 400K', '2007-12-20', 90, '12/20/2007', NULL), (91, 91, 'S/N 538242', 'ELE Pressure Transducer--Channel #3 (D-5720)', 'Range: 150 psi', '2008-11-18', 91, '11/18/2008', NULL), (92, 92, 'S/N 1155-12-13323', 'Proving Ring with Dial Indicator Channel # 2 (E-4 & Man Specs)', 'Range: 1K', '2008-11-17', 92, '11/17/2008', NULL), (93, 93, 'S/N 0804000145', 'ELE Accu-Tek 250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-02-05', 93, '2/5/2013', NULL), (94, 94, 'S/N 89087', 'Forney FT-250-F-01 Compression Machine (E-4)', 'Range: 250K', '2013-02-06', 94, '2/6/2013', NULL), (95, 95, 'S/N 81145-04106', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-11', 95, '2/11/2013', NULL), (96, 96, 'S/N 07016', 'Forney F-40EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2011-02-16', 96, '2/16/2011', NULL), (97, 97, 'S/N 06040', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-20', 97, '2/20/2013', NULL), (98, 98, 'S/N 301369', 'Eilon Engineering RON 2000 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 25 Ton', '2009-02-13', 98, '2/13/2009', NULL), (99, 99, 'S/N 01674683', 'Eilon Engineering RON 3050 CW-016 Crane Weigher ', 'Range: 3,200 lbs (ManSp & 0.1% FS)', '2009-02-20', 99, '2/20/2009', NULL), (100, 100, 'S/N 3236x72', 'LoTes Model LT -10 Digital Compression Machine (E-4)', 'Range: 500 lbs to 15K (ID# 040)', '2009-03-17', 100, '3/17/2009', NULL), (101, 101, 'S/N 09001', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: ', NULL, 101, 'New', NULL), (102, 102, 'S/N 03191', 'Forney F-50EX-F-PILOT Digital Compression Machine (E-4)', 'Range: ', NULL, 102, 'New', NULL), (103, 103, 'S/N 2061147 ', 'Eilon Engineering RON 2300 Load Cell (ManSpecs & 0.1% FS)', 'Range: 20 Ton', '2013-05-10', 103, '5/10/2013', NULL), (104, 104, 'S/N 92058', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-03-05', 104, '3/5/2013', NULL), (105, 105, 'S/N 11026', 'Forney FX-250F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-03-12', 105, '3/12/2013', NULL), (106, 106, 'S/N 8930-01108', 'Soiltest CT-6200-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 450K ', '2013-03-18', 106, '3/18/2013', NULL), (107, 107, 'S/N 1237', 'GeoJac Sigma-1 Auto Test System (E-4)', '', '0000-00-00', 107, '', NULL), (108, 108, 'S/N 990311 (ID# 3561)', 'Karol Warner Direct Shear (E-4)', ' ', '2013-03-21', 108, '3/21/2013', NULL), (109, 109, '', 'Geocomp Load Trac II (ID# 3564)', '', '0000-00-00', 109, '', NULL), (110, 110, 'S/N 69182', 'Forney FT-40-GB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-27', 110, '3/27/2013', NULL), (111, 111, 'S/N 76732', 'Tinius Olsen Model L-PIR Digital Universal Testing Machine (E-4)', 'Range: 600 lbs. to 60,000 lbs', '2013-03-28', 111, '3/28/2013', NULL), (112, 112, 'S/N A-25263-03103', 'CSI-TMI 51008-CS-100-8 Digital Compression Machine (E4) ', 'Force: 10 lbs to 1K ', '2013-03-26', 112, '3/26/2013', NULL), (113, 113, 'S/N PI-0310082', 'Gilson TMI Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2009-03-20', 113, '3/20/2009', NULL), (114, 114, 'S/N Unknown', 'Powerteam RH1003 Model B Ram (E-4 & Man Specs )', 'Range: 200K (10,100 PSI)', '2010-09-14', 114, '9/14/2010', NULL), (115, 115, 'S/N 02018880', 'Eilon Engineering Ron-2150 crane scale (0.1 % of FS)', 'Range: 30 K', NULL, 115, 'New', NULL), (116, 116, 'S/N 68007', 'Forney LT-1000-2 Compression Machine (E-4)', 'Range: 200K / 600K', '2009-03-10', 116, '3/10/2009', NULL), (117, 117, 'S/N 00-06', 'ELE 36-0718/02 Digital Compression Machine w/Cyl. Frame #3 ', 'Range: 3.5K to 350K (E-4)', '2008-01-28', 117, '1/28/2008', NULL), (118, 118, 'S/N 038822', 'Laier-Tremix Benton Technick Moerkapelle RT 3000/100-1DST (E-4)', 'Range:2,200 KN Dig.Comp.Mach. 2 Frame ', '2008-01-28', 118, '1/28/2008', NULL), (119, 119, 'S/N 02054', 'Forney F-40F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2008-04-10', 119, '4/10/2008', NULL), (120, 120, 'S/N 05068', 'Forney F-25EX-F-01 Compression Machine (E-4)', 'Range: 250K', '2013-04-03', 120, '4/3/2013', NULL), (121, 121, 'S/N 86099', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2007-03-08', 121, '3/8/2007', NULL), (122, 122, 'S/N 20005056 LCell', 'Comten DMC0265 Digital Test System (E-4)', 'Range: 5K', '2013-04-03', 122, '4/3/2013', NULL), (123, 123, 'S/N 03203', 'Forney F25EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-04', 123, '4/4/2013', NULL), (124, 124, 'S/N 95036 ', 'Forney F-250-F-02 Compression Machine (E-4)', 'Range: 30K / 250K', '2013-04-08', 124, '4/8/2013', NULL), (125, 125, 'S/N 02180', 'Forney F-502F-F96 Digital Compression Machine (E-4) ', 'Range: 5K to 500K', '2013-04-16', 125, '4/16/2013', NULL), (126, 126, 'S/N 1691', 'Soiltest CT-713 Compression Machine (E-4 & 2%)', 'Range: 250K', '2012-04-12', 126, '4/12/2012', NULL), (127, 127, 'S/N 2012826', 'Eilon Engineering RON 2125 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons', '2005-02-01', 127, '2/1/2005', NULL), (128, 128, 'S/N 02086355/6', 'Eilon Engineering RON 2125 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 8K to 30K Limited Cal ', '2009-04-18', 128, '4/18/2009', NULL), (129, 129, 'S/N 74100', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2009-04-20', 129, '4/20/2009', NULL), (130, 130, 'S/N G-8540', 'Soiltest Versa Tester AP-1000 (Not Done)', 'Range 6/30K', '1999-04-27', 130, '4/27/1999', NULL), (131, 131, 'S/N 64146', 'Forney LT-701 Compression Machine (E-4)', 'Range: 60K / 300K ', '2009-04-30', 131, '4/30/2009', NULL), (132, 132, 'S/N 08071', 'Forney F25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-04-06', 132, '4/6/2010', NULL), (133, 133, 'S/N 90129-0501191', 'Forney LT-8063-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 600K ', '2013-05-07', 133, '5/7/2013', NULL), (134, 134, 'S/N 1363', 'Soiltest CT-710-ADR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-06-17', 134, '6/17/2013', NULL), (135, 135, 'S/N 00119', 'Forney F-40F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2009-06-10', 135, '6/10/2009', NULL), (136, 136, 'S/N 110611 ', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-05-14', 136, '5/14/2013', NULL), (137, 137, 'S/N 74049R-98102', 'Forney QC-200-CS-100-3 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-05-13', 137, '5/13/2013', NULL), (138, 138, 'S/N 16601H', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (ID#108472)', '2009-05-21', 138, '5/21/2009', NULL), (139, 139, 'S/N 081103', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-05-14', 139, '5/14/2013', NULL), (140, 140, 'S/N 89081-03101', 'Forney QC-400C-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K (ID# 0262070)', '2013-05-22', 140, '5/22/2013', NULL), (141, 141, 'S/N 06088', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-29', 141, '5/29/2013', NULL), (142, 142, 'S/N 688', 'Detroit NST Universal Testing Machine (E-4)', 'Range: 3K / 16K (ID# CCI-60-71)', '2013-05-28', 142, '5/28/2013', NULL), (143, 143, 'S/N 9102', 'Soiltest CT-755-B Compression Machine (E-4)', 'Range: 250K', '2013-05-29', 143, '5/29/2013', NULL), (144, 144, 'S/N 00019', 'Forney F-25E-F96 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2013-05-29', 144, '5/29/2013', NULL), (145, 145, 'S/N 11307H ', 'Humboldt CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2013-05-29', 145, '5/29/2013', NULL), (146, 146, 'S/N 72023', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K (High Range Only)', '2013-05-28', 146, '5/28/2013', NULL), (147, 147, 'S/N 802500', 'Eilon Engineering RON 2000 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 80 Ton ', NULL, 147, 'New', NULL), (148, 148, 'S/N 0050179-002', 'Tamtron BCS-100-A Crane Scale (E-4)', 'Range: 10,000 Kg', '2009-05-29', 148, '5/29/2009', NULL), (149, 149, 'S/N 76142', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2007-07-23', 149, '7/23/2007', NULL), (150, 150, 'S/N 09032', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 250K', NULL, 150, 'New', NULL), (151, 151, 'S/N 10201', 'Soiltest Unconfined Single Proving Ring (OOS) (E-4 & Man Specs)', 'Cap: 2,500 lbs', '2007-05-07', 151, '5/7/2007', NULL), (152, 152, 'S/N 86026', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2010-05-18', 152, '5/18/2010', NULL), (153, 153, 'S/N 090511H ', 'Humboldt HCM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-06-19', 153, '6/19/2013', NULL), (154, 154, 'S/N 0385358', 'Eilon Engineering RON 3050 CW-025 Load Cell(ManSpec&0.1%FS)', 'Range: 5K (ID# 11840) (Max 5 lbs)', '2010-07-01', 154, '7/1/2010', NULL), (155, 155, 'S/N 2141', 'Enerpac Mdl. RCH 121 Pump - P141 (ID # B4498C)', 'Range: 24K', '2009-06-08', 155, '6/8/2009', NULL), (156, 156, 'S/N 8061294', 'Eilon Engineering RON 2500 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 80 Ton ', NULL, 156, 'New', NULL), (157, 157, 'S/N 143735-03100', 'TO Super L CS-100-7 Digital Compression Machine (E-4)', 'Range: 400 lbs to 60K (SOLD)', '2009-06-11', 157, '6/11/2009', NULL), (158, 158, 'S/N 96084', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2007-06-06', 158, '6/6/2007', NULL), (159, 159, 'S/N 753234-05062', 'Forney QC-200-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2012-04-16', 159, '4/16/2012', NULL), (160, 160, 'S/N 092000', 'Geotest Mdl. C1710 Beam Breaker (E-4 & Man Specs)', 'Range: 10K (1,230 psi)', '2007-06-13', 160, '6/13/2007', NULL), (161, 161, 'S/N 02059-090817', 'Forney F-25EX-F-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-07-10', 161, '7/10/2013', NULL), (162, 162, 'S/N 72034-00120(1024)', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range 200 lbs to 28K', '2013-07-08', 162, '7/8/2013', NULL), (163, 163, 'S/N 28450', 'M & L Mdl. MLM 400 Compression Machine (E-4)', 'Range: 400K', '2013-07-18', 163, '7/18/2013', NULL), (164, 164, 'S/N 72036', 'Forney LT-700-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-07-16', 164, '7/16/2013', NULL), (165, 165, 'S/N 05011 / NC#5', 'HCS LC-40 Hydraulic Load Cell (ID# LC2502) (E-4 & 2%)', 'Range: 40K', '2011-07-19', 165, '7/19/2011', NULL), (166, 166, 'S/N 05044049/10', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 kg', '2005-03-05', 166, '3/5/2005', NULL), (167, 167, 'CS-1170', '9 1/2\" O\'Rings - 7 - $7.50', '', '0000-00-00', 167, '', NULL), (168, 168, 'S/N 21606', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K (Moved)', '2009-01-14', 168, '1/14/2009', NULL), (169, 169, 'S/N 071108', 'Testmark CM-0020-SD Digital Compression Machine (E-4)', 'Range: 500 lbs to 20K', '2008-07-17', 169, '7/17/2008', NULL), (170, 170, 'S/N 01040', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2010-07-12', 170, '7/12/2010', NULL), (171, 171, 'S/N 4395', 'Hilti Pull Tester Model 59604/02/00 (MOVED) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2007-03-06', 171, '3/6/2007', NULL), (172, 172, 'S/N 0062', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-23', 172, '7/23/2009', NULL), (173, 173, 'S/N 080409', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-13', 173, '8/13/2013', NULL), (174, 174, 'S/N 16281-1', 'Wykeham Farrance 5802-GB Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-08-20', 174, '8/20/2013', NULL), (175, 175, 'S/N 005', 'Ploog Engineering Dial Indicator (D-6027)', 'Range: 1 inch', '2013-08-21', 175, '8/21/2013', NULL), (176, 176, 'S/N 79028', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-08-21', 176, '8/21/2012', NULL), (177, 177, 'S/N 02075191', 'Eilon Engineering RON 2000 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 30K', '2009-08-28', 177, '8/28/2009', NULL), (178, 178, 'S/N 88083', 'Forney QC-410-2D Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2008-03-12', 178, '3/12/2008', NULL), (179, 179, 'S/N 09074', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Ramge: 2.5K to 250K ', '2009-08-31', 179, '8/31/2009', NULL), (180, 180, 'S/N 21101G', 'Gilson MC-250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-09-02', 180, '9/2/2008', NULL), (181, 181, 'S/N 3034', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2009-08-12', 181, '8/12/2009', NULL), (182, 182, 'S/N 05086', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-09-05', 182, '9/5/2013', NULL), (183, 183, 'S/N 07213', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4) ', 'Range: 3K to 250K', '2013-09-04', 183, '9/4/2013', NULL), (184, 184, 'S/N 08057', 'Forney FX-400F-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-09-04', 184, '9/4/2013', NULL), (185, 185, 'S/N 03086002/1', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 25 Ton ', NULL, 185, 'New', NULL), (186, 186, '', 'CS-1700 CT-710 Kit ', '', '0000-00-00', 186, '', NULL), (187, 187, 'S/N 0375356', 'Eilon Engineering RON 3050 Crane Weigher (ManSp & 0.1% FS)', 'Range: 6K', '2009-09-28', 187, '9/28/2009', NULL), (188, 188, 'S/N 91009', 'Wegener Utilitest Model 500 Tensiometer (E-4 & 2%)', 'Range: 500 lbs', '2009-10-23', 188, '10/23/2009', NULL), (189, 189, 'S/N 01017', 'Forney F-25E-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2009-10-27', 189, '10/27/2009', NULL), (190, 190, 'S/N 07049', 'Forney F-50EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2007-11-12', 190, '11/12/2007', NULL), (191, 191, 'S/N 9112-00106', 'Soiltest CT-6200-CS-100-3 Digital Compression Machine w/ 2 Frames', '', '2012-10-09', 191, '10/9/2012', NULL), (192, 192, 'S/N M922026A-727-03', 'ELE Model 300A Direct Shear Machine (E-4 & 2%)', 'Range: 1K Shear Force ', '2010-10-20', 192, '10/20/2010', NULL), (193, 193, 'S/N KSJ758', 'Mitutoyo Dial Indicator (D-6027)', 'Range: 0.5 inch', '2009-10-20', 193, '10/20/2009', NULL), (194, 194, 'S/N 10595-03110', 'Testmark CM 5000D-CS-100-2A Digital Compression Machine ', 'Range: 4K to 400K (E-4)', '2011-10-11', 194, '10/11/2011', NULL), (195, 195, 'S/N 03151', 'Forney F25EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2008-07-28', 195, '7/28/2008', NULL), (196, 196, 'S/N 2613-0709061', 'Admet Expert 2613 Digital Tension & Compression Machine (E-4)', ' (ID# SCO ', '2008-10-28', 196, '10/28/2008', NULL), (197, 197, 'S/N 04008', 'Forney F-50 EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2009-01-05', 197, '1/5/2009', NULL), (198, 198, 'S/N 951018', 'ELE Test Lab Indicator (D-6027) (Out of Service)', 'Range: 0.2 inches', '2003-11-11', 198, '11/11/2003', NULL), (199, 199, 'S/N 69052-041027', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-11-06', 199, '11/6/2012', NULL), (200, 200, 'S/N Q3530', 'Instron Model 3367 Testing Machine (Frame) (E-4)', '', '0000-00-00', 200, '', NULL), (201, 201, 'S/N 01244010', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', NULL, 201, 'New', NULL), (202, 202, 'S/N Unknown', 'Lane Tester Compression Machine (E-4)', 'Range: 300K', NULL, 202, 'New', NULL), (203, 203, 'S/N 00099', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-12-03', 203, '12/3/2007', NULL), (204, 204, 'S/N 76016-GB0108305', 'Forney FT-40-CS-GB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2009-11-23', 204, '11/23/2009', NULL), (205, 205, 'S/N 59179-134', 'Rainhart Beam Tester (OUT OF SERVICE) (E-4)', 'Range: 1K to 12K', '1999-08-24', 205, '8/24/1999', NULL), (206, 206, 'S/N 99129', 'Forney F-25F-01 Compression Machine (E-4)', 'Range: 250K', '2012-12-10', 206, '12/10/2012', NULL), (207, 207, 'S/N 01170', 'Forney F-25F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2012-12-11', 207, '12/11/2012', NULL), (208, 208, 'S/N 02086382/9', 'Eilon Engineering RON 2501 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K ', '2008-11-19', 208, '11/19/2008', NULL), (209, 209, 'S/N 05085684/4', 'Eilon Engineering RON 2501 S-03 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', NULL, 209, 'New', NULL), (210, 210, 'S/N Unknown ', 'Eilon Engineering RON 2150 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 30K', NULL, 210, 'New', NULL), (211, 211, 'S/N 2053645', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', '2009-12-21', 211, '12/21/2009', NULL), (212, 212, 'S/N 305901', 'Eilon Engineering RON 2000 Dynamometer (ManSp & 0.1% FS)', 'Range: 50K ', NULL, 212, 'New', NULL), (213, 213, '', 'Travel to West Point to consult and prepare the machines for ', '', '0000-00-00', 213, '', NULL), (214, 214, 'S/N 040920', 'Simplex RC-60-CH-35 Post Tension Jack (E-4 & PCI)', 'Range: 60 Tons (9,500 psi)', '2013-01-14', 214, '1/14/2013', NULL), (215, 215, 'S/N 0401101', 'Baldwin Lima Hamilton 200 BTE Universal Testing Machine', 'Range: 10K / 50K / 200K (E-4)', '2013-06-20', 215, '6/20/2013', NULL), (216, 216, 'S/N 513357-130820-226', 'SATEC 60H-CS-100-1BR Universal Testing Machine (E-4)', 'Range: 300 lbs to 60K', '2013-08-23', 216, '8/23/2013', NULL), (217, 217, 'S/N 06062', 'Forney F-25EX-F-GB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-28', 217, '1/28/2013', NULL), (218, 218, 'S/N 100104', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-01-07', 218, '1/7/2013', NULL), (219, 219, 'S/N 101018', 'Testmark CM-0100-iD Digital Compression Machine (E-4)', 'Range: 1K to 100K ', '2013-01-15', 219, '1/15/2013', NULL), (220, 220, 'S/N 90175 (ID#H0803) ', 'Forney LT-900-Precise Universal Testing Machine (E-4)', 'Range: 3K to 400K ', '2010-01-12', 220, '1/12/2010', NULL), (221, 221, 'S/N 85130', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-01-21', 221, '1/21/2013', NULL), (222, 222, 'S/N 83088', 'Forney QC-400-01 Compression Machine (E-4)', 'Range: 400K', '2013-01-29', 222, '1/29/2013', NULL), (223, 223, 'S/N 68134', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-01-28', 223, '1/28/2013', NULL), (224, 224, 'S/N 73242-0410271', 'Forney QC-200-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-04-08', 224, '4/8/2013', NULL), (225, 225, 'S/N 1433', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 30K / 250K', '2013-01-28', 225, '1/28/2013', NULL), (226, 226, 'S/N 68141', 'Forney FT 40 DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-10-08', 226, '10/8/2013', NULL), (227, 227, 'S/N 72171', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 15K / 400K', '2013-10-07', 227, '10/7/2013', NULL), (228, 228, 'S/N 16897-PIR-120123', 'Testmark CM-2500-CS-100-1BR Digital Compression Machine ', 'Range: 2.5K to 250K (E-4)', '2013-01-29', 228, '1/29/2013', NULL), (229, 229, 'S/N 87193', 'Forney QC-0400-F96 Digital Compression Machine (E-4) ', 'Range: 4K to 400K ', '2013-01-30', 229, '1/30/2013', NULL), (230, 230, 'S/N 08291', 'Forney FX-250F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2011-02-02', 230, '2/2/2011', NULL), (231, 231, 'S/N 41683', 'Dixon GL 330 Service Gauge (D-5720)', 'Range: 100 PSI', '2007-03-09', 231, '3/9/2007', NULL), (232, 232, 'S/N 104', 'Marsh Gauge (D-5720)', 'Range: 600 PSI', '2010-01-13', 232, '1/13/2010', NULL), (233, 233, 'S/N 02096778/1', 'Eilon Engineering RON 2501 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', NULL, 233, 'New', NULL), (234, 234, '', 'Eilon Engineering Multi Channel Load System w/ 6 Load Cells', 'w/ RON 2501 Indicator(ManSp&0.1% FS)', '2010-02-16', 234, '2/16/2010', NULL), (235, 235, 'S/N N-174', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 15 PSI ', '2010-01-18', 235, '1/18/2010', NULL), (236, 236, 'S/N 48580 (ID#LABN1)', 'Baldwin 300 BTE-MTEST Quattro Universal Testing Machine (E-4)', '(Equipment attached does not fit 1 page)', '0000-00-00', 236, '', NULL), (237, 237, 'S/N 10706G', 'Gilson MC-400MP Digital Compression Machine (E-4) ', 'Range: 4K to 400K', '2010-02-03', 237, '2/3/2010', NULL), (238, 238, 'S/N 97143', 'Forney F-703F-F96 Digital Compression Machine (E-4)', 'Range: 700K ', NULL, 238, 'New', NULL), (239, 239, 'S/N', 'Instron (Cal In House) (E-4)', 'Range: ', NULL, 239, 'New', NULL), (240, 240, 'S/N 48580 (ID#LABN1)', 'Baldwin 300 BTE-MTEST Quattro Universal Testing Machine (E-4)', 'Range: 1K to 300K ', '2011-01-05', 240, '1/5/2011', NULL), (241, 241, 'S/N 10036 (ID# Q-2958)', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-04-07', 241, '4/7/2010', NULL), (242, 242, 'S/N 00094', 'Forney LT-1000-PRECISE Universal Testing Machine (E-4)', 'Range: 6K to 600K', '2013-02-27', 242, '2/27/2013', NULL), (243, 243, 'S/N 1051', 'Satec Model MK3-300-HVL Universal Testing Machine (E-4)', 'Range: 12K / 60K / 150K / 300K ', '2013-09-16', 243, '9/16/2013', NULL), (244, 244, 'S/N 68087', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K (High Range Only)', '2013-02-26', 244, '2/26/2013', NULL), (245, 245, 'S/N 08100-A', 'Forney F-40EX/LA-270-TPILOT Digital Compression Machine (E-4) ', 'Range: 4K to 400K Frame #1 Cylinder', '2013-02-05', 245, '2/5/2013', NULL), (246, 246, 'S/N 09165', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-05', 246, '2/5/2013', NULL), (247, 247, 'S/N 09136', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-02-14', 247, '2/14/2013', NULL), (248, 248, 'S/N 02085', 'Forney F-25EX-DR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-02-12', 248, '2/12/2013', NULL), (249, 249, 'S/N 82078', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2010-02-11', 249, '2/11/2010', NULL), (250, 250, 'S/N 60158', 'Forney QC-500 Compression Machine (E-4)', 'Range: 50K / 500K ', '2013-02-19', 250, '2/19/2013', NULL), (251, 251, 'S/N 68026-1025', ' Forney QC-150-DR1 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-02-19', 251, '2/19/2013', NULL), (252, 252, 'S/N 69014', 'Forney QC-50B Compression Machine (E-4)', 'Range: 400K', '2012-02-16', 252, '2/16/2012', NULL), (253, 253, 'S/N 03076001/5', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 50K ', '2010-02-18', 253, '2/18/2010', NULL), (254, 254, 'S/N 01053366/5', 'Eilon Enginnering RON 2501 S-10 Load Cell (E-4)', 'Range: 20K ', NULL, 254, 'New', NULL), (255, 255, 'S/N 3032123-1', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 50K ', '2010-02-15', 255, '2/15/2010', NULL), (256, 256, 'S/N 0275021', 'Eilon Engineering RON 2000 S-2 Load Cell (ManSp & 0.1% FS)', 'Range: 4K (ID# A126955) ', '2010-02-24', 256, '2/24/2010', NULL), (257, 257, 'S/N 71087', 'Forney LT-700-2 Compression Machine (E-4)', 'Range: 60K / 350K', '2009-03-03', 257, '3/3/2009', NULL), (258, 258, 'S/N 91066-070525', 'Forney FT-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-18', 258, '3/18/2013', NULL), (259, 259, 'S/N 64148', 'Forney QC-200-DR Compression Machine with Block Platen (E-4)', 'Range: 30K / 400K (High Range Only)', '2013-03-18', 259, '3/18/2013', NULL), (260, 260, 'S/N 70020-100302', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-03-20', 260, '3/20/2013', NULL), (261, 261, 'S/N 05235 (ATG# 282) ', 'Forney FX-250F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-03-27', 261, '3/27/2013', NULL), (262, 262, 'S/N A40342 (ATG# 756)', 'Chatillon Digital Mdl. DFGS-R-ND w/4 Load Cells (Frame)', '', '0000-00-00', 262, '', NULL), (263, 263, 'S/N 9707', 'ELE CT 7250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-03-26', 263, '3/26/2012', NULL), (264, 264, 'S/N 1000412821', 'Load Cell Central AHM Load Cell (ATG# 806) (Frame)', '', '0000-00-00', 264, '', NULL), (265, 265, 'S/N 687995', 'Timius Olsen Model L Digital Compression Machine (E-4)', 'Range: 60K / 300K ', '2010-04-06', 265, '4/6/2010', NULL), (266, 266, 'S/N 059647', 'Eilon Engineering RON 3050 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 10K ', NULL, 266, 'New', NULL), (267, 267, 'S/N 59609 ', 'Richard Dudgeon Mdl. 12592 Post Tension Jack w/ extra gauges ', 'Range: 150 Ton (E-4 & Man Specs)', '2010-03-26', 267, '3/26/2010', NULL), (268, 268, 'S/N 05054278', 'Eilon Engineering RON 2150 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K ', '2010-03-29', 268, '3/29/2010', NULL), (269, 269, 'S/N 0152503', 'Eilon Engineering RON 2125 S-1 Load Cell (ManSp & 0.1% FS)', 'Range: 2K ', '2010-03-12', 269, '3/12/2010', NULL), (270, 270, 'S/N 505010', 'General Electronic Mdl. 531 System Scale (E-898)', 'Range: 200 lbs ', '2010-03-16', 270, '3/16/2010', NULL), (271, 271, 'S/N 68026', 'Forney QC-150-DR Compression Machine (E-4)', 'Ranges: 10K/60K/300K', '1994-05-23', 271, '5/23/1994', NULL), (272, 272, 'S/N 04051', 'Forney LA-0270-99-PILOT Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K (Beam Frame)', '2010-04-19', 272, '4/19/2010', NULL), (273, 273, 'S/N 10015', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-03-23', 273, '3/23/2011', NULL), (274, 274, 'S/N X15', 'Simplex RC302 Ram (E-4 & PCI)', 'Range: 60K (7,000 PSI)', '2012-03-22', 274, '3/22/2012', NULL), (275, 275, 'S/N 533616/8', 'Eilon Engineering Ron 2501-S10 (ManSpecs 0.1%FS)', 'Range: 10,000 lbs', '2013-06-27', 275, '6/27/2013', NULL), (276, 276, 'S/N 149', 'Brainard Kilman CM-215-CS-100-1S Digital Compression Machine ', 'Range: 2.5K to 250K (E-4) ', '2011-03-29', 276, '3/29/2011', NULL), (277, 277, 'S/N 97101', 'CSI Digital Load Cell System CS-100-6 wtih Cell #1 & Cell #2 (E-4)', 'Cell #1 - 50K S/N 713653 ', '2010-07-14', 277, '7/14/2010', NULL), (278, 278, 'S/N 13998', 'Testmark Machine Digital CM 5000 MT (E-4)', 'Ranges 250K/500K', '2000-06-22', 278, '6/22/2000', NULL), (279, 279, 'S/N 96057', 'Forney F-250F-01/DR2000 Digital Compression Machine (E-4)', 'Range: 250K', '2013-09-23', 279, '9/23/2013', NULL), (280, 280, 'S/N 10024 ', 'Forney F-25EX-E-TPT-60 Digital Compression Machine (E-4)', 'Range: 600 lbs to 60,000 lbs ', '2013-04-16', 280, '4/16/2013', NULL), (281, 281, 'S/N Z42977', 'Enerpac Mdl. LS10006 (E-4 ManSpecs &2%)', 'Range: 200,000 lbs', '2013-05-02', 281, '5/2/2013', NULL), (282, 282, 'S/N 09149', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-15', 282, '4/15/2013', NULL), (283, 283, 'S/N 01103', 'Forney F-25F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-22', 283, '4/22/2013', NULL), (284, 284, 'S/N TEN015', 'Test Resources Model 11KM System P/N 20031401 w/ Load Cell', 'Range: 100 lbs to 10K T & C ', '2013-04-24', 284, '4/24/2013', NULL), (285, 285, 'S/N 10010', 'Forney F-30EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-04-11', 285, '4/11/2012', NULL), (286, 286, 'S/N 09034', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-04-27', 286, '4/27/2010', NULL), (287, 287, 'S/N 01264325', 'Eilon Engineering RON 2000 S-12.5 Load Cell (ManSp & 0.1% FS)', 'Range: 12.5 Ton (ID# U 210)', '2009-07-08', 287, '7/8/2009', NULL), (288, 288, 'S/N 12609', 'Soiltest Triaxial Single Proving Ring (E-4 & ManSpecs)', 'Cap: 1.5K', '2010-04-15', 288, '4/15/2010', NULL), (289, 289, 'S/N 01097344', 'Eilon Engineering RON 3050 CW-10 Scale (ManSp & 0.1% FS)', 'Range: 20K ', '2010-04-15', 289, '4/15/2010', NULL), (290, 290, 'S/N 2081811', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Ton', '2010-04-13', 290, '4/13/2010', NULL), (291, 291, 'S/N 104', 'Brainard Kilman C-100 Compression Machine (E-4)', 'Range: Low 2K to 20K- High 25 K to 250K', '2009-04-13', 291, '4/13/2009', NULL), (292, 292, 'S/N 92065', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2010-04-07', 292, '4/7/2010', NULL), (293, 293, 'S/N 9617', 'ELE Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K ', '2013-05-06', 293, '5/6/2013', NULL), (294, 294, 'S/N 100111H', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-04-19', 294, '4/19/2011', NULL), (295, 295, 'S/N 0018', 'VSL Bond Tester (Houston) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2008-02-22', 295, '2/22/2008', NULL), (296, 296, 'S/N 011088333', 'ELE Mdl. 88-4070 Dial Indicator (D-6027)', 'Range: 0.4 inches', '2010-05-12', 296, '5/12/2010', NULL), (297, 297, 'S/N 08255', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-05-08', 297, '5/8/2013', NULL), (298, 298, 'S/N 21605G ', 'Gilson MC-300CL Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-05-15', 298, '5/15/2013', NULL), (299, 299, 'S/N 010710', 'GeoTest Md. S2215A Direct Shear Machine (E-4)', '', '2013-05-15', 299, '5/15/2013', NULL), (300, 300, 'S/N 10063', 'Forney F-50EX-B-CPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-05-15', 300, '5/15/2013', NULL), (301, 301, 'S/N 23905 ', 'Testmark CM-3000-ID Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-05-16', 301, '5/16/2013', NULL), (302, 302, 'S/N 090601', 'Testmark CM-3000-SD Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-05-21', 302, '5/21/2012', NULL), (303, 303, 'S/N 1697', 'Geotac GeoJac Frame 1 (E-4)', '', '0000-00-00', 303, '', NULL), (304, 304, 'S/N 03054480/10', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 60K', '2010-05-27', 304, '5/27/2010', NULL), (305, 305, 'S/N 1261158', 'Eilon Engineering RON 2000 S-12.5 Load Cell (ManSp & 0.1% FS)', 'Range: 12.5 Tons', '2010-05-21', 305, '5/21/2010', NULL), (306, 306, 'S/N 22683', 'Soiltest Single Proving Ring (E-4 & Man Specs)', 'Range: 20K ', '2008-11-25', 306, '11/25/2008', NULL), (307, 307, 'S/N 06800000025', 'ELE 36-0718/02 Digital Compression Machine (E-4)', 'Range: 3K to 350K', '2012-05-24', 307, '5/24/2012', NULL), (308, 308, 'S/N 6 ', 'Geocomp LVDT (Channel 6 LVDT 2) (OOS) (D-6027)', 'Range: 1 inch', '2008-06-03', 308, '6/3/2008', NULL), (309, 309, 'S/N 11', 'Trautwein Pressure Transducer Model with GeoComp Datalogger', 'Range: 120 PSI (OUT OF SVC)', '2002-06-20', 309, '6/20/2002', NULL), (310, 310, 'S/N ', 'Boart Longyear LD114 Direct Shear Box (E-4)', 'Range: ', NULL, 310, 'New', NULL), (311, 311, 'S/N 00116', 'Forney F-25F-01 Compression Machine (E-4)', 'Range: 250K', '2010-05-13', 311, '5/13/2010', NULL), (312, 312, 'S/N 71029', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2010-05-17', 312, '5/17/2010', NULL), (313, 313, 'S/N 84071', 'Forney FT-40-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2010-05-20', 313, '5/20/2010', NULL), (314, 314, 'S/N 87170', 'Forney QC-410-02Compression Machine (E-4)', 'Range: 30K / 400K', '2013-03-19', 314, '3/19/2013', NULL), (315, 315, 'S/N 90005059', 'Com-Ten 95 Series Universal Testing Machine w/ C-Tap Software ', 'Range: 5K (E-4) ', '2011-06-09', 315, '6/9/2011', NULL), (316, 316, 'S/N 070300000055', 'Soiltest 36-0640/02 w/ADR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-04', 316, '6/4/2013', NULL), (317, 317, 'S/N 10046', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-06-03', 317, '6/3/2013', NULL), (318, 318, 'S/N 090513', 'Testmark CM-3000-SD Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-06-05', 318, '6/5/2013', NULL), (319, 319, 'S/N 090404H', 'Testmark CM-4000-SD Digital Compression Machine (E-4)', 'Range: 2K to 400K ', '2010-06-07', 319, '6/7/2010', NULL), (320, 320, 'S/N 55177-94002', 'Forney LT-704-2-CS-100 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-06-10', 320, '6/10/2013', NULL), (321, 321, 'S/N 89094', 'Forney QC-400C-PI Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2010-06-17', 321, '6/17/2010', NULL), (322, 322, 'S/N 0204', 'ELE Accu-Tek Mdl 36-3088/02 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-06-12', 322, '6/12/2013', NULL), (323, 323, 'S/N 051912R', 'Lane CT300-CS-100-1S Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-06-19', 323, '6/19/2013', NULL), (324, 324, 'S/N 87061', 'Forney QC-400-D-Pi Digital Compression Machine (E-4) ', 'Range: 4K to 400K ', '2011-06-14', 324, '6/14/2011', NULL), (325, 325, 'S/N 100510', 'Testmark CM-2500-iD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-06-20', 325, '6/20/2011', NULL), (326, 326, 'S/N 68137', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-06-24', 326, '6/24/2013', NULL), (327, 327, 'S/N 95115', 'Forney F-502F-LC1 w/GB Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2011-06-30', 327, '6/30/2011', NULL), (328, 328, 'S/N 70053', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-06-25', 328, '6/25/2013', NULL), (329, 329, 'S/N 25', 'Lucker Vertical Tensile Tester (E-4 &2% ManSpecs) ', 'Range: 60K ', '2013-06-26', 329, '6/26/2013', NULL), (330, 330, 'S/N 80280', 'Forney QC-400-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-06-25', 330, '6/25/2013', NULL), (331, 331, 'S/N 91095', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2012-04-02', 331, '4/2/2012', NULL), (332, 332, 'S/N 85104', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-06-25', 332, '6/25/2013', NULL), (333, 333, 'S/N 79060', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-06-24', 333, '6/24/2013', NULL), (334, 334, 'S/N HLT-69094', 'Harrington Model HLTI Hoist Tester (E-4 & Man Specs)', 'Range: 5 Ton/ 10 Ton ', '2013-06-26', 334, '6/26/2013', NULL), (335, 335, 'S/N 68108', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-06-25', 335, '6/25/2013', NULL), (336, 336, 'S/N 68144', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-05-29', 336, '5/29/2013', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (337, 337, 'S/N 68055', 'Forney QC-50 Compression Machine (E-4)', 'Range: 400K', '2012-06-28', 337, '6/28/2012', NULL), (338, 338, 'S/N A-21597', 'TMI 51008 with CS-100-SP Digital Compression Machine (E-4)', 'Range: 10 lbs to 1K ', '2013-06-24', 338, '6/24/2013', NULL), (339, 339, 'S/N 3289-00104', 'Steel City MP-10-CS-100-2 Universal Testing Machine (E-4)', 'Range: 10K / 60K ', '2014-06-27', 339, '6/27/2014', NULL), (340, 340, 'S/N 98276A', 'Interface Digital Load Cell Model 1210BDE (E-4)', 'Range: 225 KG to 2,250 KG ', '2010-06-03', 340, '6/3/2010', NULL), (341, 341, 'S/N 200', 'Ashcroft Gauge G-8962 (IN HOUSE) (D-5720)', 'Range: 0-60psi', '2003-03-28', 341, '3/28/2003', NULL), (342, 342, 'S/N 03015', 'EXAMO 600F Tensiometer (E-83)', 'Range: 4,000 N ', NULL, 342, 'New', NULL), (343, 343, 'S/N 5023576', 'Eilon Engineering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Ton', '2010-06-17', 343, '6/17/2010', NULL), (344, 344, 'S/N 90006067', 'Digital Com-Ten System Model: 952KVC0250 (E-4)', 'Range: 1K', '2010-06-14', 344, '6/14/2010', NULL), (345, 345, 'S/N 87157-00116', 'Forney QC-400-C-CS-100-3 Digital Compression Machine (E-4)', 'Range: 3K to 400K ', '2009-02-16', 345, '2/16/2009', NULL), (346, 346, 'S/N 18767', 'Total Comp TC-33 Load Cell w/ Delphin Unit (E-4)', 'Range: 24K', '2013-03-25', 346, '3/25/2013', NULL), (347, 347, 'S/N CP-0602221-I-48V', 'Admet Expert 5605 Digital Compression Machine (E-4)', 'Range: 20 lbs to 2K', '2009-04-13', 347, '4/13/2009', NULL), (348, 348, 'S/N 11402', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-06-07', 348, '6/7/2010', NULL), (349, 349, 'S/N 89043', 'Forney FT-250F-01 Compression Machine (MOVED) (E-4)', 'Range: 250K ', '2010-12-07', 349, '12/7/2010', NULL), (350, 350, 'S/N 98086', 'Forney F-400E-F96-SPL w/ GB2 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2009-08-19', 350, '8/19/2009', NULL), (351, 351, 'S/N 9710-0508012', 'Soiltest CT-7250-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2010-06-30', 351, '6/30/2010', NULL), (352, 352, 'S/N 72028', 'Forney QC-150-GB2 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-07-09', 352, '7/9/2013', NULL), (353, 353, 'S/N 2', 'CMM Tensile Tester Model (E-4 & 2%)', 'Range: 3K to 110K', '2010-07-19', 353, '7/19/2010', NULL), (354, 354, 'S/N 1', 'CMM Tensile Tester Model (E-4 & 2%)', 'Range: 3K to 100K', '2010-07-21', 354, '7/21/2010', NULL), (355, 355, 'S/N 0207', 'ELE Accutech 250 Mdl. 36-0635/2 W/GB Digital Comp Machine ', 'Range: 2.5K to 250K (E-4)', '2013-02-28', 355, '2/28/2013', NULL), (356, 356, 'S/N 91009', 'Wegener Utilitest Model 500 Tensiometer (E-4 & 2%)', 'Range: 500 lbs ', '2010-08-12', 356, '8/12/2010', NULL), (357, 357, 'S/N 0374155/6', 'Eilon Engineering RON 2501 S-3 Load Cell (ManSp & 0.1% FS)', 'Range: 6K (Max 6lbs)', '2010-07-15', 357, '7/15/2010', NULL), (358, 358, 'S/N 1000759', 'Humboldt H-4454 Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2009-01-02', 358, '1/2/2009', NULL), (359, 359, 'S/N 100610', 'Testmark CM-2500-iD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-07-15', 359, '7/15/2010', NULL), (360, 360, 'S/N 99144', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-05-02', 360, '5/2/2013', NULL), (361, 361, 'S/N 01208', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-08-06', 361, '8/6/2012', NULL), (362, 362, 'S/N 37906-1002111-3', 'Testmark Servo LX12 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2011-08-09', 362, '8/9/2011', NULL), (363, 363, '', '', '', '0000-00-00', 363, '', NULL), (364, 364, 'S/N 84051-03109', 'Forney QC-410-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 400K ', '2013-08-12', 364, '8/12/2013', NULL), (365, 365, 'S/N 83003', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K ', '2012-08-16', 365, '8/16/2012', NULL), (366, 366, 'S/N 77080-97102', 'Forney QC-50-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-08-13', 366, '8/13/2013', NULL), (367, 367, 'S/N 133', 'Soiltest CT-875 Compression Machine (E-4)', 'Range: 30K / 400K', '2013-08-13', 367, '8/13/2013', NULL), (368, 368, 'S/N 08060000083 ', 'ELE Accu-Tek Mdl. 250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-13', 368, '8/13/2013', NULL), (369, 369, 'S/N 10134', 'Forney F-325EX-B-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K', '2013-08-12', 369, '8/12/2013', NULL), (370, 370, 'S/N 5694', 'Forney FT-10 Compression Machine (E-4)', 'Range: 200K', '2011-08-18', 370, '8/18/2011', NULL), (371, 371, 'S/N 070200000079', 'ELE 36-0650/02 Digital Compression Machine w/ ADR Digital', 'Range: 2.5K to 250K (E-4) ID#0010202', '2013-08-19', 371, '8/19/2013', NULL), (372, 372, 'S/N 65070', 'Forney PT-125-2 Pipe Tester (E-4 & C-497)', 'Range: 60K / 250K ', '2012-08-28', 372, '8/28/2012', NULL), (373, 373, 'S/N 10126', 'Forney F-325EX-B-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K ', '2013-08-27', 373, '8/27/2013', NULL), (374, 374, 'S/N 01075390/4', 'Eilon Engineering RON 2501 H-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', '2010-08-06', 374, '8/6/2010', NULL), (375, 375, 'S/N 146764', 'Ultra Precision Load Cell w/ DFI 3700-1 S/N 05231273-9', 'Range: 100K T&C', '2004-12-22', 375, '12/22/2004', NULL), (376, 376, 'S/N', 'Forney FT-40 Compression Machine (E-4)', 'Range: ', NULL, 376, 'New', NULL), (377, 377, 'S/N 01064615/1', 'Eilon Engineering RON 2501 Load Cell (ManSp & 0.1% FS)', 'Range: 10K ', NULL, 377, 'New', NULL), (378, 378, 'S/N 2051016', 'Eilon Engineering RON 2000 S-20 Load Cell (E-4 & 0.1%FS)', 'Range: 20 Ton (Max Error 0.02 Tons)', '2010-08-16', 378, '8/16/2010', NULL), (379, 379, 'S/N 149905', 'Tinius Olsen Super L Digital Compression Machine (E-4)', 'Range: 6K/30K/120K/300K', NULL, 379, 'New', NULL), (380, 380, 'S/N 07275 ', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-10-05', 380, '10/5/2010', NULL), (381, 381, 'S/N 85138-060829', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-09-01', 381, '9/1/2010', NULL), (382, 382, 'S/N 9543', 'Soiltest CT-7251 Compression Machine w/#6691 Frame (E-4)', 'Range: 250K ', '2013-09-05', 382, '9/5/2013', NULL), (383, 383, 'S/N 86052', 'Forney FT-40-DR Compression Machine (OOS) (E-4)', 'Range: 30K / 250K (High Range Only)', '2012-09-11', 383, '9/11/2012', NULL), (384, 384, 'S/N 10001-10080411 ', 'Forney FX-500/25EX-CS-100-2B Digital Compression Machine(E-4)', 'Range: 3K to 500K Frame 1 ', '2013-09-10', 384, '9/10/2013', NULL), (385, 385, 'S/N 67152-0704203 ', 'Forney QC-200-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 400K ', '2013-09-24', 385, '9/24/2013', NULL), (386, 386, 'S/N 01295529/13', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', NULL, 386, 'New', NULL), (387, 387, 'S/N 08064243', 'Eilon Engineering RON 2000 S-80 Load Cell (ManSpec & 0.1%FS)', 'Range: 160K ', NULL, 387, 'New', NULL), (388, 388, 'S/N', 'F-96 Digital ', '', '0000-00-00', 388, '', NULL), (389, 389, '', 'F-96 Digital', '', '0000-00-00', 389, '', NULL), (390, 390, 'S/N 110914', 'Testmark CM-4000-DIR Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-10-08', 390, '10/8/2013', NULL), (391, 391, 'S/N 87152-0407284', 'Forney QC-410-PIR Digital Compression Machine ID #P1334 (E-4)', 'Range: 4K to 400K', '2011-10-17', 391, '10/17/2011', NULL), (392, 392, 'S/N 04063', 'Forney FX-400F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2012-10-17', 392, '10/17/2012', NULL), (393, 393, 'S/N 02116-101012-47', 'Forney F-60C-CS-100-2BSE Digital Compression Machine (E-4)', 'Range: 6K to 600K ', '2012-10-16', 393, '10/16/2012', NULL), (394, 394, 'S/N 01168', 'Forney F-25F-DR2001Digital Compression Machine (E-4)', 'Range: 2K to 250K', '2012-10-15', 394, '10/15/2012', NULL), (395, 395, 'S/N 10135', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-10-20', 395, '10/20/2011', NULL), (396, 396, 'S/N 375 ', 'Geo Comp Load Trac II Digital Consolidation Mach. w/ Load Cell (E-4)', 'Range: 25 lbs to 2.5K LC: 435BALD0210', '2012-10-23', 396, '10/23/2012', NULL), (397, 397, 'S/N 130610', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-08-06', 397, '8/6/2013', NULL), (398, 398, 'S/N 07168 ', 'Forney F-25EX-TX-TP Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-09-10', 398, '9/10/2013', NULL), (399, 399, 'S/N 73001', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2011-10-24', 399, '10/24/2011', NULL), (400, 400, 'S/N 04164', 'Forney F-401F-TPILOT Digital Compression Machine (E-4) (E-4)', 'Range: 4.5K to 450K', '2012-10-29', 400, '10/29/2012', NULL), (401, 401, 'S/N 97082-01117', 'Forney F-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 300 lbs to 150K', '2012-10-29', 401, '10/29/2012', NULL), (402, 402, 'S/N 00060', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-10-30', 402, '10/30/2012', NULL), (403, 403, 'S/N 13597', 'Testmark Model CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-10-30', 403, '10/30/2012', NULL), (404, 404, '', 'Eilon Engineering RON 2501 S-25 Load Cell w/ 2 Indicators ', 'Range: 50K (ManSp & 0.1% FS)', '2010-03-25', 404, '3/25/2010', NULL), (405, 405, 'S/N 020065075/3', 'Eilon Engineering RON 2501 S-200 Load Cell (ManSpec & 0.1%FS)', 'Range: 200 Ton ', '2010-10-04', 405, '10/4/2010', NULL), (406, 406, 'S/N 01296972', 'Eilon Engineering RON 2000 S-12.5 Load Cell (ManSpec & 0.1%FS)', 'Range: 25K', '2010-10-18', 406, '10/18/2010', NULL), (407, 407, '12', 'O\'Ring Greenlee Flow Control Knob - VS-2010 ', '$1.85 each', '0000-00-00', 407, '', NULL), (408, 408, 'S/N DEDX2500713', 'Dillon DEDX2500713 Dynamometer (E-4)', 'Range: 10K', '2010-03-25', 408, '3/25/2010', NULL), (409, 409, 'S/N 08074256/4', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 160K ', NULL, 409, 'New', NULL), (410, 410, 'S/N 0385351', 'Eilon Engineering RON 3050 S-3 Load Cell (ManSpec & 0.1% FS) ', 'Range: 6K ', '2010-10-07', 410, '10/7/2010', NULL), (411, 411, 'S/N 1202276', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSpec & 0.1&FS)', 'Range: 20K ', '2010-10-07', 411, '10/7/2010', NULL), (412, 412, 'S/N 02043747', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSpec & 0.1% FS)', 'Range: 40K ', '2010-11-05', 412, '11/5/2010', NULL), (413, 413, 'S/N 01087362/12', 'Eilon Engineering RON 2000 (ManSpec & 0.1%FS) ', 'Range: 20K ', NULL, 413, 'New', NULL), (414, 414, 'S/N', 'Geo Durham S-492 Direct Shear Machine (E-4) ', '', NULL, 414, 'New', NULL), (415, 415, 'S/N 70153-101206', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-11-12', 415, '11/12/2012', NULL), (416, 416, 'S/N 83083-0602241', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-07-17', 416, '7/17/2013', NULL), (417, 417, 'S/N 87059-091005', 'M & L MLM-400-CS-100-2B Digital Compression Machine (E-4)', 'Range: 3K to 400K ', '2012-11-27', 417, '11/27/2012', NULL), (418, 418, 'S/N 1885PL0044-39532', 'ELE Direct Shear 26-2114/02 (E-4)', '', '0000-00-00', 418, '', NULL), (419, 419, 'S/N 03085572', 'Eilon Engineering RON 2000 Load Cell (ManSpec & 0.1%FS)', 'Range: 50K ', '2010-11-15', 419, '11/15/2010', NULL), (420, 420, '', 'Reconditioned Greenlee Valve', '', '0000-00-00', 420, '', NULL), (421, 421, 'S/N 03007468/23', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSpec & 0.1%FS)', 'Range: 50K ', '2010-12-08', 421, '12/8/2010', NULL), (422, 422, 'S/N G874', 'Soiltest RM-735 Point Loader (E-4 & 2%)', 'Range: 1.3K / 13K (ID# G-874)', '2013-01-08', 422, '1/8/2013', NULL), (423, 423, 'S/N 1154 (ID# G1073)', 'Geotac Sigma 1 Frame (E-4)', '', '0000-00-00', 423, '', NULL), (424, 424, 'S/N G134', 'Boart Longyear E-124 Pore Pressure Transducer (D-5720)', 'Range: 150 PSI ', '2013-01-09', 424, '1/9/2013', NULL), (425, 425, 'S/N ID# G833', 'Trautwein Sigma 1 Frame (E-4)', '', '0000-00-00', 425, '', NULL), (426, 426, 'S/N 19001', 'Testmark CM-5000-D Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-01-08', 426, '1/8/2013', NULL), (427, 427, 'S/N G1092', 'Geotest Direct Shear Machine (E-4)', '', '0000-00-00', 427, '', NULL), (428, 428, 'S/N G1285', 'GeoTac Direct Shear Machine (E-4)', '', '0000-00-00', 428, '', NULL), (429, 429, 'S/N 20B-1053', 'Satec Mark II 20B Universal Testing Machine (E-4)', 'Range: 500 lbs/ 2K / 5K / 20K ', '2013-01-09', 429, '1/9/2013', NULL), (430, 430, 'S/N 583413', 'United DH-10 Tensile Tester w/ 2 Gauges (E-4 2% ManSpecs)', 'Range: 2K / 10K (ID# UTOWN)', '2013-05-29', 430, '5/29/2013', NULL), (431, 431, 'S/N 200HV-1017-SPEC.', 'Satec Model 200HV Spring Tester (Asset # 0065) (E-4)', 'Range: 12K / 120K', '2013-01-07', 431, '1/7/2013', NULL), (432, 432, 'S/N 70054', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2013-01-14', 432, '1/14/2013', NULL), (433, 433, 'S/N 232', 'Detroit ST-1 Universal Testing Machine (E-4)', 'Range: 3K / 10K (Low Range Only)', '2011-01-27', 433, '1/27/2011', NULL), (434, 434, 'S/N 078', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-04-17', 434, '4/17/2013', NULL), (435, 435, 'S/N RA-19302', 'Riehle FH-200-MTEST Servo UTM w/ MTEST Quattro (E-4)', 'Range: 1K to 200K ', '2013-03-04', 435, '3/4/2013', NULL), (436, 436, 'S/N 08090', 'Forney F-25EX-F-01 Compression Machine (E-4)', 'Range: 250 K ', '2013-01-29', 436, '1/29/2013', NULL), (437, 437, 'S/N 080814', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-09-18', 437, '9/18/2013', NULL), (438, 438, 'S/N 080118', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-02-10', 438, '2/10/2011', NULL), (439, 439, 'S/N 03075', 'Forney FX250F-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 300K', '2011-03-21', 439, '3/21/2011', NULL), (440, 440, 'S/N 3736-110221-39', 'Soiltest CT-710-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-02-04', 440, '2/4/2013', NULL), (441, 441, 'S/N 00023', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-05', 441, '2/5/2013', NULL), (442, 442, 'S/N 732233', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2013-02-05', 442, '2/5/2013', NULL), (443, 443, 'S/N 80062', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K ', '2011-02-07', 443, '2/7/2011', NULL), (444, 444, 'S/N 69157', 'Forney FT-40 -DR Compression Machine (E-4)', 'Range: 250K ', '2012-03-22', 444, '3/22/2012', NULL), (445, 445, 'S/N 110128-38', 'Forney QC-200-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 3K to 400K (There S/N 76055)', '2013-02-13', 445, '2/13/2013', NULL), (446, 446, 'S/N 64210', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-02-12', 446, '2/12/2013', NULL), (447, 447, 'S/N 083260647', 'Humboldt H-4158.1 Dial Indicator (ID# DI-12) (D-6027)', 'Range: 1 inch ', '2013-02-13', 447, '2/13/2013', NULL), (448, 448, 'S/N 090100000086', 'ELE 78-0910 Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K (There S/N D-37)(ID# D-37)', '2013-02-13', 448, '2/13/2013', NULL), (449, 449, 'S/N 849', 'Soiltest CT-710 Compression Machine (E-4 & 2%)', 'Range: 250K ', '2013-06-17', 449, '6/17/2013', NULL), (450, 450, 'S/N PFS-11 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 450, '2/13/2013', NULL), (451, 451, 'S/N 70200', 'Forney QC-50-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-02-12', 451, '2/12/2013', NULL), (452, 452, 'S/N 100413 ', 'Testmark CM-3000-iD Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-02-18', 452, '2/18/2013', NULL), (453, 453, 'S/N 80053-110414-54', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-19', 453, '2/19/2013', NULL), (454, 454, 'S/N 17607', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-18', 454, '4/18/2013', NULL), (455, 455, 'S/N 00505284', 'Eilon Engineering RON 2000 S-0.5 Load Cell (ManSpec & 0.1%FS)', 'Range: 1K ', NULL, 455, 'New', NULL), (456, 456, '', '1-VS-2010 O\'Ring for Greenlee Low Control Knob', '', '0000-00-00', 456, '', NULL), (457, 457, 'S/N 02096801/11', 'Eilon Engineering RON 2501 S-20 Load Cell (ManSpec & 0.1%FS)', 'Range: 40K ', '2012-04-02', 457, '4/2/2012', NULL), (458, 458, 'S/N 9806', 'Soiltest CT-7500 Digital Compression Machine (E-4)', 'Range: 5K to 500K (4K to 400K Only)', '2010-12-06', 458, '12/6/2010', NULL), (459, 459, 'S/N 11695', 'Testmark CM25002G Compression Machine (E-4)', 'Range: 30K / 250K ', '2011-02-07', 459, '2/7/2011', NULL), (460, 460, 'S/N 81145', 'Forney FT-40 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MDOT# 89856)', '2011-02-17', 460, '2/17/2011', NULL), (461, 461, 'S/N 89141', 'Forney QC-400F-TPILOT Digital Compression Machine (E-4)', 'Range: 8K to 400K ', '2013-03-05', 461, '3/5/2013', NULL), (462, 462, 'S/N 09002', 'Forney F-40EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K ID# 097227', '2013-03-05', 462, '3/5/2013', NULL), (463, 463, 'S/N 4016', 'Karol Warner Direct Shear Mdl. 6574', '', '0000-00-00', 463, '', NULL), (464, 464, 'S/N 119/99', 'Toni Technik Model 2020 Press ( E-4 & 2%)', 'Ranges: 1,000 KN', '2013-09-11', 464, '9/11/2013', NULL), (465, 465, 'S/N 11021', 'Forney F-325EX-B-DR500 Digital Compresssion Machine (E-4)', 'Range: 3K to 325K ', '2013-03-20', 465, '3/20/2013', NULL), (466, 466, 'S/N GCC060556', 'Geocomp Direct Shear (ID #4433)', '', '2013-03-20', 466, '3/20/2013', NULL), (467, 467, 'S/N 3023595/5', 'Eilon Engineering RON 2501S-30 Load Cell (ManSp & 0.1% FS) ', 'Range: 60K ', '2011-03-10', 467, '3/10/2011', NULL), (468, 468, 'S/N 05085697/4', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K ', NULL, 468, 'New', NULL), (469, 469, 'S/N 0204', 'ELE Accu-Tek Mdl 36-3088/02 Digital Compression Machine (E-4)', 'Range: 5K to 500K ( MOVED)', '2008-02-05', 469, '2/5/2008', NULL), (470, 470, 'S/N 9918', 'ELE Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2013-05-29', 470, '5/29/2013', NULL), (471, 471, 'S/N 04200', 'Forney FX-250/LA270-PILOT Dig. Comp. Machine w/2Frames (E-4)', '', '2010-01-14', 471, '1/14/2010', NULL), (472, 472, 'S/N 15564 ', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K (MOVED)', '2012-03-05', 472, '3/5/2012', NULL), (473, 473, 'S/N 100513', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-03-17', 473, '3/17/2011', NULL), (474, 474, 'S/N 612490', 'Humboldt Marshall Press w/ S-Type Load Cell (E-4)', 'Range: 10K ', '2011-03-29', 474, '3/29/2011', NULL), (475, 475, 'S/N 9805', 'ELE Auto Test CT-7510 -w/ 2 Presses (E-4)', '', '2013-04-17', 475, '4/17/2013', NULL), (476, 476, 'S/N 08080', 'Forney FX-400F-CPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-04-10', 476, '4/10/2013', NULL), (477, 477, 'S/N 99182', 'Forney F-50C-DFM/1 Digital Compression Machine (E-4)', 'Range: 2.5K to 500K (ID# 204894)', '2013-04-09', 477, '4/9/2013', NULL), (478, 478, 'S/N 00283UKM', 'HBM C18 400 Ton Load Cell (E-4)', 'Range: 7K to 700K (400 Ton)', '2013-04-09', 478, '4/9/2013', NULL), (479, 479, 'S/N 348 ', 'Humboldt H3030 Beam Breaker (E-4 & 2% ManSpecs)', 'Range: 15K ', '2013-04-08', 479, '4/8/2013', NULL), (480, 480, 'S/N 87035-060919', 'Forney QC-400-01-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-04-22', 480, '4/22/2013', NULL), (481, 481, 'S/N 81210-041115', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-22', 481, '4/22/2013', NULL), (482, 482, 'S/N 05074', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2013-02-27', 482, '2/27/2013', NULL), (483, 483, 'S/N 84066', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K Only', '2013-04-24', 483, '4/24/2013', NULL), (484, 484, 'S/N 372026-GB2-', 'Baldwin 200 BTE-CS-100-2B Digital Universal Testing Machine ', 'Range: 500 lbs to 200K (E-4)', '2013-04-24', 484, '4/24/2013', NULL), (485, 485, 'S/N 11055', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-29', 485, '4/29/2013', NULL), (486, 486, 'S/N 10702G-', 'Testmark MC-307 Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-04-23', 486, '4/23/2013', NULL), (487, 487, 'S/N 06159', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-29', 487, '4/29/2013', NULL), (488, 488, 'S/N 96069/PIR-06052', 'Forney F502F-PIR Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-05-01', 488, '5/1/2013', NULL), (489, 489, 'S/N 9410-GB0405122', 'Soiltest CT-7540A-CS-100-2A Digital Compression Machine (E4)', 'Range: Frame #1 5K to 400K LC #0', '2013-04-30', 489, '4/30/2013', NULL), (490, 490, 'S/N 06275', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2013-04-30', 490, '4/30/2013', NULL), (491, 491, 'S/N 02173', 'Forney F-40F-F96 Digital Compression Machine Remac (E-4)', 'Range: 2K to 400K', '2013-04-24', 491, '4/24/2013', NULL), (492, 492, 'S/N 83154', 'Forney LT-806-D3 Compression Machine with LC Unit (E-4)', 'Range: 4K to 600K', '2013-05-01', 492, '5/1/2013', NULL), (493, 493, 'S/N 95026', 'Forney F602F-MRS-8-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 600K', '2013-04-29', 493, '4/29/2013', NULL), (494, 494, 'S/N 14513B', 'Wykeham Farrance Ring Shear Single Proving Ring (E-4&ManSpecs)', 'Cap: 100 lbs (0.5 KN)', '2013-04-30', 494, '4/30/2013', NULL), (495, 495, 'S/N 001174259', 'Humboldt Mdl. BG2720-0-16 Dial Indicator (D-6027)', 'Range: 2 inches', '2013-04-29', 495, '4/29/2013', NULL), (496, 496, 'S/N 0854', 'Humboldt Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 200lbs', '2013-04-30', 496, '4/30/2013', NULL), (497, 497, 'S/N 90105029/', 'Com-Ten Mdl. 951KRC2000 Universal Testing System (E-4)', '', '2013-04-23', 497, '4/23/2013', NULL), (498, 498, 'S/N R50895', 'Riehle Model MA 120 Universal Testing Machine (E-4 & 1%)', 'Range: 120K', '2013-04-22', 498, '4/22/2013', NULL), (499, 499, 'S/N 11192 ', 'Testmark CM-2500-LXI Digital Compression Machine (E-4)', 'Range: 2K to 250K LC#0', '2012-04-30', 499, '4/30/2012', NULL), (500, 500, 'S/N 890811-A-89 ', 'ATS Model 1101 Digital Tensile Machine w/ LC: S/N 59128 (E-4)', 'Range: 100 lbs / 200 lbs / 500 lbs / 1K ', '2013-04-30', 500, '4/30/2013', NULL), (501, 501, 'S/N 196065', 'Tinius Olsen Super L-GB2 Universal Testing Machine (E-4)', 'Range: 200 lbs to 90K ', '2013-04-23', 501, '4/23/2013', NULL), (502, 502, 'S/N 9047', 'Soiltest CT-6200-2 Digital Compression Machine w/ADR Plus Dig. ', 'Range: 4K to 450K (E-4)', '2012-05-01', 502, '5/1/2012', NULL), (503, 503, 'S/N 9304-GB2-', 'ELE CT-6200A Digital Compression Machine (E-4)', 'Range: 4K to 450K', '2013-09-04', 503, '9/4/2013', NULL), (504, 504, 'S/N 0184959', 'Eilon Engineering RON 3050-1K Load Cell (ManSp & 0.1% FS)', 'Range: 1K', '2011-04-27', 504, '4/27/2011', NULL), (505, 505, 'S/N Unknown', 'Marsh Pressure Gauge ( D-5720)', 'Range: 600 PSI', '2011-04-08', 505, '4/8/2011', NULL), (506, 506, 'S/N 5061251', 'Eilon Engineering RON 2500 Load Cell (ManSpec & 0.1%FS)', 'Range: 100K', '2011-04-01', 506, '4/1/2011', NULL), (507, 507, 'S/N 0507892', 'Eilon Engineering RON 3025 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 10K (ID# 138381)', '2011-04-11', 507, '4/11/2011', NULL), (508, 508, 'S/N 012564597/2', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSpec & 0.1%FS)', 'Range: 125 Ton ', '2011-04-01', 508, '4/1/2011', NULL), (509, 509, 'S/N Unknown', 'Forney FT-40 Compression Machine (E-4) ', 'Range: 250K', '2011-04-28', 509, '4/28/2011', NULL), (510, 510, 'S/N 091001', 'Testmark CM-2500-CLXI Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K (Moved)', '2011-05-05', 510, '5/5/2011', NULL), (511, 511, 'S/N 03059', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 25K to 250K ', '2011-04-28', 511, '4/28/2011', NULL), (512, 512, 'S/N 052610090', 'HBM Mdl P3MB Pressure Transducer w/Spider8 ADU (D-5720)', 'Range: 10K psi (OOS)', '2010-09-30', 512, '9/30/2010', NULL), (513, 513, 'S/N 08041', 'Forney FX-400/LA270-TP Digital Compression Machine w 2 Frames ', 'Range: Comp: 400K / Beam: 30K (E-4)', '2009-05-08', 513, '5/8/2009', NULL), (514, 514, 'S/N 0836X70', 'Lo-Tes Model 103670 Digital Plastic Pipe Tester (E-4 & C497)', 'Range: 200 to 10,000 lbs (DESTROYED)', '2006-10-05', 514, '10/5/2006', NULL), (515, 515, 'S/N TW5926', 'SPX Mdl. SJ201DA Post Tension Jack w/ Gauge #224 (E-4 & PCI)', 'Range: 35K ', '2013-05-09', 515, '5/9/2013', NULL), (516, 516, 'S/N 1885-1-6305', 'ELE 1885PL00441885 Direct Shear Machine (E-4)', ' ', '2013-05-07', 516, '5/7/2013', NULL), (517, 517, 'S/N TW6444', 'Crowder Post Tension Jack w/ Gauge #850 (E-4 & PCI)', 'Range: 47K', '2013-05-09', 517, '5/9/2013', NULL), (518, 518, 'S/N TW5927', 'SPX Post Tension Jack w/ Jack & Accessories Mdl. 2007-078 ', 'Range: 35K w/ Gauge #2 (E-4 & PCI) ', '2013-05-09', 518, '5/9/2013', NULL), (519, 519, 'S/N 10076', 'Forney LA-270-B-DR500 Digital Compression Machine (E-4)', 'Range: 1K to 30K ', '2013-05-06', 519, '5/6/2013', NULL), (520, 520, 'S/N TW4921', 'Jacks & Accessories 2001-061 Post Tension Jack w/ Gauge #225 ', 'Range: 35K (E-4 & PCI)', '2013-05-09', 520, '5/9/2013', NULL), (521, 521, 'S/N 10052', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-06-08', 521, '6/8/2011', NULL), (522, 522, 'S/N 2016609-2W2', 'Mettler Toledo, Inc. PS60 Scale (E-898)', 'Range: 150 lbs', '2012-05-14', 522, '5/14/2012', NULL), (523, 523, 'S/N 04118', 'Forney LA-270F-PILOT Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K ', '2011-06-02', 523, '6/2/2011', NULL), (524, 524, 'S/N 06085', 'Forney F-30-EX-F-C PILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-04-30', 524, '4/30/2013', NULL), (525, 525, 'S/N 79065-02013', 'Forney LT-30-CS-100-2 Universal Testing Machine (E-4)', 'Range: 200 lbs to 60,000 lbs', '2013-05-21', 525, '5/21/2013', NULL), (526, 526, 'S/N ', 'Tinius Olsen Mark 3 Smart C Mdl. L Digital', 'Range: 400K', NULL, 526, 'New', NULL), (527, 527, 'S/N R9686-071025', 'Reihle 100K-CS-100-2LP Digital Compression Machine (E-4)', 'Range: 500 lbs to 100K ID#335.20.23', '2013-05-22', 527, '5/22/2013', NULL), (528, 528, 'S/N 22306-110627-74', 'Testmark CM2500-CS-100-1BR Digital Comnpression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-07-13', 528, '7/13/2011', NULL), (529, 529, 'S/N 02012', 'Forney FX-250F-DR2001 Digital Compression Machine (E-4)', 'Range: 3,000 lbs to 300,000 lbs', '2012-05-23', 529, '5/23/2012', NULL), (530, 530, 'S/N 80156', 'Forney QC-400 Compression Machine (E-4)', 'Range: 400K', '2013-05-28', 530, '5/28/2013', NULL), (531, 531, 'S/N VT-1470', 'Soiltest Model AP-1015 Versa Tester (E-4 & 2% Man Specs)', 'Range: 60K', '2013-05-29', 531, '5/29/2013', NULL), (532, 532, 'S/N 11086-691', 'Carver Model M Press (E-4 & 2% ManSpecs)', 'Range: 10K', '2013-05-29', 532, '5/29/2013', NULL), (533, 533, 'S/N 100613', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-06-02', 533, '6/2/2011', NULL), (534, 534, 'S/N 85138-060829', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-05-16', 534, '5/16/2011', NULL), (535, 535, 'S/N 03097168/18', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 50K', '2012-06-01', 535, '6/1/2012', NULL), (536, 536, 'S/N 0318006', 'Eilon Engineering RON 3025 S-3 Load Cell (ManSpec&0.1%FS) ', 'Range: 6K ', '2011-05-27', 536, '5/27/2011', NULL), (537, 537, 'S/N 08097', 'Forney F-25X-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-07-25', 537, '7/25/2011', NULL), (538, 538, 'S/N 61235-1', 'Tinius Olsen Super L Universal Testing Machine w/ Admet Digital ', 'Range: 600 lbs to 60K (E-4)', '2011-09-12', 538, '9/12/2011', NULL), (539, 539, 'S/N 96041', 'Forney F250F-02 Compression Machine (E-4)', 'Range: 30K / 250K ', '2011-06-09', 539, '6/9/2011', NULL), (540, 540, 'S/N 84070573', 'Controls C25/S Compression Machine (E-4)', 'Range: 250K ', '2013-04-17', 540, '4/17/2013', NULL), (541, 541, 'S/N 378BY051', 'Acculab V1-10Kg Scale (E-898)', 'Range: 10,000 Grams', '2013-06-04', 541, '6/4/2013', NULL), (542, 542, 'S/N 05234', 'Forney F-30 EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-06-04', 542, '6/4/2013', NULL), (543, 543, 'S/N 14705H', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-06-11', 543, '6/11/2013', NULL), (544, 544, 'S/N 70065-110803', 'Forney QC-200-CS-100-GB2 Digital Compression Machine (E-4)', 'Range: 3K to 400K ', '2013-06-11', 544, '6/11/2013', NULL), (545, 545, 'S/N 87138', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-06-12', 545, '6/12/2013', NULL), (546, 546, 'S/N 11086', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-06-21', 546, '6/21/2011', NULL), (547, 547, 'S/N NC#23', 'HCS Hydraulic Load Cell (E-4 2% & ManSpecs)', 'Range: 50K', '2013-06-20', 547, '6/20/2013', NULL), (548, 548, 'S/N 209609', 'Transducer Techniques SWO-5K Load Cell (E-4)', 'Range: 500 lbs to 5K ', '2013-06-19', 548, '6/19/2013', NULL), (549, 549, 'S/N 10053', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-06-30', 549, '6/30/2011', NULL), (550, 550, 'S/N 08082', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-08-20', 550, '8/20/2013', NULL), (551, 551, 'S/N 89036', 'Forney QC-410-GB Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-05-07', 551, '5/7/2013', NULL), (552, 552, '', 'Simplex Jacking System w/ Gauge S/N 123456789 & 9 Rams', 'Range: 10K to 100K (E-4 & Man Specs)', '2011-06-29', 552, '6/29/2011', NULL), (553, 553, 'S/N 89037 ', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K ', '2013-03-06', 553, '3/6/2013', NULL), (554, 554, 'S/N Unknown', 'Forney QC-125 Compression Machine (E-4)', 'Range: 250K (125 Ton)', '2013-06-25', 554, '6/25/2013', NULL), (555, 555, 'S/N 001', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI ', '2011-04-28', 555, '4/28/2011', NULL), (556, 556, 'S/N 01243503', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSpec & 0.1%FS)', 'Range: 20K ', NULL, 556, 'New', NULL), (557, 557, 'S/N 166489', 'Transducer Techniques CLP-3K Load Pin (Man Specs)', 'Range: 3K ', '2011-06-20', 557, '6/20/2011', NULL), (558, 558, 'S/N 003767', 'Hilti Pull Tester Model 59604/02/97 (New York ) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2012-10-30', 558, '10/30/2012', NULL), (559, 559, 'S/N', 'Forney QC-50 Compression Machine (E-4)', 'Range: 400K', NULL, 559, 'New', NULL), (560, 560, 'S/N 05007724/4', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp&0.1%FS)', 'Range: 50,000 Kg (50 Metric Tons)', '2011-06-22', 560, '6/22/2011', NULL), (561, 561, 'S/N 10028B', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-04-28', 561, '4/28/2010', NULL), (562, 562, 'S/N 11402', 'Testmark CM2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-16', 562, '4/16/2013', NULL), (563, 563, 'S/N 13195', 'Skidmore-Wilhelm Mdl. M Bolt Tester (E-4) ', 'Range: 110K', '2012-07-09', 563, '7/9/2012', NULL), (564, 564, 'S/N 07196', 'Forney F-30EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K (ID# 023306)', '2013-07-09', 564, '7/9/2013', NULL), (565, 565, 'S/N 31406', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-05-15', 565, '5/15/2013', NULL), (566, 566, 'S/N 9612', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2013-06-11', 566, '6/11/2013', NULL), (567, 567, 'S/N 19807', 'Test Mark CM-2500-DI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-05-06', 567, '5/6/2013', NULL), (568, 568, 'S/N 17398', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-07-23', 568, '7/23/2013', NULL), (569, 569, 'S/N 11096', 'Forney F-25EX-B-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-07-23', 569, '7/23/2013', NULL), (570, 570, 'S/N R57012-0606023', 'Riehle R-400-CS-100-1BR Digital Compression Machine (E-4)', 'Range:400K', '2013-07-30', 570, '7/30/2013', NULL), (571, 571, 'S/N 3057', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-07-30', 571, '7/30/2013', NULL), (572, 572, 'S/N 76053-00102', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-07-30', 572, '7/30/2013', NULL), (573, 573, 'S/N 1071-052203', 'Brainard-Kilman CM-100-CS-100-1S Digital Compression Machine', 'Range: 3K to 250K (E-4)', '2013-07-30', 573, '7/30/2013', NULL), (574, 574, 'S/N R-16680-1', 'Riehle Mdl. 505 Universal Testing Machine (E-4)', 'Range: 12K / 60K', '2012-08-01', 574, '8/1/2012', NULL), (575, 575, 'S/N 80140-050707', 'Forney QC-400-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-07-30', 575, '7/30/2013', NULL), (576, 576, 'S/N 87074', 'Forney LT-806-12 Digital Compression Machine w/ IMS Digital ', 'Range: 6K to 600K (E-4)', '2013-07-29', 576, '7/29/2013', NULL), (577, 577, 'S/N 90008', 'Forney QC-400F-2 Compression Machine (E-4)', 'Range: 30K / 400K ', '2013-07-29', 577, '7/29/2013', NULL), (578, 578, 'S/N 90068', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-07-31', 578, '7/31/2013', NULL), (579, 579, 'S/N 0801/030G', 'Dynafor Lifting Link (ManSpecs & 0.1 %FS)', 'Range: 25 Ton', '2013-05-09', 579, '5/9/2013', NULL), (580, 580, 'S/N 93001-10051', 'Lane Model LT-CS-100-1S Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-05-22', 580, '5/22/2013', NULL), (581, 581, 'S/N 08889', 'CSI CS-100-10 Aircraft Weighing System (E-4)', '', '0000-00-00', 581, '', NULL), (582, 582, 'S/N 03018293/14', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1%FS)', 'Range: 50K ', '2011-07-18', 582, '7/18/2011', NULL), (583, 583, 'S/N 0315374', 'Eilon Engineering RON 3025 S-2.5 Load Cell (ManSp & 0.1% FS)', 'Range: 5K ', NULL, 583, 'New', NULL), (584, 584, 'S/N 03130', 'Forney F-30-EX-DR2001 Digital Compression Machine (SOLD)', '', '0000-00-00', 584, '', NULL), (585, 585, 'S/N 87827', 'Enerpac Beam Breaker (E-4 & Man. Specs.)', 'Range: 10K', '2009-03-26', 585, '3/26/2009', NULL), (586, 586, 'S/N 71181', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-08-08', 586, '8/8/2013', NULL), (587, 587, 'S/N83888/PDC-1006211', 'Tinus Olsen Super L Precise Universal Testing Machine (E-4)', 'Range: 600 lbs to 60K Channel #0', '2013-08-13', 587, '8/13/2013', NULL), (588, 588, 'S/N 04078', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-13', 588, '8/13/2013', NULL), (589, 589, 'S/N 95034', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2012-08-21', 589, '8/21/2012', NULL), (590, 590, 'S/N 0217640/10', 'Eilion Engineering RON 2501S-2 Load Cell (ManSpecs 0.1%FS)', 'Range: 400 lbs to 4K', '2013-06-21', 590, '6/21/2013', NULL), (591, 591, 'S/N 1005', 'Soiltest CT-710-02 Compression Machine (E-4)', 'Range: 30K / 250K ', '2013-10-02', 591, '10/2/2013', NULL), (592, 592, 'S/N 98065', 'Forney F-502-P DFM/1 Digital Compression Machine (E-4)', 'Range: 2.5K to 500K', '2013-08-26', 592, '8/26/2013', NULL), (593, 593, 'S/N 9533', 'ELE Accu-test 250 Digital Compression Machine Cylinder Frame(E-4)', 'Range: 2.5K to 250K Channel 1', '2010-10-25', 593, '10/25/2010', NULL), (594, 594, 'S/N 87049', 'Forney FT-21 Compression Machine (E-4 & 2%)', 'Range: 250K', '2012-08-29', 594, '8/29/2012', NULL), (595, 595, 'S/N 03095599/5', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSpec & 0.1%FS)', 'Range: 60K ', '2012-08-22', 595, '8/22/2012', NULL), (596, 596, 'S/N 0127525016', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', NULL, 596, 'New', NULL), (597, 597, 'S/N 05007736/9', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', '2011-08-30', 597, '8/30/2011', NULL), (598, 598, 'S/N 29909048', 'Com-Ten Industries SSB2000 Load Cell (E-4)', 'Range: 2K', '2012-07-25', 598, '7/25/2012', NULL), (599, 599, 'S/N 03191', 'Forney F-50EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-09-05', 599, '9/5/2013', NULL), (600, 600, 'S/N 66166-01001', 'Forney LT-700-CS100-2A Compression Machine (E-4)', 'Range: 3K to 400K', '2013-08-05', 600, '8/5/2013', NULL), (601, 601, 'S/N 05147', 'Forney FX-500F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-09-04', 601, '9/4/2013', NULL), (602, 602, 'S/N 08158', 'Forney F-30EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-09-24', 602, '9/24/2013', NULL), (603, 603, 'S/N BJ397903', 'Ohaus Scout SC2020 Scale (E-898)', 'Range: 200 grams', '2013-09-05', 603, '9/5/2013', NULL), (604, 604, 'S/N 21700G', 'Gilson MC-300 Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-09-04', 604, '9/4/2013', NULL), (605, 605, 'S/N R2711 (ID# 005740)', 'Instron 3369 Testing Machine w/ 3 T & C Load Cells (E-4)', '', '2013-09-04', 605, '9/4/2013', NULL), (606, 606, 'S/N 92002', 'Wegener Ultitest Mdl. 500 Tensiometer (E-4) ', 'Range: 500 lbs', '2011-10-17', 606, '10/17/2011', NULL), (607, 607, 'S/N 01064 ', 'Forney F-25F-F96 Dig.Comp. Machine(E-4) (ID# 000123 & E-034)', 'Range: 500 lbs to 90,000 lbs', '2013-10-08', 607, '10/8/2013', NULL), (608, 608, 'S/N 261499 ', '(OOS)Interface1Load Cell w/ TEDS Digital S/N 1000399805 (E-4) ', 'Range: 500 lbs', '2010-06-01', 608, '6/1/2010', NULL), (609, 609, 'S/N 04070', 'Forney F-30EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-09-09', 609, '9/9/2013', NULL), (610, 610, 'S/N 13698', 'Testmark CM4000 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-09-11', 610, '9/11/2013', NULL), (611, 611, 'S/N 81065', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2013-09-09', 611, '9/9/2013', NULL), (612, 612, 'S/N 66137 ', 'Forney LT-702-2 Compression Machine (E-4)', 'Range: 60K / 400K', '2013-09-09', 612, '9/9/2013', NULL), (613, 613, 'S/N 95128-0909182-F', 'Forney F-500F-CS-100-2B Digital Compression Machine (E-4) ', 'Range: 3K to 500K ', '2013-06-13', 613, '6/13/2013', NULL), (614, 614, 'S/N 11578 (ID# 2148)', 'Instron Mdl. 1125C-MTEST Tension Load Cell (E-4) ', 'Range:200 lbs to 12,000 lbs(Channel LC1)', '2013-09-24', 614, '9/24/2013', NULL), (615, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 615, 'New', NULL), (616, 616, 'S/N 02017393/3', 'Eilon Engineering RON 2000 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 30K', NULL, 616, 'New', NULL), (617, 617, 'S/N 72150-00113', 'Forney QC-50-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2013-10-09', 617, '10/9/2013', NULL), (618, 618, 'S/N 081209', 'Testmark CM-3000-SD Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-10-09', 618, '10/9/2013', NULL), (619, 619, 'S/N 11152 ', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-10-09', 619, '10/9/2012', NULL), (620, 620, 'S/N 70059', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-04-23', 620, '4/23/2013', NULL), (621, 621, 'S/N 65151', 'Forney QC-200-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2012-10-16', 621, '10/16/2012', NULL), (622, 622, 'S/N 68028-01102', 'Forney QC-400-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2012-10-22', 622, '10/22/2012', NULL), (623, 623, 'S/N 130620', 'Testmark CM-2500-I720 Dig. Compression Machine w/ cyl. Platen', 'Range: 2.5K to 250 K (E-4)', '2013-09-30', 623, '9/30/2013', NULL), (624, 624, 'S/N 70046', 'Forney QC-150-DR Compression Machine (E-4) (SOLD)', 'Range: 30K / 300K', '2013-04-08', 624, '4/8/2013', NULL), (625, 625, 'S/N 91065', 'Forney FT-250M-01 Compression Machine (E-4)', 'Range: 250K', '2012-10-30', 625, '10/30/2012', NULL), (626, 626, 'S/N 05194', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-10-29', 626, '10/29/2012', NULL), (627, 627, 'S/N 73033-000108', 'Forney QC-50-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2012-10-30', 627, '10/30/2012', NULL), (628, 628, 'S/N 8818-053106', 'ELE Soiltest CT-6200A-CS-100-2A Digital Compression Machine ', 'Range: 3K to 450K (E-4)', '2010-12-13', 628, '12/13/2010', NULL), (629, 629, 'S/N 2002032', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons', NULL, 629, 'New', NULL), (630, 630, 'S/N 1003306', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSpec & 0.1%FS)', 'Range: 10 Ton', NULL, 630, 'New', NULL), (631, 631, 'S/N 1219', 'Skidmore Wilhelm Bolt Tester Model M (E-4 & 2%)', 'Range: 80K', '2011-10-04', 631, '10/4/2011', NULL), (632, 632, 'S/N 23804', 'Testmark CM-0100-DIR Digital Compression Machine (E-4)', 'Range: 1K to 100K ', '2008-11-10', 632, '11/10/2008', NULL), (633, 633, 'S/N 2188-01116', 'Soiltest CT-710-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-05-16', 633, '5/16/2013', NULL), (634, 634, 'S/N 05141', 'Forney F-25EX-DR500Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-30', 634, '4/30/2013', NULL), (635, 635, 'S/N 11153', 'Forney F-325EX-B-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K ', '2012-11-06', 635, '11/6/2012', NULL), (636, 636, 'S/N 68188-090617', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250K ', '2012-11-12', 636, '11/12/2012', NULL), (637, 637, 'S/N 2192', 'GeoJac Load Frame (E-4)', '', '0000-00-00', 637, '', NULL), (638, 638, 'S/N 2195', 'GeoJac Load Frame (E-4)', '', '0000-00-00', 638, '', NULL), (639, 639, 'S/N PS-2972', 'GeoJac Pressure Transducer (D-5720)', 'Range: 200 psi', '2012-11-13', 639, '11/13/2012', NULL), (640, 640, 'S/N 46663-02 ', 'Lorimer 242E10000 Chart Recorder (D-5720 & 2%)', 'Range: 10,000 psi ', '2013-06-27', 640, '6/27/2013', NULL), (641, 641, 'S/N 0034158 ID # 6239', 'Load Cell Central Truss Test System (E-4)', 'Range: 5K / 5K / 10K', '0000-00-00', 641, '', NULL), (642, 642, 'S/N 03074', 'Forney F-30EX-E-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-11-26', 642, '11/26/2012', NULL), (643, 643, 'S/N 84103-090709 ', 'Forney QC-400-CS-100-2B Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2012-11-28', 643, '11/28/2012', NULL), (644, 644, 'S/N 1594 ', 'Soiltest CT-710-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-12-20', 644, '12/20/2011', NULL), (645, 645, 'S/N D27299 ', 'Dillon Mdl. AP Dynamometer (E-4)', 'Range: 20K ', '2012-11-20', 645, '11/20/2012', NULL), (646, 646, 'S/N 012596176', 'Eilon Engineering RON 2000 S-125 Load Cell (ManSp & 0.1& FS)', 'Range: 250K ', '2013-10-07', 646, '10/7/2013', NULL), (647, 647, 'S/N 1003306', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSpec & 0.1%FS)', 'Range: 10 Ton', NULL, 647, 'New', NULL), (648, 648, 'S/N 13 / NC #13', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K ', '2011-11-14', 648, '11/14/2011', NULL), (649, 649, 'S/N 0318015', 'Eilon Engineering RON 3025 S-2.5 Load Cell (Man Spec & 0.1%FS)', 'Range: 5K ', NULL, 649, 'New', NULL), (650, 650, 'S/N 0385748', 'Eilon Engineering RON 2000 S-3 Load Cell (Man Spec & 0.1%FS)', 'Range: 6K ', '2011-12-05', 650, '12/5/2011', NULL), (651, 651, 'S/N 85046', 'Forney 5500RLT1000 Universal Testing Machine (E-4)', 'Range: ', NULL, 651, 'New', NULL), (652, 652, 'S/N 06115', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-12-06', 652, '12/6/2011', NULL), (653, 653, 'S/N 300LXQ6035', 'Inston Satec 300LXQ6035 T & C Machine (E-4)', 'Range: ', NULL, 653, 'New', NULL), (654, 654, 'S/N 64129', 'Forney LT-702-2 Compression Machine (E4)', 'Range: 60K / 400K', '2012-12-18', 654, '12/18/2012', NULL), (655, 655, '2 @ $7.00', '8\" O\'Ring', '', '0000-00-00', 655, '', NULL), (656, 656, 'S/N 03285148/6', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSpec& 0.1%FS)', 'Range: 50K ', NULL, 656, 'New', NULL), (657, 657, 'S/N 143735-03100', 'TO Super L CS-100-7 Universal Testing Machine (E-4)', 'Range: 400 lbs to 60K', '2010-09-07', 657, '9/7/2010', NULL), (658, 658, 'S/N 101102H', 'Testmark CM-0300-iD Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K ', '2011-12-06', 658, '12/6/2011', NULL), (659, 659, 'S/N 383136', 'Novotechnik LVDT with Digital (D-6027)', 'Range: 0.8 inches (OOS)', '2010-05-25', 659, '5/25/2010', NULL), (660, 660, 'S/N 2089', 'MTS Sintech 5/G Model 27-00077 T & C Load Cell S/N 84694 (E-4)', 'Range: 50 lbs to 5,000 lbs ', '2013-01-14', 660, '1/14/2013', NULL), (661, 661, 'S/N SL-SM-001', 'Humboldt HM-2700 Direct Shear (E-4)', '', '0000-00-00', 661, '', NULL), (662, 662, 'S/N 14901H', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-10', 662, '1/10/2013', NULL), (663, 663, 'S/N 090901', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-02-07', 663, '2/7/2012', NULL), (664, 664, 'S/N 111103', 'Testmark CM-4000-iD Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-01-07', 664, '1/7/2013', NULL), (665, 665, 'S/N QT7-061196-020', 'Q-Test VII Universal Testing Machine (E-4)', 'Range:', NULL, 665, 'New', NULL), (666, 666, 'S/N 63199', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K', '2013-01-07', 666, '1/7/2013', NULL), (667, 667, 'S/N 75210', 'Forney FT-50-2 Compression Machine (E-4)', 'Range: 30K/250K', '2013-01-14', 667, '1/14/2013', NULL), (668, 668, 'S/N 10404', 'Testmark CM-2500-Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K', '2013-01-15', 668, '1/15/2013', NULL), (669, 669, 'S/N 00137 (ID#BP274)', 'Forney LT-1000-MTS SERVO w/MTEST Universal Testing Machine ', 'Range: 4K to 600K LC#1 (E-4)', '2013-01-15', 669, '1/15/2013', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (670, 670, 'S/N 08220', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2013-07-08', 670, '7/8/2013', NULL), (671, 671, 'S/N 12003', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-15', 671, '1/15/2013', NULL), (672, 672, 'S/N 5826-0506164', 'Forney QC-225-CS-100-2A Digital Compression Machnie (E-4)', 'Range: 4K to 400K ', '2013-01-16', 672, '1/16/2013', NULL), (673, 673, 'S/N 70095', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K ', '2013-01-22', 673, '1/22/2013', NULL), (674, 674, 'S/N15-FDC-0508311-DA', 'Soiltest CT-2500-CS-100-7 Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2012-01-23', 674, '1/23/2012', NULL), (675, 675, 'S/N 9931', 'Soiltest Accutech 36-650/02 Digital Compression Machine (E-4)', 'Range: 2K to 250K (ID# 00-068)', '2012-02-06', 675, '2/6/2012', NULL), (676, 676, 'S/N 07133', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-01-30', 676, '1/30/2012', NULL), (677, 677, 'S/N 06242 ', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-01-29', 677, '1/29/2013', NULL), (678, 678, 'S/N 08094240', 'Eilon Engineering RON 2000 S-80 Load Cell (ManSpec & 0.1% FS)', 'Range: 160K ', NULL, 678, 'New', NULL), (679, 679, '', '', '', '0000-00-00', 679, '', NULL), (680, 680, 'S/N 03205150/10', 'Eilon Engineering RON 2501 S-25 Load Cell (Man Spec & 0.1% FS)', 'Range: 50K (25 Ton)', '2013-05-23', 680, '5/23/2013', NULL), (681, 681, 'S/N 0002', 'VSL Bond Tester (Moved) (Chicago) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2006-06-05', 681, '6/5/2006', NULL), (682, 682, 'S/N 79833 / NC#2', 'HCS Model HCS-LC-2502 Hydraulic Load Cell (E-4)', 'Range: 50K', '2009-09-29', 682, '9/29/2009', NULL), (683, 683, 'S/N 050404/1', 'Eilon Engineering RON 2501 S-100 Load Cell (Man Spec & 0.1%FS)', 'Range: 200K ', NULL, 683, 'New', NULL), (684, 684, 'S/N 072469214', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 200 lbs ', NULL, 684, 'New', NULL), (685, 685, 'S/N 11512 (PR-100)', 'ELE Unconfined Single Proving Ring (E-4 & Man Specs) ', 'Range: 10K ', '2013-03-14', 685, '3/14/2013', NULL), (686, 686, 'S/N 11090772', 'Apollo Valves Pressure System', '', '0000-00-00', 686, '', NULL), (687, 687, 'S/N 381773', 'Eilon Engineering RON 2000 S-3 Load Cell (ManSpec & 0.1%FS)', 'Range: 6K ', '2012-01-06', 687, '1/6/2012', NULL), (688, 688, 'S/N 512569/2569', 'Eilon Engineering RON 2000 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 10K ', NULL, 688, 'New', NULL), (689, 689, 'S/N 3747', 'Hilti Pull Tester Model (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-08-22', 689, '8/22/2013', NULL), (690, 690, 'S/N 004477', 'Hilti Pull Tester Model 59604/02/01 (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2006-02-03', 690, '2/3/2006', NULL), (691, 691, 'S/N 03273857/5', 'Eilon Engineering RON 2501 (Man Specs & 0.1% FS)', 'Range: 50 K', '2013-04-26', 691, '4/26/2013', NULL), (692, 692, 'S/N 0518501/6', 'Eilon RON-2501 S-05 (ManSpecs & 0.1 % FS Load)', 'Range: 5 Ton', '2013-06-03', 692, '6/3/2013', NULL), (693, 693, 'S/N 090406', 'Testmark CM-3000-SD Digital Compression Machine (E-4)', ' ', '2013-03-26', 693, '3/26/2013', NULL), (694, 694, 'S/N J7242', 'ELE Soiltest Tri Flex 2 Master Control 25-0696/02 (D-5720)', 'Range: 150 psi', '2013-02-06', 694, '2/6/2013', NULL), (695, 695, 'S/N 988-1', 'Geotest S2213A Direct Shear (E-4)', '', '0000-00-00', 695, '', NULL), (696, 696, 'S/N 12055', 'Forney F-325EX-B-DR500 Digital Compression Machine', 'Range :325 K', '2013-02-04', 696, '2/4/2013', NULL), (697, 697, 'S/N 90030', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2012-02-07', 697, '2/7/2012', NULL), (698, 698, 'S/N 18606', 'Testmark CM-500B-SD Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-02-13', 698, '2/13/2013', NULL), (699, 699, 'S/N 87068', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-02-13', 699, '2/13/2013', NULL), (700, 700, 'S/N 59120', 'Forney QC-125 Compression Machine (E-4 2% ManSpecs)', 'Range: 250K', '2013-07-11', 700, '7/11/2013', NULL), (701, 701, 'S/N 300CT-1024', 'Baldwin Warner Swazy 300CT Compression Machine (E-4)', 'Range: 12K / 60K / 300K', '2013-02-19', 701, '2/19/2013', NULL), (702, 702, 'S/N 76015', 'Forney FT-40 Compression Machine (E-4) ', 'Range: 250K', '2013-02-19', 702, '2/19/2013', NULL), (703, 703, 'S/N PT-5-32-998', 'Open Joist 2000D1-980501-HE Testing Press (E-4 & Man Specs) ', 'Range: 250 psi (800 lbs)', '2013-02-18', 703, '2/18/2013', NULL), (704, 704, 'S/N 03096', 'Forney F-30-EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-02-19', 704, '2/19/2013', NULL), (705, 705, 'S/N 01275542', 'Eilon Engineering RON 2150 S-12.5 Load Cell (ManSpec & 0.1%FS)', 'Range: 25K', '2012-02-24', 705, '2/24/2012', NULL), (706, 706, 'S/N DRCIPT3 ', 'Enerpac Hand Jack w/ RCH202/P392 Ram S/N C1409K ', 'Range: 40K (8,500 PSI) (E-4 & 2%)', '2012-02-17', 706, '2/17/2012', NULL), (707, 707, '', '', '', '0000-00-00', 707, '', NULL), (708, 708, 'S/N 547', 'Rainhart Series 416 Beam Breaker (E4)', 'Range: 12,000 lbs', '2013-05-20', 708, '5/20/2013', NULL), (709, 709, 'S/N 12-391', 'Precision Sure-Lock Post Tension Jack (E-4 & PCI)', 'Range: 30 Tons (60K)', NULL, 709, 'New', NULL), (710, 710, 'S/N 79168', 'Forney FT-40 Block Tester (E-4)', 'Range: 250K', '2013-03-06', 710, '3/6/2013', NULL), (711, 711, 'S/N 68214R10', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-07', 711, '5/7/2013', NULL), (712, 712, 'S/N 95040', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K ', '2013-06-06', 712, '6/6/2013', NULL), (713, 713, 'S/N 04130', 'Forney F-30EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 3,000 lbs to 300,000 lbs', '2013-03-05', 713, '3/5/2013', NULL), (714, 714, 'S/N 90102246', 'Brainard Kilman C100 Digital Compression Machine (E-4)', 'Range: 20K to 250K ', '2013-03-05', 714, '3/5/2013', NULL), (715, 715, 'S/N 8580-112380', 'Instron Biaxial Inplane Machine (E-4)', '4 - 100K Load Cells Cal\'d to 50K T & C', '2012-03-12', 715, '3/12/2012', NULL), (716, 716, 'S/N 8580-112380', 'Instron Biaxial Inplane (E-4)', '', '2012-03-13', 716, '3/13/2012', NULL), (717, 717, 'S/N 044-1958', 'Balwin Tate Emery 60 BTE Universal Testing Machine (E-4)', 'Range: 240 lbs to 60K (ID#LABN2)', '2013-03-13', 717, '3/13/2013', NULL), (718, 718, 'S/N 11184', 'Forney F-325EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K', '2013-02-28', 718, '2/28/2013', NULL), (719, 719, 'S/N 91110028', 'Com-Ten 95TS5K w/ CTC 7095 Contr (E-4 & 2% ManSpecs)', '', '2013-04-01', 719, '4/1/2013', NULL), (720, 720, 'S/N 6638-0610162', 'Soiltest CT-7250-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250 K', '2013-03-26', 720, '3/26/2013', NULL), (721, 721, 'S/N 100407', 'Testmark CM-3000-ID Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-03-25', 721, '3/25/2013', NULL), (722, 722, 'S/N 12051', 'Forney F-25EX-B-TPILOT Digital Compression Machine (E-4)', 'Range: 2,500 to 250,000 lbs ', '2013-03-25', 722, '3/25/2013', NULL), (723, 723, 'S/N 89068', 'Forney FT-40-PIR Digital Compression Machine (E-4)', 'Range: 25K-250K', '2012-03-26', 723, '3/26/2012', NULL), (724, 724, 'S/N 01275514', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', '2012-03-08', 724, '3/8/2012', NULL), (725, 725, 'S/N 0554438', 'Eilon Engineering RON 2000 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 10K ', '2013-02-28', 725, '2/28/2013', NULL), (726, 726, 'S/N C0795C', 'Enerpac RCH302 Tension Jack 30 Ton', 'ID # 09060059', '2012-03-30', 726, '3/30/2012', NULL), (727, 727, 'S/N 122598', 'Humbolt model H-2975 Schmidit Hammer', '', '2012-03-29', 727, '3/29/2012', NULL), (728, 728, 'S/N 14501194', 'Druck Mdl. DPI 145 Multifunction Pressure Indicator (D-5720)', 'Range: 150 PSIA (Ascending Only)', '2013-07-15', 728, '7/15/2013', NULL), (729, 729, 'S/N 12051', 'Forney F-25EX-B-TPILOT Compression Testing Machine', 'Range: 2,500 to 250,000 lbs', '0000-00-00', 729, '', NULL), (730, 730, 'S/N: 40883-5-EP2-', 'Tinius Olsen Model L UTM w/Admet EP2 Digital', 'Range: 600 to 60,000 lbs (E-4)', '2012-03-27', 730, '3/27/2012', NULL), (731, 731, 'S/N 1421-1-10001-', 'ELE 2000-450K-CS-100-2 Digital Compression Machine (E-4)', 'Range 3K to 450K', '2013-04-04', 731, '4/4/2013', NULL), (732, 732, 'S/N 10600', 'Testmark CM-4000-LXI Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-10-08', 732, '10/8/2013', NULL), (733, 733, 'S/N 81145', 'Forney FT-40-F96 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K', '2013-04-08', 733, '4/8/2013', NULL), (734, 734, 'S/N C5349', 'Instron 5500R Digital Tension & Compression Machine (E-4)', '', '2013-09-30', 734, '9/30/2013', NULL), (735, 735, 'S/N 01079', 'Forney F-25F-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-08', 735, '4/8/2013', NULL), (736, 736, 'S/N 82887', 'Bynam Prestress Jack (E-4 & PCI 2% & ManSpecs)', 'Range: 3K / 35K', '2013-04-11', 736, '4/11/2013', NULL), (737, 737, 'S/N 96039-01114', 'Forney F-502F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 500K', '2013-04-09', 737, '4/9/2013', NULL), (738, 738, 'S/N 12105', 'Testmark mdl CM-2500-DB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-04-12', 738, '4/12/2012', NULL), (739, 739, 'S/N 74127', 'Forney FT-40 Compression Machine (E-4)', 'Range 250K (MTC# 001000)', '2012-04-12', 739, '4/12/2012', NULL), (740, 740, 'S/N 02-103', 'Hercules Mdl. HSJ Prestress Jack (E-4 & PCI & 2%)', 'Range: 5K / 50K', '2008-04-17', 740, '4/17/2008', NULL), (741, 741, 'S/N 07020', 'Forney F 250F-EX-CPILOT Digital Compression Machine', 'Range: 2.5 K to 250 K', '2013-09-05', 741, '9/5/2013', NULL), (742, 742, 'S/N 070628', 'Test Mark CM-3000-DI Digital Compression Machine (E-4)', 'Range : 3,000 lbs to 300,000 lbs', '2013-04-15', 742, '4/15/2013', NULL), (743, 743, 'S/N TEN001', 'Detroit Model NST CS-100-2 Digital Universal Machine (E-4)', 'Range: 20 lbs to 3K', '2013-04-24', 743, '4/24/2013', NULL), (744, 744, 'S/N 16701G-110406-49', 'Gilson MC250DB-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-15', 744, '5/15/2013', NULL), (745, 745, 'S/N 16287', 'Skidmore Wilhelm MS Bolt Tester (E-4)', 'Range: 9K to 90K', '2012-07-13', 745, '7/13/2012', NULL), (746, 746, 'S/N 6039', 'Forney QC-125-DIR Digital Compression Machine (E-4)', 'Rane: 2.5 K to 250K', '2013-04-11', 746, '4/11/2013', NULL), (747, 747, 'S/N 120311', 'Testmark CM-2500-DIR 250K Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2012-04-23', 747, '4/23/2012', NULL), (748, 748, 'S/N 37738', 'Mark-10 MG10 Gauge (E-4) (Done in Tension & Compression)', 'Range: 10 lbs', '2013-05-22', 748, '5/22/2013', NULL), (749, 749, 'S/N 6304, ID #523', 'Instron Model 1125C w/ MTEST Windows (E-04)', 'Range 20K Load Cell T & C S/N: 42611', '2013-04-22', 749, '4/22/2013', NULL), (750, 750, 'S/N 05042', 'Forney F-30-EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-05-01', 750, '5/1/2013', NULL), (751, 751, 'S/N 113184/OS-0203281 ', 'Tinius Olsen Super L Universal Testing Machine w / Servo MTEST ', 'Range: 600 lbs to 60K ', '2013-05-02', 751, '5/2/2013', NULL), (752, 752, 'S/N 130602', 'TestmarkCM-3000-I720 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-08-08', 752, '8/8/2013', NULL), (753, 753, 'S/N 50152-1', 'Tinius Olsen Electromatic UTM (E-4)', 'Ranges: 0.6K/12K/24K/60K', '2013-08-01', 753, '8/1/2013', NULL), (754, 754, 'S/N 016660', 'Keller Leo 2 Digital Manometer (D5720)', 'Range:1700 KPA', '2012-05-01', 754, '5/1/2012', NULL), (755, 755, 'S/N 364309', 'Omega LLCA Load Cell w/ Digital DP-41-V (E-4)', 'Range: 10 KIP w/ Data Aquisition System', '2013-04-30', 755, '4/30/2013', NULL), (756, 756, 'S/N 120312', 'Testmark CM-2500-iD Digital Compression Machine (E-4)', 'Range: 2.5 to 250K', '2013-05-02', 756, '5/2/2013', NULL), (757, 757, 'S/N 9901', ' ELE Accutek CT-7500-ADR Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2012-04-19', 757, '4/19/2012', NULL), (758, 758, 'S/N 01208152', 'Eilon Engineering Ron 2125 S-10', 'Range : 2K to 20K', '2012-04-24', 758, '4/24/2012', NULL), (759, 759, 'S/N 1124', 'Schmidt NA-2 Hammer (C-805)', 'Range: 78 to 82 ', '2013-07-19', 759, '7/19/2013', NULL), (760, 760, 'S/N AE82622', 'Adam GFK 330aH Scale (moved) (E-898)', 'Range: 330 lbs ', '2011-12-12', 760, '12/12/2011', NULL), (761, 761, 'S/N 85076-94007', 'Forney QC-410-D100 Comp. Machine w/ Digital Retrofit 94007 ', 'Range 400K (OUT OF SERVICE)', '2004-05-04', 761, '5/4/2004', NULL), (762, 762, 'S/N 11402', 'Testmark CM-2500-LD Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-04-16', 762, '4/16/2012', NULL), (763, 763, 'S/N 71048', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-04-19', 763, '4/19/2012', NULL), (764, 764, 'S/N 10194', 'Testmark CM-2500-01 Compression Machine (E-4)', 'Range: 250K', '2013-05-07', 764, '5/7/2013', NULL), (765, 765, 'S/N 77106-95005', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Rice Lake)', '2013-04-04', 765, '4/4/2013', NULL), (766, 766, 'S/N 89057', 'Forney QC-400C-F96 Digital Compression Machine (E-4)', 'Range 4K to 400K', '2013-07-16', 766, '7/16/2013', NULL), (767, 767, 'S/N 90009050', 'Com-Ten Mdl. 935KFB0050 Digital Test System (E-4)', ' ', '0000-00-00', 767, '', NULL), (768, 768, 'S/N R-4000', 'Instron Model 4206 Testing Machine (E-4)', 'Range: 30K Tension', '2012-11-28', 768, '11/28/2012', NULL), (769, 769, 'R-4000', 'Instron Model 4206 with Digital & Recorder (E-4)', 'Range:10 lbs/20 lbs/50 lbs/ 100 lbs', '0000-00-00', 769, '', NULL), (770, 770, 'S/N 12028', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-26', 770, '6/26/2013', NULL), (771, 771, 'S/N 07046', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-03-27', 771, '3/27/2013', NULL), (772, 772, 'S/N 11393', 'Testmark CM-2500-1G Compression Machine (E-4)', 'Range: 250K ', '2013-05-14', 772, '5/14/2013', NULL), (773, 773, 'S/N 72175', 'Forney FT -40 Compression Machine (E-4)', 'Range: 250K', '2013-05-07', 773, '5/7/2013', NULL), (774, 774, 'S/N 85022', 'Forney QC-0410-D Digital Compression Machine w/DR retrofit(E-4)', 'Range: 400 K', '2012-08-20', 774, '8/20/2012', NULL), (775, 775, 'S/N 65209/R08', 'Forney FT-40-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-07', 775, '5/7/2013', NULL), (776, 776, 'S/N 08291', 'Forney FX-250F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-08-20', 776, '8/20/2012', NULL), (777, 777, 'S/N R-3999', 'Instron XL Extensometer (E-2309)', 'Range: 0% to 50 % (1.25mm -12.5mm)', '2012-11-28', 777, '11/28/2012', NULL), (778, 778, 'S/N C-455', 'Instron Model 1011 Testing Machine (E-4)', 'Range:100 lb load cell Tension with recorder', '0000-00-00', 778, '', NULL), (779, 779, 'S/N C-455', 'Instron Model 1011 Testing Machine (E-4)', 'Range:100 lb load cell Tension with recorder', '0000-00-00', 779, '', NULL), (780, 780, 'S/N 2455-0807092', 'Soiltest CT-710-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-14', 780, '5/14/2013', NULL), (781, 781, 'S/N 12496', 'Testmark CM-2500LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-13', 781, '5/13/2013', NULL), (782, 782, 'S/N 29105', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K (1Year Schedule)', '2012-05-15', 782, '5/15/2012', NULL), (783, 783, 'S/N 66232', 'Forney LT-700-2 Digital Compression Machine (E-4)', 'Range: 3,5000 lbs to 350,000 lbs', '2013-06-25', 783, '6/25/2013', NULL), (784, 784, 'S/N 05207', 'Forney F-40EX-F-GB2 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-05-22', 784, '5/22/2013', NULL), (785, 785, 'S/N 05007728/13', 'Eilon Engineering Ron 2501 ', 'Range: 100,000 lbs', '2012-05-03', 785, '5/3/2012', NULL), (786, 786, 'S/N 8S', 'OTC Ram PTJ', 'Range : 30 Ton', '2012-05-21', 786, '5/21/2012', NULL), (787, 787, 'S/N 140170053', 'CSI Model 920i Aircraft Weighing System (E-4)', '', '2013-05-16', 787, '5/16/2013', NULL), (788, 788, 'S/N 01275552', 'Eilon Engineering RON 2501 S-12.5 Dynamometer ', 'Range: 25K (ManSp & 0.1% FS)', '2012-05-03', 788, '5/3/2012', NULL), (789, 789, 'S/N 6638-0610162', 'Soiltest CT-7250-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-05-28', 789, '5/28/2009', NULL), (790, 790, 'S/N 66232', 'Forney LT-700-2 Digital Compression Machine (E-4)', 'Range: 3,500 lbs to 350,000 lbs', '2003-09-17', 790, '9/17/2003', NULL), (791, 791, 'S/N 211723/612490', 'Humboldt HM-3000-3F Master Loader w/Load Cell (E-4)', 'Range: 100 lbs to 10K', '2013-06-04', 791, '6/4/2013', NULL), (792, 792, 'S/N 162400067', 'Ricelake Mdl 920i-2A multiple load system w/3 load cells', 'Range: 50K / 50K / 50K', '2012-06-22', 792, '6/22/2012', NULL), (793, 793, 'S/N 92050', 'Forney FT-250F-GB Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K ', '2012-06-04', 793, '6/4/2012', NULL), (794, 794, 'S/N 59106 ', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2012-06-11', 794, '6/11/2012', NULL), (795, 795, 'S/N 08156', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-06-04', 795, '6/4/2013', NULL), (796, 796, 'S/N 55109', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 796, '6/4/2013', NULL), (797, 797, 'S/N 674', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-06-06', 797, '6/6/2013', NULL), (798, 798, 'S/N 126 w/GB-0809032', 'OTC Postension Ram w/GB (E-4 & PCI & 2%)', 'Range: 10,000 lbs to 160,000 lbs', '2012-06-15', 798, '6/15/2012', NULL), (799, 799, 'S/N 95129-02018', 'Forney F-400F-CS-100-2A Digital Compression Machine (E-4) ', 'Range: 3K to 500K ', '2013-06-10', 799, '6/10/2013', NULL), (800, 800, 'S/N 88058', 'Forney FT-40-CPilot Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2013-06-11', 800, '6/11/2013', NULL), (801, 801, 'S/N 96057', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-06-20', 801, '6/20/2012', NULL), (802, 802, 'S/N 70104-02010', 'Forney QC-200-CS-100-3 Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2013-06-18', 802, '6/18/2013', NULL), (803, 803, 'S/N 83100', 'Forney FT-40-DR Compression Machine (E-4)', 'Range : 250k (High Range only)', '2013-04-15', 803, '4/15/2013', NULL), (804, 804, 'S/N 120411', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K', '2013-06-27', 804, '6/27/2013', NULL), (805, 805, 'S/N 01040', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2012-06-26', 805, '6/26/2012', NULL), (806, 806, 'S/N 004431', 'Hilti Pull Tester Model 59604/02/00 (E-4 & 2% ManSpecs)', 'Range: 300 lbs to 3,000 lbs', '2013-02-26', 806, '2/26/2013', NULL), (807, 807, 'S/N 1324-08250', 'Detroit ST-CS-100-1S Universal Testing Machine (E-4)', 'Range: 200 lbs to 10K ', '2012-09-12', 807, '9/12/2012', NULL), (808, 808, 'S/N 12101', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2,000 lbs to 250,000 lbs', '2013-07-10', 808, '7/10/2013', NULL), (809, 809, 'S/N 11503H', 'Testmark CM-0100-DIR Digital Compression Machine (E-4)', 'Range: 1,000 lbs to 100,000 lbs', '2013-07-10', 809, '7/10/2013', NULL), (810, 810, 'S/N 6413-9306', 'Soiltest CT-755B Compression Machine (E-4)', 'Range: 250K ', '2012-07-10', 810, '7/10/2012', NULL), (811, 811, 'S/N Unknown', 'ELE EL77-011 Point Loader (E-4 & 2% ManSpecs)', 'Range: 1.3K / 13K', '2013-07-08', 811, '7/8/2013', NULL), (812, 812, 'S/N 73J1213', 'Triner 303 Scale (E-898)', 'Range: 140 lbs', '2013-05-02', 812, '5/2/2013', NULL), (813, 813, 'S/N 94010', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K ', '2013-09-10', 813, '9/10/2013', NULL), (814, 814, 'S/N Q5796', 'Instron 3385H Testing Machine (ID# MVMTC 2) (E-4)', '', '2013-07-23', 814, '7/23/2013', NULL), (815, 815, 'S/N 04034', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-07-22', 815, '7/22/2013', NULL), (816, 816, 'S/N 100804 ', 'Testmark CM-0030-ID Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K (Channel #1)', '2013-06-25', 816, '6/25/2013', NULL), (817, 817, 'S/N 24106', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (OOS)', '2012-07-24', 817, '7/24/2012', NULL), (818, 818, 'S/N 13700', 'Testmark CM 2500 LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-23', 818, '5/23/2013', NULL), (819, 819, 'S/N 120711', 'Test MarkCM-2500-DIR Digital Compression Machine (E-4) ', 'Range: 2,500 lbs to 250,000 lbs', '2012-07-31', 819, '7/31/2012', NULL), (820, 820, 'S/N 98031', 'Forney F-250E-DR2000 Digital Compression Testing Machine (E-4)', 'Range: 2.5k to 250,000k', '2013-07-16', 820, '7/16/2013', NULL), (821, 821, 'S/N 03130', 'Forney F-30-EX-E-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-08-13', 821, '8/13/2012', NULL), (822, 822, 'S/N 9720', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2013-07-22', 822, '7/22/2013', NULL), (823, 823, 'S/N J627678', 'Load Cell Central Model XTS4-2K Digital Load cell (E-4)', 'Range: 2000 lbs', '2012-07-19', 823, '7/19/2012', NULL), (824, 824, 'S/N 05086881/10', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSpecs%0.1%FS)', 'Range: 50 Ton (ID# 815-29-06-080)', NULL, 824, 'New', NULL), (825, 825, '', '', '', '0000-00-00', 825, '', NULL), (826, 826, 'S/N 4528579/5052', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 826, '8/27/2013', NULL), (827, 827, 'S/N 0597304-23', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2013-04-05', 827, '4/5/2013', NULL), (828, 828, 'S/N 0507100/11', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2012-07-19', 828, '7/19/2012', NULL), (829, 829, 'S/N 0596704/20', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1% FS)', 'Range : 5 ton', '2013-04-19', 829, '4/19/2013', NULL), (830, 830, 'S/N 163796', 'Proceq Schmidt Hammer (C-805)', 'Range: 78 to 82', '2012-07-25', 830, '7/25/2012', NULL), (831, 831, 'S/N 210146', 'Load Cell Central VWI Digital Load Cell (ID# FETLABS) (E-4) ', 'Range: 200K LC: S/N 1099094', '2010-01-15', 831, '1/15/2010', NULL), (832, 832, 'S/N 7201106-02014', 'Forney QC-400-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-08-06', 832, '8/6/2013', NULL), (833, 833, 'S/N 04205', 'Forney F-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-08-05', 833, '8/5/2013', NULL), (834, 834, 'S/N 91078', 'Forney QC-400-DR500 Digital Compression Machine (E-4)', 'Range:4K to 400K', '2013-08-06', 834, '8/6/2013', NULL), (835, 835, 'S/N 685737 ID# G1428', 'Geo Jack w/Load Frame ID #G1427 Load Cell MDL SSM-EHN-2000', 'Range: 20lbs to 2,000 lbs (E4)', '2013-09-23', 835, '9/23/2013', NULL), (836, 836, 'S/N LP-920 ID#1440', 'Geotac LVDT (D6027)', 'Range: 3 Inches Channel 2', '2012-08-14', 836, '8/14/2012', NULL), (837, 837, 'S/N 79002', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 300K ', '2013-08-19', 837, '8/19/2013', NULL), (838, 838, 'S/N 69018', 'Forney QC-50 Compression Machine (E-4)', 'Range: 400K', '2013-08-20', 838, '8/20/2013', NULL), (839, 839, 'S/N 10073', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-08-20', 839, '8/20/2013', NULL), (840, 840, 'S/N 01X01', 'Forney F-300F-DR2001 Digital Compression Machine (E-4)', 'Range: 3,000 lbs to 300,000 lbs', '2013-08-20', 840, '8/20/2013', NULL), (841, 841, 'S/N 01130 ', 'Forney F-50C w/ Adtek Digital Compression Machine (E-4)', 'Range: 4K to 500K ', '2013-04-24', 841, '4/24/2013', NULL), (842, 842, 'S/N 04150', 'Forney F-30-EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-08-28', 842, '8/28/2013', NULL), (843, 843, 'S/N 104', 'Enerpac Pressure Gauge (D-5720)', 'Range: 10K ', '2013-08-28', 843, '8/28/2013', NULL), (844, 844, 'S/N 72173-01103', 'Forney QC-200-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2012-10-16', 844, '10/16/2012', NULL), (845, 845, 'S/N 02200/ID#4562A', 'Forney FX-250F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-08-28', 845, '8/28/2013', NULL), (846, 846, 'S/N 67026', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2006-11-14', 846, '11/14/2006', NULL), (847, 847, 'S/N 121005', 'Testmark CM-2500-ID Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K', '2013-08-28', 847, '8/28/2013', NULL), (848, 848, 'S/N 82132', 'Forney FT-40 DR Compression Machine (E4)', 'Range: 30K', '2013-08-26', 848, '8/26/2013', NULL), (849, 849, 'S/N 04138-0708172', 'Forney LA-270-F-CS-100-2L Digital Compression Machine (E-4)', 'Range: 1K to 30K', '2013-08-26', 849, '8/26/2013', NULL), (850, 850, 'S/N 74115', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K (High range only)', '2013-09-04', 850, '9/4/2013', NULL), (851, 851, 'S/N 12093 (ID#0326652)', 'Forney F-25EX-B-TPILOT Digital Testing Machine (E-4) ', 'Range: 2,500 to 250,000 lbs', '2013-08-26', 851, '8/26/2013', NULL), (852, 852, 'S/N 205(ID# TS-06)', 'TMI Electronic Scales (E-898)', 'Range: 1,000 Grams', '2012-08-17', 852, '8/17/2012', NULL), (853, 853, 'S/N S12468-2', 'Enerpac Hydraulic Ram (E-4 PCI & ManSpecs)', '', '2013-09-26', 853, '9/26/2013', NULL), (854, 854, 'S/N 07AP', 'Powerteam Mdl. B RH-606 Hydraulic Ram (E-4 & Man Specs)', ' ', '2013-06-20', 854, '6/20/2013', NULL), (855, 855, 'S/N H090500543', 'BVA Mdl. HC6003T Hydraulic Ram w/ 3 Gauges(E-4 PCI & Man Specs )', '', '2012-08-09', 855, '8/9/2012', NULL), (856, 856, 'S/N 25-511', 'Starrett Dial Indicator (D-6027)', 'Range: 0.2\"', '2012-08-10', 856, '8/10/2012', NULL), (857, 857, 'S/N 03018278/18', 'Ron-2501 S-30 Dynamometer', 'Range: 30 ton', NULL, 857, 'New', NULL), (858, 858, 'S/N 75008', 'Forney QC-150-DR Compression Machine (E-4)', 'Range 30 K/300 K', '2012-08-07', 858, '8/7/2012', NULL), (859, 859, 'S/N 1010', 'Wykeham Farrance H4454 Proving Ring (E-4 & Man Specs)', 'Range: 1,000 lbs.', '2013-09-05', 859, '9/5/2013', NULL), (860, 860, 'S/N (ID#Y0020II)', 'Satec/Instron MII 50UD s (E-4)', '', '0000-00-00', 860, '', NULL), (861, 861, 'S/N 93511', 'Tinius Olsen Super L Compression Machine (E-4)', 'Range: 16K / 80K / 400K ', '2013-09-05', 861, '9/5/2013', NULL), (862, 862, 'S/N 06136', 'Forney F-30EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-09-11', 862, '9/11/2013', NULL), (863, 863, 'S/N 78274', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-09-12', 863, '9/12/2013', NULL), (864, 864, 'S/N 70113', 'Forney FT-40-DR500 Compression Machine (E-4)', 'Range: 2.5K / 250K', '2013-09-10', 864, '9/10/2013', NULL), (865, 865, 'S/N 1009 (ID# 0265628)', 'Satec 5500R-400-CTL-1009 Dig. Comp. Mach. w/ Partner Software', 'Range: 4K to 400K (E-4)', '2013-08-07', 865, '8/7/2013', NULL), (866, 866, 'S/N 12118', 'Forney F-325EX-B-T Pilot Digital Compression Machine (E-4)', 'Range: 3,000 lbs to 325,000 lbs', '2013-09-23', 866, '9/23/2013', NULL), (867, 867, 'S/N 72201', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2011-10-04', 867, '10/4/2011', NULL), (868, 868, 'S/N 81140', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K (MDOT # 89854)', '2013-10-01', 868, '10/1/2013', NULL), (869, 869, 'S/N 86097', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-10-01', 869, '10/1/2013', NULL), (870, 870, 'S/N 05004 ', 'Forney F-30 EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-04-09', 870, '4/9/2013', NULL), (871, 871, 'S/N 05004 Id #007088', 'Forney F-30EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-06-05', 871, '6/5/2012', NULL), (872, 872, 'S/N 70070', 'Forney FT-40-01 Compression Machine (E-4)', 'Range: 250K only', '2013-09-30', 872, '9/30/2013', NULL), (873, 873, 'S/N 79236', 'Forney LT-708-2 Compression Machine (E-4)', 'Range: 100K / 800K', '2013-10-01', 873, '10/1/2013', NULL), (874, 874, 'S/N 04211', 'Forney F-30EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-10-02', 874, '10/2/2013', NULL), (875, 875, 'S/N 9610', 'Soiltest CT-7251Compression Machine (E-4)', 'Range: 250K', '2013-10-01', 875, '10/1/2013', NULL), (876, 876, 'S/N 11117', 'Forney F-325EX-B-GB2 Digital Compression Machine (E-4)', 'Range: 3K to 325K ', '2013-10-01', 876, '10/1/2013', NULL), (877, 877, 'S/N 02113', 'Forney FX-250F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K Frame #2 CH 2', '2013-10-02', 877, '10/2/2013', NULL), (878, 878, 'S/N 10145', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-10-02', 878, '10/2/2012', NULL), (879, 879, 'S/N 475-1-FM', 'Dwyer 475 Mark III Digital Manometer (D-5720 & 2%)', 'Range: 20 inWc (10 PSI)', '2011-09-30', 879, '9/30/2011', NULL), (880, 880, 'S/N 01274340', 'Eilon Engineering RON 2150 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2013-08-07', 880, '8/7/2013', NULL), (881, 881, 'S/N 0527890', 'Eilon Engineering RON 3050 CW-05 (ManSpecs 0.1% FS)', 'Range: 1K to 10K', '2013-06-21', 881, '6/21/2013', NULL), (882, 882, 'S/N 0517961', 'Eilon Engineering Ron-3050 crane scale', 'Range: 5 ton', '2012-09-18', 882, '9/18/2012', NULL), (883, 883, 'S/N 89012-0901051', 'Forney QC-410-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 400K ', '2010-09-08', 883, '9/8/2010', NULL), (884, 884, 'S/N 92010', 'Forney F-250-F-01 Compression Machine (E-4) ', 'Range: 250K', '2012-10-16', 884, '10/16/2012', NULL), (885, 885, 'S/N 10031', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-10-17', 885, '10/17/2012', NULL), (886, 886, 'S/N 120602G', 'Gilson MC-300CP Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-10-16', 886, '10/16/2012', NULL), (887, 887, 'S/N 11181', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-10-16', 887, '10/16/2012', NULL), (888, 888, 'S/N 3474240', 'Mark 10 ESM301 Force Gauge (E-4)', 'Range: 0.2 lbs to 20 lbs ', '2012-01-30', 888, '1/30/2012', NULL), (889, 889, 'S/N 99090', 'Forney F-40F-F96 Digital Compression Machine (E-4)', 'Range: 3K to 400 K', '2013-07-17', 889, '7/17/2013', NULL), (890, 890, 'S/N 07207', 'Forney F-25E-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-11-25', 890, '11/25/2010', NULL), (891, 891, 'S/N ', 'Eilon Engineering RON 4000 S-1 Load Cell (ManSpec & 0.1%FS)', 'Range: 1 Ton ', NULL, 891, 'New', NULL), (892, 892, 'S/N 005341', 'Hilti Pull Tester Model (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2010-12-22', 892, '12/22/2010', NULL), (893, 893, 'S/N 012517575', 'Ron 2000 S-100 Dynamometer', 'Cap: 100 Metric Tons', '2012-10-11', 893, '10/11/2012', NULL), (894, 894, 'S/N 00038', 'Forney F-25E-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-01-23', 894, '1/23/2012', NULL), (895, 895, 'S/N 080216', 'Testmark CM-3000-LXI Digital Compression Machine (E-4)', 'Range: 3K to 300K High LC 0', '2012-11-07', 895, '11/7/2012', NULL), (896, 896, 'S/N 29203', 'Testmark CM-2500-DB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-11-14', 896, '11/14/2012', NULL), (897, 897, 'S/N 01138', 'Forney F-502F-TPilot Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-05-30', 897, '5/30/2013', NULL), (898, 898, 'S/N 14098', 'Testmark CM-5000MT Digital Compression Machine w/2 frames(E-4)', '', '2012-11-26', 898, '11/26/2012', NULL), (899, 899, 'S/N 1931', 'Soiltest-CT710-TestPilot Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2012-11-14', 899, '11/14/2012', NULL), (900, 900, 'S/N 90036R ', 'Forney QC-400-2 Compression Machine (E-4)', 'Range: 30K /400K ', '2013-07-08', 900, '7/8/2013', NULL), (901, 901, 'S/N 10902H', 'Testmark CM-2500-GB Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2012-11-19', 901, '11/19/2012', NULL), (902, 902, 'S/N 09025', 'Forney F-25EX-F-01 Compression Machine (E-4)', 'Range: 250K ', '2012-11-20', 902, '11/20/2012', NULL), (903, 903, 'S/N 9523', 'Soiltest CT-7251-ADR Touch Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-10-02', 903, '10/2/2013', NULL), (904, 904, '', 'Shear Trac II Direct Shear Machine (E-4)', '', '2010-10-06', 904, '10/6/2010', NULL), (905, 905, 'S/N 0704SBALD01012', 'Geo Comp Mdl. SBA-2-5KLB-I Load Cell Channel #1 ID# 68 2315 ', 'Range: 2.5K (E-4)', '2010-10-06', 905, '10/6/2010', NULL), (906, 906, 'S/N S100-8', 'DYWIDO Post Tension Jack (E-4 PCI & ManSpecs)', 'Range: 150 Ton', '2013-10-10', 906, '10/10/2013', NULL), (907, 907, 'S/N 60698', 'SPX Mdl. C Hydraulic Ram (E-4 & Man Specs )', 'Range: 60 Ton ', '2010-11-11', 907, '11/11/2010', NULL), (908, 908, 'S/N 0386216/5', 'Ron 2501 Model S-3', 'Range: 6,000 lbs', '0000-00-00', 908, '', NULL), (909, 909, 'S/N 08074253/4', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 160K', '2011-04-19', 909, '4/19/2011', NULL), (910, 910, 'S/N 87043-0603291', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-12-05', 910, '12/5/2012', NULL), (911, 911, 'S/N 12894', 'Testmark CM-2500-1G Compression Machine (E-4)', 'Range: 250K', '2012-01-15', 911, '1/15/2012', NULL), (912, 912, 'S/N 090307', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-12-10', 912, '12/10/2012', NULL), (913, 913, 'S/N 111211', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-12-11', 913, '12/11/2012', NULL), (914, 914, 'S/N 70052', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2012-12-11', 914, '12/11/2012', NULL), (915, 915, 'S/N 85136', 'Forney FT-0060-RL Digital Compression Machine w/Red Lion Dig.', 'Range: 7K to 90K (E-4)', '2012-01-03', 915, '1/3/2012', NULL), (916, 916, 'S/N 71018-99105', 'Forney LT-30-CS-100-2 Digital Compression Machine (E-4)', 'Range: 100 lbs to 60K', '2012-12-18', 916, '12/18/2012', NULL), (917, 917, 'S/N 88008', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-12-19', 917, '12/19/2012', NULL), (918, 918, 'S/N 92113', 'Forney QC-400F-02 Compression Machine (E-4)', 'Range: 30K / 400K', '2012-12-18', 918, '12/18/2012', NULL), (919, 919, 'S/N 69274-101130-71', 'Forney LT-900-GB2 Universal Testing Machine (E-4)', 'Range: 4K to 320K', '2012-12-19', 919, '12/19/2012', NULL), (920, 920, 'S/N 041907R', 'Detroit NST-40K-CS-100-7DA Universal Testing Machine (E-4) ', 'Range: 500 lbs to 40K ', '2013-07-23', 920, '7/23/2013', NULL), (921, 921, 'S/N 1117', ' BK CBR Frame w/ Speed Control (cal of 2 speed settings)', 'Range: 0.010\" Min/0.050\" Min(ManSpecs)', '2012-12-17', 921, '12/17/2012', NULL), (922, 922, 'S/N 001', 'Boart Longyear Dial Indicator (D-6027)', 'Range: 2 Inch', '2012-12-17', 922, '12/17/2012', NULL), (923, 923, 'S/N 00370', 'ELE Direct Shear Machine Model 26-2121/02 (E-4)', '', '0000-00-00', 923, '', NULL), (924, 924, 'S/N 0048', 'VSL Bond Pull Tester', 'Range: 3000 lbs', '0000-00-00', 924, '', NULL), (925, 925, 'S/N 01218776/3', 'Eilon Engineering RON 2501 S-10 Load Cell (Man Spec & 0.1% FS)', 'Range: 20K ', NULL, 925, 'New', NULL), (926, 926, 'S/N 0364945', 'Eilon Engineering RON 3025 S-3 Load Cell (ManSp & 0.1% FS)', 'Range: 6K ', '2012-09-10', 926, '9/10/2012', NULL), (927, 927, 'S/N 99137', 'Forney F25E-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2013-01-08', 927, '1/8/2013', NULL), (928, 928, 'S/N 16597', 'Testmark CM-2500-Pi Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-01-09', 928, '1/9/2013', NULL), (929, 929, 'S/N G1487', 'GCTS SCON-300 Testing System ', '', '2013-01-07', 929, '1/7/2013', NULL), (930, 930, 'S/N G1284', 'Geojac Consolidometer (E-4)', '', '0000-00-00', 930, '', NULL), (931, 931, 'S/N 1255', 'Geotac Sigma-1 Frame (ID # G1434) (E-2309)', '', '0000-00-00', 931, '', NULL), (932, 932, 'S/N G277', 'Wykeham Farrance Direct Shear (Model WF25210) (E-4)', 'Range: 40 lbs / 360 lbs', '2013-01-09', 932, '1/9/2013', NULL), (933, 933, 'S/N 2255', 'Geojac Consolidometer (E-4)', '(ID# G1424)', '0000-00-00', 933, '', NULL), (934, 934, 'S/N 00004', 'Forney F-50C-GB2 Digital Compression Machine (E-4)', 'Range: 2K to 500K ', '2013-01-17', 934, '1/17/2013', NULL), (935, 935, 'S/N 03177', 'Forney F-40EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-01-23', 935, '1/23/2013', NULL), (936, 936, 'S/N C-1', 'Ploog Dial Indicator (D-6027)', 'Range: 0.5\" ', '2013-01-24', 936, '1/24/2013', NULL), (937, 937, 'S/N 044-1253', 'Baldwin Tate Emery Digital Compression Machine w/MTESTW(E-4)', 'Range: 225 lbs to 60,000 lbs', '2013-01-22', 937, '1/22/2013', NULL), (938, 938, 'S/N 04134', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-31', 938, '1/31/2013', NULL), (939, 939, 'S/N 22902', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-01-28', 939, '1/28/2013', NULL), (940, 940, 'S/N 1500DXR8001', 'Instron Universal Testing Machine Model 1500DXR8001 (E-4)', 'Range: 1 K to 300 K (ID# LabN18)', '2013-01-29', 940, '1/29/2013', NULL), (941, 941, 'S/N 08074253/4', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 160K', '2011-04-19', 941, '4/19/2011', NULL), (942, 942, 'S/N 50380-02016', 'Baldwin 300-BTE-CS-100-7 Universal Testing Machine (E-4)', 'Range: 3k to 300k', '2013-08-26', 942, '8/26/2013', NULL), (943, 943, 'S/N 03018252', 'Eilon Engineering RON 2150-S30 (Man Specs 0.1% FS)', 'Range: 60,000 lbs.', '2013-03-07', 943, '3/7/2013', NULL), (944, 944, 'S/N 0306485/5 ', 'Eilon Engineering RON 2501 S-3 (ManSpecs 0.1 %FS)', 'Range: 600 lbs to 6K (ID# 815-29-06-090', '2013-05-06', 944, '5/6/2013', NULL), (945, 945, 'S/N 5043709/14', 'Eilon Engine Wireless Mdl. RON ', 'Range 40 Ton', NULL, 945, 'New', NULL), (946, 946, 'S/N 8907', 'Soilest D-500 Direct Shear Machine w/ Digital Readout (E-4)', '(OOS)', '2012-01-09', 946, '1/9/2012', NULL), (947, 947, 'S/N 448', 'Durham Geo Consolidation Machine Model S-450 (E-4 & Man Specs)', 'Range: 1/8 TSF to 22 TSF (SOLD)', '2008-03-04', 947, '3/4/2008', NULL), (948, 948, 'S/N 33918-28', 'Wykeham Farrance Consolidometer Mdl. 24001 (Dead weights)', 'Range:', '0000-00-00', 948, '', NULL), (949, 949, 'S/N 1101018-01A', 'Test Resources P Series Mdl. 200P225-53 Tensile Tester (E-4)', 'Range: 1 lbs to 100 lbs (Tension Only)', '2013-02-28', 949, '2/28/2013', NULL), (950, 950, 'S/N 89055', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-02-25', 950, '2/25/2013', NULL), (951, 951, 'S/N 1 ', 'Soiltest Consolidation Machine Frame #1 (10:1 Ratio) (E-4)', 'Range: 760Kg', '2013-02-26', 951, '2/26/2013', NULL), (952, 952, 'S/N 70067-94001', 'Forney FT-40-CS-100 Digital Compression Machine w/ DP-41 Digital ', 'Range: 5K to 250K (E-4)', '2013-02-25', 952, '2/25/2013', NULL), (953, 953, 'S/N 07094', 'Forney F-25-EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-26', 953, '2/26/2013', NULL), (954, 954, 'S/N 08278', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-25', 954, '2/25/2013', NULL), (955, 955, 'S/N 64215', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-02-25', 955, '2/25/2013', NULL), (956, 956, 'S/N 68105-02005', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-25', 956, '2/25/2013', NULL), (957, 957, 'S/N 101723163', 'Humbolt digital dial indicator Model BG 2600-0-16 (D-6027)', 'Range: 0.6\"', '2013-02-25', 957, '2/25/2013', NULL), (958, 958, 'S/N 12997', 'Testmark CM-2500-DB Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2013-02-07', 958, '2/7/2013', NULL), (959, 959, 'S/N 13001', 'Forney F-25EX-B-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K', '2013-02-04', 959, '2/4/2013', NULL), (960, 960, 'S/N 080311', 'Testmark CM-2500-SD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-02-11', 960, '2/11/2013', NULL), (961, 961, 'S/N 95121', 'Forney F-500F-GB Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-02-14', 961, '2/14/2013', NULL), (962, 962, 'S/N 1', 'USG Pressure Gauge (D-5720 & 2%)', 'Range: 300 psi', '2013-07-30', 962, '7/30/2013', NULL), (963, 963, 'S/N 301 (ID# 0201)', 'BK Terraload S-450 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 32 TSF', '2013-07-30', 963, '7/30/2013', NULL), (964, 964, 'S/N 85198', 'Hercules Prestress Jack Model HSJ (E-4 & PCI)', 'Range 3 / 40K', '2013-02-11', 964, '2/11/2013', NULL), (965, 965, 'S/N 133150', 'EILON ENGINNEERING RON 3000 ', 'Range: 2,000 lbs', '2013-02-23', 965, '2/23/2013', NULL), (966, 966, 'S/N 01275983', 'Eilon RON 2000 (ManSpecs 0.2% FS)', 'Range: 20,000 lbs', '2013-02-21', 966, '2/21/2013', NULL), (967, 967, 'S/N 005166', 'Hilti Pull Tester Model 59604/03/06 (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-05-22', 967, '5/22/2013', NULL), (968, 968, 'S/N 5002388', 'Eilon Engineering RON 2000 S50 Load Cell (Man Specs 0.1% FS)', 'Range: 50 Ton', '2013-10-09', 968, '10/9/2013', NULL), (969, 969, 'S/N 51256', 'RON 2000 Eilon Engineering (Man Specs 0.1 % FS)', 'Range: 10K', '2013-02-14', 969, '2/14/2013', NULL), (970, 970, 'S/N 2071618', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp 0.1% FS)', 'Range: 20 Ton', '2013-04-01', 970, '4/1/2013', NULL), (971, 971, 'S/N 102', 'Soiltest LC3 Dial Indicator (moved) (D-6027)', 'Range: 0.2 inch ', '2010-04-13', 971, '4/13/2010', NULL), (972, 972, 'S/N 988-1', 'Geotest Direct Shear S2213A Pressure Gauge (Moved) (D-5720)', 'Range: 200 PSI (Vertical Force)', '2011-02-08', 972, '2/8/2011', NULL), (973, 973, 'S/N 170', ' Pine Instruments AFGC 125X Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-13', 973, '3/13/2013', NULL), (974, 974, 'S/N 171', 'Pine Instuments AFGC125X Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-12', 974, '3/12/2013', NULL), (975, 975, 'S/N 166', 'Pine Instruments AFGC 125X Gyratory Compactor & Calib. Kit', 'Range: (ASHT T344-12)', '2013-03-12', 975, '3/12/2013', NULL), (976, 976, 'S/N 5077', 'Pine Instruments AFGB1A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-18', 976, '3/18/2013', NULL), (977, 977, 'S/N 023', 'Pine Instruments AFGC125X Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-12', 977, '3/12/2013', NULL), (978, 978, 'S/N 5075', 'Pine Instuments AFGB1A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-11', 978, '3/11/2013', NULL), (979, 979, 'S/N 5076', 'Pine Instruments AFGB1A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-14', 979, '3/14/2013', NULL), (980, 980, 'S/N 5080', 'Pine Instruments AFGB1A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-13', 980, '3/13/2013', NULL), (981, 981, 'S/N 5081', 'Pine Instruments AFGB1A Gyratory Compactor (ASHT T312)', 'Range:', '2013-03-13', 981, '3/13/2013', NULL), (982, 982, 'S/N 472', 'Troxler 4140 Gyratory Compactor & Calib. Kit', 'Range:', '2013-02-20', 982, '2/20/2013', NULL), (983, 983, 'S/N 467', 'Troxler 4140 Gyratory Compactor', 'Range:', '2013-02-20', 983, '2/20/2013', NULL), (984, 984, 'S/N 473', 'Troxler 4140 Gyratory Compactor', 'Range:', '2013-02-21', 984, '2/21/2013', NULL), (985, 985, 'S/N 468', 'Troxler 4140 Gyratory Compactor', 'Range:', '2013-02-22', 985, '2/22/2013', NULL), (986, 986, 'S/N 469', 'Troxler 4140 Gyratory Compactor', 'Range:', '2013-02-21', 986, '2/21/2013', NULL), (987, 987, 'S/N 121108H', 'Humboldt Compression Machine CM-2500-ID (E-4)', 'Range: 250K', '2013-02-04', 987, '2/4/2013', NULL), (988, 988, 'S/N 0402A', 'Forney F-25-EX-EDR500 Digital Compression Machine (E-4)', 'Range: 25,000 lbs to 250,000 lbs', '2013-03-04', 988, '3/4/2013', NULL), (989, 989, 'S/N 05174', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-03-05', 989, '3/5/2013', NULL), (990, 990, 'S/N E42', 'Interlaken Test Frame Series 3300 (E-4) (Compression Only)', 'Range: 5.5 Kip/11 Kip/27.5 Kip/55 Kip', '2013-03-05', 990, '3/5/2013', NULL), (991, 991, 'S/N 91107', 'Forney FT-250M-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-11', 991, '3/11/2013', NULL), (992, 992, 'S/N 5581Q9671', 'Instron 5581 Tension Compression Testing Machine (E-4)', ' (ID# Instron 1)', '2013-03-13', 992, '3/13/2013', NULL), (993, 993, 'S/N A110940', 'Humboldt CBR HM2000 Master Loader w/Total comp load cell(E-4)', 'Range: 5K ', '2013-03-14', 993, '3/14/2013', NULL), (994, 994, 'S/N 98137', 'Forney F250F-DFM/1 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (VDOT# 003863)', '2013-03-14', 994, '3/14/2013', NULL), (995, 995, 'S/N 86070', 'Forney FT-60 Digital Compression Machine w/TMI DC16 ', 'Range: 2.5K to 250K (E-4)', '2013-03-12', 995, '3/12/2013', NULL), (996, 996, 'S/N 64138 ID#000366', 'Forney LT-900-TPilot Universal Testing Machine (E-4) ', 'Range: 4K to 400K', '2013-03-13', 996, '3/13/2013', NULL), (997, 997, 'S/N 05168', 'Forney F-25EX-F-TPILOT Dig.Comp. Mach. w/Controller III Dig.', 'Range: 2.5K to 250K (E-4)', '2013-07-15', 997, '7/15/2013', NULL), (998, 998, 'S/N 86071', 'Forney FT-60D-LC-1A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-13', 998, '3/13/2013', NULL), (999, 999, 'S/N 65256', 'Forney LT-701 Compression Machine (E-4)', 'Range: 300K', '2013-03-13', 999, '3/13/2013', NULL), (1000, 1000, 'S/N 02165', 'Forney F-25-EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-04-14', 1000, '4/14/2010', NULL), (1001, 1001, 'S/N 19903', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-04-04', 1001, '4/4/2011', NULL), (1002, 1002, 'S/N 35495', 'Baldwin 60 BTE-DC12 Universal Testing Machine (E-4)', 'Range: 0.6K / 6K / 60K (Gauge)', '2013-05-28', 1002, '5/28/2013', NULL), (1003, 1003, 'S/N 06087', 'Forney F-502F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2012-04-26', 1003, '4/26/2012', NULL), (1004, 1004, 'S/N 127', 'Geo Durham E-3ll LVDT w/E-400 Digital (D-6027)', 'Range: 0.7 Inches', '2013-04-01', 1004, '4/1/2013', NULL), (1005, 1005, 'S/N 07122', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2013-04-08', 1005, '4/8/2013', NULL), (1006, 1006, 'S/N 57112', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K', '2013-04-11', 1006, '4/11/2013', NULL), (1007, 1007, 'S/N 11004', 'Forney F-325EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K ', '2012-05-03', 1007, '5/3/2012', NULL), (1008, 1008, 'S/N 6058 (ID#2063)', 'Instron 1125C w/ MTEST T & C Digital Machine (E-4)', 'Range: 200 lbs to 20K (Tension)', '2013-06-03', 1008, '6/3/2013', NULL), (1009, 1009, 'S/N 160/PIXS-130121-3', 'Tinius Olsen SuperL w/Pixs Digital Universal Testing Machine(E-4)', 'Range: 600 lbs to 60,000 lbs (ID#100.132)', '2013-06-26', 1009, '6/26/2013', NULL), (1010, 1010, 'S/N 07205', 'Forney F-40EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2011-12-06', 1010, '12/6/2011', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (1011, 1011, 'S/N 3610403', 'Lane Tester CT-250-GB2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-10-01', 1011, '10/1/2012', NULL), (1012, 1012, 'S/N 78254-00114', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-07-09', 1012, '7/9/2013', NULL), (1013, 1013, '300CT-1044-209090', 'Satec 300CT-CS-100-2B Digital Compression Machine (E-4)', 'Range: 2K to 300K (ID#LABH1)', '2013-07-10', 1013, '7/10/2013', NULL), (1014, 1014, 'S/N Jack #4', 'Simms P-3000 Prestress Jack -Jack #4 (E-4 & PCI)', 'Range: 4K / 40K ', '2013-07-15', 1014, '7/15/2013', NULL), (1015, 1015, 'S/N 350102', 'OTC Post Tension Jack - Jack A (E-4 & PCI)', 'Range: 35K Gauge #1 ', '2013-01-15', 1015, '1/15/2013', NULL), (1016, 1016, 'S/N 22702G', 'Testmark Gilson MC250BD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (LD Style Digital)', '2013-07-30', 1016, '7/30/2013', NULL), (1017, 1017, 'S/N 10292 ID# XQC-004', 'Testmark CM-2500-D Digital Compression Machine (E-4)', 'Range: 1K to 100K', '2013-08-07', 1017, '8/7/2013', NULL), (1018, 1018, 'S/N 88144', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-08-07', 1018, '8/7/2013', NULL), (1019, 1019, 'S/N 86029', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-08-12', 1019, '8/12/2013', NULL), (1020, 1020, 'S/N 10-4-93', 'Hogentogler Single Proving Ring (E-4 & Man Specs)', 'Range:10,000 lbs', '2013-04-12', 1020, '4/12/2013', NULL), (1021, 1021, 'S/N 92095', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-02-19', 1021, '2/19/2013', NULL), (1022, 1022, 'S/N 26607', 'Testmark CM-2500-DI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-20', 1022, '8/20/2013', NULL), (1023, 1023, 'S/N 34210 (ID# 07-102)', 'Baldwin Southwark Emery Universal Testing Machine w/Precise ', 'Range: 200 lbs to 120 K (E-4)', '2013-02-05', 1023, '2/5/2013', NULL), (1024, 1024, 'S/N 10138', 'Forney F-325EX-B-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K', '2012-10-04', 1024, '10/4/2012', NULL), (1025, 1025, 'S/N 09135 ', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-10-02', 1025, '10/2/2013', NULL), (1026, 1026, 'S/N 17302', 'Testmark CM-4000-DS Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-10-01', 1026, '10/1/2013', NULL), (1027, 1027, 'S/N 08276', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-12-11', 1027, '12/11/2012', NULL), (1028, 1028, 'S/N 01075', 'Forney F600C-T-Pilot Digital Compression Machine (E-4)', 'Range: 6K to 600K', '2013-01-03', 1028, '1/3/2013', NULL), (1029, 1029, 'S/N 03083', 'Forney F-25EX-E-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-11-20', 1029, '11/20/2012', NULL), (1030, 1030, 'S/N 98083', 'Forney F-500 FN-DFM/1 Compression Machine (E-4)', 'Range: 500,000 lbs', '2013-01-03', 1030, '1/3/2013', NULL), (1031, 1031, 'S/N', 'Forney MN-TA Test Pilot Digital Compression Machine (E-4)', 'Range: ', NULL, 1031, 'New', NULL), (1032, 1032, 'S/N 74100', 'Forney FT-40 Compression Machine (OOS) (E-4)', 'Range: 250K', '2012-12-20', 1032, '12/20/2012', NULL), (1033, 1033, 'S/N 1261159(ID# 3661)', 'Eilon Engineering RON 2000 S-12.5 Load Cell (ManSp & 0.1% FS)', 'Range: 12.5 Ton ', '2012-12-21', 1033, '12/21/2012', NULL), (1034, 1034, 'S/N 5033722/1', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 40 Ton ', '2012-12-20', 1034, '12/20/2012', NULL), (1035, 1035, 'S/N 90104016', 'Com-Ten 955KRC0050 Digital Test System (E-4)', 'Range: 5K ', '2001-05-02', 1035, '5/2/2001', NULL), (1036, 1036, 'S/N 435840-18', 'Baldwin-Tate-Emery 300 BTE Universal Testing Machine (E-4)', 'Range: 200 lbs to 300K (ID#002733)', '2013-08-28', 1036, '8/28/2013', NULL), (1037, 1037, 'S/N 960288 ', 'Boart Longyear Direct Shear Machine PSI Gauge (D-5720)', 'Range: 150 PSI', '2013-04-01', 1037, '4/1/2013', NULL), (1038, 1038, 'S/N 233 ', 'Brainard Kilman Terra Load Consolidation (E-4 & Man Specs)', 'Range: 1,200 lbs (16 TSF)', '2013-04-01', 1038, '4/1/2013', NULL), (1039, 1039, 'S/N 239', 'Brainard-Kilman Terraload Consolidation Unit Console 1', 'Cap: 1200 lbs (16 TSF) (E-4& Man Specs)', '2013-04-01', 1039, '4/1/2013', NULL), (1040, 1040, 'S/N 97114', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-04-04', 1040, '4/4/2013', NULL), (1041, 1041, 'S/N 005961', 'Humboldt HM-3000 Master Loader (E-4)', ' ', '2013-04-02', 1041, '4/2/2013', NULL), (1042, 1042, 'S/N 86069', 'Forney FT-60-D-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (VDOT# 001231)', '2013-04-01', 1042, '4/1/2013', NULL), (1043, 1043, 'S/N 1017', 'Brainard Kilman CBR E-400 Load Frame Speed Control (E2658-11)', 'Range: 0.05 in/min ', '2013-04-01', 1043, '4/1/2013', NULL), (1044, 1044, 'S/N 06118(ID# 010681)', 'Forney F-25EX-F/LA270-TPILOT Digital Compression Machine ', 'Range: Comp: 250K / Beam: 30K (E-4) ', '2013-04-02', 1044, '4/2/2013', NULL), (1045, 1045, 'S/N 1180', 'HMA Lab Supplies Mdl. 9210 Digital Manometer (Man Specs & 2%)', 'Range: 800 mm Hg ', '2013-04-17', 1045, '4/17/2013', NULL), (1046, 1046, 'S/N 1107435', 'Humboldt mini Logger with 5 Kip Cell CC S/N :284', 'Range: 5000 lbf (Channel 4)', '2012-06-26', 1046, '6/26/2012', NULL), (1047, 1047, 'S/N 07027', 'Forney F-40EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-04-09', 1047, '4/9/2013', NULL), (1048, 1048, 'S/N 3228M2679', 'Soiltest Unconfined Single Proving Ring (E-4 & ManSpecs)', 'Range: 5K', '2013-04-10', 1048, '4/10/2013', NULL), (1049, 1049, 'S/N 11298G', 'Gilson MC 250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-10', 1049, '4/10/2013', NULL), (1050, 1050, 'S/N 5133', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-04-09', 1050, '4/9/2013', NULL), (1051, 1051, 'S/N 67147-060329', 'ForneyQC-150-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 300K', '2013-04-08', 1051, '4/8/2013', NULL), (1052, 1052, 'S/N 70046', 'Forney QC-150-DR Compression Machine (E-4) ', 'Range: 30K / 300K', '2013-10-01', 1052, '10/1/2013', NULL), (1053, 1053, 'S/N 79046', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-04-10', 1053, '4/10/2013', NULL), (1054, 1054, 'S/N 410025 (ID# 1944)', 'Humboldt HM2470A Conmatic IPC Frame (E-4)', ' ', '2013-04-11', 1054, '4/11/2013', NULL), (1055, 1055, '72185-EP2-120827-248', 'Forney LT-900-EP2 Universal Testing Machine (E-4)', 'Range: 4K to 400K (MTC# 001666)', '2013-04-10', 1055, '4/10/2013', NULL), (1056, 1056, 'S/N 61009', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K (MTC# 001898)', '2013-04-10', 1056, '4/10/2013', NULL), (1057, 1057, 'S/N 07110', 'Forney F25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-16', 1057, '4/16/2013', NULL), (1058, 1058, 'S/N 08018', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-15', 1058, '4/15/2013', NULL), (1059, 1059, 'S/N Q-586 (13A)', 'Ashcroft Pressure Gauge (OOS) (D-5720) ', 'Range: 600 psi.', '2001-11-14', 1059, '11/14/2001', NULL), (1060, 1060, 'S/N RJ103', 'McDaniel Controls Inc Dial Gauge (D-5720)', 'Range: 60 psi', '2013-04-22', 1060, '4/22/2013', NULL), (1061, 1061, 'S/N TEN010', 'Detroit NST-CS-100-2 Universal Testing Machine (E-4)', 'Range: 50 lbs to 3K LC: CH#0', '2013-04-25', 1061, '4/25/2013', NULL), (1062, 1062, 'S/N 503528', 'Eilon Engineering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 ton', '2006-04-19', 1062, '4/19/2006', NULL), (1063, 1063, 'S/N 520-E', 'McDaniel Controls Pressure Gauge (D-5720)', 'Range: 1,500 psi', '2006-10-13', 1063, '10/13/2006', NULL), (1064, 1064, 'S/N 965166', 'Boart Longyear Dial Indicator (D-6027)', 'Range: 2 inches', '2005-03-31', 1064, '3/31/2005', NULL), (1065, 1065, 'Front Valve Section', 'Control Valve for Concrete Cylinder Machine', '', '2005-05-01', 1065, '5/1/2005', NULL), (1066, 1066, '', 'Stauff Minitester PPC 04B Indicator', 'Range: 9,000 lbs', '2006-04-10', 1066, '4/10/2006', NULL), (1067, 1067, 'S/N 846', 'Boart Longyear E-124 Transducer-Ch2 (D-5720)', 'Cap: 150 psi', '2005-06-16', 1067, '6/16/2005', NULL), (1068, 1068, 'S/N 870605', 'Humboldt Single Proving Ring Mdl. H-4454 (E-4 & Man Specs)', 'Range: 11K', '2007-04-18', 1068, '4/18/2007', NULL), (1069, 1069, 'S/N 72020', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 30/250K', '1999-04-05', 1069, '4/5/1999', NULL), (1070, 1070, 'S/N 11094', 'Testmark CM 2500-61 Compression Machine (E-4)', 'Range: 250K', '2002-04-16', 1070, '4/16/2002', NULL), (1071, 1071, 'S/N 119-3-212', 'ELE Triaxial Tritest 50 Proving Ring (In-House)', 'Cap: 100#', '1996-04-03', 1071, '4/3/1996', NULL), (1072, 1072, 'S/N 15599/0209191', 'Testmark Compression Machine w/Forney Digital Readout (E-4)', 'Range: 250K', '2003-05-01', 1072, '5/1/2003', NULL), (1073, 1073, 'S/N 79164', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K (High Range Only)', '1998-04-14', 1073, '4/14/1998', NULL), (1074, 1074, 'S/N Unknown', 'Skidmore Equipment (In house)', 'Range 110K', '1997-04-14', 1074, '4/14/1997', NULL), (1075, 1075, 'S/N 159', 'Forney 1216-175 Compression Machine (E-4)', 'Range 75 Ton', '2002-04-24', 1075, '4/24/2002', NULL), (1076, 1076, 'S/N 444', 'Ametek Pull Tester (E-4)', 'Range: 50 lb.', '1998-04-28', 1076, '4/28/1998', NULL), (1077, 1077, 'S/N 14748', 'Chatillon Force Gauge DFI-Digital 200 T & C (E-4)', 'Range: 20 to 200 lb.', '1998-04-28', 1077, '4/28/1998', NULL), (1078, 1078, 'S/N 628', 'Ametek Force Gauge (E-4)', 'Range: 100 lb.', '1998-04-29', 1078, '4/29/1998', NULL), (1079, 1079, 'S/N 98142', 'Forney FT-250F-01 Compression Machine (NOT IN SERVICE) (E-4)', 'Range 250K', '1998-09-11', 1079, '9/11/1998', NULL), (1080, 1080, 'S/N 493412', 'United Calibration Corp. Speedy Tester Model LCH-20 ', 'Range 200 lbs. to 20,000 lbs. (E-4)', '2004-04-08', 1080, '4/8/2004', NULL), (1081, 1081, 'S/N 69004', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 250K', '2001-04-09', 1081, '4/9/2001', NULL), (1082, 1082, 'S/N 13700', 'Testmark CM-2500 LD Digital Compression Machine (E-4)', 'Range: 3K to 250K (Sold)', '2000-04-07', 1082, '4/7/2000', NULL), (1083, 1083, 'S/N 92103', 'Cal Tek Model CT-400K-D Digital Compression Machine', 'Range 400K (E-4)', '2000-05-01', 1083, '5/1/2000', NULL), (1084, 1084, 'S/N 72058', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1996-04-16', 1084, '4/16/1996', NULL), (1085, 1085, 'S/N 69034', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1995-04-21', 1085, '4/21/1995', NULL), (1086, 1086, 'S/N 11495', 'Testmark CM4000D (DC16) Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2004-10-27', 1086, '10/27/2004', NULL), (1087, 1087, 'S/N 9602', 'ELE CT-7500 Digital Compression Machine (E-4)', 'Range: 500 K', '2002-04-23', 1087, '4/23/2002', NULL), (1088, 1088, 'S/N 69261', 'Forney FT-31 Compression Machine (E-4)', 'Range: 250K', '2006-04-19', 1088, '4/19/2006', NULL), (1089, 1089, 'S/N 101', 'Brainard-Kilman CM-215 Digital Compression Machine', 'Range 2.5K to 25K/25K to 250K (E4-02)', '2004-04-06', 1089, '4/6/2004', NULL), (1090, 1090, 'S/N 64139', 'Forney PT 125 Pipe Tester (double ram) (E-4 & C-497)', 'Range 250K', '2001-04-25', 1090, '4/25/2001', NULL), (1091, 1091, 'S/N 68060', 'Forney FT-40-DR Compress Machine', 'Range 30/250K', '1996-04-17', 1091, '4/17/1996', NULL), (1092, 1092, 'S/N 821', 'Enerpac Post Tension Jack RCH (E-4 & PCI)', 'Range: 5K/150K (7200 PSI)', '1999-06-10', 1092, '6/10/1999', NULL), (1093, 1093, 'S/N 821', 'Enerpac Post Tension Jack RCH 302 with 1 Gauge (in house)', 'Range 10,000 psi', '1995-04-03', 1093, '4/3/1995', NULL), (1094, 1094, 'S/N 92019', 'Forney FT-250F-01 Compression Machine OUT OF SERVICE ', 'Range 250K', '1998-04-27', 1094, '4/27/1998', NULL), (1095, 1095, 'S/N 95023', 'Forney F-250F-01 Compression Machine (E-4)', 'Range 250K', '2004-05-12', 1095, '5/12/2004', NULL), (1096, 1096, 'S/N 01111', 'Lane Compression Machine -Model LT- CS100-2A (E-4)', 'Range: 3K TO 300K', '2001-10-23', 1096, '10/23/2001', NULL), (1097, 1097, '', 'Copeland M2FH-0017-SAA-106 Condensing Unit', '', '0000-00-00', 1097, '', NULL), (1098, 1098, 'S/N 99053', 'Forney F-250 Compression Machine (E-4)', '250K (NOT IN USE)', NULL, 1098, 'New', NULL), (1099, 1099, 'S/N 90104010', 'Com-Ten Digital Test System--Model 956MRD3000', 'Range: 100 lbs. (E-4)', '2001-05-03', 1099, '5/3/2001', NULL), (1100, 1100, 'S/N 72004', 'Forney QC-200-DR Compression Machine (E-4)', 'Range 400K', '2000-10-25', 1100, '10/25/2000', NULL), (1101, 1101, 'S/N 68251', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1996-04-15', 1101, '4/15/1996', NULL), (1102, 1102, 'S/N Ram P-392', 'Enerpac Jack RCH 202', 'Range 40,000 lbs. (8600 psi)', '1998-04-13', 1102, '4/13/1998', NULL), (1103, 1103, 'S/N H-4957M', 'Enerpac P-39 Post Tension Jack (E-4 & PCI)', 'Range: 40K', '2004-04-12', 1103, '4/12/2004', NULL), (1104, 1104, 'S/N 81073', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 250K', '1995-08-15', 1104, '8/15/1995', NULL), (1105, 1105, 'S/N 103', 'Brainard-Kilman C-100 Digital Compression Machine', 'Range 25/250K', '1997-04-08', 1105, '4/8/1997', NULL), (1106, 1106, 'S/N 89086', 'Forney QC-410-2D Compression Machine', 'Range 400K', '1997-04-28', 1106, '4/28/1997', NULL), (1107, 1107, 'S/N 90101001', 'Com-Ten-Model 952KV02002C w/ Load Cell PSB0020 ', 'Range: . 5 lbs. to 20 lbs. (E-4)', '2002-02-25', 1107, '2/25/2002', NULL), (1108, 1108, 'S/N 522', 'Hercules Prestress Jack Model HSJ-36', 'Range 35K', '1997-04-30', 1108, '4/30/1997', NULL), (1109, 1109, 'S/N 506', 'Pine Instrument Asphalt Tester PMTR with Test Spring #546', 'Range 2.5/5/10K (E-4)', '1999-04-08', 1109, '4/8/1999', NULL), (1110, 1110, 'S/N 87070', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2002-10-09', 1110, '10/9/2002', NULL), (1111, 1111, '', 'Repaired cylinder for CM440', '', '0000-00-00', 1111, '', NULL), (1112, 1112, 'S/N 117', 'Soiltest Compression Machine--Model-CT-850', 'Range: 400K', '2002-10-30', 1112, '10/30/2002', NULL), (1113, 1113, 'S/N ', 'Forney FT-25F-01', '', '0000-00-00', 1113, '', NULL), (1114, 1114, 'S/N 69014', 'Forney QC-50B Compression Machine (E-4))', 'Range 25K to 250K', '2002-05-21', 1114, '5/21/2002', NULL), (1115, 1115, '', 'conti...', '', '0000-00-00', 1115, '', NULL), (1116, 1116, 'S/N 80267', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 30K only', '1998-10-06', 1116, '10/6/1998', NULL), (1117, 1117, 'S/N 214', 'Pine Instrument Asphalt Tester Model 750 Test Spring S/N 461', 'Range 2.5/5/10K ', '1999-03-30', 1117, '3/30/1999', NULL), (1118, 1118, 'S/N 370', 'Soiltest Versa Tester AP-1000 (Not Done)', 'Range 6/30K', '1997-04-15', 1118, '4/15/1997', NULL), (1119, 1119, '', 'Reservoir Gasket ', '', '0000-00-00', 1119, '', NULL), (1120, 1120, 'S/N 96073', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2005-05-09', 1120, '5/9/2005', NULL), (1121, 1121, 'S/N 1,2,3', 'Fastar FS-2000 Extensometer Frame 875 w/ LVDT\'s 1,2,3 Averaging ', 'Range: 2 Inches (ISO 9513) ', '2007-05-07', 1121, '5/7/2007', NULL), (1122, 1122, 'S/N 3345-Q7175', 'Instron Mdl. 3345 Digital Compression Machine (E-4) ', 'Range: 10 lbs to 1,124 lbs', '2008-04-23', 1122, '4/23/2008', NULL), (1123, 1123, 'S/N 760', 'Soiltest CT-769 Compression Machine (E-4)', 'Range: 250K', '2013-05-06', 1123, '5/6/2013', NULL), (1124, 1124, 'S/N 9218', 'ELE Direct Shear Machine Model D-505A Shear & Verctical Force', 'Range: 15 to 1500lbs (E4-02)', '2005-04-21', 1124, '4/21/2005', NULL), (1125, 1125, 'S/N 832', 'Pine Instrument Asphalt Tester Model AF-850TX', 'Range 2.5/5/10K', '1999-03-29', 1125, '3/29/1999', NULL), (1126, 1126, 'S/N 06118', 'Forney F-25EX-F-TPILOT Digital Compression Machine(Moved)', 'Range: 2.5K / 250K', '2006-06-15', 1126, '6/15/2006', NULL), (1127, 1127, 'S/N 90029', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2006-04-07', 1127, '4/7/2006', NULL), (1128, 1128, 'S/N 86039-00117', 'Forney QC-410-CS-100-2 Compression Machine (E-4)', 'Range: 4K to 400K', '2005-04-19', 1128, '4/19/2005', NULL), (1129, 1129, 'S/N 14705H', 'Testmark CM-2500-DIR Digital Compression Machine (MOVED)', 'Range: 250K (E-4)', '2006-04-18', 1129, '4/18/2006', NULL), (1130, 1130, 'S/N 04050', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-04-16', 1130, '4/16/2008', NULL), (1131, 1131, 'S/N 74049', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2008-04-15', 1131, '4/15/2008', NULL), (1132, 1132, 'S/N 29656', 'Data Instruments Pressure Transducer-Model AB/HP (D-5720)', 'Cap: 0-100 psi (OOS)', '2003-04-30', 1132, '4/30/2003', NULL), (1133, 1133, 'S/N 11695', 'Testmark CM 2500 2G Compression Machine (OOS) (E-4)', 'Range: 250K', '2004-05-07', 1133, '5/7/2004', NULL), (1134, 1134, 'S/N 86121', 'Forney QC-200-DR Compression Machine (MOVED) (E-4)', 'Range: 30K / 400K', '2007-05-01', 1134, '5/1/2007', NULL), (1135, 1135, 'S/N 87040', 'Forney FT-40 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2005-05-17', 1135, '5/17/2005', NULL), (1136, 1136, 'S/N 674', 'Soiltest CT-710 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2008-04-07', 1136, '4/7/2008', NULL), (1137, 1137, 'S/N 08078', 'Forney F-30EX-F-DR500 Digital Compression Machine (E-4)', 'Range: ', NULL, 1137, 'New', NULL), (1138, 1138, 'S/N 233X60', ' LoTes Model LT-10 Digital Compression Machine (E-4)', 'Range: 200 lbs to 10K', '2008-04-22', 1138, '4/22/2008', NULL), (1139, 1139, 'S/N 9708', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2013-09-03', 1139, '9/3/2013', NULL), (1140, 1140, 'S/N 92002', 'Wegener Utilitest Model 500 Tensiometer (E-4)', 'Range: 500 lbs', '2010-04-06', 1140, '4/6/2010', NULL), (1141, 1141, 'S/N 06282 ', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K', '2008-04-14', 1141, '4/14/2008', NULL), (1142, 1142, 'S/N 050926', 'Satec 400CT-CS-100-2AG Digital Compression Machine (E-4)', 'Range: 400K', '2013-08-06', 1142, '8/6/2013', NULL), (1143, 1143, 'S/N 93040-0601221', 'Forney F-500F-CS-100-2A Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-08-05', 1143, '8/5/2013', NULL), (1144, 1144, 'S/N 400HVL-1037', 'Satec Mdl 400 HVL Universal Testing Machine w/ Mark III Dig. ', 'Range: 12K/40K/200K/400K (High) (E-4)', '2013-08-05', 1144, '8/5/2013', NULL), (1145, 1145, 'S/N 99111', 'Forney F-500-C-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-08-07', 1145, '8/7/2013', NULL), (1146, 1146, 'S/N 91005', 'Forney QC-400F-01 Comp. Machine with Block Platen (E-4)', 'Range: 400K', '2013-08-07', 1146, '8/7/2013', NULL), (1147, 1147, 'S/N 115670', 'Tinius Olsen Super L Compression Machine (E-4)', 'Range: 12K/60K/300K', '2013-08-06', 1147, '8/6/2013', NULL), (1148, 1148, 'S/N 67016-99109', 'Forney PT-75-CS-100-2 PKG Pipe Tester (E-4 & C-497 & 2%)', 'Range 2K to 60K : Beam Wt. 495 lbs', '2013-08-06', 1148, '8/6/2013', NULL), (1149, 1149, 'S/N 05018909/15', 'Eilion Engineering RON 2501-S50 (Man Specs 0.1 FS%)', 'Range: 50 Ton', '2013-09-12', 1149, '9/12/2013', NULL), (1150, 1150, 'S/N 50BE', 'CRC Model DP-41C UTM Tester with Omega Digital #100 (E-4) ', 'Range: 500 lbs to 50K ', '2013-08-12', 1150, '8/12/2013', NULL), (1151, 1151, 'S/N 5774', 'Forney QC-100-2 Compression Machine (E-4)', 'Range: 250K (High Range Only)', '2013-09-23', 1151, '9/23/2013', NULL), (1152, 1152, 'S/N 90126', 'Forney QC-400-F-02 Compression Machine (E-4)', 'Range: 30K / 400K', '2013-08-12', 1152, '8/12/2013', NULL), (1153, 1153, 'S/N 20304', 'Testmark CM-30K-SP Digital Compression Machine (E-4)', 'Range: 135,000 Newtons', '2012-08-15', 1153, '8/15/2012', NULL), (1154, 1154, 'S/N 3430', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-08-13', 1154, '8/13/2013', NULL), (1155, 1155, 'S/N 9715-02004', 'Soiltest CT-7251 CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-19', 1155, '8/19/2013', NULL), (1156, 1156, 'S/N 74173', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-08-19', 1156, '8/19/2013', NULL), (1157, 1157, 'S/N 97100-32062', 'ML CS-450-100-1S Digital Compression Machine (E-4)', 'Ranges: 3K to 450K', '2013-08-20', 1157, '8/20/2013', NULL), (1158, 1158, 'S/N 69025-02001', 'Forney LT-702-CS-100-3 Digital Compression Machine (E-4)', 'Range: 3.5K to 350K', '2013-08-21', 1158, '8/21/2013', NULL), (1159, 1159, 'S/N 7649', 'Brainard Kilman CBR S-610 Frame BK Load Cell (E-4)', 'Range: 200 lbs to 2K', '2013-08-21', 1159, '8/21/2013', NULL), (1160, 1160, 'S/N 90022', 'Forney FT-250-F-02 Compression Machine (E-4)', 'Range: 30K / 250K', '2013-08-20', 1160, '8/20/2013', NULL), (1161, 1161, 'S/N 9902', 'Soiltest CT-7500-ADR Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-08-20', 1161, '8/20/2013', NULL), (1162, 1162, 'S/N 27104', 'Testmark CM-2500-DB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-19', 1162, '8/19/2013', NULL), (1163, 1163, 'S/N 5061031', 'Eilon Engineering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Ton', '2006-09-17', 1163, '9/17/2006', NULL), (1164, 1164, 'S/N 2071306', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Ton', '2007-08-01', 1164, '8/1/2007', NULL), (1165, 1165, 'S/N 121288', 'Eilon Engineering RON 2000 S-08 Load Cell (ManSp & 0.1% FS)', 'Range: 16K ', '2007-08-13', 1165, '8/13/2007', NULL), (1166, 1166, 'S/N 261281', 'Eilon Engineering RON 2100 S-02 Load Cell (ManSp & 0.1% FS)', 'Range: 40 lbs to 4,000 lbs ', '2007-08-24', 1166, '8/24/2007', NULL), (1167, 1167, 'S/N #2', 'Enerpac Rampack Gauge', 'Range: 10K psi', '2006-08-07', 1167, '8/7/2006', NULL), (1168, 1168, 'S/N 005284', 'Hilti Pull Tester Mdl. 59604/03/06 (E-4 & Man Specs) ', 'Range: 300 lbs to 3,000 lbs ', '2007-08-16', 1168, '8/16/2007', NULL), (1169, 1169, 'S/N 71009', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K/250K', '1999-08-09', 1169, '8/9/1999', NULL), (1170, 1170, 'S/N 3316', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 250K', '1997-08-26', 1170, '8/26/1997', NULL), (1171, 1171, 'S/N 78053', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2003-08-21', 1171, '8/21/2003', NULL), (1172, 1172, 'S/N 00197', 'AD-TEK Model AD250K-D Digital Compression Machine (E-4)', 'Range: 25K and 250K', '2002-11-12', 1172, '11/12/2002', NULL), (1173, 1173, 'S/N 99808052', 'Com-Ten Model 935KFD0100 (E-4)', 'Range: 500 lbs. to 5,000 lbs.', '2000-08-09', 1173, '8/9/2000', NULL), (1174, 1174, 'S/N 5731', 'Forney PT-75 Pipe Tester', 'Range 30/150K', '1995-08-19', 1174, '8/19/1995', NULL), (1175, 1175, 'S/N 81192', 'Forney QC-400-2 Compression Machine (E-4)', 'Range 30/400K', '1998-09-01', 1175, '9/1/1998', NULL), (1176, 1176, 'S/N 13269', 'Tinius Olsen Little Giant Beam Machine (E-4)', 'Range 4K to 100K', '2000-08-09', 1176, '8/9/2000', NULL), (1177, 1177, 'S/N 1504', 'Forney PT-150-2 Pipe Tester (E-4 & C-497)', 'Range 30/300K', '2002-08-13', 1177, '8/13/2002', NULL), (1178, 1178, 'S/N 99118', 'Forney F-25-E DR 2000 Compression Machine (E-4)', 'Range: 250K', '1999-08-30', 1178, '8/30/1999', NULL), (1179, 1179, 'S/N 90112', 'Forney QC400-2 Compression Machine (E-4)', 'Range: 30K to 400K', '2006-01-04', 1179, '1/4/2006', NULL), (1180, 1180, 'S/N 1593', 'CRC Portable Tensile Tester Model 460', 'Range 60K', '1998-08-31', 1180, '8/31/1998', NULL), (1181, 1181, 'S/N 96116', 'Forney F-250F-DR1 Compression Machine (E-4)', 'Range 250K', '1996-11-07', 1181, '11/7/1996', NULL), (1182, 1182, 'S/N 71001', 'Forney FT-40-CA-103 Compression Machine (E4-02 & C39)', 'Range: 250K', '2004-08-31', 1182, '8/31/2004', NULL), (1183, 1183, 'S/N 9011-26', 'M & L MLM 4501C Compression Machine (E-4)', 'Range 450K', '1995-08-23', 1183, '8/23/1995', NULL), (1184, 1184, 'S/N Unknown', 'Forney FT-26 w/ 2 hand pumps', 'Range: 250K', '2001-08-13', 1184, '8/13/2001', NULL), (1185, 1185, 'S/N 88198-00118', 'Forney LT-31-D-CS-100-3 Compression Machine (E-4)', 'Range 600 lbs. to 60,000 lbs.', '2002-08-26', 1185, '8/26/2002', NULL), (1186, 1186, 'S/N 91054', 'Forney FT-250F-02 Compression Machine', 'Range 30/250K', '1995-08-01', 1186, '8/1/1995', NULL), (1187, 1187, 'S/N 89041', 'Forney FT-250F-02 Analog Compression Machine (E-4)', 'Range: 250K', '2005-08-22', 1187, '8/22/2005', NULL), (1188, 1188, 'S/N 71055', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K (IN COLUMBUS)', '1999-08-16', 1188, '8/16/1999', NULL), (1189, 1189, 'S/N 3308', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 250K', '2003-09-04', 1189, '9/4/2003', NULL), (1190, 1190, 'S/N 2551', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 200K', '1997-09-03', 1190, '9/3/1997', NULL), (1191, 1191, 'S/N 96078', 'Forney F-502F-LC1 Digital Compression Machine (E-4)', 'Range 500K', '2002-08-26', 1191, '8/26/2002', NULL), (1192, 1192, 'S/N 2224-9910', 'Soiltest CT-710-100-3 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2002-08-27', 1192, '8/27/2002', NULL), (1193, 1193, 'S/N 71147', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 250K', '1999-08-30', 1193, '8/30/1999', NULL), (1194, 1194, 'S/N 81240', 'Forney FT-40-DR Compression Machine', 'Range 250K only', '1995-08-29', 1194, '8/29/1995', NULL), (1195, 1195, 'S/N 95119', 'Forney F-250F-DR1 Digital Compresson Machine (SOLD) (E-4)', 'Range 3K to 250K', '1999-08-25', 1195, '8/25/1999', NULL), (1196, 1196, 'S/N 98200', 'Forney F 250F-F96 Compression Machine (E-4)', 'Range: 3K to 250K', '1999-08-24', 1196, '8/24/1999', NULL), (1197, 1197, 'S/N 76015', 'Forney FT-40 Compression Machine (E-4 & C-39)', 'Range: 250K', '2012-02-13', 1197, '2/13/2012', NULL), (1198, 1198, 'S/N ', 'Compression Machine (E-4)', 'Range: ', NULL, 1198, 'New', NULL), (1199, 1199, 'S/N 2500C01612', 'Instron Model 250 QC-E1 Digital Compression Machine (E-4)', 'Range: 500 lbs to 100,000 lbs', '2007-08-20', 1199, '8/20/2007', NULL), (1200, 1200, 'S/N 75063', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K', '2006-08-31', 1200, '8/31/2006', NULL), (1201, 1201, 'S/N 79002', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 300K', '2008-08-27', 1201, '8/27/2008', NULL), (1202, 1202, 'S/N 06197', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-08-26', 1202, '8/26/2009', NULL), (1203, 1203, 'S/N 070708G', 'Gilson MC-300-PR Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2010-08-25', 1203, '8/25/2010', NULL), (1204, 1204, 'S/N 02137', 'Forney FX250F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2006-08-10', 1204, '8/10/2006', NULL), (1205, 1205, 'S/N 6514', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2005-09-09', 1205, '9/9/2005', NULL), (1206, 1206, 'S/N 775', 'LeBow Mdl 3157 Tension/Compression Load Cell (E-4)', 'Range: 20K Tension / 20K Compression', '2006-09-08', 1206, '9/8/2006', NULL), (1207, 1207, 'S/N 9535', 'Soiltest CT-7251 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2006-08-29', 1207, '8/29/2006', NULL), (1208, 1208, 'S/N 003', 'Ploog Engineering Dial Indicator (OOS) (D-6027)', 'Range: 1\"', '2004-03-01', 1208, '3/1/2004', NULL), (1209, 1209, 'S/N 72191', 'Forney QC-200-2 Compression Machine (E-4)', 'Range: 30K / 400K', '2007-08-28', 1209, '8/28/2007', NULL), (1210, 1210, 'S/N 9716', 'Skidmore Wilhelm Model MLCompression Machine (E-4 & 2%) ', 'Range: 100K', '2010-08-26', 1210, '8/26/2010', NULL), (1211, 1211, 'S/N 861816-01', '3D Instrument / Analog P/N 25544-24B13 0.25% Accuracy', 'Range: 15 PSI to 150 PSI', '2006-08-11', 1211, '8/11/2006', NULL), (1212, 1212, 'S/N 83140', 'Forney F-250M-01 Compression Machine (E-4)', 'Range: 250K', '2010-08-18', 1212, '8/18/2010', NULL), (1213, 1213, 'S/N 17083 5103', 'ELE ADR 2000 Compression Machine (E-4)', 'Range: 4K to 450K ', '2010-08-18', 1213, '8/18/2010', NULL), (1214, 1214, 'S/N 82045-02007', 'Forney QC-400-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2012-12-12', 1214, '12/12/2012', NULL), (1215, 1215, 'S/N 81460 (ID# 0411)', 'United LCH-20-GB Digital Tensile Speedy Tester (E-4)', 'Range: 200 lbs to 20,000 lbs ', '2011-12-14', 1215, '12/14/2011', NULL), (1216, 1216, 'S/N 86021 ', 'Teclock AI-921 Dial Indicator (D-6027)', 'Range: 1 inches', '2012-12-12', 1216, '12/12/2012', NULL), (1217, 1217, 'S/N 05054294/1', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', '2006-12-18', 1217, '12/18/2006', NULL), (1218, 1218, 'S/N 2053431', 'Eilon Engineering Ron Model 2125 S-2 Load Cell (ManSp & 0.1% FS)', 'Range: 4K', '2006-12-04', 1218, '12/4/2006', NULL), (1219, 1219, 'S/N 571574 ', 'Eilon Engineering Ron 2000 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 5 Ton ', '2006-12-18', 1219, '12/18/2006', NULL), (1220, 1220, 'S/N 0046', 'ELE Soiltest Unconfined Proving Ring', 'Range: ', NULL, 1220, 'New', NULL), (1221, 1221, 'S/N 104193A', 'Lebow Load Cell Mdl. 3144 (E-4)', 'Range: 10K', '2006-12-05', 1221, '12/5/2006', NULL), (1222, 1222, 'S/N 95001', 'Wegener Ultitest 500 Model B (E-4)', 'Range: 500 lb.', '1999-12-13', 1222, '12/13/1999', NULL), (1223, 1223, 'S/N 67145-97001', 'Forney FT-41-CS100-2 Digital Compression Machine ', 'Range 4K to 400K (E-4)', '2000-12-12', 1223, '12/12/2000', NULL), (1224, 1224, 'S/N', 'Com-Ten', '', NULL, 1224, 'NEW', NULL), (1225, 1225, 'S/N 04192', 'Forney FX-600F-DFM/1 Compression Machine', 'Range:', NULL, 1225, 'New', NULL), (1226, 1226, 'S/N ', 'Test Mark CM-3000-LD Digital Compression Machine', 'Range: 300,000 lbs.', '0000-00-00', 1226, '', NULL), (1227, 1227, 'S/N 2201', 'Zwick Pedulum Machine', 'Range 100/250/500 Kg', '0000-00-00', 1227, '', NULL), (1228, 1228, 'S/N1155-12-11607', 'ELE Triaxial Unit with ADU (E-4)', 'Range: 2KN (450 lb)', '1999-12-16', 1228, '12/16/1999', NULL), (1229, 1229, 'S/N 1155B0100', 'ELE Single Proving Ring', 'Cap: 450 lbs.', '2001-12-12', 1229, '12/12/2001', NULL), (1230, 1230, 'S/N 99204', 'Forney F-50C-DFM/I Digital Compression Machine', 'Range: 3K to 500K (E-4)', '2000-01-13', 1230, '1/13/2000', NULL), (1231, 1231, 'S/N 21277', 'Soiltest Single Proving Ring (In house)', 'Cap: 6,000 lbs', '2001-12-07', 1231, '12/7/2001', NULL), (1232, 1232, 'S/N Unknown', 'Soiltest Dial Indicator (D-6027) (OUT OF SERVICE)', 'Range: 0.2 inches to 2 inches', '2004-12-10', 1232, '12/10/2004', NULL), (1233, 1233, 'S/N 92143-03112', 'Forney FT-250C-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-12-09', 1233, '12/9/2008', NULL), (1234, 1234, 'S/N 00116', 'Forney F-25 F-01 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2005-12-05', 1234, '12/5/2005', NULL), (1235, 1235, 'S/N 748', 'Pine Instrument Model AF 850 T with Test Spring S/N 606 (E-4)', 'Range: 2.5K / 5K / 10K ', '2004-12-08', 1235, '12/8/2004', NULL), (1236, 1236, 'S/N 05141', 'Forney F-25EX-E-DR500 Digital Compression Machine(MOVED)(E-4)', 'Range: 3K to 250K', '2007-12-05', 1236, '12/5/2007', NULL), (1237, 1237, 'S/N 86025', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-12-11', 1237, '12/11/2012', NULL), (1238, 1238, 'S/N 2012840', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Ton ', '2006-12-21', 1238, '12/21/2006', NULL), (1239, 1239, '', 'Recondition Greenlee front valve section ', '', '0000-00-00', 1239, '', NULL), (1240, 1240, 'S/N 04226', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4) ', 'Range: 2.5 K to 250 K', '2007-12-06', 1240, '12/6/2007', NULL), (1241, 1241, 'S/N 83118', 'Forney LT-900-2 Universal Testing Machine w/ Gauge (E-4)', 'Range: 200K / 400K (High Range Only)', '2012-12-12', 1241, '12/12/2012', NULL), (1242, 1242, 'S/N 02130', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5k to 250K', '2012-12-10', 1242, '12/10/2012', NULL), (1243, 1243, 'S/N 8743', 'Soiltest AP-170A Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2012-12-14', 1243, '12/14/2012', NULL), (1244, 1244, 'S/N 91073', 'Forney QC-400F-02 Compression Machine (E-4)', 'Range: 400K ', '2012-12-11', 1244, '12/11/2012', NULL), (1245, 1245, 'S/N 129 (ID# QA-MT-3)', 'Durham Geo CM-300GB Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-12-14', 1245, '12/14/2012', NULL), (1246, 1246, 'S/N 136', 'Brainard-Kilman CM-215 with E-400 Digital', 'Range 25/250K', '1998-01-15', 1246, '1/15/1998', NULL), (1247, 1247, 'S/N 9901', 'ELE CT-7351-A Compression Machine (AT READY MIX CONCRETE)', 'Range: 350K', '2003-06-03', 1247, '6/3/2003', NULL), (1248, 1248, 'S/N 9901', 'ELE Compression Machine--CT-7351A (IN BAYAMON)', 'Range: 350K', '2001-01-18', 1248, '1/18/2001', NULL), (1249, 1249, 'S/N 128 ', 'Durham Geo CC-300-GB Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-12-14', 1249, '12/14/2012', NULL), (1250, 1250, 'S/N 119', 'Brainard-Kilman CM-200 Digital Compression Machine (E-4)', 'Range: 20K to 250K ', '2012-12-12', 1250, '12/12/2012', NULL), (1251, 1251, 'S/N 77269-02003', 'Forney QC-150-CS-1002A Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-12-13', 1251, '12/13/2012', NULL), (1252, 1252, 'S/N 06228 ', 'Forney F-25EX-F-TPT-60 Digital Compression Machine (E-4) ', 'Range: 600 lbs to 60K ', '2012-12-12', 1252, '12/12/2012', NULL), (1253, 1253, 'S/N 04060000015', 'ELE CT-710 Compression Machine (E-4) ', 'Range: 250K (110 VAC)', '2012-12-08', 1253, '12/8/2012', NULL), (1254, 1254, 'S/N 129950/1599', 'Geo Jac Load Cell Ch #2 ID #2 (E-4)', 'Range: 2K ', '2012-12-12', 1254, '12/12/2012', NULL), (1255, 1255, 'S/N 69790', 'Hogentogler Compression Machine w/ DC-16 Digital (E-4)', 'Range: 2.5K to 250K', '2012-12-10', 1255, '12/10/2012', NULL), (1256, 1256, 'S/N 4', 'Powerteam SPX Post Tension Jack (E-4 & PCI)', 'Cap: 30K ', '2005-12-09', 1256, '12/9/2005', NULL), (1257, 1257, 'S/N 05219', 'Forney FX-250-F-LA270TP Digital Comp. Machine w/ Cylinder Frame ', 'Range: 3K to 300K (E-4)', '2007-12-10', 1257, '12/10/2007', NULL), (1258, 1258, 'S/N 88011-03106', 'Forney QC-410-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2005-08-23', 1258, '8/23/2005', NULL), (1259, 1259, 'S/N 03021', 'Forney F25EX Digital Compression Machine DR-2001 (E-4)', 'Range: 2.5K to 250K', '2005-05-14', 1259, '5/14/2005', NULL), (1260, 1260, 'S/N 9818', 'ELE Model CT-7251 Compression Machine (E-4)', 'Range: 250K (Gauge 36-0655/12)', '2007-05-08', 1260, '5/8/2007', NULL), (1261, 1261, 'S/N 13995G', 'Gilson Model MC-251Compression Machine (E-4)', 'Range: 250K ', '2006-12-08', 1261, '12/8/2006', NULL), (1262, 1262, 'S/N', 'Hayes Prestress Jack', 'Cap:', NULL, 1262, 'New', NULL), (1263, 1263, 'S/N 74178', 'Forney LT-703-2 Compression Machine (MOVED) (E-4)', 'Range: ', NULL, 1263, 'New', NULL), (1264, 1264, 'S/N 2206AB28820', 'Gilson PE 170-250 Testmark Digital Comp. Mach. (NOT IN USE) (E-4)', 'Range: 250K', '2004-12-08', 1264, '12/8/2004', NULL), (1265, 1265, 'S/N 8803-6036', 'Soiltest CT-755A Compression Machine (E-4)', 'Range: 250K', '2005-05-18', 1265, '5/18/2005', NULL), (1266, 1266, 'S/N 05224', 'Forney F-40EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2007-12-05', 1266, '12/5/2007', NULL), (1267, 1267, 'S/N 05223', 'Forney F-40EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2007-12-04', 1267, '12/4/2007', NULL), (1268, 1268, 'S/N 73004-02002', 'Forney LT-700-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2007-05-07', 1268, '5/7/2007', NULL), (1269, 1269, 'S/N 00203', 'Durham GEO CM-215-RL Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-12-13', 1269, '12/13/2007', NULL), (1270, 1270, 'S/N 01106', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-12-10', 1270, '12/10/2009', NULL), (1271, 1271, 'S/N 04204', 'Forney F-401F-TPILOT Digital Compression Machine (E-4) (Sold)', 'Range: 4.5K to 450K (Cylinder Frame)', '2010-05-21', 1271, '5/21/2010', NULL), (1272, 1272, 'S/N 171345-69888-3', 'Tinius Olsen Super L Digital Comp. Machine w/290 Display (E-4)', 'Ranges: 6K / 30K / 120K / 300K', '2009-05-19', 1272, '5/19/2009', NULL), (1273, 1273, 'S/N 6196', 'Soiltest PR-100 Marshall Single Proving Ring (E-4 & Man Specs) ', 'Cap: 10K (Plant #4) ', '2010-05-22', 1273, '5/22/2010', NULL), (1274, 1274, 'S/N 15952', 'Soiltest PR-100 Marshall Single Proving Ring (E-4 & Man Specs )', 'Cap: 10K (Plant #2)', '2010-05-22', 1274, '5/22/2010', NULL), (1275, 1275, 'S/N 85152', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 30K / 250K', '2009-05-15', 1275, '5/15/2009', NULL), (1276, 1276, 'S/N 17906', 'Testmark CM-0030-DB Digital Compression Machine (E-4)', 'Range: 1K to 30K', '2013-02-06', 1276, '2/6/2013', NULL), (1277, 1277, 'S/N 86098', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-02-05', 1277, '2/5/2013', NULL), (1278, 1278, 'S/N 67128-111104-96', 'Forney LT-900-2 CS-100-1BR Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-02-05', 1278, '2/5/2013', NULL), (1279, 1279, 'S/N 3499/05-15-9', 'Soiltest CT-711 Digital Compression Machine w/IDS 448 Digital', 'Range: 3K to 250K (E-4)', '2013-02-07', 1279, '2/7/2013', NULL), (1280, 1280, 'S/N 64024', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-02-05', 1280, '2/5/2013', NULL), (1281, 1281, 'S/N 10AL-11', 'Scott Tester Mdl. 25405 Tensile Machine (E-4)', 'Range: 75 lbs Low Range Only', '2012-02-07', 1281, '2/7/2012', NULL), (1282, 1282, 'S/N 96011', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range: 5K to 250K', '2012-02-06', 1282, '2/6/2012', NULL), (1283, 1283, 'S/N 03076 ', 'Forney FX-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-02-09', 1283, '2/9/2012', NULL), (1284, 1284, 'S/N 90084-GB0302141', 'Forney QC-400C-GBP Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2013-02-06', 1284, '2/6/2013', NULL), (1285, 1285, 'S/N 01036', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K', '2013-02-13', 1285, '2/13/2013', NULL), (1286, 1286, 'S/N 72004-0912231', 'Forney QC-200-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-02-13', 1286, '2/13/2013', NULL), (1287, 1287, 'S/N 86057', 'Forney FT-40-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-12', 1287, '6/12/2013', NULL), (1288, 1288, 'S/N 154031', 'Artech 20210-500 Load Cell (E-4)', 'Range: 20 lbs to 500lbs', '2013-02-12', 1288, '2/12/2013', NULL), (1289, 1289, 'S/N 13056', 'Forney F250-B-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-15', 1289, '5/15/2013', NULL), (1290, 1290, 'S/N 78228-0602062', 'Forney QC-200-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-02-14', 1290, '2/14/2013', NULL), (1291, 1291, 'S/N 1001-0701264', 'Satec 250 PC-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (ID#104102)', '2013-02-12', 1291, '2/12/2013', NULL), (1292, 1292, 'S/N 9305-04102', 'Soiltest CT6200-CS-100-1BR Digital Comp. Machine (E-4)', 'Range: 4K to 450K ', '2013-02-13', 1292, '2/13/2013', NULL), (1293, 1293, 'S/N 07120223', 'Penn Scale CM 101 (E-898)', 'Range: 30 lbs', '2013-03-14', 1293, '3/14/2013', NULL), (1294, 1294, 'S/N 980300 (ID# 0208)', 'Karol Warner Direct Shear - Shear Force w/ Load Cell S/N Y18043 ', 'Range: 20 lbs to 750 lbs (E-4)', '2013-02-12', 1294, '2/12/2013', NULL), (1295, 1295, 'S/N 87041', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-02-13', 1295, '2/13/2013', NULL), (1296, 1296, 'S/N 85111 ID#4213', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2013-02-13', 1296, '2/13/2013', NULL), (1297, 1297, 'S/N 60185-0602061', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-02-16', 1297, '2/16/2012', NULL), (1298, 1298, 'S/N 78272-03110', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2013-02-20', 1298, '2/20/2013', NULL), (1299, 1299, 'S/N 68104', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-02-20', 1299, '2/20/2013', NULL), (1300, 1300, 'S/N 82040', 'Forney FT-40-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-19', 1300, '2/19/2013', NULL), (1301, 1301, 'S/N 87176', 'Forney QC-410-2D Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-02-19', 1301, '2/19/2013', NULL), (1302, 1302, 'S/N 1204', 'Pine Instrument AF-805T Asphalt Tester (E-4)', 'Range: 11Kn / 22 Kn / 44 Kn ', '2013-02-18', 1302, '2/18/2013', NULL), (1303, 1303, 'S/N 71112-0702121', 'Forney LT-700-CS-100-2G Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-02-20', 1303, '2/20/2013', NULL), (1304, 1304, 'S/N 99009', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-02-20', 1304, '2/20/2013', NULL), (1305, 1305, 'S/N 1468-0602081', 'Satec Model 60 HVL-CS-100-7 Digital Compression Machine(E-4)', 'Range: 600 lbs to 60K', '2013-02-19', 1305, '2/19/2013', NULL), (1306, 1306, 'S/N 01221', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-02-20', 1306, '2/20/2013', NULL), (1307, 1307, 'S/N 09003', 'Forney F-400EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K (WVDOT# 097228)', '2013-02-21', 1307, '2/21/2013', NULL), (1308, 1308, 'S/N 88117 ID# C1694', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K ', '2013-02-20', 1308, '2/20/2013', NULL), (1309, 1309, 'S/N 3081741', 'Eilon Engineering RON 2000 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 25 Ton', '2006-02-10', 1309, '2/10/2006', NULL), (1310, 1310, 'S/N 204711', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Ton ', '2008-02-27', 1310, '2/27/2008', NULL), (1311, 1311, 'S/N 0701263', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 150,000 lbs', '0000-00-00', 1311, '', NULL), (1312, 1312, '', 'Reconditioned Greenlee front valve section ', '', '0000-00-00', 1312, '', NULL), (1313, 1313, 'S/N 92034', 'Wegener Tensiometer Ultitest 500 (In House) (E-4)', 'Range 20 to 500 lb.', '2000-02-15', 1313, '2/15/2000', NULL), (1314, 1314, 'S/N 10AH10-2', 'Scott Tester Mdl. 25405 Tensile Machine (E-4)', 'Ranges: 25lb / 150lb', '2011-02-08', 1314, '2/8/2011', NULL), (1315, 1315, 'S/N 228', 'Humboldt H3030 Beam Breaker Portable (E-4)', 'Range: 15K', '2011-02-16', 1315, '2/16/2011', NULL), (1316, 1316, 'S/N 3072', 'Soiltest CT-710 Compression Machine w/Hand Pump (E-4)', 'Range: 250K', '2000-10-02', 1316, '10/2/2000', NULL), (1317, 1317, 'S/N 66355', 'Southwark Emery Comopression Machine (E-4)', 'Range: 3K to 300K', '2001-02-14', 1317, '2/14/2001', NULL), (1318, 1318, 'S/N 86', 'Soiltest CT-711 Compression Machine (E-4)', 'Range 200K', '2003-02-26', 1318, '2/26/2003', NULL), (1319, 1319, 'S/N 65110-02014', 'Forney FT-31-CS-100-2 Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K', '2005-05-04', 1319, '5/4/2005', NULL), (1320, 1320, 'S/N', 'Soiltest CT-755 Compression Machine', 'Range: 250K', NULL, 1320, 'NEW', NULL), (1321, 1321, 'S/N 37030120', 'Satorins Digital Scale Model IP65', 'Range: 1500 Gram', '2003-03-03', 1321, '3/3/2003', NULL), (1322, 1322, 'S/N 87011', 'Forney QC-410-D Digital Compression Machine (E-4)', 'Range 3K to 400K', '1998-02-17', 1322, '2/17/1998', NULL), (1323, 1323, 'S/N 89118', 'Forney QC-400F-02 Compression Machine (E-4)', 'Range 30/400K', '1998-02-16', 1323, '2/16/1998', NULL), (1324, 1324, '', 'MTS III Model 204-91.......continued', '', '0000-00-00', 1324, '', NULL), (1325, 1325, 'S/N 170', 'MTS Extensometer-Model 632-31E-24 (E-83)', '1\"GL, ID # 25-EX', '2005-03-30', 1325, '3/30/2005', NULL), (1326, 1326, 'S/N 70125', 'Forney FT-40-DR Compression Machine (SOLD) (E-4)', 'Range: 250K', '2000-02-23', 1326, '2/23/2000', NULL), (1327, 1327, 'S/N 72137', 'Forney FT-40-DR Compression Machine (E4)', 'Range 250K only', '2004-02-11', 1327, '2/11/2004', NULL), (1328, 1328, 'S/N 3315', 'Instron Equipment Model 4206 Pull Test Machine (E-4)', '', '1999-02-15', 1328, '2/15/1999', NULL), (1329, 1329, 'S/N 90102047', 'Com Ten Model 912KHD00252K (Hand operated)', 'Range: 50 lbs. to 2,000 lbs. (E-4)', '2001-03-26', 1329, '3/26/2001', NULL), (1330, 1330, 'S/N 68238', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250 K', '2001-04-24', 1330, '4/24/2001', NULL), (1331, 1331, 'S/N 04101-6717', 'ELE CT-7250-100-2A Digital Compression Machine', 'Range: 2.5K to 250K (E-4-02)', '2004-02-02', 1331, '2/2/2004', NULL), (1332, 1332, 'S/N ', 'Forney Compression Machine (E-4)', 'Range: 2 ranges', '0000-00-00', 1332, '', NULL), (1333, 1333, 'S/N U07', 'Simplex Post Tension Jack Model RC603 (E4 & PCI)', 'Range 120K (8500 PSI) (60 Ton)', '2004-03-02', 1333, '3/2/2004', NULL), (1334, 1334, 'S/N 83100', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 3K/30K and 25K/250K', '2002-07-18', 1334, '7/18/2002', NULL), (1335, 1335, 'S/N', 'Soiltest CT-724 Compression Machine (E-4)', 'Range: 250K', '0000-00-00', 1335, '', NULL), (1336, 1336, 'S/N', 'Forney FT-40 -DR Compression Machine (E-4)', 'Range:', '0000-00-00', 1336, '', NULL), (1337, 1337, 'S/N 99052', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 250 K', '0000-00-00', 1337, '', NULL), (1338, 1338, 'S/N B3202C', 'Enerpac Pushout Tester (E-4 & Man Specs)', 'Range: 60K Pump S/N C2602C', '2003-02-24', 1338, '2/24/2003', NULL), (1339, 1339, 'S/N 118', 'Pine Instrument--- Model 750', 'Range 2.5/5/10K', '1997-02-11', 1339, '2/11/1997', NULL), (1340, 1340, 'S/N 88119', 'Forney FT-40-DR-2001 Digital Compression Machine (E-4)', 'Range: 250K', '2006-03-28', 1340, '3/28/2006', NULL), (1341, 1341, 'S/N 83013', 'Forney QC-400-C1 Compression Machine (E-4)', 'Range: 400K', '2000-02-08', 1341, '2/8/2000', NULL), (1342, 1342, 'S/N 79143', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2000-03-01', 1342, '3/1/2000', NULL), (1343, 1343, 'S/N 77143', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '1999-06-09', 1343, '6/9/1999', NULL), (1344, 1344, 'S/N 97159', 'Forney F-400E-F96 Digital Compression Machine (E-4)', 'Range 4K to 400K', '2000-02-07', 1344, '2/7/2000', NULL), (1345, 1345, 'S/N LT710-03', 'Forney Compression Machine (E-4)', 'Range: 100K ', NULL, 1345, 'New', NULL), (1346, 1346, 'S/N 98014', 'Forney F-502P-LC1 Digital Compression Machine (E-4)', 'Range 3K to 500K', '2000-02-09', 1346, '2/9/2000', NULL), (1347, 1347, 'S/N 90042', 'Forney FT-250-F01 Compression Machine (E-4)', 'Range: 250K', '2004-02-25', 1347, '2/25/2004', NULL), (1348, 1348, 'S/N 03089', 'Forney F-30EX-E-DR2001 Digital Compression Machine (E-4)', 'Range:', NULL, 1348, 'NEW', NULL), (1349, 1349, 'S/N 950R', 'Soiltest CT-710A Compression Machine', 'Range: 250K', NULL, 1349, 'NEW', NULL), (1350, 1350, 'S/N', 'Lucker Tester----Proof Tester', 'Cap: 500K', '0000-00-00', 1350, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (1351, 1351, 'S/N 79062', 'Forney LT-30-1 Compression Machine', 'Range 60K', '1996-03-25', 1351, '3/25/1996', NULL), (1352, 1352, 'S/N 95126', 'Forney F-250F-01 Compression Machine with DR-1 Digital ', 'Range 500 lbs. to 30,000lbs. (E-4)', '2001-02-13', 1352, '2/13/2001', NULL), (1353, 1353, 'S/N 1351', 'Pine Instrument Single Proving Ringe (In House) (E-4)', 'Range 10K', '1999-02-05', 1353, '2/5/1999', NULL), (1354, 1354, 'S/N 232', 'Detroit Universal Testing Machine', 'Range 3/10K', '1995-03-08', 1354, '3/8/1995', NULL), (1355, 1355, 'S/N 80211022', 'ComTen DML 0265 Test System (E-4)', 'Range: 4lbs to 40lbs', '2006-02-07', 1355, '2/7/2006', NULL), (1356, 1356, 'S/N 07101', 'Forney F-25EX-E-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K ', '2007-06-19', 1356, '6/19/2007', NULL), (1357, 1357, 'S/N 90111', 'Forney FT-250-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-06-22', 1357, '6/22/2006', NULL), (1358, 1358, 'S/N 90084-GB0302141', 'Forney QC-400C-GBP Digital Compression Machine (E-4)', 'Range: 3K to 400K (MOVED)', '2007-02-15', 1358, '2/15/2007', NULL), (1359, 1359, 'S/N 1351', 'Rainhart Beam Tester Unit B (E-4)', 'Range: 12K', '2006-07-20', 1359, '7/20/2006', NULL), (1360, 1360, 'S/N 164004', 'TO Extensometer Model S-100-1AB (E-83)', 'Range: 1\" ID#25-EXT11', '2005-03-29', 1360, '3/29/2005', NULL), (1361, 1361, 'S/N 42381', 'Tensiometer 42381 (E-4 & 2 %)', 'Range:', '0000-00-00', 1361, '', NULL), (1362, 1362, 'S/N 346', 'Geo Durham Perm Panal w/ Trans. & Display (MOVED) (D-6027)', 'Range: 300 PSI ', '2007-02-12', 1362, '2/12/2007', NULL), (1363, 1363, 'S/N 89043', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K ', '2006-02-22', 1363, '2/22/2006', NULL), (1364, 1364, 'S/N 79071', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-03-03', 1364, '3/3/2004', NULL), (1365, 1365, 'S/N 88117', 'Forney FT-40-DR Compression Machine (E-4) ', 'Range: 30K / 250K', '2005-03-02', 1365, '3/2/2005', NULL), (1366, 1366, 'S/N 37525', 'Baldwin Universal Testing Machine 60 HVL w/DC12 Digital (E-4)', 'Range: 600 lbs to 60K', '2010-02-15', 1366, '2/15/2010', NULL), (1367, 1367, 'S/N 08007', 'Forney F-25EX-E-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-02-03', 1367, '2/3/2009', NULL), (1368, 1368, 'S/N 76016-GB0108305', 'Forney FT-40-GB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Moved)', '2009-02-10', 1368, '2/10/2009', NULL), (1369, 1369, '', 'Forney Compression Machine', 'Range: 400 K', '1988-01-01', 1369, '1/1/1988', NULL), (1370, 1370, 'S/N 86030', 'Forney FT-40 Compression Machine (E-4) ', 'Range: 250K', '2007-02-07', 1370, '2/7/2007', NULL), (1371, 1371, 'S/N 89015', 'Forney QC-410D Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2003-03-15', 1371, '3/15/2003', NULL), (1372, 1372, 'S/N 04227', 'Forney F-30EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2009-02-12', 1372, '2/12/2009', NULL), (1373, 1373, 'S/N 05069 ', 'Forney F-25EX-E-PILOT Compression Machine (E-4)', 'Range: 5K to 250 K', '2007-02-12', 1373, '2/12/2007', NULL), (1374, 1374, 'S/N 9707', 'ELE CT 7250 Digital Compression Machine (SOLD) (E-4)', 'Range: 2.5K to 250K ', '2007-02-26', 1374, '2/26/2007', NULL), (1375, 1375, 'S/N 85138-060829', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2008-02-12', 1375, '2/12/2008', NULL), (1376, 1376, 'S/N 84084', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-02-26', 1376, '2/26/2008', NULL), (1377, 1377, 'S/N 90084-GB0302141', 'Forney QC-400C-GBP Digital Compression Machine (E-4)', 'Range: 3K to 400K (MOVED)', '2006-02-14', 1377, '2/14/2006', NULL), (1378, 1378, 'S/N 081017 ', 'Testmark CM-3000-LXI Digital Compression Machine (E-4)', 'Range: 3K to 300K (ID#M22904)', '2011-02-16', 1378, '2/16/2011', NULL), (1379, 1379, 'S/N 04102', 'Forney FX-400P-DFM/1 Digital Compression Machine (E-4) ', 'Range: 400K', '2007-02-19', 1379, '2/19/2007', NULL), (1380, 1380, 'S/N 69032', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-02-15', 1380, '2/15/2006', NULL), (1381, 1381, 'S/N 07285', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K(ID# PDG-COMP-01)', '2013-02-20', 1381, '2/20/2013', NULL), (1382, 1382, 'S/N 92010', 'Forney FT-250-01 Compression Machine (MOVED) (E-4) ', 'Range: 250K', '2006-03-03', 1382, '3/3/2006', NULL), (1383, 1383, 'S/N 3431', 'W.C. Dillion & Company Model 1 Tensile Tester (E-4)', 'Range: 300 lbs', '2007-02-20', 1383, '2/20/2007', NULL), (1384, 1384, 'S/N 90030', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2007-01-04', 1384, '1/4/2007', NULL), (1385, 1385, 'S/N 01054147', 'Eilon Engineering RON 3025 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', '2010-02-12', 1385, '2/12/2010', NULL), (1386, 1386, 'S/N 103625', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Cap: 10 Ton', '2004-07-28', 1386, '7/28/2004', NULL), (1387, 1387, 'S/N 5012739/9', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 40 Ton', NULL, 1387, 'New', NULL), (1388, 1388, 'S/N 06279', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-02', 1388, '1/2/2013', NULL), (1389, 1389, ' Frame 651/LC 932512', 'Humboldt Marshall LY 16100-11 Recorder w/ Total Comp Load Cell', 'Range: 5K / 10K (E-4)', '2013-01-21', 1389, '1/21/2013', NULL), (1390, 1390, 'S/N 510', 'Durham Geo Direct Shear Machine Mdl. S490 Vertical Force (E-4)', 'Range: 1/8 TSF to 16 TSF', '2008-11-24', 1390, '11/24/2008', NULL), (1391, 1391, 'S/N 68163', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 20K / 250K', '2012-01-12', 1391, '1/12/2012', NULL), (1392, 1392, 'S/N 39461-1 / NC#1', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K ', '2012-01-18', 1392, '1/18/2012', NULL), (1393, 1393, 'S/N 1208325', 'Humboldt HM-2560A.3F Direct Shear Machine w/ Digital Readout', ' ', '2013-01-08', 1393, '1/8/2013', NULL), (1394, 1394, 'S/N 08001', 'Forney F-30EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-01-10', 1394, '1/10/2013', NULL), (1395, 1395, 'S/N 96126', 'Forney LT-900-LC Universal TestingMachine (E-4)', 'Range: 4K to 400K ', '2013-01-23', 1395, '1/23/2013', NULL), (1396, 1396, 'S/N 27203', 'Testmark CM4000-DB Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-01-16', 1396, '1/16/2013', NULL), (1397, 1397, 'S/N 97052', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-01-16', 1397, '1/16/2013', NULL), (1398, 1398, 'S/N 86148', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-01-15', 1398, '1/15/2013', NULL), (1399, 1399, 'S/N 03011', 'Forney FX-250F-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-01-15', 1399, '1/15/2013', NULL), (1400, 1400, 'S/N 07236', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-01-14', 1400, '1/14/2013', NULL), (1401, 1401, 'S/N 70023-0605031', 'Forney QC-225-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-01-16', 1401, '1/16/2013', NULL), (1402, 1402, 'S/N 10715-0704175', 'Monsanto W-CS-100-2L Digital Tensile Testing Machine (ID# F-43) ', 'Range: 40 lbs to 4K (E-4)', '2013-01-23', 1402, '1/23/2013', NULL), (1403, 1403, 'S/N 120HV-1028', 'Baldwin Wiedemann 120HV Universal Testing Machine (E-4)', 'Range: 6K / 24K / 120K (ID# 2845)', '2013-01-21', 1403, '1/21/2013', NULL), (1404, 1404, 'S/N 11097', 'Forney F-40EX-B-DR500 Digital Compression Machine (E-4)', 'Range:4,000 lbs to 400,000 lbs', '2013-01-21', 1404, '1/21/2013', NULL), (1405, 1405, 'S/N 13595(ID# Q-0605)', 'Testmark CM-4000-DB Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-01-22', 1405, '1/22/2013', NULL), (1406, 1406, 'S/N 07225 (ID#Q-2133)', 'Forney F-40EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-01-24', 1406, '1/24/2013', NULL), (1407, 1407, 'S/N 875', 'MTS Frame---Model 810', '', '2002-01-29', 1407, '1/29/2002', NULL), (1408, 1408, 'S/N 05054311/9', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2007-08-13', 1408, '8/13/2007', NULL), (1409, 1409, 'S/N 121288', 'Eilon Engineering RON 2000 S-08 Load Cell (ManSp & 0.1% FS)', 'Range: 8 Ton (Cal by Coors 8/07)', '2006-01-05', 1409, '1/5/2006', NULL), (1410, 1410, 'S/N 012543852/3', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSp & 0.1% FS)', 'Range: 125 Tons', '2006-01-05', 1410, '1/5/2006', NULL), (1411, 1411, 'S/N 1208104', 'Eilon Engineering RON 2000 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 80 Tons', '2008-01-11', 1411, '1/11/2008', NULL), (1412, 1412, 'S/N', 'Load Cell', 'Range: 100K', '0000-00-00', 1412, '', NULL), (1413, 1413, 'S/N 3081747', 'Eilon Engineering RON 2000 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 30 Ton', '2008-01-25', 1413, '1/25/2008', NULL), (1414, 1414, 'S/N 16046', 'OTC Gauge Model 40-A (in house) (E-4)', 'Cap: 10,000 psi', '1999-01-05', 1414, '1/5/1999', NULL), (1415, 1415, 'S/N 23955', 'Soiltest Double Proving Ring (E-4)', 'Range: 500 lbs.', '2001-01-15', 1415, '1/15/2001', NULL), (1416, 1416, 'S/N 101', 'McDaniels Vacuum Gauge (ManSpecs)', 'Range: -760mmHg', '2005-01-31', 1416, '1/31/2005', NULL), (1417, 1417, 'S/N GN 20 320 ', 'Riehle Mechanical Extensometer (E-83)', 'Range: 0.007 in/in ', '2008-08-07', 1417, '8/7/2008', NULL), (1418, 1418, 'S/N 238A573-01', 'Ashcroft Mdl. 2C648 Pressure Gauge (D-5720)', 'Range: 100 PSI', '2008-01-10', 1418, '1/10/2008', NULL), (1419, 1419, 'S/N 12264', 'Hilti Model 59604/00 Pull Tester (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2012-02-02', 1419, '2/2/2012', NULL), (1420, 1420, 'S/N 030971777/7', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSpec & 0.1%FS)', 'Range: 60K ', '2013-05-06', 1420, '5/6/2013', NULL), (1421, 1421, 'S/N 74258', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2004-01-12', 1421, '1/12/2004', NULL), (1422, 1422, 'S/N A5890', 'Beam Breaker County-Made (Enerpac Model P-141)', 'Range 10K', '1997-02-11', 1422, '2/11/1997', NULL), (1423, 1423, 'S/N 68264-00112', 'Forney LT-1000-CS-100-2 Compression Machine (E-4)', 'Range: 4K to 600K', '2002-01-31', 1423, '1/31/2002', NULL), (1424, 1424, 'S/N 9082', 'Tech Lab CM-2505 Compression Machine', 'Range 250K', '1996-01-24', 1424, '1/24/1996', NULL), (1425, 1425, 'S/N 16701G', 'Gilson/Testmark Model MC-250BD Digital Comp Machine (E4)', 'Range: 25k to 250K (Moved)', '2004-01-12', 1425, '1/12/2004', NULL), (1426, 1426, 'S/N 70110', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1996-01-16', 1426, '1/16/1996', NULL), (1427, 1427, 'S/N 2584', 'Pull Spotwelder Detroit Test Machine PT2584', 'Range: 4K', '2004-01-08', 1427, '1/8/2004', NULL), (1428, 1428, 'S/N 01017', 'Forney F-25E-DR2000 (E-4)', 'Range: 3K to 250K', '2001-02-15', 1428, '2/15/2001', NULL), (1429, 1429, 'S/N 78152', 'Forney QC-200-DR Compression Machine', 'Range 30/400 K', '1995-12-28', 1429, '12/28/1995', NULL), (1430, 1430, 'S/N 202', 'Karol Warner Single Proving Ring (E-4)', 'Range: 2268 kg', '2004-07-29', 1430, '7/29/2004', NULL), (1431, 1431, 'S/N 92066', 'Forney FT-250F-1 Hydraulic Press (E-4)', 'Range 250K', '1998-02-02', 1431, '2/2/1998', NULL), (1432, 1432, 'S/N 98072', 'Forney F-600P-DFM/1 Digital Compression Machine (E-4)', 'Range 600 K', '1999-01-05', 1432, '1/5/1999', NULL), (1433, 1433, 'S/N 3', 'Simms Prestress Jack P-3000-Jack #3(E4 & PCI)OUT OF SERVICE', 'Range 2/3/4/45K-Gauges #36&40', '2005-08-02', 1433, '8/2/2005', NULL), (1434, 1434, 'S/N 861117A', 'Strainsense Load Cell A (E-4 & PCI) OUT OF SERVICE', 'Range: 5K/50K', '2004-02-02', 1434, '2/2/2004', NULL), (1435, 1435, 'S/N 227', 'Soiltest CT-755 Compression Machine', '', '1999-01-12', 1435, '1/12/1999', NULL), (1436, 1436, 'S/N 2460', 'Soiltest CT-769 Compression Machine', 'Range', '0000-00-00', 1436, '', NULL), (1437, 1437, 'S/N FL5OU-0315', 'MTS Machine w/ Strainsert Digital Load Cell Model FL5OU-3DG', '1200# to 25K', '1999-02-12', 1437, '2/12/1999', NULL), (1438, 1438, 'S/N 03205', 'Forney F-30EX -F-DR 2001 Digital Compression Machine (E-4-02)', 'Range: 3K to 300K', '2004-01-12', 1438, '1/12/2004', NULL), (1439, 1439, 'S/N 9833', 'Soiltest CT-7251-CS-100-1S Digital Compression Machine (E-4)', 'Range: 250K', '2013-07-30', 1439, '7/30/2013', NULL), (1440, 1440, 'S/N 5099', 'Soiltest CT-710 Compression Machine', 'Range 250K', '1995-01-26', 1440, '1/26/1995', NULL), (1441, 1441, 'S/N 703082', 'Tinius Olsen Model L Compression Machine', 'Range 60/300K', '2000-01-27', 1441, '1/27/2000', NULL), (1442, 1442, 'S/N 98104', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5 to 250 K', '2013-05-14', 1442, '5/14/2013', NULL), (1443, 1443, 'S/N 66137', 'Forney LT-704-2 Compression Machine (E-4-02)', 'Range 60/400K', '2003-01-06', 1443, '1/6/2003', NULL), (1444, 1444, 'S/N 109', 'Brainard-Kilman LVDT Model E-310 (Channel #20)', 'Range: .43 Inches (D6027-96el)', '2000-01-18', 1444, '1/18/2000', NULL), (1445, 1445, 'S/N 75024', 'Forney LT-30-2DR Compression Machine (UTM) (E-4-02)', 'Range: 10K/60K', '2004-01-13', 1445, '1/13/2004', NULL), (1446, 1446, 'S/N MG4070', 'Wykeham Farrance LVDT Triaxial (D-6027)', 'Range: 50mm', '2005-02-21', 1446, '2/21/2005', NULL), (1447, 1447, 'S/N 5546-00100', 'Forney LT-500-CS-100-2 Digital Compression Machine (E-4)', 'Range 2.5K to 350K ', '2009-01-20', 1447, '1/20/2009', NULL), (1448, 1448, 'S/N 73247 ', 'Forney QC-50 Compression Machine (E-4)', 'Range: 400K', '2006-02-01', 1448, '2/1/2006', NULL), (1449, 1449, 'S/N 80191', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2006-01-31', 1449, '1/31/2006', NULL), (1450, 1450, 'S/N 5609', 'Forney QC-200 Compression Machine (Electric Pump) ', 'Range: 200K (E-4-02)', '2004-02-02', 1450, '2/2/2004', NULL), (1451, 1451, 'S/N 75024', 'Forney LT-30-2DR Compression Machine (UTM) (E-4-02)', 'Range: 10K/60K', '2004-01-13', 1451, '1/13/2004', NULL), (1452, 1452, 'S/N 11042493-JD3', 'Dalec Digital Pressure Indicator 3232-S2 ', 'Range: 15 psi to 105 psi', '2006-07-25', 1452, '7/25/2006', NULL), (1453, 1453, 'S/N 98039', 'Forney F-250F-F96 Digital Compression Machine (E-4)', 'Range 300 lbs. to 60,000 lbs.', '2006-02-02', 1453, '2/2/2006', NULL), (1454, 1454, 'S/N 8950432', 'Com-Ten Universal Testing Machine (E-4)', 'Range: 20 lbs. to 400 lbs.', '2006-02-20', 1454, '2/20/2006', NULL), (1455, 1455, 'S/N 7', 'Extra Gauge-Jack #4 (OOS) (E-4 & PCI)', 'Range: 4K', '2007-01-30', 1455, '1/30/2007', NULL), (1456, 1456, 'S/N 97122', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 225K', '2009-01-28', 1456, '1/28/2009', NULL), (1457, 1457, 'S/N 5081671', 'Eilon Engineering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Ton', '2007-01-09', 1457, '1/9/2007', NULL), (1458, 1458, 'S/N 13296-011806', 'Testmark CM-2500-CS-100-2A Compression Machine', 'Range: 250K', NULL, 1458, 'New', NULL), (1459, 1459, 'S/N 1136', 'Vacuum Model 9210 w/ absolute pressure gauge', 'Range: ', NULL, 1459, 'New ', NULL), (1460, 1460, 'S/N 98146', 'Forney F-250-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-02-25', 1460, '2/25/2008', NULL), (1461, 1461, 'S/N 9514', 'Soiltest CT-7250-2 Digital Compression Machine w/ADR Digital', 'Range: 2K to 250K (E4)', '2007-01-10', 1461, '1/10/2007', NULL), (1462, 1462, 'S/N 26603G', 'Gilson Mdl. MC-250 CP Compression Machine w-Pie Indicator (E-4)', 'Range: 250K', '2006-01-10', 1462, '1/10/2006', NULL), (1463, 1463, 'S/N 89100-100628', 'Forney QC-400C-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2012-07-10', 1463, '7/10/2012', NULL), (1464, 1464, 'S/N 89035', 'Forney QC-410-2D Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-07-09', 1464, '7/9/2013', NULL), (1465, 1465, 'S/N 618', 'Detroit Tester UT-4 Universal Testing Machine (E-4)', 'Range: 10K / 40K', '2010-07-12', 1465, '7/12/2010', NULL), (1466, 1466, 'S/N 94082', 'Forney F-250F-02 Compression Machine (E-4)', 'Range: 30K / 250K ', '2013-07-17', 1466, '7/17/2013', NULL), (1467, 1467, 'S/N 86014', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-05-02', 1467, '5/2/2013', NULL), (1468, 1468, 'S/N 9/94-08333', 'SBEL Model PLT-10-CS-100-1S Point Loader (E-4 & 2%)', 'Range: 100 lbs to 10K ', '2013-07-22', 1468, '7/22/2013', NULL), (1469, 1469, 'S/N 1223534', 'Elion Engineerign RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2006-07-21', 1469, '7/21/2006', NULL), (1470, 1470, 'S/N 2051016', 'Elion Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K ', '2006-07-21', 1470, '7/21/2006', NULL), (1471, 1471, 'S/N 3061184', 'Eilon Engineering RON 2000 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 30 Ton ', '2007-07-11', 1471, '7/11/2007', NULL), (1472, 1472, 'S/N 1271417', 'Eilon Engineering RON 2100 S-12 Load Cell (ManSp & 0.1% FS)', 'Range: 25K', '2007-06-22', 1472, '6/22/2007', NULL), (1473, 1473, 'S/N 1000', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI', '2007-07-24', 1473, '7/24/2007', NULL), (1474, 1474, 'S/N 70116', 'Forney LT-704-2 Compression Machine (E-4)', 'Range 60/400K', '1997-07-31', 1474, '7/31/1997', NULL), (1475, 1475, 'S/N 77060', 'Forney FT-31 Compression Machine', 'Range 250K', '2000-05-17', 1475, '5/17/2000', NULL), (1476, 1476, 'S/N 63221', 'Tinius Olsen Type LC Compression Machine', 'Range 60/600K', '1997-07-15', 1476, '7/15/1997', NULL), (1477, 1477, 'S/N 179030', 'Tinius Olsen Super L Digital Compression Machine', 'Range: 200 lbs. to 60,000 lbs.', '2001-07-24', 1477, '7/24/2001', NULL), (1478, 1478, 'S/N 261-08006', 'Wafios KKM200 Chain Tester w/ Hardy 2151/20WC Digital', 'Range 220,000#', '1997-07-24', 1478, '7/24/1997', NULL), (1479, 1479, 'S/N 69178', 'Forney QC-150 Compression Machine', 'Range 300K', '1999-07-12', 1479, '7/12/1999', NULL), (1480, 1480, 'S/N 81516', 'Tinius Olsen Super L Compression Machine (E-4)', 'Range 8/160/400K', '1995-11-02', 1480, '11/2/1995', NULL), (1481, 1481, 'S/N R-69880', 'Riehle CCTM Compression Machine (E-4)', 'Range 60/300K', '2000-07-13', 1481, '7/13/2000', NULL), (1482, 1482, 'S/N 90004-99106', 'Forney QC-400C-100-3 Digital Comp. Machine w/ system 2000', 'Range 4K to 400K (E-4)', '1999-08-12', 1482, '8/12/1999', NULL), (1483, 1483, 'S/N 69017', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 250K', '1997-07-19', 1483, '7/19/1997', NULL), (1484, 1484, 'S/N 5896', 'Forney PT-125 Pipe Tester (E-4 & C-497)', 'Range 35/250K', '2000-08-02', 1484, '8/2/2000', NULL), (1485, 1485, 'S/N 89072', 'Forney FT-250F-01 Compression Machine', 'Range 250K', '1995-07-25', 1485, '7/25/1995', NULL), (1486, 1486, 'S/N 5986', 'Dillon Universal Testing Machine (BROKE) (E-4)', 'Range: 2,000 kg', '2005-07-12', 1486, '7/12/2005', NULL), (1487, 1487, 'S/N R59216', 'Riehle MA 60 Universal Testing Machine (E-4)', 'Range 12/60K', '1999-07-28', 1487, '7/28/1999', NULL), (1488, 1488, 'S/N 5950', 'Forney FT-21 Compression Machine (E-4)', 'Range 30/250K', '1997-08-04', 1488, '8/4/1997', NULL), (1489, 1489, 'S/N 69156', 'Forney FT-40-E-400 Digital Compression Machine (E-4)', 'Range 20K to 250K', '1998-07-14', 1489, '7/14/1998', NULL), (1490, 1490, 'S/N 87115-0507050', 'Forney QC-410-CS-100-2A Digital Compression Machine (E-4)', 'Range: 400K', '2005-08-01', 1490, '8/1/2005', NULL), (1491, 1491, 'S/N 1965', 'Soiltest CT-710 Compression Machine', 'Range 250K', '1995-07-10', 1491, '7/10/1995', NULL), (1492, 1492, 'S/N 91026', 'Forney FT-250F-01 Compression Machine (E-4 & C-39)', 'Range: 30K / 250K', '2003-07-28', 1492, '7/28/2003', NULL), (1493, 1493, 'S/N 839', 'A. H. Emery Pipe Tester SG-839 (E-4 & C-497)', 'Range 200K', '1996-07-19', 1493, '7/19/1996', NULL), (1494, 1494, 'S/N ', 'Forney Compression Machine (E-4)', 'Range:', NULL, 1494, 'New', NULL), (1495, 1495, 'S/N 68029', 'Forney FT-40-DR Analog Compression Machine', 'Range: 30K / 250K', '2004-07-14', 1495, '7/14/2004', NULL), (1496, 1496, 'S/N 71020', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 250K', '1997-07-16', 1496, '7/16/1997', NULL), (1497, 1497, '', 'Pump ', '', '0000-00-00', 1497, '', NULL), (1498, 1498, 'S/N 07154', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-07-16', 1498, '7/16/2007', NULL), (1499, 1499, 'S/N 87071', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2005-07-19', 1499, '7/19/2005', NULL), (1500, 1500, 'S/N 12202', 'Testmark Digital Compression Machine-Model CM 2500-LD (E-4)', 'Range: 250K', '2006-08-02', 1500, '8/2/2006', NULL), (1501, 1501, 'S/N 16002G', 'Gilson Model MC 250BD-CS-100-PIR Digital Comp. Mach. (E-4)', 'Range: 3K to 250K', '2009-07-20', 1501, '7/20/2009', NULL), (1502, 1502, 'S/N 1346/100141', 'Custom Scientific Instruments CS-235M-010 Compression Machine', 'Range: 11 lbs to 500 lbs (E-4)', '2007-07-09', 1502, '7/9/2007', NULL), (1503, 1503, 'S/N 94', 'Soiltest CT-711 Compression Machine (E-4)', 'Range: 200K', '2006-07-12', 1503, '7/12/2006', NULL), (1504, 1504, 'S/N 65137-02008', 'Forney QC-225-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 340K', '2008-07-16', 1504, '7/16/2008', NULL), (1505, 1505, 'S/N 1016', 'Baldwin Model 300 CT Compression Machine (E-4)', 'Range: 12K / 60K / 300K', '2007-07-17', 1505, '7/17/2007', NULL), (1506, 1506, 'S/N 82078', 'Forney FT-40 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2007-07-18', 1506, '7/18/2007', NULL), (1507, 1507, 'S/N 674', 'Soiltest CT-710 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2007-07-30', 1507, '7/30/2007', NULL), (1508, 1508, 'S/N 563-0606307', 'Soiltest CT-771 Digital Compression Machine (E-4)', 'Range: 200K', '2006-08-15', 1508, '8/15/2006', NULL), (1509, 1509, 'S/N 68263', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2008-07-07', 1509, '7/7/2008', NULL), (1510, 1510, 'S/N 04020', 'Forney FX-700F-DR2001 Digital Compression Machine (E-4)', 'Range: 700K', '2004-06-16', 1510, '6/16/2004', NULL), (1511, 1511, 'S/N 17405', 'Testmark CM-2500 DI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-08-16', 1511, '8/16/2007', NULL), (1512, 1512, 'S/N 96076', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2008-07-28', 1512, '7/28/2008', NULL), (1513, 1513, 'S/N 92101', 'Cal Teck CT-250K-1R Compression Machine (E-4)', 'Range: 15K to 250K', '2013-07-03', 1513, '7/3/2013', NULL), (1514, 1514, 'S/N 88016-060626', 'Forney FT-40-CS-100-2A Cylinder Frame Dig. Comp. Machine (E-4)', 'Range: 2.5K to 250K Channel #0', '2013-07-01', 1514, '7/1/2013', NULL), (1515, 1515, 'S/N 81085', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2009-06-29', 1515, '6/29/2009', NULL), (1516, 1516, 'S/N 65012', 'Forney QC-150-DR Compression Machine(E-4)(@Hovensa Refinery)', 'Range: 30K / 300K', '2010-07-07', 1516, '7/7/2010', NULL), (1517, 1517, 'S/N 9108 ', 'Soiltest CT-755B Compression Machine (E-4)', 'Range: 250K', '2013-07-04', 1517, '7/4/2013', NULL), (1518, 1518, 'S/N 250', 'Soiltest CT-711 Compression Machine (E-4)', 'Range: 250K ', '2013-07-01', 1518, '7/1/2013', NULL), (1519, 1519, 'S/N 10110', 'Forney F-325-EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K ', '2013-07-03', 1519, '7/3/2013', NULL), (1520, 1520, 'S/N 1688-0505111', 'Soiltest CT-710-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-07-06', 1520, '7/6/2012', NULL), (1521, 1521, 'S/N 79159', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K ', '2012-07-06', 1521, '7/6/2012', NULL), (1522, 1522, 'S/N 79159', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K (High Range Only)', '2012-07-06', 1522, '7/6/2012', NULL), (1523, 1523, 'S/N 69083', 'Forney FT-31 Compression Machine (E-4)', 'Range: 250K', '2013-07-04', 1523, '7/4/2013', NULL), (1524, 1524, 'S/N 09044 ', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-07-02', 1524, '7/2/2013', NULL), (1525, 1525, 'S/N', 'Testmark Digital Compression Machine (E-4)', 'Range: ', NULL, 1525, 'New', NULL), (1526, 1526, 'S/N 99192', 'Forney F-25E-DR2000 Digital Compression Machine (E-4-02)', 'Range: 3K to 250K', '2003-11-21', 1526, '11/21/2003', NULL), (1527, 1527, 'S/N 1510', 'Soiltest CT-710 Compression Machine', 'Range 250K', '1998-06-10', 1527, '6/10/1998', NULL), (1528, 1528, 'S/N 89123', 'Forney FT-250F-01', 'Range: 25K to 250K', '2003-07-01', 1528, '7/1/2003', NULL), (1529, 1529, 'S/N 99192', 'Forney F-25E-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2003-11-21', 1529, '11/21/2003', NULL), (1530, 1530, 'S/N 90015', 'Forney FT-250F-02 Compression Machine (E-4)', 'Range: 30K / 250K', '2013-06-05', 1530, '6/5/2013', NULL), (1531, 1531, 'S/N 94009', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2013-06-03', 1531, '6/3/2013', NULL), (1532, 1532, 'S/N 10140', 'Forney 325EX-B-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 325K ', '2013-06-04', 1532, '6/4/2013', NULL), (1533, 1533, 'S/N 84025', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2012-06-05', 1533, '6/5/2012', NULL), (1534, 1534, 'S/N 05039/092000', 'Forney F-50EX-F/LA-270 Digital Comp. Machine (E-4)', 'Range: 5K to 500K Cylinder Frame ', '2013-06-04', 1534, '6/4/2013', NULL), (1535, 1535, 'S/N 2035-1332', 'Brainard Killman Pressure Transducer w/E-124 Digital (D-5720)', 'Range: 15 psi to 150 psi', '2013-06-04', 1535, '6/4/2013', NULL), (1536, 1536, 'S/N LP-337', 'Geotac Linear LVDT (D-6027)', 'Range: 3 inches ', '2012-06-06', 1536, '6/6/2012', NULL), (1537, 1537, 'S/N 5638-00108', 'Forney PT-75-CS-100-2 Pipe Tester (E-4 & C-497)', 'Range: 3K to 150K', '2011-06-08', 1537, '6/8/2011', NULL), (1538, 1538, 'S/N 77068', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-06-03', 1538, '6/3/2013', NULL), (1539, 1539, 'S/N 76054', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2013-06-05', 1539, '6/5/2013', NULL), (1540, 1540, 'S/N 01133', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-04', 1540, '6/4/2013', NULL), (1541, 1541, 'S/N 68176-0407202', 'Forney LT-702-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-06-04', 1541, '6/4/2013', NULL), (1542, 1542, 'S/N 0102', 'ELE Mdl. 36-0660/02 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-06', 1542, '6/6/2013', NULL), (1543, 1543, 'S/N 6150', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2013-06-05', 1543, '6/5/2013', NULL), (1544, 1544, 'S/N 070707', 'Testmark CM-2500-DI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-06-05', 1544, '6/5/2012', NULL), (1545, 1545, 'S/N 74047', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 30K / 250K', '2013-06-04', 1545, '6/4/2013', NULL), (1546, 1546, 'S/N 07021', 'Forney F-25EX-F-DR-500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-10', 1546, '6/10/2013', NULL), (1547, 1547, 'S/N 13068', 'Forney F-325F-CPILOT Digital Compression Machine (E-4)', 'Range:3K to 325K', '2013-08-05', 1547, '8/5/2013', NULL), (1548, 1548, 'S/N 1001', 'Laboratory Testing Supply Compression Machine (E-4)', 'Range: 300K', '2013-06-11', 1548, '6/11/2013', NULL), (1549, 1549, 'S/N 0352-03111', 'Boltester Mdl. BTT-CS-100-1Z Digital Tensile Machine (E-4)', 'Range: 1K to 60K', '2013-06-12', 1549, '6/12/2013', NULL), (1550, 1550, 'S/N 01192', 'Forney F-25F-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-12', 1550, '6/12/2013', NULL), (1551, 1551, 'S/N 060506', 'Service Physical CM-250-CS-100-2A Digital Comp Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-12', 1551, '6/12/2013', NULL), (1552, 1552, 'S/N 1707-1-01032', 'Soiltest ADR-1000 Compression Machine w/ Microhead Digital ', 'Range: 3K to 250K (E-4)', '2013-06-11', 1552, '6/11/2013', NULL), (1553, 1553, 'S/N 2651', 'Service Physical Tester Mdl. PCHD250 Comp. Machine (E-4)', 'Range: 30K / 250K', '2013-06-11', 1553, '6/11/2013', NULL), (1554, 1554, 'S/N 15203H', 'Testmark CM 2500 SD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-11', 1554, '6/11/2013', NULL), (1555, 1555, 'S/N 72029-99103', 'Forney QC-150-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-06-12', 1555, '6/12/2013', NULL), (1556, 1556, 'S/N 06229', 'Forney F-502-F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-06-18', 1556, '6/18/2013', NULL), (1557, 1557, 'S/N 79545-97104', 'Wykeham-Farrance CS-100-3 Digital Compression Machine (E-4)', 'Range: 2K to 400K ', '2013-06-18', 1557, '6/18/2013', NULL), (1558, 1558, 'S/N 23700', 'Testmark CM-300-LD Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-06-10', 1558, '6/10/2013', NULL), (1559, 1559, 'S/N 98086', 'Forney FT-400E-GBII-SPL Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-06-19', 1559, '6/19/2013', NULL), (1560, 1560, 'S/N 13507', 'Testmark CM-2500-DI Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-18', 1560, '6/18/2013', NULL), (1561, 1561, 'S/N 76115-041101', 'Forney LT-1000-CS-100-7 Compression Machine w/ 2 Gauges (E-4)', 'Digital: 3K to 600K Gauges: 75K / 600K', '2013-06-19', 1561, '6/19/2013', NULL), (1562, 1562, 'S/N 092302', 'Geotest Mdl. S2213A Direct Shear Machine (E-4)', '', '2013-06-19', 1562, '6/19/2013', NULL), (1563, 1563, 'S/N 05003', 'Forney F-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K (ID# 001853)', '2013-06-19', 1563, '6/19/2013', NULL), (1564, 1564, 'S/N 261', 'Brainard Killman Consolidator 5-450 (E-4 & Man Specs)', 'Range: 1/8 TSF to 22 TSF', '2008-06-25', 1564, '6/25/2008', NULL), (1565, 1565, 'S/N 07128', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-06-19', 1565, '6/19/2012', NULL), (1566, 1566, 'S/N 321772/11', 'Eilon Engineering RON Load Cell 2501 S-03 Asset # M263721', 'Range: 6K (ManSp & 0.1% FS)', '2006-07-21', 1566, '7/21/2006', NULL), (1567, 1567, 'S/N 05054270/9', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 KG', '2007-08-13', 1567, '8/13/2007', NULL), (1568, 1568, 'S/N 01063319', 'Eilon Engineering RON 2125 H-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', '2007-06-27', 1568, '6/27/2007', NULL), (1569, 1569, 'S/N 12561044/3 ', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSp & 0.1% FS)', 'Range: 125 Tons', '2006-03-17', 1569, '3/17/2006', NULL), (1570, 1570, 'S/N 3033601/7', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 50K ', '2009-01-09', 1570, '1/9/2009', NULL), (1571, 1571, 'S/N 961', 'Digital Monometer', '', NULL, 1571, 'New', NULL), (1572, 1572, 'S/N NAL-0998', 'Columbine Tensometer (In House)', 'Range: 50lbs to 500 lbs', '2002-06-18', 1572, '6/18/2002', NULL), (1573, 1573, 'S/N 458', 'Durham Geo E-214 Load Cell (E-4)', 'Range: 5 lbs', '2005-06-23', 1573, '6/23/2005', NULL), (1574, 1574, 'S/N 006993', 'Enerpac Post Tension Jack Mdl. PCH603 (E-4 & Man Specs)', 'Range: 100K', '2007-06-19', 1574, '6/19/2007', NULL), (1575, 1575, '', 'Panel Meter DP41-S', '', NULL, 1575, 'New', NULL), (1576, 1576, 'S/N 29 (D150T)', 'Hunter Force Gauge - Tensile', 'Cap: 150#', '2004-06-08', 1576, '6/8/2004', NULL), (1577, 1577, 'S/N 02074578/7', 'Eilon Engineering RON 2125 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', '2008-06-08', 1577, '6/8/2008', NULL), (1578, 1578, 'S/N 82056', 'Forney QC-200-DR Compression Machine (E-4)', 'Range 30/400K', '2002-06-14', 1578, '6/14/2002', NULL), (1579, 1579, 'S/N 74230', 'Forney FT-40 Compression Machine', 'Range: 250K', '2003-07-10', 1579, '7/10/2003', NULL), (1580, 1580, 'S/N 167125', 'Tinius Olsen Compression Machine with Series 290 Digital ', 'Range 2.4/12/60/120K (E-4)', '2002-06-20', 1580, '6/20/2002', NULL), (1581, 1581, 'S/N 84032', 'Forney F-25F-DR500 Digital Compression Machine (E4)', 'Range: 3K to 240K', '2004-07-06', 1581, '7/6/2004', NULL), (1582, 1582, 'S/N 84133', 'Forney FT-40 Compression Machine (E-4)', 'Range: 3K-30K and 25K-250K', '2003-06-19', 1582, '6/19/2003', NULL), (1583, 1583, 'S/N 79143', 'Forney FT-40 Compression Machine (SOLD)', 'Range 250K', '1998-06-03', 1583, '6/3/1998', NULL), (1584, 1584, 'S/N 11094', 'Testmark CM 2500 G 1Compression Machine (E-4)', 'Range 250K', '1998-06-08', 1584, '6/8/1998', NULL), (1585, 1585, 'S/N 79209', 'Forney FT-250-F1 Compression Machine (E-4)', 'Range 250K', '1998-06-26', 1585, '6/26/1998', NULL), (1586, 1586, 'S/N 322', 'Pine Instrument 850T Asphalt Press (E-4)', 'Range: 2.5/5/10K', '2000-06-12', 1586, '6/12/2000', NULL), (1587, 1587, '', '', '', '0000-00-00', 1587, '', NULL), (1588, 1588, 'S/N 57157', 'Forney FT-10 Compression Machine (E-4)', 'Range 250K', '1999-06-17', 1588, '6/17/1999', NULL), (1589, 1589, 'S/N 71019', 'Forney FT-40-DR Compression Machine (E-4)', 'Range ', '0000-00-00', 1589, '', NULL), (1590, 1590, 'S/N 13998', 'Testmark Machine Digital CM 5000 MT (E-4)', 'Ranges 250K/500K', '2000-06-22', 1590, '6/22/2000', NULL), (1591, 1591, 'S/N 96045', 'Forney F250F-DR2000 Digital Compression Machine (E-4)', 'Range: 4K to 250 K', '2000-06-14', 1591, '6/14/2000', NULL), (1592, 1592, 'S/N', 'Single Gauge Compression Testing Machine', 'Range: 250K', NULL, 1592, 'NEW', NULL), (1593, 1593, 'S/N 5143', 'Accutek Spectester / Tensile tester (E-4)', 'Range 20 lb. to 5,000 lb.', '2003-06-11', 1593, '6/11/2003', NULL), (1594, 1594, 'S/N 80216', 'Forney PT-75 Pipe Tester (E-4 & C-497)', 'Range 30/150K', '2000-06-28', 1594, '6/28/2000', NULL), (1595, 1595, 'S/N 92026', 'Forney FT-250F-01 Compression Machine (E-4) (SOLD)', 'Range: 250K', '2002-07-24', 1595, '7/24/2002', NULL), (1596, 1596, 'S/N 2746-03108', 'Soiltest CT-710-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K - 250K', '2004-07-19', 1596, '7/19/2004', NULL), (1597, 1597, 'S/N 9623 ', 'Soiltest CT-7250 Digital Compression Machine (E-4)', 'Range 250K', '2001-02-14', 1597, '2/14/2001', NULL), (1598, 1598, 'S/N 94019', 'Forney F-250F-01 Compression Machine (E-4)', 'Range 250K', '2003-07-08', 1598, '7/8/2003', NULL), (1599, 1599, 'S/N 83086', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2005-06-06', 1599, '6/6/2005', NULL), (1600, 1600, 'S/N 02095', 'Forney F-25EX-E-DR 500 Digital Comp Machine (E-4)', 'Range: 3K - 250K', '2002-06-19', 1600, '6/19/2002', NULL), (1601, 1601, 'S/N 73213-99110', 'Forney QC-150-100-2 Digital Compression Machine (E-4)', 'Range 30/300K', '2000-06-15', 1601, '6/15/2000', NULL), (1602, 1602, 'S/N 81157', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2000-06-27', 1602, '6/27/2000', NULL), (1603, 1603, 'S/N 85047', 'Forney FT-21 Compression Machine (E-4)', 'Range: 250K', '2001-06-05', 1603, '6/5/2001', NULL), (1604, 1604, 'S/N 81141', 'Forney FT-40 Compression Machine (E-4)', 'Range 250K', '2000-06-28', 1604, '6/28/2000', NULL), (1605, 1605, 'S/N R70369', 'Riehle Compression Machine Model C-60 (E-4)', 'Range 12/60K', '1998-07-07', 1605, '7/7/1998', NULL), (1606, 1606, 'S/N 70059', 'Forney FT-40-DR Compression Machine (Moved) (E-4)', 'Range: 30K and 250K', '2005-09-15', 1606, '9/15/2005', NULL), (1607, 1607, 'S/N 80888', 'OTC Pressure Gauge (E-4)', 'Cap: 10,000 psi', '1998-06-19', 1607, '6/19/1998', NULL), (1608, 1608, 'S/N 99130', 'Forney F25-F96 Digital Compression Machine (E-4)', 'Range: 2.5K', '2004-06-29', 1608, '6/29/2004', NULL), (1609, 1609, 'S/N 97003', 'Forney F-500F-LC1 Digital Compression Machine (E-4)', 'Range 500K', '1998-06-24', 1609, '6/24/1998', NULL), (1610, 1610, 'S/N 12098', 'Testmark Compression Machine', 'Range 250K', '0000-00-00', 1610, '', NULL), (1611, 1611, 'S/N 02113', 'Forney FX 250F-Pilot Digital Compression Machine(MOVED) (E-4)', 'Range: 3,000 lbs to 300,000 lbs', '2004-06-24', 1611, '6/24/2004', NULL), (1612, 1612, 'S/N 90006067', 'Digital Com-Ten System Model: 952KVC0250 (E-4)', 'Range: 1K', '2002-06-25', 1612, '6/25/2002', NULL), (1613, 1613, 'S/N 98035', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range 250K', '2001-06-21', 1613, '6/21/2001', NULL), (1614, 1614, 'S/N 87171', 'Forney QC-410-02 Compression Machine', 'Range 30/400K', '1997-06-17', 1614, '6/17/1997', NULL), (1615, 1615, 'S/N 766', 'Pine Asphalt Tester Model AF-850T (E-4)', 'Range 2.5/5/10K', '2002-05-02', 1615, '5/2/2002', NULL), (1616, 1616, 'S/N 69158', 'Forney FT-40-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-27', 1616, '6/27/2013', NULL), (1617, 1617, 'S/N 14100 ', 'Testmark CM-3000-LD Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2008-06-19', 1617, '6/19/2008', NULL), (1618, 1618, 'S/N 40241-188561', 'Tinius Olsen Digital Universal Machine (E-4) (OOS)', 'Range: 400 to 120K', '2006-02-06', 1618, '2/6/2006', NULL), (1619, 1619, 'S/N 15208', 'Skidmore-Wihelm Bolt Tension Calibrator M (E-4 & 2% ManSpecs)', 'Range: 100K', '2013-03-21', 1619, '3/21/2013', NULL), (1620, 1620, 'S/N 6413-9306', 'Soiltest CT-755B Compression Machine (E-4)', 'Range: 250K', '2008-06-26', 1620, '6/26/2008', NULL), (1621, 1621, 'S/N 116212', 'Proceq Type N-34 Hammer ( IN HOUSE) (C-805-97)', 'Range: 78 - 82', '2003-06-21', 1621, '6/21/2003', NULL), (1622, 1622, 'S/N 92125-94006', 'Forney FT-250F-CS100 Compression Machine (E-4)\n', 'Range: 3K-250K', '2005-06-21', 1622, '6/21/2005', NULL), (1623, 1623, '', '', '', '0000-00-00', 1623, '', NULL), (1624, 1624, 'S/N 07134 ', 'Forney F-25EX-R-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-06-27', 1624, '6/27/2007', NULL), (1625, 1625, 'S/N 11494', 'Testmark GM2500 2G Digital Compression Machine (E-4)', 'Range: 250K', NULL, 1625, 'New', NULL), (1626, 1626, 'S/N 02020', 'Forney F-25EX-F-96 Digital Compression Machine (E-4)', 'Range: 400 lbs to 30,000 lbs (MOVED)', '2008-06-24', 1626, '6/24/2008', NULL), (1627, 1627, 'S/N 642', 'Instron Model 1011Tensile Testing Machine (OOS) (E-4)', 'Range: 10 lbs / 20 lbs / 50 lbs / 100 lbs ', '2008-06-11', 1627, '6/11/2008', NULL), (1628, 1628, 'S/N 1336X72', 'Lotes Model LT-10 Digital Compression Machine (MOVED) (E-4)', 'Range: 200 lbs to 10,000 lbs', '2008-06-02', 1628, '6/2/2008', NULL), (1629, 1629, 'S/N C44735', 'Scot Tensile Tester Model J', 'Range: 50 lbs to 150 lbs', '2006-07-17', 1629, '7/17/2006', NULL), (1630, 1630, 'S/N 72152', 'Forney/Tinius Olsen T-O/72152 Compression Machine ', 'Range: 30K / 300K (E-4)', '2008-06-03', 1630, '6/3/2008', NULL), (1631, 1631, 'S/N 87204-02017', 'Forney LT-31-CS-100-2 Digital Compression Machine (E-4)', 'Range: 100 lbs to 10K', '2007-06-19', 1631, '6/19/2007', NULL), (1632, 1632, 'S/N 88352', 'Tinius Olsen Electomatic with MTest Windows (E-4)', 'Range: 200 lbs to 20,000 lbs', '2007-06-12', 1632, '6/12/2007', NULL), (1633, 1633, 'S/N 01018', 'Forney F-50F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 500K', '2007-06-12', 1633, '6/12/2007', NULL), (1634, 1634, 'S/N Unit #1', 'Simms Post Tension Jack (E-4 & PCI)', 'Range: 4K (400 psi) / 60K (6,000 psi)', '2008-02-11', 1634, '2/11/2008', NULL), (1635, 1635, 'S/N 01079', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 3K to 250K (Moved)', '2011-06-21', 1635, '6/21/2011', NULL), (1636, 1636, 'S/N 58142', 'Forney FT-26 Compression Machine with hand pump (E-4)', 'Range: 200K', '2007-06-26', 1636, '6/26/2007', NULL), (1637, 1637, 'S/N 01032', 'Forney F-25F-F96 Digital Compression Machine', 'Range: 4K to 250K', '2001-06-05', 1637, '6/5/2001', NULL), (1638, 1638, 'S/N 17083-5103', 'ELE ADR 2000 Digital Compression Machine (E-4)', 'Range: 450K', '2000-03-23', 1638, '3/23/2000', NULL), (1639, 1639, 'S/N 6485', 'Soiltest CT-751B Compression Machine (E-4)', 'Range: 30K to 250K', '2000-07-05', 1639, '7/5/2000', NULL), (1640, 1640, 'S/N 1147-6-431', 'ELE Model 2000 Digital Compression Tester w/CS-100', 'Range 20 to 2,000 KN', '1999-07-08', 1640, '7/8/1999', NULL), (1641, 1641, 'S/N 34006G', 'Gilson MC-400PR Digital Compression Machine (E-4)', 'Range: 400 K', '2006-11-07', 1641, '11/7/2006', NULL), (1642, 1642, 'S/N A940885-7-94', 'ATS Model 910 Universal (tension & compression) (OOS) (E-4)', '', '2001-01-18', 1642, '1/18/2001', NULL), (1643, 1643, 'S/N 42679', 'Bynum MPU-3 Prestress Jack (E-4 & PCI)', 'Range: 35K ', '2011-05-27', 1643, '5/27/2011', NULL), (1644, 1644, 'S/N 8938', 'Soiltest CT-6500-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 675K (ID# 26957)', '2010-11-30', 1644, '11/30/2010', NULL), (1645, 1645, 'S/N 99024', 'Forney F-400F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2011-12-07', 1645, '12/7/2011', NULL), (1646, 1646, 'S/N 101750', 'Tinius Olsen Super L Compression Machine (E-4)', 'Range: 60K ', '2010-12-03', 1646, '12/3/2010', NULL), (1647, 1647, 'S/N 22905G', 'Gilson MC-300CL Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2009-12-14', 1647, '12/14/2009', NULL), (1648, 1648, 'S/N 070818 ', 'Testmark CM-2500-SD Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K', '2011-06-01', 1648, '6/1/2011', NULL), (1649, 1649, 'S/N 02032', 'Forney F-25EX-F-F96 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2008-05-15', 1649, '5/15/2008', NULL), (1650, 1650, 'S/N 08085', 'Forney LT-1000-TPILOT Digital Compression Machine (E-4)', 'Range: 6K to 600K', '2011-12-05', 1650, '12/5/2011', NULL), (1651, 1651, 'S/N', 'Troxler Gyratory Model 4141 (D7115-10)', 'Range:', NULL, 1651, 'New', NULL), (1652, 1652, 'S/N 148', 'CDI Model 5510 Single Proving Ring (E-4 & Man Specs)', 'Cap: 10 K Plant #6', '2013-06-14', 1652, '6/14/2013', NULL), (1653, 1653, 'S/N 1786 (Plant #22)', 'Pine Instrument Gyratory Compactor AFG1A(ManSpecs&AASHTO)', 'Cap:5KN/10.5KN 152.4mm 30RPM ', '2012-12-11', 1653, '12/11/2012', NULL), (1654, 1654, 'S/N 21401H', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2011-12-08', 1654, '12/8/2011', NULL), (1655, 1655, 'S/N 9902-0505182', 'Soiltest CT-7350A-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 350K', '2013-06-10', 1655, '6/10/2013', NULL), (1656, 1656, 'S/N 3445', 'Brainard-Kilman AM 100 Digital Marshall Tester (Plant #1) (E-4)', 'Range: 200 lbs to 6,000 lbs', '2012-06-16', 1656, '6/16/2012', NULL), (1657, 1657, 'S/N 63032', 'Forney LT-800-2 Compression Machine (E-4) ', 'Range: 25K / 250K ', '2012-12-13', 1657, '12/13/2012', NULL), (1658, 1658, 'S/N 111012', 'Testmark CM-2500LXI Digital Compression Machine (E-4)', 'Range 250K', NULL, 1658, 'New', NULL), (1659, 1659, 'S/N 3151', 'Humbolt Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-06-14', 1659, '6/14/2013', NULL), (1660, 1660, 'S/N 17404', 'Testmark CM-2500LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-12-06', 1660, '12/6/2010', NULL), (1661, 1661, 'S/N 624', 'Pine Instrument AF-850-T Asphalt Tester w/ Test Spring #516', 'Range: 2.5K / 5K / 10K Plant #1 (E-4)', '2013-06-14', 1661, '6/14/2013', NULL), (1662, 1662, 'S/N 0106/130423-103', 'ELE International 36-0655/02PI Compression Machine w/ E-Pi Dig.', 'Range: 2.5K to 250K (E-4)', '2013-06-12', 1662, '6/12/2013', NULL), (1663, 1663, 'S/N 96051-110511-142', 'Forney F-500G-CS-100-2B Digital Compression Machine (ID #36584)', 'Range: 4K to 500K (E-4)', '2013-06-11', 1663, '6/11/2013', NULL), (1664, 1664, 'S/N 70040', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 300K ', '2013-06-11', 1664, '6/11/2013', NULL), (1665, 1665, 'S/N 13600', 'Testmark CM-2500-CS-100-1S Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-11', 1665, '6/11/2013', NULL), (1666, 1666, 'S/N 64198', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K', '2013-06-12', 1666, '6/12/2013', NULL), (1667, 1667, 'S/N 6119', 'Soiltest CT-755A Compression Machine (E-4)', 'Range: 250K', '2013-06-10', 1667, '6/10/2013', NULL), (1668, 1668, 'S/N 85091229', 'Brainard-Kilman C 130-GB Digital Comp. Machine (E-4) ', 'Range: 3K to 300K', '2013-06-10', 1668, '6/10/2013', NULL), (1669, 1669, 'S/N 185', 'Brainard Kilman CM-200PIR Digital Compression Machine (E-4)', 'Range: 5K to 300K ', '2012-06-13', 1669, '6/13/2012', NULL), (1670, 1670, 'S/N 87111754', 'Brainard Kilman C-120 Compression Machine (E-4)', 'Range: 25K to 250K ', '2013-06-18', 1670, '6/18/2013', NULL), (1671, 1671, 'S/N 93295', 'Hercules-Tucker HSJ Prestress Jack (E-4 & PCI)', 'Range: 5K / 35K', '2013-06-14', 1671, '6/14/2013', NULL), (1672, 1672, 'S/N 8818-9301-03105', 'Soiltest CT-6200-CS-100-2A Digital Comp Machine (ID#23958)', 'Range: 4K to 400K (E-4)', '2013-06-12', 1672, '6/12/2013', NULL), (1673, 1673, 'S/N 111111', 'Testmark CM-30-DIR Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K', '2013-07-10', 1673, '7/10/2013', NULL), (1674, 1674, 'S/N 9710-PIR0406', 'ELE CT-7251 CS-100-BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-12', 1674, '6/12/2013', NULL), (1675, 1675, 'S/N 1706-9-1818-0209', 'ELE Model 3614106-CS-100-2 Digital T/C Machine (E-4) (T Only)', 'Range: 110K Tension', '2013-06-12', 1675, '6/12/2013', NULL), (1676, 1676, 'S/N 102', 'Durham Geo CC-300-GB Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-06-11', 1676, '6/11/2013', NULL), (1677, 1677, 'S/N 1018', 'Pine Instrumnet AF-850-T Asphalt Tester w/Test Spring #737', 'Range: 25K/5K/10K Plant #19 (E-4)', '2012-06-15', 1677, '6/15/2012', NULL), (1678, 1678, 'S/N 00-29-0504203', 'ELE CT-7250-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-06-12', 1678, '6/12/2013', NULL), (1679, 1679, 'S/N ', 'Marshall Tester Proving Ring', 'Cap:', '0000-00-00', 1679, '', NULL), (1680, 1680, 'S/N 86117', 'Forney QC-410-D Digital Compression Machine', 'Range 4 K to 400K', '2000-06-08', 1680, '6/8/2000', NULL), (1681, 1681, 'S/N 85110', 'Forney Ft-40-Dr Compression Machine', 'Range: 30K / 250K', '2001-06-14', 1681, '6/14/2001', NULL), (1682, 1682, 'S/N 2404', 'Soiltest Compression Machine', 'Range: 250K', '2001-06-13', 1682, '6/13/2001', NULL), (1683, 1683, 'S/N 8911', 'Soiltest Versa Tester AP-1000 with 8\" gauges', 'Range 6/30K', '2000-06-13', 1683, '6/13/2000', NULL), (1684, 1684, 'S/N P-5463', 'Soiltest CT 2520 Compression Machine', 'Range 100/400K', '1997-06-12', 1684, '6/12/1997', NULL), (1685, 1685, 'S/N Unknown', 'Hayes Prestress Jack with Newport Digital', 'Ranges: 4K/35K', '2000-06-07', 1685, '6/7/2000', NULL), (1686, 1686, 'S/N 157', 'Soiltest CT-2520 Compression Machine', 'Range 30/250K', '2001-06-08', 1686, '6/8/2001', NULL), (1687, 1687, 'S/N EP-59', 'Freyssnet Jack SC2M-108 with Gauge #17391 - GONE', 'Range 580 Bar (47,500 lbs.)', '1998-09-17', 1687, '9/17/1998', NULL), (1688, 1688, 'S/N 85186', 'Hercules Prestress Jack', 'Range 35K', '1998-06-17', 1688, '6/17/1998', NULL), (1689, 1689, 'S/N 93295', 'Hercules Prestress Jack Model HSJ', 'Range 3/35K', '2001-01-17', 1689, '1/17/2001', NULL), (1690, 1690, 'S/N 424-9', 'Bynum Prestress Jack MPU-38', 'Range 2/35K', '2000-01-10', 1690, '1/10/2000', NULL), (1691, 1691, 'S/N 1368', 'Soiltest CT-710 Compression Machine', 'Range 250K', NULL, 1691, 'No cal', NULL), (1692, 1692, 'S/N 98100', 'Hayes Prestress Jack (Digital)', 'Range 4K to 35K', '1999-06-19', 1692, '6/19/1999', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (1693, 1693, 'S/N 8509112', 'Brainard Kilman Compression Machine C-110', 'Range 250K', '2001-06-08', 1693, '6/8/2001', NULL), (1694, 1694, 'S/N 164', 'Boart Longyear CM-200 with Digital CCTM', 'Range 20K to 250K', '1998-09-14', 1694, '9/14/1998', NULL), (1695, 1695, 'S/N 1024', 'Soiltest Compression Machine Model CT-710', 'Range 120,000 KG', '1999-07-10', 1695, '7/10/1999', NULL), (1696, 1696, 'S/N 185', 'Brainard Kilman CM-200 with Digital Model E40011', 'Range 40K to 330K ', '2001-06-07', 1696, '6/7/2001', NULL), (1697, 1697, 'S/N 1223', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2003-06-05', 1697, '6/5/2003', NULL), (1698, 1698, 'S/N 6237', 'Soiltest CT-755B Compression Machine (E-4)', 'Range: 250K', '1997-01-16', 1698, '1/16/1997', NULL), (1699, 1699, 'S/N 107', 'Boart Longyear CM-415 Digital Compression Machine (E-4)', 'Range: 40K / 400K (High Range Only)', '2009-05-20', 1699, '5/20/2009', NULL), (1700, 1700, 'S/N 20898', 'Soiltest PR-100 Marshall Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K (Plant #3)', '2012-06-16', 1700, '6/16/2012', NULL), (1701, 1701, 'S/N 234', 'Pine Instrument Model 850 Asphalt Tester (E-4)', 'Range: 2.5K / 5K / 10K', '2013-03-05', 1701, '3/5/2013', NULL), (1702, 1702, 'S/N 04172', 'Forney F-250F/LA270-Pilot Digital Compression Machine (E-4)', 'Range: Beam 30K / Compression 300K', '2013-03-14', 1702, '3/14/2013', NULL), (1703, 1703, 'S/N 9002 ', 'Soiltest CT-800-2-GBP Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-04', 1703, '3/4/2013', NULL), (1704, 1704, 'S/N 26218', 'ELE Unconfined Single Proving Ring (E-4 & Man Specs )', 'Range: 2K', '2013-03-06', 1704, '3/6/2013', NULL), (1705, 1705, 'S/N 1627-7-1318', 'ELE Model D-300-A Direct Shear (E-4)', '', '0000-00-00', 1705, '', NULL), (1706, 1706, 'S/N 02202', 'Forney FX-600P/LA-0270 Digital Comp.Machine w/ PILOT Dig. (E-4)', 'Range: Comp. 600K Ch 1/ Beam 30K Ch 2 ', '2013-03-05', 1706, '3/5/2013', NULL), (1707, 1707, 'S/N 68023', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K ', '2013-03-14', 1707, '3/14/2013', NULL), (1708, 1708, 'S/N 87079-060224', 'Forney QC-410-CS-100-2A Digital Compression Machine', 'Range: 2K to 400 K (#52) (E-4)', '2013-03-12', 1708, '3/12/2013', NULL), (1709, 1709, 'S/N 99152', 'Forney F-25E-DR2000 Digital Compression Machine (E-4)', 'Range: 10K to 250K ', '2013-03-13', 1709, '3/13/2013', NULL), (1710, 1710, 'S/N 6136X72', ' LoTes Model LT-10 Digital Compression Machine (E-4)', 'Range: 100 lbs to 10K', '2013-03-19', 1710, '3/19/2013', NULL), (1711, 1711, 'S/N 06132', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-19', 1711, '3/19/2013', NULL), (1712, 1712, 'S/N 70066-94003', 'Forney FT-40-CS-100 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-19', 1712, '3/19/2013', NULL), (1713, 1713, 'S/N 87155-050705', 'Forney QC-410E-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-03-19', 1713, '3/19/2013', NULL), (1714, 1714, 'S/N 06225', 'Forney F-40EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-03-19', 1714, '3/19/2013', NULL), (1715, 1715, 'S/N 64916', 'Baldwin-Southwark-Emery Compression Machine (E-4)', 'Range: 10K / 90K', '2013-03-19', 1715, '3/19/2013', NULL), (1716, 1716, 'S/N 92037', 'Wegner Ultitest 500 Tensiometer (E-4)', 'Range: 500 lbs ', '2013-03-20', 1716, '3/20/2013', NULL), (1717, 1717, 'S/N 103-02006', 'Boart Longyear CM-625-CS100-2A Digital Compression Machine ', 'Range: 3K to 700K (E-4)', '2013-03-25', 1717, '3/25/2013', NULL), (1718, 1718, 'S/N 020411', 'Soiltest CT-711 Compression Machine (E-4)', 'Range: 200K', '2013-03-26', 1718, '3/26/2013', NULL), (1719, 1719, 'S/N 75226', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-02-26', 1719, '2/26/2013', NULL), (1720, 1720, 'S/N 10006', 'Service Physical DR Mdl. UT10TA7Universal Testing Machine ', 'Range: 2K / 10K (E-4 & 2%)', '2013-03-26', 1720, '3/26/2013', NULL), (1721, 1721, 'S/N 70025-1', 'Tinius Olsen Universal Testing Machine- Super L (E-4)', 'Range: 8K / 80K / 400K', '2013-03-27', 1721, '3/27/2013', NULL), (1722, 1722, 'S/N 78265-102912', 'Forney FT-31-CS-100-OR Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs(ID # 615)', '2013-03-26', 1722, '3/26/2013', NULL), (1723, 1723, 'S/N 12-391', 'Enerpac Jack Mdl. 40335 (E-4 & PCI Man Specs)', 'Range: 30 Ton', '2013-03-27', 1723, '3/27/2013', NULL), (1724, 1724, 'S/N 1252', 'Carver 21900-210 Press (Molding Room) (E-4)', 'Range: 3K', '2012-03-29', 1724, '3/29/2012', NULL), (1725, 1725, 'S/N 78156', 'Forney FT-50-01 Compression Machine (E-4)', 'Range: 60K', '2012-03-14', 1725, '3/14/2012', NULL), (1726, 1726, 'S/N 104715', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2008-04-03', 1726, '4/3/2008', NULL), (1727, 1727, 'S/N 6211A', 'Revere Load Indicator Mode155800-03 (E-4)', 'Range: 50K', '2008-03-31', 1727, '3/31/2008', NULL), (1728, 1728, 'S/N 2354', 'Humboldt Proving Ring (In House)', 'Cap: 10K', '2003-04-01', 1728, '4/1/2003', NULL), (1729, 1729, 'S/N 1770', 'Rebuilt Valve ', '', '0000-00-00', 1729, '', NULL), (1730, 1730, 'S/N 0194', 'Enerpac Model DG P1 with Transducer S/N 3D174 (In house)', 'Range 10K PSI', '1999-03-09', 1730, '3/9/1999', NULL), (1731, 1731, 'S/N1155-14-19643', 'Soiltest Model AP-170C Single Ring (E-4)', 'Cap: 50KN (11240.5 lbs.)', '2003-03-24', 1731, '3/24/2003', NULL), (1732, 1732, 'S/N NAL 5895', 'Columbine Accuralite Tensiometer with E-400 Digital (E-4)', 'Range: 500 lbs (BROKE)', '2008-04-10', 1732, '4/10/2008', NULL), (1733, 1733, 'S/N 75036', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2007-06-18', 1733, '6/18/2007', NULL), (1734, 1734, 'S/N 98101', 'Tensiometer w/ CS-100 (E-4 & PCI)', 'Range 10K', '1999-03-01', 1734, '3/1/1999', NULL), (1735, 1735, 'S/N 6324', 'Soiltest CT-800 Digital Compression Machine (E-4)', 'Range 250K', '1997-03-12', 1735, '3/12/1997', NULL), (1736, 1736, 'S/N 81125', 'Forney FT-40-DR Compression Machine (E4)', 'Range: 30K / 250K', '2005-03-31', 1736, '3/31/2005', NULL), (1737, 1737, 'S/N 9901', 'Soiltest Accu-Tek CT-7500', 'Range 5K to 500K', '1999-03-25', 1737, '3/25/1999', NULL), (1738, 1738, 'S/N ', 'Tinius Olsen Super L', 'Ranges - 4 (up to 200K)', '0000-00-00', 1738, '', NULL), (1739, 1739, 'S/N 679', 'Soiltest CT 710 Compression Machine (E-4)', 'Range: 25K to 250K', '2003-03-13', 1739, '3/13/2003', NULL), (1740, 1740, 'S/N 5119', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 250K', '2001-03-21', 1740, '3/21/2001', NULL), (1741, 1741, 'S/N 2002', 'Pine Proving Ring (E-4) ', 'Cap: 5,000 lbs. / 22240N', '2003-03-20', 1741, '3/20/2003', NULL), (1742, 1742, 'S/N 57024-7', 'Tinius Olsen Super L with CS-100-4 Digital Retrofit (E-4)', 'Range 200 to 6000 lb. & 1000 to 60,000 lb.', '2000-03-27', 1742, '3/27/2000', NULL), (1743, 1743, 'S/N 73082', 'Forney PT-100-8D Pipe Tester (E-4 / C497-98)', 'Range 200K', '1997-03-19', 1743, '3/19/1997', NULL), (1744, 1744, 'S/N 270/1119', 'MTS Displacement Card LVDT (D-6027)', 'Range: 5\" ID#25-MTS1DC01', '2004-03-23', 1744, '3/23/2004', NULL), (1745, 1745, '', 'cont\'d.....', '', '0000-00-00', 1745, '', NULL), (1746, 1746, 'S/N 03101', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range:', NULL, 1746, 'New', NULL), (1747, 1747, 'S/N 87017', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 30/250K', '1998-03-03', 1747, '3/3/1998', NULL), (1748, 1748, 'S/N 49825-3', 'Tinius Olsen Compression Machine', 'Range: 250K', '2001-01-23', 1748, '1/23/2001', NULL), (1749, 1749, 'S/N 85016', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2001-04-18', 1749, '4/18/2001', NULL), (1750, 1750, 'S/N 87193', 'Forney QC-410-LC1 Compression Machine', 'Range 4/400K', '1997-03-25', 1750, '3/25/1997', NULL), (1751, 1751, 'S/N 81154', 'Forney FT-40-DR Compression Machine', '30/250K', '1995-04-05', 1751, '4/5/1995', NULL), (1752, 1752, 'S/N 76024', 'Forney FT-250F-D2 Compression Machine (E-4)', 'Range 250K', '1996-03-21', 1752, '3/21/1996', NULL), (1753, 1753, 'S/N 22961', 'Soiltest EL77-011 Point Load Tester (E-4 & Man. Specs.)', 'Range 1300lb / 13,000 lb', '2002-04-17', 1753, '4/17/2002', NULL), (1754, 1754, 'S/N 002MB', 'CM Hoist Tester (E4-02)', 'Range: 10/20/40k', '2004-03-18', 1754, '3/18/2004', NULL), (1755, 1755, 'S/N 95032', 'Forney FT-250 Compression Machine', 'Range 250K', '1996-04-23', 1755, '4/23/1996', NULL), (1756, 1756, 'S/N 9415', 'Soiltest AP 170CY with Load Cell and Linseis Model L6512B Recorder', 'Range 2/5/10K (E-4)', '1998-03-10', 1756, '3/10/1998', NULL), (1757, 1757, '', 'Forney FT-21-D (E-4)', 'Range: 250,000 lbs', NULL, 1757, 'New', NULL), (1758, 1758, 'S/N 85016', 'Forney FT-40 Compression Machine', 'Range 250K', '1996-04-23', 1758, '4/23/1996', NULL), (1759, 1759, 'S/N 01039', 'Forney F-25F-DR2000 Digital Compression Machine (E-4)', 'Range: 5K to 250K', '2003-03-25', 1759, '3/25/2003', NULL), (1760, 1760, 'S/N 03100', 'Forney F-25EX-F-DR2001 Digital Compression Machine (E-4)', 'Range:', NULL, 1760, 'New', NULL), (1761, 1761, 'S/N 1913', 'W.C. Dillon Model L', 'Range 500#', '1995-12-13', 1761, '12/13/1995', NULL), (1762, 1762, 'S/N 956', 'Pine Instrument Model AF-850-T (E-4)', '2.5K/5K/10K', '2002-03-05', 1762, '3/5/2002', NULL), (1763, 1763, 'S/N 61118', 'Forney QC-125-LD Compression Machine (E-4)', 'Range 250K', '1996-08-29', 1763, '8/29/1996', NULL), (1764, 1764, 'S/N 70175', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2006-03-16', 1764, '3/16/2006', NULL), (1765, 1765, 'S/N 101', 'Healthometer', 'Range 350 lbs.', '1999-03-02', 1765, '3/2/1999', NULL), (1766, 1766, 'S/N 92135', 'Forney FT-250F-02 Compression Machine (at Hendersonville location)', 'Range 30/250K', '1996-03-06', 1766, '3/6/1996', NULL), (1767, 1767, 'S/N 87188', 'Forney QC-410-D Digital Compression Machine', 'Range 400K', '1996-03-04', 1767, '3/4/1996', NULL), (1768, 1768, 'S/N 2985', 'Soiltest CT-710-DR Compression Machine (at Wickliff location)', 'Range 30/250K', '1996-03-07', 1768, '3/7/1996', NULL), (1769, 1769, 'S/N', 'Forney QC-400-D2 with System 2000', 'Range', '0000-00-00', 1769, '', NULL), (1770, 1770, 'S/N 75076', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 25K - 250K', '2003-09-16', 1770, '9/16/2003', NULL), (1771, 1771, 'S/N 68238', 'Forney FT-40-DR Compression Machine (E-4)', 'Range 30/250K', '1998-03-30', 1771, '3/30/1998', NULL), (1772, 1772, 'S/N 143', 'Brainard Kilman Compression Machine Model CM-200 (E-4)', 'Range 250K', '1999-03-29', 1772, '3/29/1999', NULL), (1773, 1773, ' S/N 68250', 'Forney FT-40-DR Compression Machine (at Irwin, PA location)', 'Range 30/250K', '1995-03-27', 1773, '3/27/1995', NULL), (1774, 1774, 'S/N 70156', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1996-03-14', 1774, '3/14/1996', NULL), (1775, 1775, 'S/N PLNX-2-128', 'Strainsert Load Indicator (In house)', 'Cap: 4K to 40K', '2000-03-14', 1775, '3/14/2000', NULL), (1776, 1776, 'S/N 91201', 'OTC Gauge (#9661) (in house)', 'Cap: 10,000 psi', '1996-03-11', 1776, '3/11/1996', NULL), (1777, 1777, 'S/N R-80440', 'Riehle Los Machine Model R-15012CA (E-4)', 'Range: 120K/40K/8K', '2000-03-15', 1777, '3/15/2000', NULL), (1778, 1778, 'S/N 80086', 'Forney QC-400-1 Compression Machine (E-4)', 'Range 400K', '1999-03-18', 1778, '3/18/1999', NULL), (1779, 1779, 'CT-744 / CT-2540', 'Soiltest CT-2540 Compression Machine', '100/400K', '1995-03-22', 1779, '3/22/1995', NULL), (1780, 1780, 'S/N 68167', 'Forney FT-40-DR Compression Machine', 'Range:', NULL, 1780, 'NEW', NULL), (1781, 1781, '', 'Gram Scale, Ohaus Model 2610 ID #1', '', NULL, 1781, 'NEW', NULL), (1782, 1782, 'S/N 1023', 'Jones Block Testing Machine with Hand Pump & Hydraulic Jack (at Hillsville, PA location)', 'Range 200K (E-4)', '1999-03-25', 1782, '3/25/1999', NULL), (1783, 1783, '', 'Accuweigh Scale Model WT301T2X', '', NULL, 1783, 'NEW', NULL), (1784, 1784, 'S/N 76019', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1997-04-10', 1784, '4/10/1997', NULL), (1785, 1785, 'S/N 84001', 'Forney FT-40 Compression Machine', 'Range 250K', '1999-01-06', 1785, '1/6/1999', NULL), (1786, 1786, 'S/N', 'Forney QC-150-DR Compression Machine', 'Range:', NULL, 1786, 'NEW', NULL), (1787, 1787, 'S/N 66027', 'Forney QC-200-DR Compression Machine', 'Range 30/400K', '1998-03-30', 1787, '3/30/1998', NULL), (1788, 1788, 'S/N 00024', 'Forney F25-F96 Digital Compression Machine (E-4)', 'Range:', '2000-08-08', 1788, '8/8/2000', NULL), (1789, 1789, 'S/N 85024', 'Forney QC-410-D Digital Compression Machine (E-4)', 'Range 12K to 400K', '2003-04-02', 1789, '4/2/2003', NULL), (1790, 1790, 'S/N 3482', 'Soiltest CT-769E Compression Machine', 'Range 250K', '1997-03-17', 1790, '3/17/1997', NULL), (1791, 1791, 'S/N 98035', 'Forney F-250F-01 Compression Machine', 'Range 250K', '1998-03-26', 1791, '3/26/1998', NULL), (1792, 1792, 'S/N 2947', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 250K', '1996-10-03', 1792, '10/3/1996', NULL), (1793, 1793, 'S/N 87126', 'Forney FT-40 Compression Machine (E-4)', 'Range 250K', '1997-03-20', 1793, '3/20/1997', NULL), (1794, 1794, 'S/N G20333', 'Gaines Compression Machine', 'Range 10,000 lbs.', '1999-03-12', 1794, '3/12/1999', NULL), (1795, 1795, 'S/N 8105', 'Soiltest Single Proving Ring In house', 'Cap: 6K', '2000-03-10', 1795, '3/10/2000', NULL), (1796, 1796, 'S/N 86070', 'Forney FT-60-D1 Compression Machine with System 1000', 'Range 220K (E-4)', '1995-04-24', 1796, '4/24/1995', NULL), (1797, 1797, 'S/N 99904050', 'ComTen Machine---1 Load (E-4)', 'Range: 20 lb. Load Cell #SSB0020', '2003-03-17', 1797, '3/17/2003', NULL), (1798, 1798, 'S/N 9302', 'Soiltest CT-6200A Digital Compression Machine (E-4)', 'Range 450K', '1996-03-19', 1798, '3/19/1996', NULL), (1799, 1799, 'S/N 63210', 'Baldwin BTE 200 Compression Machine', 'Range 10/50/200K', '1996-02-16', 1799, '2/16/1996', NULL), (1800, 1800, 'S/N 59165', 'Forney QC-200 Compression Machine with Block Platen ', 'Range 400K (E-4) ', '2001-04-04', 1800, '4/4/2001', NULL), (1801, 1801, 'S/N 85102', 'Forney FT-40 Compression Machine (Moved) (E-4)', 'Range: 250K', '2009-03-11', 1801, '3/11/2009', NULL), (1802, 1802, 'S/N 68799-5', 'Tinius Olsen Model L Compression Machine (E-4)', 'Range: 60K / 300K', '2008-03-19', 1802, '3/19/2008', NULL), (1803, 1803, 'S/N 96016', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range: 25K to 250K', '2006-03-30', 1803, '3/30/2006', NULL), (1804, 1804, 'S/N', 'TECO QA2 Digital Compression Machine (E-4)', 'Range: 2K', NULL, 1804, 'New', NULL), (1805, 1805, 'S/N RCH1003', 'Pull Tester ENERPAC P80w/Guage D1990C(MOVED)(E-4 & Manspec)', 'Range: 50K', '2006-03-29', 1805, '3/29/2006', NULL), (1806, 1806, 'S/N 04024', 'Forney F25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-03-10', 1806, '3/10/2008', NULL), (1807, 1807, 'S/N 73241', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-03-10', 1807, '3/10/2008', NULL), (1808, 1808, 'S/N 05174 ', 'Forney F25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2007-03-12', 1808, '3/12/2007', NULL), (1809, 1809, 'S/N 85125', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-02-04', 1809, '2/4/2004', NULL), (1810, 1810, 'S/N P4190068A', 'Karol Warner Direct Shear Horizonal Load Cell Digital (E-4)', 'Range 15 lbs to 1500 lbs', '2007-03-14', 1810, '3/14/2007', NULL), (1811, 1811, 'S/N 97053', 'Forney F-500C-LC Digital Compression Machine (E-4)', 'Range: 1K to 500 K ', '2008-03-26', 1811, '3/26/2008', NULL), (1812, 1812, 'S/N 07082', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-04-23', 1812, '4/23/2007', NULL), (1813, 1813, 'S/N 10207', 'Testmark CM-2500-PI Digital Compression Machine (E-4)', 'Range: 250K', '2007-04-13', 1813, '4/13/2007', NULL), (1814, 1814, 'S/N 97032', 'Forney FT-250-01', 'Range:', NULL, 1814, 'New', NULL), (1815, 1815, 'S/N 77120', 'Forney FT-40-02Compression Machine (E-4)', 'Range: 30K / 250K', '2007-04-13', 1815, '4/13/2007', NULL), (1816, 1816, 'S/N 75210', 'Forney FT-50-2 Compression Machine (E-4)', 'Range: 30K / 250K', '2011-03-08', 1816, '3/8/2011', NULL), (1817, 1817, 'S/N 1083', 'Pine Instrument Model AF850TX Asphalt Tester (E-4)', 'Range: 2.5K / 5K / 10K', '2013-03-05', 1817, '3/5/2013', NULL), (1818, 1818, 'S/N 2601', 'Soiltest CT-710-DR Compression Machine (E-4) ', 'Range: 30K / 250K', '2008-03-10', 1818, '3/10/2008', NULL), (1819, 1819, 'S/N 76016-GB0108305', 'Forney FT-40-CS-100 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED) ', '2007-03-20', 1819, '3/20/2007', NULL), (1820, 1820, 'S/N 3D-3-80', 'Hogentogler Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 300 lbs', '2013-05-07', 1820, '5/7/2013', NULL), (1821, 1821, 'S/N 85016-050721', 'Forney FT 40-CS-100-1S Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-08', 1821, '5/8/2013', NULL), (1822, 1822, 'S/N 71055-04105', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-30', 1822, '5/30/2013', NULL), (1823, 1823, 'S/N 06224 (ID #1)', 'Forney F-25EX-F-CPILOT Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-07', 1823, '5/7/2013', NULL), (1824, 1824, 'S/N 07096', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-05-07', 1824, '5/7/2012', NULL), (1825, 1825, 'S/N 07100 ', 'Forney F-30EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 1K to 300K', '2013-05-06', 1825, '5/6/2013', NULL), (1826, 1826, 'S/N Unknown ', 'Lufkin Mdl. P28D-1 Dial Gauge (D-6027)', 'Range: 1 Inch', '2010-05-12', 1826, '5/12/2010', NULL), (1827, 1827, 'S/N ID #11', 'Briefcase BCS-80 Scale (E-898)', 'Range: 176 lbs ', '2013-05-08', 1827, '5/8/2013', NULL), (1828, 1828, 'S/N 95101', 'Forney F-250F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-13', 1828, '5/13/2013', NULL), (1829, 1829, 'S/N 64042', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K (High Range Only)', '2013-05-13', 1829, '5/13/2013', NULL), (1830, 1830, 'S/N 71094', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-06-24', 1830, '6/24/2013', NULL), (1831, 1831, 'S/N 65118-01109', 'Forney QC-200-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2K to 400K', '2013-05-14', 1831, '5/14/2013', NULL), (1832, 1832, 'S/N 00052', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (ID# 0115391)', '2013-05-14', 1832, '5/14/2013', NULL), (1833, 1833, 'S/N 00051', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-14', 1833, '5/14/2013', NULL), (1834, 1834, 'S/N 86076', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-05-13', 1834, '5/13/2013', NULL), (1835, 1835, 'S/N 89077-', 'Forney F-250-F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-05-13', 1835, '5/13/2013', NULL), (1836, 1836, 'S/N 01297034/9', 'Eilion Engineering RON 2501 Load Cell (ManSpecs 0.1% FS)', 'Range: 20K', '2013-08-07', 1836, '8/7/2013', NULL), (1837, 1837, 'S/N 71002 ', 'Humboldt Pro Loader (E-4)', '', '2013-07-31', 1837, '7/31/2013', NULL), (1838, 1838, 'S/N 97017', 'Forney F-502F-CPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-07-31', 1838, '7/31/2013', NULL), (1839, 1839, 'S/N PS-2172', 'Geotac Pressure Transducer (Test Cell Pressure CH Geotac #4) ', 'Range: 200 psi (D-5720)', '2013-05-21', 1839, '5/21/2013', NULL), (1840, 1840, 'S/N 80107', 'Forney QC-400-1 Compression Machine (E-4)', 'Range: 400K', '2013-05-20', 1840, '5/20/2013', NULL), (1841, 1841, 'S/N 68197-0612115', 'Forney LT-1000-CS-100-2AG Universal Testing Machine (E-4) ', 'Range: Digital 600K/Gauge 600K', '2013-05-14', 1841, '5/14/2013', NULL), (1842, 1842, 'S/N C1962', 'Instron Model 4411 Compression Machine w/2 cells (E-4)', 'Range: 100 lbs T & C S/N UK26', '2013-05-21', 1842, '5/21/2013', NULL), (1843, 1843, 'S/N PS-2105', 'Geotac Pressure Transducer w/Geocomp Datalogger (Ch 5 Pressure 2)', 'Range: 200 psi (D-5720)', '2011-05-24', 1843, '5/24/2011', NULL), (1844, 1844, 'S/N PS-2073', 'Geotac Pressure Transducer (Pressure 1 CH #2) (D-5720)', 'Range: 200 PSI', '2013-05-21', 1844, '5/21/2013', NULL), (1845, 1845, 'S/N 05077-071213', 'Forney LA-270-F-CS-100-2A Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K', '2013-05-20', 1845, '5/20/2013', NULL), (1846, 1846, 'S/N 04065', 'Forney F-401F-PILOT Digital Compression Machine (E-4)', 'Range: 4K to 450K', '2013-05-21', 1846, '5/21/2013', NULL), (1847, 1847, 'S/N 1994A', 'Forney PT-75-P Pipe Tester with 2 gauges (E-4 & C-497)', 'Range 30K / 150K', '2013-05-21', 1847, '5/21/2013', NULL), (1848, 1848, 'S/N 59116', 'Forney FT-21 Compression Machine (old with hand pump) (E-4 & 2%)', 'Range: 250K', '2013-05-22', 1848, '5/22/2013', NULL), (1849, 1849, 'S/N 9537', 'ELE Soiltest CT-7250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-05-21', 1849, '5/21/2013', NULL), (1850, 1850, 'S/N 694 ', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K ', '2013-05-20', 1850, '5/20/2013', NULL), (1851, 1851, 'S/N 98027', 'Forney F-250-P-GBII Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-05-21', 1851, '5/21/2012', NULL), (1852, 1852, 'S/N 204797', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons ', '2006-05-05', 1852, '5/5/2006', NULL), (1853, 1853, 'S/N 2012833', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons ', '2006-05-05', 1853, '5/5/2006', NULL), (1854, 1854, 'S/N 05044030', 'Eilon Engineering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', '2007-04-24', 1854, '4/24/2007', NULL), (1855, 1855, 'S/N 05064276/5', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 40 Ton ', '2007-05-21', 1855, '5/21/2007', NULL), (1856, 1856, 'S/N 02054522', 'Eilon Engineering RON 2125 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', '2007-05-09', 1856, '5/9/2007', NULL), (1857, 1857, 'S/N 194', 'Boart Longyear M-215 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (SOLD)', '2008-05-28', 1857, '5/28/2008', NULL), (1858, 1858, 'S/N 87115', 'Forney FT-40 Compression Machine (E-4)', 'Range 250K', '1996-04-16', 1858, '4/16/1996', NULL), (1859, 1859, 'S/N 99067', 'Forney F-25F-01 Compression Machine (E-4)', 'Range: 250K', '1999-05-17', 1859, '5/17/1999', NULL), (1860, 1860, 'S/N 98102', 'Forney F-250F-01 Compression Machine (E-4)', 'Range 250K', '1999-06-10', 1860, '6/10/1999', NULL), (1861, 1861, 'S/N', 'Com-Ten 95-5K-YD-0050-5K Test System', 'Range:', NULL, 1861, 'New', NULL), (1862, 1862, 'S/N 13303', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 250K', NULL, 1862, 'New', NULL), (1863, 1863, 'S/N AMS', 'Innavare Testing Machine AMS Modle 12', '', '1995-05-25', 1863, '5/25/1995', NULL), (1864, 1864, 'S/N 585047-A2078', 'Cam Plasometer with 100K Load Cell Kistler Model 9081A', 'Range 20K & 100K', '1998-05-13', 1864, '5/13/1998', NULL), (1865, 1865, 'S/N 78094', 'MTS II (Items 19-23)', 'Cap: 5.5K (Compression)', '1995-12-31', 1865, '12/31/1995', NULL), (1866, 1866, 'S/N 205862', 'Viatran Transducer: Item #127 SSM - Shot Cylinder Head', 'Range 6000 psi', '1996-05-08', 1866, '5/8/1996', NULL), (1867, 1867, 'S/N 1', 'Gauge', 'Range 3000 psi', '1996-05-08', 1867, '5/8/1996', NULL), (1868, 1868, 'S/N 7', 'Gauge', 'Range 3000 psi', '1996-05-08', 1868, '5/8/1996', NULL), (1869, 1869, '', 'MTS III Model 204-91', 'Range: 4 Ranges (Compression Only)', '1998-02-25', 1869, '2/25/1998', NULL), (1870, 1870, 'S/N 1985', 'MTS II Load Cell Model 661.23B.01 (Tag# 25-LC09)', 'Range 55 Kip (Compression Only)', '1998-05-27', 1870, '5/27/1998', NULL), (1871, 1871, 'S/N 71503', 'MTS II Load Cell Model 661.20E.01 (Tag# 25-LC10)', 'Range 5.5 Kip (old) (T & C)', '1998-05-27', 1871, '5/27/1998', NULL), (1872, 1872, '', 'MTS II', '', '0000-00-00', 1872, '', NULL), (1873, 1873, 'S/N 72210', 'Forney QC-150 Compression Machine', 'Range 300K', '1995-05-09', 1873, '5/9/1995', NULL), (1874, 1874, 'S/N 2448', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 60K', '2000-05-18', 1874, '5/18/2000', NULL), (1875, 1875, 'S/N 85086', 'Forney FT-40 Compression Machine (E-4)', 'Range: 25,000 lbs. to 250,000 lbs.', '2001-05-30', 1875, '5/30/2001', NULL), (1876, 1876, 'S/N 06122', 'Forney F-25EX-F-COPILOT (E-4)', '', NULL, 1876, 'New', NULL), (1877, 1877, 'S/N', 'Instron Testing Machine w/ 10 Kip Load Cell--Model', 'Ranges: 5 compression / 5 tension', NULL, 1877, 'NEW', NULL), (1878, 1878, 'S/N ', 'Testmark CM 2500 DB Compression Machine', 'Range 250K', NULL, 1878, 'NEW', NULL), (1879, 1879, 'S/N R-24841', 'Reihle Universal Testing Machine', 'Range:', NULL, 1879, 'NEW', NULL), (1880, 1880, 'S/N 86052', 'Forney FT-40-DR Compression Machine (MOVED) (E-4)', 'Range: 250K', '2000-05-22', 1880, '5/22/2000', NULL), (1881, 1881, 'S/N 61009', 'Forney FT-40 Compression Machine', 'Range 250K', '1998-05-07', 1881, '5/7/1998', NULL), (1882, 1882, 'S/N 77043', 'Forney FT-40 Compression Machine', 'Range 250K', '1998-05-07', 1882, '5/7/1998', NULL), (1883, 1883, 'S/N 988-18', 'Geotest Digital 52013', 'Range 2000#', '1996-05-20', 1883, '5/20/1996', NULL), (1884, 1884, 'S/N 95034', 'Forney F-250F-01 Compression Machine (MOVED) (E-4)', 'Range 250K', '2004-04-12', 1884, '4/12/2004', NULL), (1885, 1885, 'S/N 85016', 'Forney FT-40 Compression Machine (E-4)', 'Range 250K', '1998-05-21', 1885, '5/21/1998', NULL), (1886, 1886, 'S/N 64024', 'Forney Compression Machine-QC-200-DR (E-4)', 'Range: 30K / 300K', '2003-06-04', 1886, '6/4/2003', NULL), (1887, 1887, 'S/N 88119', 'Forney FT-40-DR (MOVED TO LEXINGTON,KY) (E-4)', 'Range: 30K / 250K', '2004-06-02', 1887, '6/2/2004', NULL), (1888, 1888, 'S/N 70108', 'Forney QC-50 Compression Machine (E-4)', 'Range 400K', '1997-05-14', 1888, '5/14/1997', NULL), (1889, 1889, 'S/N 94010', 'Forney F-250F-01 Compression Machine (SOLD) (E-4)', 'Range 25K to 250K', '2001-05-09', 1889, '5/9/2001', NULL), (1890, 1890, 'S/N 78166', 'Forney FT-21 Compression Machine', 'Range 250K', '1997-05-12', 1890, '5/12/1997', NULL), (1891, 1891, 'S/N 15PSI', 'Conbel Pressure Gauge (in house)', 'Range 15 psi', '1995-05-23', 1891, '5/23/1995', NULL), (1892, 1892, 'S/N 90006', 'Forney FT-40 Compression Machine', 'Range 250K', '1997-05-12', 1892, '5/12/1997', NULL), (1893, 1893, 'S/N LAL1002', 'Columbine Tensiometer Accra Lite Model AL2420', 'Range 300 #', '1995-05-09', 1893, '5/9/1995', NULL), (1894, 1894, 'S/N 9201-50', 'M & L Model MLM-450 Compression Machine', 'Range 45/400K', '1995-06-14', 1894, '6/14/1995', NULL), (1895, 1895, 'S/N 9539', 'Soiltest CT-7250 Accutech Digital Compression Machine (E-4)', 'Range 25K to 250K', '1997-05-07', 1895, '5/7/1997', NULL), (1896, 1896, 'S/N 20130', 'Soiltest Single Proving Ringe Model LC-2', 'Cap: 10,000#', '1995-07-25', 1896, '7/25/1995', NULL), (1897, 1897, 'S/N 67204', 'Forney QC-150 Compression Machine', 'Range 300K', '1995-06-07', 1897, '6/7/1995', NULL), (1898, 1898, 'S/N 68015', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30/250K', '2002-05-09', 1898, '5/9/2002', NULL), (1899, 1899, 'S/N 96018', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range 250K', '1997-06-04', 1899, '6/4/1997', NULL), (1900, 1900, 'S/N 9547-052605', 'Soiltest CT-7251 Compression Machine w/ Testmark Digital (E-4)', 'Range: 250K', '2005-05-30', 1900, '5/30/2005', NULL), (1901, 1901, 'S/N 80090', 'Forney QC-400-1 Compression Machine (E-4)', 'Range 400K', '2003-05-08', 1901, '5/8/2003', NULL), (1902, 1902, 'S/N 60152-1', 'Tinius Olsen Electomatic (E-4)', 'Ranges .6/2.4/12/60K', '1998-05-12', 1902, '5/12/1998', NULL), (1903, 1903, 'S/N 98104', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2007-05-15', 1903, '5/15/2007', NULL), (1904, 1904, 'S/N 68065', 'Forney FT-40-DR 2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2008-05-22', 1904, '5/22/2008', NULL), (1905, 1905, 'S/N 964042PQ-cell', 'Revere Load Cell w/ BK E-400 Digital ', 'Range: 500 lbs. to 10,000 lbs. -Tension', '2007-06-05', 1905, '6/5/2007', NULL), (1906, 1906, 'S/N 444516', 'Trus Joist Flex Test w/Main Cell Sensotec MDL 41/573-02-01 (E-4)', 'Range: 100 lbs to 10,000 lbs ', '2008-05-29', 1906, '5/29/2008', NULL), (1907, 1907, 'S/N 23702H ', 'Testmark CM-2500 LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', NULL, 1907, 'New', NULL), (1908, 1908, 'S/N 9621', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range 250K', '2005-05-26', 1908, '5/26/2005', NULL), (1909, 1909, 'S/N 132', 'Brainard-Kilman CM-200 Compression Machine', 'Range: 250K', NULL, 1909, 'New', NULL), (1910, 1910, 'S/N 981', 'Soiltest CT-710 Compression Machine ', 'Range: ', NULL, 1910, 'New', NULL), (1911, 1911, 'S/N 96086', 'Forney F-250F-DR1 Digital Compression Machine (E-4)', 'Range: 4K to 250K', '2008-05-07', 1911, '5/7/2008', NULL), (1912, 1912, 'S/N 9950512', 'Com-Ten Mdl. 942KBL2000 Universal Testing Machine (E-4)', 'Range: 20 lbs to 400 lbs', '2008-05-05', 1912, '5/5/2008', NULL), (1913, 1913, 'S/N 23931', 'Com-Ten Mdl.CEDM-S Universal Testing Machine (E-4)', ' Range: 20 lbs to 400 lbs', '2009-05-07', 1913, '5/7/2009', NULL), (1914, 1914, 'S/N 88070', 'Forney QC-410-D-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2007-05-17', 1914, '5/17/2007', NULL), (1915, 1915, 'S/N 97149', 'Humboldt Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-05-14', 1915, '5/14/2007', NULL), (1916, 1916, 'S/N 00023', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2008-06-05', 1916, '6/5/2008', NULL), (1917, 1917, 'S/N 94012-02015', 'Forney F-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K ', '2008-05-19', 1917, '5/19/2008', NULL), (1918, 1918, 'S/N 07038607039', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-05-22', 1918, '5/22/2008', NULL), (1919, 1919, 'S/N 9104-01109', 'Soiltest CT-761B-CS100-2 Digital Compression Machine (E-4)', 'Range 2K to 250K (Destroyed)', '2007-05-21', 1919, '5/21/2007', NULL), (1920, 1920, 'S/N 88119', 'Forney FT-40-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-07-15', 1920, '7/15/2008', NULL), (1921, 1921, 'S/N 84092', 'Forney PT-125-8 Pipe Tester (E-4 & C-497)', 'Range: 30K / 250K', '2008-05-07', 1921, '5/7/2008', NULL), (1922, 1922, 'S/N 84162', 'Forney FT-21-DR Compression Machine (E-4 & 2%)', 'Range: 30K / 250K', '2010-05-05', 1922, '5/5/2010', NULL), (1923, 1923, 'S/N 6413-9306', 'Soiltest CT-755B Compression Machine (E-4) (MOVED)', 'Range 250K', '2006-05-30', 1923, '5/30/2006', NULL), (1924, 1924, 'S/N 1001', 'Soiltest Comp Mach w/Starrett Dial Ind 656-617 (D-6027)', 'Range: 0.4 inches', '2010-05-12', 1924, '5/12/2010', NULL), (1925, 1925, 'S/N 66125', 'Forney LT-705-2 Compression Machine (E-4)', 'Range: 200K / 500K', '2013-05-06', 1925, '5/6/2013', NULL), (1926, 1926, 'S/N 86003-99100', 'Forney QC-410DCS-100-3 Digital Compression Machine w/CS-100-3', 'Range 4K to 400K (E-4)', '2005-12-07', 1926, '12/7/2005', NULL), (1927, 1927, 'S/N 117', 'Durham GEO CM-216 Digital Compression Machine (E4-01)', 'Range: 4K to 330K', '2002-06-13', 1927, '6/13/2002', NULL), (1928, 1928, 'S/N 155', 'Brainard-Kilman Digital Compression Machine--Model CM-200', 'Range: 25K to 250K (E-4 & C-39)', '2003-06-12', 1928, '6/12/2003', NULL), (1929, 1929, 'S/N 00203', 'Durham GEO CM-215 Digital Compression Machine (SOLD) (E-4)', 'Range: 25K to 250K', '2005-05-11', 1929, '5/11/2005', NULL), (1930, 1930, 'S/N 511', 'Soiltest CT-711 Compression Machine (E-4)', 'Range: 20K to 200K Max Cap: 250K', '2004-06-16', 1930, '6/16/2004', NULL), (1931, 1931, 'S/N 438', 'Soiltest 36-0657 Digital Compression Machine w/DR500 (E-4)', 'Range 250K', '2006-12-14', 1931, '12/14/2006', NULL), (1932, 1932, 'S/N 114', 'Durham Geo CM-415 Compression Machine (E-4)', 'Range: 40K/ 500K', '2006-12-05', 1932, '12/5/2006', NULL), (1933, 1933, 'S/N 124', 'Brainard-Kilman CM-200 Digital Compression Machine', 'Range: 20K to 250K (E-4)', '2006-05-09', 1933, '5/9/2006', NULL), (1934, 1934, 'S/N 178 / 1890', 'Boart Longyear CM-215 w/ E-400 Digital DR (E-4)', 'Range: 250K', '2006-05-11', 1934, '5/11/2006', NULL), (1935, 1935, 'S/N 73115', 'Forney LT-900-3 Universal Machine w/ Pilot Digital (E-4)', 'Range: 4K to 400K', '2007-05-11', 1935, '5/11/2007', NULL), (1936, 1936, 'S/N 23803G', 'Gilson MC-500 Compression Machine (Moved to Manati) (E-4)', 'Range: 500 K', '2005-12-06', 1936, '12/6/2005', NULL), (1937, 1937, 'S/N 63032', 'Forney LT-800-2 Compression Machine (E-4) (MOVED)', 'Range: 25K / 250K', '2004-01-12', 1937, '1/12/2004', NULL), (1938, 1938, 'S/N 9551', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2004-06-14', 1938, '6/14/2004', NULL), (1939, 1939, 'S/N 73097', 'Forney LT-900-2 Compression Machine (E-4)', 'Range 50K / 400K', '2004-06-11', 1939, '6/11/2004', NULL), (1940, 1940, 'S/N', 'Soiltest Engineering Model CT-714', 'Range:', NULL, 1940, 'New', NULL), (1941, 1941, '', 'Compression Machine', '', '0000-00-00', 1941, '', NULL), (1942, 1942, 'S/N Unknown', 'Forney FT-40-103 Compression Machine', 'Range', NULL, 1942, 'NEW', NULL), (1943, 1943, 'S/N 9614', 'Soiltest CT-7250 Compression Machine', 'Range 250K?', NULL, 1943, 'New', NULL), (1944, 1944, '', 'See files for list of equipment', '', '0000-00-00', 1944, '', NULL), (1945, 1945, '', '', '', '0000-00-00', 1945, '', NULL), (1946, 1946, 'S/N 07048', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-10-19', 1946, '10/19/2011', NULL), (1947, 1947, 'S/N 07273', 'Forney F-40EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2012-11-06', 1947, '11/6/2012', NULL), (1948, 1948, 'S/N 79115', 'Forney FT-40-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-08-22', 1948, '8/22/2013', NULL), (1949, 1949, 'S/N 20927515/5', 'ELE EL77-011 Point Loader (E-4 & 2%)', 'Range: 1.3K / 13K (ID# C6002)', '2012-11-19', 1949, '11/19/2012', NULL), (1950, 1950, 'S/N 21999-111031-95', 'Testmark CM-3000-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-11-27', 1950, '11/27/2012', NULL), (1951, 1951, 'S/N 01254385/1', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Ton', '2005-11-12', 1951, '11/12/2005', NULL), (1952, 1952, 'S/N 1023375/15', 'Eilon Engineering RON 2501 H-10 Load Cell (ManSp & 0.1% FS)', 'Range: 2K to 20K', '2006-11-16', 1952, '11/16/2006', NULL), (1953, 1953, 'S/N 03075069/7', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: ', NULL, 1953, 'New', NULL), (1954, 1954, 'S/N 03053929', 'Eilon Engineering RON 2000 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 6K to 60K ', '2007-11-28', 1954, '11/28/2007', NULL), (1955, 1955, 'S/N 01562668/1', 'Eilon Engineering RON 2501 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 30K', '2007-12-04', 1955, '12/4/2007', NULL), (1956, 1956, 'S/N ', 'Forney Press-Aire Meter Gauge', 'Range:', NULL, 1956, 'New', NULL), (1957, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 1957, 'New', NULL), (1958, 1958, 'S/N 510530', 'Richard Dudgeon Post Tension Jack-Model 12591 w/ extra gauges', 'Range: 175 Ton (8225 psi) (E-4 &PCI)', '2003-09-19', 1958, '9/19/2003', NULL), (1959, 1959, 'S/N 105', 'Ashcroft Gauge', 'Range: 0-60psi', '2002-11-22', 1959, '11/22/2002', NULL), (1960, 1960, 'S/N 425', 'Geo Durham E405 Digital Ch 3 (E-405)', 'Range: 150 PSI', '2005-11-22', 1960, '11/22/2005', NULL), (1961, 1961, 'S/N NAL-3995', 'Columbine Accuralite Tensiometer (E-4)', 'Range: 50 lbs to 500 lbs ', '2007-11-20', 1961, '11/20/2007', NULL), (1962, 1962, 'S/N 9601', 'Starrett Dial Indicator (In House)', 'Range 5.0\"', '1996-11-25', 1962, '11/25/1996', NULL), (1963, 1963, 'S/N ', 'Soiltest CT-7251 Compression Machine', 'Range 250K', '0000-00-00', 1963, '', NULL), (1964, 1964, 'S/N PT-4-32-798', 'Joist Tester--Model PT-4-32-798 w/ 15 rams', 'Range:', '2001-11-15', 1964, '11/15/2001', NULL), (1965, 1965, 'S/N 69100', 'Forney FT-40-DR1 Compression Machine', 'Range ', '1995-12-29', 1965, '12/29/1995', NULL), (1966, 1966, 'S/N 2188-01116', 'Soiltest CT-710-CS-100-2 Digital Compression Machine', 'Range: 250K', '2001-11-19', 1966, '11/19/2001', NULL), (1967, 1967, 'S/N T-8512', 'Soiltest CT-2540 Compression Machine (E-4)', 'Ranges: 100K/400K - 2 gauges', '2003-11-04', 1967, '11/4/2003', NULL), (1968, 1968, 'S/N 65708-1', 'Tinis Olsen UTM Super L', 'Ranges 600LBS. TO 6000LBS.', '1998-11-18', 1968, '11/18/1998', NULL), (1969, 1969, 'S/N 88051', 'Forney FT-40 Compression Machine (E-4)', 'Range 250K', '1998-11-23', 1969, '11/23/1998', NULL), (1970, 1970, 'S/N 8908-6085', 'Soiltest CT-755 Compression Machine', 'Range 250K', '1996-11-18', 1970, '11/18/1996', NULL), (1971, 1971, 'S/N 9839', 'ELE Digital Compression Machine--Model CT-7251', 'Range: 2.5K to 250K (E-4 & C-39)', '2001-12-20', 1971, '12/20/2001', NULL), (1972, 1972, 'S/N 85111', 'Forney FT-40 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2002-11-19', 1972, '11/19/2002', NULL), (1973, 1973, 'S/N 74150', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range 250K', '1999-11-29', 1973, '11/29/1999', NULL), (1974, 1974, 'S/N 26913', 'Soiltest CT-711 Compression Machine', 'Range 250K', '1996-11-06', 1974, '11/6/1996', NULL), (1975, 1975, 'S/N 464', 'Pine Instrument Tester Model 850 (E-4)', 'Range:2.5K/5K/10K', '2003-12-03', 1975, '12/3/2003', NULL), (1976, 1976, 'S/N 62182', 'Forney Compression Machine QC-150-DR (E-4)', 'Range 30K/300K', '2001-11-05', 1976, '11/5/2001', NULL), (1977, 1977, 'S/N 5144', 'Accutek Spectester with Load Cell (Tensile only)', 'Cap: 1 Kip', '1996-11-11', 1977, '11/11/1996', NULL), (1978, 1978, '', '', '', '0000-00-00', 1978, '', NULL), (1979, 1979, 'S/N 60158', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 250K only', '2005-11-15', 1979, '11/15/2005', NULL), (1980, 1980, 'S/N 2601', 'Soiltest CT-710-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-02-07', 1980, '2/7/2006', NULL), (1981, 1981, 'S/N', 'Testmark DI Digital Compression Machine', 'Range: 250K ', NULL, 1981, 'New', NULL), (1982, 1982, 'S/N 26502', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 250K', NULL, 1982, 'New', NULL), (1983, 1983, 'S/N 58464-3', 'Tinius Olsen Model L Compression Machine (E-4)', 'Range: 80K / 400K', '2006-11-29', 1983, '11/29/2006', NULL), (1984, 1984, 'S/N 9707', 'ELE CT-7251 Compression Machine (E-4)', 'Range: 250K', '2008-12-11', 1984, '12/11/2008', NULL), (1985, 1985, 'S/N 03053382', 'Controls Digital Compression Machine Automax 5 Channel #1 (E-4)', 'Range: 4.5K to 450K (Cylinder Frame) ', '2007-12-07', 1985, '12/7/2007', NULL), (1986, 1986, 'S/N 87143-200448', 'Forney FT-60-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2007-12-03', 1986, '12/3/2007', NULL), (1987, 1987, 'S/N 66034-0706151', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2008-05-19', 1987, '5/19/2008', NULL), (1988, 1988, 'S/N 120GAC30975', 'Power Team Post Tension Jack (E-4 & PCI)', 'Range: 35K (8000 PSI)', '2008-05-21', 1988, '5/21/2008', NULL), (1989, 1989, 'S/N 80157-00100', 'Forney LT-1000-2-CS-100-3 Digital Compression Machine (E-4)', 'Range: 4K to 600K', '2008-05-15', 1989, '5/15/2008', NULL), (1990, 1990, 'S/N 07261', 'Forney F-30EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2008-12-10', 1990, '12/10/2008', NULL), (1991, 1991, 'S/N 98028', 'Forney F-400F-02 Compression Machine (E-4)', 'Range: 50K / 400K ', '2008-12-09', 1991, '12/9/2008', NULL), (1992, 1992, 'S/N 06283 ', 'Forney FX-250F-TPILOT Digital Compression Machine (E-4) ', 'Range: 3K to 300K', '2008-12-08', 1992, '12/8/2008', NULL), (1993, 1993, 'S/N 060300000015', 'ELE 36-3088/02 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2007-05-09', 1993, '5/9/2007', NULL), (1994, 1994, 'S/N 73097', 'Forney LT-900-2 Compression Machine (E-4)', 'Range 50K / 400K', '2008-12-11', 1994, '12/11/2008', NULL), (1995, 1995, 'S/N 85091129', 'Brainard Kilman C-110 Compression Machine (E-4)', 'Range: 25K to 250K ', NULL, 1995, 'New', NULL), (1996, 1996, 'S/N 02032', 'Forney F-25EX-F-F96 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2008-05-15', 1996, '5/15/2008', NULL), (1997, 1997, 'S/N 6211', 'Soiltest AP-170-A Marshall Single Proving Ring (OOS)', 'Cap: 10K Plant #14 (E-4 & Man Specs)', '2007-12-08', 1997, '12/8/2007', NULL), (1998, 1998, 'S/N 81142', 'Forney FT-40 Compression Machine (E-4) (OOS)', 'Range: 250K', '2011-10-04', 1998, '10/4/2011', NULL), (1999, 1999, 'S/N 05002', 'Forney F-25EX-F-DR2001 Digital Compression Machine (E-4)', 'Range:3K to 300K', '2013-04-08', 1999, '4/8/2013', NULL), (2000, 2000, 'S/N 210112', 'Humboldt Master Loader HM-3000 Frame (E-4)', '', '2012-10-04', 2000, '10/4/2012', NULL), (2001, 2001, 'S/N 8936', 'Soiltest CT-6200-CS-100-1BRX Digital Compression Machine (E-4)', 'Range: 4K to 450K', '2013-09-24', 2001, '9/24/2013', NULL), (2002, 2002, 'S/N 485-98104', 'Soiltest CT-711-CS-100-3 Digital Compression Machine (E-4)', 'Range: 2 K to 200K (LCRC # 00090)', '2017-01-00', 2002, '1/0/17/13', NULL), (2003, 2003, 'S/N 130120', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-01', 2003, '4/1/2013', NULL), (2004, 2004, 'S/N 874', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-10-07', 2004, '10/7/2013', NULL), (2005, 2005, 'S/N M-1689', 'Wabash 200 Ton Press PRE01 (E-4 & 2%)', 'Range: 200 ton', '2012-10-18', 2005, '10/18/2012', NULL), (2006, 2006, 'S/N 01042', 'Forney F-502F-F96 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-06-24', 2006, '6/24/2013', NULL), (2007, 2007, 'S/N 100402-1', 'Cetec CT-500 Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2012-10-17', 2007, '10/17/2012', NULL), (2008, 2008, 'S/N 080618', 'Testmark CM-2500-SD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-10-16', 2008, '10/16/2012', NULL), (2009, 2009, 'S/N 167870', 'Tinius Olsen Mdl. 10000 Tension & Compression Machine (E-4)', '', '2011-10-18', 2009, '10/18/2011', NULL), (2010, 2010, 'S/N 05228', 'Forney F-30EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2011-10-19', 2010, '10/19/2011', NULL), (2011, 2011, 'S/N 06041', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-10-26', 2011, '10/26/2011', NULL), (2012, 2012, 'S/N 6049', 'Forney QC-100-SLD Compression Machine (E-4 & 2%)', 'Range: 250K only', '2012-10-24', 2012, '10/24/2012', NULL), (2013, 2013, 'S/N 04141', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-10-23', 2013, '10/23/2012', NULL), (2014, 2014, 'S/N 15898 ID# 103216', ' Testmark CM-5000-1K Compression Machine (E-4)', 'Range: 500K', '2013-03-04', 2014, '3/4/2013', NULL), (2015, 2015, 'S/N 80194-0710181 ', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-10-25', 2015, '10/25/2011', NULL), (2016, 2016, 'S/N 84029', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-10-22', 2016, '10/22/2012', NULL), (2017, 2017, 'S/N 381800', 'Eilon Engineering Ron 2000 S-03 Load Cell (ManSp & 0.1% FS)', 'Range: 6K', '2007-10-09', 2017, '10/9/2007', NULL), (2018, 2018, 'S/N 0507470/1', 'Eilon Engineering Ron 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', '2007-10-15', 2018, '10/15/2007', NULL), (2019, 2019, 'S/N 501-7372-3 ', 'Flow Control Valve for a Green Lee Pump', 'Range: ', '2006-11-06', 2019, '11/6/2006', NULL), (2020, 2020, 'S/N', 'Testmark CM-250', 'Range: 250 K', NULL, 2020, 'New', NULL), (2021, 2021, 'S/N 95007', 'Dake Horizontal Chain Tester with CS-100-2 Digital Retrofit System', 'Range: 10K to 200K (E-4 & Man Specs)', '2002-10-31', 2021, '10/31/2002', NULL), (2022, 2022, 'S/N 159', 'Pine Instruments Gyratory Compactor Model AFGC125X', '', '2003-10-13', 2022, '10/13/2003', NULL), (2023, 2023, 'S/N 81102', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1995-10-16', 2023, '10/16/1995', NULL), (2024, 2024, 'S/N 9637', 'Soiltest CT-7250 Digital Compression Machine', 'Range 3K to 250K', '1999-10-04', 2024, '10/4/1999', NULL), (2025, 2025, 'S/N 9547', 'Soiltest Compression Machine Model ELE CT-7251', 'Range 250K', '1995-10-30', 2025, '10/30/1995', NULL), (2026, 2026, 'S/N 1377', 'Rainhart Beam Tester Series 416B', 'Cap: 12,000#', '1996-10-15', 2026, '10/15/1996', NULL), (2027, 2027, 'S/N 98143', 'Forney F-250F-F96 Digital Compression Machine (E-4)', 'Range 600 lbs. to 60K', '2002-10-23', 2027, '10/23/2002', NULL), (2028, 2028, 'S/N 1691', 'Soiltest Blocktester--Model CT-713 ', 'Range: 250K', '2002-10-21', 2028, '10/21/2002', NULL), (2029, 2029, 'S/N 1025', 'Basi Esso Tensiometer Model 500 (E-4)', 'Range 500 lbs.', '1998-10-09', 2029, '10/9/1998', NULL), (2030, 2030, 'S/N 82132', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1999-10-04', 2030, '10/4/1999', NULL), (2031, 2031, 'S/N 10394', 'TMI Compression Machine CM2500-1G', 'Range 250K', '1995-11-02', 2031, '11/2/1995', NULL), (2032, 2032, 'S/N 80031', 'Forney FT-40 Compression Machine', 'Range 250K', '1995-10-05', 2032, '10/5/1995', NULL), (2033, 2033, 'S/N 74127', 'Forney FT-40 Compression Machine (MOVED) (E-4)', 'Range: 250K', '1999-10-19', 2033, '10/19/1999', NULL), (2034, 2034, 'S/N PT97--170', 'McCracken Pipe Tester Model 8D-400-2G (E-4 & C-497)', 'Range 50/400K', '2000-07-10', 2034, '7/10/2000', NULL), (2035, 2035, 'S/N 145', 'Brainard Kilman Digital Comp. Machine Model CM-200', 'Range 5K to 250K', '1999-11-23', 2035, '11/23/1999', NULL), (2036, 2036, 'S/N 69156', 'Forney Compression Machine FT-40-E400', 'Ranges: 20K/250K', '1999-11-01', 2036, '11/1/1999', NULL), (2037, 2037, 'S/N 150', 'Brainard Kilman Compression Machine Model CM-200w/E-400 Dig.', 'Range 250K', '1999-02-22', 2037, '2/22/1999', NULL), (2038, 2038, 'S/N 74130', 'Forney FT-40-DR Compression Machine (MOVED) (E-4)', 'Range 30/250K', '2003-06-26', 2038, '6/26/2003', NULL), (2039, 2039, 'S/N 66207', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30/300K- NOT IN USE.', '2000-11-01', 2039, '11/1/2000', NULL), (2040, 2040, 'S/N 9539', 'Soiltest CT-7250 Accutech Digital Compression Machine--BROKE', 'Range 25K to 250K (E-4)', '1999-05-06', 2040, '5/6/1999', NULL), (2041, 2041, 'S/N 3152', 'Soiltest U-160 Compression Machine Unconfined Double Ring', 'Range 500 lbs.', '2000-10-16', 2041, '10/16/2000', NULL), (2042, 2042, 'S/N 79143', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-10-24', 2042, '10/24/2006', NULL), (2043, 2043, 'S/N 87043-0603291', 'Forney FT-40-CS-100-2A Compression Machine (MOVED) (E-4)', 'Range: 2.5K / 250K', '2006-04-18', 2043, '4/18/2006', NULL), (2044, 2044, 'S/N 99007', 'Forney F-400-F-F96 Digital Compression Machine (E-4)', 'Range 4K to 400K', '2004-10-11', 2044, '10/11/2004', NULL), (2045, 2045, 'S/N 181', 'Boart Longyear CM-200 w/E400 Digital Compression Machine (E-4)', 'Range: 20K to 300K', '2005-10-04', 2045, '10/4/2005', NULL), (2046, 2046, 'S/N 67065', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2005-01-12', 2046, '1/12/2005', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (2047, 2047, 'S/N 735', 'Pine Instruments Asphalt Tester with Stripchart', 'Range 2.5/5/10K', '1996-12-04', 2047, '12/4/1996', NULL), (2048, 2048, 'S/N 86095', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', NULL, 2048, 'New', NULL), (2049, 2049, 'S/N 68280', 'Baldwin Universal Testing Machine', 'Range 2.4/6/12/60K', '1997-10-09', 2049, '10/9/1997', NULL), (2050, 2050, 'S/N 85046', 'Forney LT-1000-DP Digital Compression Machine (E-4)', 'Range 400K (Moved) ', '2002-10-21', 2050, '10/21/2002', NULL), (2051, 2051, 'S/N 4879', 'Skidmore Wilhelm Bolt Tester Model M (E-4)', 'Range 100K', '1998-11-11', 2051, '11/11/1998', NULL), (2052, 2052, 'S/N 116', 'Brainard Kilman Digital Compression Machine CM-200', 'Range 20K/250K', '1999-10-12', 2052, '10/12/1999', NULL), (2053, 2053, 'S/N 002JJ', 'CM Hoist Tester ( Man. Specs)', 'Range 8/30K', '1998-11-10', 2053, '11/10/1998', NULL), (2054, 2054, 'S/N 03206', 'Forney F-30-EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2006-10-25', 2054, '10/25/2006', NULL), (2055, 2055, 'S/N 07219', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-12-17', 2055, '12/17/2007', NULL), (2056, 2056, 'S/N 87103-0710302 ', 'Cal-Teck CT-250-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-11-27', 2056, '11/27/2007', NULL), (2057, 2057, 'S/N 90036', 'Forney QC-400-D2 Digital Compression Machine (SOLD) (E-4)', 'Range: 4K to 400K', '2007-10-23', 2057, '10/23/2007', NULL), (2058, 2058, 'S/N 63008', 'Forney LT-700 Compression Machine (E-4)', 'Range: 4K to 400K', '2008-10-22', 2058, '10/22/2008', NULL), (2059, 2059, 'S/N 06287', 'Forney F-25 EX - F - CPilot Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-10-22', 2059, '10/22/2009', NULL), (2060, 2060, 'S/N 041100000020', 'ELE International Digital Compression Machine 36-0655/02 (E-4) ', 'Range: 250K', '2005-10-26', 2060, '10/26/2005', NULL), (2061, 2061, 'S/N 59772', 'Forney Compression Machine--Model-QC-125', 'Range: ', '2001-10-10', 2061, '10/10/2001', NULL), (2062, 2062, 'S/N 70054', 'Forney FT-40 Compression Machine (E-4) ', 'Range 250K', '2006-10-17', 2062, '10/17/2006', NULL), (2063, 2063, 'S/N 61196', 'Forney FT-20 Compression Machine', 'Range: 250K', '1996-11-18', 2063, '11/18/1996', NULL), (2064, 2064, 'S/N 73199', 'Forney QC-200-DR500 Digital Compression Machine (E-4) ', 'Range: 400K', '2006-10-26', 2064, '10/26/2006', NULL), (2065, 2065, 'S/N 89037', 'Forney FT-250F-01 Compression Machine (MOVED) (E-4) ', 'Range: 250K', '2006-10-30', 2065, '10/30/2006', NULL), (2066, 2066, 'S/N 12241', 'Wykeham-Farrance Single Proving Ring Model #14230P (MOVED) ', 'Cap: 11,200 lbs (E-4 & Man Specs)', '2006-10-10', 2066, '10/10/2006', NULL), (2067, 2067, 'S/N 69075', 'Forney QC-225 Compression Machine (E-4)', 'Range: 400K', '2008-10-13', 2067, '10/13/2008', NULL), (2068, 2068, 'S/N 3921-95003', 'SJ Chain Horizontal Chain Tester w/CS-100-2 Digital ', 'Range: 7K to 180K (E-4 & 2%)', '2009-10-13', 2068, '10/13/2009', NULL), (2069, 2069, 'S/N 04051', 'Forney LA-0270-99 Beam Tester (E-4)', 'Range: 30K ', '2007-01-02', 2069, '1/2/2007', NULL), (2070, 2070, 'S/N Unknown ', 'Forney QC-50 Compression Machine (E-4) ', 'Range: 400K', '2007-11-05', 2070, '11/5/2007', NULL), (2071, 2071, 'S/N GB-0572081', 'Forney PT-250 Pipe Tester w/Gauge Buster (E-4 & C-497)', 'Range: 250K', '2006-10-30', 2071, '10/30/2006', NULL), (2072, 2072, 'S/N 3036-3-00', 'IPC Universal Testing Machine UTM 100 (E-4)', 'Range: 100 Kn T & C', '2006-10-24', 2072, '10/24/2006', NULL), (2073, 2073, 'S/N 18383', 'RDP Electronics LVDT RADIAL 1 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 2073, '10/24/2006', NULL), (2074, 2074, 'S/N TW2243-SJ3010DA', 'SPX Powerteam Post Tension Jack PTO33218 w/Gauge #12, #224 ', 'Range: 35 K (E-4 & PCI)', '2007-11-14', 2074, '11/14/2007', NULL), (2075, 2075, 'S/N', 'Simlpex Stressing - Portable (E-4 & PCI) OUT OF SERVICE', 'Range:', NULL, 2075, 'New', NULL), (2076, 2076, 'S/N 976-00109', 'Soiltest CT-710-CS-100-2LC Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2007-11-07', 2076, '11/7/2007', NULL), (2077, 2077, 'S/N 07279', 'Forney F-25EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-10-22', 2077, '10/22/2008', NULL), (2078, 2078, 'S/N 05198 ', 'Forney F-502-F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2012-10-22', 2078, '10/22/2012', NULL), (2079, 2079, 'S/N 72066', 'Forney LT-708-2 Compression Machine (E-4)', 'Range: 300K / 800K ', '2012-10-23', 2079, '10/23/2012', NULL), (2080, 2080, 'S/N 87072', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K', '2012-10-23', 2080, '10/23/2012', NULL), (2081, 2081, 'S/N 2771', 'Humboldt Marshall H-1339 Single Proving Ring (E-4 & Man Specs)', 'Range: 1K to 10K', '2007-10-10', 2081, '10/10/2007', NULL), (2082, 2082, 'S/N 00-04-0610051', 'Soiltest Accutech Mdl 36-3088/02-GB Digital Compression Machine ', 'Range: 5K to 500K (E-4)', '2008-10-07', 2082, '10/7/2008', NULL), (2083, 2083, 'S/N TW2245', 'SPX Powerteam Post Tension Jack Model PE554 (E-4 & PCI)', 'Range: 35 K ', '2008-05-13', 2083, '5/13/2008', NULL), (2084, 2084, 'S/N 39511 NC#13', 'HCS Hydraulic Load Cell (E-4 2% ManSpecs)', 'Range: 60K', '2013-06-13', 2084, '6/13/2013', NULL), (2085, 2085, 'S/N 4836x72', 'LoTes Model LT -10 Digital Compression Machine(E-4 & D695& 2%)', 'Range: 100 lbs to 10,000 lbs', '2013-09-03', 2085, '9/3/2013', NULL), (2086, 2086, 'S/N 69185-100831-5', 'Forney FT-40-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (ID# Y00143)', '2013-09-05', 2086, '9/5/2013', NULL), (2087, 2087, 'S/N Unknown', 'Forney FT-10-01 Compression Machine (E-4 & 2% ManSpecs)', 'Range: 30K', '2013-04-10', 2087, '4/10/2013', NULL), (2088, 2088, 'S/N 01207666/8', 'Eilon Engineering Ron 2501 Load Cell', 'Range: 25K', NULL, 2088, 'new', NULL), (2089, 2089, 'S/N 68103', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 300K', '2013-09-04', 2089, '9/4/2013', NULL), (2090, 2090, 'S/N 73174-97106', 'Forney QC-200-100-3 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-09-04', 2090, '9/4/2013', NULL), (2091, 2091, 'S/N 3961-135', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-09-04', 2091, '9/4/2013', NULL), (2092, 2092, 'S/N 06/188038', 'Paul Prestress Jack 6/10 Inch Ram - Channel 1 (E-4 & PCI & 2%)', 'Range: 18 KN / 200 KN', '2013-09-03', 2092, '9/3/2013', NULL), (2093, 2093, 'S/N 68070', 'Forney QC-150-DR Comp. Machine (located at CCI) (E-4)', 'Range: 300K (High Range Only) ', '2013-09-10', 2093, '9/10/2013', NULL), (2094, 2094, 'S/N 68254', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K ', '2013-09-10', 2094, '9/10/2013', NULL), (2095, 2095, 'S/N 83119', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-09-12', 2095, '9/12/2013', NULL), (2096, 2096, '', 'Testmark CM-3000-SD/CM-0020-RT Digital Compression Machine ', '', '0000-00-00', 2096, '', NULL), (2097, 2097, 'S/N 04115', 'Forney F-25F-F96-60-HV Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-09-23', 2097, '9/23/2013', NULL), (2098, 2098, 'S/N 04210', 'Forney FX-250F-PILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-09-23', 2098, '9/23/2013', NULL), (2099, 2099, 'S/N 9403-01113', 'Soiltest CT-800-CS-100-2 Digital Compression Machine (E-4) ', 'Range: 3K to 250K ', '2013-09-23', 2099, '9/23/2013', NULL), (2100, 2100, 'S/N 04218', 'Forney F-25EX-E-PI-R Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-09-24', 2100, '9/24/2013', NULL), (2101, 2101, 'S/N 5857', 'Forney FT-26 Compression Machine w/ Hand Pump (E-4)', 'Range: 200K', '2013-10-02', 2101, '10/2/2013', NULL), (2102, 2102, 'S/N 543610-16', 'Eilon Engineering RON 2501H-05 Load Cell (ManSp & 0.1% FS)', 'Range: 10K', '2006-09-26', 2102, '9/26/2006', NULL), (2103, 2103, 'S/N 2071505', 'Elion Engineering RON 2100 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', '2006-09-08', 2103, '9/8/2006', NULL), (2104, 2104, 'S/N 5041477', 'Eilon Engineering RON 2100 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 80K', '2006-10-02', 2104, '10/2/2006', NULL), (2105, 2105, 'S/N 03253804', 'Eilon Engineering RON 2000 S-032 Load Cell (ManSp & 0.1% FS)', 'Range: 6,400 lbs ', '2007-10-01', 2105, '10/1/2007', NULL), (2106, 2106, 'S/N 01073489', 'Controls Swiss Hammer 58-C0184-N (C-805)', '', '2006-12-04', 2106, '12/4/2006', NULL), (2107, 2107, 'S/N 96106', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2006-09-13', 2107, '9/13/2006', NULL), (2108, 2108, 'S/N 79209', 'Forney FT-250F-01 Compression Machine', 'Range 250K', '2002-09-25', 2108, '9/25/2002', NULL), (2109, 2109, 'S/N 2079', 'MTS Load Cell 661.14A-03 (Tension & Comp)', 'Range 125/250/550 lbs. (T & C)', '1996-08-07', 2109, '8/7/1996', NULL), (2110, 2110, 'S/N 13195', 'Gilson Model MC 251 Compression Machine (E-4)', 'Range: 250K', '2001-09-17', 2110, '9/17/2001', NULL), (2111, 2111, 'S/N 89011-01104', 'Forney QC-410-D-CS-100-3 Compression Machine ', 'Range 2K to 400K (E-4)', '2002-09-19', 2111, '9/19/2002', NULL), (2112, 2112, 'S/N 1293', 'Soiltest CT-724 Compression Machine (E-4)', 'Range 250K', '1997-09-16', 2112, '9/16/1997', NULL), (2113, 2113, 'S/N', 'Extra Cartridge for Displacment', 'Range +/- 2.5 Inch', NULL, 2113, 'NEW', NULL), (2114, 2114, 'S/N 13799', 'Testmark CM-2500-DB Digital Compression Machine (E-4)', 'Range: 2K to 250K', '2003-10-02', 2114, '10/2/2003', NULL), (2115, 2115, 'S/N 78042', 'Forney FT-40-DR Digital Compression Machine (E-4)', 'Range 30/250K', '2003-09-17', 2115, '9/17/2003', NULL), (2116, 2116, 'S/N 4564', 'Tinius Olsen Digital Tensile Tester w/ M-test Windows (E-4)', 'Range: 120K', '2000-09-11', 2116, '9/11/2000', NULL), (2117, 2117, 'S/N 3339', 'Soiltest CT-710 Compression Machine', 'Range 250K', '2000-01-17', 2117, '1/17/2000', NULL), (2118, 2118, 'S/N 382', 'Lucker Tensile Tester w/ Ametek Digital Indicator Model 93P', 'Range 150K (E-4)', '2000-10-10', 2118, '10/10/2000', NULL), (2119, 2119, 'S/N 87027', 'Forney QC-400-2 Compression Machine', 'Range 30/400K', '1999-09-28', 2119, '9/28/1999', NULL), (2120, 2120, 'S/N 9202', 'Soiltest CT-6500 Compression Machine', 'Range 675K', '1996-09-04', 2120, '9/4/1996', NULL), (2121, 2121, 'S/N 85091', 'Forney FT-60-D Digital Compression Machine', 'Range 250K', '1996-09-25', 2121, '9/25/1996', NULL), (2122, 2122, 'S/N 01040', 'Forney F-250F-01 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2004-09-13', 2122, '9/13/2004', NULL), (2123, 2123, 'S/N 82135', 'Forney QC-400-D Compression Machine (IMS) (E-4)', 'Range: 4K to 400K', '2000-09-13', 2123, '9/13/2000', NULL), (2124, 2124, 'S/N 01134', 'Forney F-25F-01 Compression Machine (E-4)', 'Range: 250K', '2004-09-20', 2124, '9/20/2004', NULL), (2125, 2125, 'S/N 81196', 'Forney FT-40 Compression Machine', 'Range 250K', '1999-09-30', 2125, '9/30/1999', NULL), (2126, 2126, 'S/N 42930', 'Baldwin-Southwark-Emery Compression Machine', 'Range 10/90K', '1998-09-09', 2126, '9/9/1998', NULL), (2127, 2127, 'S/N Unknown', 'Forney Recon Compression Machine', 'Range 400K', '1995-09-21', 2127, '9/21/1995', NULL), (2128, 2128, 'S/N 9513', 'Accutech Model CT-7250 Digital Compression Machine (E-4)', 'Range 250K', '2000-09-25', 2128, '9/25/2000', NULL), (2129, 2129, 'S/N 81220', 'Forney QC-400-1 Compression Machine', 'Range 400K', '1995-09-18', 2129, '9/18/1995', NULL), (2130, 2130, 'S/N 01178', 'Forney F-25F-DR 2001 Digital Compression Machine (E-4)', 'Range: 250K', '2004-09-23', 2130, '9/23/2004', NULL), (2131, 2131, 'S/N 9101', 'Soiltest D-500 Direct Shear Machine (E-4)', 'Range:', '2000-08-07', 2131, '8/7/2000', NULL), (2132, 2132, '', '6; 100 ton jacks and 7; 40 ton jacks (in house) OUT OF SERVICE', 'Range 100K & 40K', '1997-05-22', 2132, '5/22/1997', NULL), (2133, 2133, 'S/N R32558', 'Riehle Compression Machine Model T-20 (E-4)', 'Range 12/60K', '2003-09-23', 2133, '9/23/2003', NULL), (2134, 2134, 'S/N 95001', 'Wegener Ultitest 500 Model B (E-4)', 'Range: 500 lbs', '2004-09-10', 2134, '9/10/2004', NULL), (2135, 2135, 'S/N 87069', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-08-03', 2135, '8/3/2004', NULL), (2136, 2136, 'S/N 77053', 'Forney FT-31-DR Compression Machine', 'Range 30/250K', '1995-09-02', 2136, '9/2/1995', NULL), (2137, 2137, 'S/N HLT 69021', 'Hoist Tester HLTI', 'Range 5/10 Ton', '1996-03-20', 2137, '3/20/1996', NULL), (2138, 2138, 'S/N 6023', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 250K', '2003-09-17', 2138, '9/17/2003', NULL), (2139, 2139, 'S/N 9839-99108', 'Soiltest CT-7250-CS-100-2 Compression Machine', 'Range: 250K', '1999-09-22', 2139, '9/22/1999', NULL), (2140, 2140, 'S/N 90008029', 'Com-Ten 951KRC200020 Digital Test System (E-4)', 'Range: 20 lb ', '2004-09-08', 2140, '9/8/2004', NULL), (2141, 2141, 'S/N 04103', 'Forney FX-500X-F96 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2004-09-03', 2141, '9/3/2004', NULL), (2142, 2142, 'S/N 13597', 'Testmark Model CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (SOLD) ', '2007-09-18', 2142, '9/18/2007', NULL), (2143, 2143, 'S/N', 'Tinius Olsen Super L Universal Testing Machine (E-4)', 'Range: 120K', NULL, 2143, 'New', NULL), (2144, 2144, 'S/N 7301118', 'Forney QC-400-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2009-09-09', 2144, '9/9/2009', NULL), (2145, 2145, 'S/N 4636X72', 'Lo-Tes Model LT-10 Plastic Pipe Tester (E-4 & C-497)', 'Range: 200 lbs to 10,000 lbs', '2008-10-01', 2145, '10/1/2008', NULL), (2146, 2146, 'S/N 11501G', 'Gilson Model MC300 BD Digital Compression Machine (E-4)', 'Range: 3,000 LBS TO 300,000 LBS', '2006-09-07', 2146, '9/7/2006', NULL), (2147, 2147, 'S/N 749167/74916', 'Sensotec Compression Machine (E-4)', 'Range: 20K', '2006-09-15', 2147, '9/15/2006', NULL), (2148, 2148, 'S/N Unknown', 'SRW Connection Machine (4 load cells) (OOS) (E-4)', 'Range: 2K-20K', '2004-09-15', 2148, '9/15/2004', NULL), (2149, 2149, 'S/N 476271', 'Druck Pressure Transducer System', 'Cap: 275 psi', '0000-00-00', 2149, '', NULL), (2150, 2150, 'S/N 8803', 'Soiltest Direct Shear Machine with Digital Readout (PADOT #2583)', '2 - 1500 lbCells Model D500', '2006-09-12', 2150, '9/12/2006', NULL), (2151, 2151, 'S/N 05156', 'Forney Model F-25EX-E-DR500 Compression Machine', 'Range: 250,000 lbs ', '2006-09-13', 2151, '9/13/2006', NULL), (2152, 2152, 'S/N 4616', 'Karol Warner 9210 Digital Manometer (D-5720 & 2%)', 'Range: 800mmHg', '2013-04-10', 2152, '4/10/2013', NULL), (2153, 2153, 'S/N 95034', 'Forney F-250F-01 Analog Compression Machine (MOVED) (E-4)', 'Range: 250K', '2007-09-10', 2153, '9/10/2007', NULL), (2154, 2154, 'S/N 91047-00115', 'Forney FT-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 1K to 250K ', '2007-09-20', 2154, '9/20/2007', NULL), (2155, 2155, 'S/N 92100', 'ForneyF-250C-D2 Pilot Digital Compression Machine (E-4)', 'Range: 250K', '2006-09-20', 2155, '9/20/2006', NULL), (2156, 2156, 'S/N 01080', 'Forney F-250F-F96 Digital Compression Machine (E-4)', 'Range: 1K to 90K ', '2013-09-09', 2156, '9/9/2013', NULL), (2157, 2157, 'S/N 13602', 'Testmark CM-3000-LDM Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-09-23', 2157, '9/23/2013', NULL), (2158, 2158, 'S/N 05168', 'Forney F-25EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 250K', '2005-10-25', 2158, '10/25/2005', NULL), (2159, 2159, 'S/N 74130', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 30K/250K', '2007-09-11', 2159, '9/11/2007', NULL), (2160, 2160, 'S/N 007', 'HCN Dial Indicator (OOS) (D-6027)', 'Range: 2 inch', '2009-08-26', 2160, '8/26/2009', NULL), (2161, 2161, 'S/N H3010', 'Instron 4301', 'Range: 1K', NULL, 2161, 'New', NULL), (2162, 2162, '', '', '', '0000-00-00', 2162, '', NULL), (2163, 2163, '', '', '', '0000-00-00', 2163, '', NULL), (2164, 2164, '', '', '', '0000-00-00', 2164, '', NULL), (2165, 2165, '', '', '', '0000-00-00', 2165, '', NULL), (2166, 2166, '', '', '', '0000-00-00', 2166, '', NULL), (2167, 2167, '', '', '', '0000-00-00', 2167, '', NULL), (2168, 2168, '', '', '', '0000-00-00', 2168, '', NULL), (2169, 2169, '', '', '', '0000-00-00', 2169, '', NULL), (2170, 2170, '', '', '', '0000-00-00', 2170, '', NULL), (2171, 2171, '', '', '', '0000-00-00', 2171, '', NULL), (2172, 2172, '', '', '', '0000-00-00', 2172, '', NULL), (2173, 2173, '', '', '', '0000-00-00', 2173, '', NULL), (2174, 2174, '', '', '', '0000-00-00', 2174, '', NULL), (2175, 2175, '', '', '', '0000-00-00', 2175, '', NULL), (2176, 2176, '', '', '', '0000-00-00', 2176, '', NULL), (2177, 2177, '', '', '', '0000-00-00', 2177, '', NULL), (2178, 2178, '', '', '', '0000-00-00', 2178, '', NULL), (2179, 2179, '', '', '', '0000-00-00', 2179, '', NULL), (2180, 2180, '', '', '', '0000-00-00', 2180, '', NULL), (2181, 2181, '', '', '', '0000-00-00', 2181, '', NULL), (2182, 2182, '', '', '', '0000-00-00', 2182, '', NULL), (2183, 2183, '', '', '', '0000-00-00', 2183, '', NULL), (2184, 2184, '', '', '', '0000-00-00', 2184, '', NULL), (2185, 2185, '', '', '', '0000-00-00', 2185, '', NULL), (2186, 2186, '', '', '', '0000-00-00', 2186, '', NULL), (2187, 2187, '', '', '', '0000-00-00', 2187, '', NULL), (2188, 2188, '', '', '', '0000-00-00', 2188, '', NULL), (2189, 2189, '', '', '', '0000-00-00', 2189, '', NULL), (2190, 2190, '', '', '', '0000-00-00', 2190, '', NULL), (2191, 2191, '', '', '', '0000-00-00', 2191, '', NULL), (2192, 2192, 'S/N 03018261/12', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 25 Ton', '2013-05-30', 2192, '5/30/2013', NULL), (2193, 2193, 'S/N H1333', 'Simplex P-22 Post Tension Jack (E-4 & PCI)', 'Range: 25K (8,000 psi)', '2013-09-25', 2193, '9/25/2013', NULL), (2194, 2194, 'S/N 21238747/7558', 'Eilion Engineering Ron 2501-S10 (ManSpecs 0.1%FS)', 'Range: 20K', '2013-06-06', 2194, '6/6/2013', NULL), (2195, 2195, '', '', '', '0000-00-00', 2195, '', NULL), (2196, 2196, 'S/N 0507074/14', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 2196, '8/27/2013', NULL), (2197, 2197, ' ', ' ', ' ', '0000-00-00', 2197, '', NULL), (2198, 2198, 'S/N 08007', 'Forney F-25EX-E-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-02-03', 2198, '2/3/2009', NULL), (2199, 2199, 'S/N 70116', 'Forney LT-704-2 Compression Machine (E-4)', 'Range 60/400K', '1997-07-31', 2199, '7/31/1997', NULL), (2200, 2200, 'S/N 69075', 'Forney QC-225 Compression Machine (E-4)', 'Range: 400K', '2008-10-13', 2200, '10/13/2008', NULL), (2201, 2201, 'S/N 06242', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K (SOLD)', '2008-10-20', 2201, '10/20/2008', NULL), (2202, 2202, 'S/N 87157-00116', 'Forney QC-400-C-CS-100-3 Digital Compression Machine (E-4)', 'Range: 3K to 400K ', '2009-02-16', 2202, '2/16/2009', NULL), (2203, 2203, 'S/N 041100000020', 'ELE International Digital Compression Machine 36-0655/02 (E-4) ', 'Range: 250K', '2005-10-26', 2203, '10/26/2005', NULL), (2204, 2204, 'S/N 97143', 'Forney F-703F-F96 Digital Compression Machine (E-4)', 'Range: 700K ', NULL, 2204, 'New', NULL), (2205, 2205, 'S/N ', 'Boart Longyear LD114 Direct Shear Box (E-4)', 'Range: ', NULL, 2205, 'New', NULL), (2206, 2206, 'S/N 3236x72', 'LoTes Model LT -10 Digital Compression Machine (E-4)', 'Range: 500 lbs to 15K (ID# 040)', '2009-03-17', 2206, '3/17/2009', NULL), (2207, 2207, 'S/N MG4070', 'Wykeham Farrance LVDT Triaxial (D-6027)', 'Range: 50mm', '2005-02-21', 2207, '2/21/2005', NULL), (2208, 2208, 'S/N 9514', 'Soiltest CT-7250-2 Digital Compression Machine w/ADR Digital', 'Range: 2K to 250K (E4)', '2007-01-10', 2208, '1/10/2007', NULL), (2209, 2209, 'S/N 842', 'Velzy Post Tension Jack w/ Gauge #1001 (E-4 & PCI)', 'Range: 45K (I Year Schedule) (OOS)', '2010-01-21', 2209, '1/21/2010', NULL), (2210, 2210, 'S/N 79002', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 300K', '2008-08-27', 2210, '8/27/2008', NULL), (2211, 2211, 'S/N 96076', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2019-02-21', 2211, '2/21/2019', NULL), (2212, 2212, 'S/N', 'Tinius Olsen Model L Compression Machine (E-4)', 'Range: 10K / 60K ', NULL, 2212, 'New', NULL), (2213, 2213, ' ', 'Forney QC-400C-GBP Digital Compression Machine (E-4)', 'Range: 3K to 400K (MOVED)', '2007-02-15', 2213, '2/15/2007', NULL), (2214, 2214, 'S/N 1351', 'Rainhart Beam Tester Unit B (E-4)', 'Range: 12K', '2006-07-20', 2214, '7/20/2006', NULL), (2215, 2215, 'S/N 90111', 'Forney FT-250-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-06-22', 2215, '6/22/2006', NULL), (2216, 2216, 'S/N 98146', 'Forney F-250-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-02-25', 2216, '2/25/2008', NULL), (2217, 2217, 'S/N 95001', 'Wegener Ultitest 500 Model B (E-4)', 'Range: 500 lbs', '2004-09-10', 2217, '9/10/2004', NULL), (2218, 2218, 'S/N 77060', 'Forney FT-31 Compression Machine', 'Range 250K', '2000-05-17', 2218, '5/17/2000', NULL), (2219, 2219, 'S/N 3345-Q7175', 'Instron Mdl. 3345 Digital Compression Machine (E-4) ', 'Range: 10 lbs to 1,124 lbs', '2008-04-23', 2219, '4/23/2008', NULL), (2220, 2220, 'S/N 101', 'Enerpac Pushout Tester w/ CS-100-1S Digital Readout ', 'Range: 100 lbs to 8K (E-4)', '2009-08-13', 2220, '8/13/2009', NULL), (2221, 2221, 'S/N 02137', 'Forney FX250F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2006-08-10', 2221, '8/10/2006', NULL), (2222, 2222, 'S/N GCC06-0512', 'GeoComp Sheartrac II Direct Shear (E-4) OOS', '', '0000-00-00', 2222, '', NULL), (2223, 2223, 'S/N 3316', 'Soiltest CT-710 Compression Machine (E-4)', 'Range 250K', '1997-08-26', 2223, '8/26/1997', NULL), (2224, 2224, 'S/N 84032', 'Forney F-25F-DR500 Digital Compression Machine (E4)', 'Range: 3K to 240K', '2004-07-06', 2224, '7/6/2004', NULL), (2225, 2225, 'S/N 96073', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2005-05-09', 2225, '5/9/2005', NULL), (2226, 2226, 'S/N 04226', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4) ', 'Range: 2.5 K to 250 K', '2007-12-06', 2226, '12/6/2007', NULL), (2227, 2227, 'S/N 181', 'Boart Longyear CM-200 w/E400 Digital Compression Machine (E-4)', 'Range: 20K to 300K', '2005-10-04', 2227, '10/4/2005', NULL), (2228, 2228, 'S/N 86121', 'Forney QC-200-DR Compression Machine (MOVED) (E-4)', 'Range: 30K / 400K', '2007-05-01', 2228, '5/1/2007', NULL), (2229, 2229, 'S/N 98038', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-08-13', 2229, '8/13/2008', NULL), (2230, 2230, 'S/N 81125', 'Forney FT-40-DR Compression Machine (E4)', 'Range: 30K / 250K', '2005-03-31', 2230, '3/31/2005', NULL), (2231, 2231, 'S/N 73247 ', 'Forney QC-50 Compression Machine (E-4)', 'Range: 400K', '2006-02-01', 2231, '2/1/2006', NULL), (2232, 2232, 'S/N 40883-5-EP2-', 'Tinius Olsen Model L UTM w/Admet EP2 Digital', 'Range: 600 to 60,000 lbs (E-4)', '2012-03-27', 2232, '3/27/2012', NULL), (2233, 2233, 'S/N 63221', 'Tinius Olsen Type LC Compression Machine', 'Range 60/600K', '1997-07-15', 2233, '7/15/1997', NULL), (2234, 2234, 'S/N 69032', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-02-15', 2234, '2/15/2006', NULL), (2235, 2235, 'S/N 84162', 'Forney FT-21-DR Compression Machine (E-4 & 2%)', 'Range: 30K / 250K', '2010-05-05', 2235, '5/5/2010', NULL), (2236, 2236, 'S/N 89087', 'Forney FT-250-F-01 Compression Machine (E-4)', 'Range: 250K', '2013-02-06', 2236, '2/6/2013', NULL), (2237, 2237, 'S/N 06287', 'Forney F-25 EX - F - CPilot Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-10-22', 2237, '10/22/2009', NULL), (2238, 2238, 'S/N 143735-03100', 'TO Super L CS-100-7 Universal Testing Machine (E-4)', 'Range: 400 lbs to 60K', '2010-09-07', 2238, '9/7/2010', NULL), (2239, 2239, 'S/N 1005 ', 'Soiltest CT-710-02 Compression Machine (E-4) (MOVED)', 'Range: 30K/250K', '2008-11-17', 2239, '11/17/2008', NULL), (2240, 2240, 'S/N 9716', 'Skidmore Wilhelm Model MLCompression Machine (E-4 & 2%) ', 'Range: 100K', '2010-08-26', 2240, '8/26/2010', NULL), (2241, 2241, 'S/N 69014', 'Forney QC-50B Compression Machine (E-4)', 'Range: 400K', '2012-02-16', 2241, '2/16/2012', NULL), (2242, 2242, 'S/N 149905', 'Tinius Olsen Super L Digital Compression Machine (E-4)', 'Range: 6K/30K/120K/300K', NULL, 2242, 'New', NULL), (2243, 2243, 'S/N 10015', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-03-23', 2243, '3/23/2011', NULL), (2244, 2244, 'S/N 93511', 'Tinius Olsen Super L Compression Machine (E-4)', 'Range: 16K / 80K / 400K ', '2014-09-02', 2244, '9/2/2014', NULL), (2245, 2245, 'S/N 58464-3', 'Tinius Olsen Model L Compression Machine (E-4)', 'Range: 80K / 400K', '2006-11-29', 2245, '11/29/2006', NULL), (2246, 2246, 'S/N 11501G', 'Gilson Model MC300 BD Digital Compression Machine (E-4)', 'Range: 3,000 LBS TO 300,000 LBS', '2006-09-07', 2246, '9/7/2006', NULL), (2247, 2247, 'S/N 03076 ', 'Forney FX-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-02-09', 2247, '2/9/2012', NULL), (2248, 2248, 'S/N 261-08006', 'Wafios KKM200 Chain Tester w/ Hardy 2151/20WC Digital', 'Range 220,000#', '1997-07-24', 2248, '7/24/1997', NULL), (2249, 2249, 'S/N 444', 'Ametek Pull Tester (E-4)', 'Range: 50 lb.', '1998-04-28', 2249, '4/28/1998', NULL), (2250, 2250, 'S/N 68264-00112', 'Forney LT-1000-CS-100-2 Digital Compression Machine (E-4)', 'Range: 6K to 600K', '2014-10-06', 2250, '10/6/2014', NULL), (2251, 2251, 'S/N 10207', 'Testmark CM-2500-PI Digital Compression Machine (E-4)', 'Range: 250K', '2007-04-13', 2251, '4/13/2007', NULL), (2252, 2252, 'S/N 583413', 'United DH-10 Tensile Tester w/ 2 Gauges (E-4 2% ManSpecs)', 'Range: 2K / 10K (ID# UTOWN)', '2014-05-29', 2252, '5/29/2014', NULL), (2253, 2253, 'S/N 65110-01106', 'Forney FT-31-CS-100-2 Digital Compression Mach. (E-4)', 'Range: 2.5K to 250K', '2014-03-12', 2253, '3/12/2014', NULL), (2254, 2254, 'S/N 65110-02014', 'Forney FT-31-CS-100-2 Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K', '2005-05-04', 2254, '5/4/2005', NULL), (2255, 2255, 'S/N 66238', 'Forney FT-31 Compression Machine (E-4)', 'Range: 250K', '2015-08-26', 2255, '8/26/2015', NULL), (2256, 2256, 'S/N 523725', 'Satec Emery Mdl. UVI/V Universal Testing Machine (Digital) (E-4)', 'Range: 4.8K/24K/48K/120K ', '2010-10-20', 2256, '10/20/2010', NULL), (2257, 2257, 'S/N 76016-GB0108305', 'Forney FT-40-CS-100 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED) ', '2007-03-20', 2257, '3/20/2007', NULL), (2258, 2258, 'S/N 86030', 'Forney FT-40 Compression Machine (E-4) ', 'Range: 250K', '2007-02-07', 2258, '2/7/2007', NULL), (2259, 2259, 'S/N 76016-GB0108305', 'Forney FT-40-CS-GB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2009-11-23', 2259, '11/23/2009', NULL), (2260, 2260, 'S/N 493412', 'United Calibration Corp. Speedy Tester Model LCH-20 ', 'Range 200 lbs. to 20,000 lbs. (E-4)', '2004-04-08', 2260, '4/8/2004', NULL), (2261, 2261, 'S/N 070708G', 'Gilson MC-300-PR Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2010-08-25', 2261, '8/25/2010', NULL), (2262, 2262, 'S/N 05156', 'Forney Model F-25EX-E-DR500 Compression Machine', 'Range: 250,000 lbs ', '2006-09-13', 2262, '9/13/2006', NULL), (2263, 2263, 'S/N 87204-02017', 'Forney LT-31-CS-100-2 Digital Compression Machine (E-4)', 'Range: 100 lbs to 10K', '2007-06-19', 2263, '6/19/2007', NULL), (2264, 2264, 'S/N Unknown', 'Forney FT-10-01 Compression Machine (E-4 & 2% ManSpecs)', 'Range: 30K', '2013-04-10', 2264, '4/10/2013', NULL), (2265, 2265, 'S/N 1083', 'Pine Instrument Model AF850TX Asphalt Tester (E-4 2% ManSpecs)', 'Range: 2.5K / 5K / 10K', '2016-03-01', 2265, '3/1/2016', NULL), (2266, 2266, 'S/N 234', 'Pine Instrument Model 850 Asphalt Tester (E-4)', 'Range: 2.5K / 5K / 10K', '2015-03-03', 2266, '3/3/2015', NULL), (2267, 2267, 'S/N 5731', 'Forney PT-75 Pipe Tester', 'Range 30/150K', '1995-08-19', 2267, '8/19/1995', NULL), (2268, 2268, 'S/N Unknown ', 'Forney QC-50 Compression Machine (E-4) ', 'Range: 400K', '2007-11-05', 2268, '11/5/2007', NULL), (2269, 2269, 'S/N 86039-00117', 'Forney QC-410-CS-100-2 Compression Machine (E-4)', 'Range: 4K to 400K', '2005-04-19', 2269, '4/19/2005', NULL), (2270, 2270, 'S/N 69178', 'Forney QC-150 Compression Machine', 'Range 300K', '1999-07-12', 2270, '7/12/1999', NULL), (2271, 2271, 'S/N 120311', 'Testmark CM-2500-DIR 250K Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2012-04-23', 2271, '4/23/2012', NULL), (2272, 2272, 'S/N 96084', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K', '2007-06-06', 2272, '6/6/2007', NULL), (2273, 2273, 'S/N 81192', 'Forney QC-400-2 Compression Machine (E-4)', 'Range 30/400K', '1998-09-01', 2273, '9/1/1998', NULL), (2274, 2274, 'S/N 167870', 'Tinius Olsen Mdl. 10000 Tension & Compression Machine (E-4)', '', '2011-10-18', 2274, '10/18/2011', NULL), (2275, 2275, 'S/N 7301118', 'Forney QC-400-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2009-09-09', 2275, '9/9/2009', NULL), (2276, 2276, 'S/N 10706G', 'Gilson MC-400MP Digital Compression Machine (E-4) ', 'Range: 4K to 400K', '2010-02-03', 2276, '2/3/2010', NULL), (2277, 2277, 'S/N 5694', 'Forney FT-10 Compression Machine (E-4)', 'Range: 200K', '2011-08-18', 2277, '8/18/2011', NULL), (2278, 2278, 'S/N 96126', ' w/ XY Recorder Series 1000 (OOS) (E-4)', '', '2007-01-22', 2278, '1/22/2007', NULL), (2279, 2279, 'S/N 07038607039', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-05-22', 2279, '5/22/2008', NULL), (2280, 2280, 'S/N 732233', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K ', '2013-02-05', 2280, '2/5/2013', NULL), (2281, 2281, 'S/N 164004', 'TO Extensometer Model S-100-1AB (E-83)', 'Range: 1\" ID#25-EXT11', '2005-03-29', 2281, '3/29/2005', NULL), (2282, 2282, 'S/N 170', 'MTS Extensometer-Model 632-31E-24 (E-83)', '1\"GL, ID # 25-EX', '2005-03-30', 2282, '3/30/2005', NULL), (2283, 2283, '', 'MTS III Model 204-91.......continued', '', '0000-00-00', 2283, '', NULL), (2284, 2284, 'S/N 270/1119', 'MTS Displacement Card LVDT (D-6027)', 'Range: 5\" ID#25-MTS1DC01', '2004-03-23', 2284, '3/23/2004', NULL), (2285, 2285, 'S/N 16002G', 'Gilson Model MC 250BD-CS-100-PIR Digital Comp. Mach. (E-4)', 'Range: 3K to 250K', '2009-07-20', 2285, '7/20/2009', NULL), (2286, 2286, 'S/N 92143-03112', 'Forney FT-250C-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-12-09', 2286, '12/9/2008', NULL), (2287, 2287, 'S/N GB-0572081', 'Forney PT-250 Pipe Tester w/Gauge Buster (E-4 & C-497)', 'Range: 250K', '2006-10-30', 2287, '10/30/2006', NULL), (2288, 2288, 'S/N 21301', 'Testmark CM-3000-LD Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2008-10-28', 2288, '10/28/2008', NULL), (2289, 2289, 'S/N 75008', 'Forney QC-150-DR Compression Machine (E-4)', 'Range 30 K/300 K', '2012-08-07', 2289, '8/7/2012', NULL), (2290, 2290, 'S/N 87827', 'Enerpac Beam Breaker (E-4 & Man. Specs.)', 'Range: 10K', '2009-03-26', 2290, '3/26/2009', NULL), (2291, 2291, 'S/N 849', 'Soiltest CT-710 Compression Machine w/ ADR Touch (E-4)', 'Range: 250K', '2014-06-16', 2291, '6/16/2014', NULL), (2292, 2292, 'S/N 102', 'Soiltest LC3 Dial Indicator (moved) (D-6027)', 'Range: 0.2 inch ', '2010-04-13', 2292, '4/13/2010', NULL), (2293, 2293, 'S/N 84071', 'Forney FT-40-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2010-05-20', 2293, '5/20/2010', NULL), (2294, 2294, 'S/N 65116-041006', 'Forney FT-31-CS-100-1S Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2015-01-20', 2294, '1/20/2015', NULL), (2295, 2295, 'S/N 68247', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-02-05', 2295, '2/5/2008', NULL), (2296, 2296, 'S/N 09034', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-04-27', 2296, '4/27/2010', NULL), (2297, 2297, 'S/N 910', 'Pine Instrument AF850T Asphalt Tester w/Test Spring S/N 695 ', 'Range: 2.5K / 5K / 10K (E-4)', '2008-02-06', 2297, '2/6/2008', NULL), (2298, 2298, 'S/N 215 ', 'Pine Instrument 750 Asphalt Tester w/ Test Spring S/N 185 (E-4)', 'Range: 2.5K / 5K / 10K', '2008-02-05', 2298, '2/5/2008', NULL), (2299, 2299, 'S/N 72137', 'Forney FT-40-DR Compression Machine (E4)', 'Range 250K only', '2004-02-11', 2299, '2/11/2004', NULL), (2300, 2300, 'S/N 3431', 'W.C. Dillion & Company Model 1 Tensile Tester (E-4)', 'Range: 300 lbs', '2007-02-20', 2300, '2/20/2007', NULL), (2301, 2301, 'S/N 88119', 'Forney FT-40-DR-2001 Digital Compression Machine (E-4)', 'Range: 250K', '2006-03-28', 2301, '3/28/2006', NULL), (2302, 2302, 'S/N 9710-0508012', 'Soiltest CT-7250-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2010-06-30', 2302, '6/30/2010', NULL), (2303, 2303, 'S/N 97053', 'Forney F-500C-LC Digital Compression Machine (E-4)', 'Range: 1K to 500 K ', '2008-03-26', 2303, '3/26/2008', NULL), (2304, 2304, 'S/N Unknown', 'Lane Tester CS-100-1 Digital Compression Machine (E-4)', 'Range: 2.5Kto250K(Do not take above 250)', '2008-12-18', 2304, '12/18/2008', NULL), (2305, 2305, 'S/N CP-0602221-I-48V', 'Admet Expert 5605 Digital Compression Machine (E-4)', 'Range: 20 lbs to 2K', '2009-04-13', 2305, '4/13/2009', NULL), (2306, 2306, 'S/N 90104016', 'Com-Ten 955KRC0050 Digital Test System (E-4)', 'Range: 5K ', '2001-05-02', 2306, '5/2/2001', NULL), (2307, 2307, 'S/N 72201', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2011-10-04', 2307, '10/4/2011', NULL), (2308, 2308, 'S/N 00116', 'Forney F-25 F-01 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2005-12-05', 2308, '12/5/2005', NULL), (2309, 2309, 'S/N 85016', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2001-04-18', 2309, '4/18/2001', NULL), (2310, 2310, 'S/N 14173', 'Forney Mdl. F-325B-Tpilot Digital Compression Machine (E-4)', 'Range: ', NULL, 2310, 'New', NULL), (2311, 2311, 'S/N 08278', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2016-02-24', 2311, '2/24/2016', NULL), (2312, 2312, 'S/N 092000', 'Geotest Mdl. C1710 Beam Breaker (E-4 & Man Specs)', 'Range: 10K (1,230 psi)', '2007-06-13', 2312, '6/13/2007', NULL), (2313, 2313, 'S/N 612490', 'Humboldt Marshall Press w/ S-Type Load Cell (E-4)', 'Range: 10K ', '2011-03-29', 2313, '3/29/2011', NULL), (2314, 2314, 'S/N 050668359', 'Humboldt BG2110-0-16 Dial Indicator OOS (D-6027)', 'Range: 1 inch ', '2010-06-08', 2314, '6/8/2010', NULL), (2315, 2315, 'S/N 68007', 'Forney LT-1000-2 Compression Machine (E-4)', 'Range: 200K / 600K', '2009-03-10', 2315, '3/10/2009', NULL), (2316, 2316, 'S/N 120602G', 'Gilson MC-300CP Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2015-07-13', 2316, '7/13/2015', NULL), (2317, 2317, 'S/N 120HV-1028', 'Baldwin Wiedemann 120HV Universal Testing Machine (E-4)', 'Range: 6K / 24K / 120K (ID# 2845)', '2013-01-21', 2317, '1/21/2013', NULL), (2318, 2318, 'S/N M922026A-727-03', 'ELE Model 300A Direct Shear Machine (E-4 & 2%)', 'Range: 1K Shear Force ', '2010-10-20', 2318, '10/20/2010', NULL), (2319, 2319, 'S/N 64024', 'Forney QC-200-DR Compression Machine (E-4) SOLD', 'Range: 30K / 400K', '2014-02-03', 2319, '2/3/2014', NULL), (2320, 2320, 'S/N 70046', 'Forney QC-150-DR Compression Machine (E-4) (SOLD)', 'Range: 30K / 300K', '2013-04-08', 2320, '4/8/2013', NULL), (2321, 2321, 'S/N 011088333', 'ELE Mdl. 88-4070 Dial Indicator (D-6027)', 'Range: 0.4 inches', '2010-05-12', 2321, '5/12/2010', NULL), (2322, 2322, 'S/N 1001', 'Soiltest Comp Mach w/Starrett Dial Ind 656-617 (D-6027)', 'Range: 0.4 inches', '2010-05-12', 2322, '5/12/2010', NULL), (2323, 2323, 'S/N A-1232/20724', 'Hogentogler Dial Indicator OOS (D-6027)', 'Range: 1 Inch', NULL, 2323, 'New', NULL), (2324, 2324, 'S/N 1051 (SOLD)', 'Satec Model MK3-300-HVL Universal Testing Machine (E-4)', 'Range: 12K / 60K / 150K / 300K ', '2015-09-16', 2324, '9/16/2015', NULL), (2325, 2325, 'S/N 11495', 'Testmark CM4000D (DC16) Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2004-10-27', 2325, '10/27/2004', NULL), (2326, 2326, 'S/N 04008', 'Forney F-50 EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2009-01-05', 2326, '1/5/2009', NULL), (2327, 2327, 'S/N 04008', 'Forney F-50 EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2009-01-05', 2327, '1/5/2009', NULL), (2328, 2328, 'S/N 90005059', 'Com-Ten 95 Series Universal Testing Machine w/ C-Tap Software ', 'Range: 5K (E-4) ', '2011-06-09', 2328, '6/9/2011', NULL), (2329, 2329, 'S/N 96106', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2006-09-13', 2329, '9/13/2006', NULL), (2330, 2330, 'S/N 12105', 'Testmark mdl CM-2500-DB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-04-12', 2330, '4/12/2012', NULL), (2331, 2331, 'S/N 10010', 'Forney F-30EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2012-04-11', 2331, '4/11/2012', NULL), (2332, 2332, 'S/N 06159', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4) Sold', 'Range: 2.5K to 250K', '2014-04-29', 2332, '4/29/2014', NULL), (2333, 2333, 'S/N 61235-1', 'Tinius Olsen Super L Universal Testing Machine w/ Admet Digital ', 'Range: 600 lbs to 60K (E-4)', '2011-09-12', 2333, '9/12/2011', NULL), (2334, 2334, 'S/N 2500C01612', 'Instron Model 250 QC-E1 Digital Compression Machine (E-4)', 'Range: 500 lbs to 100,000 lbs', '2007-08-20', 2334, '8/20/2007', NULL), (2335, 2335, 'S/N 94012-02015', 'Forney F-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K ', '2008-05-19', 2335, '5/19/2008', NULL), (2336, 2336, 'S/N 08291', 'Forney FX-250F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-08-20', 2336, '8/20/2012', NULL), (2337, 2337, 'S/N 16601H', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (ID#108472)', '2009-05-21', 2337, '5/21/2009', NULL), (2338, 2338, ' ', ' ', ' ', '0000-00-00', 2338, '', NULL), (2339, 2339, 'S/N 07082', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-04-23', 2339, '4/23/2007', NULL), (2340, 2340, 'S/N 2016609-2W2', 'Mettler Toledo, Inc. PS60 Scale (E-898)', 'Range: 150 lbs', '2012-05-14', 2340, '5/14/2012', NULL), (2341, 2341, 'S/N 58142', 'Forney FT-26 Compression Machine with hand pump (E-4)', 'Range: 200K', '2007-06-26', 2341, '6/26/2007', NULL), (2342, 2342, 'S/N 80211022', 'ComTen DML 0265 Test System (E-4)', 'Range: 4lbs to 40lbs', '2006-02-07', 2342, '2/7/2006', NULL), (2343, 2343, 'S/N Unknown', 'Tinius Olsen Beam Machine (Out of Service) (E-4) ', 'Range: 1K to 100K', '2004-08-30', 2343, '8/30/2004', NULL), (2344, 2344, 'S/N 143735-03100', 'TO Super L CS-100-7 Digital Compression Machine (E-4)', 'Range: 400 lbs to 60K (SOLD)', '2009-06-11', 2344, '6/11/2009', NULL), (2345, 2345, 'S/N U07', 'Simplex Post Tension Jack Model RC603 (E4 & PCI)', 'Range 120K (8500 PSI) (60 Ton)', '2004-03-02', 2345, '3/2/2004', NULL), (2346, 2346, 'S/N 95119', 'Forney F-250F-DR1 Digital Compression Machine (E-4) ', 'Range: 5K to 250K', '2013-08-27', 2346, '8/27/2013', NULL), (2347, 2347, 'S/N 2746-03108', 'Soiltest CT-710-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K - 250K', '2004-07-19', 2347, '7/19/2004', NULL), (2348, 2348, 'S/N 92065', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2010-04-07', 2348, '4/7/2010', NULL), (2349, 2349, 'S/N 04227', 'Forney F-30EX-F-PILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2009-02-12', 2349, '2/12/2009', NULL), (2350, 2350, 'S/N 1336X72', 'Lotes Model LT-10 Digital Compression Machine (MOVED) (E-4)', 'Range: 200 lbs to 10,000 lbs', '2008-06-02', 2350, '6/2/2008', NULL), (2351, 2351, 'S/N 04205', 'Forney F-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K (Moved)', '2010-08-09', 2351, '8/9/2010', NULL), (2352, 2352, 'S/N 96011', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range: 5K to 250K', '2012-02-06', 2352, '2/6/2012', NULL), (2353, 2353, 'S/N 89100-100628', 'Forney QC-400C-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2012-07-10', 2353, '7/10/2012', NULL), (2354, 2354, 'S/N 84092', 'Forney PT-125-8 Pipe Tester (E-4 & C-497)', 'Range: 30K / 250K', '2008-05-07', 2354, '5/7/2008', NULL), (2355, 2355, 'S/N 69261', 'Forney FT-31 Compression Machine (E-4)', 'Range: 250K', '2006-04-19', 2355, '4/19/2006', NULL), (2356, 2356, 'S/N 06197', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2009-08-26', 2356, '8/26/2009', NULL), (2357, 2357, 'S/N 08097', 'Forney F-25X-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-07-25', 2357, '7/25/2011', NULL), (2358, 2358, 'S/N 60158', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 250K only', '2005-11-15', 2358, '11/15/2005', NULL), (2359, 2359, 'S/N 07016', 'Forney F-40EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2011-02-16', 2359, '2/16/2011', NULL), (2360, 2360, 'S/N 2746', 'Soiltest CT-710-CS100-2A Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K', '2014-01-27', 2360, '1/27/2014', NULL), (2361, 2361, 'S/N 88352', 'Tinius Olsen Electomatic with MTest Windows (E-4)', 'Range: 200 lbs to 20,000 lbs', '2007-06-12', 2361, '6/12/2007', NULL), (2362, 2362, 'S/N 002MB', 'CM Hoist Tester (E4-02)', 'Range: 10/20/40k', '2004-03-18', 2362, '3/18/2004', NULL), (2363, 2363, 'S/N 101', 'Brainard-Kilman CM-215 Digital Compression Machine', 'Range 2.5K to 25K/25K to 250K (E4-02)', '2004-04-06', 2363, '4/6/2004', NULL), (2364, 2364, 'S/N 33918-28', 'Wykeham Farrance Consolidometer Mdl. 24001 (Dead weights)', 'Range:', '0000-00-00', 2364, '', NULL), (2365, 2365, 'S/N 66232', 'Forney LT-700-2 Digital Compression Machine (E-4)', 'Range: 3,5000 lbs to 350,000 lbs', '2013-06-25', 2365, '6/25/2013', NULL), (2366, 2366, 'S/N 04101-6717', 'ELE CT-7250-100-2A Digital Compression Machine', 'Range: 2.5K to 250K (E-4-02)', '2004-02-02', 2366, '2/2/2004', NULL), (2367, 2367, 'S/N 12101', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2,000 lbs to 250,000 lbs', '2013-07-10', 2367, '7/10/2013', NULL), (2368, 2368, 'S/N 66232', 'Forney LT-700-2 Digital Compression Machine (E-4)', 'Range: 3,500 lbs to 350,000 lbs', '2003-09-17', 2368, '9/17/2003', NULL), (2369, 2369, 'S/N 00038', 'Forney F-25E-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-01-23', 2369, '1/23/2012', NULL), (2370, 2370, 'S/N 14098', 'Testmark CM-5000MT Digital Compression Machine w/2 frames(E-4)', '', '2014-11-06', 2370, '11/6/2014', NULL), (2371, 2371, 'S/N 100610', 'Testmark CM-2500-iD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-07-15', 2371, '7/15/2010', NULL), (2372, 2372, 'S/N 1913', 'W.C. Dillon Model L', 'Range 500#', '1995-12-13', 2372, '12/13/1995', NULL), (2373, 2373, 'S/N 09001', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: ', NULL, 2373, 'New', NULL), (2374, 2374, 'S/N 03075', 'Forney FX250F-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 300K', '2011-03-21', 2374, '3/21/2011', NULL), (2375, 2375, 'S/N 081017 ', 'Testmark CM-3000-LXI Digital Compression Machine (E-4)', 'Range: 3K to 300K (ID#M22904)', '2011-02-16', 2375, '2/16/2011', NULL), (2376, 2376, 'S/N 06282 ', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K', '2008-04-14', 2376, '4/14/2008', NULL), (2377, 2377, 'S/N 90112', 'Forney QC400-2 Compression Machine (E-4)', 'Range: 30K to 400K', '2006-01-04', 2377, '1/4/2006', NULL), (2378, 2378, 'S/N 22306-110627-74', 'Testmark CM2500-CS-100-1BR Digital Comnpression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-07-13', 2378, '7/13/2011', NULL), (2379, 2379, 'S/N 05069 ', 'Forney F-25EX-E-PILOT Compression Machine (E-4)', 'Range: 5K to 250 K', '2007-02-12', 2379, '2/12/2007', NULL), (2380, 2380, 'S/N 74115', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K (High range only)', '2014-09-02', 2380, '9/2/2014', NULL), (2381, 2381, 'S/N 71029', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2010-05-17', 2381, '5/17/2010', NULL), (2382, 2382, 'S/N 82132', 'Forney FT-40 DR Compression Machine (E4)', 'Range: 30K (28K) / 250K', '2017-07-10', 2382, '7/10/2017', NULL), (2383, 2383, 'S/N 82130', 'Forney FT-40 DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-09-24', 2383, '9/24/2008', NULL), (2384, 2384, 'S/N 71055-04105', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2017-02-01', 2384, '2/1/2017', NULL), (2385, 2385, 'S/N 87071', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2005-07-19', 2385, '7/19/2005', NULL), (2386, 2386, 'S/N 91047-00115', 'Forney FT-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 1K to 250K ', '2007-09-20', 2386, '9/20/2007', NULL), (2387, 2387, 'S/N Unit #1', 'Simms Post Tension Jack (E-4 & PCI)', 'Range: 4K (400 psi) / 60K (6,000 psi)', '2008-02-11', 2387, '2/11/2008', NULL), (2388, 2388, 'S/N 96086', 'Forney F-250F-DR1 Digital Compression Machine (E-4)', 'Range: 4K to 250K', '2008-05-07', 2388, '5/7/2008', NULL), (2389, 2389, 'S/N 92100', 'ForneyF-250C-D2 Pilot Digital Compression Machine (E-4)', 'Range: 250K', '2006-09-20', 2389, '9/20/2006', NULL), (2390, 2390, 'S/N 83119', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-09-12', 2390, '9/12/2013', NULL), (2391, 2391, 'S/N 69077', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 250K', '2006-12-19', 2391, '12/19/2006', NULL), (2392, 2392, 'S/N 89043', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K ', '2006-02-22', 2392, '2/22/2006', NULL), (2393, 2393, 'S/N 001', 'Boart Longyear Dial Indicator (D-6027)', 'Range: 2 Inch', '2015-10-07', 2393, '10/7/2015', NULL), (2394, 2394, 'S/N 1117', ' BK CBR Frame w/ Speed Control (cal of 2 speed settings)', 'Range: 0.010\" Min/0.050\" Min(ManSpecs)', '2015-10-07', 2394, '10/7/2015', NULL), (2395, 2395, 'S/N 346', 'Geo Durham Perm Panal w/ Trans. & Display (MOVED) (D-6027)', 'Range: 300 PSI ', '2007-02-12', 2395, '2/12/2007', NULL), (2396, 2396, 'S/N 00370', 'ELE Direct Shear Machine Model 26-2121/02 (E-4)', '', '2015-10-07', 2396, '10/7/2015', NULL), (2397, 2397, 'S/N 23702H ', 'Testmark CM-2500 LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', NULL, 2397, 'New', NULL), (2398, 2398, 'S/N 618', 'Detroit Tester UT-4 Universal Testing Machine (E-4)', 'Range: 10K / 40K', '2010-07-12', 2398, '7/12/2010', NULL), (2399, 2399, 'S/N 1346/100141', 'Custom Scientific Instruments CS-235M-010 Compression Machine', 'Range: 11 lbs to 500 lbs (E-4)', '2007-07-09', 2399, '7/9/2007', NULL), (2400, 2400, 'S/N C44735', 'Scot Tensile Tester Model J', 'Range: 50 lbs to 150 lbs', '2006-07-17', 2400, '7/17/2006', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (2401, 2401, 'S/N 90175 ', 'Forney LT-900-Precise Universal Testing Mach. (E-4) ID# CME6013', 'Range: 3K to 400K ', '2015-05-13', 2401, '5/13/2015', NULL), (2402, 2402, 'S/N 11021', 'Forney F-325EX-B-DR500 Digital Compresssion Machine (E-4)', 'Range: 3K to 325K ', '2013-03-20', 2402, '3/20/2013', NULL), (2403, 2403, 'S/N 85136', 'Forney FT-0060-RL Digital Compression Machine w/Red Lion Dig.', 'Range: 7K to 90K (E-4)', '2012-01-03', 2403, '1/3/2012', NULL), (2404, 2404, 'S/N 09115', 'Forney-F-25EX-FTPILOT Digital Compression Machine (E-4)', 'Range:2.5 K to 250 K', '2016-11-28', 2404, '11/28/2016', NULL), (2405, 2405, 'S/N 2613-0709061', 'Admet Expert 2613 Digital Tension & Compression Machine (E-4)', ' (ID# SCO ', '2008-10-28', 2405, '10/28/2008', NULL), (2406, 2406, 'S/N 0352-03111', 'Boltester Mdl. BTT-CS-100-1Z Digital Tensile Machine (E-4)', 'Range: 1K to 60K', '2014-06-10', 2406, '6/10/2014', NULL), (2407, 2407, 'S/N 1016', 'Baldwin Model 300 CT Compression Machine (E-4)', 'Range: 12K / 60K / 300K', '2007-07-17', 2407, '7/17/2007', NULL), (2408, 2408, 'S/N 88070', 'Forney QC-410-D-CS-100-1BR Dig. Comp. Mach. (E-4)', 'Range: 4K to 400K', '2007-05-17', 2408, '5/17/2007', NULL), (2409, 2409, 'S/N 81460 (ID# 0411)', 'United LCH-20-GB Digital Tensile Speedy Tester (E-4)', 'Range: 200 lbs to 20,000 lbs ', '2011-12-14', 2409, '12/14/2011', NULL), (2410, 2410, 'S/N 2584', 'Pull Spotwelder Detroit Test Machine PT2584', 'Range: 4K', '2004-01-08', 2410, '1/8/2004', NULL), (2411, 2411, 'S/N 83086', 'Forney FT-250F-PI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2014-07-08', 2411, '7/8/2014', NULL), (2412, 2412, 'S/N 04050', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-04-16', 2412, '4/16/2008', NULL), (2413, 2413, 'S/N 228', 'Humboldt H3030 Beam Breaker Portable (E-4)', 'Range: 15K', '2011-02-16', 2413, '2/16/2011', NULL), (2414, 2414, 'S/N 9707', 'ELE CT 7250 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-03-26', 2414, '3/26/2012', NULL), (2415, 2415, 'S/N 84151', 'Forney LT-900-D Universal Testing Machine (E-4)', 'Range: 4K to 400K ', '2009-01-20', 2415, '1/20/2009', NULL), (2416, 2416, 'S/N 85198', 'Hercules Prestress Jack Model HSJ (E-4 & PCI)', 'Range 3 / 40K', '2013-02-11', 2416, '2/11/2013', NULL), (2417, 2417, 'S/N 70175', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2006-03-16', 2417, '3/16/2006', NULL), (2418, 2418, 'S/N 101', 'Healthometer', 'Range 350 lbs.', '1999-03-02', 2418, '3/2/1999', NULL), (2419, 2419, 'S/N 101', 'Healthometer', 'Range 350 lbs.', '1999-03-02', 2419, '3/2/1999', NULL), (2420, 2420, 'S/N 01134', 'Forney F-25F-01 Compression Machine (E-4)', 'Range: 250K', '2004-09-20', 2420, '9/20/2004', NULL), (2421, 2421, 'S/N 130602', 'TestmarkCM-3000-I720 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2014-08-05', 2421, '8/5/2014', NULL), (2422, 2422, 'S/N 12202', 'Testmark Digital Compression Machine-Model CM 2500-LD (E-4)', 'Range: 250K', '2006-08-02', 2422, '8/2/2006', NULL), (2423, 2423, 'S/N 68799-5', 'Tinius Olsen Model L Compression Machine (E-4)', 'Range: 60K / 300K', '2008-03-19', 2423, '3/19/2008', NULL), (2424, 2424, 'S/N 233X60', ' LoTes Model LT-10 Digital Compression Machine (E-4)', 'Range: 200 lbs to 10K', '2008-04-22', 2424, '4/22/2008', NULL), (2425, 2425, 'S/N 92135', 'Forney FT-250F-02 Compression Machine (at Hendersonville location)', 'Range 30/250K', '1996-03-06', 2425, '3/6/1996', NULL), (2426, 2426, 'S/N 87188', 'Forney QC-410-D Digital Compression Machine', 'Range 400K', '1996-03-04', 2426, '3/4/1996', NULL), (2427, 2427, 'S/N 2985', 'Soiltest CT-710-DR Compression Machine (at Wickliff location)', 'Range 30/250K', '1996-03-07', 2427, '3/7/1996', NULL), (2428, 2428, 'S/N', 'Forney QC-400-D2 with System 2000', 'Range', '0000-00-00', 2428, '', NULL), (2429, 2429, 'S/N 5546-00100', 'Forney LT-500-CS-100-2 Digital Compression Machine (E-4)', 'Range 2.5K to 350K ', '2009-01-20', 2429, '1/20/2009', NULL), (2430, 2430, 'S/N 90020433', 'Brainard Kilman C-100 Digital Compression Machine (E-4)', 'Range: 20K to 250K', '2013-08-27', 2430, '8/27/2013', NULL), (2431, 2431, 'S/N 90029', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K', '2006-04-07', 2431, '4/7/2006', NULL), (2432, 2432, 'S/N 202', 'Karol Warner Single Proving Ring (E-4)', 'Range: 2268 kg', '2004-07-29', 2432, '7/29/2004', NULL), (2433, 2433, 'S/N 03151', 'Forney F25EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2008-07-28', 2433, '7/28/2008', NULL), (2434, 2434, 'S/N', 'Geo Durham S-492 Direct Shear Machine (E-4) ', '', NULL, 2434, 'New', NULL), (2435, 2435, 'S/N 71001', 'Forney FT-40-CA-103 Compression Machine (E4-02 & C39)', 'Range: 250K', '2004-08-31', 2435, '8/31/2004', NULL), (2436, 2436, 'S/N 88119', 'Forney FT-40-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2008-07-15', 2436, '7/15/2008', NULL), (2437, 2437, 'S/N 00119', 'Forney F-40F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2009-06-10', 2437, '6/10/2009', NULL), (2438, 2438, 'S/N 00099', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-12-03', 2438, '12/3/2007', NULL), (2439, 2439, 'S/N 070628', 'Test Mark CM-3000-DI Digital Compression Machine (E-4)', 'Range : 3,000 lbs to 300,000 lbs', '2014-04-16', 2439, '4/16/2014', NULL), (2440, 2440, 'S/N 2501443', 'Plastic Welding Technologies Tensiometer (E-4 & 2% ManSpecs)', 'Range: 500 lbs ', '2014-05-05', 2440, '5/5/2014', NULL), (2441, 2441, 'S/N 5638-00108', 'Forney PT-75-CS-100-2 Pipe Tester (E-4 & C-497)', 'Range: 3K to 150K', '2011-06-08', 2441, '6/8/2011', NULL), (2442, 2442, 'S/N 02165', 'Forney F-25-EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-04-14', 2442, '4/14/2010', NULL), (2443, 2443, 'S/N 98072', 'Forney F-600P-DFM/1 Digital Compression Machine (E-4)', 'Range 600 K', '1999-01-05', 2443, '1/5/1999', NULL), (2444, 2444, 'S/N 090511H ', 'Humboldt HCM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2017-06-14', 2444, '6/14/2017', NULL), (2445, 2445, 'S/N 89072', 'Forney FT-250F-01 Compression Machine', 'Range 250K', '1995-07-25', 2445, '7/25/1995', NULL), (2446, 2446, 'S/N 5986', 'Dillon Universal Testing Machine (BROKE) (E-4)', 'Range: 2,000 kg', '2005-07-12', 2446, '7/12/2005', NULL), (2447, 2447, 'S/N 68263', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2008-07-07', 2447, '7/7/2008', NULL), (2448, 2448, 'S/N 75036', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2007-06-18', 2448, '6/18/2007', NULL), (2449, 2449, 'S/N 07275 ', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-10-05', 2449, '10/5/2010', NULL), (2450, 2450, 'S/N 01178', 'Forney F-25F-DR 2001 Digital Compression Machine (E-4)', 'Range: 250K', '2004-09-23', 2450, '9/23/2004', NULL), (2451, 2451, 'S/N 81145', 'Forney FT-40 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MDOT# 89856)', '2011-02-17', 2451, '2/17/2011', NULL), (2452, 2452, 'S/N 08291', 'Forney FX-250F-CPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2011-02-02', 2452, '2/2/2011', NULL), (2453, 2453, 'S/N 92050', 'Forney FT-250F-GB Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K ', '2012-06-04', 2453, '6/4/2012', NULL), (2454, 2454, 'S/N 74049', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K', '2008-04-15', 2454, '4/15/2008', NULL), (2455, 2455, 'S/N 6039', 'Forney QC-125-DIR Digital Compression Machine (E-4)', 'Rane: 2.5 K to 250K', '2013-04-11', 2455, '4/11/2013', NULL), (2456, 2456, 'S/N 23804', 'Testmark CM-0100-DIR Digital Compression Machine (E-4)', 'Range: 1K to 100K ', '2008-11-10', 2456, '11/10/2008', NULL), (2457, 2457, 'S/N 100111H', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-04-19', 2457, '4/19/2011', NULL), (2458, 2458, 'S/N 01X01', 'Forney F-300F-DR2001 Digital Compression Machine (E-4)', 'Range: 3,000 lbs to 300,000 lbs', '2016-08-16', 2458, '8/16/2016', NULL), (2459, 2459, ' S/N 68250', 'Forney FT-40-DR Compression Machine (at Irwin, PA location)', 'Range 30/250K', '1995-03-27', 2459, '3/27/1995', NULL), (2460, 2460, 'S/N 130109', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2015-07-13', 2460, '7/13/2015', NULL), (2461, 2461, 'S/N 8580-112380', 'Instron Biaxial Inplane (E-4)', '', '2012-03-13', 2461, '3/13/2012', NULL), (2462, 2462, 'S/N 8580-112380', 'Instron Biaxial Inplane Machine (E-4)', '4 - 100K Load Cells Cal\'d to 50K T & C', '2012-03-12', 2462, '3/12/2012', NULL), (2463, 2463, 'S/N 70156', 'Forney FT-40-DR Compression Machine', 'Range 30/250K', '1996-03-14', 2463, '3/14/1996', NULL), (2464, 2464, 'S/N 976-00109', 'Soiltest CT-710-CS-100-2 Digital Compression Machine (E-4)', 'Range: 100 lbs. to 10K (MOVED) ', '2005-09-01', 2464, '9/1/2005', NULL), (2465, 2465, '', 'Simplex Jacking System w/ Gauge S/N 123456789 & 9 Rams', 'Range: 10K to 100K (E-4 & Man Specs)', '2011-06-29', 2465, '6/29/2011', NULL), (2466, 2466, 'S/N 5', 'Simms P-3000 Prestress - Jack #5 (E-4 & PCI)', 'Range: 4K / 45K', '2008-07-29', 2466, '7/29/2008', NULL), (2467, 2467, 'S/N 9918', 'ELE Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2013-05-29', 2467, '5/29/2013', NULL), (2468, 2468, 'S/N 976-00109', 'Soiltest CT-710-CS-100-2LC Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2007-11-07', 2468, '11/7/2007', NULL), (2469, 2469, 'S/N 71048', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2012-04-19', 2469, '4/19/2012', NULL), (2470, 2470, 'S/N H-4957M', 'Enerpac P-39 Post Tension Jack (E-4 & PCI)', 'Range: 40K', '2004-04-12', 2470, '4/12/2004', NULL), (2471, 2471, 'S/N 9708', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range: 250K', '2015-09-01', 2471, '9/1/2015', NULL), (2472, 2472, 'S/N 77120', 'Forney FT-40-02Compression Machine (E-4)', 'Range: 30K / 250K', '2007-04-13', 2472, '4/13/2007', NULL), (2473, 2473, 'S/N 071108', 'Testmark CM-0020-SD Digital Compression Machine (E-4)', 'Range: 500 lbs to 20K', '2008-07-17', 2473, '7/17/2008', NULL), (2474, 2474, 'S/N 04200', 'Forney FX-250/LA270-PILOT Dig. Comp. Machine w/2Frames (E-4)', '', '2010-01-14', 2474, '1/14/2010', NULL), (2475, 2475, 'S/N 12241', 'Wykeham-Farrance 14230P Single Proving Ring (E-4 & Man Specs) ', 'Cap: 11,200 lbs ', '2008-08-28', 2475, '8/28/2008', NULL), (2476, 2476, 'S/N 04210', 'Forney FX-250F-PILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K (moved to Lansing)', '2013-09-23', 2476, '9/23/2013', NULL), (2477, 2477, 'S/N 11026', 'Forney FX-250F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2015-03-12', 2477, '3/12/2015', NULL), (2478, 2478, 'S/N 00-04-0610051', 'Soiltest Accutech Mdl 36-3088/02-GB Digital Compression Machine ', 'Range: 5K to 500K (E-4)', '2008-10-07', 2478, '10/7/2008', NULL), (2479, 2479, 'S/N 87152-0407284', 'Forney QC-410-PIR Digital Compression Machine ID #P1334 (E-4)', 'Range: 4K to 400K', '2011-10-17', 2479, '10/17/2011', NULL), (2480, 2480, 'S/N 167870', 'Tinius Olsen Mdl. 10000 Tension & Compression Machine (E-4)', '', '2011-10-18', 2480, '10/18/2011', NULL), (2481, 2481, 'S/N 63008', 'Forney LT-700 Compression Machine (E-4)', 'Range: 4K to 400K', '2008-10-22', 2481, '10/22/2008', NULL), (2482, 2482, 'S/N PLNX-2-128', 'Strainsert Load Indicator (In house)', 'Cap: 4K to 40K', '2000-03-14', 2482, '3/14/2000', NULL), (2483, 2483, 'S/N 964042PQ-cell', 'Revere Load Cell w/ BK E-400 Digital ', 'Range: 500 lbs. to 10,000 lbs. -Tension', '2007-06-05', 2483, '6/5/2007', NULL), (2484, 2484, 'S/N 6 ', 'Geocomp LVDT (Channel 6 LVDT 2) (OOS) (D-6027)', 'Range: 1 inch', '2008-06-03', 2484, '6/3/2008', NULL), (2485, 2485, 'S/N 11', 'Trautwein Pressure Transducer Model with GeoComp Datalogger', 'Range: 120 PSI (OUT OF SVC)', '2002-06-20', 2485, '6/20/2002', NULL), (2486, 2486, 'S/N 90073', 'Forney QC-400C-01 Compression Machine (E-4)', 'Range: 400K', '2007-12-20', 2486, '12/20/2007', NULL), (2487, 2487, 'S/N 00023', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2008-06-05', 2487, '6/5/2008', NULL), (2488, 2488, 'S/N 753234-05062', 'Forney QC-200-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 400K', '2012-04-16', 2488, '4/16/2012', NULL), (2489, 2489, 'S/N 83013', 'Forney QC-400-C1 Compression Machine (E-4)', 'Range: 400K', '2000-02-08', 2489, '2/8/2000', NULL), (2490, 2490, 'S/N 97122', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 225K', '2009-01-28', 2490, '1/28/2009', NULL), (2491, 2491, 'S/N 538242', 'ELE Pressure Transducer--Channel #3 (D-5720)', 'Range: 150 psi', '2008-11-18', 2491, '11/18/2008', NULL), (2492, 2492, 'S/N 1155-12-13323', 'Proving Ring with Dial Indicator Channel # 2 (E-4 & Man Specs)', 'Range: 1K', '2008-11-17', 2492, '11/17/2008', NULL), (2493, 2493, 'S/N 510', 'Durham Geo Direct Shear Machine Mdl. S490 Vertical Force (E-4)', 'Range: 1/8 TSF to 16 TSF', '2008-11-24', 2493, '11/24/2008', NULL), (2494, 2494, 'S/N 04164', 'Forney F-401F-TPILOT Digital Compression Machine (E-4) (E-4)', 'Range: 4.5K to 450K', '2013-10-30', 2494, '10/30/2013', NULL), (2495, 2495, 'S/N 88058', 'Forney FT-40-CPilot Digital Compression Machine (E-4)', 'Range: 2,500 lbs to 250,000 lbs', '2013-06-11', 2495, '6/11/2013', NULL), (2496, 2496, 'S/N 86026', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2010-05-18', 2496, '5/18/2010', NULL), (2497, 2497, 'S/N 79071', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-03-03', 2497, '3/3/2004', NULL), (2498, 2498, 'S/N 90006067', 'Digital Com-Ten System Model: 952KVC0250 (E-4)', 'Range: 1K', '2010-06-14', 2498, '6/14/2010', NULL), (2499, 2499, 'S/N 9621', 'Soiltest CT-7251 Compression Machine (E-4)', 'Range 250K', '2005-05-26', 2499, '5/26/2005', NULL), (2500, 2500, 'S/N 17405', 'Testmark CM-2500 DI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-08-16', 2500, '8/16/2007', NULL), (2501, 2501, 'S/N 13597', 'Testmark Model CM-2500-LD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (SOLD) ', '2007-09-18', 2501, '9/18/2007', NULL), (2502, 2502, 'S/N 87069', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-08-03', 2502, '8/3/2004', NULL), (2503, 2503, 'S/N 9707', 'ELE CT 7250 Digital Compression Machine (SOLD) (E-4)', 'Range: 2.5K to 250K ', '2007-02-26', 2503, '2/26/2007', NULL), (2504, 2504, 'S/N 04190', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-08-23', 2504, '8/23/2011', NULL), (2505, 2505, 'S/N 365614', 'PowerTeam SPX Model C Post Tension Jack (E-4 & PCI, ManSpecs)', 'Range: 50K (7,900 PSI)', '2016-06-07', 2505, '6/7/2016', NULL), (2506, 2506, 'S/N 13', 'HCS Hydraulic Load Cell (E-4&2%) (NC# 13) OOS', 'Range: Range: 50 K', '2011-11-14', 2506, '11/14/2011', NULL), (2507, 2507, 'S/N 03169 4029', 'Humboldt H-4156 Dial Indicator (D-6027) OOS', 'Range: 1 inch', '2009-04-21', 2507, '4/21/2009', NULL), (2508, 2508, 'S/N 8803', 'Soiltest Direct Shear Machine with Digital Readout (PADOT #2583)', '2 - 1500 lbCells Model D500', '2006-09-12', 2508, '9/12/2006', NULL), (2509, 2509, 'S/N 476271', 'Druck Pressure Transducer System', 'Cap: 275 psi', '0000-00-00', 2509, '', NULL), (2510, 2510, 'S/N 93073', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 30K', '2008-11-25', 2510, '11/25/2008', NULL), (2511, 2511, 'S/N 98083', 'Forney F-500 FN-DFM/1 Compression Machine (E-4)', 'Range: 500,000 lbs', '2013-01-03', 2511, '1/3/2013', NULL), (2512, 2512, 'S/N 1,2,3', 'Fastar FS-2000 Extensometer Frame 875 w/ LVDT\'s 1,2,3 Averaging ', 'Range: 2 Inches (ISO 9513) ', '2007-05-07', 2512, '5/7/2007', NULL), (2513, 2513, 'S/N 07049', 'Forney F-50EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2007-11-12', 2513, '11/12/2007', NULL), (2514, 2514, 'S/N 85125', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-02-04', 2514, '2/4/2004', NULL), (2515, 2515, 'S/N 07096', 'Forney F-25EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-05-07', 2515, '5/7/2012', NULL), (2516, 2516, 'S/N 21606', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K (Moved)', '2009-01-14', 2516, '1/14/2009', NULL), (2517, 2517, 'S/N 9950512', 'Com-Ten Mdl. 942KBL2000 Universal Testing Machine (E-4)', 'Range: 20 lbs to 400 lbs', '2008-05-05', 2517, '5/5/2008', NULL), (2518, 2518, 'S/N 23931', 'Com-Ten Mdl.CEDM-S Universal Testing Machine (E-4)', ' Range: 20 lbs to 400 lbs', '2009-05-07', 2518, '5/7/2009', NULL), (2519, 2519, 'S/N 8950432', 'Com-Ten Universal Testing Machine (E-4)', 'Range: 20 lbs. to 400 lbs.', '2006-02-20', 2519, '2/20/2006', NULL), (2520, 2520, 'S/N 94010', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 250K ', '2014-04-21', 2520, '4/21/2014', NULL), (2521, 2521, 'S/N 75210', 'Forney FT-50-2 Compression Machine (E-4)', 'Range: 30K / 250K', '2011-03-08', 2521, '3/8/2011', NULL), (2522, 2522, 'S/N 34577', 'Soiltest CT-761Compression Machine (E-4) ', 'Range: 30K / 250K', '2007-11-06', 2522, '11/6/2007', NULL), (2523, 2523, 'S/N 98086', 'Forney F-400E-F96-SPL w/ GB2 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2009-08-19', 2523, '8/19/2009', NULL), (2524, 2524, 'CT-744 / CT-2540', 'Soiltest CT-2540 Compression Machine', '100/400K', '1995-03-22', 2524, '3/22/1995', NULL), (2525, 2525, 'S/N 07110', 'Forney F25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-04-16', 2525, '4/16/2013', NULL), (2526, 2526, 'S/N 83003', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K ', '2012-08-16', 2526, '8/16/2012', NULL), (2527, 2527, 'S/N 3034', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2009-08-12', 2527, '8/12/2009', NULL), (2528, 2528, 'S/N 1965', 'Soiltest CT-710 Compression Machine', 'Range 250K', '1995-07-10', 2528, '7/10/1995', NULL), (2529, 2529, 'S/N 03206', 'Forney F-30-EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2006-10-25', 2529, '10/25/2006', NULL), (2530, 2530, 'S/N 99130', 'Forney F25-F96 Digital Compression Machine (E-4)', 'Range: 2.5K', '2004-06-29', 2530, '6/29/2004', NULL), (2531, 2531, 'S/N 05141', 'Forney F-25EX-E-DR500 Digital Compression Machine(MOVED)(E-4)', 'Range: 3K to 250K', '2007-12-05', 2531, '12/5/2007', NULL), (2532, 2532, 'S/N 79143', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2006-10-24', 2532, '10/24/2006', NULL), (2533, 2533, 'S/N 08087', 'Forney F-25EX-F-TP-24 w/ DR-500 Digital Compression Machine (E-4)', 'Range: 250K (ID# Q-1773)', '2015-04-13', 2533, '4/13/2015', NULL), (2534, 2534, 'S/N 05194', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2015-03-15', 2534, '3/15/2015', NULL), (2535, 2535, 'S/N', 'Instron (Cal In House) (E-4)', 'Range: ', NULL, 2535, 'New', NULL), (2536, 2536, 'S/N 07225 (ID#Q-2133)', 'Forney F-40EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-01-24', 2536, '1/24/2013', NULL), (2537, 2537, 'S/N 13595(ID# Q-0605)', 'Testmark CM-4000-DB Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2016-01-19', 2537, '1/19/2016', NULL), (2538, 2538, 'S/N P112016-02', 'Salter Brecknell Electro Samson Scale (ID# Q-2655) (E-898 & 1%)', 'Range: 1 lbs to 100 lbs', '2014-01-21', 2538, '1/21/2014', NULL), (2539, 2539, 'S/N 090406', 'Testmark CM-3000-SD Digital Compression Machine (E-4)', ' ', '2014-02-04', 2539, '2/4/2014', NULL), (2540, 2540, 'S/N 120602G', 'Gilson MC-300CP Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2014-10-13', 2540, '10/13/2014', NULL), (2541, 2541, 'S/N 97082-01117', 'Forney F-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 300 lbs to 150K', '2016-10-24', 2541, '10/24/2016', NULL), (2542, 2542, 'S/N 96016', 'Forney F-250E-DR2000 Digital Compression Machine (E-4)', 'Range: 25K to 250K', '2006-03-30', 2542, '3/30/2006', NULL), (2543, 2543, 'S/N 26603G', 'Gilson Mdl. MC-250 CP Compression Machine w-Pie Indicator (E-4)', 'Range: 250K', '2006-01-10', 2543, '1/10/2006', NULL), (2544, 2544, 'S/N 63199', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K', '2010-12-14', 2544, '12/14/2010', NULL), (2545, 2545, 'S/N 80191', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2006-01-31', 2545, '1/31/2006', NULL), (2546, 2546, 'S/N 5609', 'Forney QC-200 Compression Machine (Electric Pump) ', 'Range: 200K (E-4-02)', '2004-02-02', 2546, '2/2/2004', NULL), (2547, 2547, 'S/N 65137-02008', 'Forney QC-225-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 340K', '2008-07-16', 2547, '7/16/2008', NULL), (2548, 2548, 'S/N 73199', 'Forney QC-200-DR500 Digital Compression Machine (E-4) ', 'Range: 400K', '2006-10-26', 2548, '10/26/2006', NULL), (2549, 2549, 'S/N 11086', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-06-21', 2549, '6/21/2011', NULL), (2550, 2550, 'S/N 07154', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2007-07-16', 2550, '7/16/2007', NULL), (2551, 2551, 'S/N 78152', 'Forney QC-200-DR Compression Machine', 'Range 30/400 K', '1995-12-28', 2551, '12/28/1995', NULL), (2552, 2552, 'S/N 07101', 'Forney F-25EX-E-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250 K ', '2007-06-19', 2552, '6/19/2007', NULL), (2553, 2553, 'S/N 37525', 'Baldwin Universal Testing Machine 60 HVL w/DC12 Digital (E-4)', 'Range: 600 lbs to 60K', '2010-02-15', 2553, '2/15/2010', NULL), (2554, 2554, 'S/N 14054', 'Forney F-250B-DR500 Digital Compression Machine (E-4)', 'Range: 250K', '2014-04-14', 2554, '4/14/2014', NULL), (2555, 2555, 'S/N 10052', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-06-08', 2555, '6/8/2011', NULL), (2556, 2556, 'S/N 10053', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2011-06-30', 2556, '6/30/2011', NULL), (2557, 2557, 'S/N 10028B', 'Forney F-25EX-B-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2010-04-28', 2557, '4/28/2010', NULL), (2558, 2558, 'S/N 66027', 'Forney QC-200-DR Compression Machine', 'Range 30/400K', '1998-03-30', 2558, '3/30/1998', NULL), (2559, 2559, 'S/N 131', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2014-03-26', 2559, '3/26/2014', NULL), (2560, 2560, 'S/N 22702G', 'Testmark Gilson MC250BD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (LD Style Digital)', '2014-02-04', 2560, '2/4/2014', NULL), (2561, 2561, 'S/N 08041', 'Forney FX-400/LA270-TP Digital Compression Machine w 2 Frames ', 'Range: Comp: 400K / Beam: 30K (E-4)', '2009-05-08', 2561, '5/8/2009', NULL), (2562, 2562, 'S/N 8818-053106', 'ELE Soiltest CT-6200A-CS-100-2A Digital Compression Machine ', 'Range: 3K to 450K (E-4)', '2010-12-13', 2562, '12/13/2010', NULL), (2563, 2563, 'S/N 78156', 'Forney FT-50-01 Compression Machine (E-4)', 'Range: 60K', '2012-03-14', 2563, '3/14/2012', NULL), (2564, 2564, 'S/N 9533', 'ELE Accu-test 250 Digital Compression Machine Cylinder Frame(E-4)', 'Range: 2.5K to 250K Channel 1', '2010-10-25', 2564, '10/25/2010', NULL), (2565, 2565, 'S/N 88083', 'Forney QC-410-2D Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2008-03-12', 2565, '3/12/2008', NULL), (2566, 2566, 'S/N 9535', 'Soiltest CT-7251 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2006-08-29', 2566, '8/29/2006', NULL), (2567, 2567, 'S/N 87043-0603291', 'Forney FT-40-CS-100-2A Compression Machine (MOVED) (E-4)', 'Range: 2.5K / 250K', '2006-04-18', 2567, '4/18/2006', NULL), (2568, 2568, 'S/N 28954343', 'Sartorius AY Scale (E-898)', 'Range: 10,000 grams', '2016-06-01', 2568, '6/1/2016', NULL), (2569, 2569, 'S/N 950867356', 'Humboldt DPX 1000 Dial Indicator (D-6027) OOS', 'Range: 0.5 Inches', '2013-04-29', 2569, '4/29/2013', NULL), (2570, 2570, 'S/N 85075', 'Forney FT-40 -DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2016-06-08', 2570, '6/8/2016', NULL), (2571, 2571, 'S/N 9547-052605', 'Soiltest CT-7251 Compression Machine w/ Testmark Digital (E-4)', 'Range: 250K', '2005-05-30', 2571, '5/30/2005', NULL), (2572, 1, 'S/N 188', 'Boart Longyear E-312 LVDT (D-6027)', 'Range: 2 Inches ', '2013-01-22', 2572, '1/22/2013', NULL), (2573, 2, '', '', '', '0000-00-00', 2573, '', NULL), (2574, 3, 'S/N 1', 'Extra Gauge - Final with Jack #5 (E-4 & PCI)', 'Range: 45K', '2008-07-29', 2574, '7/29/2008', NULL), (2575, 4, 'S/N 96-05', ' w/ Displacement (E-2309) ', 'Range: 1.5 Inch (ID# 1-1004)', '2012-02-23', 2575, '2/23/2012', NULL), (2576, 5, 'S/N 71173-123005', 'Forney QC-400-CS-100-1S Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2007-05-14', 2576, '5/14/2007', NULL), (2577, 6, '', '', '', '0000-00-00', 2577, '', NULL), (2578, 7, '', '', '', '0000-00-00', 2578, '', NULL), (2579, 8, 'S/N 400279 ', 'Artech Industries Mdl. 20210-6K Load Cell w/E-400 Digital S/N 149 ', 'Range: 5K (E-4)', '2013-05-08', 2579, '5/8/2013', NULL), (2580, 9, 'S/N 1333', 'Durham Geo Consolidation Unit (E-4 & Man Specs) ', '', '2009-05-19', 2580, '5/19/2009', NULL), (2581, 10, 'S/N 01275233', 'Eilon Engineering RON 2000 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Ton', '2008-09-04', 2581, '9/4/2008', NULL), (2582, 11, '', '', '', '0000-00-00', 2582, '', NULL), (2583, 12, 'S/N 101', 'Dynamic Fluid Component Gauge Model CF1P', 'Range: 5,000 psi', '1999-05-28', 2583, '5/28/1999', NULL), (2584, 13, '', '', '', '0000-00-00', 2584, '', NULL), (2585, 14, 'S/N 70309905', ' w/ Load Cell (E-4)', 'Range: 1.5K', '2013-05-13', 2585, '5/13/2013', NULL), (2586, 15, 'S/N 1303924', 'Humboldt HM-300.3F Triaxial Press (D-6027)', '', '2013-05-13', 2586, '5/13/2013', NULL), (2587, 16, 'S/N 28133', 'Marsh Gauge w/ Jack (E-4 & 2% Man Specs)', 'Range: 5K (4,700 psi)', '2013-06-12', 2587, '6/12/2013', NULL), (2588, 17, '', '', '', '0000-00-00', 2588, '', NULL), (2589, 18, 'S/N 282258A', 'Admet Expert 2623 Digital Compression Machine (E-4)', 'Range: 222 Newt. to 22,241 Newt.', '2013-07-17', 2589, '7/17/2013', NULL), (2590, 19, 'S/N 79565', 'Transducer Techniques Pressure Transducer LBO-100 (E-4)', 'Range: 100 lbs ', '2006-12-18', 2590, '12/18/2006', NULL), (2591, 20, '', '', '', '0000-00-00', 2591, '', NULL), (2592, 21, '', '', '', '0000-00-00', 2592, '', NULL), (2593, 22, '', '', '', '0000-00-00', 2593, '', NULL), (2594, 23, 'S/N 83163', 'Soiltest Schmidt Type N Hammer (C-805)', 'Range: 78 to 82', '2013-08-27', 2594, '8/27/2013', NULL), (2595, 24, '', '', '', '0000-00-00', 2595, '', NULL), (2596, 25, '', '', '', '0000-00-00', 2596, '', NULL), (2597, 26, '', '', '', '0000-00-00', 2597, '', NULL), (2598, 27, '', '', '', '0000-00-00', 2598, '', NULL), (2599, 28, '', '', '', '0000-00-00', 2599, '', NULL), (2600, 29, '', '', '', '0000-00-00', 2600, '', NULL), (2601, 30, '', '', '', '0000-00-00', 2601, '', NULL), (2602, 31, '', '', '', '0000-00-00', 2602, '', NULL), (2603, 32, 'S/N 05074743', 'Eilon Engioneering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K', '2008-08-27', 2603, '8/27/2008', NULL), (2604, 33, '', '', '', '0000-00-00', 2604, '', NULL), (2605, 34, '', '', '', '0000-00-00', 2605, '', NULL), (2606, 35, '', '', '', '0000-00-00', 2606, '', NULL), (2607, 36, '', '', '', '0000-00-00', 2607, '', NULL), (2608, 37, '', '', '', '0000-00-00', 2608, '', NULL), (2609, 38, 'S/N 050916', 'Enerpac Model A258 Pushout Tester w/CS-100-1S Dig. (E-4)', 'Range: 8K (ID# ANC 0848) ', '2009-08-13', 2609, '8/13/2009', NULL), (2610, 39, '', '', '', '0000-00-00', 2610, '', NULL), (2611, 40, 'S/N 86121', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K ', '2008-08-13', 2611, '8/13/2008', NULL), (2612, 41, '', '', '', '0000-00-00', 2612, '', NULL), (2613, 42, '', '', '', '0000-00-00', 2613, '', NULL), (2614, 43, '', '', '', '0000-00-00', 2614, '', NULL), (2615, 44, '', '', '', '0000-00-00', 2615, '', NULL), (2616, 45, '', '', '', '0000-00-00', 2616, '', NULL), (2617, 46, '', '', '', '0000-00-00', 2617, '', NULL), (2618, 47, '', '', '', '0000-00-00', 2618, '', NULL), (2619, 48, '', '', '', '0000-00-00', 2619, '', NULL), (2620, 49, 'S/N 523725', 'Satec Emery Mdl. UVI/V Displacement (Digital) (E-2309)', 'Range: 4 Inches ', '2010-10-20', 2620, '10/20/2010', NULL), (2621, 50, 'S/N 02365', 'Form Test DIGIMAXX C-20 Compression Machine (E-4)', 'Range: 200 Kn (Cube Frame)', '2011-10-19', 2621, '10/19/2011', NULL), (2622, 51, '', '', '', '0000-00-00', 2622, '', NULL), (2623, 52, 'S/N 1202754', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2008-10-30', 2623, '10/30/2008', NULL), (2624, 53, 'S/N 11734', 'Wykeham-Farrance Single Proving Ring Model #14170 (OOS)', 'Cap: 2,250 lbs (E-4 & Man Specs)', '2006-10-10', 2624, '10/10/2006', NULL), (2625, 54, 'S/N 101', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 100 PSI', '2009-02-13', 2625, '2/13/2009', NULL), (2626, 55, '', '', '', '0000-00-00', 2626, '', NULL), (2627, 56, 'S/N 112906', 'Geotest S-5830AX Digital CBR Machine (E-4)', 'Range: 100 lbs to 10K ', '2012-11-06', 2627, '11/6/2012', NULL), (2628, 57, 'S/N 4203', 'Simplex RC-30 Ram (E-4 & ManSpecs)', 'Range: 60K (6,850 psi)', '2013-07-12', 2628, '7/12/2013', NULL), (2629, 58, '', '', '', '0000-00-00', 2629, '', NULL), (2630, 59, '', ' w/Vertical Displacement-Ascending Only (E-2309)', 'Range: 0.5\" to 16\" (ID# SPT-012)', '2012-11-19', 2630, '11/19/2012', NULL), (2631, 60, '', ' w/ 2 Gauges', 'Range: 30K / 400K', '2012-11-27', 2631, '11/27/2012', NULL), (2632, 61, 'S/N 26332', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 6K', '2012-11-27', 2632, '11/27/2012', NULL), (2633, 62, 'S/N 970142', 'Karol Warner Mdl. 1032 Consolidation Machine (E-4)', 'Range: 1/8 to 1 TSF Low/2 to 22 TSF High', '2012-11-29', 2633, '11/29/2012', NULL), (2634, 63, '', '', '', '0000-00-00', 2634, '', NULL), (2635, 64, 'S/N 5795', 'Forney QC-125 Compression Machine (E-4)', 'Range: 250K', '2012-11-26', 2635, '11/26/2012', NULL), (2636, 65, 'S/N 06-679 (ID# SJ01)', 'Hercules Mdl. B Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2012-11-27', 2636, '11/27/2012', NULL), (2637, 66, 'S/N 01542223/3', 'Eilon Engineering RON 2501 S-15 Load Cell [ID#M625377] ', 'Cap: 15 Tons (30K) (ManSp & 0.1% FS)', '2007-11-02', 2637, '11/2/2007', NULL), (2638, 67, '', '', '', '0000-00-00', 2638, '', NULL), (2639, 68, 'S/N 36401', 'Marshalltown Gauge (ASME Grade B)', 'Range: 35 in H20', '2008-11-20', 2639, '11/20/2008', NULL), (2640, 69, '', '', '', '0000-00-00', 2640, '', NULL), (2641, 70, '', '', '', '0000-00-00', 2641, '', NULL), (2642, 71, '', '', '', '0000-00-00', 2642, '', NULL), (2643, 72, '', '', '', '0000-00-00', 2643, '', NULL), (2644, 73, 'S/N 4395', 'Hilti Pull Tester Model 59604-02-00 (Pompano, FL) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '0000-00-00', 2644, '', NULL), (2645, 74, 'S/N 09115', 'Forney-F-25EX-FTPILOT Digital Compression Machine (E-4)', 'Range:2.5 K to 250 K', '2013-06-11', 2645, '6/11/2013', NULL), (2646, 75, '', '', '', '0000-00-00', 2646, '', NULL), (2647, 76, '', '', '', '0000-00-00', 2647, '', NULL), (2648, 77, '', '', '', '0000-00-00', 2648, '', NULL), (2649, 78, '', '', '', '0000-00-00', 2649, '', NULL), (2650, 79, 'S/N 973017', 'Digital Readout GSE-350 Scale System w/ Rice Lake Load Cell T & C', 'Range: 5K (LC: S/N AA120125) (E-4)', '2011-01-13', 2650, '1/13/2011', NULL), (2651, 80, 'S/N 97071', 'Forney F-500F-LC-1 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-01-16', 2651, '1/16/2013', NULL), (2652, 81, '', '', '', '0000-00-00', 2652, '', NULL), (2653, 82, 'S/N 143954', 'Humboldt H-2975 Hammer (ID# Q-2723) (C-805)', 'Range: 78 to 82', '2013-01-22', 2653, '1/22/2013', NULL), (2654, 83, '', '', '', '0000-00-00', 2654, '', NULL), (2655, 84, '', '', '', '0000-00-00', 2655, '', NULL), (2656, 85, 'S/N 118865 ', 'Tinius Olsen Mechanical Extensometer (E-83) ', 'Range: 0.006 in/in ', '2008-01-14', 2656, '1/14/2008', NULL), (2657, 86, '', '', '', '0000-00-00', 2657, '', NULL), (2658, 87, '', '', '', '0000-00-00', 2658, '', NULL), (2659, 88, '', '', '', '0000-00-00', 2659, '', NULL), (2660, 89, '', '', '', '0000-00-00', 2660, '', NULL), (2661, 90, '', '', '', '0000-00-00', 2661, '', NULL), (2662, 91, 'S/N 550924', 'ELE Pressure Transducer--Channel# 5 (D-5720)', 'Range: 150 psi', '2008-11-18', 2662, '11/18/2008', NULL), (2663, 92, 'S/N 1155-12-13323', 'With ELE Proving Ring & LVDT Channel 2 (E-4)', 'Range: 1K', '2008-11-17', 2663, '11/17/2008', NULL), (2664, 93, '', '', '', '0000-00-00', 2664, '', NULL), (2665, 94, '', '', '', '0000-00-00', 2665, '', NULL), (2666, 95, 'S/N 18102 ', 'Testmark CM-2500-DD Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-02-11', 2666, '2/11/2013', NULL), (2667, 96, 'S/N EQ2020517', 'A & D Weighing Scale (E-898)', 'Range: 300 lbs ', '2009-02-18', 2667, '2/18/2009', NULL), (2668, 97, '', '', '', '0000-00-00', 2668, '', NULL), (2669, 98, '', '', '', '0000-00-00', 2669, '', NULL), (2670, 99, 'S/N 01674684', 'Eilon Engineering RON 3050 CW-016 Crane Weigher ', 'Range: 3,200 lbs (ManSp & 0.1% FS)', '2010-04-30', 2670, '4/30/2010', NULL), (2671, 100, 'S/N 1336X72', 'Lotes Model LT-10 Digital Compression Machine (E-4)', 'Range: 200 lbs to 10K (ID# 012)', '2009-03-17', 2671, '3/17/2009', NULL), (2672, 101, '', '', '', '0000-00-00', 2672, '', NULL), (2673, 102, '', '', '', '0000-00-00', 2673, '', NULL), (2674, 103, '', '', '', '0000-00-00', 2674, '', NULL), (2675, 104, '', '', '', '0000-00-00', 2675, '', NULL), (2676, 105, 'S/N 0786', 'Humboldt Mdl. H-4454 Single Proving Ring (E-4 & Man Specs) ', 'Range: 1,100 lbs ', '2013-03-12', 2676, '3/12/2013', NULL), (2677, 106, 'S/N 97100-091013', 'Forney F502F-CS-100-2BG Digital Compression Machine (E-4)', 'Range: 3K to 500K', '2013-03-18', 2677, '3/18/2013', NULL), (2678, 107, 'S/N 401022LC', ' w/ Load Cell (E-4) (Chan #1)', 'Range: 10K', '2013-03-21', 2678, '3/21/2013', NULL), (2679, 108, 'S/N 990311/85637', ' w/ Total Comp TS-1.5K Horizontal Load Cell (E-4) ', 'Range: 1.5K (Shear Force) ', '2013-03-21', 2679, '3/21/2013', NULL), (2680, 109, 'S/N 07105BALH01', ' w/ Load Cell (E-4)', 'Range: 10K ', '2013-03-21', 2680, '3/21/2013', NULL), (2681, 110, 'S/N 123154', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-03-19', 2681, '3/19/2013', NULL), (2682, 111, 'S/N 07283', 'Forney F-803P-GBII Digital Compression Machine (E-4)', '8K to 800K', '2013-03-28', 2682, '3/28/2013', NULL), (2683, 112, '', ' w/ Speed Control (Man Specs)', 'Range: 0.035 In/min ', '2013-03-26', 2683, '3/26/2013', NULL), (2684, 113, 'S/N 10-29-0377771', ' w/Dynisco PT-130-10M Pressure Transducer (D-5720)', '', '2009-03-20', 2684, '3/20/2009', NULL), (2685, 114, '', '', '', '0000-00-00', 2685, '', NULL), (2686, 115, '', '', '', '0000-00-00', 2686, '', NULL), (2687, 116, '', '', '', '0000-00-00', 2687, '', NULL), (2688, 117, 'S/N 1638-6-1181', 'ELE 37-6130 Digital Compression Machine w/Beam Frame#2 (E-4)', 'Range: 200 lbs to 20K', '2008-01-28', 2688, '1/28/2008', NULL), (2689, 118, 'S/N 8711189', 'Brainard Kilman Controls C-110 Compression Machine (E-4)', 'Range: 250K', '2008-01-28', 2689, '1/28/2008', NULL), (2690, 119, '', '', '', '0000-00-00', 2690, '', NULL), (2691, 120, '', '', '', '0000-00-00', 2691, '', NULL), (2692, 121, 'S/N 86208', 'Hercules Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2007-03-08', 2692, '3/8/2007', NULL), (2693, 122, 'S/N 80005055 Frame', ' With Comten Frame Model 91KVC2000 ', '', '0000-00-00', 2693, '', NULL), (2694, 123, '', '', '', '0000-00-00', 2694, '', NULL), (2695, 124, '', '', '', '0000-00-00', 2695, '', NULL), (2696, 125, 'S/N SL-CM-001', 'Humboldt Mdl. HM3000 Loader w/ 2 Load Cells (E-4)', '', '2013-04-16', 2696, '4/16/2013', NULL), (2697, 126, '', '', '', '0000-00-00', 2697, '', NULL), (2698, 127, 'S/N 202442', 'Eilon Engineering RON 2000 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 15 Tons', '2005-02-11', 2698, '2/11/2005', NULL), (2699, 128, 'S/N 0586954/3', 'Eilon Engineering RON 2000 S-05 Load Cell (ManSp & 0.1% FS)', 'Range: 5 Ton ( ID# MM-4181)', '2009-07-08', 2699, '7/8/2009', NULL), (2700, 129, '', '', '', '0000-00-00', 2700, '', NULL), (2701, 130, 'S/N 195', 'Brainard Kilman w/LVDT E-311 (Not Done) ', 'Range: 0.850 Inch ', '2006-04-04', 2701, '4/4/2006', NULL), (2702, 131, '', '', '', '0000-00-00', 2702, '', NULL), (2703, 132, 'S/N 1668', 'Humboldt CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2010-04-06', 2703, '4/6/2010', NULL), (2704, 133, 'S/N 789462 / 07101', 'Cooper Load cell model LGP-310 w/ Digital CSI CS-100-10M Dig.', 'Range: 200 lbs to 50,000 lbs (E-4)', '2013-05-07', 2704, '5/7/2013', NULL), (2705, 134, '', '', '', '0000-00-00', 2705, '', NULL), (2706, 135, '', '', '', '0000-00-00', 2706, '', NULL), (2707, 136, '', '', '', '0000-00-00', 2707, '', NULL), (2708, 137, '', '', '', '0000-00-00', 2708, '', NULL), (2709, 138, '', '', '', '0000-00-00', 2709, '', NULL), (2710, 139, 'S/N AE 40212299', 'Adams Equipment CPW Plus-75 Scale (E-898)', 'Range: 165 lbs ', '2013-05-14', 2710, '5/14/2013', NULL), (2711, 140, 'S/N 89082-03102', 'Forney LT-1031-CS-100-2A Digital Compression Machine (E-4) ', 'Range: 1K to 60K ', '2011-06-02', 2711, '6/2/2011', NULL), (2712, 141, '', '', '', '0000-00-00', 2712, '', NULL), (2713, 142, '', '', '', '0000-00-00', 2713, '', NULL), (2714, 143, '', '', '', '0000-00-00', 2714, '', NULL), (2715, 144, 'S/N 0036-126881', 'Pelouze 4010 Scale (E-898)', 'Range: 150 lbs ', '2013-05-29', 2715, '5/29/2013', NULL), (2716, 145, 'S/N AC327F00053', 'Adam CPW Plus 75 Scale (E-898)', 'Scale 1 gram to 3,000 grams', '2013-05-29', 2716, '5/29/2013', NULL), (2717, 146, '', '', '', '0000-00-00', 2717, '', NULL), (2718, 147, '', '', '', '0000-00-00', 2718, '', NULL), (2719, 148, 'S/N 051144-003', 'Tamtron BCS-100-A Crane Scale (E-4)', 'Range: 10,000 Kg', '2009-05-29', 2719, '5/29/2009', NULL), (2720, 149, '', '', '', '0000-00-00', 2720, '', NULL), (2721, 150, '', '', '', '0000-00-00', 2721, '', NULL), (2722, 151, 'S/N 159', 'Brainard Kilman BK 5000 R Proving Ring (E-4 & Man Specs)', 'Cap: 5K (OUT OF SERVICE)', '2004-05-17', 2722, '5/17/2004', NULL), (2723, 152, '', '', '', '0000-00-00', 2723, '', NULL), (2724, 153, '', '', '', '0000-00-00', 2724, '', NULL), (2725, 154, 'S/N 0394849', 'Eilon Engineering RON 3050 CW-025 Load Cell (ManSpec&0.1%FS)', 'Range: 5K (ID# 11922) (Max 5 lbs)', '2010-07-01', 2725, '7/1/2010', NULL), (2726, 155, 'S/N H224B', 'Hilti Mark 5 Tester w/ 2 Gauges (ID # HTA5B-HTA5A) (E-4 & 2%)', 'Range: G# 4186 800 lbs / G# 4205 4K ', '2009-06-12', 2726, '6/12/2009', NULL), (2727, 156, '', '', '', '0000-00-00', 2727, '', NULL), (2728, 157, '', '', '', '0000-00-00', 2728, '', NULL), (2729, 158, '', '', '', '0000-00-00', 2729, '', NULL), (2730, 159, '', '', '', '0000-00-00', 2730, '', NULL), (2731, 160, 'S/N', 'Geotac LVDT (D-6027)', 'Range: ', NULL, 2731, 'New', NULL), (2732, 161, 'S/N 83086', 'Forney FT-250F-PI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-07-10', 2732, '7/10/2013', NULL), (2733, 162, 'S/N 92107 (1029)(1207)', 'Forney FT-250F-02 Compression Machine (E-4)', 'Range: 30K / 250K', '2013-07-08', 2733, '7/8/2013', NULL), (2734, 163, '', '', '', '0000-00-00', 2734, '', NULL), (2735, 164, 'S/N E159-01Y-1-05', 'Qualitest E159-01Y Digital Compression Machine (E-4)', 'Range: 500 lbs to 50K', '2013-07-16', 2735, '7/16/2013', NULL), (2736, 165, 'S/N 39511 / NC#1', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2011-07-19', 2736, '7/19/2011', NULL), (2737, 166, 'S/N 05044019/6', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 kg', '2005-03-21', 2737, '3/21/2005', NULL), (2738, 167, 'CS-1171', '9 1/2\" Back Up Rings - 7 - $20.00', '', '0000-00-00', 2738, '', NULL), (2739, 168, 'S/N 100592', 'Simms Model P3500 Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K (Moved)', '2009-01-14', 2739, '1/14/2009', NULL), (2740, 169, 'S/N Jack #2', 'Simplex Mdl. RC-603 Post Tension Jack (E-4 & PCI)', 'Range: 60 Ton', '2007-05-15', 2740, '5/15/2007', NULL), (2741, 170, '', '', '', '0000-00-00', 2741, '', NULL), (2742, 171, 'S/N 3042', 'Hilti Pull Tester Model (Corporate) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2007-04-27', 2742, '4/27/2007', NULL), (2743, 172, 'S/N 0064', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-23', 2743, '7/23/2009', NULL), (2744, 173, '', '', '', '0000-00-00', 2744, '', NULL), (2745, 174, '', '', '', '0000-00-00', 2745, '', NULL), (2746, 175, 'S/N 002', 'Ploog Engineering Dial Indicator (D-6027)', 'Range: 1 inch', '2013-08-21', 2746, '8/21/2013', NULL), (2747, 176, '', '', '', '0000-00-00', 2747, '', NULL), (2748, 177, '', '', '', '0000-00-00', 2748, '', NULL), (2749, 178, '', '', '', '0000-00-00', 2749, '', NULL), (2750, 179, 'S/N 2331', 'Forney Mdl. 7611 Consolidation Machine (E-4)', 'Range: 10K ', '2009-08-31', 2750, '8/31/2009', NULL), (2751, 180, 'S/N 5843 ', 'Hamilton P10000-55-5GC Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K ', '2009-02-12', 2751, '2/12/2009', NULL), (2752, 181, '', '', '', '0000-00-00', 2752, '', NULL), (2753, 182, '', '', '', '0000-00-00', 2753, '', NULL), (2754, 183, 'S/N AE40114014', 'Adams CPW Plus-75 Scale (E-898)', 'Range: 165 lbs', '2013-09-04', 2754, '9/4/2013', NULL), (2755, 184, '', '', '', '0000-00-00', 2755, '', NULL), (2756, 185, 'S/N 030705041/10', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 25 Ton ', NULL, 2756, 'New', NULL), (2757, 186, '', 'Shipping', '', '0000-00-00', 2757, '', NULL), (2758, 187, '', '', '', '0000-00-00', 2758, '', NULL), (2759, 188, '', '', '', '0000-00-00', 2759, '', NULL), (2760, 189, '', '', '', '0000-00-00', 2760, '', NULL), (2761, 190, '', '', '', '0000-00-00', 2761, '', NULL), (2762, 191, '', ' w/ Cylinder Frame Channel #0 (E-4)', 'Range: 3K to 450K', '2012-10-09', 2762, '10/9/2012', NULL), (2763, 192, 'S/N M92113A508-04', ' w/ Vertical LVDT Vertical Displacement (D-6027)', 'Range: 0.4 inches', '0000-00-00', 2763, '', NULL), (2764, 193, 'S/N HXG505', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2011-10-20', 2764, '10/20/2011', NULL), (2765, 194, '', '', '', '0000-00-00', 2765, '', NULL), (2766, 195, '', '', '', '0000-00-00', 2766, '', NULL), (2767, 196, 'S/N 249765A', ' w/ Interface 1210ACK-10K-B 10 Kip T & C Load Cell (E-4)', 'Range: 100 lbs to 10K (ID#CAL3693)', '2008-10-28', 2767, '10/28/2008', NULL), (2768, 197, 'S/N 06122', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2009-01-05', 2768, '1/5/2009', NULL), (2769, 198, 'S/N 101', 'Humboldt H-13443 Dial indicator (D-6027) (Out of Service)', 'Range: 1 inch', '2003-11-11', 2769, '11/11/2003', NULL), (2770, 199, '', '', '', '0000-00-00', 2770, '', NULL), (2771, 200, 'S/N 49230', ' w/Load Cell Compression & Tension (E-4)', 'Range: 60 lbs to 6,700 lbs', '2012-11-20', 2771, '11/20/2012', NULL), (2772, 201, '', '', '', '0000-00-00', 2772, '', NULL), (2773, 202, '', '', '', '0000-00-00', 2773, '', NULL), (2774, 203, 'S/N 88119', 'Forney FT-40-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2007-12-03', 2774, '12/3/2007', NULL), (2775, 204, '', '', '', '0000-00-00', 2775, '', NULL), (2776, 205, 'S/N 20666', 'Soiltest Single Proving Ring (OUT OF SERVICE) (E-4 & Man Specs)', 'Cap: 2K', '1999-08-24', 2776, '8/24/1999', NULL), (2777, 206, '', '', '', '0000-00-00', 2777, '', NULL), (2778, 207, '', '', '', '0000-00-00', 2778, '', NULL), (2779, 208, '', '', '', '0000-00-00', 2779, '', NULL), (2780, 209, '', '', '', '0000-00-00', 2780, '', NULL), (2781, 210, '', '', '', '0000-00-00', 2781, '', NULL), (2782, 211, '', '', '', '0000-00-00', 2782, '', NULL), (2783, 212, '', '', '', '0000-00-00', 2783, '', NULL), (2784, 213, '', 'movement from it\'s existing site. Return travel to West Point', '', '0000-00-00', 2784, '', NULL), (2785, 214, 'S/N 10890', 'Skidmore Wilhelm Model M Pull Out Tester (E-4)', 'Range: 110K ', '2013-01-14', 2785, '1/14/2013', NULL), (2786, 215, 'S/N 187801', ' w/ vishay Mdl. P3 Indicator (Channel #1)', 'Range: 2,000 lbs to 200,000 lbs', '0000-00-00', 2786, '', NULL), (2787, 216, '', ' ', '', '0000-00-00', 2787, '', NULL), (2788, 217, '', '', '', '0000-00-00', 2788, '', NULL), (2789, 218, '', '', '', '0000-00-00', 2789, '', NULL), (2790, 219, '', '', '', '0000-00-00', 2790, '', NULL), (2791, 220, 'S/N 63191 (ID#C8201) ', 'Forney LT-900-Precise Universal Testing Machine (E-4)', 'Range: 3K to 400K ', '2009-01-06', 2791, '1/6/2009', NULL), (2792, 221, '', '', '', '0000-00-00', 2792, '', NULL), (2793, 222, 'S/N 1278', 'Simms Prestress Jack (E-4&PCI)', 'Range: 3K (570 PSI) / 40K', '2013-01-29', 2793, '1/29/2013', NULL), (2794, 223, '', '', '', '0000-00-00', 2794, '', NULL), (2795, 224, 'S/N', ' w/ Gauge (E-4)', 'Range: 3K to 29K', '2013-04-08', 2795, '4/8/2013', NULL), (2796, 225, '', '', '', '0000-00-00', 2796, '', NULL), (2797, 226, '', '', '', '0000-00-00', 2797, '', NULL), (2798, 227, '', '', '', '0000-00-00', 2798, '', NULL), (2799, 228, '-103', ' Serial Number Too Long ', '', '0000-00-00', 2799, '', NULL), (2800, 229, '', '', '', '0000-00-00', 2800, '', NULL), (2801, 230, 'S/N 15512-5', 'Hamilton PU-P4500-950 Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2011-02-02', 2801, '2/2/2011', NULL), (2802, 231, 'S/N 37787', 'US Gauge (D-5720)', 'Range: 600 PSI', '2004-01-28', 2802, '1/28/2004', NULL), (2803, 232, 'S/N 09716', 'Marsh Service Gauge (D-5720)', 'Range: 600 PSI', '2010-01-13', 2803, '1/13/2010', NULL), (2804, 233, '', '', '', '0000-00-00', 2804, '', NULL), (2805, 234, 'S/N 05075683/1', 'Eilon Engineering RON 2501 S-50 Load Cell #1 (ManSp & 0.1% FS)', 'Range: 50 Short Ton ', '2010-02-16', 2805, '2/16/2010', NULL), (2806, 235, 'S/N 1VA-80051-028-4', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 15 PSI ', '2010-01-18', 2806, '1/18/2010', NULL), (2807, 236, 'S/N 12484(ID#LABD17)', ' w/ Lucas Control GCD-121-250 Displacement LVDT Axial St. Ch. #3 ', 'Range: 0.15 inches (D-6027)', '2011-01-05', 2807, '1/5/2011', NULL), (2808, 237, '', '', '', '0000-00-00', 2808, '', NULL), (2809, 238, 'S/N 88098', 'Forney QC-410-F96 Digital Compression Machine (E-4)', 'Range: 400K', NULL, 2809, 'New', NULL), (2810, 239, 'S/N', 'Tinius Olsen Super L Universal Testing Machine (E-4)', 'Range: (Cal In House)', NULL, 2810, 'New', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (2811, 240, 'S/N 1296207', ' w/ MTS 634.11E-24 Compressometer-Axial Strain Channel (E-83)', 'Range: 0.03 in/in (ID#LABD13)', '2011-01-10', 2811, '1/10/2011', NULL), (2812, 241, '', '', '', '0000-00-00', 2812, '', NULL), (2813, 242, 'S/N E-81272', 'w/Epsilon Extensometer Model 3542-0200-002-ST Channel #1 (E-83)', 'Range: 0.02 in/in (GL 2) ', '2013-02-27', 2813, '2/27/2013', NULL), (2814, 243, 'S/N 1051 ', 'Satec MK3-300-HVL Speed Control (Man Specs) ', 'Range: 0.125\" per min / 1\" per min ', '2013-09-16', 2814, '9/16/2013', NULL), (2815, 244, '', '', '', '0000-00-00', 2815, '', NULL), (2816, 245, 'S/N 08100-B', ' w/ Frame #2 Beam (E-4)', 'Range: 1K to 30K ', '2013-02-05', 2816, '2/5/2013', NULL), (2817, 246, '', '', '', '0000-00-00', 2817, '', NULL), (2818, 247, 'S/N 227', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K ', '2012-02-16', 2818, '2/16/2012', NULL), (2819, 248, 'S/N 354 (ID# 2)', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K ', '2012-02-14', 2819, '2/14/2012', NULL), (2820, 249, 'S/N 94135', 'Proceq N-34 Schmidt Hammer (C-805)', 'Range: 78 to 82', '2012-09-26', 2820, '9/26/2012', NULL), (2821, 250, '', '', '', '0000-00-00', 2821, '', NULL), (2822, 251, '', '', '', '0000-00-00', 2822, '', NULL), (2823, 252, '', '', '', '0000-00-00', 2823, '', NULL), (2824, 253, '', '', '', '0000-00-00', 2824, '', NULL), (2825, 254, '', '', '', '0000-00-00', 2825, '', NULL), (2826, 255, '', '', '', '0000-00-00', 2826, '', NULL), (2827, 256, '', '', '', '0000-00-00', 2827, '', NULL), (2828, 257, '', '', '', '0000-00-00', 2828, '', NULL), (2829, 258, '', '', '', '0000-00-00', 2829, '', NULL), (2830, 259, '', '', '', '0000-00-00', 2830, '', NULL), (2831, 260, '', '', '', '0000-00-00', 2831, '', NULL), (2832, 261, 'S/N 5921 (ATG# 904)', 'Forney LT-704-DR Compression Machine (E-4)', 'Range: 60K / 350K (High Range Only)', '2013-03-27', 2832, '3/27/2013', NULL), (2833, 262, 'S/N E36414 (ATG# 226)', ' w/ Load Cell (E-4)', 'Range: 100 lbs ', '2011-03-31', 2833, '3/31/2011', NULL), (2834, 263, '', '', '', '0000-00-00', 2834, '', NULL), (2835, 264, 'S/N 106739A(ATG# 816)', ' w/ Load Cell Central AHM Load Cell (E-4)', 'Range: 100K', '2013-03-27', 2835, '3/27/2013', NULL), (2836, 265, '', '', '', '0000-00-00', 2836, '', NULL), (2837, 266, '', '', '', '0000-00-00', 2837, '', NULL), (2838, 267, 'S/N 1217056', ' w/ Gauge', 'Range: 150 Ton ', '2010-03-26', 2838, '3/26/2010', NULL), (2839, 268, '', '', '', '0000-00-00', 2839, '', NULL), (2840, 269, '', '', '', '0000-00-00', 2840, '', NULL), (2841, 270, '', '', '', '0000-00-00', 2841, '', NULL), (2842, 271, 'S/N 68026-1025', ' Forney QC-150-DR1 Digital Compression Machine (E-4)', 'Range: 400K (SOLD)', '2001-05-30', 2842, '5/30/2001', NULL), (2843, 272, '', ' 2 Frames - Below machine Attached to Forney LA-0270-99-PILOT', '', '0000-00-00', 2843, '', NULL), (2844, 273, '', '', '', '0000-00-00', 2844, '', NULL), (2845, 274, 'S/N L0852', 'Simplex RC123 Ram (E-4 & PCI)', 'Range: 24K (10,000 PSI)', '2011-03-28', 2845, '3/28/2011', NULL), (2846, 275, '', '', '', '0000-00-00', 2846, '', NULL), (2847, 276, '', '', '', '0000-00-00', 2847, '', NULL), (2848, 277, '', '', 'Cell #2 - 50K S/N 713654', '2010-07-14', 2848, '7/14/2010', NULL), (2849, 278, '', '', '', '0000-00-00', 2849, '', NULL), (2850, 279, '', '', '', '0000-00-00', 2850, '', NULL), (2851, 280, '', '', '', '0000-00-00', 2851, '', NULL), (2852, 281, 'S/N Z42771', 'Enerpac Mdl. LS10006 (E-4 ManSpecs &2%)', 'Range: 200,000 lbs', '2013-05-02', 2852, '5/2/2013', NULL), (2853, 282, '', '', '', '0000-00-00', 2853, '', NULL), (2854, 283, '', '', '', '0000-00-00', 2854, '', NULL), (2855, 284, 'S/N TEN016', 'Test Resources Mdl. 11KM Displacement Transducer (E-2309)', 'Range: 20 Inch ', '2013-04-24', 2855, '4/24/2013', NULL), (2856, 285, '', '', '', '0000-00-00', 2856, '', NULL), (2857, 286, '', '', '', '0000-00-00', 2857, '', NULL), (2858, 287, 'S/N 1271411', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K (ID# R333)', '2010-08-17', 2858, '8/17/2010', NULL), (2859, 288, 'S/N 9482', 'Soiltest CBR Single Proving Ring (E-4 & ManSpecs)', 'Cap: 6K', '2010-04-15', 2859, '4/15/2010', NULL), (2860, 289, '', '', '', '0000-00-00', 2860, '', NULL), (2861, 290, '', '', '', '0000-00-00', 2861, '', NULL), (2862, 291, '', '', '', '0000-00-00', 2862, '', NULL), (2863, 292, '', '', '', '0000-00-00', 2863, '', NULL), (2864, 293, '', '', '', '0000-00-00', 2864, '', NULL), (2865, 294, 'S/N AE40114707', 'AEADAM Max Scale (E-898)', 'Range: 165 lbs ', '2011-04-19', 2865, '4/19/2011', NULL), (2866, 295, 'S/N 3769', 'Hilti Pull Tester Model 59604/02/97 (Houston) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2010-04-05', 2866, '4/5/2010', NULL), (2867, 296, 'S/N 0341', 'Soiltest C-220 Consolidation Machine ( E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-12', 2867, '5/12/2010', NULL), (2868, 297, '', '', '', '0000-00-00', 2868, '', NULL), (2869, 298, 'S/N 1031139', 'Geotest Pressure Transucer w/ Ashcroft Gauge (D-5720)', 'Range: 150 psi', '2013-05-15', 2869, '5/15/2013', NULL), (2870, 299, 'S/N 9156', ' w/ Load Cell Shear Force (E-4)', 'Range: 20lbs to 2K', '2013-05-15', 2870, '5/15/2013', NULL), (2871, 300, 'S/N 212576', 'Tinius Olsen Super L Universal Testing Machine (E-4)', 'Range: 600 lbs to 60K ', '2013-05-15', 2871, '5/15/2013', NULL), (2872, 301, '', '', '', '0000-00-00', 2872, '', NULL), (2873, 302, '', '', '', '0000-00-00', 2873, '', NULL), (2874, 303, 'S/N 211832', ' w/ Geotac Load Cell (Channel #1) (E-4)', 'Range: 2K ', '2011-05-25', 2874, '5/25/2011', NULL), (2875, 304, 'S/N 05096901/9', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 80K', '2010-05-27', 2875, '5/27/2010', NULL), (2876, 305, '', '', '', '0000-00-00', 2876, '', NULL), (2877, 306, 'S/N 22685 ', 'Soiltest Single Proving Ring (E-4 & Man Specs)', 'Range: 20K ', '2008-12-16', 2877, '12/16/2008', NULL), (2878, 307, '', '', '', '0000-00-00', 2878, '', NULL), (2879, 308, 'S/N 2', 'LVDT w/ Geocomp Datalogger (OUT OF SVC) (D-6027)', 'Range: . 25 inches', '2004-06-02', 2879, '6/2/2004', NULL), (2880, 309, 'S/N 13', 'Trautwein Pressure Transducer Model with GeoComp Datalogger', 'Range: 120 PSI (OUT OF SERVICE)', '2002-06-20', 2880, '6/20/2002', NULL), (2881, 310, '', ' w/ Shear Force Load Cell (E-4)', 'Range: 5K', NULL, 2881, 'New', NULL), (2882, 311, 'S/N 21711 ', 'Ohaus 700 Series Triple Beam Balance Scale (E-898)', 'Range: 2,610 Grams (5 lbs 2 oz)', '2010-05-13', 2882, '5/13/2010', NULL), (2883, 312, '', '', '', '0000-00-00', 2883, '', NULL), (2884, 313, '', '', '', '0000-00-00', 2884, '', NULL), (2885, 314, '', '', '', '0000-00-00', 2885, '', NULL), (2886, 315, 'S/N 20005061', ' w/Load Cell Model-PSB5000 (E-4)', '', '0000-00-00', 2886, '', NULL), (2887, 316, 'S/N 8028181105', 'Ohaus Adventurer Pro Scale (E-898)', 'Range: 8,100 Grams', '2013-06-04', 2887, '6/4/2013', NULL), (2888, 317, '', '', '', '0000-00-00', 2888, '', NULL), (2889, 318, '', '', '', '0000-00-00', 2889, '', NULL), (2890, 319, '', '', '', '0000-00-00', 2890, '', NULL), (2891, 320, '', ' w/ Extra Gauge (E-4)', 'Range: 400K', '2013-06-10', 2891, '6/10/2013', NULL), (2892, 321, '', '', '', '0000-00-00', 2892, '', NULL), (2893, 322, 'S/N 1084', 'Humboldt Beam Tester (E-4 & 2% ManSpecs)', 'Range: 15K ', '2013-06-12', 2893, '6/12/2013', NULL), (2894, 323, 'S/N AD', 'Soiltest C-280 Consolidation Machine (E-4 & 2% ManSpecs)', 'Range: 64 Kg (Frame 1)', '2013-06-19', 2894, '6/19/2013', NULL), (2895, 324, '', '', '', '0000-00-00', 2895, '', NULL), (2896, 325, '', '', '', '0000-00-00', 2896, '', NULL), (2897, 326, '', '', '', '0000-00-00', 2897, '', NULL), (2898, 327, '', '', '', '0000-00-00', 2898, '', NULL), (2899, 328, 'S/N 90606054', 'ComTen Mdl. 955KVD0100 Universal Testing Machine (E-4)', 'Range: 100 lbs to 5K', '2013-06-25', 2899, '6/25/2013', NULL), (2900, 329, 'S/N HLT-69047', 'Harrington Model HLT Hoist Tester (E-4 & Man Specs)', 'Cap: 5 Ton / 10 Ton ', '2013-06-26', 2900, '6/26/2013', NULL), (2901, 330, 'S/N 117824', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-06-25', 2901, '6/25/2013', NULL), (2902, 331, '', '', '', '0000-00-00', 2902, '', NULL), (2903, 332, '', '', '', '0000-00-00', 2903, '', NULL), (2904, 333, '', '', '', '0000-00-00', 2904, '', NULL), (2905, 334, 'S/N HLT-69103', 'Harrington Model HLTI Hoist Tester (E-4 & Man Specs)', 'Range: 5 Ton/ 10 Ton ', '2013-06-26', 2905, '6/26/2013', NULL), (2906, 335, '', '', '', '0000-00-00', 2906, '', NULL), (2907, 336, '', '', '', '0000-00-00', 2907, '', NULL), (2908, 337, '', '', '', '0000-00-00', 2908, '', NULL), (2909, 338, 'S/N A-21597', ' w/Speed Control (E-2658-11)', 'Range: 0.035 In/min ', '2013-06-24', 2909, '6/24/2013', NULL), (2910, 339, '', '', '', '0000-00-00', 2910, '', NULL), (2911, 340, '', ' with Newport Model INFCS OOOA/E Digital S/N 8095414', '', '0000-00-00', 2911, '', NULL), (2912, 341, 'S/N 201', 'Ashcroft Gauge G-8962 (IN HOUSE) (D-5720)', 'Range: 0-60psi', '2005-10-12', 2912, '10/12/2005', NULL), (2913, 342, '', '', '', '0000-00-00', 2913, '', NULL), (2914, 343, '', '', '', '0000-00-00', 2914, '', NULL), (2915, 344, 'S/N20006069', 'Cell Model: PSB-1000', '', '0000-00-00', 2915, '', NULL), (2916, 345, 'S/N 012991341', 'Geotest Mdl. S2000 Unconfined Double Proving Ring', 'Cap: 1K (E-4 & Man Specs)', '2009-02-16', 2916, '2/16/2009', NULL), (2917, 346, 'S/N 356647', 'Interface 2430 BLS-2K w/ Delphin Unit (E-4)', 'Range: 2K', '2013-03-25', 2917, '3/25/2013', NULL), (2918, 347, '', '', '', '0000-00-00', 2918, '', NULL), (2919, 348, 'S/N Unknown', 'Adam Equipment TBB-2610S Scale (E-898)', 'Range: 1 Gram to 2,610 Gram ', '2010-06-07', 2919, '6/7/2010', NULL), (2920, 349, '', '', '', '0000-00-00', 2920, '', NULL), (2921, 350, '', '', '', '0000-00-00', 2921, '', NULL), (2922, 351, 'S/N 751938', 'Humboldt Load Cell w/ Omega Digital (E-4)', 'Range: 2K', '2008-07-11', 2922, '7/11/2008', NULL), (2923, 352, '', '', '', '0000-00-00', 2923, '', NULL), (2924, 353, 'S/N 1', 'CMM Tensile Tester Model (E-4 & 2%)', 'Range: 3K to 110K', '2010-07-19', 2924, '7/19/2010', NULL), (2925, 354, '', '', '', '0000-00-00', 2925, '', NULL), (2926, 355, '', '', '', '0000-00-00', 2926, '', NULL), (2927, 356, 'S/N NAL 5895', 'Columbine Accuralite Tensiometer with E-400 Digital (E-4 & 2%)', 'Range: 500 lbs ', '2010-08-12', 2927, '8/12/2010', NULL), (2928, 357, '', '', '', '0000-00-00', 2928, '', NULL), (2929, 358, 'S/N G3841', 'Hogentogler Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2010-07-19', 2929, '7/19/2010', NULL), (2930, 359, '', '', '', '0000-00-00', 2930, '', NULL), (2931, 360, '', '', '', '0000-00-00', 2931, '', NULL), (2932, 361, '', '', '', '0000-00-00', 2932, '', NULL), (2933, 362, 'S/N 12198-P16-', 'Testmark CM2500-LXI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2011-08-09', 2933, '8/9/2011', NULL), (2934, 363, '', '', '', '0000-00-00', 2934, '', NULL), (2935, 364, 'S/N 78164', 'GeoTest CBR Load Cell (E-4)', 'Range : 10K', '2013-08-12', 2935, '8/12/2013', NULL), (2936, 365, '', '', '', '0000-00-00', 2936, '', NULL), (2937, 366, '', '', '', '0000-00-00', 2937, '', NULL), (2938, 367, '', '', '', '0000-00-00', 2938, '', NULL), (2939, 368, 'S/N 061111000456', 'TIF 9010A Slim Line Electronic Scale (E-898)', 'Range: 110 lbs ', '2013-08-13', 2939, '8/13/2013', NULL), (2940, 369, '', '', '', '0000-00-00', 2940, '', NULL), (2941, 370, '', '', '', '0000-00-00', 2941, '', NULL), (2942, 371, '', '', '', '0000-00-00', 2942, '', NULL), (2943, 372, 'S/N 3343', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2012-08-28', 2943, '8/28/2012', NULL), (2944, 373, 'S/N 296', 'Karol Warner CBR Single Proving Ring (E-4 & Man Specs) ', 'Range: 6K ', '2013-08-27', 2944, '8/27/2013', NULL), (2945, 374, 'S/N 0107584/3', 'Eilon Engineering RON 2501 H-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K ', '2010-08-06', 2945, '8/6/2010', NULL), (2946, 375, 'S/N 5043709/14', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1& FS)', 'Range: 40 Tons', '2007-03-06', 2946, '3/6/2007', NULL), (2947, 376, '', '', '', '0000-00-00', 2947, '', NULL), (2948, 377, 'S/N 01064617/2', ' w/ Extra Range (ManSp & 0.1% FS)', 'Range: 10K ', NULL, 2948, 'New', NULL), (2949, 378, '', '', '', '0000-00-00', 2949, '', NULL), (2950, 379, 'S/N 58990-1011', ' w/ 2000 Recorder (E-83)', 'Range: 6K/30K/120K/300K', NULL, 2950, 'New', NULL), (2951, 380, '', '', '', '0000-00-00', 2951, '', NULL), (2952, 381, '', '', '', '0000-00-00', 2952, '', NULL), (2953, 382, 'S/N 58860', 'Proceq N-23 Hammer (C-805)', 'Range: 78 to 82', '2013-09-05', 2953, '9/5/2013', NULL), (2954, 383, '', '', '', '0000-00-00', 2954, '', NULL), (2955, 384, '', ' w/ Frame 2', 'Range: 600 lbs to 60K', '2013-09-10', 2955, '9/10/2013', NULL), (2956, 385, 'S/N Unknown', 'Humboldt H-4133 Penetrometer (E-4 & 2%)', 'Range: 200 lbs ', '2013-09-24', 2956, '9/24/2013', NULL), (2957, 386, '', '', '', '0000-00-00', 2957, '', NULL), (2958, 387, '', '', '', '0000-00-00', 2958, '', NULL), (2959, 388, '', 'Needs keyboard & batteries', '', '0000-00-00', 2959, '', NULL), (2960, 389, '', '', '', '0000-00-00', 2960, '', NULL), (2961, 390, 'S/N 060314', 'OTC Post Tension Jack (E-4 & PCI & Man Specs)', 'Range: 40K (6,600 PSI)', '2013-10-08', 2961, '10/8/2013', NULL), (2962, 391, '', '', '', '0000-00-00', 2962, '', NULL), (2963, 392, 'S/N 09039', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2012-10-17', 2963, '10/17/2012', NULL), (2964, 393, 'S/N 02116-101012-47', ' w/ Displacement (Class C) (E2309)', 'Range: 2.5 inches ', '2012-10-16', 2964, '10/16/2012', NULL), (2965, 394, '', '', '', '0000-00-00', 2965, '', NULL), (2966, 395, '', '', '', '0000-00-00', 2966, '', NULL), (2967, 396, 'S/N 375', ' w/ Geo Comp Load Trac II Displacement (E-2309)', 'Range: 3 inches ', '2012-10-23', 2967, '10/23/2012', NULL), (2968, 397, 'S/N', 'Portable Beam Breaker', 'Range:', NULL, 2968, 'New', NULL), (2969, 398, 'S/N 220', 'Gilson 5510 Single Proving Ring (E-4 & Man Specs) ', 'Range: 10K ', '2011-10-24', 2969, '10/24/2011', NULL), (2970, 399, '', '', '', '0000-00-00', 2970, '', NULL), (2971, 400, 'S/N 14705288', 'AND GP-60K Scale (E-898)', 'Range: 132 lbs', '2012-10-29', 2971, '10/29/2012', NULL), (2972, 401, '', '', '', '0000-00-00', 2972, '', NULL), (2973, 402, '', '', '', '0000-00-00', 2973, '', NULL), (2974, 403, '', '', '', '0000-00-00', 2974, '', NULL), (2975, 404, 'S/N 03097215/18', ' w/ Indicator ', 'Range: 50K', '2010-03-25', 2975, '3/25/2010', NULL), (2976, 405, '', '', '', '0000-00-00', 2976, '', NULL), (2977, 406, '', '', '', '0000-00-00', 2977, '', NULL), (2978, 407, '12', 'Back Up Ring Greenlee Flow Control Knob - VS-2011', '$12.53 each ', '0000-00-00', 2978, '', NULL), (2979, 408, 'S/N E83749', 'Dillon Dynamometer (E-4)', 'Range: 4K ', '2010-01-14', 2979, '1/14/2010', NULL), (2980, 409, '', '', '', '0000-00-00', 2980, '', NULL), (2981, 410, '', '', '', '0000-00-00', 2981, '', NULL), (2982, 411, 'S/N 01286964', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSpec & 0.1&FS)', 'Range: 20K ', '2010-10-07', 2982, '10/7/2010', NULL), (2983, 412, '', '', '', '0000-00-00', 2983, '', NULL), (2984, 413, '', '', '', '0000-00-00', 2984, '', NULL), (2985, 414, 'S/N', ' w/ Vertical Force (E-4)', 'Range: ', NULL, 2985, 'New', NULL), (2986, 415, '', '', '', '0000-00-00', 2986, '', NULL), (2987, 416, '', '', '', '0000-00-00', 2987, '', NULL), (2988, 417, '', '', '', '0000-00-00', 2988, '', NULL), (2989, 418, 'S/N 1155-16-12686', ' w/ Shear Force Single Proving Ring (E-4 & Man Specs) ', 'Range: 675 lbs (3 Kn)', '2012-11-06', 2989, '11/6/2012', NULL), (2990, 419, 'S/N 2071317', 'Eilon Engineering RON 2300 Load Cell (ManSpec & 0.1%FS)', 'Range: 20 Ton ', NULL, 2990, 'New', NULL), (2991, 420, '', '3/8 x 48 Inch Hose', '', '0000-00-00', 2991, '', NULL), (2992, 421, '', '', '', '0000-00-00', 2992, '', NULL), (2993, 422, 'S/N 2259822 ', 'Durham Geo Mdl. ADCR-410 Press (ID# GS5295) (E-4)', 'Range: 20K ', '2013-01-08', 2993, '1/8/2013', NULL), (2994, 423, 'S/N 188465 (ID# G1311)', ' w/ Geotac External Load Cell Channel #1 (E-4)', 'Range: 5K ', '2013-01-08', 2994, '1/8/2013', NULL), (2995, 424, 'S/N G838', ' w/ Brainard Kilman E-400 Digital (E-4)', '', '0000-00-00', 2995, '', NULL), (2996, 425, 'S/N 290989 (ID# G1310)', ' w/ Geotac External Load Cell Channel #1 (E-4)', 'Range: 5K ', '2013-01-08', 2996, '1/8/2013', NULL), (2997, 426, '', '', '', '0000-00-00', 2997, '', NULL), (2998, 427, 'S/N ID# G1094', ' w/ Geotest 363-B10-2K-20PI Horizontal Load Cell T & C (E-4)', 'Range: 2K (Compression Only)', '2013-01-09', 2998, '1/9/2013', NULL), (2999, 428, 'S/N G1285A', ' w/ Horizontal Load Cell Shear Force (E-4)', 'Range: 500 lbs ', '2013-01-09', 2999, '1/9/2013', NULL), (3000, 429, 'S/N 20B-1053', ' w/ Recorder (E-', 'Range: 500 lbs/ 2K / 5K / 20K ', '2013-01-09', 3000, '1/9/2013', NULL), (3001, 430, '', '', '', '0000-00-00', 3001, '', NULL), (3002, 431, 'S/N M104 (ID# M-104)', 'Gogan Spring Tester Model 104 w-Gauge Buster (E-4 & Man Specs) ', 'Range: 3 K to 120K (Pump quits at 100K)', '2013-01-07', 3002, '1/7/2013', NULL), (3003, 432, '', '', '', '0000-00-00', 3003, '', NULL), (3004, 433, 'S/N 1769', 'Detroit PT Tensile Testing Machine w/ Hand Crank (E-4)', 'Range: 4K ', '2011-01-27', 3004, '1/27/2011', NULL), (3005, 434, 'S/N 14531', 'Schmidt Hammer N-6 (C-805)', 'Range: 78-82', '2013-04-19', 3005, '4/19/2013', NULL), (3006, 435, 'ID# MCFB11-MTLB-01', ' ID# for above machine ', '', '0000-00-00', 3006, '', NULL), (3007, 436, '', '', '', '0000-00-00', 3007, '', NULL), (3008, 437, 'S/N 100805', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-30', 3008, '4/30/2013', NULL), (3009, 438, '', '', '', '0000-00-00', 3009, '', NULL), (3010, 439, 'S/N 320935', 'SPX Mdl. PE550 Post Tension Jack (E-4 & Man Specs)', 'Range: 45K (7,550 PSI)', '2010-03-02', 3010, '3/2/2010', NULL), (3011, 440, '', '', '', '0000-00-00', 3011, '', NULL), (3012, 441, '', '', '', '0000-00-00', 3012, '', NULL), (3013, 442, '', '', '', '0000-00-00', 3013, '', NULL), (3014, 443, '', '', '', '0000-00-00', 3014, '', NULL), (3015, 444, '', '', '', '0000-00-00', 3015, '', NULL), (3016, 445, 'S/N 1992 (ID# CLF-01)', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2013-02-13', 3016, '2/13/2013', NULL), (3017, 446, '', '', '', '0000-00-00', 3017, '', NULL), (3018, 447, 'S/N 081761652', 'Gilson 26104C-GIL1 Dial Indicator (ID# DI-09) (D-6027)', 'Range: 1 inch ', '2013-02-13', 3018, '2/13/2013', NULL), (3019, 448, 'S/N 8913 (ID#SK1-01)', 'Skidmore Wilhelm Model ML Bolt Tester (E-4 & 2%) ', 'Range: 110K', '2013-02-13', 3019, '2/13/2013', NULL), (3020, 449, 'S/N PFS-08 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 3020, '2/13/2013', NULL), (3021, 450, 'S/N PFS-12 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 3021, '2/13/2013', NULL), (3022, 451, 'S/N 6721487', 'Triner Scale (E-898) ', 'Range: 160 lbs (0.01 lb Divisions)', '2013-02-12', 3022, '2/12/2013', NULL), (3023, 452, '', '', '', '0000-00-00', 3023, '', NULL), (3024, 453, '', '', '', '0000-00-00', 3024, '', NULL), (3025, 454, '', '', '', '0000-00-00', 3025, '', NULL), (3026, 455, '', '', '', '0000-00-00', 3026, '', NULL), (3027, 456, '', '1-VS-2011 Back Up Ring for Greenlee Flow Control Knob', '', '0000-00-00', 3027, '', NULL), (3028, 457, 'S/N 02096798/9', 'Eilon Engineering RON 2501 S-20 Load Cell (ManSpec & 0.1%FS)', 'Range: 40K ', '2013-03-14', 3028, '3/14/2013', NULL), (3029, 458, 'S/N Unknown', 'ELE Mdl. 37-6040 Flexural Strength Tester', 'Range: 11K', '2008-02-20', 3029, '2/20/2008', NULL), (3030, 459, '', '', '', '0000-00-00', 3030, '', NULL), (3031, 460, '', '', '', '0000-00-00', 3031, '', NULL), (3032, 461, '', '', '', '0000-00-00', 3032, '', NULL), (3033, 462, 'S/N 90021', 'Forney FT-250F-02 Compression Machine (E-4)', 'Range: 30K / 250K ID# 0111493', '2013-03-05', 3033, '3/5/2013', NULL), (3034, 463, '05-23375', ' w/ LVDT Vertical Display (D-6027)', 'Range: 0.1 Inch to 1 Inch', '2013-03-05', 3034, '3/5/2013', NULL), (3035, 464, 'S/N 20011158', 'Gasbarre Model HLP Press (E-4 & 2%)', 'Range: 58 Ton', '2013-09-11', 3035, '9/11/2013', NULL), (3036, 465, '', '', '', '0000-00-00', 3036, '', NULL), (3037, 466, 'S/N 0608SBAL801039', ' w/ Horizontal Load Cell (E-4)', 'Range: 1K Compression', '2013-03-20', 3037, '3/20/2013', NULL), (3038, 467, 'S/N 5043709/14', 'Eilon Engineering RON 2501S-40 Load Cell (ManSp & 0.1% FS) ', 'Range: 80K ', '2011-04-14', 3038, '4/14/2011', NULL), (3039, 468, '', '', '', '0000-00-00', 3039, '', NULL), (3040, 469, 'S/N 967', 'Rainhart Model 416 Beam Breaker w/Recorder (E-4)', 'Range: 12K', '2008-02-05', 3040, '2/5/2008', NULL), (3041, 470, '', '', '', '0000-00-00', 3041, '', NULL), (3042, 471, '', ' w/Cylinder Frame (E-4)', 'Range: 2.5K to 250K', '2011-03-23', 3042, '3/23/2011', NULL), (3043, 472, 'S/N 16206', 'Skidmore Wilhelm Mdl. MS Bolt Tester (E-4 & 2%)', 'Range: 90K (MOVED)', '2012-03-05', 3043, '3/5/2012', NULL), (3044, 473, '', '', '', '0000-00-00', 3044, '', NULL), (3045, 474, 'S/N 11873', ' w/ LVDT (D-6027)', 'Range: 2 inches ', '2011-03-29', 3045, '3/29/2011', NULL), (3046, 475, '', ' w/ Cylinder Frame Mode 1 (E-4)', 'Range: 5K to 500K', '2013-04-17', 3046, '4/17/2013', NULL), (3047, 476, 'S/N 373', 'Humboldt Beam Tester (E-4 & 2%)', 'Range: 15K ', '2013-04-10', 3047, '4/10/2013', NULL), (3048, 477, 'S/N 80151', 'Forney FT-40 Compression Machine (ID# 89377) (E-4)', 'Range: 250K', '2013-04-09', 3048, '4/9/2013', NULL), (3049, 478, 'S/N 143310315', 'HBM Hydraulic Pressure Transducer (D-5720)', 'Range: 10,000 PSI ', '2013-04-09', 3049, '4/9/2013', NULL), (3050, 479, '', '', '', '0000-00-00', 3050, '', NULL), (3051, 480, '', ' w/Extra Gauge (E-4)', 'Range: 400K ', '2013-04-22', 3051, '4/22/2013', NULL), (3052, 481, '', '', '', '0000-00-00', 3052, '', NULL), (3053, 482, '', '', '', '0000-00-00', 3053, '', NULL), (3054, 483, '', '', '', '0000-00-00', 3054, '', NULL), (3055, 484, '1004201', ' Serial Number Too Long', '', '0000-00-00', 3055, '', NULL), (3056, 485, '', '', '', '0000-00-00', 3056, '', NULL), (3057, 486, 'S/N GBP-0111301', ' Serial Number to Long', ' ', '0000-00-00', 3057, '', NULL), (3058, 487, '', '', '', '0000-00-00', 3058, '', NULL), (3059, 488, 'S/N 149123', 'Artech Mdl 20210-5K Load Cell (E-4)', 'Cap: 500 lbs to 5,000 lbs', '2013-05-01', 3059, '5/1/2013', NULL), (3060, 489, 'S/N 9410-GB0405122', ' w/Soiltest CT-7540B Block Frame (E-4) ', 'Range: Frame #2 10K to 400K LC#1', '2013-04-30', 3060, '4/30/2013', NULL), (3061, 490, '', '', '', '0000-00-00', 3061, '', NULL), (3062, 491, 'S/N 150882', 'Artech Mdl. 20210-2.5K Load Cell w/E400 Digital (E-4)', 'Range: 2.5K ', '2013-04-24', 3062, '4/24/2013', NULL), (3063, 492, 'S/N 4695 ', 'Baldwin 120 BTE Universal Testing Machine (E-4)', 'Range: 6K/24K/60K/120K', '2013-05-01', 3063, '5/1/2013', NULL), (3064, 493, 'S/N 1362', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 20K', '2013-04-29', 3064, '4/29/2013', NULL), (3065, 494, 'S/N 9304', 'Skidmore-Wilhelm Bolt Tester (E-4 & 2%)', 'Range: 90K ', '2013-04-29', 3065, '4/29/2013', NULL), (3066, 495, 'S/N 950725894', 'Humboldt Mdl. DPX 1208 Dial Indicator (D-6027)', 'Range: 0.5 inches', '2013-04-29', 3066, '4/29/2013', NULL), (3067, 496, 'S/N 1151', 'Humboldt Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 2,200 lbs', '2013-04-30', 3067, '4/30/2013', NULL), (3068, 497, 'S/N 80105030', 'Part of the first Serial Number (Does not fit on line)', '', '0000-00-00', 3068, '', NULL), (3069, 498, '', '', '', '0000-00-00', 3069, '', NULL), (3070, 499, 'S/N 100810', ' w/ Interface Load Cell (E-4)', 'Range: 30 lbs to 3K LC#1', '2012-04-30', 3070, '4/30/2012', NULL), (3071, 500, 'S/N 177303', 'Tinius Olsen 10000 Digital T & C Machine w/ 2 Load Cells (E-4)', '', '2013-04-29', 3071, '4/29/2013', NULL), (3072, 501, '', '', '', '0000-00-00', 3072, '', NULL), (3073, 502, '', '', '', '0000-00-00', 3073, '', NULL), (3074, 503, '130809-417', 'Serial number to long', ' ID# 27504', '0000-00-00', 3074, '', NULL), (3075, 504, 'S/N 0507891', 'Eilon Engineering RON 3025 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 10K (ID# 138484)', NULL, 3075, 'New', NULL), (3076, 505, 'S/N 01372550', 'Humboldt BG2600-0-16001 Dial Indicator (D-6027) ', 'Range: 0.60 inches ', '2011-04-08', 3076, '4/8/2011', NULL), (3077, 506, '', '', '', '0000-00-00', 3077, '', NULL), (3078, 507, '', '', '', '0000-00-00', 3078, '', NULL), (3079, 508, 'S/N 012565138/1', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSpec & 0.1%FS)', 'Range: 125 Ton ', '2010-10-04', 3079, '10/4/2010', NULL), (3080, 509, '', '', '', '0000-00-00', 3080, '', NULL), (3081, 510, '', '', '', '0000-00-00', 3081, '', NULL), (3082, 511, '', '', '', '0000-00-00', 3082, '', NULL), (3083, 512, 'S/N H52141', 'HBM Model TYPC6 Load Cell Channel #3 (E-4)', 'Range: 400K (OOS)', '2008-08-20', 3083, '8/20/2008', NULL), (3084, 513, 'S/N TM0104', ' w/ Compressometer LVDT (D-6027)', 'Range: 0.05 inches ', '2009-05-08', 3084, '5/8/2009', NULL), (3085, 514, 'S/N E88402', ' w/ Epsilon 3542-0100-050-ST Extensometer (OOS) (E-83)', 'Range: 0.5 in/in (GL 1\")', '2011-12-06', 3085, '12/6/2011', NULL), (3086, 515, '', ' w/ Gauge#231', 'Range: 35K', '2013-05-09', 3086, '5/9/2013', NULL), (3087, 516, 'S/N 1885-1-6305', ' w/ Vertical Force (E-4 & 2% ManSpecs)', 'Range: 442 lbs ( 6.483TSF)', '2013-05-07', 3087, '5/7/2013', NULL), (3088, 517, '', ' w/ Gauge #860 ', 'Range: 47K', '2013-05-09', 3088, '5/9/2013', NULL), (3089, 518, '', ' w/ Gauge #20', 'Range: 35K', '2013-05-09', 3089, '5/9/2013', NULL), (3090, 519, 'S/N 04220', 'Forney F-40EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-05-06', 3090, '5/6/2013', NULL), (3091, 520, '', ' w/ Gauge #824', 'Range: 35K ', '2013-05-09', 3091, '5/9/2013', NULL), (3092, 521, '', '', '', '0000-00-00', 3092, '', NULL), (3093, 522, 'S/N 01303', 'GSE Mdl. GSE620 Electronic Scale (E-898)', 'Range: 150 lbs', '2012-05-14', 3093, '5/14/2012', NULL), (3094, 523, '', '', '', '0000-00-00', 3094, '', NULL), (3095, 524, 'S/N AE 39912777', 'Adam Scale CPW Plus 35 (E898)', 'Range: 75 lbs', '2013-04-30', 3095, '4/30/2013', NULL), (3096, 525, '', '', '', '0000-00-00', 3096, '', NULL), (3097, 526, '', '', '', '0000-00-00', 3097, '', NULL), (3098, 527, 'S/N R9686-071025', 'Reihle 100K-CS-100-2LP Displacement (Descending Only) (E-2309)', 'Range: 0.25\" to 20\" ID# 335.20.23', '2013-05-22', 3098, '5/22/2013', NULL), (3099, 528, '', '', '', '0000-00-00', 3099, '', NULL), (3100, 529, '', '', '', '0000-00-00', 3100, '', NULL), (3101, 530, 'S/N 62238', 'Forney PT-75 Pipe Tester (E-4 & C-497 2%)', 'Range: 30K / 150K', '2013-05-28', 3101, '5/28/2013', NULL), (3102, 531, '', '', '', '0000-00-00', 3102, '', NULL), (3103, 532, '', '', '', '0000-00-00', 3103, '', NULL), (3104, 533, '', '', '', '0000-00-00', 3104, '', NULL), (3105, 534, '', '', '', '0000-00-00', 3105, '', NULL), (3106, 535, '', '', '', '0000-00-00', 3106, '', NULL), (3107, 536, '', '', '', '0000-00-00', 3107, '', NULL), (3108, 537, '', '', '', '0000-00-00', 3108, '', NULL), (3109, 538, '', '', '', '0000-00-00', 3109, '', NULL), (3110, 539, '', '', '', '0000-00-00', 3110, '', NULL), (3111, 540, '', '', '', '0000-00-00', 3111, '', NULL), (3112, 541, 'S/N 378BY059', 'Acculab V1-10Kg Scale (E-898)', 'Range: 10,000 Grams', '2013-06-04', 3112, '6/4/2013', NULL), (3113, 542, '', '', '', '0000-00-00', 3113, '', NULL), (3114, 543, '', '', '', '0000-00-00', 3114, '', NULL), (3115, 544, '-169', ' Serial number too long', '', '0000-00-00', 3115, '', NULL), (3116, 545, 'S/N 01078', 'Forney F-40F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-08-06', 3116, '8/6/2013', NULL), (3117, 546, '', '', '', '0000-00-00', 3117, '', NULL), (3118, 547, 'S/N NC#18', 'HCS LC-2502 Hydraulic Load Cell (E-4 2% & ManSpecs)', 'Range: 50K', '2013-06-13', 3118, '6/13/2013', NULL), (3119, 548, 'S/N 209607', 'Transducer Techniques (E-4)', 'Range: 500 lbs to 5K ', '2013-06-19', 3119, '6/19/2013', NULL), (3120, 549, '', '', '', '0000-00-00', 3120, '', NULL), (3121, 550, '', '', '', '0000-00-00', 3121, '', NULL), (3122, 551, '', '', '', '0000-00-00', 3122, '', NULL), (3123, 552, 'S/N Ram 1', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 3123, '6/29/2011', NULL), (3124, 553, '', '', '', '0000-00-00', 3124, '', NULL), (3125, 554, '', '', '', '0000-00-00', 3125, '', NULL), (3126, 555, 'S/N 002', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI ', '2011-04-28', 3126, '4/28/2011', NULL), (3127, 556, '', '', '', '0000-00-00', 3127, '', NULL), (3128, 557, '', ' w/ Transducer Techniques PHM-100 Digital ', '', '0000-00-00', 3128, '', NULL), (3129, 558, 'S/N 0030', 'VSL Bond Tester (New York) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2012-06-01', 3129, '6/1/2012', NULL), (3130, 559, 'S/N 901', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 30 PSI ', '2011-06-09', 3130, '6/9/2011', NULL), (3131, 560, '', '', '', '0000-00-00', 3131, '', NULL), (3132, 561, '', '', '', '0000-00-00', 3132, '', NULL), (3133, 562, '', '', '', '0000-00-00', 3133, '', NULL), (3134, 563, 'S/N 12300', 'Skidmore-Wilhelm Mdl. ML Bolt Tester (E-4) ', 'Range: 110K', '2013-07-09', 3134, '7/9/2013', NULL), (3135, 564, '', '', '', '0000-00-00', 3135, '', NULL), (3136, 565, '', '', '', '0000-00-00', 3136, '', NULL), (3137, 566, '', '', '', '0000-00-00', 3137, '', NULL), (3138, 567, '', '', '', '0000-00-00', 3138, '', NULL), (3139, 568, '', '', '', '0000-00-00', 3139, '', NULL), (3140, 569, '', '', '', '0000-00-00', 3140, '', NULL), (3141, 570, 'S/N ', ' w/ Gauge ', 'Range: 60 K', '0000-00-00', 3141, '', NULL), (3142, 571, '', '', '', '0000-00-00', 3142, '', NULL), (3143, 572, '', '', '', '0000-00-00', 3143, '', NULL), (3144, 573, '', '', '', '0000-00-00', 3144, '', NULL), (3145, 574, '', '', '', '0000-00-00', 3145, '', NULL), (3146, 575, 'S/N 010295', 'Geotest Model 52008 Load Cell (E-4)', 'Range: 20 lbs to 2K', '2013-07-30', 3146, '7/30/2013', NULL), (3147, 576, 'S/N 441256-07073', 'Baldwin Tate Emery 100CT-CS-100-2A Digital Compression Machine ', 'Range: 500 lbs to 100K (E-4)', '2013-07-29', 3147, '7/29/2013', NULL), (3148, 577, 'S/N 181', 'BK Load Cell w/ E-410 Digital Channel #0 (E-4)', 'Range: 500 lbs ', '2010-08-03', 3148, '8/3/2010', NULL), (3149, 578, '', '', '', '0000-00-00', 3149, '', NULL), (3150, 579, '', '', '', '0000-00-00', 3150, '', NULL), (3151, 580, 'S/N EQ2010883', 'AND Scale (E-898)', 'Range: 15 to 150 lbs', '2013-05-22', 3151, '5/22/2013', NULL), (3152, 581, 'S/N -241113', ' Load Cell #1 Red (E4', 'Range: 100 lbs. to 50,000 lbs.', '2013-09-12', 3152, '9/12/2013', NULL), (3153, 582, 'S/N 03018282/6', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1%FS)', 'Range: 50K', '2013-06-03', 3153, '6/3/2013', NULL), (3154, 583, '', '', '', '0000-00-00', 3154, '', NULL), (3155, 584, '', '', '', '0000-00-00', 3155, '', NULL), (3156, 585, 'S/N 79553', 'Powerteam Beam Breaker (E-4 & Man. Specs.)', 'Range: 10K', '2009-03-26', 3156, '3/26/2009', NULL), (3157, 586, 'S/N 1336', 'Bynum Prestress Jack (E-4 & PCI)', 'Range: 3K / 37K', '2013-08-08', 3157, '8/8/2013', NULL), (3158, 587, '', ' w/ Control #105 & #104', '', '0000-00-00', 3158, '', NULL), (3159, 588, '', '', '', '0000-00-00', 3159, '', NULL), (3160, 589, '', '', '', '0000-00-00', 3160, '', NULL), (3161, 590, '', '', '', '0000-00-00', 3161, '', NULL), (3162, 591, '', '', '', '0000-00-00', 3162, '', NULL), (3163, 592, 'S/N 173-110429-61', 'Brainard-Kilman CM-215-CS-100-1BR Digital Compression Machine ', 'Range: 2K to 250K (E-4)', '2013-08-26', 3163, '8/26/2013', NULL), (3164, 593, 'S/N 9533', ' w/ Beam Frame (E-4)', 'Range: 2.5K to 250K Channel 2', '2010-10-25', 3164, '10/25/2010', NULL), (3165, 594, '', '', '', '0000-00-00', 3165, '', NULL), (3166, 595, 'S/N 03096046/3', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSpec & 0.1%FS)', 'Range: 60K ', '2012-08-22', 3166, '8/22/2012', NULL), (3167, 596, '', '', '', '0000-00-00', 3167, '', NULL), (3168, 597, 'S/N 1207808/11', 'Eilon Engineering RON 2501 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2011-08-30', 3168, '8/30/2011', NULL), (3169, 598, 'S/N 20306005', 'Com-Ten Industries SSB2000 Load Cell (E-4)', 'Range: 2K', '2012-07-25', 3169, '7/25/2012', NULL), (3170, 599, 'S/N 91058', 'Forney FT-250F-DR1 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-09-05', 3170, '9/5/2013', NULL), (3171, 600, '', '', '', '0000-00-00', 3171, '', NULL), (3172, 601, 'S/N 194', 'CDI CBR Single Proving Ring (E-4 & Man Specs) ', 'Range: 6K', '2013-09-04', 3172, '9/4/2013', NULL), (3173, 602, '', '', '', '0000-00-00', 3173, '', NULL), (3174, 603, 'S/N Unknown', 'Ohaus 2400 Scale (E-898)', 'Range: 35 lbs.', '2013-09-05', 3174, '9/5/2013', NULL), (3175, 604, 'S/N 416', 'Pine Instrument Mdl. 850 Asphalt Press (E-4 & 2%)', 'Range: 2.5K / 5K / 10K ', '2013-09-04', 3175, '9/4/2013', NULL), (3176, 605, 'S/N 68500 (ID# 005739)', ' w/ T & C Load Cell (E-4) ', 'Range: 11 lbs (50 N)', '2013-09-04', 3176, '9/4/2013', NULL), (3177, 606, '', '', '', '0000-00-00', 3177, '', NULL), (3178, 607, 'S/N 001 (ID# E-071)', 'Ametek Accuforce III Digital Force Gauge (E-4 & 2%)', 'Range: 20 lbs', '2013-10-08', 3178, '10/8/2013', NULL), (3179, 608, 'S/N B39103', '(OOS)Chatillon DFIS 10 Digital Force Gauge (BROKE) (E-4 & 2%)', 'Range: 10 lbs ', '2009-06-05', 3179, '6/5/2009', NULL), (3180, 609, '', '', '', '0000-00-00', 3180, '', NULL), (3181, 610, ' ', ' ', '', '0000-00-00', 3181, '', NULL), (3182, 611, 'S/N 1234', 'Ohaus Triple Beam 700/800 Series Balance Scale (E-898)', 'Range: 610 Grams ', '2013-09-09', 3182, '9/9/2013', NULL), (3183, 612, '', '', '', '0000-00-00', 3183, '', NULL), (3184, 613, '', '', '', '0000-00-00', 3184, '', NULL), (3185, 614, 'S/N E81391', ' w/ Epsilon 3542-0200-025-ST Extemsometer (E-83)', 'Range: 0.25 in/in (GL 2\") 25% range', '2013-09-24', 3185, '9/24/2013', NULL), (3186, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 3186, 'New', NULL), (3187, 616, '', '', '', '0000-00-00', 3187, '', NULL), (3188, 617, 'S/N 01110-H15326', 'CSI Digital Load Cell System- Model CS-100-6A-2 sep. channels (E-4) ', 'Range:Ch. #0 1K/Ch. #1 10K ', '2013-10-09', 3188, '10/9/2013', NULL), (3189, 618, '', '', '', '0000-00-00', 3189, '', NULL), (3190, 619, '', '', '', '0000-00-00', 3190, '', NULL), (3191, 620, '', '', '', '0000-00-00', 3191, '', NULL), (3192, 621, '', ' w/ 2 Gauges', 'Range: 30K / 400K', '2012-10-16', 3192, '10/16/2012', NULL), (3193, 622, 'S/N 261', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 1.5K to 15K', '2012-10-22', 3193, '10/22/2012', NULL), (3194, 623, '', '', '', '0000-00-00', 3194, '', NULL), (3195, 624, '', '', '', '0000-00-00', 3195, '', NULL), (3196, 625, '', '', '', '0000-00-00', 3196, '', NULL), (3197, 626, '', '', '', '0000-00-00', 3197, '', NULL), (3198, 627, 'S/N 11385', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2012-10-30', 3198, '10/30/2012', NULL), (3199, 628, '', '', '', '0000-00-00', 3199, '', NULL), (3200, 629, '', '', '', '0000-00-00', 3200, '', NULL), (3201, 630, '', '', '', '0000-00-00', 3201, '', NULL), (3202, 631, 'S/N 828', 'Skidmore Wilhelm Bolt Tester Model M (E-4 & 2%)', 'Range: 80K', '2007-12-14', 3202, '12/14/2007', NULL), (3203, 632, '', '', '', '0000-00-00', 3203, '', NULL), (3204, 633, '', '', '', '0000-00-00', 3204, '', NULL), (3205, 634, '', '', '', '0000-00-00', 3205, '', NULL), (3206, 635, '', '', '', '0000-00-00', 3206, '', NULL), (3207, 636, '', '', '', '0000-00-00', 3207, '', NULL), (3208, 637, 'S/N 410746', ' w/ GeoJac Load Cell (E-4)', 'Range: 2K ', '2011-11-14', 3208, '11/14/2011', NULL), (3209, 638, 'S/N 465718', ' w/ GeoJac Load Cell (E-4)', 'Range: 20 lbs to 2K ', '2012-11-13', 3209, '11/13/2012', NULL), (3210, 639, 'S/N LP-834', 'GeoJac LVDT (D-6027)', 'Range: 3 inches ', '2011-11-15', 3210, '11/15/2011', NULL), (3211, 640, 'S/N 10313646', 'Wika Mdl. DG-10-S Pressure Gauge (D-5720 & 2%)', 'Range : 10,000 psi', '2012-11-19', 3211, '11/19/2012', NULL), (3212, 641, 'S/N I37567', ' w/ Load Cell Mdl. LCS15KSE Channel #1 (E-4)', 'Range: 5K', '2012-12-04', 3212, '12/4/2012', NULL), (3213, 642, '', '', '', '0000-00-00', 3213, '', NULL), (3214, 643, 'S/N 1010000014', 'ELE 27-1124/02 Digital ', '', '0000-00-00', 3214, '', NULL), (3215, 644, '', '', '', '0000-00-00', 3215, '', NULL), (3216, 645, 'S/N 0502/015G', 'Dynafor Load Cell (E-4)', 'Range: 50K ', '2012-11-20', 3216, '11/20/2012', NULL), (3217, 646, '', '', '', '0000-00-00', 3217, '', NULL), (3218, 647, '', '', '', '0000-00-00', 3218, '', NULL), (3219, 648, '', '', '', '0000-00-00', 3219, '', NULL), (3220, 649, '', '', '', '0000-00-00', 3220, '', NULL), (3221, 650, '', '', '', '0000-00-00', 3221, '', NULL), (3222, 651, 'S/N 85046', ' w/ Displacement (E-2309)', 'Range: 25 inches ', NULL, 3222, 'New', NULL), (3223, 652, '', '', '', '0000-00-00', 3223, '', NULL), (3224, 653, 'S/N 300LXQ6035', ' w/ Extensometer (E-83)', 'Range: 0.2 in (GL 2\")', NULL, 3224, 'New', NULL), (3225, 654, 'S/N 1083', 'Whittemore 10\" GL Strain Gauge (E-83)', 'Range: 0.1 inches (10\" GL)', '2012-12-20', 3225, '12/20/2012', NULL), (3226, 655, '2 @ $18.00', '8\" B/U Ring', '', '0000-00-00', 3226, '', NULL), (3227, 656, '', '', '', '0000-00-00', 3227, '', NULL), (3228, 657, '', '', '', '0000-00-00', 3228, '', NULL), (3229, 658, '', '', '', '0000-00-00', 3229, '', NULL), (3230, 659, 'S/N 05141', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K (MOVED) ', '2007-12-05', 3230, '12/5/2007', NULL), (3231, 660, 'S/N 10325914', ' w/ MTS 634-11E-54 Extensometer (E-83)', 'Range: 0.2 inches (GL 1\")', '2012-01-24', 3231, '1/24/2012', NULL), (3232, 661, 'S/N 1388', ' w/ Single Proving Ring Only Compression(E-4 & Man Specs)', 'Range: 500 lbs', '2013-03-06', 3232, '3/6/2013', NULL), (3233, 662, '', '', '', '0000-00-00', 3233, '', NULL), (3234, 663, '', '', '', '0000-00-00', 3234, '', NULL), (3235, 664, '', '', '', '0000-00-00', 3235, '', NULL), (3236, 665, 'S/N 61912', ' w/ Interface T & C Load Cell (E-4)', 'Range: 2K ', NULL, 3236, 'New', NULL), (3237, 666, 'S/N 122', 'Brainard Kilman CM-215 Compression Machine (E-4)', 'Range: 25K / 250K ', '2013-01-07', 3237, '1/7/2013', NULL), (3238, 667, 'S/N 68163', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 20K / 250K', '2012-01-12', 3238, '1/12/2012', NULL), (3239, 668, '', '', '', '0000-00-00', 3239, '', NULL), (3240, 669, 'S/N BP 274-1 ', 'Barsplice/Vishay Extensometer (Used w/LVDT S/N HS10-50556442) ', 'Range:0.057 in/in(GL 7\")(0.4\" trav)(E-83) ', '2013-01-15', 3240, '1/15/2013', NULL), (3241, 670, '', '', '', '0000-00-00', 3241, '', NULL), (3242, 671, '', '', '', '0000-00-00', 3242, '', NULL), (3243, 672, 'S/N 96521 / NC#21', 'HCS Hydraulic Load Cell LC 2502 (E-4 & 2%)', 'Range: 50K ', '2013-01-16', 3243, '1/16/2013', NULL), (3244, 673, '', '', '', '0000-00-00', 3244, '', NULL), (3245, 674, '', ' w/ Extra Gauge ', 'Range: 25K to 250K ', '2012-01-23', 3245, '1/23/2012', NULL), (3246, 675, 'S/N ', 'Instron 1125 Digital Compression Machine w/ MTS Renew (E-4) ', '', '0000-00-00', 3246, '', NULL), (3247, 676, '', '', '', '0000-00-00', 3247, '', NULL), (3248, 677, '', '', '', '0000-00-00', 3248, '', NULL), (3249, 678, 'S/N 03243820/1', 'Eilon Engineering RON 2501 S-15 Load Cell (ManSpec & 0.1% FS)', 'Range: 30K ', NULL, 3249, 'New', NULL), (3250, 679, '', '', '', '0000-00-00', 3250, '', NULL), (3251, 680, 'S/N 03228711/12', 'Eilon Engineering RON 2501 H-25 Load Cell (Man Spec & 0.1% FS)', 'Range: 50K (25 Ton)', '2013-09-25', 3251, '9/25/2013', NULL), (3252, 681, 'S/N 0007', 'VSL Bond Tester (Chicago) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2009-06-25', 3252, '6/25/2009', NULL), (3253, 682, 'S/N NC#18 ', 'HCS Model LC-2502 Hydraulic Load Cell (E-4)', 'Range: 50K', '2012-01-19', 3253, '1/19/2012', NULL), (3254, 683, 'S/N 05054014/1', 'Eilon Engineering RON 2501 S-50 Load Cell (Man Spec & 0.1%FS)', 'Range: 100K ', '2012-01-06', 3254, '1/6/2012', NULL), (3255, 684, 'S/N 2148', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-01-30', 3255, '1/30/2012', NULL), (3256, 685, 'S/N 3951 (PR-06)', 'ELE Single Proving Ring (E-4 & Man Specs) ', 'Range: 650 lbs ', '2013-03-14', 3256, '3/14/2013', NULL), (3257, 686, '', ' w/ 40-200-TK5U Gauge (D-5720 & 2%)', 'Range: 14.5 PSID', '2013-01-11', 3257, '1/11/2013', NULL), (3258, 687, '', '', '', '0000-00-00', 3258, '', NULL), (3259, 688, '', '', '', '0000-00-00', 3259, '', NULL), (3260, 689, '', '', '', '0000-00-00', 3260, '', NULL), (3261, 690, 'S/N 004428', 'Hilti Pull Tester Model 59604/02/00 (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-08-22', 3261, '8/22/2013', NULL), (3262, 691, '', '', '', '0000-00-00', 3262, '', NULL), (3263, 692, '', '', '', '0000-00-00', 3263, '', NULL), (3264, 693, '', ' w/ Frame #1', 'Range: 3K to 300K ', '0000-00-00', 3264, '', NULL), (3265, 694, 'S/N 16056', 'Marsh Vacuum Gauge (D-5720 & 2%) ', 'Range: 30 in Hg', '2013-02-06', 3265, '2/6/2013', NULL), (3266, 695, 'S/N 988-1', ' w/ Geotest Load Cell (Shear Force) (E-4)', 'Range: 500 lbs ', '2013-02-06', 3266, '2/6/2013', NULL), (3267, 696, '', '', '', '0000-00-00', 3267, '', NULL), (3268, 697, '', '', '', '0000-00-00', 3268, '', NULL), (3269, 698, '', '', '', '0000-00-00', 3269, '', NULL), (3270, 699, '', '', '', '0000-00-00', 3270, '', NULL), (3271, 700, 'S/N 21606', 'Testmark CM-3000-DIR Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-07-11', 3271, '7/11/2013', NULL), (3272, 701, '', '', '', '0000-00-00', 3272, '', NULL), (3273, 702, '', '', '', '0000-00-00', 3273, '', NULL), (3274, 703, 'S/N PT2-20-698', 'Open Joist 2000 HT-440-20 Testing Press (E-4 & Man Specs )', 'Range: 250 psi (800 lbs)', '2013-02-18', 3274, '2/18/2013', NULL), (3275, 704, '', '', '', '0000-00-00', 3275, '', NULL), (3276, 705, '', '', '', '0000-00-00', 3276, '', NULL), (3277, 706, 'S/N DRCIPT5 ', 'Enerpac Hand Jack w/ RCH202/P392 Ram S/N C3711K', 'Range: 40K (8,500 PSI) (E-4 & 2%)', '2012-02-17', 3277, '2/17/2012', NULL), (3278, 707, '', '', '', '0000-00-00', 3278, '', NULL), (3279, 708, '', '', '', '0000-00-00', 3279, '', NULL), (3280, 709, '', '', '', '0000-00-00', 3280, '', NULL), (3281, 710, '', '', '', '0000-00-00', 3281, '', NULL), (3282, 711, '', '', '', '0000-00-00', 3282, '', NULL), (3283, 712, '', '', '', '0000-00-00', 3283, '', NULL), (3284, 713, 'S/N 405164', 'Humboldt Master Loader Digital Compression Mdl. HM-3000 (E-4)', 'Range: 100 lbs to 10,000 lbs', '2013-03-05', 3284, '3/5/2013', NULL), (3285, 714, '', '', '', '0000-00-00', 3285, '', NULL), (3286, 715, '', ' w/ Plus Y Axis - T & C ', 'Range: 50K', '2012-03-12', 3286, '3/12/2012', NULL), (3287, 716, 'S/N 103221A', ' w/ Tovey Load Cell Plus X Axis - T & C', 'Range: 2K ', '2012-03-13', 3287, '3/13/2012', NULL), (3288, 717, 'S/N 98072-100309', 'Forney F600P-CS-100-2B/GBII Digital Compression Machine (E-4)', 'Range: 6K to 600K (ID#BRKRM2)', '2013-03-12', 3288, '3/12/2013', NULL), (3289, 718, '', '', '', '0000-00-00', 3289, '', NULL), (3290, 719, 'S/N 21110035', ' w/ Load Cell (E-4 & 2% ManSpecs)', 'Range: 500 lbs ', '2013-04-01', 3290, '4/1/2013', NULL), (3291, 720, '', '', '', '0000-00-00', 3291, '', NULL), (3292, 721, '', '', '', '0000-00-00', 3292, '', NULL), (3293, 722, '', '', '', '0000-00-00', 3293, '', NULL), (3294, 723, '', '', '', '0000-00-00', 3294, '', NULL), (3295, 724, 'S/N 01275950', 'Eilon Engineering RON 2000 S-10 Load Cell', 'Range: 20K', '2012-10-05', 3295, '10/5/2012', NULL), (3296, 725, '', '', '', '0000-00-00', 3296, '', NULL), (3297, 726, '', '11-733', '', '0000-00-00', 3297, '', NULL), (3298, 727, '', '', '', '0000-00-00', 3298, '', NULL), (3299, 728, 'S/N 1064057', 'Ashcroft 25D 1005PS02L 200#-BL Pressure Gauge (D-5720)', 'Range: 200 PSI ', '2013-02-21', 3299, '2/21/2013', NULL), (3300, 729, '', '', '', '0000-00-00', 3300, '', NULL), (3301, 730, '120321-199', ' **S/N too long did not fi', '', '0000-00-00', 3301, '', NULL), (3302, 731, '-707184', ' The rest of S/N does not fit on one line', '', '0000-00-00', 3302, '', NULL), (3303, 732, 'S/N SM-2', 'Simplex PEM-4045 Prestress Jack (E-4 & PCI & 2%)', 'Range: 3K (610 PSI) / 35K', '2013-10-08', 3303, '10/8/2013', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (3304, 733, 'S/N 206523', 'Humboldt Beam Tester (E-4 & 2% Man Specs)', 'Range: 15K (MDOT# 206523)', '2013-04-08', 3304, '4/8/2013', NULL), (3305, 734, 'S/N 1152', ' w/ T & C Mdl. A217-12 Load Cell (E-4)', 'Range: 10 lbs to 1K ', '2013-09-30', 3305, '9/30/2013', NULL), (3306, 735, 'S/N 334 ', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 15K (MDOT# 208193)', '2013-04-08', 3306, '4/8/2013', NULL), (3307, 736, 'S/N 1 Red Truck', 'Simms Prestress Jack #1 (Red) Gas engine powered (E-4 & PCI)', 'Range: 2K (200 PSI) / 35K ', '2010-02-16', 3307, '2/16/2010', NULL), (3308, 737, 'S/N 612970', 'Humboldt HM-2300.100 Load Cell (E-4)', 'Range: 100 lbs to 10K', '2013-04-09', 3308, '4/9/2013', NULL), (3309, 738, '', '', '', '0000-00-00', 3309, '', NULL), (3310, 739, '', '', '', '0000-00-00', 3310, '', NULL), (3311, 740, 'S/N SM-1', 'Simplex PEM-4045 Prestress Jack (E-4 & PCI & 2%)', 'Range: 2K / 35K', '2007-10-02', 3311, '10/2/2007', NULL), (3312, 741, 'S/N', 'Hamilton Prestress Jack', 'Range: 5K to 50K', NULL, 3312, 'New', NULL), (3313, 742, '', '', '', '0000-00-00', 3313, '', NULL), (3314, 743, 'S/N TEN004', 'Intron TM-CS-100-1S Digital T&C Machine (E-4)', 'Range: 10 lbs to 500 lbs T&C', '2012-04-24', 3314, '4/24/2012', NULL), (3315, 744, '', '', '', '0000-00-00', 3315, '', NULL), (3316, 745, 'S/N 03059', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 25K to 250K', '2012-04-25', 3316, '4/25/2012', NULL), (3317, 746, '', '', '', '0000-00-00', 3317, '', NULL), (3318, 747, '', '', '', '0000-00-00', 3318, '', NULL), (3319, 748, '', '', '', '0000-00-00', 3319, '', NULL), (3320, 749, 'S/N E90009 ID#525', 'Epsilon Extensometer Model 3542-0200-020-ST (E-83)', 'Range : T: 0.2 in/in C: 0.2 in/in', '2013-04-22', 3320, '4/22/2013', NULL), (3321, 750, 'S/N 74126', 'Hydrotile PT Dig. Pipe Tester w/ Co-Pilot Dig.(E- &C-497 2%MS)', 'Range 15K to 300K', '2013-05-01', 3321, '5/1/2013', NULL), (3322, 751, 'S/N 141420', ' w/Tinius Olsen S-400-2A Extensometer (E-83)', 'Range: 0.02 in/min (GL 2\") (10%)', '2013-05-02', 3322, '5/2/2013', NULL), (3323, 752, '', '', '', '0000-00-00', 3323, '', NULL), (3324, 753, '', '', '', '0000-00-00', 3324, '', NULL), (3325, 754, 'S/N 11337', 'Humbolt HM-213.04 LVDT (D-6027)', '', '2013-04-30', 3325, '4/30/2013', NULL), (3326, 755, 'S/N unknown', 'Omega LVDT w/ DAQ Unit (D-6027)', 'Range: 3 inches', '2013-04-30', 3326, '4/30/2013', NULL), (3327, 756, '', '', '', '0000-00-00', 3327, '', NULL), (3328, 757, 'S/N 12602', 'Humboldt HM-2310.10 LVDT (D-6027)', 'Range: 1 inch', NULL, 3328, 'New', NULL), (3329, 758, '', '', '', '0000-00-00', 3329, '', NULL), (3330, 759, '', '', '', '0000-00-00', 3330, '', NULL), (3331, 760, '', '', '', '0000-00-00', 3331, '', NULL), (3332, 761, 'S/N Unknown', 'Hamilton Prestress Jack (OUT OF SERVICE)', 'Range: 2,150 lbs. to 35,000 lbs.', '2004-05-20', 3332, '5/20/2004', NULL), (3333, 762, '', '', '', '0000-00-00', 3333, '', NULL), (3334, 763, '', '', '', '0000-00-00', 3334, '', NULL), (3335, 764, '', '', '', '0000-00-00', 3335, '', NULL), (3336, 765, '', '', '', '0000-00-00', 3336, '', NULL), (3337, 766, 'S/N 00119', 'Forney QC-400-F96 Digital Compression Machine (E-4)', 'Range:', '2012-06-27', 3337, '6/27/2012', NULL), (3338, 767, 'S/N 2000952', ' w/ Load Cell Model SSB5000 (E-4) ', 'Range: 50 lbs. to 5K ', '2013-09-09', 3338, '9/9/2013', NULL), (3339, 768, 'S/N R-3996', 'with Load Cell (E-4) 5% Range', 'Range: 200 lbs to1,500 lbs ', '2012-11-28', 3339, '11/28/2012', NULL), (3340, 769, 'S/N C-455', 'Instron Model 1011 Tension Tester (Man Spec\'s 1%)', 'Range:0% to 100%', '2012-11-28', 3340, '11/28/2012', NULL), (3341, 770, '', '', '', '0000-00-00', 3341, '', NULL), (3342, 771, '', '', '', '0000-00-00', 3342, '', NULL), (3343, 772, '', '', '', '0000-00-00', 3343, '', NULL), (3344, 773, 'S/N Q2004568', 'AND Company FCR Scale (E-898)', 'Range: 300 lbs', '2013-05-07', 3344, '5/7/2013', NULL), (3345, 774, 'S/N 804180', 'Humboldt Master Loader Mdl. HM 3000 ', 'Range: 10K ', '2007-03-14', 3345, '3/14/2007', NULL), (3346, 775, '', '', '', '0000-00-00', 3346, '', NULL), (3347, 776, 'S/N 15512-5', 'Hamilton PU-P4500-950 Prestress Jack (2% PCI & ManSpecs)', 'Range: 3K to 35K', NULL, 3347, 'New', NULL), (3348, 777, 'S/N R-3999', 'Instron XL Extensometer (E-2309)', 'Range: 0% to 1000% (25mm-250mm)', '2012-11-28', 3348, '11/28/2012', NULL), (3349, 778, 'S/N C-455', ' with Speed Control (E2658-11) Recorder ', 'Range: 0.5 in/min', '2012-11-27', 3349, '11/27/2012', NULL), (3350, 779, 'S/N C-455', ' with Speed Control Digital (E2658-11)', 'Range: 5 in/min', '2012-11-27', 3350, '11/27/2012', NULL), (3351, 780, '', '', '', '0000-00-00', 3351, '', NULL), (3352, 781, '', '', '', '0000-00-00', 3352, '', NULL), (3353, 782, 'S/N 367593', 'OTC Model PE-554 Post Tension Jack (E-4 & PCI 2% ManSpecs)', 'Range: 35K (6 Month Schedule)', '2013-05-15', 3353, '5/15/2013', NULL), (3354, 783, 'S/N 612935', 'Karol Warner CBR Load Cell (E-4)', 'Range: 200 lbs to 10,000 lbs', '2013-02-01', 3354, '2/1/2013', NULL), (3355, 784, 'S/N 11259', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2013-01-16', 3355, '1/16/2013', NULL), (3356, 785, '', '', '', '0000-00-00', 3356, '', NULL), (3357, 786, 'S/N 111', 'Enerpac Jack mdl: CLL1506 PTJ', 'Range 150 Ton', '2012-05-21', 3357, '5/21/2012', NULL), (3358, 787, 'S/N 129135', ' w/ Revere Load Cell #1 Red (E-4)', 'Range: 100 lbs to 50K', '2013-05-16', 3358, '5/16/2013', NULL), (3359, 788, '', '', '', '0000-00-00', 3359, '', NULL), (3360, 789, '', '', '', '0000-00-00', 3360, '', NULL), (3361, 790, '', '', '', '0000-00-00', 3361, '', NULL), (3362, 791, 'S/N 211723/168151', ' w/Pressure Transducer (D-5720)', 'Range: 20 PSI to 200 PSI', '2013-06-04', 3362, '6/4/2013', NULL), (3363, 792, 'S/N 201171103', ' w/ Total Comp load cell Mdl TCSPI-50K-SS', 'Range: 50K Channel #1', '2012-06-22', 3363, '6/22/2012', NULL), (3364, 793, '', '', '', '0000-00-00', 3364, '', NULL), (3365, 794, '', '', '', '0000-00-00', 3365, '', NULL), (3366, 795, '', '', '', '0000-00-00', 3366, '', NULL), (3367, 796, 'S/N 35QBY076', 'Acculab V1-10Kg Scale (E-898)', 'Range: 10,000 Grams', '2013-06-04', 3367, '6/4/2013', NULL), (3368, 797, '', '', '', '0000-00-00', 3368, '', NULL), (3369, 798, 'S/N PT0808207-10M', ' w/Trans.', '', '0000-00-00', 3369, '', NULL), (3370, 799, 'S/N 1001560P', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-06-10', 3370, '6/10/2013', NULL), (3371, 800, '', '', '', '0000-00-00', 3371, '', NULL), (3372, 801, '', '', '', '0000-00-00', 3372, '', NULL), (3373, 802, 'S/N 1323', 'Forney Proceq NA-2 Hammer (C-805)', 'Range: 78 to 82', '2013-06-18', 3373, '6/18/2013', NULL), (3374, 803, 'S/N X15', 'Simplex RC202 Ram Pac Puller (E-4 & PCI ManSpecs)', 'Range: 60K (7,000 psi)', '2013-04-15', 3374, '4/15/2013', NULL), (3375, 804, '', '', '', '0000-00-00', 3375, '', NULL), (3376, 805, '', '', '', '0000-00-00', 3376, '', NULL), (3377, 806, 'S/N 3516', 'Hilti Pull Tester Model 59604/00/06 (E-4 & 2% ManSpecs)', 'Range: 300 lbs to 3,000 lbs', '2013-06-27', 3377, '6/27/2013', NULL), (3378, 807, 'S/N 1694', ' Tuffaloy Force Gauge(liquid filled load cell) (E-4)', 'Range: 1,000 to 10,000 lbs.', '2012-09-12', 3378, '9/12/2012', NULL), (3379, 808, '', '', '', '0000-00-00', 3379, '', NULL), (3380, 809, '', '', '', '0000-00-00', 3380, '', NULL), (3381, 810, '', '', '', '0000-00-00', 3381, '', NULL), (3382, 811, 'S/N 679', 'Soiltest CT 710 Compression Machine (E-4)', 'Range: 250K', '2013-07-08', 3382, '7/8/2013', NULL), (3383, 812, 'S/N AE97731', 'Adam PBL6001 Scale (E-898)', 'Range: 6,000 grams', '2013-05-02', 3383, '5/2/2013', NULL), (3384, 813, '', '', '', '0000-00-00', 3384, '', NULL), (3385, 814, 'S/N 55107', ' w/ T & C Load Cell Mdl. 2525-174 (E-4)', 'Range: 50K / 60K (250 Kn)', '2013-07-23', 3385, '7/23/2013', NULL), (3386, 815, 'S/N 146428', 'Artch Load Cell Model 20210-10K (In House)', 'Range: 200 to 10,000 lbs', '2012-10-18', 3386, '10/18/2012', NULL), (3387, 816, 'S/N 1108000364', ' w/ Load Cell Mdl. 368YH (E-4)', 'Range: 200 lbs to 10K (Channel #3)', '2013-06-25', 3387, '6/25/2013', NULL), (3388, 817, '', '', '', '0000-00-00', 3388, '', NULL), (3389, 818, '', '', '', '0000-00-00', 3389, '', NULL), (3390, 819, '', '', '', '0000-00-00', 3390, '', NULL), (3391, 820, '', '', '', '0000-00-00', 3391, '', NULL), (3392, 821, '', '', '', '0000-00-00', 3392, '', NULL), (3393, 822, '', '', '', '0000-00-00', 3393, '', NULL), (3394, 823, '', '', '', '0000-00-00', 3394, '', NULL), (3395, 824, 'S/N 03097163/12', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSpecs%0.1%FS)', 'Range: 50 Ton (ID# 815-29-06-081)', NULL, 3395, 'New', NULL), (3396, 825, '', '', '', '0000-00-00', 3396, '', NULL), (3397, 826, 'S/N 0507242/23', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 3397, '8/27/2013', NULL), (3398, 827, 'S/N 0586100-6', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '0000-00-00', 3398, '', NULL), (3399, 828, 'S/N 0518478/5', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2012-07-19', 3399, '7/19/2012', NULL), (3400, 829, 'S/N 0518478/5', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1% FS)', 'Range: 5 ton', '2013-04-19', 3400, '4/19/2013', NULL), (3401, 830, '', '', '', '0000-00-00', 3401, '', NULL), (3402, 831, 'S/N U02771', 'Chatillon DFS Hand Held Force Gauge T & C w/LC: 691202A (E-4) ', 'Range: Tension -1K / Compression 1K', '2010-01-13', 3402, '1/13/2010', NULL), (3403, 832, 'S/N 65110-01106', 'Forney FT-31-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-08-06', 3403, '8/6/2013', NULL), (3404, 833, 'S/N GB0408251', 'Hydro Tile Pipe Tester Hydro D CS-100-2 with 3 ram (E-4 & C497)', 'Range: 10K to 400K ', '2013-08-05', 3404, '8/5/2013', NULL), (3405, 834, 'S/N 72110', 'Forney FT-40-LD Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-09-12', 3405, '9/12/2013', NULL), (3406, 835, 'S/N LP925 ID#G1429', 'Geotac LVDT (D6027)', 'Range: 3 inches', '2013-09-23', 3406, '9/23/2013', NULL), (3407, 836, 'S/N LP-922 ID#G1420', 'Geotac LVDT (D6027)', 'Range: 3 Inches', '2012-08-14', 3407, '8/14/2012', NULL), (3408, 837, '', '', '', '0000-00-00', 3408, '', NULL), (3409, 838, '', '', '', '0000-00-00', 3409, '', NULL), (3410, 839, '', '', '', '0000-00-00', 3410, '', NULL), (3411, 840, '', '', '', '0000-00-00', 3411, '', NULL), (3412, 841, 'S/N 2655-070791-150', 'Admet Expert Frame w/ M test windows (E-4)', ' ', '2013-04-29', 3412, '4/29/2013', NULL), (3413, 842, 'S/N 04150', ' w/Spare Gauge (E-4)', 'Range: 30K to 300K', '2013-08-28', 3413, '8/28/2013', NULL), (3414, 843, 'S/N 105', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 1K ', '2013-08-28', 3414, '8/28/2013', NULL), (3415, 844, '', '', '', '0000-00-00', 3415, '', NULL), (3416, 845, '', '', '', '0000-00-00', 3416, '', NULL), (3417, 846, 'S/N 113', 'Durham Geo CM-415 Digital Compression Machine (E-4)', 'Range: 40K / 500K', '2012-10-23', 3417, '10/23/2012', NULL), (3418, 847, 'S/N 324622', 'SPX Post Tension Jack (E-4 & PCI)', 'Range: 35K (8,000 psi)', '2013-08-28', 3418, '8/28/2013', NULL), (3419, 848, '', '', '', '0000-00-00', 3419, '', NULL), (3420, 849, '', '', '', '0000-00-00', 3420, '', NULL), (3421, 850, '', '', '', '0000-00-00', 3421, '', NULL), (3422, 851, '', '', '', '0000-00-00', 3422, '', NULL), (3423, 852, 'S/N 2114266653', 'Ohas IP15KS Scale (E-898)', 'Range: 1,000 Grams', '2012-08-17', 3423, '8/17/2012', NULL), (3424, 853, 'S/N 718114.2', ' w/ Gauge', 'Range: 5,000 psi (30 Ton)', '2013-09-26', 3424, '9/26/2013', NULL), (3425, 854, 'S/N 302', ' w/Gauge:', 'Range: 8,000 PSI (120,000 lbs)', '2013-06-20', 3425, '6/20/2013', NULL), (3426, 855, 'S/N 001', ' w/ Gauge ', 'Range: 60 Ton (9,200 PSI)', '2012-08-09', 3426, '8/9/2012', NULL), (3427, 856, '', '', '', '0000-00-00', 3427, '', NULL), (3428, 857, '', '', '', '0000-00-00', 3428, '', NULL), (3429, 858, ' ', ' ', ' ', '0000-00-00', 3429, '', NULL), (3430, 859, 'S/N 23528', 'Soiltest Dial Indicator Mashall Press (D-6027)', 'Range: 1 inch', '2013-09-05', 3430, '9/5/2013', NULL), (3431, 860, 'S/N 1125', ' with Displacement (E-2309)', 'Range: 20 inches', '2013-09-04', 3431, '9/4/2013', NULL), (3432, 861, '', '', '', '0000-00-00', 3432, '', NULL), (3433, 862, '', '', '', '0000-00-00', 3433, '', NULL), (3434, 863, '', '', '', '0000-00-00', 3434, '', NULL), (3435, 864, '', '', '', '0000-00-00', 3435, '', NULL), (3436, 865, '', '', '', '0000-00-00', 3436, '', NULL), (3437, 866, '', '', '', '0000-00-00', 3437, '', NULL), (3438, 867, '', '', '', '0000-00-00', 3438, '', NULL), (3439, 868, '', '', '', '0000-00-00', 3439, '', NULL), (3440, 869, '', '', '', '0000-00-00', 3440, '', NULL), (3441, 870, 'S/N 210112', 'Humboldt Master Loader HM-3000 Frame (E-4)', '', '2013-04-09', 3441, '4/9/2013', NULL), (3442, 871, '', '', '', '0000-00-00', 3442, '', NULL), (3443, 872, '', '', '', '0000-00-00', 3443, '', NULL), (3444, 873, 'S/N 05067-060213', 'Forney FX-250F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-10-01', 3444, '10/1/2013', NULL), (3445, 874, '', '', '', '0000-00-00', 3445, '', NULL), (3446, 875, '', '', '', '0000-00-00', 3446, '', NULL), (3447, 876, '', '', '', '0000-00-00', 3447, '', NULL), (3448, 877, 'S/N 07051 ', 'Forney F-702F-TPILOT Digital Compression Machine (E-4)', 'Range: 7K to 700K Frame #1 CH 1', '2012-10-01', 3448, '10/1/2012', NULL), (3449, 878, 'S/N 0036', 'VSL Bond Tester (Detroit) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2009-10-28', 3449, '10/28/2009', NULL), (3450, 879, '', '', '', '0000-00-00', 3450, '', NULL), (3451, 880, '', '', '', '0000-00-00', 3451, '', NULL), (3452, 881, '', '', '', '0000-00-00', 3452, '', NULL), (3453, 882, 'S/N 02018880', 'Eilon Engineering Ron-2150 crane scale', '', '2012-09-18', 3453, '9/18/2012', NULL), (3454, 883, '', '', '', '0000-00-00', 3454, '', NULL), (3455, 884, '', '', '', '0000-00-00', 3455, '', NULL), (3456, 885, '', '', '', '0000-00-00', 3456, '', NULL), (3457, 886, '', '', '', '0000-00-00', 3457, '', NULL), (3458, 887, '', '', '', '0000-00-00', 3458, '', NULL), (3459, 888, 'S/N 2187435', 'Mark 10 ESM301 Speed Control (E2658-11)', 'Range: 1 in/min ', '2012-01-30', 3459, '1/30/2012', NULL), (3460, 889, 'S/N 76189', 'Forney FT-21 Compression Machine (E-4 & 2%)', 'Range: 250K', '2013-07-17', 3460, '7/17/2013', NULL), (3461, 890, '', '', '', '0000-00-00', 3461, '', NULL), (3462, 891, '', ' w/ load cell ', '', '0000-00-00', 3462, '', NULL), (3463, 892, 'S/N 005365', 'Hilti Pull Tester Model (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2009-03-20', 3463, '3/20/2009', NULL), (3464, 893, '', '', '', '0000-00-00', 3464, '', NULL), (3465, 894, 'S/N 15268 ', 'Hamilton Forms P-4500-950 Prestress Jack (E-4 & PCI)', 'Range: 5.5K / 50K', '2012-01-23', 3465, '1/23/2012', NULL), (3466, 895, 'S/N 080216', ' w/ Low Range LC 1 (E-4)', 'Range: 300 lbs to 30K', '2012-11-07', 3466, '11/7/2012', NULL), (3467, 896, '', '', '', '0000-00-00', 3467, '', NULL), (3468, 897, '', '', '', '0000-00-00', 3468, '', NULL), (3469, 898, '', ' w/ Cylinder Frame Channel #0 (E-4)', 'Range: 2.5K to 250K ', '2012-11-26', 3469, '11/26/2012', NULL), (3470, 899, '', '', '', '0000-00-00', 3470, '', NULL), (3471, 900, '', '', '', '0000-00-00', 3471, '', NULL), (3472, 901, 'S/N 120629015', 'Intelligent Weighing Techonology IncScale Model # PC60001(E-898)', 'Range: 6,000 Grams', '2012-12-05', 3472, '12/5/2012', NULL), (3473, 902, '', '', '', '0000-00-00', 3473, '', NULL), (3474, 903, 'S/N 091200000050', 'Soiltest 78-0900 Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2013-10-02', 3474, '10/2/2013', NULL), (3475, 904, 'S/N 2345', ' w/ Geo Comp 2\" Vertical LVDT (D-6027) ', 'Range: -1 inch to 1 inch (T&C)', '2010-10-06', 3475, '10/6/2010', NULL), (3476, 905, 'S/N 0610SBALH03003', 'Geo Comp Mdl. SBA-2-10KLB-I Load Cell Channel #1 ID# 65 2319', 'Range: 10K (E-4)', '2010-10-06', 3476, '10/6/2010', NULL), (3477, 906, 'S/N 6-20686', ' w/ McDaniels Gauge (E-4)', 'Range: 10,000 psi', '2013-10-10', 3477, '10/10/2013', NULL), (3478, 907, 'S/N 001', ' w/ Gauge ', 'Range: 120K (8,000 PSI)', '2010-11-11', 3478, '11/11/2010', NULL), (3479, 908, 'S/N 0385779/6', 'Ron 2501 Model S-3', 'Range: 6,000 lbs', '0000-00-00', 3479, '', NULL), (3480, 909, 'S/N 08042745', 'Eilon Engineering RON 2150 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 160K', '2013-08-07', 3480, '8/7/2013', NULL), (3481, 910, '', '', '', '0000-00-00', 3481, '', NULL), (3482, 911, '', '', '', '0000-00-00', 3482, '', NULL), (3483, 912, 'S/N 90062', 'Proceq N-34 Schmidt Hammer (C-805)', 'Range: 78 to 82', '2010-03-24', 3483, '3/24/2010', NULL), (3484, 913, '', '', '', '0000-00-00', 3484, '', NULL), (3485, 914, '', '', '', '0000-00-00', 3485, '', NULL), (3486, 915, 'S/N 3144 (ID#004120)', 'Satec Apex II EMF Digital Compression Machine (E-4)', '', '0000-00-00', 3486, '', NULL), (3487, 916, '', '', '', '0000-00-00', 3487, '', NULL), (3488, 917, '', '', '', '0000-00-00', 3488, '', NULL), (3489, 918, '', '', '', '0000-00-00', 3489, '', NULL), (3490, 919, 'S/N 1155-8-14040', 'ELE Single Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', '2013-01-12', 3490, '1/12/2013', NULL), (3491, 920, 'S/N E84558', ' w/Epsilon Mdl. 3542-0200-010-ST Extensometer (E-83)', 'Range: 0.1 in/in (GL 2 Inch)', '2013-07-23', 3491, '7/23/2013', NULL), (3492, 921, 'S/N 240 / 1312', 'BK Load Cell w/ Digital E-400 (E-4)', 'Range: 2K', '2012-12-17', 3492, '12/17/2012', NULL), (3493, 922, 'S/N 992234629', 'ELE Dial Indicator (D-6027)', 'Range: 1 Inch', '2012-12-17', 3493, '12/17/2012', NULL), (3494, 923, 'S/N 76031N', ' w/ Shear Force Load Cell Revere Model 9363-B10 (E-4)', 'Range: 1.5K', '2012-12-17', 3494, '12/17/2012', NULL), (3495, 924, '', '', '', '0000-00-00', 3495, '', NULL), (3496, 925, '', '', '', '0000-00-00', 3496, '', NULL), (3497, 926, 'S/N 0364216', 'Eilon Engineering RON 3025 S-3 Load Cell (ManSp & 0.1% FS)', 'Range: 6K ', '2013-04-26', 3497, '4/26/2013', NULL), (3498, 927, '', '', '', '0000-00-00', 3498, '', NULL), (3499, 928, '', '', '', '0000-00-00', 3499, '', NULL), (3500, 929, '', ' w/Load Cell (E-4)', 'Range: 500 lbs', '2013-01-07', 3500, '1/7/2013', NULL), (3501, 930, 'S/N G1284B', ' w/ Load Cell (E-4)', 'Range: 2K', '2013-01-09', 3501, '1/9/2013', NULL), (3502, 931, 'S/N', ' w/Displacement', 'Range: 3 inches', '2013-01-07', 3502, '1/7/2013', NULL), (3503, 932, 'S/N ID# G812', ' w/ Proving Ring (Only Do Force Reading)', 'Range:', '0000-00-00', 3503, '', NULL), (3504, 933, 'S/N 685957', ' w/ Load Cell (E-4) (ID# G1425)', 'Range: 2K', '2013-01-09', 3504, '1/9/2013', NULL), (3505, 934, '', '', '', '0000-00-00', 3505, '', NULL), (3506, 935, 'S/N 03/005', 'Geotest S2215A Direct Shear Machine (Frame) (E-4) ', '', '2013-01-23', 3506, '1/23/2013', NULL), (3507, 936, 'S/N C-2', 'Ploog Dial Indicator (D-6027)', 'Range: 0.5\"', '2013-01-24', 3507, '1/24/2013', NULL), (3508, 937, '', '', '', '0000-00-00', 3508, '', NULL), (3509, 938, '', '', '', '0000-00-00', 3509, '', NULL), (3510, 939, '', '', '', '0000-00-00', 3510, '', NULL), (3511, 940, 'S/N 1500DXR8001', 'Instron EXT-I3542RA2 Extensometer (ID # LabN21) (E-83)', 'Range: 0.00025 in to 0.025 in ', '2013-01-29', 3511, '1/29/2013', NULL), (3512, 941, 'S/N 03018297/10', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 50K', NULL, 3512, 'New', NULL), (3513, 942, 'S/N 01099', 'Forney F-40F-GB2 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-08-26', 3513, '8/26/2013', NULL), (3514, 943, '', '', '', '0000-00-00', 3514, '', NULL), (3515, 944, 'S/N 03018270/18', 'Eilon Engineering RON 2501 S-25 (ManSpecs 0.1 %FS)', 'Range: 5K to 50K (ID# 815-29-06-095)', '2013-05-06', 3515, '5/6/2013', NULL), (3516, 945, '', '', '', '0000-00-00', 3516, '', NULL), (3517, 946, 'S/N B50893', ' w/Shear Force Load Cell (E-4) (OOS)', 'Range: 50 lbs to 1.5 K', '2012-01-09', 3517, '1/9/2012', NULL), (3518, 947, 'S/N 755/359', 'Brainard-Kilman Pressure Transducer---Ch#6 (SOLD)', 'Cap: 15 psi to 150 psi (D-5720)', '2008-03-04', 3518, '3/4/2008', NULL), (3519, 948, 'S/N 1782', 'Wykeham Farrance Consolidometer Mdl. 24001 (ID # G219)', 'Range:', '0000-00-00', 3519, '', NULL), (3520, 949, '', ' w/ Speed Control (E2658-11)', 'Range: 2 in/min ', '2013-02-28', 3520, '2/28/2013', NULL), (3521, 950, '', '', '', '0000-00-00', 3521, '', NULL), (3522, 951, 'S/N 112', 'Soiltest Consolidation Dial Indicator Frame #1 (D-6027)', 'Range: 0.4 inch', NULL, 3522, 'New', NULL), (3523, 952, '', '', '', '0000-00-00', 3523, '', NULL), (3524, 953, 'S/N 23880', 'Soiltest CBR Single Proving Ring (E-4 & Mans Spec)', 'Range: 6K', '2012-03-07', 3524, '3/7/2012', NULL), (3525, 954, '', '', '', '0000-00-00', 3525, '', NULL), (3526, 955, 'S/N 16206', 'Skidmore Wilhelm Mdl. MS (E-4 & 2% ManSpecs)', 'Range: 90K', '2013-02-25', 3526, '2/25/2013', NULL), (3527, 956, '', '', '', '0000-00-00', 3527, '', NULL), (3528, 957, 'S/N 178460', 'Ampro Digital Caliper (Man Specs)', 'Range: 6\"', '2013-02-26', 3528, '2/26/2013', NULL), (3529, 958, 'S/N HSJ12-768', 'Hercules Prestress Jack (E-4 & 2% PCI Man Specs)', 'Range:3,000 lbs / 50,000 lbs', '2013-02-07', 3529, '2/7/2013', NULL), (3530, 959, '', '', '', '0000-00-00', 3530, '', NULL), (3531, 960, '', '', '', '0000-00-00', 3531, '', NULL), (3532, 961, 'S/N 261', 'Humboldt Beam Breaker (E-4 & Man Specs 2%)', 'Range: 15K', '2013-02-14', 3532, '2/14/2013', NULL), (3533, 962, 'S/N 2', 'USG Pressure Gauge (D-5720 & 2%)', 'Range: 300 psi', '2013-07-30', 3533, '7/30/2013', NULL), (3534, 963, 'S/N 070824697', ' w/dial indicator (ID# 0280) ', 'Range: 0.4 inch', '2013-07-30', 3534, '7/30/2013', NULL), (3535, 964, 'S/N B250-005', 'Enerpac PH80 Post Tension Jack (E-4 & PCI)', 'Range 10,000 psi', '1997-07-08', 3535, '7/8/1997', NULL), (3536, 965, '', '', '', '0000-00-00', 3536, '', NULL), (3537, 966, '', '', '', '0000-00-00', 3537, '', NULL), (3538, 967, 'S/N 003917', 'Hilti Pull Tester Model 59604/02/98 ( West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-01-28', 3538, '1/28/2013', NULL), (3539, 968, 'S/N 2012813', 'Eilon Engineering RON 2000 S20 Load Cell (Man Specs 0.1% FS)', 'Range: 20 Ton', NULL, 3539, 'New', NULL), (3540, 969, 'S/N 513417', 'RON 2000 Eilon Engineering (Man Specs 0.1 % FS)', 'Range: 5 Ton', '2013-02-21', 3540, '2/21/2013', NULL), (3541, 970, 'S/N 0809254/11', 'Eilon Engineering RON 2501 S-80 Electronic Load Meter', 'Range: 80 Ton (ManSp 0.1% FS)', '2013-02-08', 3541, '2/8/2013', NULL), (3542, 971, 'S/N 103', 'Soiltest LC3 Dial Indicator (Moved) (D-6027)', 'Range: 0.2 inch ', '2011-02-14', 3542, '2/14/2011', NULL), (3543, 972, 'S/N 988-1 (Moved)', 'Geotest Direct Shear S2213A w/ Rice Lake Load Cell S/N AC96030 ', 'Range: 500 lbs (Horizontal Force) (E-4)', '2011-02-08', 3543, '2/8/2011', NULL), (3544, 973, 'S/N 5078', ' Pine Instrument AFGB1A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-13', 3544, '3/13/2013', NULL), (3545, 974, 'S/N 5079', 'Pine Instruments AFGB1A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-12', 3545, '3/12/2013', NULL), (3546, 975, 'S/N 5074', 'Pine Instruments AFGB1A Gyratory Compactor & Calib. Kit', 'Range: (ASHT T344-12)', '2013-03-12', 3546, '3/12/2013', NULL), (3547, 976, 'S/N 1095', 'Pine Instruments AFG 1 A Gyratory Compactor (ASHTO T312)', 'Range:', '2013-03-18', 3547, '3/18/2013', NULL), (3548, 977, '', '', '', '0000-00-00', 3548, '', NULL), (3549, 978, '', '', '', '0000-00-00', 3549, '', NULL), (3550, 979, '', '', '', '0000-00-00', 3550, '', NULL), (3551, 980, '', '', '', '0000-00-00', 3551, '', NULL), (3552, 981, '', '', '', '0000-00-00', 3552, '', NULL), (3553, 982, '', '', '', '0000-00-00', 3553, '', NULL), (3554, 983, '', '', '', '0000-00-00', 3554, '', NULL), (3555, 984, '', '', '', '0000-00-00', 3555, '', NULL), (3556, 985, '', '', '', '0000-00-00', 3556, '', NULL), (3557, 986, '', '', '', '0000-00-00', 3557, '', NULL), (3558, 987, '', '', '', '0000-00-00', 3558, '', NULL), (3559, 988, '', '', '', '0000-00-00', 3559, '', NULL), (3560, 989, '', '', '', '0000-00-00', 3560, '', NULL), (3561, 990, 'S/N E44', 'Interlaken Test Frame (T&C) Series 3300', 'Range: 0.5 Kip/1 Kip/2.5 Kip/5 Kip', '2013-03-05', 3561, '3/5/2013', NULL), (3562, 991, '', '', '', '0000-00-00', 3562, '', NULL), (3563, 992, 'S/N73486(ID# Instron 5)', ' w/ Instron T & C Load Cell (E-4) ', 'Range: 100 lbs to 10K (50 Kn)', '2013-03-13', 3563, '3/13/2013', NULL), (3564, 993, 'S/N 296076', ' w/ Brainard Kilman Mdl. S-610 CBR Speed Control (Man Specs)', 'Range: 0.050 in/min', '2013-03-14', 3564, '3/14/2013', NULL), (3565, 994, 'S/N 84', 'HMA Lab Supply Mdl. 9210 Digital Manometer (Man Specs & 2%)', 'Range: 800 mm Hg ', '2013-03-14', 3565, '3/14/2013', NULL), (3566, 995, 'S/N 224', 'HMA KarolWarner 9210 Digital Manometer (Man Specs & 2%)', 'Range: 800 mm Hg', '2013-03-12', 3566, '3/12/2013', NULL), (3567, 996, 'S/N E90577', 'Forney Model TA-3543-E8 Extensometer (E-83)', 'Range: 8\" G.L. 25% 0.125in/in', '2013-03-13', 3567, '3/13/2013', NULL), (3568, 997, 'S/N 960', 'HMA Lab Supplies Mdl. 9210 Digital Manometer (Man Spec & 2%)', 'Range: 800 mmHg', '2013-03-12', 3568, '3/12/2013', NULL), (3569, 998, 'S/N 1140', 'HMA Lab Supply Mdl. 9210 Digital Manometer (Man Specs & 2%)', 'Range: 800 mm Hg ', '2013-03-13', 3569, '3/13/2013', NULL), (3570, 999, '', '', '', '0000-00-00', 3570, '', NULL), (3571, 1000, '', '', '', '0000-00-00', 3571, '', NULL), (3572, 1001, '', '', '', '0000-00-00', 3572, '', NULL), (3573, 1002, 'S/N 35495', ' w/ DC12 Digital (E-4)', 'Range: 600 lbs to 60K ', '2013-05-28', 3573, '5/28/2013', NULL), (3574, 1003, '', '', '', '0000-00-00', 3574, '', NULL), (3575, 1004, 'S/N 121', 'Brianard Kilman CBR S-610 Load Cell w/Frame S/N 1035 (E-4) ', 'Range: 5K ', '2013-04-01', 3575, '4/1/2013', NULL), (3576, 1005, '', '', '', '0000-00-00', 3576, '', NULL), (3577, 1006, 'S/N 84171', 'Hercules HSJ Prestress Jack (E-4 & PCI 2% ManSpecs)', 'Range: 4K / 45K', '2013-04-11', 3577, '4/11/2013', NULL), (3578, 1007, 'S/N 70102106', ' w/ Total Comp TS-5K Load Cell (E-4)', 'Range: 50 lbs to 5K ', '2012-05-03', 3578, '5/3/2012', NULL), (3579, 1008, 'S/N 6058 (ID#2063)', ' w/ Compression (E-4)', 'Range: 200 lbs to 20K', '2013-06-03', 3579, '6/3/2013', NULL), (3580, 1009, 'S/N 206963', 'Tinius Olsen Super L-SI Digital Universal Testiing Machine (E-4)', 'Range: 600 lbs to 60,000 lbs(ID#100.134)', '2013-06-26', 3580, '6/26/2013', NULL), (3581, 1010, 'S/N 89043', 'Forney FT-250F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-02', 3581, '4/2/2013', NULL), (3582, 1011, 'S/N DR7', 'Stress Con PRestress Jack (E-4 & PCI & 2%)', 'Range: 6K/50K', '0000-00-00', 3582, '', NULL), (3583, 1012, 'S/N 353429', 'OTC Model B Post Tension Jack (E-4 & PCI)', 'Range:35K (8,000 PSI)(High Range Only)', '2013-07-10', 3583, '7/10/2013', NULL), (3584, 1013, 'S/N 07264', 'Forney F-602F-TPILOT Digital Compression Machine (E-4)', 'Range: 6K to 600K (ID#BRKRM6)', '2013-07-10', 3584, '7/10/2013', NULL), (3585, 1014, 'S/N 401', ' w/Extra Gauge-Prepull Jack #4 (E-4 & PCI)', 'Range: 4K', '2013-07-15', 3585, '7/15/2013', NULL), (3586, 1015, 'S/N Jack B', 'SPX Powerteam Prestress - Jack B - Gauge #1 (E-4 & PCI)', 'Range: 4K / 35K', '2013-07-15', 3586, '7/15/2013', NULL), (3587, 1016, '', '', '', '0000-00-00', 3587, '', NULL), (3588, 1017, '', '', '', '0000-00-00', 3588, '', NULL), (3589, 1018, 'S/N 13258', 'Hamilton PU-P4500-950 Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K ', '2013-08-07', 3589, '8/7/2013', NULL), (3590, 1019, 'S/N 09161', 'Forney F-40EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-08-12', 3590, '8/12/2013', NULL), (3591, 1020, '', '', '', '0000-00-00', 3591, '', NULL), (3592, 1021, 'S/N Unknown', 'Simplex Post Tension Jack (#2) (E-4 & PCI)', 'Range: 120K (8,000 PSI) (6 Month Sch.)', '2013-02-19', 3592, '2/19/2013', NULL), (3593, 1022, '', '', '', '0000-00-00', 3593, '', NULL), (3594, 1023, 'S/N 805 (ID# 02-101)', ' w/MTS Mdl. 632.25E-20 Extensometer Channel #0 (E-83)', 'Range: 0.125 in/in (GL 2 Inch)', '2013-02-05', 3594, '2/5/2013', NULL), (3595, 1024, '', '', '', '0000-00-00', 3595, '', NULL), (3596, 1025, '', '', '', '0000-00-00', 3596, '', NULL), (3597, 1026, 'S/N 02-102', 'Hercules Prestress Jack (E-4 & PCI)', 'Range: 4K / 50K ', '2013-10-01', 3597, '10/1/2013', NULL), (3598, 1027, 'S/N 0015938-6HK', 'Ohaus MD CD-31Scale (E-898)', 'Range: 250 lbs ', '2011-12-12', 3598, '12/12/2011', NULL), (3599, 1028, 'S/N 08264', 'Forney FX-600-TPILOT Digital Compression Machine (E-4)', 'Range: 6K to 600K', '2013-01-03', 3599, '1/3/2013', NULL), (3600, 1029, '', '', '', '0000-00-00', 3600, '', NULL), (3601, 1030, 'S/N 78239', 'Forney FT-10 Compression Machine (E-4)', 'Range: 250,000 lbs', '2013-01-03', 3601, '1/3/2013', NULL), (3602, 1031, '', '', '', '0000-00-00', 3602, '', NULL), (3603, 1032, '', '', '', '0000-00-00', 3603, '', NULL), (3604, 1033, 'S/N 122403(ID#4171)', 'Eilon Engineering RON 2000 S-12.5 Load Cell (ManSp & 0.1% FS)', 'Range: 12.5 Ton ', '2012-11-14', 3604, '11/14/2012', NULL), (3605, 1034, '', '', '', '0000-00-00', 3605, '', NULL), (3606, 1035, '', '', '', '0000-00-00', 3606, '', NULL), (3607, 1036, 'S/N 228', 'Pine Instrument Mdl. 850 Asphalt Tester (E-4)', 'Range: 2.5K / 5K / 10K', '2013-04-03', 3607, '4/3/2013', NULL), (3608, 1037, 'S/N 960288', 'Boart Longyear Direct Shear Machine Vertical Force(E-4&Man Specs)', 'Range: 22 TSF', '2013-04-01', 3608, '4/1/2013', NULL), (3609, 1038, 'S/N 233/114 ', 'Brainard Kilman LVDT for Terra Load 233 (D-6027)', 'Range: 0.4 Inch ADU Channel 22', '2012-04-04', 3609, '4/4/2012', NULL), (3610, 1039, 'S/N 239/113', 'Brainard-Kilman LVDT Model E-310 (Channel #17)', 'Range: 0.4 Inches (D-6027)', '2012-04-04', 3610, '4/4/2012', NULL), (3611, 1040, '', '', '', '0000-00-00', 3611, '', NULL), (3612, 1041, 'S/N 932522', ' w/ Total Comp Load Cell Model TS-5K, Load Channel #1 (E-4)', 'Range: 5K', '2013-04-02', 3612, '4/2/2013', NULL), (3613, 1042, 'S/N G8540', 'Soiltest Mdl. AP 1000 Versa Tester (E-4 & 2% ManSpecs)', 'Range: 6K / 30K', '2013-04-02', 3613, '4/2/2013', NULL), (3614, 1043, 'S/N 102', 'Brainard Kilman CBR S-610 w/ Mdl. 5000-13 Load Cell (E-4)', 'Range: 5K', '2013-04-01', 3614, '4/1/2013', NULL), (3615, 1044, 'S/N 64250 (ID# 002536) ', 'Baldwin Satec 300K Universal Testing Machine (E-4)', 'Range: 12K / 60K / 150K /300K', '2013-04-02', 3615, '4/2/2013', NULL), (3616, 1045, 'S/N 92005', 'Forney FT-250F-02 Compression Machine (E-4)', 'Range: 30 K / 250 K(ID# 002896)', '2013-04-17', 3616, '4/17/2013', NULL), (3617, 1046, 'S/N 1107435', 'Humboldt mini Logger with LVDT S/N:254', 'Range: 2.0 inch (Channel 2)', '2012-06-26', 3617, '6/26/2012', NULL), (3618, 1047, 'S/N 412', 'Humbolt Beam Tester (E-4 & 2% ManSpecs)', 'Range: 15K', '2013-04-09', 3618, '4/9/2013', NULL), (3619, 1048, '', '', '', '0000-00-00', 3619, '', NULL), (3620, 1049, '', '', '', '0000-00-00', 3620, '', NULL), (3621, 1050, 'S/N 041409', 'Geotest C1710 Beam Breaker (E-4 & Man Specs)', 'Range: 15K (1,900 PSI)', '2013-04-09', 3621, '4/9/2013', NULL), (3622, 1051, 'S/N X7003', 'Rimac Spring Tester (E-4 & 2% ManSpecs)', 'Range: 350 lbs', '2013-04-08', 3622, '4/8/2013', NULL), (3623, 1052, '', '', '', '0000-00-00', 3623, '', NULL), (3624, 1053, 'S/N 30991', 'Proceq N-13 Hammer (C-805)', 'Range: 78 to 82', '2013-04-10', 3624, '4/10/2013', NULL), (3625, 1054, 'S/N 652977', 'With 2K Load Cell HM 23000.20 (E-4)', 'Range: 20 lbs to 2,000 lbs.', '2013-04-11', 3625, '4/11/2013', NULL), (3626, 1055, 'S/N E90435', 'Epsilon 3543-0800-100T-ST w/ LT-900-EP2 Extensometer (E-83)', 'Range: 0.125 in/in 1\" travel', '2013-04-10', 3626, '4/10/2013', NULL), (3627, 1056, 'S/N 74127', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K (MTC# 001000)', '2013-04-10', 3627, '4/10/2013', NULL), (3628, 1057, '', '', '', '0000-00-00', 3628, '', NULL), (3629, 1058, 'S/N Unknown ', 'Hydrotile Mdl. Hydro D Pipe Tester - Otek Digital (E-4 & C-497)', 'Range: 200K Gauge ', '2013-04-15', 3629, '4/15/2013', NULL), (3630, 1059, 'S/N 717-4', 'Surex Pressure Gauge (OOS) (D-5720)', 'Range: ', '2002-08-22', 3630, '8/22/2002', NULL), (3631, 1060, 'S/N RJ104', 'McDaniel Controls Inc Dial Gauge (D-5720)', 'Range: 100 psi', '2013-04-22', 3631, '4/22/2013', NULL), (3632, 1061, 'S/N TEN011', 'Detroit NST-CS-100-2 Universal Testing Machine (E-4)', 'Range: 50 lbs to 1,800 lbs LC: CH#1', '2013-04-25', 3632, '4/25/2013', NULL), (3633, 1062, '', '', '', '0000-00-00', 3633, '', NULL), (3634, 1063, 'S/N 57-B', 'McDaniel Controls Pressure Gauge (D-5720)', 'Range: 2,000 psi', '2005-04-29', 3634, '4/29/2005', NULL), (3635, 1064, 'S/N Unknown', 'Boart Longyear Dial Indicator (D-6027)', 'Range: 2 inches', '2005-03-31', 3635, '3/31/2005', NULL), (3636, 1065, 'Core', '', '', '0000-00-00', 3636, '', NULL), (3637, 1066, 'S/N W43235', 'Transducer', 'Range: 9,000 lbs', NULL, 3637, 'new', NULL), (3638, 1067, 'S/N 865', 'Boart Longyear E-124 Transducer-Ch4 (D-5720)', 'Cap: 150 psi', '2005-06-16', 3638, '6/16/2005', NULL), (3639, 1068, '', '', '', '0000-00-00', 3639, '', NULL), (3640, 1069, '', '', '', '0000-00-00', 3640, '', NULL), (3641, 1070, '', '', '', '0000-00-00', 3641, '', NULL), (3642, 1071, 'S/N 4471', 'Soiltest U-130 Double Proving Ring (In-House)', 'Cap: 500#', '1996-05-13', 3642, '5/13/1996', NULL), (3643, 1072, '', '', '', '0000-00-00', 3643, '', NULL), (3644, 1073, '', '', '', '0000-00-00', 3644, '', NULL), (3645, 1074, '', '', '', '0000-00-00', 3645, '', NULL), (3646, 1075, '', '', '', '0000-00-00', 3646, '', NULL), (3647, 1076, 'S/N 470', 'Ametek Pull Tester Model L-30 (E-4)', 'Range: 30 lb.', '1998-04-28', 3647, '4/28/1998', NULL), (3648, 1077, 'S/N 17245', 'Chatillon Force Gauge DFI-Digital 500 T & C (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 3648, '4/28/1998', NULL), (3649, 1078, '', '', '', '0000-00-00', 3649, '', NULL), (3650, 1079, '', '', '', '0000-00-00', 3650, '', NULL), (3651, 1080, '', '', '', '0000-00-00', 3651, '', NULL), (3652, 1081, '', '', '', '0000-00-00', 3652, '', NULL), (3653, 1082, '', '', '', '0000-00-00', 3653, '', NULL), (3654, 1083, 'S/N 54212', 'Tinius Olsen Super L Compression Machine (E-4)', 'Range: 1200 lb/12K/60K', NULL, 3654, 'New', NULL), (3655, 1084, '', 'Pine Asphalt Tester', '', '0000-00-00', 3655, '', NULL), (3656, 1085, '', '', '', '0000-00-00', 3656, '', NULL), (3657, 1086, 'S/N Unknown', 'Testmark CM2500 (DC16) Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2004-10-27', 3657, '10/27/2004', NULL), (3658, 1087, 'S/N CN-970', 'Soiltest Single Proving Ring (E-4& Man Specs)', 'Cap: 250 lbs. (In-house)', '2002-05-02', 3658, '5/2/2002', NULL), (3659, 1088, '', '', '', '0000-00-00', 3659, '', NULL), (3660, 1089, '', '', '', '0000-00-00', 3660, '', NULL), (3661, 1090, 'S/N 300', 'Lane Concrete Cylinder Compression Machine- Out of Service', 'Range 200K', '1999-03-24', 3661, '3/24/1999', NULL), (3662, 1091, 'S/N 56057', 'Reinhart Asphalt Press Model 76', 'Range 2.5/5/10K', '1996-05-08', 3662, '5/8/1996', NULL), (3663, 1092, '', '', '', '0000-00-00', 3663, '', NULL), (3664, 1093, '', 'Enerpac Post Tension Jack RCH 1003 (in house)', '', '1995-04-03', 3664, '4/3/1995', NULL), (3665, 1094, '', '', '', '0000-00-00', 3665, '', NULL), (3666, 1095, '', '', '', '0000-00-00', 3666, '', NULL), (3667, 1096, '', '', '', '0000-00-00', 3667, '', NULL), (3668, 1097, '', '', '', '0000-00-00', 3668, '', NULL), (3669, 1098, '', '', '', '0000-00-00', 3669, '', NULL), (3670, 1099, 'S/N 90104013', 'Com-Ten Digital Test System--Model 956MRD3000', 'Range: 100 lbs. (E-4)', '2001-05-03', 3670, '5/3/2001', NULL), (3671, 1100, 'S/N 1', 'Simms Prestress Jack (E-4&PCI)', 'Range 35K', '2000-10-25', 3671, '10/25/2000', NULL), (3672, 1101, '', '', '', '0000-00-00', 3672, '', NULL), (3673, 1102, '', '', '', '0000-00-00', 3673, '', NULL), (3674, 1103, '', '', '', '0000-00-00', 3674, '', NULL), (3675, 1104, 'S/N 95004', ' with Digital Retrofit CS-100-2', '', '0000-00-00', 3675, '', NULL), (3676, 1105, '', '', '', '0000-00-00', 3676, '', NULL), (3677, 1106, 'S/N 23979', 'Soiltest Proving Ring', 'Cap: 6000#', '1997-04-28', 3677, '4/28/1997', NULL), (3678, 1107, '', '', '', '0000-00-00', 3678, '', NULL), (3679, 1108, '', '', '', '0000-00-00', 3679, '', NULL), (3680, 1109, '', '', '', '0000-00-00', 3680, '', NULL), (3681, 1110, '', '', '', '0000-00-00', 3681, '', NULL), (3682, 1111, '', '', '', '0000-00-00', 3682, '', NULL), (3683, 1112, '', '', '', '0000-00-00', 3683, '', NULL), (3684, 1113, '', '', '', '0000-00-00', 3684, '', NULL), (3685, 1114, 'S/N 98035', 'Forney F-250F-01 Compression Machine (E-4)', 'Range: 25K to 250K', '2002-05-21', 3685, '5/21/2002', NULL), (3686, 1115, 'S/N 87047', 'Forney QC-410-02 Compression Machine (E-4)', 'Range: 400K', NULL, 3686, 'New', NULL), (3687, 1116, 'S/N 1292', 'Satec UTM Digital Machine (201-T1001) (E-4)', 'Range 1.2/6/24/120K', '1998-10-06', 3687, '10/6/1998', NULL), (3688, 1117, 'S/N 1402', 'Brainard Kilman E311 LVDT (D-6027)', 'Range: 1 Inch ', '2007-04-04', 3688, '4/4/2007', NULL), (3689, 1118, '', '', '', '0000-00-00', 3689, '', NULL), (3690, 1119, 'VS-2021', 'O\'Ring Greenlee Pump Seal ', '', '0000-00-00', 3690, '', NULL), (3691, 1120, '', '', '', '0000-00-00', 3691, '', NULL), (3692, 1121, 'S/N LVDT 1', 'with FS-2000 LVDT 1 Frame 875 / ID # 25960001 (ISO-9513) ', 'Range: 2 Inches', '2007-05-07', 3692, '5/7/2007', NULL), (3693, 1122, 'S/N 55972', ' w/Compression Load Cell 2519-107 (E-4)', 'Range: 10 lbs to 1,124 lbs', '2008-04-23', 3693, '4/23/2008', NULL), (3694, 1123, '', '', '', '0000-00-00', 3694, '', NULL), (3695, 1124, '', 'Shear and Vertical Displacement', '', '0000-00-00', 3695, '', NULL), (3696, 1125, 'S/N 364', 'Pine Instrument Asphalt Tester Model 850', 'Range 2.5/5/10K', '1999-03-29', 3696, '3/29/1999', NULL), (3697, 1126, 'S/N 1035', 'Brainard Kilman CBR Tester S-610 w/Speed Control (Man Specs)', 'Speed Setting: 0.050 in/min', '2007-04-04', 3697, '4/4/2007', NULL), (3698, 1127, '', '', '', '0000-00-00', 3698, '', NULL), (3699, 1128, '', '', '', '0000-00-00', 3699, '', NULL), (3700, 1129, 'S/N DIR-0403111', ' D', '', '0000-00-00', 3700, '', NULL), (3701, 1130, '', '', '', '0000-00-00', 3701, '', NULL), (3702, 1131, 'S/N 61009', 'Forney FT-40 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2007-04-18', 3702, '4/18/2007', NULL), (3703, 1132, 'S/N 00258', 'Data Instruments Pressure Transducer-Model AB/HP (D-5720)', 'Cap: 0-100 psi (OOS)', '2003-04-30', 3703, '4/30/2003', NULL), (3704, 1133, '', '', '', '0000-00-00', 3704, '', NULL), (3705, 1134, 'S/N 06355226AF', 'Ohaus Scale Mdl. ES5OR ', 'Range: 110 lbs', '2007-05-01', 3705, '5/1/2007', NULL), (3706, 1135, '', '', '', '0000-00-00', 3706, '', NULL), (3707, 1136, '', '', '', '0000-00-00', 3707, '', NULL), (3708, 1137, '', '', '', '0000-00-00', 3708, '', NULL), (3709, 1138, '', '', '', '0000-00-00', 3709, '', NULL), (3710, 1139, '', '', '', '0000-00-00', 3710, '', NULL), (3711, 1140, '', '', '', '0000-00-00', 3711, '', NULL), (3712, 1141, '', '', '', '0000-00-00', 3712, '', NULL), (3713, 1142, '', ' w/ Gauge #1 & #2 ', 'Range: 50 K / 300 K', '2012-08-09', 3713, '8/9/2012', NULL), (3714, 1143, 'S/N 2897', 'Humboldt Proving Ring H-4454', 'Range: 10,000 lbs', '2013-08-05', 3714, '8/5/2013', NULL), (3715, 1144, 'S/N 400HVL-1037', ' w/ Extra Load Cell S/N 10550 (E-4)', 'Range: 120 lbs / 400 lbs / 2K / 4K ', '2012-08-07', 3715, '8/7/2012', NULL), (3716, 1145, '', '', '', '0000-00-00', 3716, '', NULL), (3717, 1146, '', '', '', '0000-00-00', 3717, '', NULL), (3718, 1147, 'S/N 1', 'Karol Warner Permability Board---1 gauge Model 32 (D-5720)', 'Cap: 10 psi to 100 psi', '2013-08-06', 3718, '8/6/2013', NULL), (3719, 1148, 'S/N 1964', 'Martin Decker Model SW-8-60 Gauge (E-4 & C-497& 2%)', 'Range: 600 lbs to 6,000 lbs', '2013-08-06', 3719, '8/6/2013', NULL), (3720, 1149, 'S/N 05018919/10', 'Eilion Engineering RON 2501-S50 (Man Specs 0.1 FS%)', 'Range: 50 Ton', '2013-09-12', 3720, '9/12/2013', NULL), (3721, 1150, '', '', '', '0000-00-00', 3721, '', NULL), (3722, 1151, 'S/N 6011', 'Forney QC-125 Compression Machine with block platen(E-4 & 2%)', 'Range: 250K', '2013-08-13', 3722, '8/13/2013', NULL), (3723, 1152, '', '', '', '0000-00-00', 3723, '', NULL), (3724, 1153, 'S/N 0107AG29915', 'Stroms Holmens Mdl. 250/500 Spring Tester (E-4 & 2% Man Specs)', 'Range:5,000 Newtons', '2012-08-15', 3724, '8/15/2012', NULL), (3725, 1154, '', '', '', '0000-00-00', 3725, '', NULL), (3726, 1155, '', '', '', '0000-00-00', 3726, '', NULL), (3727, 1156, '', '', '', '0000-00-00', 3727, '', NULL), (3728, 1157, '', '', '', '0000-00-00', 3728, '', NULL), (3729, 1158, 'S/N 941', 'Rainhart Beam Tester Series 416 w/chart recorder (E-4 & 2%)', 'Range 12K', '2013-08-21', 3729, '8/21/2013', NULL), (3730, 1159, 'S/N 1356', 'Forney Mdl. NA-3 Type N Hammer (E-805)', 'Range: 78 to 82', '2013-08-21', 3730, '8/21/2013', NULL), (3731, 1160, '', '', '', '0000-00-00', 3731, '', NULL), (3732, 1161, 'S/N 26187', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 2K ', '2013-08-20', 3732, '8/20/2013', NULL), (3733, 1162, '', '', '', '0000-00-00', 3733, '', NULL), (3734, 1163, 'S/N 05064730', 'Eilon Engineering RON 2000 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 1K to 100K', '2007-08-24', 3734, '8/24/2007', NULL), (3735, 1164, '', '', '', '0000-00-00', 3735, '', NULL), (3736, 1165, '', '', '', '0000-00-00', 3736, '', NULL), (3737, 1166, '', '', '', '0000-00-00', 3737, '', NULL), (3738, 1167, 'S/N #1', 'Enerpac RCS 1002 Jack', 'Range: 5K psi', '2006-08-07', 3738, '8/7/2006', NULL), (3739, 1168, '', '', '', '0000-00-00', 3739, '', NULL), (3740, 1169, '', '', '', '0000-00-00', 3740, '', NULL), (3741, 1170, '', '', '', '0000-00-00', 3741, '', NULL), (3742, 1171, '', '', '', '0000-00-00', 3742, '', NULL), (3743, 1172, '', '', '', '0000-00-00', 3743, '', NULL), (3744, 1173, 'S/N 29808054', 'Load Cell Model SSB5000', '', '2000-08-09', 3744, '8/9/2000', NULL), (3745, 1174, 'S/N 74126', 'Hydrotile PT Pipe Tester', 'Range 50/400K', '1995-08-19', 3745, '8/19/1995', NULL), (3746, 1175, '', '', '', '0000-00-00', 3746, '', NULL), (3747, 1176, '', '', '', '0000-00-00', 3747, '', NULL), (3748, 1177, 'S/N 93100-93004', 'Soiltest CT-710-CS100-1 Digital Compression Machine', 'Range 3K to 250K (E-4)', '2002-08-13', 3748, '8/13/2002', NULL), (3749, 1178, '', '', '', '0000-00-00', 3749, '', NULL), (3750, 1179, '', '', '', '0000-00-00', 3750, '', NULL), (3751, 1180, '', ' with Frame/Enrepac Gauge', '', '0000-00-00', 3751, '', NULL), (3752, 1181, 'S/N 88196', 'Hercules Prestress Jack (E-4 & PCI)', 'Range 5/35K', '1996-11-07', 3752, '11/7/1996', NULL), (3753, 1182, '', '', '', '0000-00-00', 3753, '', NULL), (3754, 1183, '', '', '', '0000-00-00', 3754, '', NULL), (3755, 1184, 'S/N', 'Forney Compression Machine', 'Range:', '0000-00-00', 3755, '', NULL), (3756, 1185, '', '', '', '0000-00-00', 3756, '', NULL), (3757, 1186, '', '', '', '0000-00-00', 3757, '', NULL), (3758, 1187, '', '***Machine is in East Syracuse, NY*** Not being used at this time.', '', '0000-00-00', 3758, '', NULL), (3759, 1188, '', '', '', '0000-00-00', 3759, '', NULL), (3760, 1189, '', '', '', '0000-00-00', 3760, '', NULL), (3761, 1190, '', '', '', '0000-00-00', 3761, '', NULL), (3762, 1191, 'S/N 261', 'Brainard-Kilman E-214 Load Cell on BK S-600 Triaxial Load Frame', 'Range 6000 lbs. (E-4)', '2000-08-29', 3762, '8/29/2000', NULL), (3763, 1192, '', '', '', '0000-00-00', 3763, '', NULL), (3764, 1193, 'S/N 76142', 'Forney FT-40-DR Compression Machine (MOVED) (E-4)', 'Range: 30K / 250K', '2003-07-17', 3764, '7/17/2003', NULL), (3765, 1194, 'S/N 805', 'Pine Instrument Asphalt Press Model AF850T', 'Range 2.5/5/10K', '1995-08-29', 3765, '8/29/1995', NULL), (3766, 1195, '', '', '', '0000-00-00', 3766, '', NULL), (3767, 1196, '', '', '', '0000-00-00', 3767, '', NULL), (3768, 1197, '', '', '', '0000-00-00', 3768, '', NULL), (3769, 1198, '', '', '', '0000-00-00', 3769, '', NULL), (3770, 1199, '', '', '', '0000-00-00', 3770, '', NULL), (3771, 1200, '', '', '', '0000-00-00', 3771, '', NULL), (3772, 1201, 'S/N 289', 'BK Panel--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 3772, '8/30/2006', NULL), (3773, 1202, 'S/N 154825', 'Proceq Model N-34 Hammer (C-805)', 'Range: 78 to 82', '2008-08-26', 3773, '8/26/2008', NULL), (3774, 1203, '', '', '', '0000-00-00', 3774, '', NULL), (3775, 1204, '', '', '', '0000-00-00', 3775, '', NULL), (3776, 1205, '', '', '', '0000-00-00', 3776, '', NULL), (3777, 1206, 'S/N 527', ' w/ Lebow Control Readout Mdl 7530 ID# 359914', '', '0000-00-00', 3777, '', NULL), (3778, 1207, '', '', '', '0000-00-00', 3778, '', NULL), (3779, 1208, 'S/N 004', 'Ploog Engineering Dial Indicator (OOS) (D-6027)', 'Range: 1\"', '2004-03-01', 3779, '3/1/2004', NULL), (3780, 1209, '', '', '', '0000-00-00', 3780, '', NULL), (3781, 1210, '', '', '', '0000-00-00', 3781, '', NULL), (3782, 1211, 'S/N 861712-01', '3D Instrument / Analog P/N 25544-32B1SAB 0.25% Accuracy', 'Range: 200 PSI to 2,000 PSIG', '2007-08-10', 3782, '8/10/2007', NULL), (3783, 1212, 'S/N 96129', 'Forney F-250M-01 Compression Machine (E-4)', 'Range: 250K', '2010-08-18', 3783, '8/18/2010', NULL), (3784, 1213, '', '', '', '0000-00-00', 3784, '', NULL), (3785, 1214, 'S/N 220', 'Karol Warner Mdl. 500 RT Single Proving Ring T & C ', 'Cap: 500 lbs (E-4 & Man Specs)', '2012-12-12', 3785, '12/12/2012', NULL), (3786, 1215, '', '', '', '0000-00-00', 3786, '', NULL), (3787, 1216, 'S/N DI01', 'WFI Dial Indicator (D-6027)', 'Range: 0.5 inches', '2012-12-12', 3787, '12/12/2012', NULL), (3788, 1217, '', '', '', '0000-00-00', 3788, '', NULL), (3789, 1218, 'S/N 0253442', 'Eilon Engineering Ron Model 2125 S-2 Load Cell (ManSp & 0.1% FS)', 'Range: 4K', '2006-12-04', 3789, '12/4/2006', NULL), (3790, 1219, '', '', '', '0000-00-00', 3790, '', NULL), (3791, 1220, 'S/N 0025736396', 'ELE Displacement Indicator', 'Range: 1 Inch', NULL, 3791, 'New', NULL), (3792, 1221, 'S/N 103077A', 'Lebow Load Cell Mdl. 3143 (E-4)', 'Range: 2K', '2006-12-05', 3792, '12/5/2006', NULL), (3793, 1222, '', '', '', '0000-00-00', 3793, '', NULL), (3794, 1223, '', '', 'MACHINE MOVED TO SIMPSONVILLE', '0000-00-00', 3794, '', NULL), (3795, 1224, '', '', '', '0000-00-00', 3795, '', NULL), (3796, 1225, '', '', '', '0000-00-00', 3796, '', NULL), (3797, 1226, '', '', '', '0000-00-00', 3797, '', NULL), (3798, 1227, '', 'MAV Pruftechnik', '', '0000-00-00', 3798, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (3799, 1228, '', 'Including 2 KN Proving Ring with dial indicator and LVDT', 'connected to the ADU display', '0000-00-00', 3799, '', NULL), (3800, 1229, '', '', '', '0000-00-00', 3800, '', NULL), (3801, 1230, '', ' MACHINE IN LOUISVILLE, KY---NOT IN USE', ' PLANT CLOSED.', '0000-00-00', 3801, '', NULL), (3802, 1231, 'S/N 1512', 'Pine Instrument Single Proving Ring', 'Cap: 10,000 lbs', '2000-05-19', 3802, '5/19/2000', NULL), (3803, 1232, 'S/N 991124016', 'Conbel Dial Indicator (D-6027) (OUT OF SERVICE)', 'Range: 0.5 inch', '2004-12-10', 3803, '12/10/2004', NULL), (3804, 1233, '', '', '', '0000-00-00', 3804, '', NULL), (3805, 1234, '', '', '', '0000-00-00', 3805, '', NULL), (3806, 1235, '', '', '', '0000-00-00', 3806, '', NULL), (3807, 1236, '', '', '', '0000-00-00', 3807, '', NULL), (3808, 1237, '', '', '', '0000-00-00', 3808, '', NULL), (3809, 1238, '', '', '', '0000-00-00', 3809, '', NULL), (3810, 1239, '', 'Plus Shipping', '', '0000-00-00', 3810, '', NULL), (3811, 1240, '', '', '', '0000-00-00', 3811, '', NULL), (3812, 1241, '', '', '', '0000-00-00', 3812, '', NULL), (3813, 1242, 'S/N BLUE', 'Hayes Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K', '2012-12-10', 3813, '12/10/2012', NULL), (3814, 1243, 'S/N 2604', 'Pine Instruments Test Kit Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-12-14', 3814, '12/14/2012', NULL), (3815, 1244, 'S/N A-3792-C', 'Enerpac Post Tension Jack w/Ram RT508 (E-4 & PCI)', 'Range: 4K to 33,800 lbs', '2012-12-11', 3815, '12/11/2012', NULL), (3816, 1245, '', '', '', '0000-00-00', 3816, '', NULL), (3817, 1246, 'S/N 8091230', 'Brainard Kilman C-130 with E-400 Digital', 'Range 325K', '1998-01-15', 3817, '1/15/1998', NULL), (3818, 1247, '', '', '', '0000-00-00', 3818, '', NULL), (3819, 1248, '', '', '', '0000-00-00', 3819, '', NULL), (3820, 1249, '', '', '', '0000-00-00', 3820, '', NULL), (3821, 1250, '', '', '', '0000-00-00', 3821, '', NULL), (3822, 1251, '', ' w/ 2Gauges', 'Range: 30K / 300K', '2012-12-13', 3822, '12/13/2012', NULL), (3823, 1252, '', '', '', '0000-00-00', 3823, '', NULL), (3824, 1253, '', '', '', '0000-00-00', 3824, '', NULL), (3825, 1254, 'S/N MG1179', 'Geo Jac LVDT mm Measurements Model HS10 Ch #3 ID #3 (D-6027)', 'Range: 0.4 Inches ', '2012-12-12', 3825, '12/12/2012', NULL), (3826, 1255, '', '', '', '0000-00-00', 3826, '', NULL), (3827, 1256, 'S/N ECA-688-01-219', 'Powerteam SPX Post Tension Jack (E-4 & PCI)', 'Cap: 30 K ', '2005-12-09', 3827, '12/9/2005', NULL), (3828, 1257, 'S/N 05219', ' w/Beam Frame (E-4)', 'Range: 300 lbs to 30K', '2007-12-10', 3828, '12/10/2007', NULL), (3829, 1258, '', '', '', '0000-00-00', 3829, '', NULL), (3830, 1259, '', '', '', '0000-00-00', 3830, '', NULL), (3831, 1260, '', '', '', '0000-00-00', 3831, '', NULL), (3832, 1261, '', '', '', '0000-00-00', 3832, '', NULL), (3833, 1262, 'S/N Unknown', 'Powerteam Post Tension Jack (E-4)', 'Cap: 35K', '2007-05-16', 3833, '5/16/2007', NULL), (3834, 1263, 'S/N 99024', 'Forney F-400F-F96 Compression Machine (MOVED) (E-4)', 'Range: 4K to 400K', '2006-12-06', 3834, '12/6/2006', NULL), (3835, 1264, 'S/N 0507059', 'Gilson Model CZ50E-CS100-2A Digital Compression Machine (E-4)', 'Range: 2K to 250K', '2005-08-23', 3835, '8/23/2005', NULL), (3836, 1265, 'S/N 03223', 'Forney FX-250-DR-2001 Digital Compression Machine (E-4)', 'Range: 300K', NULL, 3836, 'New', NULL), (3837, 1266, '', '', '', '0000-00-00', 3837, '', NULL), (3838, 1267, '', '', '', '0000-00-00', 3838, '', NULL), (3839, 1268, '', 'Gauge (Not being Used)', 'Range: 75K / 400K', '0000-00-00', 3839, '', NULL), (3840, 1269, '', '', '', '0000-00-00', 3840, '', NULL), (3841, 1270, '', '', '', '0000-00-00', 3841, '', NULL), (3842, 1271, 'S/N 04204', 'Forney LA-270/TPILOT Digital Compression Machine (E-4) (Sold)', 'Range: 600 lbs to 30K (Beam Frame)', '2010-05-21', 3842, '5/21/2010', NULL), (3843, 1272, '', '', '', '0000-00-00', 3843, '', NULL), (3844, 1273, '', ' (A 1965 machine)', '', '0000-00-00', 3844, '', NULL), (3845, 1274, '', '', '', '0000-00-00', 3845, '', NULL), (3846, 1275, '', '', '', '0000-00-00', 3846, '', NULL), (3847, 1276, 'S/N 17806', 'Testmark CM-500P-D Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-02-06', 3847, '2/6/2013', NULL), (3848, 1277, '', '', '', '0000-00-00', 3848, '', NULL), (3849, 1278, 'S/N 62018', 'Forney FT-20 Compression Machine (Every Other Year) (E-4)', 'Range: 25K / 250K (High Range Only)', '2013-02-05', 3849, '2/5/2013', NULL), (3850, 1279, 'S/N 3499', ' w/ Extra Gauge ', 'Range: 250K', '2013-02-07', 3850, '2/7/2013', NULL), (3851, 1280, '', '', '', '0000-00-00', 3851, '', NULL), (3852, 1281, '', '', '', '0000-00-00', 3852, '', NULL), (3853, 1282, '', '', '', '0000-00-00', 3853, '', NULL), (3854, 1283, '', '', '', '0000-00-00', 3854, '', NULL), (3855, 1284, 'S/N D6294', 'ELE Tri-Flex 2 K-755 Panel (D-5720)', 'Range: 150 PSI', '2013-02-06', 3855, '2/6/2013', NULL), (3856, 1285, 'S/N 202', 'Humboldt H4-M-N Beambreaker (E-4 & 2%)', 'Range: 15K', '2013-02-13', 3856, '2/13/2013', NULL), (3857, 1286, '', '', '', '0000-00-00', 3857, '', NULL), (3858, 1287, '', '', '', '0000-00-00', 3858, '', NULL), (3859, 1288, 'S/N 281800', 'Artech 20210-2K Load Cell (E-4)', 'Range: 200 lbs to 2K', '2013-02-12', 3859, '2/12/2013', NULL), (3860, 1289, 'S/N 00478', 'Durham Geo S-450 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 22 TSF', '2013-02-12', 3860, '2/12/2013', NULL), (3861, 1290, '', '', '', '0000-00-00', 3861, '', NULL), (3862, 1291, 'S/N 310', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 15K (ID# 208166)', '2013-02-12', 3862, '2/12/2013', NULL), (3863, 1292, '', '', '', '0000-00-00', 3863, '', NULL), (3864, 1293, '', '', '', '0000-00-00', 3864, '', NULL), (3865, 1294, 'S/N 980300 (ID# 0208)', 'Karol Warner Direct Shear - Vertical Force', 'Range: 1/8 TSF to 16 TSF', '2013-02-12', 3865, '2/12/2013', NULL), (3866, 1295, '', '', '', '0000-00-00', 3866, '', NULL), (3867, 1296, '', '', '', '0000-00-00', 3867, '', NULL), (3868, 1297, '', '', '', '0000-00-00', 3868, '', NULL), (3869, 1298, '', '', '', '0000-00-00', 3869, '', NULL), (3870, 1299, '', '', '', '0000-00-00', 3870, '', NULL), (3871, 1300, 'S/N 1102', 'Pine Instrument Model AF-850-T Asphalt Tester (E-4 & Man Specs)', 'Range: 11Kn / 22 Kn / 44 Kn ', '2013-02-19', 3871, '2/19/2013', NULL), (3872, 1301, 'S/N 956', 'Pine Instrument AF-850-T Asphalt Tester (E-4)', 'Range: 11Kn / 22 Kn / 44 Kn ', '2013-02-19', 3872, '2/19/2013', NULL), (3873, 1302, '', '', '', '0000-00-00', 3873, '', NULL), (3874, 1303, '', ' w/ Extra Gauge', 'Range: 350K ', '2013-02-20', 3874, '2/20/2013', NULL), (3875, 1304, '', '', '', '0000-00-00', 3875, '', NULL), (3876, 1305, 'S/N 1403', ' w/ Satec Deflectometer Model PD-1M (E-2309)', '', '0000-00-00', 3876, '', NULL), (3877, 1306, '', '', '', '0000-00-00', 3877, '', NULL), (3878, 1307, '', '', '', '0000-00-00', 3878, '', NULL), (3879, 1308, 'S/N 87073 ID# B8551', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K ', '2013-02-20', 3879, '2/20/2013', NULL), (3880, 1309, '', '', '', '0000-00-00', 3880, '', NULL), (3881, 1310, '', '', '', '0000-00-00', 3881, '', NULL), (3882, 1311, 'S/N 070103', 'Ram-Pac Hydraulic Load Cell Mdl. RC-5-LP-25S', 'Range: 5 Ton ', '2007-03-02', 3882, '3/2/2007', NULL), (3883, 1312, '', '', '', '0000-00-00', 3883, '', NULL), (3884, 1313, '', '', '', '0000-00-00', 3884, '', NULL), (3885, 1314, '', '', '', '0000-00-00', 3885, '', NULL), (3886, 1315, 'S/N 209', 'Humboldt H3030 Beam Breaker Portable (E-4)', 'Range: 15K', '2011-02-16', 3886, '2/16/2011', NULL), (3887, 1316, 'S/N 65202', 'Forney QC-150-DR Compression Machine (E-4)', 'Range 30K to 300K', '2000-04-06', 3887, '4/6/2000', NULL), (3888, 1317, 'S/N 00009', 'Forney F-250F-F96 Compression Machine (E-4)', 'Range: 3K to 250K', '2001-02-06', 3888, '2/6/2001', NULL), (3889, 1318, '', '', '', '0000-00-00', 3889, '', NULL), (3890, 1319, '', '', '', '0000-00-00', 3890, '', NULL), (3891, 1320, 'S/N ', 'Soiltest Model CT-377 Beam Testing Apparatus', 'Range: 10K', NULL, 3891, 'NEW', NULL), (3892, 1321, 'S/N 46159', 'NVST Asphalt Content Scale Model F85930', 'Range: 3000 Gram', '2003-03-03', 3892, '3/3/2003', NULL), (3893, 1322, 'S/N 1015', 'Satec Model 500 BTE Single Range Compression Machine (E-4)', 'Range 500K (E-4)', '1998-02-17', 3893, '2/17/1998', NULL), (3894, 1323, 'S/N 424', 'Pine Instrument Model 850 Asphalt Tester (E-4)', 'Range 2.5/5/10K', '1998-02-16', 3894, '2/16/1998', NULL), (3895, 1324, 'S/N 0225298A', ' with Displacement Card', '5\" Displacement, ID#25-MTS3DC01', '1998-02-25', 3895, '2/25/1998', NULL), (3896, 1325, 'S/N 167293', 'Extensometer-Model S-200-1B (E83-00)', 'Range: 1\" (20%)', '2005-03-30', 3896, '3/30/2005', NULL), (3897, 1326, '', '', '', '0000-00-00', 3897, '', NULL), (3898, 1327, 'S/N 263', 'Pine Instrument Asphalt Tester Model 850 (E4)', 'Range 2.5/5/10K', '2004-02-11', 3898, '2/11/2004', NULL), (3899, 1328, 'S/N 032', ' with 200# Load Cell (Tension) Model A30=41 (E-4) ', '', '1999-02-15', 3899, '2/15/1999', NULL), (3900, 1329, 'S/N 20102049', 'w/ DFM & 2,000 lb. Load Cell--Model SSB-2000', '', '0000-00-00', 3900, '', NULL), (3901, 1330, '', 'Testmark Digital', 'Range: 400K', '0000-00-00', 3901, '', NULL), (3902, 1331, '', '', '', '0000-00-00', 3902, '', NULL), (3903, 1332, '', '', '', '0000-00-00', 3903, '', NULL), (3904, 1333, '', '', '', '0000-00-00', 3904, '', NULL), (3905, 1334, '', '', '', '0000-00-00', 3905, '', NULL), (3906, 1335, '', '', '', '0000-00-00', 3906, '', NULL), (3907, 1336, '', '', '', '0000-00-00', 3907, '', NULL), (3908, 1337, '', '', '', '0000-00-00', 3908, '', NULL), (3909, 1338, '', '', '', '0000-00-00', 3909, '', NULL), (3910, 1339, '', '', '', '0000-00-00', 3910, '', NULL), (3911, 1340, '', '(MOVED MACHINE TO LEXINGTON, KY)', '', '0000-00-00', 3911, '', NULL), (3912, 1341, '', '', '', '0000-00-00', 3912, '', NULL), (3913, 1342, '', 'MOVED TO LIMA, OH', '', '0000-00-00', 3913, '', NULL), (3914, 1343, '', '', '', '0000-00-00', 3914, '', NULL), (3915, 1344, '', '', '', '0000-00-00', 3915, '', NULL), (3916, 1345, 'S/N LT35-02', 'Forney Compression Machine (E-4)', 'Range: 60K', NULL, 3916, 'New', NULL), (3917, 1346, 'S/N 89083', 'Forney QC-410-2D Digital Compression Machine (E-4)', 'Range: 400K', '0000-00-00', 3917, '', NULL), (3918, 1347, '', '', '', '0000-00-00', 3918, '', NULL), (3919, 1348, '', '', '', '0000-00-00', 3919, '', NULL), (3920, 1349, '', '', '', '0000-00-00', 3920, '', NULL), (3921, 1350, '', '', '', '0000-00-00', 3921, '', NULL), (3922, 1351, 'S/N 1836754', 'Dillon LW Compression Machine', 'Range 6K', '1996-03-25', 3922, '3/25/1996', NULL), (3923, 1352, '', '', '', '0000-00-00', 3923, '', NULL), (3924, 1353, '', '', '', '0000-00-00', 3924, '', NULL), (3925, 1354, '', '', '', '0000-00-00', 3925, '', NULL), (3926, 1355, 'S/N 20211023', ' w/ Load Cell MDL P5B 0040', '', '2006-02-07', 3926, '2/7/2006', NULL), (3927, 1356, 'S/N 9817 ', 'ELE CT-7251 w/Gauge Buster Digital (E-4)', 'Range: 2.5K to 250K ', '2007-06-19', 3927, '6/19/2007', NULL), (3928, 1357, '', '', '', '0000-00-00', 3928, '', NULL), (3929, 1358, '', '', '', '0000-00-00', 3929, '', NULL), (3930, 1359, '', '', '', '0000-00-00', 3930, '', NULL), (3931, 1360, 'S/N 157098', 'Tinius Olsen Series 5000 (E-4)', '', '2006-02-27', 3931, '2/27/2006', NULL), (3932, 1361, '', '', '', '0000-00-00', 3932, '', NULL), (3933, 1362, 'S/N 794', 'Geo Durham Transducer w/ Display (MOVED) (D-6027)', 'Range: 150 PSI ', '2007-02-12', 3933, '2/12/2007', NULL), (3934, 1363, '', '', '', '0000-00-00', 3934, '', NULL), (3935, 1364, '', '', '', '0000-00-00', 3935, '', NULL), (3936, 1365, 'S/N 87073', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2005-03-02', 3936, '3/2/2005', NULL), (3937, 1366, 'S/N E79727', ' w/Epsilon 3542-0200-020-ST Extensometer Channel #0 ( E-83)', 'Range: 0.2 in/in (2\" GL)', '2010-02-15', 3937, '2/15/2010', NULL), (3938, 1367, '', '', '', '0000-00-00', 3938, '', NULL), (3939, 1368, '', '', '', '0000-00-00', 3939, '', NULL), (3940, 1369, '', '', '', '0000-00-00', 3940, '', NULL), (3941, 1370, '', '', '', '0000-00-00', 3941, '', NULL), (3942, 1371, '', '', '', '0000-00-00', 3942, '', NULL), (3943, 1372, '', '', '', '0000-00-00', 3943, '', NULL), (3944, 1373, '', '', '', '0000-00-00', 3944, '', NULL), (3945, 1374, '', '', '', '0000-00-00', 3945, '', NULL), (3946, 1375, 'S/N 47500', 'Mettler PE2000 Scale (E-898)', 'Range: 200 Grams to 2,000 Grams', '2008-02-12', 3946, '2/12/2008', NULL), (3947, 1376, 'S/N 86053', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2008-02-26', 3947, '2/26/2008', NULL), (3948, 1377, 'S/N 1351', 'Rainhart Beam Tester Unit B (E-4) (MOVED)', 'Range: 12K', '2006-02-13', 3948, '2/13/2006', NULL), (3949, 1378, 'S/N 11504', 'Testmark CM-0100-DI Digital Compression Machine (E-4)', 'Range: 200 lbs to 100K (ID# M19849)', '2011-02-16', 3949, '2/16/2011', NULL), (3950, 1379, 'S/N 9616', 'ACCU-TEK CT-7250 Digital Compression Machine (E-4)', 'Range: 250K', '2007-02-19', 3950, '2/19/2007', NULL), (3951, 1380, '', '', '', '0000-00-00', 3951, '', NULL), (3952, 1381, '', '', '', '0000-00-00', 3952, '', NULL), (3953, 1382, '', '', '', '0000-00-00', 3953, '', NULL), (3954, 1383, '', '', '', '0000-00-00', 3954, '', NULL), (3955, 1384, '', '', '', '0000-00-00', 3955, '', NULL), (3956, 1385, '', '', '', '0000-00-00', 3956, '', NULL), (3957, 1386, 'S/N 0532433', 'Eilon Engineering RON 2125 S-0025 Load Cell (ManSp & 0.1% FS)', 'Cap: 1/4 Ton', '2004-07-30', 3957, '7/30/2004', NULL), (3958, 1387, 'S/N 50123583/1', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Ton', '2004-09-14', 3958, '9/14/2004', NULL), (3959, 1388, '', '', '', '0000-00-00', 3959, '', NULL), (3960, 1389, 'S/N 651', 'Humboldt H4554 Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2013-01-21', 3960, '1/21/2013', NULL), (3961, 1390, 'S/N 423-262298', ' w/ S Type Load Cell Model E 212 Shear Force T & C (E-4)', 'Range: 2,500 lbs w/ E-405 Digital', '2008-11-18', 3961, '11/18/2008', NULL), (3962, 1391, '', '', '', '0000-00-00', 3962, '', NULL), (3963, 1392, 'S/N 05013 /NC #7', 'CSI Model LC-40 Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K', '2013-01-15', 3963, '1/15/2013', NULL), (3964, 1393, 'S/N 632231', ' w/Shear Force Load Cell HM-2300.020 (E-4)', 'Range: 20 lbs to 2,000 lbs', '2013-01-08', 3964, '1/8/2013', NULL), (3965, 1394, '', '', '', '0000-00-00', 3965, '', NULL), (3966, 1395, 'S/N 96126', ' w/ XY Recorder Series 1000 (OOS) (E-4)', '', '2007-01-22', 3966, '1/22/2007', NULL), (3967, 1396, '', '', '', '0000-00-00', 3967, '', NULL), (3968, 1397, '', '', '', '0000-00-00', 3968, '', NULL), (3969, 1398, '', '', '', '0000-00-00', 3969, '', NULL), (3970, 1399, '', '', '', '0000-00-00', 3970, '', NULL), (3971, 1400, '', '', '', '0000-00-00', 3971, '', NULL), (3972, 1401, 'S/N 14604', 'Testmark CM-5000-D Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-01-16', 3972, '1/16/2013', NULL), (3973, 1402, '', '', '', '0000-00-00', 3973, '', NULL), (3974, 1403, 'S/N 12-H-1001', 'Baldwin Wiedemann 12-H Universal Testing Machine (E-4)', 'Range: 2.4K / 12K (ID# 2829) ', '2013-01-21', 3974, '1/21/2013', NULL), (3975, 1404, 'S/N 1203111', 'Forney LA-0352 Schmidt Hammer (C-805)', 'Range: 80 to 80', '2013-01-21', 3975, '1/21/2013', NULL), (3976, 1405, 'S/N AE44293', 'PGW Mdl. 753i Scale (ID# Q-2168) (E-898)', 'Range: 750 grams ', '2013-01-22', 3976, '1/22/2013', NULL), (3977, 1406, 'S/N AE40112706', 'Adam CPW Plus-75 Scale (ID#Q-2787) (E-898) ', 'Range: 1 lb to 165 lb ', '2013-01-24', 3977, '1/24/2013', NULL), (3978, 1407, 'S/N 113', 'w /500 Kip Load Cell T&C--Model 661-32', '', '0000-00-00', 3978, '', NULL), (3979, 1408, 'S/N 05054012/8', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2007-08-13', 3979, '8/13/2007', NULL), (3980, 1409, '', '', '', '0000-00-00', 3980, '', NULL), (3981, 1410, 'S/N 012554602/7', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSp & 0.1% FS)', 'Range: 125 Tons', '2006-01-05', 3981, '1/5/2006', NULL), (3982, 1411, '', '', '', '0000-00-00', 3982, '', NULL), (3983, 1412, 'S/N', 'Load Cell', 'Range: 100K', '0000-00-00', 3983, '', NULL), (3984, 1413, 'S/N 3081759', 'Eilon Engineering RON 2000 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 30 Ton', '2008-01-25', 3984, '1/25/2008', NULL), (3985, 1414, '', '', '', '0000-00-00', 3985, '', NULL), (3986, 1415, 'S/N 16625', 'Soiltest Double Proving Ring (E-4)', 'Range: 500 lbs.', '2001-01-15', 3986, '1/15/2001', NULL), (3987, 1416, '', '', '', '0000-00-00', 3987, '', NULL), (3988, 1417, 'S/N 200015', 'Riehle Mechanical Extensometer (E-83)', 'Range: 0.008 in/in', '2008-10-15', 3988, '10/15/2008', NULL), (3989, 1418, '', '', '', '0000-00-00', 3989, '', NULL), (3990, 1419, '', '', '', '0000-00-00', 3990, '', NULL), (3991, 1420, 'S/N 02096804/11', 'Eilon Engineering RON 2501 S-20 Load Cell (ManSpec & 0.1%FS)', 'Range: 40K', '2013-05-23', 3991, '5/23/2013', NULL), (3992, 1421, 'S/N 21729', 'Soiltest CBR Double Proving Ring (E-4 & Man Spec)', 'Cap: 1500 lbs.', '2004-01-12', 3992, '1/12/2004', NULL), (3993, 1422, '', '', '', '0000-00-00', 3993, '', NULL), (3994, 1423, 'S/N 137315', 'Tinius Olsen Super-L (E83-00)', '4 Ranges 1200/6000/24000/60000', '2002-01-31', 3994, '1/31/2002', NULL), (3995, 1424, 'S/N 10', 'Soiltest Swiss Hammer', '', '1996-01-24', 3995, '1/24/1996', NULL), (3996, 1425, 'S/N 66052', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', NULL, 3996, 'New', NULL), (3997, 1426, '', '', '', '0000-00-00', 3997, '', NULL), (3998, 1427, 'S/N 2371', 'Pull Spotwelder Detroit Test Machine PT', 'Range: 200 lbs to 2,000 lbs', '2003-08-26', 3998, '8/26/2003', NULL), (3999, 1428, '', '', '', '0000-00-00', 3999, '', NULL), (4000, 1429, '', 'Schmidt Hammer', '', '1995-12-28', 4000, '12/28/1995', NULL), (4001, 1430, '', '', '', '0000-00-00', 4001, '', NULL), (4002, 1431, '', '', '', '0000-00-00', 4002, '', NULL), (4003, 1432, '', '', '', '0000-00-00', 4003, '', NULL), (4004, 1433, 'S/N 41', 'Extra Gauge - Prepull with Jack #3(E-4 & PCI) OUT OF SERVICE ', 'Range 2/3/4K-Gauges #41&5', '2005-08-02', 4004, '8/2/2005', NULL), (4005, 1434, 'S/N 861117B', 'Strainsense Load Cell B (E-4& PCI) OUT OF SERVICE', 'Range: 5K/50K', '2004-02-02', 4005, '2/2/2004', NULL), (4006, 1435, '', '', '', '0000-00-00', 4006, '', NULL), (4007, 1436, '', '', '', '0000-00-00', 4007, '', NULL), (4008, 1437, 'S/N 09725-1', 'MTS Machine w/Strainsert Digital Load Cell Model FFL', 'Range 1200# to 20K', '1999-02-12', 4008, '2/12/1999', NULL), (4009, 1438, '', '', '', '0000-00-00', 4009, '', NULL), (4010, 1439, '', '', '', '0000-00-00', 4010, '', NULL), (4011, 1440, '', '', '', '0000-00-00', 4011, '', NULL), (4012, 1441, '', '', '', '0000-00-00', 4012, '', NULL), (4013, 1442, '', ' ', '', '0000-00-00', 4013, '', NULL), (4014, 1443, '', '', '', '0000-00-00', 4014, '', NULL), (4015, 1444, 'S/N 111', 'Brainard-Kilman LVDT Model E-310 (Channel #21)', 'Range: .43 Inches (D6027-96el)', '2000-01-18', 4015, '1/18/2000', NULL), (4016, 1445, '', '', '', '0000-00-00', 4016, '', NULL), (4017, 1446, 'S/N 24664', 'Wykehame Farrance Triaxial Load Cell STALC3-5KN (E-4)', 'Range: 5KN', '2005-02-21', 4017, '2/21/2005', NULL), (4018, 1447, 'S/N 1155-13-13552', 'ELE Single Proving Ring (E-4 & Man Spec)', 'Cap: 1K', '2009-01-21', 4018, '1/21/2009', NULL), (4019, 1448, '', '', '', '0000-00-00', 4019, '', NULL), (4020, 1449, '', '', '', '0000-00-00', 4020, '', NULL), (4021, 1450, '', '', '', '0000-00-00', 4021, '', NULL), (4022, 1451, '', '', '', '0000-00-00', 4022, '', NULL), (4023, 1452, 'S/N V2820', ' w/ Transducer', '', '0000-00-00', 4023, '', NULL), (4024, 1453, 'S/N 11347', 'Soiltest Double Proving Ring (OUT OF SERVICE) (E-4)', 'Range 1500 lbs', '2000-07-17', 4024, '7/17/2000', NULL), (4025, 1454, 'S/N 2950434', ' w/Load Cell', '', '0000-00-00', 4025, '', NULL), (4026, 1455, 'S/N 1', 'Extra Gauge-Jack #4 (OOS) (E-4 & PCI)', 'Range: 4K', '2007-01-30', 4026, '1/30/2007', NULL), (4027, 1456, '', '', '', '0000-00-00', 4027, '', NULL), (4028, 1457, '', '', '', '0000-00-00', 4028, '', NULL), (4029, 1458, '', '', '', '0000-00-00', 4029, '', NULL), (4030, 1459, '', '', '', '0000-00-00', 4030, '', NULL), (4031, 1460, '', '', '', '0000-00-00', 4031, '', NULL), (4032, 1461, 'S/N 1727-1-10016', 'Multiplex 50 ELE Soiltest (E4)', 'Range: 28 KN / 6K', '2005-02-21', 4032, '2/21/2005', NULL), (4033, 1462, '', '', '', '0000-00-00', 4033, '', NULL), (4034, 1463, 'S/N 69141', 'Forney FT-40DR Compression Machine (E-4)', 'Range: 30K / 250K', '2012-07-10', 4034, '7/10/2012', NULL), (4035, 1464, '', '', '', '0000-00-00', 4035, '', NULL), (4036, 1465, '', '', '', '0000-00-00', 4036, '', NULL), (4037, 1466, '', '', '', '0000-00-00', 4037, '', NULL), (4038, 1467, '', '', '', '0000-00-00', 4038, '', NULL), (4039, 1468, '', '', '', '0000-00-00', 4039, '', NULL), (4040, 1469, '', '', '', '0000-00-00', 4040, '', NULL), (4041, 1470, '', '', '', '0000-00-00', 4041, '', NULL), (4042, 1471, '', '', '', '0000-00-00', 4042, '', NULL), (4043, 1472, 'S/N 1275531', 'Eilon Enginnering RON 2000 S-12.5 Load Cell (ManSp & 0.1% FS)', 'Range: 25K', '2008-07-18', 4043, '7/18/2008', NULL), (4044, 1473, 'S/N 1001', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI', '2007-07-24', 4044, '7/24/2007', NULL), (4045, 1474, '', '', '', '0000-00-00', 4045, '', NULL), (4046, 1475, '', '', '', '0000-00-00', 4046, '', NULL), (4047, 1476, '', '', '', '0000-00-00', 4047, '', NULL), (4048, 1477, '', '', '', '0000-00-00', 4048, '', NULL), (4049, 1478, '', ' Campbell ID #FO8006', '', '0000-00-00', 4049, '', NULL), (4050, 1479, '', '', '', '0000-00-00', 4050, '', NULL), (4051, 1480, '', '', '', '0000-00-00', 4051, '', NULL), (4052, 1481, 'S/N R-11633', 'Riehle UTM Compression Machine Model P-4 (E-4)', 'Range 15/30/60/150/300K', '2000-07-13', 4052, '7/13/2000', NULL), (4053, 1482, '', '', '', '0000-00-00', 4053, '', NULL), (4054, 1483, '', '', '', '0000-00-00', 4054, '', NULL), (4055, 1484, '', '', '', '0000-00-00', 4055, '', NULL), (4056, 1485, '', '', '', '0000-00-00', 4056, '', NULL), (4057, 1486, '', '', '', '0000-00-00', 4057, '', NULL), (4058, 1487, '', '', '', '0000-00-00', 4058, '', NULL), (4059, 1488, '', '', '', '0000-00-00', 4059, '', NULL), (4060, 1489, '', '', '', '0000-00-00', 4060, '', NULL), (4061, 1490, '', '', '', '0000-00-00', 4061, '', NULL), (4062, 1491, '', 'Hand pump with 12\" gauge', '', '0000-00-00', 4062, '', NULL), (4063, 1492, '', '', '', '0000-00-00', 4063, '', NULL), (4064, 1493, '', '', '', '0000-00-00', 4064, '', NULL), (4065, 1494, '', '', '', '0000-00-00', 4065, '', NULL), (4066, 1495, '', '', '', '0000-00-00', 4066, '', NULL), (4067, 1496, '', '', '', '0000-00-00', 4067, '', NULL), (4068, 1497, '', '', '', '0000-00-00', 4068, '', NULL), (4069, 1498, '', '', '', '0000-00-00', 4069, '', NULL), (4070, 1499, '', '', '', '0000-00-00', 4070, '', NULL), (4071, 1500, '', '', '', '0000-00-00', 4071, '', NULL), (4072, 1501, 'S/N F13127', 'Hamilton Prestress Jack Model P-4500 (E-4 & PCI)', 'Range: 4K / 35K', '2009-07-20', 4072, '7/20/2009', NULL), (4073, 1502, 'S/N 202', 'Ames Dial Indicator (D-6027)', 'Range: 0.2 Inches ', '2007-07-09', 4073, '7/9/2007', NULL), (4074, 1503, '', '', '', '0000-00-00', 4074, '', NULL), (4075, 1504, 'S/N 65137', ' w/Extra Gauge (E-4)', 'Range: 340K', '2008-07-16', 4075, '7/16/2008', NULL), (4076, 1505, '', '', '', '0000-00-00', 4076, '', NULL), (4077, 1506, '', '', '', '0000-00-00', 4077, '', NULL), (4078, 1507, '', '', '', '0000-00-00', 4078, '', NULL), (4079, 1508, '', '', '', '0000-00-00', 4079, '', NULL), (4080, 1509, '', '', '', '0000-00-00', 4080, '', NULL), (4081, 1510, '', '', '', '0000-00-00', 4081, '', NULL), (4082, 1511, '', '', '', '0000-00-00', 4082, '', NULL), (4083, 1512, '', '', '', '0000-00-00', 4083, '', NULL), (4084, 1513, '', '', '', '0000-00-00', 4084, '', NULL), (4085, 1514, 'S/N 89123-060626', ' w/Forney FT-250F-CS-100-2A Block Beam Frame (E-4)', 'Range: 2.5K to 250K LC#1', '2013-07-01', 4085, '7/1/2013', NULL), (4086, 1515, '', '', '', '0000-00-00', 4086, '', NULL), (4087, 1516, '', '', '', '0000-00-00', 4087, '', NULL), (4088, 1517, '', '', '', '0000-00-00', 4088, '', NULL), (4089, 1518, '', '', '', '0000-00-00', 4089, '', NULL), (4090, 1519, '', '', '', '0000-00-00', 4090, '', NULL), (4091, 1520, '', '', '', '0000-00-00', 4091, '', NULL), (4092, 1521, '', '', '', '0000-00-00', 4092, '', NULL), (4093, 1522, '', '', '', '0000-00-00', 4093, '', NULL), (4094, 1523, '', '', '', '0000-00-00', 4094, '', NULL), (4095, 1524, '', '', '', '0000-00-00', 4095, '', NULL), (4096, 1525, '', '', '', '0000-00-00', 4096, '', NULL), (4097, 1526, '', '', '', '0000-00-00', 4097, '', NULL), (4098, 1527, '', '', '', '0000-00-00', 4098, '', NULL), (4099, 1528, '', '', '', '0000-00-00', 4099, '', NULL), (4100, 1529, '', '', '', '0000-00-00', 4100, '', NULL), (4101, 1530, '', '', '', '0000-00-00', 4101, '', NULL), (4102, 1531, '', '', '', '0000-00-00', 4102, '', NULL), (4103, 1532, '', '', '', '0000-00-00', 4103, '', NULL), (4104, 1533, 'S/N 69012', 'Forney QC-150 Compression Machine (E-4)', 'Range: 300K', '2013-06-03', 4104, '6/3/2013', NULL), (4105, 1534, 'S/N 05039/092000', ' w/ Beam Frame (E-4)', 'Range: 1K to 30K ', '2013-06-04', 4105, '6/4/2013', NULL), (4106, 1535, 'S/N MG-5464', 'Geotac Linear LVDT (D-6027)', 'Range: 0.5 inches', '2012-06-06', 4106, '6/6/2012', NULL), (4107, 1536, 'S/N 192744', 'Geotac Load Cell (E-4)', 'Range: 20 lbs to 2,000 lbs', '2012-06-06', 4107, '6/6/2012', NULL), (4108, 1537, 'S/N 13507', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-06-08', 4108, '6/8/2010', NULL), (4109, 1538, 'S/N 5556', 'Forney PT-75 Pipe Tester (E-4 & C-497 & 2%)', 'Range: 150K', '2013-06-03', 4109, '6/3/2013', NULL), (4110, 1539, 'S/N 14983', 'Soiltest Unconfined Double Proving Ring (E-4)', 'Range: 400 lbs', '2013-06-05', 4110, '6/5/2013', NULL), (4111, 1540, 'S/N 260', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K', '2013-06-04', 4111, '6/4/2013', NULL), (4112, 1541, '', ' w/Gauge (E-4)', 'Range: 40K to 400K', '2013-06-04', 4112, '6/4/2013', NULL), (4113, 1542, '', '', '', '0000-00-00', 4113, '', NULL), (4114, 1543, '', '', '', '0000-00-00', 4114, '', NULL), (4115, 1544, 'S/N 2241', 'Humboldt Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-06-05', 4115, '6/5/2012', NULL), (4116, 1545, 'S/N 4923', 'Wykeham-Farrance Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 45,000 Newtons or 10,000 lbs', '2013-06-04', 4116, '6/4/2013', NULL), (4117, 1546, 'S/N 107093', 'Geotest Mdl. 5840 Multi Loader w/ S-Type Load Cell (E-4)', 'Range: 200 lbs to 5K ', '2013-06-10', 4117, '6/10/2013', NULL), (4118, 1547, '', '', '', '0000-00-00', 4118, '', NULL), (4119, 1548, 'S/N 101', 'Humboldt Beam Breaker (E-4)', 'Range: 10K', '2011-06-14', 4119, '6/14/2011', NULL), (4120, 1549, '', '', '', '0000-00-00', 4120, '', NULL), (4121, 1550, '', '', '', '0000-00-00', 4121, '', NULL), (4122, 1551, 'S/N W43TEB', 'Dwyer Magnehelic Vaccum Gauge (D- 5720 & ManSpecs)', 'Range: 15 inHg ', '2013-06-12', 4122, '6/12/2013', NULL), (4123, 1552, '', '', '', '0000-00-00', 4123, '', NULL), (4124, 1553, '', '', '', '0000-00-00', 4124, '', NULL), (4125, 1554, '', '', '', '0000-00-00', 4125, '', NULL), (4126, 1555, '', '', '', '0000-00-00', 4126, '', NULL), (4127, 1556, 'S/N 03218', 'Forney F-502-TPILOT Digital Compression Machine Fr. 1/Ch.1(E-4)', 'Range: 5K to 500K Compression Fram e', '2013-06-18', 4127, '6/18/2013', NULL), (4128, 1557, '', '', '', '0000-00-00', 4128, '', NULL), (4129, 1558, 'S/N 5638-80216', 'Forney PT-75-P Pipe Tester (Digital) Gauge Buster (E-4 &C-497)', 'Range: 3K to 150K', '2013-06-10', 4129, '6/10/2013', NULL), (4130, 1559, 'S/N ', 'McCracken Pipe Tester (Gauge/Digital) (E-4 & C-497)', 'Range:', NULL, 4130, 'New', NULL), (4131, 1560, 'S/N 76159', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-06-18', 4131, '6/18/2013', NULL), (4132, 1561, 'S/N 1056', 'Pine Instrument Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2012-06-21', 4132, '6/21/2012', NULL), (4133, 1562, 'S/N C16018', ' w/ Model CBES-IT Vertical Force Load Cell (E-4)', 'Range: 500 lbs ', '2013-06-19', 4133, '6/19/2013', NULL), (4134, 1563, 'S/N 22395', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs', '2013-06-19', 4134, '6/19/2013', NULL), (4135, 1564, 'S/N D2361-01-3A', 'Pollard Pressure Gauge ID#D2361-01-3A (D-5720)', 'Range: 160 PSI', '2008-06-25', 4135, '6/25/2008', NULL), (4136, 1565, '', '', '', '0000-00-00', 4136, '', NULL), (4137, 1566, 'S/N 342472/18', 'Eilon Engineering RON Load Cell 2501 S-03 Asset # M263767', 'Range: 6K (ManSp & 0.1% FS)', '2006-07-21', 4137, '7/21/2006', NULL), (4138, 1567, 'S/N 05064740/4', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 KG', '2007-06-08', 4138, '6/8/2007', NULL), (4139, 1568, '', '', '', '0000-00-00', 4139, '', NULL), (4140, 1569, 'S/N 2002007', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons', '2008-06-13', 4140, '6/13/2008', NULL), (4141, 1570, '', '', '', '0000-00-00', 4141, '', NULL), (4142, 1571, '', '', '', '0000-00-00', 4142, '', NULL), (4143, 1572, '', '', '', '0000-00-00', 4143, '', NULL), (4144, 1573, 'S/N 174', 'Brainard Kilman E-214 Load Cell (E-4)', 'Range: 5 lbs', '2005-06-23', 4144, '6/23/2005', NULL), (4145, 1574, '', '', '', '0000-00-00', 4145, '', NULL), (4146, 1575, '', 'Panel Meter DP41-S', '', NULL, 4146, 'Panel Meter', NULL), (4147, 1576, 'S/N 1 (D500T)', 'Ametek Force Gauge - Tensile', 'Cap: 150#', '1997-04-17', 4147, '4/17/1997', NULL), (4148, 1577, '', '', '', '0000-00-00', 4148, '', NULL), (4149, 1578, '', '', '', '0000-00-00', 4149, '', NULL), (4150, 1579, '', '', '', '0000-00-00', 4150, '', NULL), (4151, 1580, 'S/N 167125', 'Tinius Olsen Recorder--Model AD', 'Range: 2.4/12/60/120K', '2002-06-20', 4151, '6/20/2002', NULL), (4152, 1581, '', '', '', '0000-00-00', 4152, '', NULL), (4153, 1582, '', '', '', '0000-00-00', 4153, '', NULL), (4154, 1583, '', '', '', '0000-00-00', 4154, '', NULL), (4155, 1584, '', '', '', '0000-00-00', 4155, '', NULL), (4156, 1585, '', '', '', '0000-00-00', 4156, '', NULL), (4157, 1586, '', '', '', '0000-00-00', 4157, '', NULL), (4158, 1587, '', '', '', '0000-00-00', 4158, '', NULL), (4159, 1588, '', '', '', '0000-00-00', 4159, '', NULL), (4160, 1589, '', '', '', '0000-00-00', 4160, '', NULL), (4161, 1590, '', '', '', '0000-00-00', 4161, '', NULL), (4162, 1591, '', '', '', '0000-00-00', 4162, '', NULL), (4163, 1592, '', '', '', '0000-00-00', 4163, '', NULL), (4164, 1593, 'S/N A11344', ' with Auto Ranging Digital', '', '0000-00-00', 4164, '', NULL), (4165, 1594, 'S/N 57157', 'Forney LT-600 Compression Machine (E-4)', 'Range 60/350K', '2000-06-28', 4165, '6/28/2000', NULL), (4166, 1595, '', '', '', '0000-00-00', 4166, '', NULL), (4167, 1596, '', '', '', '0000-00-00', 4167, '', NULL), (4168, 1597, 'S/N 1854-1-1137', ' w/ Digital---Model 1854D0036', '', '0000-00-00', 4168, '', NULL), (4169, 1598, '', '', '', '0000-00-00', 4169, '', NULL), (4170, 1599, '', '', '', '0000-00-00', 4170, '', NULL), (4171, 1600, '', '', '', '0000-00-00', 4171, '', NULL), (4172, 1601, 'S/N 64014', 'Forney QC-150-DR Compression Machine (E-4)', 'Range 30/300K', '2000-06-15', 4172, '6/15/2000', NULL), (4173, 1602, '', '', '', '0000-00-00', 4173, '', NULL), (4174, 1603, '', '', '', '0000-00-00', 4174, '', NULL), (4175, 1604, '', '', '', '0000-00-00', 4175, '', NULL), (4176, 1605, 'S/N 122985', 'Tinius-Olsen CCTM Digital Machine (E-4)', 'Range 6/30/120/300K', '1998-07-07', 4176, '7/7/1998', NULL), (4177, 1606, 'S/N 976-00109', 'Soiltest CT-710-CS-100-2 Digital Compression Machine (E-4)', 'Range: 100 lbs. to 10K (MOVED) ', '2005-09-01', 4177, '9/1/2005', NULL), (4178, 1607, '', '', '', '0000-00-00', 4178, '', NULL), (4179, 1608, '', '', '', '0000-00-00', 4179, '', NULL), (4180, 1609, '', '', '', '0000-00-00', 4180, '', NULL), (4181, 1610, '', ' (machine calibrated in August 1998 by US Calibration)', '', '0000-00-00', 4181, '', NULL), (4182, 1611, '', '', '', '0000-00-00', 4182, '', NULL), (4183, 1612, 'S/N20006069', 'Cell Model: PSB-1000', '', '0000-00-00', 4183, '', NULL), (4184, 1613, '', '', '', '0000-00-00', 4184, '', NULL), (4185, 1614, '', '', '', '0000-00-00', 4185, '', NULL), (4186, 1615, 'S/N 040794', 'Geotest Double Proving Ring Model 52010 (E-4)', 'Range 1,500 lbs.', '2002-05-02', 4186, '5/2/2002', NULL), (4187, 1616, '', '', '', '0000-00-00', 4187, '', NULL), (4188, 1617, '', '', '', '0000-00-00', 4188, '', NULL), (4189, 1618, 'S/N 40241-188561', 'Tinius Olsen Standardization LVDT (E-83) (OOS)', 'Range: 2\"G.L.', '2006-01-19', 4189, '1/19/2006', NULL), (4190, 1619, 'S/N 16977', 'Skidmore-Wihelm Bolt Tension Calibrator M (E-4 & 2% ManSpecs)', 'Range: 100K', '2013-06-06', 4190, '6/6/2013', NULL), (4191, 1620, '', '', '', '0000-00-00', 4191, '', NULL), (4192, 1621, 'S/N FE-15-01', 'Soiltest Type N Hammer (IN-HOUSE) (C-805-97)', 'Range: 78 - 82', '2002-05-29', 4192, '5/29/2002', NULL), (4193, 1622, '', '', '', '0000-00-00', 4193, '', NULL), (4194, 1623, '', '', '', '0000-00-00', 4194, '', NULL), (4195, 1624, '', '', '', '0000-00-00', 4195, '', NULL), (4196, 1625, '', 'Mileage 454 Miles ', '', '0000-00-00', 4196, '', NULL), (4197, 1626, 'S/N 93083', 'Dillon Force Gauge (Moved) (E-4)', 'Cap: 10K', '2008-06-26', 4197, '6/26/2008', NULL), (4198, 1627, '', '', '', '0000-00-00', 4198, '', NULL), (4199, 1628, '', '', '', '0000-00-00', 4199, '', NULL), (4200, 1629, 'S/N C14580', 'Scot Tensile Tester Model J', 'Range: 50 lbs to 150 lbs', '2006-07-17', 4200, '7/17/2006', NULL), (4201, 1630, 'S/N 25601', 'Testmark CM-3000-SD Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2008-06-03', 4201, '6/3/2008', NULL), (4202, 1631, '', '', '', '0000-00-00', 4202, '', NULL), (4203, 1632, 'S/N E-81438', 'Epsilon Extensometer-Model 3542-0100-25-ST (E-83)', 'Range: 0.001 inches to 0.25 inches', '2007-06-12', 4203, '6/12/2007', NULL), (4204, 1633, '', '', '', '0000-00-00', 4204, '', NULL), (4205, 1634, 'S/N Unit #2', 'Simplex Post Tension Jack (E-4 & PCI)', 'Range: 4K (1,000 psi) / 35K (9,050 psi)', '2008-02-14', 4205, '2/14/2008', NULL), (4206, 1635, 'S/N 321', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 1.5K to 15K (Moved)', '2011-06-21', 4206, '6/21/2011', NULL), (4207, 1636, '', '', '', '0000-00-00', 4207, '', NULL), (4208, 1637, '', '', '', '0000-00-00', 4208, '', NULL), (4209, 1638, '', '', '', '0000-00-00', 4209, '', NULL), (4210, 1639, '', '', '', '0000-00-00', 4210, '', NULL), (4211, 1640, 'S/N 51223-S', 'Strassentest Marshal Tester', 'Range 20KN / 30KN', '1998-09-16', 4211, '9/16/1998', NULL), (4212, 1641, '', '', '', '0000-00-00', 4212, '', NULL), (4213, 1642, 'S/N 70838', ' with 10 Kip Cell (OOS)', 'Range 1000, 2500, 5000 & 10,000 lb.', '0000-00-00', 4213, '', NULL), (4214, 1643, '', '', '', '0000-00-00', 4214, '', NULL), (4215, 1644, 'S/N 23803G-0611822', 'Gilson MC-500-CS-100-2A Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-06-13', 4215, '6/13/2013', NULL), (4216, 1645, 'S/N 74178', 'Forney LT-703-2 Compression Machine (E-4)', 'Range: 30K / 300K', '2010-11-30', 4216, '11/30/2010', NULL), (4217, 1646, 'S/N 04119', 'Forney F-401F-Pilot Digital Compression Machine (E-4)', 'Range: 4.5K to 450K', '2010-12-07', 4217, '12/7/2010', NULL), (4218, 1647, '', '', '', '0000-00-00', 4218, '', NULL), (4219, 1648, '', '', '', '0000-00-00', 4219, '', NULL), (4220, 1649, '', '', '', '0000-00-00', 4220, '', NULL), (4221, 1650, 'S/N 69888-2-00', 'Tinius Olsen Super L CS-100-3 Universal Testing Machine (E-4)', 'Range: 3K to 300K (ID#17434) ', '2010-11-29', 4221, '11/29/2010', NULL), (4222, 1651, 'S/N 01192000', 'Geotest Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2012-12-07', 4222, '12/7/2012', NULL), (4223, 1652, 'S/N 2166 (Plant #21)', 'Pine Instrument Gyratory Compactor AFG1A(Man Specs & AASHTO)', 'Cap: 5KN/10.5KN 152.4mm 30RPM ', '2012-12-14', 4223, '12/14/2012', NULL), (4224, 1653, 'S/N 2219 (Plant #3) ', 'Pine Instrument Gyratory Compactor AFG1A(ManSpecs&AASHTO)', 'Cap:5KN/10.5KN 152.4mm 30RPM ', '2012-12-07', 4224, '12/7/2012', NULL), (4225, 1654, '', '', '', '0000-00-00', 4225, '', NULL), (4226, 1655, 'S/N 1627-6-1233', 'ELE D-300A Direct Shear Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 22 TSF', '2009-12-16', 4226, '12/16/2009', NULL), (4227, 1656, 'S/N 247', ' w/ Load Cell E-214', '', '2012-06-16', 4227, '6/16/2012', NULL), (4228, 1657, 'S/N 70147', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-06-17', 4228, '6/17/2013', NULL), (4229, 1658, '', '', '', '0000-00-00', 4229, '', NULL), (4230, 1659, '', '', '', '0000-00-00', 4230, '', NULL), (4231, 1660, '', '', '', '0000-00-00', 4231, '', NULL), (4232, 1661, 'S/N 25248', 'Soiltest Marshall Single Proving Ring', 'Cap: 10K Plant #18 (E-4 & Man Specs)', '2013-06-14', 4232, '6/14/2013', NULL), (4233, 1662, 'S/N 01113', 'Forney F-25F-PI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2012-12-13', 4233, '12/13/2012', NULL), (4234, 1663, 'S/N 04076-0611281', 'Forney F-30EX-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2013-06-11', 4234, '6/11/2013', NULL), (4235, 1664, 'S/N 1724-4-1086', 'ELE Mdl. 1760PL00002 Universal Testing Machine (E-4 & 2%)', 'Range: 1000 KN C / 500 KN T (T Only)', '2013-06-11', 4235, '6/11/2013', NULL), (4236, 1665, '', '', '', '0000-00-00', 4236, '', NULL), (4237, 1666, 'S/N 2109-091207', 'Mid America D-Load-CS-100-1S Pipe Tester (E-4 & C-497)', 'Range: 5K to 300K', '2013-06-12', 4237, '6/12/2013', NULL), (4238, 1667, 'S/N 2128', 'SoiltestUnconfined Double Proving Ring (E-4 & Man Specs) ', 'Range: 500 lbs', '2013-06-10', 4238, '6/10/2013', NULL), (4239, 1668, '', '', '', '0000-00-00', 4239, '', NULL), (4240, 1669, 'S/N 359978', 'Powerteam PE554T Post Tension Jack (E-4 & ManSpec)', 'Range: 35K (7,450 PSI)', '2012-06-13', 4240, '6/13/2012', NULL), (4241, 1670, 'S/N 87003', 'Forney QC-410-TPILOT Digital Compression Machine (E4)', 'Range: 4K to 400K', '2013-06-18', 4241, '6/18/2013', NULL), (4242, 1671, 'S/N 04-651', 'Hercules-Tucker HSJ Prestress Jack (E-4 & PCI)', 'Range: 5K / 35K', '2013-06-14', 4242, '6/14/2013', NULL), (4243, 1672, 'S/N 8818-9301-03104', 'Soiltest CT-6200-CS-100-2A Digital Comp Machine (ID#23959)', 'Range: 4K to 400K (E-4)', '2013-06-12', 4243, '6/12/2013', NULL), (4244, 1673, '', '', '', '0000-00-00', 4244, '', NULL), (4245, 1674, 'S/N 03103', 'Forney F-602F-TPILOT Digital Compression Machine (E-4)', 'Range: 6K to 600K (Comp. Frame)', '2013-06-12', 4245, '6/12/2013', NULL), (4246, 1675, 'S/N 0204-0512061', 'ELE Model 36-0655/02-CS-100-2A Digital Compression Machine(E-4)', 'Range: 2.5K to 250K ', '2013-06-12', 4246, '6/12/2013', NULL), (4247, 1676, '', '', '', '0000-00-00', 4247, '', NULL), (4248, 1677, 'S/N 133', 'Karol Warner Marshall Single Proving Ring', 'Cap: 10K Plant #19 (E-4 & Man Specs)', '2012-06-15', 4248, '6/15/2012', NULL), (4249, 1678, '', '', '', '0000-00-00', 4249, '', NULL), (4250, 1679, '', '', '', '0000-00-00', 4250, '', NULL), (4251, 1680, 'S/N 56921', 'Baldwin-Southwark Emery Compression Machine', 'Range 30/300K', '2000-06-08', 4251, '6/8/2000', NULL), (4252, 1681, '', '', '', '0000-00-00', 4252, '', NULL), (4253, 1682, '', '', '', '0000-00-00', 4253, '', NULL), (4254, 1683, 'S/N 74177', 'Forney FT-21 Compression Machine with Hand Pump', 'Range 250K', '2000-06-13', 4254, '6/13/2000', NULL), (4255, 1684, '', '', '', '0000-00-00', 4255, '', NULL), (4256, 1685, 'S/N 393952', 'Power Team Model C', 'Range: 10K psi', '2000-06-07', 4256, '6/7/2000', NULL), (4257, 1686, '', '', '', '0000-00-00', 4257, '', NULL), (4258, 1687, 'S/N EP-463', 'Freyssnet Jack SC2M-108 with Gauge #17391 - GONE', 'Range 580 Bar (47,500 lbs.)', '1998-09-17', 4258, '9/17/1998', NULL), (4259, 1688, 'S/N 1502', 'Florida Wire (Hayes) Prestress Jack w/ omega digtal', 'Range 4 to 34K', '1998-09-15', 4259, '9/15/1998', NULL), (4260, 1689, '', '', '', '0000-00-00', 4260, '', NULL), (4261, 1690, '', '', '', '0000-00-00', 4261, '', NULL), (4262, 1691, '', '', '', '0000-00-00', 4262, '', NULL), (4263, 1692, 'S/N EP399/391628', 'Freyssinet Post Tension Jack Model C', 'Range 45,000 lbs. (565 Bar)', '1999-06-19', 4263, '6/19/1999', NULL), (4264, 1693, 'S/N 84176', 'Hercules Prestress Jack', 'Range 1.5 / 35K', '1997-09-03', 4264, '9/3/1997', NULL), (4265, 1694, '', '', '', '0000-00-00', 4265, '', NULL), (4266, 1695, '', '', '', '0000-00-00', 4266, '', NULL), (4267, 1696, '', '', '', '0000-00-00', 4267, '', NULL), (4268, 1697, '', '', '', '0000-00-00', 4268, '', NULL), (4269, 1698, 'S/N 91263', 'Hercules Prestress Jack (E-4 & PCI)', 'Range: 3/35K', '1997-01-16', 4269, '1/16/1997', NULL), (4270, 1699, '', '', '', '0000-00-00', 4270, '', NULL), (4271, 1700, '', '', '', '0000-00-00', 4271, '', NULL), (4272, 1701, 'S/N 238', ' with Test Spring', '', '2011-03-09', 4272, '3/9/2011', NULL), (4273, 1702, '', '2 Frames: Beam Frame-Channel #1 & Cylinder Frame-Channel #2', '', '0000-00-00', 4273, '', NULL), (4274, 1703, 'S/N 25154722', 'Acculab VIC412 Scale (E-898)', 'Range: 410 Grams ', '2013-03-04', 4274, '3/4/2013', NULL), (4275, 1704, 'S/N 1155-15-19730', 'ELE Unconfined 1155BO900 Single Proving Ring (E-4 & Man Specs)', 'Range: 11K ', '2013-03-06', 4275, '3/6/2013', NULL), (4276, 1705, 'S/N 1627-7-1318', ' w/Vertical Force (Lever Arm) 1K (E-4 & 2%) ', 'Range: 1/4 TSF to 8 TSF (10:1 Ratio)', '2013-03-06', 4276, '3/6/2013', NULL), (4277, 1706, '', '', '', '0000-00-00', 4277, '', NULL), (4278, 1707, '', '', '', '0000-00-00', 4278, '', NULL), (4279, 1708, 'S/N 44R1125/0051', 'Instron Model 1125 w/Load Cell 3174/20K Tension & Compression', 'Range: 200 lbs to 20K (#51) (E-4)', '2013-03-12', 4279, '3/12/2013', NULL), (4280, 1709, '', '', '', '0000-00-00', 4280, '', NULL), (4281, 1710, '', '', '', '0000-00-00', 4281, '', NULL), (4282, 1711, '', '', '', '0000-00-00', 4282, '', NULL), (4283, 1712, '', '', '', '0000-00-00', 4283, '', NULL), (4284, 1713, '', '', '', '0000-00-00', 4284, '', NULL), (4285, 1714, 'S/N 157998', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-03-19', 4285, '3/19/2013', NULL), (4286, 1715, '', '', '', '0000-00-00', 4286, '', NULL), (4287, 1716, '', '', '', '0000-00-00', 4287, '', NULL), (4288, 1717, '', '', '', '0000-00-00', 4288, '', NULL), (4289, 1718, '', '', '', '0000-00-00', 4289, '', NULL), (4290, 1719, 'S/N C5000', 'Instron 5565 Tensile Tester w/ LC: S/N UK776 T&C (E-4) ', 'Range: 10 lbs to 1K ', '2013-02-26', 4290, '2/26/2013', NULL), (4291, 1720, '', '', '', '0000-00-00', 4291, '', NULL), (4292, 1721, 'S/N 56681-7', 'Tinius Olsen Electromatic w/ DC Drive (E-4)', 'Range: 300 lbs / 1.2K / 6K / 30K', '2013-03-27', 4292, '3/27/2013', NULL), (4293, 1722, 'S/N 641-02012', 'Dillon CS-100-2SP Digital Compression Machine (E-4)', 'Range: 50 lbs to 10K', '2013-03-26', 4293, '3/26/2013', NULL), (4294, 1723, '', ' ', '', '0000-00-00', 4294, '', NULL), (4295, 1724, 'S/N 12506 (ID# 1335)', 'Elmes P2779 Press (QC Press) (E-4)', 'Range: 7K', '2012-03-29', 4295, '3/29/2012', NULL), (4296, 1725, '', '', '', '0000-00-00', 4296, '', NULL), (4297, 1726, '', '', '', '0000-00-00', 4297, '', NULL), (4298, 1727, 'S/N 901217YL', ' Revere Load Cell Model C-46170 Red (E-4)', 'Range: 50K', '2008-03-31', 4298, '3/31/2008', NULL), (4299, 1728, 'S/N 2226', 'Humboldt Proving Ring (In House)', 'Cap: 10K', '2003-04-01', 4299, '4/1/2003', NULL), (4300, 1729, '', '', '', '0000-00-00', 4300, '', NULL), (4301, 1730, 'S/N 0195', 'Enerpac Model DG P1 with Transducer S/N 3D174 (In house)', 'Range 10K PSI', '1999-03-09', 4301, '3/9/1999', NULL), (4302, 1731, '', 'Ring Model 1155B0900', '', '0000-00-00', 4302, '', NULL), (4303, 1732, '', '', '', '0000-00-00', 4303, '', NULL), (4304, 1733, '', '', '', '0000-00-00', 4304, '', NULL), (4305, 1734, '', 'Installed digital retofit on wire machine', '', '1999-03-01', 4305, '3/1/1999', NULL), (4306, 1735, 'S/N 9207', ' with Microhead 2000 ', '', '0000-00-00', 4306, '', NULL), (4307, 1736, '', '', '', '0000-00-00', 4307, '', NULL), (4308, 1737, '', '', '', '0000-00-00', 4308, '', NULL), (4309, 1738, '', '', '', '0000-00-00', 4309, '', NULL), (4310, 1739, '', '', '', '0000-00-00', 4310, '', NULL), (4311, 1740, '', '', '', '0000-00-00', 4311, '', NULL), (4312, 1741, 'S/N 1', 'Mitutoyo Dial Indicator-Model 2776F (E83-00) ', 'Range: 1 inch', '2003-03-20', 4312, '3/20/2003', NULL), (4313, 1742, '', '', '', '0000-00-00', 4313, '', NULL), (4314, 1743, '', '', '', '0000-00-00', 4314, '', NULL), (4315, 1744, 'S/N 270/1119', 'MTS Displacement Card LVDT (D-6027)', 'Range: 1\" ID#25-MTS1DC02', '2004-03-23', 4315, '3/23/2004', NULL), (4316, 1745, 'S/N 270/78094', ' with Range Card', 'Range: 1K ID#25-LC11RC03', '0000-00-00', 4316, '', NULL), (4317, 1746, '', '', '', '0000-00-00', 4317, '', NULL), (4318, 1747, '', '', '', '0000-00-00', 4318, '', NULL), (4319, 1748, '', '', '', '0000-00-00', 4319, '', NULL), (4320, 1749, '', '', '', '0000-00-00', 4320, '', NULL), (4321, 1750, '', '', '', '0000-00-00', 4321, '', NULL), (4322, 1751, '', '', '', '0000-00-00', 4322, '', NULL), (4323, 1752, 'S/N 2842', 'Soiltest Proving Ring (E-4)', 'Cap: 10K', '1996-03-21', 4323, '3/21/1996', NULL), (4324, 1753, 'S/N 1015', 'Brainard-Kilman S-600 Triaxial Load Frame (E-4)', '', '2002-04-17', 4324, '4/17/2002', NULL), (4325, 1754, 'S/N Unknown', 'Enerpac TMS Tension Cell (E4-02)', 'Range: 10K', '2004-03-18', 4325, '3/18/2004', NULL), (4326, 1755, '', '', '', '0000-00-00', 4326, '', NULL), (4327, 1756, '', '', '', '0000-00-00', 4327, '', NULL), (4328, 1757, '', 'Testmark Digital', 'Range: 300 Kip', NULL, 4328, 'New', NULL), (4329, 1758, '', '', '', '0000-00-00', 4329, '', NULL), (4330, 1759, '', '', '', '0000-00-00', 4330, '', NULL), (4331, 1760, '', '', '', '0000-00-00', 4331, '', NULL), (4332, 1761, '', '', '', '0000-00-00', 4332, '', NULL), (4333, 1762, '', '', '', '0000-00-00', 4333, '', NULL), (4334, 1763, '', '', '', '0000-00-00', 4334, '', NULL), (4335, 1764, '', '', '', '0000-00-00', 4335, '', NULL), (4336, 1765, 'S/N HLI 400', 'Healthometer', 'Range 350 lbs.', '1999-03-02', 4336, '3/2/1999', NULL), (4337, 1766, '', '', '', '0000-00-00', 4337, '', NULL), (4338, 1767, '', '', '', '0000-00-00', 4338, '', NULL), (4339, 1768, '', '', '', '0000-00-00', 4339, '', NULL), (4340, 1769, '', '', '', '0000-00-00', 4340, '', NULL), (4341, 1770, '', '', '', '0000-00-00', 4341, '', NULL), (4342, 1771, '', '', '', '0000-00-00', 4342, '', NULL), (4343, 1772, '', '', '', '0000-00-00', 4343, '', NULL), (4344, 1773, '', '', '', '0000-00-00', 4344, '', NULL), (4345, 1774, '', '', '', '0000-00-00', 4345, '', NULL), (4346, 1775, '', '', '', '0000-00-00', 4346, '', NULL), (4347, 1776, '', '', '', '0000-00-00', 4347, '', NULL), (4348, 1777, '', '', '', '0000-00-00', 4348, '', NULL), (4349, 1778, '', '', '', '0000-00-00', 4349, '', NULL), (4350, 1779, '', '', '', '0000-00-00', 4350, '', NULL), (4351, 1780, '', 'Gram Scale, Ohaus Model 2610 ID # 1', '', NULL, 4351, 'NEW', NULL), (4352, 1781, 'S/N 5858', 'Scale, Triner Model 303', '', NULL, 4352, 'NEW', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (4353, 1782, '', '', '', '0000-00-00', 4353, '', NULL), (4354, 1783, '', 'Platform Scale ', 'Cap: 1,000 lbs', NULL, 4354, 'NEW', NULL), (4355, 1784, 'S/N 5756', 'Forney FT-10 Compression Machine', 'Range 250K', '1997-04-10', 4355, '4/10/1997', NULL), (4356, 1785, 'S/N 555839', 'Platform Scale Howe 1000', '', NULL, 4356, 'NEW', NULL), (4357, 1786, '', '', '', '0000-00-00', 4357, '', NULL), (4358, 1787, '', '', '', '0000-00-00', 4358, '', NULL), (4359, 1788, '', '', '', '0000-00-00', 4359, '', NULL), (4360, 1789, '', '', '', '0000-00-00', 4360, '', NULL), (4361, 1790, '', '', '', '0000-00-00', 4361, '', NULL), (4362, 1791, '', '', '', '0000-00-00', 4362, '', NULL), (4363, 1792, 'S/N 65209', 'Forney FT 250 Compression Machine (out of service)', 'Range 250K (E-4)', '1996-03-14', 4363, '3/14/1996', NULL), (4364, 1793, '', '', '', '0000-00-00', 4364, '', NULL), (4365, 1794, '', '', '', '0000-00-00', 4365, '', NULL), (4366, 1795, '', '', '', '0000-00-00', 4366, '', NULL), (4367, 1796, '', '', '', '0000-00-00', 4367, '', NULL), (4368, 1797, 'S/N 29904052', 'Load Cell Model 941KVD2000 ', '', '0000-00-00', 4368, '', NULL), (4369, 1798, '', '', '', '0000-00-00', 4369, '', NULL), (4370, 1799, '', '', '', '0000-00-00', 4370, '', NULL), (4371, 1800, '', '', '', '0000-00-00', 4371, '', NULL), (4372, 1801, '', '', '', '0000-00-00', 4372, '', NULL), (4373, 1802, '', '', '', '0000-00-00', 4373, '', NULL), (4374, 1803, '', '', '', '0000-00-00', 4374, '', NULL), (4375, 1804, 'S/N', ' w/ Speed Control (Man Specs)', 'Range: ', NULL, 4375, 'New', NULL), (4376, 1805, 'S/N 89037', 'Forney FT-250F-01 Compression Machine (E-4) (MOVED)', 'Range: 250K', '2006-03-29', 4376, '3/29/2006', NULL), (4377, 1806, '', '', '', '0000-00-00', 4377, '', NULL), (4378, 1807, 'S/N 05174 ', 'Forney F25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2009-03-11', 4378, '3/11/2009', NULL), (4379, 1808, '', '', '', '0000-00-00', 4379, '', NULL), (4380, 1809, 'S/N 96070', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-02-04', 4380, '2/4/2004', NULL), (4381, 1810, 'S/N 053011859', 'CPI Digital Dial Indicator Mdl. BG-2110 (D-6027)', 'Range 0.1 inch to 1 inch', '2007-03-14', 4381, '3/14/2007', NULL), (4382, 1811, 'S/N90106035', 'Com-Ten Tensile Tester--Series 9500 (E-4)', 'Range: 4 lbs', '2008-03-26', 4382, '3/26/2008', NULL), (4383, 1812, '', '', '', '0000-00-00', 4383, '', NULL), (4384, 1813, 'S/N 13303', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 250K', '2007-04-13', 4384, '4/13/2007', NULL), (4385, 1814, '', '', '', '0000-00-00', 4385, '', NULL), (4386, 1815, '', '', '', '0000-00-00', 4386, '', NULL), (4387, 1816, '', '10/12 Sold Machine to Castle Builders', '', '0000-00-00', 4387, '', NULL), (4388, 1817, 'S/N 757', ' with Test Spring Model 850', '', '2012-03-07', 4388, '3/7/2012', NULL), (4389, 1818, '', '', '', '0000-00-00', 4389, '', NULL), (4390, 1819, 'S/N ', 'Soiltest Dial Indicator (OOS) (D-6027)', 'Range: 0.4 inch ', NULL, 4390, 'New', NULL), (4391, 1820, 'S/N 23117', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs )', 'Cap: 500 lbs', '2013-05-07', 4391, '5/7/2013', NULL), (4392, 1821, '', '', '', '0000-00-00', 4392, '', NULL), (4393, 1822, '', '', '', '0000-00-00', 4393, '', NULL), (4394, 1823, 'S/N 1773', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 2K', '2009-05-14', 4394, '5/14/2009', NULL), (4395, 1824, '', '', '', '0000-00-00', 4395, '', NULL), (4396, 1825, '', '', '', '0000-00-00', 4396, '', NULL), (4397, 1826, 'S/N 1', 'CDI 2-CR100-1000 Dial Indicator (D-6027)', 'Range: 1 Inch', '2009-05-13', 4397, '5/13/2009', NULL), (4398, 1827, '', '', '', '0000-00-00', 4398, '', NULL), (4399, 1828, '', '', '', '0000-00-00', 4399, '', NULL), (4400, 1829, '', '', '', '0000-00-00', 4400, '', NULL), (4401, 1830, '', '', '', '0000-00-00', 4401, '', NULL), (4402, 1831, 'S/N A1-1502', 'Geotest Unconfined Double Proving Ring (E-4 & ManSpec)', 'Cap: 1.5K', '2013-05-15', 4402, '5/15/2013', NULL), (4403, 1832, 'S/N 16390 ', 'Skidmore Wilhelm Mdl. MS Bolt Tester (E-4 & 2% & Man Specs)', 'Range: 100K', '2013-05-14', 4403, '5/14/2013', NULL), (4404, 1833, 'S/N 37406G', 'Gilson MC-400M Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2013-05-14', 4404, '5/14/2013', NULL), (4405, 1834, 'S/N 916', 'Pine Instrument AF850T Asphalt Press (E-4 & 2%)', 'Range: 11 Kn / 22 Kn / 44 Kn ', '2013-05-13', 4405, '5/13/2013', NULL), (4406, 1835, 'P160106224', 'Serial Number to long', '', '0000-00-00', 4406, '', NULL), (4407, 1836, '', '', '', '0000-00-00', 4407, '', NULL), (4408, 1837, 'S/N 656468', ' w/ Load Cell (E-4)', 'Range: 2K ', '2013-07-31', 4408, '7/31/2013', NULL), (4409, 1838, 'S/N 96009', 'Forney F-502F-F96 Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-07-31', 4409, '7/31/2013', NULL), (4410, 1839, 'S/N PS-2171', 'Geotac Pressure Transducer (Pore Pressure CH Geotac #3) ', 'Range: 200 psi (D-5720)', '2011-05-25', 4410, '5/25/2011', NULL), (4411, 1840, 'S/N 15239', 'Soiltest Marshall Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2013-05-20', 4411, '5/20/2013', NULL), (4412, 1841, 'S/N 15838', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 6K', '2013-05-20', 4412, '5/20/2013', NULL), (4413, 1842, '', ' w/ Load Cell (E-4)', 'Range: 1,000 lbs T & C S/N 103 ', '2013-05-21', 4413, '5/21/2013', NULL), (4414, 1843, 'S/N 1345', 'Brainard-Kilman Pressure Transducer w/E-400 Digital (D-5720)', 'Range: 150 psi ', '2013-05-21', 4414, '5/21/2013', NULL), (4415, 1844, 'S/N PS-2108', 'Geotac Pressure Transducer (Pressure 3 Ch #8) (D-5720)', 'Range: 200 PSI', '2011-05-23', 4415, '5/23/2011', NULL), (4416, 1845, 'S/N 110105A', 'Trautwein MVFS w/CS-100-1S Dig. Pressure Transducer (D-5720)', 'Range: 150 PSI', '2013-05-20', 4416, '5/20/2013', NULL), (4417, 1846, '', '', '', '0000-00-00', 4417, '', NULL), (4418, 1847, '', ' Beam weight 600#', '', '0000-00-00', 4418, '', NULL), (4419, 1848, '', '', '', '0000-00-00', 4419, '', NULL), (4420, 1849, '', '', '', '0000-00-00', 4420, '', NULL), (4421, 1850, '', '', '', '0000-00-00', 4421, '', NULL), (4422, 1851, '', '', '', '0000-00-00', 4422, '', NULL), (4423, 1852, '', '', '', '0000-00-00', 4423, '', NULL), (4424, 1853, 'S/N 2023657', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons ', '2006-05-05', 4424, '5/5/2006', NULL), (4425, 1854, '', '', '', '0000-00-00', 4425, '', NULL), (4426, 1855, '', '', '', '0000-00-00', 4426, '', NULL), (4427, 1856, '', '', '', '0000-00-00', 4427, '', NULL), (4428, 1857, '', '', '', '0000-00-00', 4428, '', NULL), (4429, 1858, '', '', '', '0000-00-00', 4429, '', NULL), (4430, 1859, '', '', '', '0000-00-00', 4430, '', NULL), (4431, 1860, 'S/N', 'Post Tension Jack (E-4 & PCI)', 'Range 45K', '0000-00-00', 4431, '', NULL), (4432, 1861, '', '', '', '0000-00-00', 4432, '', NULL), (4433, 1862, '', '', '', '0000-00-00', 4433, '', NULL), (4434, 1863, '', ' with 3 Pressure Transducers', '', '0000-00-00', 4434, '', NULL), (4435, 1864, 'S/N 11 Laser', 'Cam Plasometer with Laser Displacement Unit', 'Range .25\"', '1998-05-13', 4435, '5/13/1998', NULL), (4436, 1865, 'S/N 78094', 'Range Card', 'Cap: 5 K', '1995-12-31', 4436, '12/31/1995', NULL), (4437, 1866, 'S/N 213474', 'Viatran Transducer: Item #128 SSM - Shot Cylinder Head', 'Range 6000 psi', '1996-05-08', 4437, '5/8/1996', NULL), (4438, 1867, 'S/N 2', 'Gauge', 'Range 3000 psi', '1996-05-08', 4438, '5/8/1996', NULL), (4439, 1868, 'S/N 8', 'Gauge', 'Range 3000 psi', '1996-05-08', 4439, '5/8/1996', NULL), (4440, 1869, 'S/N 311', ' with Load Cell', 'Range 220K ID#25-LC14', '0000-00-00', 4440, '', NULL), (4441, 1870, 'S/N 1985', 'Range Card #1 (Tag# 25-LC09RC01)', 'Range 50 Kip', '1998-05-27', 4441, '5/27/1998', NULL), (4442, 1871, 'S/N 71503', 'Range Card #1 (Tag# 25-LC10RC01)', 'Range 5 Kip', '1998-05-27', 4442, '5/27/1998', NULL), (4443, 1872, 'S/N 1490', 'Extensometer 632.12E-20 (Tag# 25-EXT03)', 'Range +.5, -.1 inch', '1998-05-28', 4443, '5/28/1998', NULL), (4444, 1873, '', '', '', '0000-00-00', 4444, '', NULL), (4445, 1874, '', '', '', '0000-00-00', 4445, '', NULL), (4446, 1875, '', '', '', '0000-00-00', 4446, '', NULL), (4447, 1876, '', '', '', '0000-00-00', 4447, '', NULL), (4448, 1877, 'S/N ', 'Displacement calibration', 'Range:', NULL, 4448, 'NEW', NULL), (4449, 1878, '', '', '', '0000-00-00', 4449, '', NULL), (4450, 1879, '', '', '', '0000-00-00', 4450, '', NULL), (4451, 1880, '', '', '', '0000-00-00', 4451, '', NULL), (4452, 1881, '', '', '', '0000-00-00', 4452, '', NULL), (4453, 1882, 'S/N Unknown', 'Enerpac Post Tension Jack Model ECM-445L', 'Range 8600 PSI (35K)', '1998-05-05', 4453, '5/5/1998', NULL), (4454, 1883, 'S/N 988-19', 'Geotest Digital 52013', 'Range 2000#', '1996-05-20', 4454, '5/20/1996', NULL), (4455, 1884, '', '', '', '0000-00-00', 4455, '', NULL), (4456, 1885, '', '', '', '0000-00-00', 4456, '', NULL), (4457, 1886, '', '', '', '0000-00-00', 4457, '', NULL), (4458, 1887, '', '', '', '0000-00-00', 4458, '', NULL), (4459, 1888, '', '', '', '0000-00-00', 4459, '', NULL), (4460, 1889, '', '', '', '0000-00-00', 4460, '', NULL), (4461, 1890, 'S/N 206098-270', 'Pine-Humboldt Asphalt Press Model PMTR', 'Range 2.5/5/10K', '1997-05-12', 4461, '5/12/1997', NULL), (4462, 1891, 'S/N 30PSI', 'Conbel Pressure Gauge (in house)', 'Range 30 psi', '1995-05-23', 4462, '5/23/1995', NULL), (4463, 1892, '', '', '', '0000-00-00', 4463, '', NULL), (4464, 1893, '', '', '', '0000-00-00', 4464, '', NULL), (4465, 1894, '', 'Simms Prestress Jack Model P4500-1330', '', '1995-06-14', 4465, '6/14/1995', NULL), (4466, 1895, '', '', '', '0000-00-00', 4466, '', NULL), (4467, 1896, '', ' on Soiltest CBR Model CN 474', '', '0000-00-00', 4467, '', NULL), (4468, 1897, '', '', '', '0000-00-00', 4468, '', NULL), (4469, 1898, '', '', '', '0000-00-00', 4469, '', NULL), (4470, 1899, '', '', '', '0000-00-00', 4470, '', NULL), (4471, 1900, '', '', '', '0000-00-00', 4471, '', NULL), (4472, 1901, '', '', '', '0000-00-00', 4472, '', NULL), (4473, 1902, '', '', '', '0000-00-00', 4473, '', NULL), (4474, 1903, '', '', '', '0000-00-00', 4474, '', NULL), (4475, 1904, '', '', '', '0000-00-00', 4475, '', NULL), (4476, 1905, 'S/N 428-dig', '', 'Range: 500 lbs. to 10,000 lbs.-Comp.', '0000-00-00', 4476, '', NULL), (4477, 1906, 'S/N 570479', ' Back Up Cell Sensotec MDL 41/0573-02 (E-4)', 'Range: 100 lbs to 10,000 lbs ', '2008-05-29', 4477, '5/29/2008', NULL), (4478, 1907, 'S/N 24617', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs) ', 'Range: 2K ', '2008-05-23', 4478, '5/23/2008', NULL), (4479, 1908, '', '', '', '0000-00-00', 4479, '', NULL), (4480, 1909, '', '', '', '0000-00-00', 4480, '', NULL), (4481, 1910, '', '', '', '0000-00-00', 4481, '', NULL), (4482, 1911, 'S/N 25037', 'Soiltest Single Proving Ring (E-4 & Man. Specs)', 'Cap: 500 lbs', '2007-05-09', 4482, '5/9/2007', NULL), (4483, 1912, '', ' w/Load Cell TSC500LE', '', '2008-05-05', 4483, '5/5/2008', NULL), (4484, 1913, 'S/N 23914', ' w/ Load Cell Model S-400', '', '2009-05-07', 4484, '5/7/2009', NULL), (4485, 1914, '', '', '', '0000-00-00', 4485, '', NULL), (4486, 1915, '', '', '', '0000-00-00', 4486, '', NULL), (4487, 1916, 'S/N 2407', 'Ohaus AS120 Analytical Standard Scale (E-898)', 'Range: 12 Grams to 120 Grams ', '2008-06-05', 4487, '6/5/2008', NULL), (4488, 1917, '', '', '', '0000-00-00', 4488, '', NULL), (4489, 1918, '', '', '', '0000-00-00', 4489, '', NULL), (4490, 1919, '', '', '', '0000-00-00', 4490, '', NULL), (4491, 1920, '', '', '', '0000-00-00', 4491, '', NULL), (4492, 1921, '', '', '', '0000-00-00', 4492, '', NULL), (4493, 1922, '', ' w/ 8\" Gauges Hand Pump', '', '0000-00-00', 4493, '', NULL), (4494, 1923, '', '', '', '0000-00-00', 4494, '', NULL), (4495, 1924, 'S/N 1002', 'Soiltest Comp Mach w/Starrett Dial Ind 656-617 (D-6027)', 'Range: 0.4 inches', '2010-05-12', 4495, '5/12/2010', NULL), (4496, 1925, 'S/N 62022', 'Forney LT-700 Compression Machine (E-4)', 'Range: 350K', '2013-05-06', 4496, '5/6/2013', NULL), (4497, 1926, 'S/N 2109', 'Mid America Pipe Tester D-Load Model with Digital HPT-96X8', 'Range: 5K to 300K', '2005-05-18', 4497, '5/18/2005', NULL), (4498, 1927, '', '', '', '0000-00-00', 4498, '', NULL), (4499, 1928, '', '', '', '0000-00-00', 4499, '', NULL), (4500, 1929, '', '', '', '0000-00-00', 4500, '', NULL), (4501, 1930, '', '', '', '0000-00-00', 4501, '', NULL), (4502, 1931, '', 'Gauge (E-', 'Range: 250K', '2006-12-14', 4502, '12/14/2006', NULL), (4503, 1932, '', '', '', '0000-00-00', 4503, '', NULL), (4504, 1933, 'S/N 136', 'BK CM-215 Digital Compression Machine (E-4)', 'Range:2K to 25K / 25K to 250K', '2006-12-04', 4504, '12/4/2006', NULL), (4505, 1934, '', '', '', '0000-00-00', 4505, '', NULL), (4506, 1935, '', 'with Extra Gauge ', 'Range: 20K to 200K', '2007-05-11', 4506, '5/11/2007', NULL), (4507, 1936, 'S/N 139', 'Gilson HM278 Gyratory Compactor Model 144 (ManSpecs)', 'Range: (Can\'t Find)', '2005-12-06', 4507, '12/6/2005', NULL), (4508, 1937, '', '', '', '0000-00-00', 4508, '', NULL), (4509, 1938, '', '', '', '0000-00-00', 4509, '', NULL), (4510, 1939, 'S/N 97103', 'Forney F-2500-LC1 Dig. Comp. Machine w/forney DR2001 Dig', 'Range 3,000-250,000 lbs.', '2001-06-07', 4510, '6/7/2001', NULL), (4511, 1940, '', '', '', '0000-00-00', 4511, '', NULL), (4512, 1941, '', '', '', '0000-00-00', 4512, '', NULL), (4513, 1942, '', '', '', '0000-00-00', 4513, '', NULL), (4514, 1943, '', '', '', '0000-00-00', 4514, '', NULL), (4515, 1944, '', '', '', '0000-00-00', 4515, '', NULL), (4516, 1945, '', '', '', '0000-00-00', 4516, '', NULL), (4517, 1946, '', '', '', '0000-00-00', 4517, '', NULL), (4518, 1947, '', '', '', '0000-00-00', 4518, '', NULL), (4519, 1948, '', '', '', '0000-00-00', 4519, '', NULL), (4520, 1949, 'S/N 83006 ', 'Soiltest RM-710 Hammer (ID# C6000) (C-805)', 'Range: Per Manufacturer 62 +/- 2', '2012-11-19', 4520, '11/19/2012', NULL), (4521, 1950, '', '', '', '0000-00-00', 4521, '', NULL), (4522, 1951, '', '', '', '0000-00-00', 4522, '', NULL), (4523, 1952, '', '', '', '0000-00-00', 4523, '', NULL), (4524, 1953, '', '', '', '0000-00-00', 4524, '', NULL), (4525, 1954, '', '', '', '0000-00-00', 4525, '', NULL), (4526, 1955, '', '', '', '0000-00-00', 4526, '', NULL), (4527, 1956, 'S/N', 'Forney Press-Aire Meter Gauge', 'Range:', NULL, 4527, 'New', NULL), (4528, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 4528, 'New', NULL), (4529, 1958, 'S/N 2072799', 'Extra Gauge for Post Tension Jack--Gauge A', '', '2003-09-16', 4529, '9/16/2003', NULL), (4530, 1959, 'S/N 106', 'Ashcroft Gauge', 'Range: 0-60psi', '2002-11-22', 4530, '11/22/2002', NULL), (4531, 1960, 'S/N 370', ' w/ Pressure Transducer E-124', '', '0000-00-00', 4531, '', NULL), (4532, 1961, 'S/N NAL-1596', 'Columbine Accuralite Tensiometer (E-4)', 'Range: 50 lbs to 500 lbs ', '2007-11-20', 4532, '11/20/2007', NULL), (4533, 1962, '', 'Starrett Dial Indicator (In House)', '', '1996-11-25', 4533, '11/25/1996', NULL), (4534, 1963, '', '', '', '0000-00-00', 4534, '', NULL), (4535, 1964, 'S/N PTJ-4-798', 'Finger Joint Tester', 'Range:', '2001-11-15', 4535, '11/15/2001', NULL), (4536, 1965, '', '', '', '0000-00-00', 4536, '', NULL), (4537, 1966, '', '', '', '0000-00-00', 4537, '', NULL), (4538, 1967, 'S/N 029', 'Soiltest Versa Tester Model AP-1015 (E-4)', 'Range: 12K / 60K', '2003-11-04', 4538, '11/4/2003', NULL), (4539, 1968, '', '', '', '0000-00-00', 4539, '', NULL), (4540, 1969, '', '', '', '0000-00-00', 4540, '', NULL), (4541, 1970, '', '', '', '0000-00-00', 4541, '', NULL), (4542, 1971, 'S/N 9817', 'ELE Compression Machine--Model CT-7251', 'Range: 250K (E-4 & C-39)', '2001-12-20', 4542, '12/20/2001', NULL), (4543, 1972, 'S/N 1530', 'Rainhart Beam Breaker (E-4)', 'Range: 12,000 lbs..', '2002-11-19', 4543, '11/19/2002', NULL), (4544, 1973, 'S/N 12795', 'Soiltest Hammer', '', '1998-06-12', 4544, '6/12/1998', NULL), (4545, 1974, '', '', '', '0000-00-00', 4545, '', NULL), (4546, 1975, 'S/N 482', 'Pine Instrument AFG1A Gyratory Compactor', 'Range:', NULL, 4546, 'New', NULL), (4547, 1976, '', '', '', '0000-00-00', 4547, '', NULL), (4548, 1977, 'S/N 101862', 'Zwick Model 1474 Compression Machine (Tensile only)', 'Range 100 Kn (approx. 20 Kip)', '1996-11-11', 4548, '11/11/1996', NULL), (4549, 1978, '', '', '', '0000-00-00', 4549, '', NULL), (4550, 1979, 'S/N 21275', 'Bynum Prestress Jack MPU-3 w/ additional gauge ', 'Range: 3K/35K/35K (E-4 & PCI)', '2005-11-15', 4550, '11/15/2005', NULL), (4551, 1980, '', '', '', '0000-00-00', 4551, '', NULL), (4552, 1981, '', '', '', '0000-00-00', 4552, '', NULL), (4553, 1982, '', '', '', '0000-00-00', 4553, '', NULL), (4554, 1983, '', '', '', '0000-00-00', 4554, '', NULL), (4555, 1984, '', '', '', '0000-00-00', 4555, '', NULL), (4556, 1985, '', ' w/Beam Frame Channel #2', 'Range: 200 lbs to 20K', '2007-12-07', 4556, '12/7/2007', NULL), (4557, 1986, 'S/N 9201', 'Prestress Jack Model F549 (Florida Wire) (E-4 & PCI)', 'Range: 4K/35K ', '2006-12-05', 4557, '12/5/2006', NULL), (4558, 1987, '', ' w/Gauge ', 'Range: 60K ', '2007-12-10', 4558, '12/10/2007', NULL), (4559, 1988, 'S/N ECA448', 'Power Team Model C Post Tension Jack (E-4)', 'Range: 35K (6900 PSI)', '2008-05-21', 4559, '5/21/2008', NULL), (4560, 1989, 'S/N 80157-00100', ' w/ 2 Extra Gauges', 'Range: 30,000 kg / 100,000 kg', '2008-05-15', 4560, '5/15/2008', NULL), (4561, 1990, 'S/N Unknown ', 'Powerteam Post Tension Jack (E-4 & PCI)', 'Range: 35K', '2008-12-10', 4561, '12/10/2008', NULL), (4562, 1991, '', '', '', '0000-00-00', 4562, '', NULL), (4563, 1992, '', '', '', '0000-00-00', 4563, '', NULL), (4564, 1993, '', '', '', '0000-00-00', 4564, '', NULL), (4565, 1994, 'S/N 97103', 'Forney F-2500-DR2001 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2008-12-11', 4565, '12/11/2008', NULL), (4566, 1995, '', '', '', '0000-00-00', 4566, '', NULL), (4567, 1996, '', 'Machine sold to Rodriguez Ready Mix per Maria 6/12', '', '0000-00-00', 4567, '', NULL), (4568, 1997, 'S/N 24812', 'Soiltest AP-170-C Single Proving Ring (E-4 & Man Specs)', 'Cap: 6K Plant #1 (OOS)', '2006-12-09', 4568, '12/9/2006', NULL), (4569, 1998, '', '', '', '0000-00-00', 4569, '', NULL), (4570, 1999, '', '', '', '0000-00-00', 4570, '', NULL), (4571, 2000, 'S/N 1130795', ' w/Total Comp Load Cell (E-4)', 'Range: 10K', '2012-10-04', 4571, '10/4/2012', NULL), (4572, 2001, '', '', '', '0000-00-00', 4572, '', NULL), (4573, 2002, '', '', '', '0000-00-00', 4573, '', NULL), (4574, 2003, '', '', '', '0000-00-00', 4574, '', NULL), (4575, 2004, '', '', '', '0000-00-00', 4575, '', NULL), (4576, 2005, 'S/N M-1685', 'Wabash 50 Ton Press PRE02 (E-4 & 2%)', 'Range: 50 ton', '2012-10-18', 4576, '10/18/2012', NULL), (4577, 2006, 'S/N 38061-Y23163', 'CSI Digital Load Cell System C-S-100-1S w/ Load Cell CS20001-T10 ', 'Range: 20 lbs to 5K (E-4)', '2012-10-17', 4577, '10/17/2012', NULL), (4578, 2007, 'S/N 1237', 'Humboldt Mdl. H-4454A Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2012-10-17', 4578, '10/17/2012', NULL), (4579, 2008, 'S/N Unknown', 'Koppers Static Beam Tester (E-4 & 2%)', 'Range: 75K / 150K', '2012-10-16', 4579, '10/16/2012', NULL), (4580, 2009, 'S/N 208390 ', ' w/ 1K Load Cell T & C (E-4) ', 'Range: 50lbs/100lbs/200lbs/500lbs/1K', '2011-10-18', 4580, '10/18/2011', NULL), (4581, 2010, '', '', '', '0000-00-00', 4581, '', NULL), (4582, 2011, '', '', '', '0000-00-00', 4582, '', NULL), (4583, 2012, '', '', '', '0000-00-00', 4583, '', NULL), (4584, 2013, '', '', '', '0000-00-00', 4584, '', NULL), (4585, 2014, '', '', '', '0000-00-00', 4585, '', NULL), (4586, 2015, 'S/N', 'Vacuum Gauge (E-4)', 'Range: 15 in Hg', NULL, 4586, 'New', NULL), (4587, 2016, 'S/N 149548', 'Proceq Schmidt N-34 Hammer (C-805)', 'Range: 78- 82 ', '2012-10-22', 4587, '10/22/2012', NULL), (4588, 2017, '', '', '', '0000-00-00', 4588, '', NULL), (4589, 2018, '', '', '', '0000-00-00', 4589, '', NULL), (4590, 2019, '', '', '', '0000-00-00', 4590, '', NULL), (4591, 2020, '', '', '', '0000-00-00', 4591, '', NULL), (4592, 2021, '', ' (with 2nd Channel input)', '', '0000-00-00', 4592, '', NULL), (4593, 2022, 'S/N 1427', 'with Pine Instruments Proving Ring Model AFGCLR05C', 'Range: 5,000 lbs', '2003-10-13', 4593, '10/13/2003', NULL), (4594, 2023, '', '', '', '0000-00-00', 4594, '', NULL), (4595, 2024, '', '', '', '0000-00-00', 4595, '', NULL), (4596, 2025, '', '', '', '0000-00-00', 4596, '', NULL), (4597, 2026, '', '', '', '0000-00-00', 4597, '', NULL), (4598, 2027, '', '', '', '0000-00-00', 4598, '', NULL), (4599, 2028, '', '', '', '0000-00-00', 4599, '', NULL), (4600, 2029, '', '', '', '0000-00-00', 4600, '', NULL), (4601, 2030, '', '', '', '0000-00-00', 4601, '', NULL), (4602, 2031, '', '', '', '0000-00-00', 4602, '', NULL), (4603, 2032, '', '', '', '0000-00-00', 4603, '', NULL), (4604, 2033, '', '', '', '0000-00-00', 4604, '', NULL), (4605, 2034, 'S/N 98086', 'Forney F-400E-F96-SPL Compression Machine (E-4)', 'Range 400K', '2000-07-10', 4605, '7/10/2000', NULL), (4606, 2035, '', '', '', '0000-00-00', 4606, '', NULL), (4607, 2036, '', '', '', '0000-00-00', 4607, '', NULL), (4608, 2037, '', '', '', '0000-00-00', 4608, '', NULL), (4609, 2038, '', '', '', '0000-00-00', 4609, '', NULL), (4610, 2039, 'S/N', 'Pine Asphalt Tester', 'Range:', NULL, 4610, 'New', NULL), (4611, 2040, '', '', '', '0000-00-00', 4611, '', NULL), (4612, 2041, '', '', '', '0000-00-00', 4612, '', NULL), (4613, 2042, '', '', '', '0000-00-00', 4613, '', NULL), (4614, 2043, 'S/N 85075', 'Forney FT-40 Compression Machine (MOVED) (E-4)', 'Range: 25/250K', '2005-10-04', 4614, '10/4/2005', NULL), (4615, 2044, '', '', '', '0000-00-00', 4615, '', NULL), (4616, 2045, 'S/N 177', 'Boart Longyear CM-200 w/E400 Digital Compression Machine (E-4)', 'Range: 20K to 300K', '2006-10-11', 4616, '10/11/2006', NULL), (4617, 2046, '', '', '', '0000-00-00', 4617, '', NULL), (4618, 2047, '', '', '', '0000-00-00', 4618, '', NULL), (4619, 2048, '', '', '', '0000-00-00', 4619, '', NULL), (4620, 2049, '', '', '', '0000-00-00', 4620, '', NULL), (4621, 2050, 'S/N 85046', 'Houston Inst. XY Flatbed Recorder Model 2000 (E-83)', 'Range 30/60/150/350K', '2002-10-21', 4621, '10/21/2002', NULL), (4622, 2051, 'S/N 2172', 'Skidmore Wilhelm Bolt Tester Model M (E-4)', 'Range 100K', '1998-11-11', 4622, '11/11/1998', NULL), (4623, 2052, '', '', '', '0000-00-00', 4623, '', NULL), (4624, 2053, 'S/N 5570', 'Skidmore Wilhelm Bolt Tester Model R (E-4)', 'Range 110K', '1998-11-11', 4624, '11/11/1998', NULL), (4625, 2054, 'S/N 99130', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 250K', '2005-11-22', 4625, '11/22/2005', NULL), (4626, 2055, '', '', '', '0000-00-00', 4626, '', NULL), (4627, 2056, '', '', '', '0000-00-00', 4627, '', NULL), (4628, 2057, 'S/N 72175', 'Forney FT-40 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2007-10-23', 4628, '10/23/2007', NULL), (4629, 2058, 'S/N 109', ' w/Gauge (E', 'Range: 350K', '2008-10-22', 4629, '10/22/2008', NULL), (4630, 2059, '', '', '', '0000-00-00', 4630, '', NULL), (4631, 2060, '', '', '', '0000-00-00', 4631, '', NULL), (4632, 2061, 'S/N 62132', 'Forney PT-125 Pipe Tester', 'Range: 25,000 lbs to 250,000 lbs', '2003-10-21', 4632, '10/21/2003', NULL), (4633, 2062, '', '', '', '0000-00-00', 4633, '', NULL), (4634, 2063, '', '', '', '0000-00-00', 4634, '', NULL), (4635, 2064, '', '', '', '0000-00-00', 4635, '', NULL), (4636, 2065, '', '', '', '0000-00-00', 4636, '', NULL), (4637, 2066, 'S/N 2A', 'BK Pore Pressure System (OOS) (D-5720)', 'Cap: 200 psi', '2007-10-10', 4637, '10/10/2007', NULL), (4638, 2067, '', '', '', '0000-00-00', 4638, '', NULL), (4639, 2068, '', '', '', '0000-00-00', 4639, '', NULL), (4640, 2069, 'S/N 02013', 'FX-250E-PILOT (Attached to Forney LA-0270-99) (E-4)', 'Range: 250K', '2007-01-02', 4640, '1/2/2007', NULL), (4641, 2070, '', '', '', '0000-00-00', 4641, '', NULL), (4642, 2071, 'S/N 5940', 'Forney QC-150 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2006-10-30', 4642, '10/30/2006', NULL), (4643, 2072, 'S/N 20383', ' Actuator LVDT Displacement (E-2309) ', 'Range: +/-50 mm', '2006-10-24', 4643, '10/24/2006', NULL), (4644, 2073, 'S/N 18384', 'RDP Electronics LVDT RADIAL 2 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 4644, '10/24/2006', NULL), (4645, 2074, '', ' w/Gauges #231, #1, #3010, #801, #225, #20', 'Range: 35K', '2007-11-14', 4645, '11/14/2007', NULL), (4646, 2075, 'S/N STR-E3', 'Bymun Prestress Jack (Gas) (E-4 & PCI) OUT OF SERVICE', 'Range: 35K', NULL, 4646, 'New', NULL), (4647, 2076, 'S/N 674', 'Soiltest CT-710 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2007-07-30', 4647, '7/30/2007', NULL), (4648, 2077, '', '', '', '0000-00-00', 4648, '', NULL), (4649, 2078, 'S/N 87103-0710302 ', 'Cal-Teck CT-250-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2K to 250K', '2012-10-22', 4649, '10/22/2012', NULL), (4650, 2079, 'S/N 64004-031111', 'Forney LT-900-2AG Compression Machine (E-4)', 'Range: Dig 3K-400K Gauge: 40K-400K', '2012-10-23', 4650, '10/23/2012', NULL), (4651, 2080, 'S/N 1519', 'GEOJAC Load Cell (E-4)', 'Range: 20 lbs to 2,000 lbs', '2012-10-23', 4651, '10/23/2012', NULL), (4652, 2081, '', '', '', '0000-00-00', 4652, '', NULL), (4653, 2082, '', '', '', '0000-00-00', 4653, '', NULL), (4654, 2083, 'S/N TW4879', ' w/Gauges #1,#224, #230, #3010,#2, #20', 'Range: 35 K ', '2008-05-13', 4654, '5/13/2008', NULL), (4655, 2084, 'S/N 14117 NC#15', 'HCS Hydraulic Load Cell (E-4 2% ManSpecs)', 'Range: 60K', '2013-06-13', 4655, '6/13/2013', NULL), (4656, 2085, '', '', '', '0000-00-00', 4656, '', NULL), (4657, 2086, 'S/N 1125 (ID# Y0020II)', 'Satec/Instron MII 50UD w/4 T & C Load Cells (E-4)', '', '2013-09-04', 4657, '9/4/2013', NULL), (4658, 2087, 'S/N', ' w/ Gauge Mdl. HA-0380', 'Range:', '0000-00-00', 4658, '', NULL), (4659, 2088, '', '', '', '0000-00-00', 4659, '', NULL), (4660, 2089, 'S/N 87081', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2013-09-03', 4660, '9/3/2013', NULL), (4661, 2090, 'S/N 22923', 'Soiltest Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2012-09-06', 4661, '9/6/2012', NULL), (4662, 2091, 'S/N 9926-0410273', 'Soiltest 36-0650/02-CS-100-2A Digital Compression Machine (E-4)', 'Range: 1K to 250K ', '2013-09-04', 4662, '9/4/2013', NULL), (4663, 2092, 'S/N 06/188038', ' w/Paul Prestress Jack 1/2 Inch Ram - Channel 2 ', 'Range:18 KN/156 KN (E-4 & PCI & 2%)', '2013-09-03', 4663, '9/3/2013', NULL), (4664, 2093, 'S/N AE40112399', 'Adam CPW Plus 75 Scale (E-898)', 'Range: 165 lbs.', '2013-09-10', 4664, '9/10/2013', NULL), (4665, 2094, 'S/N 11108', 'Hamilton Mdl. PUA-500 Prestress Jack (E-4 & PCI)', 'Range: 3K / 37K', '2013-09-10', 4665, '9/10/2013', NULL), (4666, 2095, '', '', '', '0000-00-00', 4666, '', NULL), (4667, 2096, 'S/N 19004', ' w/ Cylinder Frame Channel #0 (E-4)', 'Range: 300K ', '2013-09-24', 4667, '9/24/2013', NULL), (4668, 2097, '', '', '', '0000-00-00', 4668, '', NULL), (4669, 2098, 'S/N 24176', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', '2012-09-25', 4669, '9/25/2012', NULL), (4670, 2099, '', '', '', '0000-00-00', 4670, '', NULL), (4671, 2100, '', '', '', '0000-00-00', 4671, '', NULL), (4672, 2101, '', '', '', '0000-00-00', 4672, '', NULL), (4673, 2102, '', '', '', '0000-00-00', 4673, '', NULL), (4674, 2103, '', '', '', '0000-00-00', 4674, '', NULL), (4675, 2104, '', '', '', '0000-00-00', 4675, '', NULL), (4676, 2105, '', '', '', '0000-00-00', 4676, '', NULL), (4677, 2106, 'S/N M93869', 'Swiss Hammer Conrols Type N (C-805)', '', '2006-09-26', 4677, '9/26/2006', NULL), (4678, 2107, '', '', '', '0000-00-00', 4678, '', NULL), (4679, 2108, '', '', '', '0000-00-00', 4679, '', NULL), (4680, 2109, 'S/N UK77', 'Inston Load Cell Model 1603 w/ Auto Range (T & C)', 'Range 20K', '1996-08-06', 4680, '8/6/1996', NULL), (4681, 2110, '', '', '', '0000-00-00', 4681, '', NULL), (4682, 2111, 'S/N 88177', 'Forney QC-410-01 Compression Machine (E-4)', 'Range: 400K', '2002-09-19', 4682, '9/19/2002', NULL), (4683, 2112, '', 'with extra gauge Model CT-768D', '', '1997-09-16', 4683, '9/16/1997', NULL), (4684, 2113, 'S/N', 'Extra Cartridge for Displacement', 'Range +/- 5.0 Inch', NULL, 4684, 'NEW', NULL), (4685, 2114, '', '', '', '0000-00-00', 4685, '', NULL), (4686, 2115, 'S/N 16020', 'Soiltest CBR Proving Ring (In-House)', 'Range 2,000 lbs. (E-4)', '2003-09-17', 4686, '9/17/2003', NULL), (4687, 2116, 'S/N C80054', 'Interface Load Cell w/ M-Test Windows (E-4)', 'Range: 5,000 lbs.', '2000-11-27', 4687, '11/27/2000', NULL), (4688, 2117, '', '', '', '0000-00-00', 4688, '', NULL), (4689, 2118, '', '', '', '0000-00-00', 4689, '', NULL), (4690, 2119, '', '', '', '0000-00-00', 4690, '', NULL), (4691, 2120, '', '', '', '0000-00-00', 4691, '', NULL), (4692, 2121, '', '', '', '0000-00-00', 4692, '', NULL), (4693, 2122, '', '', '', '0000-00-00', 4693, '', NULL), (4694, 2123, '', ' with Testmark TM-4000-D Digital', '', '0000-00-00', 4694, '', NULL), (4695, 2124, '', '', '', '0000-00-00', 4695, '', NULL), (4696, 2125, '', '', '', '0000-00-00', 4696, '', NULL), (4697, 2126, 'S/N 63093-2', 'Wykeham-Farrance Model WF-55738 with Digicom', 'Range 20-250K', '1998-09-09', 4697, '9/9/1998', NULL), (4698, 2127, '', '', '', '0000-00-00', 4698, '', NULL), (4699, 2128, 'S/N 23536', 'Soiltest Proving Ring', 'Cap: 250 lbs', '2001-09-07', 4699, '9/7/2001', NULL), (4700, 2129, '', '', '', '0000-00-00', 4700, '', NULL), (4701, 2130, '', '', '', '0000-00-00', 4701, '', NULL), (4702, 2131, '', '', '', '0000-00-00', 4702, '', NULL), (4703, 2132, 'S/N P-392', 'Gauge (In House) OUT OF SERVICE', '', '1997-05-22', 4703, '5/22/1997', NULL), (4704, 2133, '', '', '', '0000-00-00', 4704, '', NULL), (4705, 2134, '', '', '', '0000-00-00', 4705, '', NULL), (4706, 2135, 'S/N 00119', 'Forney F-40F-F96 Digital Compression Machine (SOLD) (E-4)', 'Range: 400K', '2004-08-03', 4706, '8/3/2004', NULL), (4707, 2136, '', '', '', '0000-00-00', 4707, '', NULL), (4708, 2137, 'S/N 3021', 'Skidmore Testing Machine Model M', 'Range 110K', '1996-03-20', 4708, '3/20/1996', NULL), (4709, 2138, '', 'NO LONGER HAS MACHINE!', '', '0000-00-00', 4709, '', NULL), (4710, 2139, '', '', '', '0000-00-00', 4710, '', NULL), (4711, 2140, '', '', '', '0000-00-00', 4711, '', NULL), (4712, 2141, '', '', '', '0000-00-00', 4712, '', NULL), (4713, 2142, '', '', '', '0000-00-00', 4713, '', NULL), (4714, 2143, 'S/N', 'Forney LT-1000 Compression Machine (E-4)', 'Range: 560K', NULL, 4714, 'New', NULL), (4715, 2144, '', '', '', '0000-00-00', 4715, '', NULL), (4716, 2145, '', '', '', '0000-00-00', 4716, '', NULL), (4717, 2146, '', '', '', '0000-00-00', 4717, '', NULL), (4718, 2147, '', ' with Load Cell (In House)', '', '0000-00-00', 4718, '', NULL), (4719, 2148, 'S/N 0520236', 'Cooper Digital Model DF1 (OOS)', 'Range:200 lbs to 20,000 lbs', '2005-09-14', 4719, '9/14/2005', NULL), (4720, 2149, 'S/N 429549', 'Druck Pressure Transducer System', 'Cap: 275 psi', '0000-00-00', 4720, '', NULL), (4721, 2150, '', ' w/ Shear Force 1000 lb (E-4)', 'Range: 20 lbs to 1,500 lbs ', '2006-09-12', 4721, '9/12/2006', NULL), (4722, 2151, '', '', '', '0000-00-00', 4722, '', NULL), (4723, 2152, 'S/N 4085', 'Karol Warner 9210 Vaccum Gauge (ManSpecs & 0.5% FS)', 'Range: 800mmHg', '2013-04-10', 4723, '4/10/2013', NULL), (4724, 2153, '', '', '', '0000-00-00', 4724, '', NULL), (4725, 2154, '', '', '', '0000-00-00', 4725, '', NULL), (4726, 2155, '', '', '', '0000-00-00', 4726, '', NULL), (4727, 2156, '', '', '', '0000-00-00', 4727, '', NULL), (4728, 2157, 'S/N A1-500', 'Geotest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2013-09-23', 4728, '9/23/2013', NULL), (4729, 2158, '', '', '', '0000-00-00', 4729, '', NULL), (4730, 2159, '', '', '', '0000-00-00', 4730, '', NULL), (4731, 2160, 'S/N H362', 'HCN Dial Indicator (OOS) (D-6027)', '', '2009-08-26', 4731, '8/26/2009', NULL), (4732, 2161, '', '', '', '0000-00-00', 4732, '', NULL), (4733, 2162, '', '', '', '0000-00-00', 4733, '', NULL), (4734, 2163, '', '', '', '0000-00-00', 4734, '', NULL), (4735, 2164, '', '', '', '0000-00-00', 4735, '', NULL), (4736, 2165, '', '', '', '0000-00-00', 4736, '', NULL), (4737, 2166, '', '', '', '0000-00-00', 4737, '', NULL), (4738, 2167, '', '', '', '0000-00-00', 4738, '', NULL), (4739, 2168, '', '', '', '0000-00-00', 4739, '', NULL), (4740, 2169, '', '', '', '0000-00-00', 4740, '', NULL), (4741, 2170, '', '', '', '0000-00-00', 4741, '', NULL), (4742, 2171, '', '', '', '0000-00-00', 4742, '', NULL), (4743, 2172, '', '', '', '0000-00-00', 4743, '', NULL), (4744, 2173, '', '', '', '0000-00-00', 4744, '', NULL), (4745, 2174, '', '', '', '0000-00-00', 4745, '', NULL), (4746, 2175, '', '', '', '0000-00-00', 4746, '', NULL), (4747, 2176, '', '', '', '0000-00-00', 4747, '', NULL), (4748, 2177, '', '', '', '0000-00-00', 4748, '', NULL), (4749, 2178, '', '', '', '0000-00-00', 4749, '', NULL), (4750, 2179, '', '', '', '0000-00-00', 4750, '', NULL), (4751, 2180, '', '', '', '0000-00-00', 4751, '', NULL), (4752, 2181, '', '', '', '0000-00-00', 4752, '', NULL), (4753, 2182, '', '', '', '0000-00-00', 4753, '', NULL), (4754, 2183, '', '', '', '0000-00-00', 4754, '', NULL), (4755, 2184, '', '', '', '0000-00-00', 4755, '', NULL), (4756, 2185, '', '', '', '0000-00-00', 4756, '', NULL), (4757, 2186, '', '', '', '0000-00-00', 4757, '', NULL), (4758, 2187, '', '', '', '0000-00-00', 4758, '', NULL), (4759, 2188, '', '', '', '0000-00-00', 4759, '', NULL), (4760, 2189, '', '', '', '0000-00-00', 4760, '', NULL), (4761, 2190, '', '', '', '0000-00-00', 4761, '', NULL), (4762, 2191, '', '', '', '0000-00-00', 4762, '', NULL), (4763, 2192, '', '', '', '0000-00-00', 4763, '', NULL), (4764, 2193, '', '', '', '0000-00-00', 4764, '', NULL), (4765, 2194, '', '', '', '0000-00-00', 4765, '', NULL), (4766, 2195, '', '', '', '0000-00-00', 4766, '', NULL), (4767, 2196, 'S/N 0507225/7', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 4767, '8/27/2013', NULL), (4768, 2197, 'S/N 1351', 'Rainhart Beam Tester Unit B (E-4) (MOVED)', 'Range: 12K', '2006-02-13', 4768, '2/13/2006', NULL), (4769, 2198, '', '', '', '0000-00-00', 4769, '', NULL), (4770, 2199, '', '', '', '0000-00-00', 4770, '', NULL), (4771, 2200, '', '', '', '0000-00-00', 4771, '', NULL), (4772, 2201, '', '', '', '0000-00-00', 4772, '', NULL), (4773, 2202, 'S/N 012991341', 'Geotest Mdl. S2000 Unconfined Double Proving Ring', 'Cap: 1K (E-4 & Man Specs)', '2009-02-16', 4773, '2/16/2009', NULL), (4774, 2203, '', '', '', '0000-00-00', 4774, '', NULL), (4775, 2204, 'S/N 88098', 'Forney QC-410-F96 Digital Compression Machine (E-4)', 'Range: 400K', NULL, 4775, 'New', NULL), (4776, 2205, '', ' w/ Shear Force Load Cell (E-4)', 'Range: 5K', NULL, 4776, 'New', NULL), (4777, 2206, 'S/N 1336X72', 'Lotes Model LT-10 Digital Compression Machine (E-4)', 'Range: 200 lbs to 10K (ID# 012)', '2009-03-17', 4777, '3/17/2009', NULL), (4778, 2207, 'S/N 24664', 'Wykehame Farrance Triaxial Load Cell STALC3-5KN (E-4)', 'Range: 5KN', '2005-02-21', 4778, '2/21/2005', NULL), (4779, 2208, 'S/N 1727-1-10016', 'Multiplex 50 ELE Soiltest (E4)', 'Range: 28 KN / 6K', '2005-02-21', 4779, '2/21/2005', NULL), (4780, 2209, 'S/N F7646', 'Powerteam Post Tension Jack (E-4 & PCI)', 'Range: 45K (I Year Schedule) (OOS)', '2010-01-21', 4780, '1/21/2010', NULL), (4781, 2210, 'S/N 289', 'BK Panel--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 4781, '8/30/2006', NULL), (4782, 2211, '', '', '', '0000-00-00', 4782, '', NULL), (4783, 2212, 'S/N 118865 ', 'Tinius Olsen Mechanical Extensometer (E-83) ', 'Range: 0.006 in/in ', '2008-01-14', 4783, '1/14/2008', NULL), (4784, 2213, '', '', '', '0000-00-00', 4784, '', NULL), (4785, 2214, '', '', '', '0000-00-00', 4785, '', NULL), (4786, 2215, '', '', '', '0000-00-00', 4786, '', NULL), (4787, 2216, '', '', '', '0000-00-00', 4787, '', NULL), (4788, 2217, '', '', '', '0000-00-00', 4788, '', NULL), (4789, 2218, '', '', '', '0000-00-00', 4789, '', NULL), (4790, 2219, 'S/N 55972', ' w/Compression Load Cell 2519-107 (E-4)', 'Range: 10 lbs to 1,124 lbs', '2008-04-23', 4790, '4/23/2008', NULL), (4791, 2220, 'S/N 050916', 'Enerpac Model A258 Pushout Tester w/CS-100-1S Dig. (E-4)', 'Range: 8K (ID# ANC 0848) ', '2009-08-13', 4791, '8/13/2009', NULL), (4792, 2221, '', '', '', '0000-00-00', 4792, '', NULL), (4793, 2222, 'S/N 0612TR50-05', ' w/ Vertical LVDT (D-6027) OOS', 'Range: 1 inch', '2010-04-01', 4793, '4/1/2010', NULL), (4794, 2223, '', '', '', '0000-00-00', 4794, '', NULL), (4795, 2224, '', '', '', '0000-00-00', 4795, '', NULL), (4796, 2225, '', '', '', '0000-00-00', 4796, '', NULL), (4797, 2226, '', '', '', '0000-00-00', 4797, '', NULL), (4798, 2227, 'S/N 177', 'Boart Longyear CM-200 w/E400 Digital Compression Machine (E-4)', 'Range: 20K to 300K', '2006-10-11', 4798, '10/11/2006', NULL), (4799, 2228, 'S/N 06355226AF', 'Ohaus Scale Mdl. ES5OR ', 'Range: 110 lbs', '2007-05-01', 4799, '5/1/2007', NULL), (4800, 2229, 'S/N 86121', 'Forney QC-200-DR Compression Machine (E-4)', 'Range: 30K / 400K ', '2008-08-13', 4800, '8/13/2008', NULL), (4801, 2230, '', '', '', '0000-00-00', 4801, '', NULL), (4802, 2231, '', '', '', '0000-00-00', 4802, '', NULL), (4803, 2232, '120321-199', ' **S/N too long did not fi', '', '0000-00-00', 4803, '', NULL), (4804, 2233, '', '', '', '0000-00-00', 4804, '', NULL), (4805, 2234, '', '', '', '0000-00-00', 4805, '', NULL), (4806, 2235, '', ' w/ 8\" Gauges Hand Pump', '', '0000-00-00', 4806, '', NULL), (4807, 2236, '', '', '', '0000-00-00', 4807, '', NULL), (4808, 2237, '', '', '', '0000-00-00', 4808, '', NULL), (4809, 2238, '', '', '', '0000-00-00', 4809, '', NULL), (4810, 2239, 'S/N 101', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 100 PSI', '2009-02-13', 4810, '2/13/2009', NULL), (4811, 2240, '', '', '', '0000-00-00', 4811, '', NULL), (4812, 2241, '', '', '', '0000-00-00', 4812, '', NULL), (4813, 2242, 'S/N 58990-1011', ' w/ 2000 Recorder (E-83)', 'Range: 6K/30K/120K/300K', NULL, 4813, 'New', NULL), (4814, 2243, '', '', '', '0000-00-00', 4814, '', NULL), (4815, 2244, '', '', '', '0000-00-00', 4815, '', NULL), (4816, 2245, '', '', '', '0000-00-00', 4816, '', NULL), (4817, 2246, '', '', '', '0000-00-00', 4817, '', NULL), (4818, 2247, '', '', '', '0000-00-00', 4818, '', NULL), (4819, 2248, '', ' Campbell ID #FO8006', '', '0000-00-00', 4819, '', NULL), (4820, 2249, 'S/N 470', 'Ametek Pull Tester Model L-30 (E-4)', 'Range: 30 lb.', '1998-04-28', 4820, '4/28/1998', NULL), (4821, 2250, 'S/N 68264-00112', ' w/ Gauge (E-4)', 'Range: 600K', '2014-10-06', 4821, '10/6/2014', NULL), (4822, 2251, 'S/N 13303', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 250K', '2007-04-13', 4822, '4/13/2007', NULL), (4823, 2252, '', '', '', '0000-00-00', 4823, '', NULL), (4824, 2253, '', '', '', '0000-00-00', 4824, '', NULL), (4825, 2254, '', '', '', '0000-00-00', 4825, '', NULL), (4826, 2255, '', '', '', '0000-00-00', 4826, '', NULL), (4827, 2256, 'S/N 523725', 'Satec Emery Mdl. UVI/V Displacement (Digital) (E-2309)', 'Range: 4 Inches ', '2010-10-20', 4827, '10/20/2010', NULL), (4828, 2257, 'S/N ', 'Soiltest Dial Indicator (OOS) (D-6027)', 'Range: 0.4 inch ', NULL, 4828, 'New', NULL), (4829, 2258, '', '', '', '0000-00-00', 4829, '', NULL), (4830, 2259, '', '', '', '0000-00-00', 4830, '', NULL), (4831, 2260, '', '', '', '0000-00-00', 4831, '', NULL), (4832, 2261, '', '', '', '0000-00-00', 4832, '', NULL), (4833, 2262, '', '', '', '0000-00-00', 4833, '', NULL), (4834, 2263, '', '', '', '0000-00-00', 4834, '', NULL), (4835, 2264, 'S/N', ' w/ Gauge Mdl. HA-0380', 'Range:', '0000-00-00', 4835, '', NULL), (4836, 2265, 'S/N 757', ' with Test Spring Model 850', '', '0000-00-00', 4836, '', NULL), (4837, 2266, 'S/N 238', ' with Test Spring', '', '2011-03-09', 4837, '3/9/2011', NULL), (4838, 2267, 'S/N 74126', 'Hydrotile PT Pipe Tester', 'Range 50/400K', '1995-08-19', 4838, '8/19/1995', NULL), (4839, 2268, '', '', '', '0000-00-00', 4839, '', NULL), (4840, 2269, '', '', '', '0000-00-00', 4840, '', NULL), (4841, 2270, '', '', '', '0000-00-00', 4841, '', NULL), (4842, 2271, '', '', '', '0000-00-00', 4842, '', NULL), (4843, 2272, '', '', '', '0000-00-00', 4843, '', NULL), (4844, 2273, '', '', '', '0000-00-00', 4844, '', NULL), (4845, 2274, 'S/N 208390 ', ' w/ 1K Load Cell T & C (E-4) ', 'Range: 50lbs/100lbs/200lbs/500lbs/1K', '2011-10-18', 4845, '10/18/2011', NULL), (4846, 2275, '', '', '', '0000-00-00', 4846, '', NULL), (4847, 2276, '', '', '', '0000-00-00', 4847, '', NULL), (4848, 2277, '', '', '', '0000-00-00', 4848, '', NULL), (4849, 2278, '', '', '', '0000-00-00', 4849, '', NULL), (4850, 2279, '', '', '', '0000-00-00', 4850, '', NULL), (4851, 2280, '', '', '', '0000-00-00', 4851, '', NULL), (4852, 2281, 'S/N 157098', 'Tinius Olsen Series 5000 (E-4)', '', '2006-02-27', 4852, '2/27/2006', NULL), (4853, 2282, 'S/N 167293', 'Extensometer-Model S-200-1B (E83-00)', 'Range: 1\" (20%)', '2005-03-30', 4853, '3/30/2005', NULL), (4854, 2283, 'S/N 0225298A', ' with Displacement Card', '5\" Displacement, ID#25-MTS3DC01', '1998-02-25', 4854, '2/25/1998', NULL), (4855, 2284, 'S/N 270/1119', 'MTS Displacement Card LVDT (D-6027)', 'Range: 1\" ID#25-MTS1DC02', '2004-03-23', 4855, '3/23/2004', NULL), (4856, 2285, 'S/N F13127', 'Hamilton Prestress Jack Model P-4500 (E-4 & PCI)', 'Range: 4K / 35K', '2009-07-20', 4856, '7/20/2009', NULL), (4857, 2286, '', '', '', '0000-00-00', 4857, '', NULL), (4858, 2287, 'S/N 5940', 'Forney QC-150 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2006-10-30', 4858, '10/30/2006', NULL), (4859, 2288, '', '', '', '0000-00-00', 4859, '', NULL), (4860, 2289, ' ', ' ', ' ', '0000-00-00', 4860, '', NULL), (4861, 2290, 'S/N 79553', 'Powerteam Beam Breaker (E-4 & Man. Specs.)', 'Range: 10K', '2009-03-26', 4861, '3/26/2009', NULL), (4862, 2291, '', '', '', '0000-00-00', 4862, '', NULL), (4863, 2292, 'S/N 103', 'Soiltest LC3 Dial Indicator (Moved) (D-6027)', 'Range: 0.2 inch ', '2011-02-14', 4863, '2/14/2011', NULL), (4864, 2293, '', '', '', '0000-00-00', 4864, '', NULL), (4865, 2294, '', '', '', '0000-00-00', 4865, '', NULL), (4866, 2295, '', '', '', '0000-00-00', 4866, '', NULL), (4867, 2296, '', '', '', '0000-00-00', 4867, '', NULL), (4868, 2297, '', '', '', '0000-00-00', 4868, '', NULL), (4869, 2298, '', '', '', '0000-00-00', 4869, '', NULL), (4870, 2299, 'S/N 263', 'Pine Instrument Asphalt Tester Model 850 (E4)', 'Range 2.5/5/10K', '2004-02-11', 4870, '2/11/2004', NULL), (4871, 2300, '', '', '', '0000-00-00', 4871, '', NULL), (4872, 2301, '', '(MOVED MACHINE TO LEXINGTON, KY)', '', '0000-00-00', 4872, '', NULL), (4873, 2302, 'S/N 751938', 'Humboldt Load Cell w/ Omega Digital (E-4)', 'Range: 2K', '2008-07-11', 4873, '7/11/2008', NULL), (4874, 2303, 'S/N90106035', 'Com-Ten Tensile Tester--Series 9500 (E-4)', 'Range: 4 lbs', '2008-03-26', 4874, '3/26/2008', NULL), (4875, 2304, '', '', '', '0000-00-00', 4875, '', NULL), (4876, 2305, '', '', '', '0000-00-00', 4876, '', NULL), (4877, 2306, '', '', '', '0000-00-00', 4877, '', NULL), (4878, 2307, '', '', '', '0000-00-00', 4878, '', NULL), (4879, 2308, '', '', '', '0000-00-00', 4879, '', NULL), (4880, 2309, '', '', '', '0000-00-00', 4880, '', NULL), (4881, 2310, '', '', '', '0000-00-00', 4881, '', NULL), (4882, 2311, '', '', '', '0000-00-00', 4882, '', NULL), (4883, 2312, 'S/N', 'Geotac LVDT (D-6027)', 'Range: ', NULL, 4883, 'New', NULL), (4884, 2313, 'S/N 11873', ' w/ LVDT (D-6027)', 'Range: 2 inches ', '2011-03-29', 4884, '3/29/2011', NULL), (4885, 2314, 'S/N 110-T492', 'Brainard Killman Pressure Transducer w/E-124 Digital(D-5720) ', 'Cap: 15 psi to 150 psi OOS', '2013-06-04', 4885, '6/4/2013', NULL), (4886, 2315, '', '', '', '0000-00-00', 4886, '', NULL), (4887, 2316, '', '', '', '0000-00-00', 4887, '', NULL), (4888, 2317, 'S/N 12-H-1001', 'Baldwin Wiedemann 12-H Universal Testing Machine (E-4)', 'Range: 2.4K / 12K (ID# 2829) ', '2013-01-21', 4888, '1/21/2013', NULL), (4889, 2318, 'S/N M92113A508-04', ' w/ Vertical LVDT Vertical Displacement (D-6027)', 'Range: 0.4 inches', '0000-00-00', 4889, '', NULL), (4890, 2319, '', '', '', '0000-00-00', 4890, '', NULL), (4891, 2320, '', '', '', '0000-00-00', 4891, '', NULL), (4892, 2321, 'S/N 0341', 'Soiltest C-220 Consolidation Machine ( E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-12', 4892, '5/12/2010', NULL), (4893, 2322, 'S/N 1002', 'Soiltest Comp Mach w/Starrett Dial Ind 656-617 (D-6027)', 'Range: 0.4 inches', '2010-05-12', 4893, '5/12/2010', NULL), (4894, 2323, 'S/N S-1098/25764', 'Hogentogler Dial Indicator OOS (D-6027)', 'Range: 1 Inch', NULL, 4894, 'New', NULL), (4895, 2324, 'S/N 1559 (SOLD)', ' w/ Extensometer (E-83)', 'Range: 0.02 in/in (GL 2 Inch)', '2015-09-16', 4895, '9/16/2015', NULL), (4896, 2325, 'S/N Unknown', 'Testmark CM2500 (DC16) Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2004-10-27', 4896, '10/27/2004', NULL), (4897, 2326, 'S/N 06122', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2009-01-05', 4897, '1/5/2009', NULL), (4898, 2327, 'S/N 06122', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2009-01-05', 4898, '1/5/2009', NULL), (4899, 2328, 'S/N 20005061', ' w/Load Cell Model-PSB5000 (E-4)', '', '0000-00-00', 4899, '', NULL), (4900, 2329, '', '', '', '0000-00-00', 4900, '', NULL), (4901, 2330, '', '', '', '0000-00-00', 4901, '', NULL), (4902, 2331, '', '', '', '0000-00-00', 4902, '', NULL), (4903, 2332, '', '', '', '0000-00-00', 4903, '', NULL), (4904, 2333, '', '', '', '0000-00-00', 4904, '', NULL), (4905, 2334, '', '', '', '0000-00-00', 4905, '', NULL), (4906, 2335, '', '', '', '0000-00-00', 4906, '', NULL), (4907, 2336, 'S/N 15512-5', 'Hamilton PU-P4500-950 Prestress Jack (2% PCI & ManSpecs)', 'Range: 3K to 35K', NULL, 4907, 'New', NULL), (4908, 2337, '', '', '', '0000-00-00', 4908, '', NULL), (4909, 2338, 'S/N U02771', 'Chatillon DFS Hand Held Force Gauge T & C w/LC: 691202A (E-4) ', 'Range: Tension -1K / Compression 1K', '2010-01-13', 4909, '1/13/2010', NULL), (4910, 2339, '', '', '', '0000-00-00', 4910, '', NULL), (4911, 2340, 'S/N 01303', 'GSE Mdl. GSE620 Electronic Scale (E-898)', 'Range: 150 lbs', '2012-05-14', 4911, '5/14/2012', NULL), (4912, 2341, '', '', '', '0000-00-00', 4912, '', NULL), (4913, 2342, 'S/N 20211023', ' w/ Load Cell MDL P5B 0040', '', '2006-02-07', 4913, '2/7/2006', NULL), (4914, 2343, 'S/N 711129', ' w/Omega Digital Readout DP80 (OOS) (E-4)', 'Range: 3K to 500K', '2005-07-12', 4914, '7/12/2005', NULL), (4915, 2344, '', '', '', '0000-00-00', 4915, '', NULL), (4916, 2345, '', '', '', '0000-00-00', 4916, '', NULL), (4917, 2346, '', '', '', '0000-00-00', 4917, '', NULL), (4918, 2347, '', '', '', '0000-00-00', 4918, '', NULL), (4919, 2348, '', '', '', '0000-00-00', 4919, '', NULL), (4920, 2349, '', '', '', '0000-00-00', 4920, '', NULL), (4921, 2350, '', '', '', '0000-00-00', 4921, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (4922, 2351, 'S/N 5862', 'Forney PT-150-2 Pipe Tester (E-4 & C-497) (OOS)', 'Range: 200K', '2010-08-09', 4922, '8/9/2010', NULL), (4923, 2352, '', '', '', '0000-00-00', 4923, '', NULL), (4924, 2353, 'S/N 69141', 'Forney FT-40DR Compression Machine (E-4)', 'Range: 30K / 250K', '2012-07-10', 4924, '7/10/2012', NULL), (4925, 2354, '', '', '', '0000-00-00', 4925, '', NULL), (4926, 2355, '', '', '', '0000-00-00', 4926, '', NULL), (4927, 2356, 'S/N 154825', 'Proceq Model N-34 Hammer (C-805)', 'Range: 78 to 82', '2008-08-26', 4927, '8/26/2008', NULL), (4928, 2357, '', '', '', '0000-00-00', 4928, '', NULL), (4929, 2358, 'S/N 21275', 'Bynum Prestress Jack MPU-3 w/ additional gauge ', 'Range: 3K/35K/35K (E-4 & PCI)', '2005-11-15', 4929, '11/15/2005', NULL), (4930, 2359, 'S/N EQ2020517', 'A & D Weighing Scale (E-898)', 'Range: 300 lbs ', '2009-02-18', 4930, '2/18/2009', NULL), (4931, 2360, '', '', '', '0000-00-00', 4931, '', NULL), (4932, 2361, 'S/N E-81438', 'Epsilon Extensometer-Model 3542-0100-25-ST (E-83)', 'Range: 0.001 inches to 0.25 inches', '2007-06-12', 4932, '6/12/2007', NULL), (4933, 2362, 'S/N Unknown', 'Enerpac TMS Tension Cell (E4-02)', 'Range: 10K', '2004-03-18', 4933, '3/18/2004', NULL), (4934, 2363, '', '', '', '0000-00-00', 4934, '', NULL), (4935, 2364, 'S/N 1782', 'Wykeham Farrance Consolidometer Mdl. 24001 (ID # G219)', 'Range:', '0000-00-00', 4935, '', NULL), (4936, 2365, 'S/N 612935', 'Karol Warner CBR Load Cell (E-4) ', 'Range: 200 lbs to 10,000 lbs', '2013-02-01', 4936, '2/1/2013', NULL), (4937, 2366, '', '', '', '0000-00-00', 4937, '', NULL), (4938, 2367, '', '', '', '0000-00-00', 4938, '', NULL), (4939, 2368, '', '', '', '0000-00-00', 4939, '', NULL), (4940, 2369, 'S/N 15268 ', 'Hamilton Forms P-4500-950 Prestress Jack (E-4 & PCI)', 'Range: 5.5K / 50K', '2012-01-23', 4940, '1/23/2012', NULL), (4941, 2370, '', ' w/ Cylinder Frame Channel #0 (E-4)', 'Range: 2.5K to 250K ', '2014-11-06', 4941, '11/6/2014', NULL), (4942, 2371, '', '', '', '0000-00-00', 4942, '', NULL), (4943, 2372, '', '', '', '0000-00-00', 4943, '', NULL), (4944, 2373, '', '', '', '0000-00-00', 4944, '', NULL), (4945, 2374, 'S/N 320935', 'SPX Mdl. PE550 Post Tension Jack (E-4 & Man Specs)', 'Range: 45K (7,550 PSI)', '2010-03-02', 4945, '3/2/2010', NULL), (4946, 2375, 'S/N 11504', 'Testmark CM-0100-DI Digital Compression Machine (E-4)', 'Range: 200 lbs to 100K (ID# M19849)', '2011-02-16', 4946, '2/16/2011', NULL), (4947, 2376, '', '', '', '0000-00-00', 4947, '', NULL), (4948, 2377, '', '', '', '0000-00-00', 4948, '', NULL), (4949, 2378, '', '', '', '0000-00-00', 4949, '', NULL), (4950, 2379, '', '', '', '0000-00-00', 4950, '', NULL), (4951, 2380, '', '', '', '0000-00-00', 4951, '', NULL), (4952, 2381, '', '', '', '0000-00-00', 4952, '', NULL), (4953, 2382, 'S/N C2399C', 'Enerpac RCH302 Ram Pack (E-4 Man) In House', 'Range: 45,000 lbs (6,000 psi)', '2016-07-11', 4953, '7/11/2016', NULL), (4954, 2383, '', '', '', '0000-00-00', 4954, '', NULL), (4955, 2384, '', '', '', '0000-00-00', 4955, '', NULL), (4956, 2385, '', '', '', '0000-00-00', 4956, '', NULL), (4957, 2386, '', '', '', '0000-00-00', 4957, '', NULL), (4958, 2387, 'S/N Unit #2', 'Simplex Post Tension Jack (E-4 & PCI)', 'Range: 4K (1,000 psi) / 35K (9,050 psi)', '2008-02-14', 4958, '2/14/2008', NULL), (4959, 2388, 'S/N 25037', 'Soiltest Single Proving Ring (E-4 & Man. Specs)', 'Cap: 500 lbs', '2007-05-09', 4959, '5/9/2007', NULL), (4960, 2389, '', '', '', '0000-00-00', 4960, '', NULL), (4961, 2390, '', '', '', '0000-00-00', 4961, '', NULL), (4962, 2391, '', '', '', '0000-00-00', 4962, '', NULL), (4963, 2392, '', '', '', '0000-00-00', 4963, '', NULL), (4964, 2393, 'S/N 992234629', 'ELE Dial Indicator (D-6027)', 'Range: 1 Inch', '2015-10-07', 4964, '10/7/2015', NULL), (4965, 2394, 'S/N 1117 / 240 / 429', 'BK CBR Frame w/ 2 Load Cells (E-4)', 'Range: 2K / 6K', '2015-10-07', 4965, '10/7/2015', NULL), (4966, 2395, 'S/N 794', 'Geo Durham Transducer w/ Display (MOVED) (D-6027)', 'Range: 150 PSI ', '2007-02-12', 4966, '2/12/2007', NULL), (4967, 2396, 'S/N 76031N', ' w/ Shear Force Load Cell Revere Model 9363-B10 (E-4)', 'Range: 1.5K', '2015-10-07', 4967, '10/7/2015', NULL), (4968, 2397, 'S/N 24617', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs) ', 'Range: 2K ', '2008-05-23', 4968, '5/23/2008', NULL), (4969, 2398, '', '', '', '0000-00-00', 4969, '', NULL), (4970, 2399, 'S/N 202', 'Ames Dial Indicator (D-6027)', 'Range: 0.2 Inches ', '2007-07-09', 4970, '7/9/2007', NULL), (4971, 2400, 'S/N C14580', 'Scot Tensile Tester Model J', 'Range: 50 lbs to 150 lbs', '2006-07-17', 4971, '7/17/2006', NULL), (4972, 2401, 'S/N E86846 ', ' w/Epsilon Extensometer 3543-0800-400T-ST(E-83) ID# CME9113', 'Range: 0.25 in/in', '2015-05-12', 4972, '5/12/2015', NULL), (4973, 2402, '', '', '', '0000-00-00', 4973, '', NULL), (4974, 2403, 'S/N 3144 (ID#004120)', 'Satec Apex II EMF Digital Compression Machine (E-4)', '', '0000-00-00', 4974, '', NULL), (4975, 2404, 'S/N 420', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K', '2016-11-28', 4975, '11/28/2016', NULL), (4976, 2405, 'S/N 249765A', ' w/ Interface 1210ACK-10K-B 10 Kip T & C Load Cell (E-4)', 'Range: 100 lbs to 10K (ID#CAL3693)', '2008-10-28', 4976, '10/28/2008', NULL), (4977, 2406, '', '', '', '0000-00-00', 4977, '', NULL), (4978, 2407, '', '', '', '0000-00-00', 4978, '', NULL), (4979, 2408, '', '', '', '0000-00-00', 4979, '', NULL), (4980, 2409, '', '', '', '0000-00-00', 4980, '', NULL), (4981, 2410, 'S/N 2371', 'Pull Spotwelder Detroit Test Machine PT', 'Range: 200 lbs to 2,000 lbs', '2003-08-26', 4981, '8/26/2003', NULL), (4982, 2411, '', '', '', '0000-00-00', 4982, '', NULL), (4983, 2412, '', '', '', '0000-00-00', 4983, '', NULL), (4984, 2413, 'S/N 209', 'Humboldt H3030 Beam Breaker Portable (E-4)', 'Range: 15K', '2011-02-16', 4984, '2/16/2011', NULL), (4985, 2414, '', '', '', '0000-00-00', 4985, '', NULL), (4986, 2415, '', '', '', '0000-00-00', 4986, '', NULL), (4987, 2416, 'S/N B250-005', 'Enerpac PH80 Post Tension Jack (E-4 & PCI)', 'Range 10,000 psi', '1997-07-08', 4987, '7/8/1997', NULL), (4988, 2417, '', '', '', '0000-00-00', 4988, '', NULL), (4989, 2418, 'S/N HLI 400', 'Healthometer', 'Range 350 lbs.', '1999-03-02', 4989, '3/2/1999', NULL), (4990, 2419, 'S/N HLI 400', 'Healthometer', 'Range 350 lbs.', '1999-03-02', 4990, '3/2/1999', NULL), (4991, 2420, '', '', '', '0000-00-00', 4991, '', NULL), (4992, 2421, '', '', '', '0000-00-00', 4992, '', NULL), (4993, 2422, '', '', '', '0000-00-00', 4993, '', NULL), (4994, 2423, '', '', '', '0000-00-00', 4994, '', NULL), (4995, 2424, '', '', '', '0000-00-00', 4995, '', NULL), (4996, 2425, '', '', '', '0000-00-00', 4996, '', NULL), (4997, 2426, '', '', '', '0000-00-00', 4997, '', NULL), (4998, 2427, '', '', '', '0000-00-00', 4998, '', NULL), (4999, 2428, '', '', '', '0000-00-00', 4999, '', NULL), (5000, 2429, 'S/N 1155-13-13552', 'ELE Single Proving Ring (E-4 & Man Spec)', 'Cap: 1K', '2009-01-21', 5000, '1/21/2009', NULL), (5001, 2430, '', '', '', '0000-00-00', 5001, '', NULL), (5002, 2431, '', '', '', '0000-00-00', 5002, '', NULL), (5003, 2432, '', '', '', '0000-00-00', 5003, '', NULL), (5004, 2433, '', '', '', '0000-00-00', 5004, '', NULL), (5005, 2434, 'S/N', ' w/ Vertical Force (E-4)', 'Range: ', NULL, 5005, 'New', NULL), (5006, 2435, '', '', '', '0000-00-00', 5006, '', NULL), (5007, 2436, '', '', '', '0000-00-00', 5007, '', NULL), (5008, 2437, '', '', '', '0000-00-00', 5008, '', NULL), (5009, 2438, 'S/N 88119', 'Forney FT-40-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2007-12-03', 5009, '12/3/2007', NULL), (5010, 2439, '', '', '', '0000-00-00', 5010, '', NULL), (5011, 2440, '', '', '', '0000-00-00', 5011, '', NULL), (5012, 2441, 'S/N 13507', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2010-06-08', 5012, '6/8/2010', NULL), (5013, 2442, '', '', '', '0000-00-00', 5013, '', NULL), (5014, 2443, '', '', '', '0000-00-00', 5014, '', NULL), (5015, 2444, '', '', '', '0000-00-00', 5015, '', NULL), (5016, 2445, '', '', '', '0000-00-00', 5016, '', NULL), (5017, 2446, '', '', '', '0000-00-00', 5017, '', NULL), (5018, 2447, '', 'Putting in archived database.', '', '0000-00-00', 5018, '', NULL), (5019, 2448, '', '', '', '0000-00-00', 5019, '', NULL), (5020, 2449, '', '', '', '0000-00-00', 5020, '', NULL), (5021, 2450, '', '', '', '0000-00-00', 5021, '', NULL), (5022, 2451, '', '', 'Putting in archived database.', '0000-00-00', 5022, '', NULL), (5023, 2452, 'S/N 15512-5', 'Hamilton PU-P4500-950 Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2011-02-02', 5023, '2/2/2011', NULL), (5024, 2453, '', '', '', '0000-00-00', 5024, '', NULL), (5025, 2454, 'S/N 61009', 'Forney FT-40 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2007-04-18', 5025, '4/18/2007', NULL), (5026, 2455, '', '', '', '0000-00-00', 5026, '', NULL), (5027, 2456, '', '', '', '0000-00-00', 5027, '', NULL), (5028, 2457, 'S/N AE40114707', 'AEADAM Max Scale (E-898)', 'Range: 165 lbs ', '2011-04-19', 5028, '4/19/2011', NULL), (5029, 2458, '', '', '', '0000-00-00', 5029, '', NULL), (5030, 2459, '', '', 'Putting in archived database.', '0000-00-00', 5030, '', NULL), (5031, 2460, '', '', 'Putting in archived database.', '0000-00-00', 5031, '', NULL), (5032, 2461, 'S/N 103221A', ' w/ Tovey Load Cell Plus X Axis - T & C', 'Range: 2K ', '2012-03-13', 5032, '3/13/2012', NULL), (5033, 2462, '', ' w/ Plus Y Axis - T & C ', 'Range: 50K', '2012-03-12', 5033, '3/12/2012', NULL), (5034, 2463, '', '', '', '0000-00-00', 5034, '', NULL), (5035, 2464, '', '', '', '0000-00-00', 5035, '', NULL), (5036, 2465, 'S/N Ram 1', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 5036, '6/29/2011', NULL), (5037, 2466, 'S/N 1', 'Extra Gauge - Final with Jack #5 (E-4 & PCI)', 'Range: 45K', '2008-07-29', 5037, '7/29/2008', NULL), (5038, 2467, '', '', 'Putting in archived database.', '0000-00-00', 5038, '', NULL), (5039, 2468, 'S/N 674', 'Soiltest CT-710 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2007-07-30', 5039, '7/30/2007', NULL), (5040, 2469, '', '', '', '0000-00-00', 5040, '', NULL), (5041, 2470, '', '', 'Putting in archived database.', '0000-00-00', 5041, '', NULL), (5042, 2471, '', '', '', '0000-00-00', 5042, '', NULL), (5043, 2472, '', '', '', '0000-00-00', 5043, '', NULL), (5044, 2473, 'S/N Jack #2', 'Simplex Mdl. RC-603 Post Tension Jack (E-4 & PCI)', 'Range: 60 Ton', '2007-05-15', 5044, '5/15/2007', NULL), (5045, 2474, '', ' w/Cylinder Frame (E-4)', 'Range: 2.5K to 250K', '2011-03-23', 5045, '3/23/2011', NULL), (5046, 2475, '', '', 'Putting in archived database.', '0000-00-00', 5046, '', NULL), (5047, 2476, 'S/N 24176', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', '2012-09-25', 5047, '9/25/2012', NULL), (5048, 2477, 'S/N 0786', 'Humboldt Mdl. H-4454 Single Proving Ring (E-4 & Man Specs) ', 'Range: 1,100 lbs ', '2015-03-12', 5048, '3/12/2015', NULL), (5049, 2478, '', '', 'Putting in archived database.', '0000-00-00', 5049, '', NULL), (5050, 2479, '', '', 'Putting in archived database.', '0000-00-00', 5050, '', NULL), (5051, 2480, 'S/N 208390 ', ' w/ 1K Load Cell T & C (E-4) ', 'Range: 50lbs/100lbs/200lbs/500lbs/1K', '2011-10-18', 5051, '10/18/2011', NULL), (5052, 2481, 'S/N 109', ' w/Gauge (E', 'Range: 350K', '2008-10-22', 5052, '10/22/2008', NULL), (5053, 2482, '', '', 'Putting in archived database.', '0000-00-00', 5053, '', NULL), (5054, 2483, 'S/N 428-dig', '', 'Range: 500 lbs. to 10,000 lbs.-Comp.', '0000-00-00', 5054, '', NULL), (5055, 2484, 'S/N 2', 'LVDT w/ Geocomp Datalogger (OUT OF SVC) (D-6027)', 'Range: . 25 inches', '2004-06-02', 5055, '6/2/2004', NULL), (5056, 2485, 'S/N 13', 'Trautwein Pressure Transducer Model with GeoComp Datalogger', 'Range: 120 PSI (OUT OF SERVICE)', '2002-06-20', 5056, '6/20/2002', NULL), (5057, 2486, '', '', 'Putting in archived database.', '0000-00-00', 5057, '', NULL), (5058, 2487, 'S/N 2407', 'Ohaus AS120 Analytical Standard Scale (E-898)', 'Range: 12 Grams to 120 Grams ', '2008-06-05', 5058, '6/5/2008', NULL), (5059, 2488, '', '', 'Putting in archived database.', '0000-00-00', 5059, '', NULL), (5060, 2489, '', '', 'Putting in archived database.', '0000-00-00', 5060, '', NULL), (5061, 2490, '', '', 'Putting in archived database.', '0000-00-00', 5061, '', NULL), (5062, 2491, 'S/N 550924', 'ELE Pressure Transducer--Channel# 5 (D-5720)', 'Range: 150 psi', '2008-11-18', 5062, '11/18/2008', NULL), (5063, 2492, 'S/N 1155-12-13323', 'With ELE Proving Ring & LVDT Channel 2 (E-4)', 'Range: 1K', '2008-11-17', 5063, '11/17/2008', NULL), (5064, 2493, 'S/N 423-262298', ' w/ S Type Load Cell Model E 212 Shear Force T & C (E-4)', 'Range: 2,500 lbs w/ E-405 Digital', '2008-11-18', 5064, '11/18/2008', NULL), (5065, 2494, 'S/N 14705288', 'AND GP-60K Scale (E-898)', 'Range: 132 lbs', '2013-10-30', 5065, '10/30/2013', NULL), (5066, 2495, '', '', 'Putting in archived database.', '0000-00-00', 5066, '', NULL), (5067, 2496, '', '', 'Putting in archived database.', '0000-00-00', 5067, '', NULL), (5068, 2497, '', '', 'Putting in archived database.', '0000-00-00', 5068, '', NULL), (5069, 2498, 'S/N20006069', 'Cell Model: PSB-1000', '', '0000-00-00', 5069, '', NULL), (5070, 2499, '', '', 'Putting in archived database.', '0000-00-00', 5070, '', NULL), (5071, 2500, '', '', 'Putting in archived database.', '0000-00-00', 5071, '', NULL), (5072, 2501, '', '', 'Putting in archived database.', '0000-00-00', 5072, '', NULL), (5073, 2502, 'S/N 00119', 'Forney F-40F-F96 Digital Compression Machine (SOLD) (E-4)', 'Range: 400K', '2004-08-03', 5073, '8/3/2004', NULL), (5074, 2503, '', '', 'Putting in archived database.', '0000-00-00', 5074, '', NULL), (5075, 2504, '', '', 'Putting in archived database.', '0000-00-00', 5075, '', NULL), (5076, 2505, 'S/N 2610AP71673', 'PowerTeam Post Tension Jack (E-4 & PCI, ManSpecs)', 'Range: 35K (8,000 PSI)', '2016-06-01', 5076, '6/1/2016', NULL), (5077, 2506, 'S/N 05011 / NC#5', 'HCS LC-40 Hydraulic Load Cell (ID# LC2502) (E-4 & 2%) OOS', 'Range: 40K', '2011-07-19', 5077, '7/19/2011', NULL), (5078, 2507, 'S/N 0710SBALH01002', 'CAS Mdl. SBA-10KLB-I Load Cell (E-4) OOS', 'Range: 10K', '2009-04-21', 5078, '4/21/2009', NULL), (5079, 2508, '', ' w/ Shear Force 1000 lb (E-4)', 'Range: 20 lbs to 1,500 lbs ', '2006-09-12', 5079, '9/12/2006', NULL), (5080, 2509, 'S/N 429549', 'Druck Pressure Transducer System', 'Cap: 275 psi', '0000-00-00', 5080, '', NULL), (5081, 2510, '', '', 'Putting in archived database.', '0000-00-00', 5081, '', NULL), (5082, 2511, 'S/N 78239', 'Forney FT-10 Compression Machine (E-4)', 'Range: 250,000 lbs', '2013-01-03', 5082, '1/3/2013', NULL), (5083, 2512, 'S/N LVDT 1', 'with FS-2000 LVDT 1 Frame 875 / ID # 25960001 (ISO-9513) ', 'Range: 2 Inches', '2007-05-07', 5083, '5/7/2007', NULL), (5084, 2513, '', '', 'Putting in archived database.', '0000-00-00', 5084, '', NULL), (5085, 2514, 'S/N 96070', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250K', '2004-02-04', 5085, '2/4/2004', NULL), (5086, 2515, '', '', 'Putting in archived database.', '0000-00-00', 5086, '', NULL), (5087, 2516, 'S/N 100592', 'Simms Model P3500 Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K (Moved)', '2009-01-14', 5087, '1/14/2009', NULL), (5088, 2517, '', ' w/Load Cell TSC500LE', '', '2008-05-05', 5088, '5/5/2008', NULL), (5089, 2518, 'S/N 23914', ' w/ Load Cell Model S-400', '', '2009-05-07', 5089, '5/7/2009', NULL), (5090, 2519, 'S/N 2950434', ' w/Load Cell', 'Putting in archived database.', '0000-00-00', 5090, '', NULL), (5091, 2520, '', '', 'Putting in archived database.', '0000-00-00', 5091, '', NULL), (5092, 2521, '', '10/12 Sold Machine to Castle Builders', '', '0000-00-00', 5092, '', NULL), (5093, 2522, '', '', 'Putting in archived database.', '0000-00-00', 5093, '', NULL), (5094, 2523, '', '', 'Putting in archived database.', '0000-00-00', 5094, '', NULL), (5095, 2524, '', '', 'Putting in archived database.', '0000-00-00', 5095, '', NULL), (5096, 2525, '', '', 'Putting in archived database.', '0000-00-00', 5096, '', NULL), (5097, 2526, '', '', 'Putting in archived database.', '0000-00-00', 5097, '', NULL), (5098, 2527, '', '', 'Putting in archived database.', '0000-00-00', 5098, '', NULL), (5099, 2528, '', 'Hand pump with 12\" gauge', 'Putting in archived database.', '0000-00-00', 5099, '', NULL), (5100, 2529, 'S/N 99130', 'Forney F-25F-F96 Digital Compression Machine (E-4)', 'Range: 250K', '2005-11-22', 5100, '11/22/2005', NULL), (5101, 2530, '', '', 'Putting in archived database.', '0000-00-00', 5101, '', NULL), (5102, 2531, '', '', 'Putting in archived database.', '0000-00-00', 5102, '', NULL), (5103, 2532, '', '', 'Putting in archived database.', '0000-00-00', 5103, '', NULL), (5104, 2533, '', '', 'Putting in archived database.', '0000-00-00', 5104, '', NULL), (5105, 2534, '', '', 'Putting in archived database.', '0000-00-00', 5105, '', NULL), (5106, 2535, 'S/N', 'Tinius Olsen Super L Universal Testing Machine (E-4)', 'Range: (Cal In House)', NULL, 5106, 'New', NULL), (5107, 2536, 'S/N L58709 ', 'Mettler PM6100 Scale (ID# Q-0822) (E-898)', 'Range: 50 Gram to 6,100 Gram ', '2016-01-19', 5107, '1/19/2016', NULL), (5108, 2537, 'S/N AE44298', 'PGW Mdl. 753i Scale (ID# Q-2168) (E-898)', 'Range: 750 grams ', '2016-01-19', 5108, '1/19/2016', NULL), (5109, 2538, 'S/N 143954', 'Humboldt H-2975 Hammer (ID# Q-2723) (C-805)', 'Range: 78 to 82', '2016-01-19', 5109, '1/19/2016', NULL), (5110, 2539, '', ' w/ Frame #1', 'Range: 3K to 300K ', '0000-00-00', 5110, '', NULL), (5111, 2540, '', '', '', '0000-00-00', 5111, '', NULL), (5112, 2541, '', '', 'Putting in archived database.', '0000-00-00', 5112, '', NULL), (5113, 2542, '', '', 'Putting in archived database.', '0000-00-00', 5113, '', NULL), (5114, 2543, '', '', 'Putting in archived database.', '0000-00-00', 5114, '', NULL), (5115, 2544, '', '', 'Putting in archived database.', '0000-00-00', 5115, '', NULL), (5116, 2545, '', '', 'Putting in archived database.', '0000-00-00', 5116, '', NULL), (5117, 2546, '', '', 'Putting in archived database.', '0000-00-00', 5117, '', NULL), (5118, 2547, 'S/N 65137', ' w/Extra Gauge (E-4)', 'Range: 340K', '2008-07-16', 5118, '7/16/2008', NULL), (5119, 2548, '', '', 'Putting in archived database.', '0000-00-00', 5119, '', NULL), (5120, 2549, '', '', 'Putting in archived database.', '0000-00-00', 5120, '', NULL), (5121, 2550, '', '', 'Putting in archived database.', '0000-00-00', 5121, '', NULL), (5122, 2551, '', 'Schmidt Hammer', '', '1995-12-28', 5122, '12/28/1995', NULL), (5123, 2552, 'S/N 9817 ', 'ELE CT-7251 w/Gauge Buster Digital (E-4)', 'Range: 2.5K to 250K ', '2007-06-19', 5123, '6/19/2007', NULL), (5124, 2553, 'S/N E79727', ' w/Epsilon 3542-0200-020-ST Extensometer Channel #0 ( E-83)', 'Range: 0.2 in/in (2\" GL)', '2010-02-15', 5124, '2/15/2010', NULL), (5125, 2554, '', '', 'Putting in archived database.', '0000-00-00', 5125, '', NULL), (5126, 2555, '', '', 'Putting in archived database.', '0000-00-00', 5126, '', NULL), (5127, 2556, '', '', 'Putting in archived database.', '0000-00-00', 5127, '', NULL), (5128, 2557, '', '', 'Putting in archived database.', '0000-00-00', 5128, '', NULL), (5129, 2558, '', '', 'Putting in archived database.', '0000-00-00', 5129, '', NULL), (5130, 2559, '', '', 'Putting in archived database.', '0000-00-00', 5130, '', NULL), (5131, 2560, '', '', 'Putting in archived database.', '0000-00-00', 5131, '', NULL), (5132, 2561, 'S/N TM0104', ' w/ Compressometer LVDT (D-6027)', 'Range: 0.05 inches ', '2009-05-08', 5132, '5/8/2009', NULL), (5133, 2562, '', '', '', '0000-00-00', 5133, '', NULL), (5134, 2563, '', '', '', '0000-00-00', 5134, '', NULL), (5135, 2564, 'S/N 9533', ' w/ Beam Frame (E-4)', 'Range: 2.5K to 250K Channel 2', '2010-10-25', 5135, '10/25/2010', NULL), (5136, 2565, '', '', 'Putting in archived database.', '0000-00-00', 5136, '', NULL), (5137, 2566, '', '', 'Putting in archived database.', '0000-00-00', 5137, '', NULL), (5138, 2567, 'S/N 85075', 'Forney FT-40 Compression Machine (MOVED) (E-4)', 'Range: 25/250K', '2005-10-04', 5138, '10/4/2005', NULL), (5139, 2568, 'S/N 417', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K', '2013-06-04', 5139, '6/4/2013', NULL), (5140, 2569, 'S/N 981773072', 'Humboldt Mdl. BG2600-0-16 Dial Indicator (D-6027) OOS', 'Range: 0.6 Inches', '2013-04-30', 5140, '4/30/2013', NULL), (5141, 2570, '', '', 'Putting in archived database.', '0000-00-00', 5141, '', NULL), (5142, 2571, '', '', 'Putting in archived database.', '0000-00-00', 5142, '', NULL), (5143, 1, 'S/N 143', ' w/ Model E-415 Readout', 'Channel #3', '2013-01-22', 5143, '1/22/2013', NULL), (5144, 2, '', '', '', '0000-00-00', 5144, '', NULL), (5145, 3, 'S/N 11', 'Extra Gauge Final w/Jack #5 (E-4 & PCI)', 'Range: 45K', '2008-07-29', 5145, '7/29/2008', NULL), (5146, 4, 'S/N 02-035', 'TECO QL3 Dig Comp Mach w/2 LC\'s s/n 135282A (#1),135291A (#2) ', 'Range: 100 lbs to 10K (E-4)', '2012-02-23', 5146, '2/23/2012', NULL), (5147, 5, 'S/N 502', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 300lbs', '2007-01-05', 5147, '1/5/2007', NULL), (5148, 6, '', '', '', '0000-00-00', 5148, '', NULL), (5149, 7, '', '', '', '0000-00-00', 5149, '', NULL), (5150, 8, 'S/N 5016 ', 'Brainard Kilman Mdl. 29210-2.5 Load Cell w/E-400 Digital S/N 149', 'Range: 2.5K (E-4)', '2013-05-08', 5150, '5/8/2013', NULL), (5151, 9, 'S/N 273221', ' w/Durham Geo 20210-2.5K Load Cell (Channel #2) (E-4)', 'Range: 2.5K ', '2009-05-19', 5151, '5/19/2009', NULL), (5152, 10, 'S/N 01265269/', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Metric Ton', '2007-09-13', 5152, '9/13/2007', NULL), (5153, 11, '', '', '', '0000-00-00', 5153, '', NULL), (5154, 12, 'S/N 102', 'Dynamic Fluid Component Gauge Model CF1P', 'Range: 5,000 psi', '1999-05-28', 5154, '5/28/1999', NULL), (5155, 13, '', '', '', '0000-00-00', 5155, '', NULL), (5156, 14, 'S/N 083091', 'Robinair 15600 Vacuum Pump (D-5720 & ManSpecs)', 'Range: 30 InHg', '2013-05-13', 5156, '5/13/2013', NULL), (5157, 15, 'S/N 130115893', ' w/ Gilson Dial Indicator (D-6027)', 'Range: 1 inch', '2013-05-13', 5157, '5/13/2013', NULL), (5158, 16, '', '', '', '0000-00-00', 5158, '', NULL), (5159, 17, '', '', '', '0000-00-00', 5159, '', NULL), (5160, 18, '', ' w/ Load Cell S/N 283358A', '', '0000-00-00', 5160, '', NULL), (5161, 19, 'S/N 75555', 'Transducer Techniques Digital Model PHM-100 (E-4)', 'Used with below load cell/transducer', '2008-06-20', 5161, '6/20/2008', NULL), (5162, 20, '', '', '', '0000-00-00', 5162, '', NULL), (5163, 21, '', '', '', '0000-00-00', 5163, '', NULL), (5164, 22, '', '', '', '0000-00-00', 5164, '', NULL), (5165, 23, '', '', '', '0000-00-00', 5165, '', NULL), (5166, 24, '', '', '', '0000-00-00', 5166, '', NULL), (5167, 25, '', '', '', '0000-00-00', 5167, '', NULL), (5168, 26, '', '', '', '0000-00-00', 5168, '', NULL), (5169, 27, '', '', '', '0000-00-00', 5169, '', NULL), (5170, 28, '', '', '', '0000-00-00', 5170, '', NULL), (5171, 29, '', '', '', '0000-00-00', 5171, '', NULL), (5172, 30, '', '', '', '0000-00-00', 5172, '', NULL), (5173, 31, '', '', '', '0000-00-00', 5173, '', NULL), (5174, 32, '', '', '', '0000-00-00', 5174, '', NULL), (5175, 33, '', '', '', '0000-00-00', 5175, '', NULL), (5176, 34, '', '', '', '0000-00-00', 5176, '', NULL), (5177, 35, '', '', '', '0000-00-00', 5177, '', NULL), (5178, 36, '', '', '', '0000-00-00', 5178, '', NULL), (5179, 37, '', '', '', '0000-00-00', 5179, '', NULL), (5180, 38, 'S/N RC-104', 'Enerpac Pushout Tester L (E-4 & Man Specs)', 'Range: 8K', '2009-08-13', 5180, '8/13/2009', NULL), (5181, 39, '', '', '', '0000-00-00', 5181, '', NULL), (5182, 40, '', '', '', '0000-00-00', 5182, '', NULL), (5183, 41, '', '', '', '0000-00-00', 5183, '', NULL), (5184, 42, '', '', '', '0000-00-00', 5184, '', NULL), (5185, 43, '', '', '', '0000-00-00', 5185, '', NULL), (5186, 44, '', '', '', '0000-00-00', 5186, '', NULL), (5187, 45, '', '', '', '0000-00-00', 5187, '', NULL), (5188, 46, '', '', '', '0000-00-00', 5188, '', NULL), (5189, 47, '', '', '', '0000-00-00', 5189, '', NULL), (5190, 48, '', '', '', '0000-00-00', 5190, '', NULL), (5191, 49, '', '', '', '0000-00-00', 5191, '', NULL), (5192, 50, '', '', '', '0000-00-00', 5192, '', NULL), (5193, 51, '', '', '', '0000-00-00', 5193, '', NULL), (5194, 52, '', '', '', '0000-00-00', 5194, '', NULL), (5195, 53, 'S/N 11797', 'Wykeham-Farrance Single Proving Ring Model #14152p (OOS)', 'Cap: 650 lbs (E-4 & Man Specs)', '2006-10-10', 5195, '10/10/2006', NULL), (5196, 54, 'S/N 102', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 100 PSI', NULL, 5196, 'New', NULL), (5197, 55, '', '', '', '0000-00-00', 5197, '', NULL), (5198, 56, 'S/N 0021', ' w/Hualanhi Model CZL301 Load Cell (E-4) ', '', '2012-11-06', 5198, '11/6/2012', NULL), (5199, 57, '', '', '', '0000-00-00', 5199, '', NULL), (5200, 58, '', '', '', '0000-00-00', 5200, '', NULL), (5201, 59, 'S/N 120HV-1048', 'Satec 120HV-MTest Universal Testing Machine (E-4)', 'Range: 400 lbs to 120K ', '2013-09-03', 5201, '9/3/2013', NULL), (5202, 60, 'S/N 98200', 'Forney F-250F-F96 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2012-11-27', 5202, '11/27/2012', NULL), (5203, 61, 'S/N 080802', 'Geotest Mdl. S2215 Direct Shear Machine (E-4)', '', '0000-00-00', 5203, '', NULL), (5204, 62, 'S/N 970142', ' w/ Karol Warner Pressure Tranducer (D-5720)', 'Range: 150 PSI', '2012-11-29', 5204, '11/29/2012', NULL), (5205, 63, '', ' ***Has a Gyratory Compactor***', '', '0000-00-00', 5205, '', NULL), (5206, 64, 'S/N 222199', 'Artech 20210-500 Load Cell (E-4) ', 'Range: 500 lbs', '2012-11-26', 5206, '11/26/2012', NULL), (5207, 65, 'S/N 336263', 'SPX Power Team Post Tension Jack (E-4 & PCI)', 'Range: 35K (8,050 PSI)', '2012-11-27', 5207, '11/27/2012', NULL), (5208, 66, '', '', '', '0000-00-00', 5208, '', NULL), (5209, 67, '', '', '', '0000-00-00', 5209, '', NULL), (5210, 68, 'S/N 70123', 'Marshalltown Gauge (ASME Grade B)', 'Range: 35 in H20', '2008-11-20', 5210, '11/20/2008', NULL), (5211, 69, '', '', '', '0000-00-00', 5211, '', NULL), (5212, 70, '', '', '', '0000-00-00', 5212, '', NULL), (5213, 71, '', '', '', '0000-00-00', 5213, '', NULL), (5214, 72, '', '', '', '0000-00-00', 5214, '', NULL), (5215, 73, 'S/N 0035', 'VSL Bond Tester (Pompano, FL) (E-4) ', 'Range: 300 lbs to 3,000 lbs ', '2008-11-03', 5215, '11/3/2008', NULL), (5216, 74, 'S/N 420', 'Humboldt 18\" o.c. Rollers Beam Breaker 3 point (E-4 & 2%)', 'Range:', '2012-12-06', 5216, '12/6/2012', NULL), (5217, 75, '', '', '', '0000-00-00', 5217, '', NULL), (5218, 76, '', '***Calibration Certification must have Recalibration date on it ***', '', '0000-00-00', 5218, '', NULL), (5219, 77, '', '', '', '0000-00-00', 5219, '', NULL), (5220, 78, '', '', '', '0000-00-00', 5220, '', NULL), (5221, 79, 'S/N 13230', 'Digital Readout Virtual w/ Transcell Technology Load Cell (E-4)', 'Range: 5K LC: S/N 7H261502000650', NULL, 5221, 'New', NULL), (5222, 80, '', '', '', '0000-00-00', 5222, '', NULL), (5223, 81, '', '', '', '0000-00-00', 5223, '', NULL), (5224, 82, 'S/N 20610068', 'Com-Ten FGC2000 Pull Tester (E-4)', 'Range: 2K (ID# Q-2623)', '2013-01-28', 5224, '1/28/2013', NULL), (5225, 83, '', '', '', '0000-00-00', 5225, '', NULL), (5226, 84, '', '', '', '0000-00-00', 5226, '', NULL), (5227, 85, '', '', '', '0000-00-00', 5227, '', NULL), (5228, 86, '', '', '', '0000-00-00', 5228, '', NULL), (5229, 87, '', '', '', '0000-00-00', 5229, '', NULL), (5230, 88, '', '', '', '0000-00-00', 5230, '', NULL), (5231, 89, '', '', '', '0000-00-00', 5231, '', NULL), (5232, 90, '', '', '', '0000-00-00', 5232, '', NULL), (5233, 91, 'S/N 571254', 'ELE Pressure Transducer--Channel# 4 (D-5720)', 'Range: 150 psi', '2008-11-18', 5233, '11/18/2008', NULL), (5234, 92, 'S/N C-8556', 'Main Panel Pressure Transducer (D-5720)', 'Range: 100 psi', '2008-11-17', 5234, '11/17/2008', NULL), (5235, 93, '', '', '', '0000-00-00', 5235, '', NULL), (5236, 94, '', '', '', '0000-00-00', 5236, '', NULL), (5237, 95, '', '', '', '0000-00-00', 5237, '', NULL), (5238, 96, 'S/N 06311', 'SPX Mdl. PE550 Post Tension Jack (E-4 & PCI)', 'Range: 45K', '2008-04-14', 5238, '4/14/2008', NULL), (5239, 97, '', '', '', '0000-00-00', 5239, '', NULL), (5240, 98, '', '', '', '0000-00-00', 5240, '', NULL), (5241, 99, '', '', '', '0000-00-00', 5241, '', NULL), (5242, 100, 'S/N 5500-6168', 'Instron 5500R Digital Compression Machine (E-4)', 'Range: 50 lbs to 5,500 lbs (ID# 041)', '2009-03-17', 5242, '3/17/2009', NULL), (5243, 101, '', '', '', '0000-00-00', 5243, '', NULL), (5244, 102, '', '', '', '0000-00-00', 5244, '', NULL), (5245, 103, '', ' ', '', '0000-00-00', 5245, '', NULL), (5246, 104, '', '', '', '0000-00-00', 5246, '', NULL), (5247, 105, 'S/N 1810', 'Humboldt Mdl. H-4454 Single Proving Ring (E-4 & Man Specs) ', 'Range: 550 lbs ', '2013-03-12', 5247, '3/12/2013', NULL), (5248, 106, '', ' w/ Extra Gauge (E-', 'Range: 500K ', '2013-03-18', 5248, '3/18/2013', NULL), (5249, 107, 'S/N LP-801', ' w/ LVDT (D-6027) (Chan #3)', 'Range: 3 inches', '2013-03-21', 5249, '3/21/2013', NULL), (5250, 108, 'S/N 990311/1136', ' w/ Karol Warner Vertical LVDT (D-6027)', 'Range: 0.4 Inch (Vertical LVDT)', '2013-03-21', 5250, '3/21/2013', NULL), (5251, 109, 'S/N 3564 ', ' w/ LVDT (Inside Machine) (D-6027)', 'Range: 1 Inches ', '2013-03-21', 5251, '3/21/2013', NULL), (5252, 110, '', '', '', '0000-00-00', 5252, '', NULL), (5253, 111, 'S/N 18411', 'Soiltest LC-2 Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', '2011-03-29', 5253, '3/29/2011', NULL), (5254, 112, '', ' w/ LVDT (D-6027) ', 'Range: 1.5 inch', '2013-03-26', 5254, '3/26/2013', NULL), (5255, 113, '', '', '', '0000-00-00', 5255, '', NULL), (5256, 114, '', '', '', '0000-00-00', 5256, '', NULL), (5257, 115, '', '', '', '0000-00-00', 5257, '', NULL), (5258, 116, '', '', '', '0000-00-00', 5258, '', NULL), (5259, 117, 'S/N 00-02', 'ELE 34-4102/02 Digital Compression Machine w/Cylinder Frame #2 ', 'Range: 3.5K to 350K (E-4)', '2008-01-28', 5259, '1/28/2008', NULL), (5260, 118, 'S/N 953', 'Technotest KL-200E Compression Machine (E-4)', 'Range: 2,000 KN ', '2008-01-28', 5260, '1/28/2008', NULL), (5261, 119, '', '', '', '0000-00-00', 5261, '', NULL), (5262, 120, '', '', '', '0000-00-00', 5262, '', NULL), (5263, 121, 'S/N 21690', 'Powerteam Post Tension Jack (E-4 & PCI)', 'Range: 35K ', '2008-10-14', 5263, '10/14/2008', NULL), (5264, 122, '', '', '', '0000-00-00', 5264, '', NULL), (5265, 123, '', '', '', '0000-00-00', 5265, '', NULL), (5266, 124, '', '', '', '0000-00-00', 5266, '', NULL), (5267, 125, 'S/N 1270738', ' w/ Humboldt TS-500 Load Cell (E-4)', 'Range: 500 lbs ', '2013-04-16', 5267, '4/16/2013', NULL), (5268, 126, '', '', '', '0000-00-00', 5268, '', NULL), (5269, 127, 'S/N 2061132', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons', '2008-09-04', 5269, '9/4/2008', NULL), (5270, 128, '', '', '', '0000-00-00', 5270, '', NULL), (5271, 129, '', 'Machine moved to Homer City', '', '0000-00-00', 5271, '', NULL), (5272, 130, 'S/N 116', ' with Recorder (NO RECORDER) (Not Done)', '', '0000-00-00', 5272, '', NULL), (5273, 131, '', '', '', '0000-00-00', 5273, '', NULL), (5274, 132, 'S/N 063627738', 'Humboldt BG2720-0-16 Dial Indicator (D-6027)', 'Range: 2 inches ', '2010-04-06', 5274, '4/6/2010', NULL), (5275, 133, 'S/N 734838 / 07102', 'Cooper Load cell model LGP-310 w/ Digital CSI CS-100-10M Dig.', 'Range 100 lbs to 20,000 lbs (E-4)', '2013-05-07', 5275, '5/7/2013', NULL), (5276, 134, '', '', '', '0000-00-00', 5276, '', NULL), (5277, 135, '', '', '', '0000-00-00', 5277, '', NULL), (5278, 136, '', '', '', '0000-00-00', 5278, '', NULL), (5279, 137, '', '', '', '0000-00-00', 5279, '', NULL), (5280, 138, '', '', '', '0000-00-00', 5280, '', NULL), (5281, 139, '', '', '', '0000-00-00', 5281, '', NULL), (5282, 140, 'S/N A583', 'Geotest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 600 lbs ', '2009-05-26', 5282, '5/26/2009', NULL), (5283, 141, '', '', '', '0000-00-00', 5283, '', NULL), (5284, 142, '', '', '', '0000-00-00', 5284, '', NULL), (5285, 143, '', '', '', '0000-00-00', 5285, '', NULL), (5286, 144, '', '', '', '0000-00-00', 5286, '', NULL), (5287, 145, 'S/N AE40112102', 'Adam CPW Plus 75 Scale (E-898)', 'Range: 1 lb to 165 lbs', '2013-05-29', 5287, '5/29/2013', NULL), (5288, 146, '', '', '', '0000-00-00', 5288, '', NULL), (5289, 147, '', '', '', '0000-00-00', 5289, '', NULL), (5290, 148, 'S/N 10700929', 'Tamtron BCS-100-A Crane Scale (E-4)', 'Range: 10,000 Kg (ID# 189092-0035)', '2009-08-13', 5290, '8/13/2009', NULL), (5291, 149, '', '', '', '0000-00-00', 5291, '', NULL), (5292, 150, '', '', '', '0000-00-00', 5292, '', NULL), (5293, 151, 'S/N 942725324', 'Humboldt Mdl. DPX 1000 Dial Indicator (OOS) (D-6027)', 'Range: 0.25 inches', '2007-05-08', 5293, '5/8/2007', NULL), (5294, 152, '', '', '', '0000-00-00', 5294, '', NULL), (5295, 153, '', '', '', '0000-00-00', 5295, '', NULL), (5296, 154, '', '', '', '0000-00-00', 5296, '', NULL), (5297, 155, '', '', '', '0000-00-00', 5297, '', NULL), (5298, 156, '', '', '', '0000-00-00', 5298, '', NULL), (5299, 157, '', '', '', '0000-00-00', 5299, '', NULL), (5300, 158, '', '', '', '0000-00-00', 5300, '', NULL), (5301, 159, '', '', '', '0000-00-00', 5301, '', NULL), (5302, 160, 'S/N', 'Proving Ring (E-4 & ManSpecs)', 'Cap: 2K', NULL, 5302, 'New', NULL), (5303, 161, '', '', '', '0000-00-00', 5303, '', NULL), (5304, 162, 'S/N 1370 (1023)', 'Ametek Mdl. DT-500-T Force Gauge (E-4 & 2%)', 'Range: 500 lbs (Compression Only)', '2013-07-08', 5304, '7/8/2013', NULL), (5305, 163, '', '', '', '0000-00-00', 5305, '', NULL), (5306, 164, '', '', '', '0000-00-00', 5306, '', NULL), (5307, 165, 'S/N 95796 NC#17', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K', '2012-07-17', 5307, '7/17/2012', NULL), (5308, 166, 'S/N 05044041/8', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 kg', '2005-03-20', 5308, '3/20/2005', NULL), (5309, 167, 'CS-1172', '9 1/2\" Cylinder Seals - 7 - $3.50 ', '', '0000-00-00', 5309, '', NULL), (5310, 168, 'S/N 119564', 'Proceq Type N Hammer (C-805)', 'Range: 78 to 82 (Moved)', '2009-01-14', 5310, '1/14/2009', NULL), (5311, 169, 'S/N C0702L', 'Enerpac Mdl. RCH-202 Post Tension Jack (E-4 & PCI) ', 'Range: 20 Ton ', '2007-05-15', 5311, '5/15/2007', NULL), (5312, 170, '', '', '', '0000-00-00', 5312, '', NULL), (5313, 171, 'S/N 0052A', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2013-02-21', 5313, '2/21/2013', NULL), (5314, 172, 'S/N 0065', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-29', 5314, '7/29/2009', NULL), (5315, 173, '', '', '', '0000-00-00', 5315, '', NULL), (5316, 174, '', '', '', '0000-00-00', 5316, '', NULL), (5317, 175, 'S/N 72448', 'Aerospace Dial Indicator (D-6027)', 'Range: 1 inch', '2013-08-21', 5317, '8/21/2013', NULL), (5318, 176, '', '', '', '0000-00-00', 5318, '', NULL), (5319, 177, '', '', '', '0000-00-00', 5319, '', NULL), (5320, 178, '', '', '', '0000-00-00', 5320, '', NULL), (5321, 179, '', ' w/ LVDT (D-6027)', 'Range: 2 inch', '2009-08-31', 5321, '8/31/2009', NULL), (5322, 180, 'S/N 12252 / Unit #1', 'Hamilton Simplex Prestress Jack (E-4 & PCI)', 'Range: 4K / 60K', '2009-02-12', 5322, '2/12/2009', NULL), (5323, 181, '', '', '', '0000-00-00', 5323, '', NULL), (5324, 182, '', '', '', '0000-00-00', 5324, '', NULL), (5325, 183, '', '', '', '0000-00-00', 5325, '', NULL), (5326, 184, '', '', '', '0000-00-00', 5326, '', NULL), (5327, 185, ' ', '', '', '0000-00-00', 5327, '', NULL), (5328, 186, '', '', '', '0000-00-00', 5328, '', NULL), (5329, 187, '', '', '', '0000-00-00', 5329, '', NULL), (5330, 188, '', '', '', '0000-00-00', 5330, '', NULL), (5331, 189, '', '', '', '0000-00-00', 5331, '', NULL), (5332, 190, '', '', '', '0000-00-00', 5332, '', NULL), (5333, 191, '', ' w/ Block Frame Channel #1 (E-4)', 'Range: 3K to 450K', '2012-10-09', 5333, '10/9/2012', NULL), (5334, 192, 'S/N M92113740-08-04', ' w/ Horizontal LVDT Shear Displacement (D-6027)', 'Range: 0.4 inches', '0000-00-00', 5334, '', NULL), (5335, 193, 'S/N KAM842', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2010-10-20', 5335, '10/20/2010', NULL), (5336, 194, '', '', '', '0000-00-00', 5336, '', NULL), (5337, 195, '', '', '', '0000-00-00', 5337, '', NULL), (5338, 196, 'S/N 62792', ' w/ Interface SM-1000 1 Kip T & C Load Cell (E-4)', 'Range: 10 lbs to 1K (ID#CAL3692)', '2008-10-28', 5338, '10/28/2008', NULL), (5339, 197, '', '', '', '0000-00-00', 5339, '', NULL), (5340, 198, 'S/N 253185974', 'ELE Model LC-4 Dial Indicator (D-6027) (Out of Service)', 'Range: 1/2 inch', '2003-11-11', 5340, '11/11/2003', NULL), (5341, 199, '', '', '', '0000-00-00', 5341, '', NULL), (5342, 200, 'S/N 60858', ' w/Load Cell Compression & Tension (E-4)', 'Range: 1 lb to 112 lbs', '2012-11-20', 5342, '11/20/2012', NULL), (5343, 201, '', '', '', '0000-00-00', 5343, '', NULL), (5344, 202, '', '', '', '0000-00-00', 5344, '', NULL), (5345, 203, '', '', '', '0000-00-00', 5345, '', NULL), (5346, 204, '', '', '', '0000-00-00', 5346, '', NULL), (5347, 205, 'S/N 24113', 'Soiltest Single Proving Ring (OUT OF SERVICE) (E-4 & Man Specs)', 'Cap: 10K', '1999-08-24', 5347, '8/24/1999', NULL), (5348, 206, '', '', '', '0000-00-00', 5348, '', NULL), (5349, 207, '', '', '', '0000-00-00', 5349, '', NULL), (5350, 208, '', '', '', '0000-00-00', 5350, '', NULL), (5351, 209, '', '', '', '0000-00-00', 5351, '', NULL), (5352, 210, '', '', '', '0000-00-00', 5352, '', NULL), (5353, 211, '', '', '', '0000-00-00', 5353, '', NULL), (5354, 212, '', '', '', '0000-00-00', 5354, '', NULL), (5355, 213, '', 'to reconect the machine and recalibrate once the repair to the ', '', '0000-00-00', 5355, '', NULL), (5356, 214, 'S/N 11170', 'Skidmore Wilhelm Model MS Pull Out Tester (E-4)', 'Range: 90K ', '2013-01-14', 5356, '1/14/2013', NULL), (5357, 215, 'S/N 141012', 'Tinius Olsen A-O-B Metal Hardness Tester (E-4)', 'Range: 3,000 KG ', '2008-02-07', 5357, '2/7/2008', NULL), (5358, 216, '', ' ', '', '0000-00-00', 5358, '', NULL), (5359, 217, '', '', '', '0000-00-00', 5359, '', NULL), (5360, 218, '', '', '', '0000-00-00', 5360, '', NULL), (5361, 219, '', '', '', '0000-00-00', 5361, '', NULL), (5362, 220, 'S/N ID#A0601 ', 'w/ LVDT Compressometer Channel EX 2 cal\'d to 63191 & 90175', 'Range: 0.05 inches (D-6027)', '2009-02-05', 5362, '2/5/2009', NULL), (5363, 221, '', '', '', '0000-00-00', 5363, '', NULL), (5364, 222, 'S/N U3-2G-3', 'Hamilton Simplex Prestress Jack (E-4&PCI)', 'Range: 3K / 40K', '2013-01-29', 5364, '1/29/2013', NULL), (5365, 223, '', '', '', '0000-00-00', 5365, '', NULL), (5366, 224, 'S/N', ' w/ Gauge (E-4)', 'Range: 40K to 400K', '2013-04-08', 5366, '4/8/2013', NULL), (5367, 225, '', '', '', '0000-00-00', 5367, '', NULL), (5368, 226, '', '', '', '0000-00-00', 5368, '', NULL), (5369, 227, '', '', '', '0000-00-00', 5369, '', NULL), (5370, 228, '', '', '', '0000-00-00', 5370, '', NULL), (5371, 229, '', '', '', '0000-00-00', 5371, '', NULL), (5372, 230, '', '', '', '0000-00-00', 5372, '', NULL), (5373, 231, 'S/N 10252', 'Marsh Service Gauge (D-5720)', 'Range: 30 PSI', '2005-01-28', 5373, '1/28/2005', NULL), (5374, 232, 'S/N 101', 'Marsh Service Gauge (D-5720)', 'Range: 600 PSI', '2010-01-13', 5374, '1/13/2010', NULL), (5375, 233, '', '', '', '0000-00-00', 5375, '', NULL), (5376, 234, 'S/N 05075414/2', 'Eilon Engineering RON 2501 S-50 Load Cell #2 (ManSp & 0.1% FS)', 'Range: 50 Short Ton ', '2010-02-16', 5376, '2/16/2010', NULL), (5377, 235, 'S/N 1VA-80051-028', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 15 PSI ', '2010-01-18', 5377, '1/18/2010', NULL), (5378, 236, 'S/N 9279 (ID#LABD18)', ' w/ Lucas Control GCD-121-250 Displacement LVDT Transv. St.Ch. #4 ', 'Range: 0.15 inches (D-6027)', '2011-01-05', 5378, '1/5/2011', NULL), (5379, 237, '', '', '', '0000-00-00', 5379, '', NULL), (5380, 238, 'S/N 0492', 'Humboldt H-4454 CBR Proving Ring (E-4 & Man Specs)', 'Range: 10K ', NULL, 5380, 'New', NULL), (5381, 239, 'S/N', ' w/Recorder (Cal In House) (E-83)', 'Range: ', NULL, 5381, 'New', NULL), (5382, 240, 'S/N 684 (ID#LABD14)', ' w/ MTS 632.11B-20 Compressometer-Axial Strain Channel (E-83)', 'Range: 0.03 in/in', '2011-01-10', 5382, '1/10/2011', NULL), (5383, 241, '', '', '', '0000-00-00', 5383, '', NULL), (5384, 242, 'S/N E89001', 'w/Epsilon Extensometer Model 3542-0200-002-ST Channel #2 (E-83)', 'Range: 0.02 in/in (GL 2) ', '2013-02-27', 5384, '2/27/2013', NULL), (5385, 243, 'S/N 1559/1051', 'Satec PS5M Extensometer (E-83)', 'Range: 0.02 in/in (GL 2 Inch)', '2013-09-16', 5385, '9/16/2013', NULL), (5386, 244, '', '', '', '0000-00-00', 5386, '', NULL), (5387, 245, '', '', '', '0000-00-00', 5387, '', NULL), (5388, 246, '', '', '', '0000-00-00', 5388, '', NULL), (5389, 247, 'S/N 353 (ID# 3)', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K ', '2012-02-16', 5389, '2/16/2012', NULL), (5390, 248, 'S/N 360', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K ', '2012-02-14', 5390, '2/14/2012', NULL), (5391, 249, 'S/N AE 40111497', 'Adam CPW Plus 75 Scale', 'Range: 165 lbs', '2010-02-11', 5391, '2/11/2010', NULL), (5392, 250, '', '', '', '0000-00-00', 5392, '', NULL), (5393, 251, '', '', '', '0000-00-00', 5393, '', NULL), (5394, 252, '', '', '', '0000-00-00', 5394, '', NULL), (5395, 253, '', '', '', '0000-00-00', 5395, '', NULL), (5396, 254, '', '', '', '0000-00-00', 5396, '', NULL), (5397, 255, '', '', '', '0000-00-00', 5397, '', NULL), (5398, 256, '', '', '', '0000-00-00', 5398, '', NULL), (5399, 257, '', '', '', '0000-00-00', 5399, '', NULL), (5400, 258, '', '', '', '0000-00-00', 5400, '', NULL), (5401, 259, '', '', '', '0000-00-00', 5401, '', NULL), (5402, 260, '', '', '', '0000-00-00', 5402, '', NULL), (5403, 261, 'S/N 75010 (ATG# 601)', 'Forney QC-50 Compression Machine (E-4)', 'Range: 400K', '2013-03-27', 5403, '3/27/2013', NULL), (5404, 262, 'S/N 401027 (ATG# 937)', ' w/ Load Cell (E-4)', 'Range: 10K', '2013-03-27', 5404, '3/27/2013', NULL), (5405, 263, '', '', '', '0000-00-00', 5405, '', NULL), (5406, 264, 'S/N 200016 (ATG# 758)', ' w/Load Cell Central TFT42-200K Load Cell (E-4)', 'Range: 200K ', '2013-03-27', 5406, '3/27/2013', NULL), (5407, 265, '', '', '', '0000-00-00', 5407, '', NULL), (5408, 266, '', '', '', '0000-00-00', 5408, '', NULL), (5409, 267, 'S/N Z7005AX', ' w/ Gauge ', 'Range: 150 Ton ', '2010-03-26', 5409, '3/26/2010', NULL), (5410, 268, '', '', '', '0000-00-00', 5410, '', NULL), (5411, 269, '', '', '', '0000-00-00', 5411, '', NULL), (5412, 270, '', '', '', '0000-00-00', 5412, '', NULL), (5413, 271, '', '', '', '0000-00-00', 5413, '', NULL), (5414, 272, 'S/N 02013', 'FX-250E-PILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Cylinder Frame)', '2010-04-19', 5414, '4/19/2010', NULL), (5415, 273, '', '', '', '0000-00-00', 5415, '', NULL), (5416, 274, '', '', '', '0000-00-00', 5416, '', NULL), (5417, 275, '', '', '', '0000-00-00', 5417, '', NULL), (5418, 276, '', '', '', '0000-00-00', 5418, '', NULL), (5419, 277, 'S/N 97105', 'CSI Digital Load Cell System CS-100-6 with Cell #3 & Cell #4 (E-4)', 'Cell #3 - 50K S/N 713655 ', '2010-07-14', 5419, '7/14/2010', NULL), (5420, 278, '', '', '', '0000-00-00', 5420, '', NULL), (5421, 279, '', '', '', '0000-00-00', 5421, '', NULL), (5422, 280, '', '', '', '0000-00-00', 5422, '', NULL), (5423, 281, 'S/N Z37309', 'Enerpac Mdl. LS10006 (E-4 ManSpecs &2%)', 'Range: 200,000 lbs', '2013-05-02', 5423, '5/2/2013', NULL), (5424, 282, '', '', '', '0000-00-00', 5424, '', NULL), (5425, 283, '', '', '', '0000-00-00', 5425, '', NULL), (5426, 284, 'S/N TEN019', 'Transducer Technologies CLC 100K Load Cell (E-4)', 'Range: 1K to 100K ', '2013-04-24', 5426, '4/24/2013', NULL), (5427, 285, '', '', '', '0000-00-00', 5427, '', NULL), (5428, 286, '', '', '', '0000-00-00', 5428, '', NULL), (5429, 287, 'S/N 01297035', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2010-04-27', 5429, '4/27/2010', NULL), (5430, 288, 'S/N 23632', 'Soiltest CBR Single Proving Ring (E-4 & ManSpecs)', 'Cap: 6K ', '2010-04-15', 5430, '4/15/2010', NULL), (5431, 289, '', '', '', '0000-00-00', 5431, '', NULL), (5432, 290, '', '', '', '0000-00-00', 5432, '', NULL), (5433, 291, '', '', '', '0000-00-00', 5433, '', NULL), (5434, 292, '', '', '', '0000-00-00', 5434, '', NULL), (5435, 293, '', '', '', '0000-00-00', 5435, '', NULL), (5436, 294, 'S/N 608264', 'AEADAM Max Scale (E-898)', 'Range: 70 lbs ', '2011-04-19', 5436, '4/19/2011', NULL), (5437, 295, 'S/N 0003', 'Doskocil Tripod Pull Off Tester (Houston) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2005-10-19', 5437, '10/19/2005', NULL), (5438, 296, 'S/N H-0241', 'Soiltest C-220 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-12', 5438, '5/12/2010', NULL), (5439, 297, '', '', '', '0000-00-00', 5439, '', NULL), (5440, 298, 'S/N 62908/5/SIL', 'Comark C9555 Pressure Transducer (D-5720)', 'Range: 210 Kpa Positive ', '2013-05-15', 5440, '5/15/2013', NULL), (5441, 299, 'S/N 1011', ' w/ Load Cell Vertical Force (E-4)', 'Range: 1/8 TSF to 22 TSF', '2013-05-15', 5441, '5/15/2013', NULL), (5442, 300, 'S/N 212576', ' w/ Displacement (E-2309)', 'Range: 5 inches ', '2013-05-15', 5442, '5/15/2013', NULL), (5443, 301, '', '', '', '0000-00-00', 5443, '', NULL), (5444, 302, '', '', '', '0000-00-00', 5444, '', NULL), (5445, 303, 'S/N LP-232', ' w/ Linear Mdl. LS3 Postion Sensor (Channel #2) (D-6027)', 'Range: 2 inches ', '2011-05-25', 5445, '5/25/2011', NULL), (5446, 304, '', '', '', '0000-00-00', 5446, '', NULL), (5447, 305, '', '', '', '0000-00-00', 5447, '', NULL), (5448, 306, 'S/N 51470', 'Morehouse #5C Ring Force Gauge (E-4 & 2%)', 'Range: 20K', '2010-05-17', 5448, '5/17/2010', NULL), (5449, 307, '', '', '', '0000-00-00', 5449, '', NULL), (5450, 308, 'S/N 9', 'Trautwein Pressure Transducer w/Geocomp Datalogger (OOS)', 'Range: 10 to 120 psi. (D-5720)', '2003-06-03', 5450, '6/3/2003', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (5451, 309, 'S/N 970246', 'Karol Warner Direct Shear Model KW590-Vertical Force only', 'Range:16TSF(E-4&ManSpecs)(Out of Svc)', '2006-06-01', 5451, '6/1/2006', NULL), (5452, 310, '', ' w/ Vertical Force Load Cell (E-4)', 'Range: 1K', NULL, 5452, 'New', NULL), (5453, 311, 'S/N 5164280-5JB ', 'Ohaus B100S Electronic Scale (E-898)', 'Range: 100 lbs ', '2010-05-13', 5453, '5/13/2010', NULL), (5454, 312, '', '', '', '0000-00-00', 5454, '', NULL), (5455, 313, '', '', '', '0000-00-00', 5455, '', NULL), (5456, 314, '', '', '', '0000-00-00', 5456, '', NULL), (5457, 315, '', '', '', '0000-00-00', 5457, '', NULL), (5458, 316, 'S/N 06490226KF', 'Ohaus Field Scale (E-898)', 'Range: 220 lbs ', '2009-02-17', 5458, '2/17/2009', NULL), (5459, 317, '', '', '', '0000-00-00', 5459, '', NULL), (5460, 318, '', '', '', '0000-00-00', 5460, '', NULL), (5461, 319, '', '', '', '0000-00-00', 5461, '', NULL), (5462, 320, 'S/N 599', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500 lbs', '2011-06-15', 5462, '6/15/2011', NULL), (5463, 321, '', '', '', '0000-00-00', 5463, '', NULL), (5464, 322, 'S/N 1128', 'Humboldt Beam Tester (E-4 & 2% ManSpecs)', 'Range: 15K ', '2013-06-12', 5464, '6/12/2013', NULL), (5465, 323, 'S/N AD', 'Soiltest C-280 Consolidation Machine (E-4 & 2% ManSpecs)', 'Range: 64 Kg (Frame 2)', '2013-06-19', 5465, '6/19/2013', NULL), (5466, 324, '', '', '', '0000-00-00', 5466, '', NULL), (5467, 325, '', '', '', '0000-00-00', 5467, '', NULL), (5468, 326, '', '', '', '0000-00-00', 5468, '', NULL), (5469, 327, '', '', '', '0000-00-00', 5469, '', NULL), (5470, 328, 'S/N 20606056', ' w/Load Cell', '', '2013-06-25', 5470, '6/25/2013', NULL), (5471, 329, 'S/N 2', 'Harrington Model HLT Hoist Tester (E-4 & Man Specs)', 'Cap: 5 Ton / 10 Ton ', '2013-06-26', 5471, '6/26/2013', NULL), (5472, 330, '', '', '', '0000-00-00', 5472, '', NULL), (5473, 331, '', '', '', '0000-00-00', 5473, '', NULL), (5474, 332, '', '', '', '0000-00-00', 5474, '', NULL), (5475, 333, '', '', '', '0000-00-00', 5475, '', NULL), (5476, 334, 'S/N HLT-69120', 'Harrington Model HLTI Hoist Tester (E-4 & Man Specs)', 'Range: 5 Ton/ 10 Ton ', '2013-06-26', 5476, '6/26/2013', NULL), (5477, 335, '', '', '', '0000-00-00', 5477, '', NULL), (5478, 336, '', '', '', '0000-00-00', 5478, '', NULL), (5479, 337, '', '', '', '0000-00-00', 5479, '', NULL), (5480, 338, 'S/N A-3797', 'TMI 51008 with CS-100-SP Digital Compression Machine (E-4)', 'Range: 10 lbs to 1K ', '2013-06-24', 5480, '6/24/2013', NULL), (5481, 339, '', '', '', '0000-00-00', 5481, '', NULL), (5482, 340, 'S/N 366138', 'Omega Digital Load Cell Model LCG-10K w/DP-41-S Digital', 'Range: 120 KPA (E-4)', '2004-02-09', 5482, '2/9/2004', NULL), (5483, 341, 'S/N 202', 'Ashcroft Gauge G-8962 (IN HOUSE) (D-5720)', 'Range: 0-60psi', '2005-10-12', 5483, '10/12/2005', NULL), (5484, 342, '', '', '', '0000-00-00', 5484, '', NULL), (5485, 343, '', '', '', '0000-00-00', 5485, '', NULL), (5486, 344, '', '', '', '0000-00-00', 5486, '', NULL), (5487, 345, 'S/N U-03', 'Simplex Model RC-202 Ram w/ hand pump (E-4 & Man Specs)', 'Range: 24K (4,650 PSI)', '2009-02-16', 5487, '2/16/2009', NULL), (5488, 346, 'S/N 2111209031', 'Ashcroft Pressure Transducer w/ Delphin Unit (D-5720)', 'Range: 500psi', '0000-00-00', 5488, '', NULL), (5489, 347, '', '', '', '0000-00-00', 5489, '', NULL), (5490, 348, 'S/N 1334-6AF', 'Ohaus CD-31 Scale (E-898)', 'Range: 250 lbs ', '2009-03-31', 5490, '3/31/2009', NULL), (5491, 349, '', ' ***Needs return springs***', '', '0000-00-00', 5491, '', NULL), (5492, 350, '', '', '', '0000-00-00', 5492, '', NULL), (5493, 351, '', '', '', '0000-00-00', 5493, '', NULL), (5494, 352, '', '', '', '0000-00-00', 5494, '', NULL), (5495, 353, '', '', '', '0000-00-00', 5495, '', NULL), (5496, 354, '', 'Price includes FCS Construction, St. Louis, MO ', '', '0000-00-00', 5496, '', NULL), (5497, 355, '', '', '', '0000-00-00', 5497, '', NULL), (5498, 356, '', '', '', '0000-00-00', 5498, '', NULL), (5499, 357, '', '', '', '0000-00-00', 5499, '', NULL), (5500, 358, '', '', '', '0000-00-00', 5500, '', NULL), (5501, 359, '', '', '', '0000-00-00', 5501, '', NULL), (5502, 360, '', '', '', '0000-00-00', 5502, '', NULL), (5503, 361, '', '', '', '0000-00-00', 5503, '', NULL), (5504, 362, '0701051-MF', ' Serial Number Too Long', '', '0000-00-00', 5504, '', NULL), (5505, 363, '', '', '', '0000-00-00', 5505, '', NULL), (5506, 364, '', '', '', '0000-00-00', 5506, '', NULL), (5507, 365, '', '', '', '0000-00-00', 5507, '', NULL), (5508, 366, '', '', '', '0000-00-00', 5508, '', NULL), (5509, 367, '', '', '', '0000-00-00', 5509, '', NULL), (5510, 368, 'S/N 8029141008', 'Ohaus Adventurer Pro Scale (E-898)', 'Range: 8,100 Grams ', '2010-11-09', 5510, '11/9/2010', NULL), (5511, 369, '', '', '', '0000-00-00', 5511, '', NULL), (5512, 370, '', '', '', '0000-00-00', 5512, '', NULL), (5513, 371, '', '', '', '0000-00-00', 5513, '', NULL), (5514, 372, '', '', '', '0000-00-00', 5514, '', NULL), (5515, 373, 'S/N 221 ', 'Karol Warner Unconfined Single Proving Ring (E-4 & Man Specs) ', 'Range: 1K ', '2013-08-27', 5515, '8/27/2013', NULL), (5516, 374, '', '', '', '0000-00-00', 5516, '', NULL), (5517, 375, 'S/N', 'Omega Compression Load Cell w/Handheld Indicator', 'Range: 200,000 lbs ', NULL, 5517, 'New', NULL), (5518, 376, '', '', '', '0000-00-00', 5518, '', NULL), (5519, 377, '', '', '', '0000-00-00', 5519, '', NULL), (5520, 378, '', '', '', '0000-00-00', 5520, '', NULL), (5521, 379, 'S/N 132285', 'Tinius Olsen Lo Cap Digital Compression Machine (E-4)', 'Range: 1K/6K/15K/30K ', NULL, 5521, 'New', NULL), (5522, 380, '', '', '', '0000-00-00', 5522, '', NULL), (5523, 381, '', '', '', '0000-00-00', 5523, '', NULL), (5524, 382, 'S/N 04188C', 'Enerpac Mdl. SS101 10 Ton Ram (E-4 & Man Specs)', 'Range: 200 lbs to 2K (1,020 PSI) ', '2013-09-05', 5524, '9/5/2013', NULL), (5525, 383, '', '', '', '0000-00-00', 5525, '', NULL), (5526, 384, '', '', '', '0000-00-00', 5526, '', NULL), (5527, 385, '', '', '', '0000-00-00', 5527, '', NULL), (5528, 386, '', '', '', '0000-00-00', 5528, '', NULL), (5529, 387, '', '', '', '0000-00-00', 5529, '', NULL), (5530, 388, '', '', '', '0000-00-00', 5530, '', NULL), (5531, 389, '', '', '', '0000-00-00', 5531, '', NULL), (5532, 390, 'S/N VAC 001', 'Wika Vaccum Gauge (Man Specs & 2%)', 'Range: 30 in Hg', '2013-10-08', 5532, '10/8/2013', NULL), (5533, 391, '', '', '', '0000-00-00', 5533, '', NULL), (5534, 392, '', '', '', '0000-00-00', 5534, '', NULL), (5535, 393, 'S/N MG50647270', ' w/ Vishay HS5 LVDT - Strain Channel #1 (D-6027)', 'Range: 0.0005 inches to 0.2 inches ', '2012-10-16', 5535, '10/16/2012', NULL), (5536, 394, '', '', '', '0000-00-00', 5536, '', NULL), (5537, 395, '', '', '', '0000-00-00', 5537, '', NULL), (5538, 396, '', '', '', '0000-00-00', 5538, '', NULL), (5539, 397, 'S/N', 'Manometer', 'Range:', NULL, 5539, 'New', NULL), (5540, 398, '', '', '', '0000-00-00', 5540, '', NULL), (5541, 399, '', '', '', '0000-00-00', 5541, '', NULL), (5542, 400, 'S/N 14637585', 'AND GF-3000 Scale (E-898)', 'Range: 3,100 Grams ', '2012-10-29', 5542, '10/29/2012', NULL), (5543, 401, '', '', '', '0000-00-00', 5543, '', NULL), (5544, 402, '', '', '', '0000-00-00', 5544, '', NULL), (5545, 403, '', '', '', '0000-00-00', 5545, '', NULL), (5546, 404, 'S/N 03092739/18', ' w/ Indicator ', 'Range: 50K', '2010-03-25', 5546, '3/25/2010', NULL), (5547, 405, '', '', '', '0000-00-00', 5547, '', NULL), (5548, 406, '', '', '', '0000-00-00', 5548, '', NULL), (5549, 407, '12', 'O\'Ring Greenlee Rapid Travel Valve - VS-2012', '$3.00 each', '0000-00-00', 5549, '', NULL), (5550, 408, 'S/N DEDX2700866', 'Dillon EDxtreme Dynamometer (E-4)', 'Range: 50K ', '2010-09-29', 5550, '9/29/2010', NULL), (5551, 409, '', '', '', '0000-00-00', 5551, '', NULL), (5552, 410, '', '', '', '0000-00-00', 5552, '', NULL), (5553, 411, 'S/N AP185994', 'Dillon Dynamometer (E-4 & 2%)', 'Range: 50K ', '2010-10-07', 5553, '10/7/2010', NULL), (5554, 412, '', '', '', '0000-00-00', 5554, '', NULL), (5555, 413, '', '', '', '0000-00-00', 5555, '', NULL), (5556, 414, 'S/N', ' w/ Horizontal Force (E-4)', 'Range: ', NULL, 5556, 'New', NULL), (5557, 415, '', '', '', '0000-00-00', 5557, '', NULL), (5558, 416, '', '', '', '0000-00-00', 5558, '', NULL), (5559, 417, '', '', '', '0000-00-00', 5559, '', NULL), (5560, 418, 'S/N 1885PL0044-3', ' w/ Vertical Force (E-4 & 2 %)', 'Range: 228.5 Kg', '2012-11-06', 5560, '11/6/2012', NULL), (5561, 419, '', '', '', '0000-00-00', 5561, '', NULL), (5562, 420, '', '1 - VS-2023 O\'Ring Greenlee Release Lever/Pump Block Cap', '', '0000-00-00', 5562, '', NULL), (5563, 421, '', '', '', '0000-00-00', 5563, '', NULL), (5564, 422, 'S/N 90428A', 'Interface Mdl. 1220AF-25K-B Load Cell w/ Interface 9210 Digital ', 'Range: 25K (ID#GS227) (E-4)', '2013-01-08', 5564, '1/8/2013', NULL), (5565, 423, 'S/N 129935 (ID# G1073)', ' w/ Geotac External Load Cell Channel #1 (E-4)', 'Range: 2K ', '2013-01-08', 5565, '1/8/2013', NULL), (5566, 424, 'S/N G838 (ID#G838)', 'Brainard Kilman E-124 Pore Pressure Transducer (D-5720)', 'Range: 150 PSI ', '2013-01-09', 5566, '1/9/2013', NULL), (5567, 425, 'S/N 97564 (ID# G834)', ' w/ Interface SSM-AJ-2000 External Load Cell Channel #1 ', 'Range: 2K (E2658-11)', '2013-01-08', 5567, '1/8/2013', NULL), (5568, 426, '', '', '', '0000-00-00', 5568, '', NULL), (5569, 427, 'S/N ID# G1093 ', ' w/ Bong Shin Vertical Load Cell (E-4)', 'Range: 1K ', '2013-01-09', 5569, '1/9/2013', NULL), (5570, 428, 'S/N 9642-GB0202156', 'ELE Soiltest CT-7250-GB Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (ID# G788)', '2013-01-07', 5570, '1/7/2013', NULL), (5571, 429, 'S/N PD1M-1222', ' w/ Satec PD1M Deflectometer (ML Range) (E-83)', 'Range: 1 inch', '2013-01-09', 5571, '1/9/2013', NULL), (5572, 430, '', '', '', '0000-00-00', 5572, '', NULL), (5573, 431, 'S/N M104 (ID# M-104)', ' w/Displacement (E-2309)', 'Range: 20 Inches', '2013-01-07', 5573, '1/7/2013', NULL), (5574, 432, '', '', '', '0000-00-00', 5574, '', NULL), (5575, 433, '', '', '', '0000-00-00', 5575, '', NULL), (5576, 434, '', '', '', '0000-00-00', 5576, '', NULL), (5577, 435, 'S/N ', 'Displacement w/ MTEST Quattro (E-2309)', 'Range: 3 inches ', '2013-01-30', 5577, '1/30/2013', NULL), (5578, 436, '', '', '', '0000-00-00', 5578, '', NULL), (5579, 437, 'S/N 24801', 'Testmark CM-2500-LPD Digital Compression Machine (E-4)', 'Range: 250 K', '2013-09-18', 5579, '9/18/2013', NULL), (5580, 438, '', '', '', '0000-00-00', 5580, '', NULL), (5581, 439, '', '', '', '0000-00-00', 5581, '', NULL), (5582, 440, '', '', '', '0000-00-00', 5582, '', NULL), (5583, 441, '', '', '', '0000-00-00', 5583, '', NULL), (5584, 442, '', '', '', '0000-00-00', 5584, '', NULL), (5585, 443, '', '', '', '0000-00-00', 5585, '', NULL), (5586, 444, '', '', '', '0000-00-00', 5586, '', NULL), (5587, 445, 'S/N PS-2085', 'Trautwein Digital Pressure Transducer (D-5720)', 'Range: 200 PSI', '2013-02-13', 5587, '2/13/2013', NULL), (5588, 446, '', '', '', '0000-00-00', 5588, '', NULL), (5589, 447, 'S/N 62257', 'Sclerometro N-25 Hammer (ID#SH-01) (C-805)', 'Range: 78 - 82', '2013-02-13', 5589, '2/13/2013', NULL), (5590, 448, 'S/N 12750030403912', 'Barnstead International F85930 Oven Scale (E-898)(ID#10S-01)', 'Range: 10,000 Grams', '2013-02-13', 5590, '2/13/2013', NULL), (5591, 449, 'S/N PFS-10 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 5591, '2/13/2013', NULL), (5592, 450, 'S/N CH1101209', 'H & C Weighing Systems Scale ID#TS-08 (E-898)', 'Range: 210 Grams ', '2013-02-13', 5592, '2/13/2013', NULL), (5593, 451, 'S/N 853013', 'Toledo Balance Scale (E-898) ', 'Range: 10,000 Grams ', '2013-02-12', 5593, '2/12/2013', NULL), (5594, 452, '', '', '', '0000-00-00', 5594, '', NULL), (5595, 453, '', '', '', '0000-00-00', 5595, '', NULL), (5596, 454, '', '', '', '0000-00-00', 5596, '', NULL), (5597, 455, '', '', '', '0000-00-00', 5597, '', NULL), (5598, 456, '', '1-VS-2012 O\'Ring for Greenlee Rapid Travel Valve ', '', '0000-00-00', 5598, '', NULL), (5599, 457, '05007718/21', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSpec & 0.1%FS)', 'Range: 40K ', '2013-02-22', 5599, '2/22/2013', NULL), (5600, 458, 'S/N', 'Scale', 'Range: 50 lbs ', NULL, 5600, 'New', NULL), (5601, 459, '', '', '', '0000-00-00', 5601, '', NULL), (5602, 460, '', 'CS-100-2 taken off of machine and put on S/N 01079 in Grand Rapids', '', '0000-00-00', 5602, '', NULL), (5603, 461, '', '', '', '0000-00-00', 5603, '', NULL), (5604, 462, '', '', '', '0000-00-00', 5604, '', NULL), (5605, 463, '05-23379', ' w/LVDT Horizontal Display (D6027)', 'Range: 0.1 Inch to 1 Inch', '2013-03-05', 5605, '3/5/2013', NULL), (5606, 464, '', '', '', '0000-00-00', 5606, '', NULL), (5607, 465, '', '', '', '0000-00-00', 5607, '', NULL), (5608, 466, 'S/N 0811SBAL01012', ' w/ Horizontal Load Cell (E-4)', 'Range: 500 lbs Tension', '2013-03-20', 5608, '3/20/2013', NULL), (5609, 467, '', '', '', '0000-00-00', 5609, '', NULL), (5610, 468, '', '', '', '0000-00-00', 5610, '', NULL), (5611, 469, '', '', '', '0000-00-00', 5611, '', NULL), (5612, 470, '', '', '', '0000-00-00', 5612, '', NULL), (5613, 471, '', ' w/Beam Frame (E-4)', 'Range: 1K to 30K', '2010-01-14', 5613, '1/14/2010', NULL), (5614, 472, 'S/N 95040', 'Skidmore Wilhelm Mdl.M Bolt Tester (E-4 & 2%)', 'Range: 100K (MOVED)', '2012-03-05', 5614, '3/5/2012', NULL), (5615, 473, '', '', '', '0000-00-00', 5615, '', NULL), (5616, 474, 'S/N 8331320126 ', 'Ohaus PA 31102 Scale (E-898)', 'Range: 3,100 Grams', '2011-03-30', 5616, '3/30/2011', NULL), (5617, 475, '', ' w/ Beam Frame Mode 2 (E-4)', 'Range: 200 lbs to 20K', '2013-04-17', 5617, '4/17/2013', NULL), (5618, 476, 'S/N 391', 'Humboldt Beam Tester (E-4 & 2%)', 'Range: 15K ', '2013-04-10', 5618, '4/10/2013', NULL), (5619, 477, '', '', '', '0000-00-00', 5619, '', NULL), (5620, 478, '', '', '', '0000-00-00', 5620, '', NULL), (5621, 479, '', '', '', '0000-00-00', 5621, '', NULL), (5622, 480, '', '', '', '0000-00-00', 5622, '', NULL), (5623, 481, '', '', '', '0000-00-00', 5623, '', NULL), (5624, 482, '', '', '', '0000-00-00', 5624, '', NULL), (5625, 483, '', '', '', '0000-00-00', 5625, '', NULL), (5626, 484, 'S/N M 525681', 'Geotest 363-D3-20K-20PPI Load Cell (E-4)', 'Range: 20K', '2013-04-24', 5626, '4/24/2013', NULL), (5627, 485, '', '', '', '0000-00-00', 5627, '', NULL), (5628, 486, '', '', '', '0000-00-00', 5628, '', NULL), (5629, 487, '', '', '', '0000-00-00', 5629, '', NULL), (5630, 488, 'S/N 1155-14-13631', 'ELE Mdl. 1155BO300 Single Proving Ring (E-4 & Man Specs)', 'Cap: 1K', '2013-05-01', 5630, '5/1/2013', NULL), (5631, 489, 'S/N 60HV1027-', 'Baldwin Wiedeman 60HV-CS-100-2A Universal Tesing Machine ', 'Range: 600 lbs to 48,000 lbs (E-4)', '2013-04-30', 5631, '4/30/2013', NULL), (5632, 490, '', '', '', '0000-00-00', 5632, '', NULL), (5633, 491, 'S/N 96018 ', 'Forney F-250F-DR2000 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-04-24', 5633, '4/24/2013', NULL), (5634, 492, '', '', '', '0000-00-00', 5634, '', NULL), (5635, 493, 'S/N 10775', 'Humboldt Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 1,500lbs', '2013-04-30', 5635, '4/30/2013', NULL), (5636, 494, 'S/N 93-028', 'Totalcomp Mdl. 5000S Load Cell w/Humboldt Data Logger (E-4)', 'Range: 1K (Channel #13)', '2010-05-05', 5636, '5/5/2010', NULL), (5637, 495, 'S/N 982800797', 'Humboldt Mdl. BG-2600-0-16 Dial Indicator (D-6027)', 'Range: 0.6 inches', '2013-04-29', 5637, '4/29/2013', NULL), (5638, 496, 'S/N 51', 'Technotest Md. T-665 Direct Shear Machine (E-4 & ManSpecs)', 'Range:48 Kg (Vertical Force)', '2013-04-29', 5638, '4/29/2013', NULL), (5639, 497, 'S/N 20105032', ' w/ 400 lb Load Cell', 'Rang: 400 lbs ', '2013-04-23', 5639, '4/23/2013', NULL), (5640, 498, '', '', '', '0000-00-00', 5640, '', NULL), (5641, 499, '', '', '', '0000-00-00', 5641, '', NULL), (5642, 500, 'S/N 603283', ' w/ 1K T & C Load Cell (E-4)', 'Range:50 lbs/100 lbs/200 lbs/500 lbs/1K ', '2013-04-29', 5642, '4/29/2013', NULL), (5643, 501, '', '', '', '0000-00-00', 5643, '', NULL), (5644, 502, '', '', '', '0000-00-00', 5644, '', NULL), (5645, 503, 'S/N VT1326', 'Soiltest Mdl. AP1000 Versa Tester (E-4)', 'Range: 6K / 30K ', '2008-05-06', 5645, '5/6/2008', NULL), (5646, 504, '', '', '', '0000-00-00', 5646, '', NULL), (5647, 505, 'S/N Unknown', 'Wika Pressure Gauge (D-5720)', 'Range: 30 PSI ', '2013-08-08', 5647, '8/8/2013', NULL), (5648, 506, '', '', '', '0000-00-00', 5648, '', NULL), (5649, 507, '', '', '', '0000-00-00', 5649, '', NULL), (5650, 508, '', '', '', '0000-00-00', 5650, '', NULL), (5651, 509, '', '', '', '0000-00-00', 5651, '', NULL), (5652, 510, '', '', '', '0000-00-00', 5652, '', NULL), (5653, 511, '', '', '', '0000-00-00', 5653, '', NULL), (5654, 512, 'S/N H52128', 'HBM Model TYPC6 Load Cell Channel #4 (E-4)', 'Range: 400K (OOS)', '2008-08-20', 5654, '8/20/2008', NULL), (5655, 513, '', '', '', '0000-00-00', 5655, '', NULL), (5656, 514, 'S/N 6336x72', 'Lo-Tes Model LT-10 Digital Plastic Pipe Tester (E-4 & 2%)(Moved)', 'Range: 200 lbs to 10,000 lbs', '2011-05-05', 5656, '5/5/2011', NULL), (5657, 515, 'S/N TW5925', 'SPX Mdl. SJ201DA Post Tension Jack w/ Gauge #2 (E-4 & PCI)', 'Range: 35K ', '2013-05-09', 5657, '5/9/2013', NULL), (5658, 516, 'S/N 1155-16-12664C', ' w/ELE Mdl. 1155B0200 Single Proving Ring(E-4&ManSpecs)', 'Range: 650 lbs (3KN) Compression Only', '2013-05-07', 5658, '5/7/2013', NULL), (5659, 517, 'S/N TW6741', 'Crowder Post Tension Jack w/ Gauge #203 (E-4 & PCI)', 'Range: 47K', '2013-05-09', 5659, '5/9/2013', NULL), (5660, 518, '', ' w/ Gauges #230, #825, #860, #701, #224, #222, #225, #231', 'Range: 35K', '2011-05-10', 5660, '5/10/2011', NULL), (5661, 519, 'S/N 4521', 'Wykeham Farrance CBR Single Proving Ring (E-4 & ManSpecs)', 'Cap: 5K (E-4 & Man Specs)', '2013-05-07', 5661, '5/7/2013', NULL), (5662, 520, 'S/N TW2244', 'SPX Powerteam Post Tension Jack w/ Gauge #825 (E-4 & PCI)', 'Range: 35K ', '2013-05-09', 5662, '5/9/2013', NULL), (5663, 521, '', '', '', '0000-00-00', 5663, '', NULL), (5664, 522, '', '', '', '0000-00-00', 5664, '', NULL), (5665, 523, '', '', '', '0000-00-00', 5665, '', NULL), (5666, 524, 'S/N AE 40114504', 'Adam Scale CPW Plus 75 (E898) ', 'Range: 165 lbs', '2013-04-30', 5666, '4/30/2013', NULL), (5667, 525, '', '', '', '0000-00-00', 5667, '', NULL), (5668, 526, '', ' ', '', '0000-00-00', 5668, '', NULL), (5669, 527, '', '', '', '0000-00-00', 5669, '', NULL), (5670, 528, '', '', '', '0000-00-00', 5670, '', NULL), (5671, 529, '', '', '', '0000-00-00', 5671, '', NULL), (5672, 530, '', '', '', '0000-00-00', 5672, '', NULL), (5673, 531, '', '', '', '0000-00-00', 5673, '', NULL), (5674, 532, '', '', '', '0000-00-00', 5674, '', NULL), (5675, 533, '', '', '', '0000-00-00', 5675, '', NULL), (5676, 534, '', '', '', '0000-00-00', 5676, '', NULL), (5677, 535, '', '', '', '0000-00-00', 5677, '', NULL), (5678, 536, '', '', '', '0000-00-00', 5678, '', NULL), (5679, 537, '', '', '', '0000-00-00', 5679, '', NULL), (5680, 538, '', 'Closed on Friday ', '', '0000-00-00', 5680, '', NULL), (5681, 539, '', '', '', '0000-00-00', 5681, '', NULL), (5682, 540, '', '', '', '0000-00-00', 5682, '', NULL), (5683, 541, 'S/N 21853797', 'Acculab V1-10Kg Scale (E-898)', 'Range: 10,100 Grams', '2013-06-04', 5683, '6/4/2013', NULL), (5684, 542, '', '', '', '0000-00-00', 5684, '', NULL), (5685, 543, '', '', '', '0000-00-00', 5685, '', NULL), (5686, 544, '', '', '', '0000-00-00', 5686, '', NULL), (5687, 545, 'S/N 450', 'Humboldt Beam Breaker (E-4 & 2% ManSpecs)', 'Range:15K', '2013-06-12', 5687, '6/12/2013', NULL), (5688, 546, '', '', '', '0000-00-00', 5688, '', NULL), (5689, 547, 'S/N NC#12', 'HCS Hydraulic Load Cell (E-4 2% & ManSpecs)', 'Range: 60K', '2013-06-13', 5689, '6/13/2013', NULL), (5690, 548, 'S/N 210563', 'Transducer Techniques Load Cell w/ Dig. S/N 250004 (E-4) ', 'Range: 5K to 50K ', '2013-06-19', 5690, '6/19/2013', NULL), (5691, 549, '', '', '', '0000-00-00', 5691, '', NULL), (5692, 550, '', '', '', '0000-00-00', 5692, '', NULL), (5693, 551, '', '', '', '0000-00-00', 5693, '', NULL), (5694, 552, 'S/N Ram 2', ' w/ Simplex Ram ', 'Range: 10K (9,000 PSI)', '2011-06-29', 5694, '6/29/2011', NULL), (5695, 553, '', '', '', '0000-00-00', 5695, '', NULL), (5696, 554, '', '', '', '0000-00-00', 5696, '', NULL), (5697, 555, 'S/N 003', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI ', '2011-04-28', 5697, '4/28/2011', NULL), (5698, 556, '', '', '', '0000-00-00', 5698, '', NULL), (5699, 557, 'S/N 221649', 'Transducer Techniques CLP-1.5K Load Pin (ManSpecs & 0/1%FS)', 'Range: 1.5K', NULL, 5699, 'New', NULL), (5700, 558, 'S/N 005286', 'Hilti Pull Tester Model 59604/03/06 (New York) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2012-10-30', 5700, '10/30/2012', NULL), (5701, 559, 'S/N 902', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 30 PSI ', '2011-06-09', 5701, '6/9/2011', NULL), (5702, 560, '', '', '', '0000-00-00', 5702, '', NULL), (5703, 561, '', '', '', '0000-00-00', 5703, '', NULL), (5704, 562, '', '', '', '0000-00-00', 5704, '', NULL), (5705, 563, '', '', '', '0000-00-00', 5705, '', NULL), (5706, 564, '', '', '', '0000-00-00', 5706, '', NULL), (5707, 565, '', '', '', '0000-00-00', 5707, '', NULL), (5708, 566, '', '', '', '0000-00-00', 5708, '', NULL), (5709, 567, '', '', '', '0000-00-00', 5709, '', NULL), (5710, 568, '', '', '', '0000-00-00', 5710, '', NULL), (5711, 569, '', '', '', '0000-00-00', 5711, '', NULL), (5712, 570, 'S/N ', ' w/ Gauge ', 'Range: 200K', '0000-00-00', 5712, '', NULL), (5713, 571, '', '', '', '0000-00-00', 5713, '', NULL), (5714, 572, '', '', '', '0000-00-00', 5714, '', NULL), (5715, 573, '', '', '', '0000-00-00', 5715, '', NULL), (5716, 574, '', '', '', '0000-00-00', 5716, '', NULL), (5717, 575, 'S/N 0835', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 2,200 lbs', '2013-07-30', 5717, '7/30/2013', NULL), (5718, 576, '', '', '', '0000-00-00', 5718, '', NULL), (5719, 577, 'S/N 263', 'BK Load Cell w/ E-410 Digital Channel #1 (E-4)', 'Range: 2K', '2012-07-31', 5719, '7/31/2012', NULL), (5720, 578, '', ' ', '', '0000-00-00', 5720, '', NULL), (5721, 579, '', '', '', '0000-00-00', 5721, '', NULL), (5722, 580, '', '', '', '0000-00-00', 5722, '', NULL), (5723, 581, 'S/N 129060', ' Load Cell #2 Blue (E-4', 'Range: 100 lbs. to 50,000 lbs.', '2013-09-12', 5723, '9/12/2013', NULL), (5724, 582, '', '', '', '0000-00-00', 5724, '', NULL), (5725, 583, '', '', '', '0000-00-00', 5725, '', NULL), (5726, 584, '', '', '', '0000-00-00', 5726, '', NULL), (5727, 585, '', '', '', '0000-00-00', 5727, '', NULL), (5728, 586, 'S/N 1340', 'Hamilton Simplex Prestress Jack (E-4 & PCI)', 'Range: 3K / 37K', '2013-08-08', 5728, '8/8/2013', NULL), (5729, 587, 'S/N 981123', ' w/ Tinius Olsen S3 Extensometer (Ext. Channel #0) (E-83)', 'Range: 0.06 in/in (1\" Gauge Length) ', '2013-08-13', 5729, '8/13/2013', NULL), (5730, 588, '', '', '', '0000-00-00', 5730, '', NULL), (5731, 589, '', '', '', '0000-00-00', 5731, '', NULL), (5732, 590, '', '', '', '0000-00-00', 5732, '', NULL), (5733, 591, '', '', '', '0000-00-00', 5733, '', NULL), (5734, 592, '', '', '', '0000-00-00', 5734, '', NULL), (5735, 593, 'S/N 1627-4-1172', 'Soiltest ELE D-300A Compression Machine (E-4)', 'Range:', NULL, 5735, 'New', NULL), (5736, 594, '', '', '', '0000-00-00', 5736, '', NULL), (5737, 595, '', '', '', '0000-00-00', 5737, '', NULL), (5738, 596, '', '', '', '0000-00-00', 5738, '', NULL), (5739, 597, '', '', '', '0000-00-00', 5739, '', NULL), (5740, 598, 'S/N 2970313', 'Com-Ten Industries SSB5000 Load Cell (E-4)', 'Range: 5K', '2011-09-15', 5740, '9/15/2011', NULL), (5741, 599, 'S/N Frame 210110', 'Humboldt Master Loader HM-3000 Load Cell for CBR unit (E-4)', 'Range : 10,000 lbs. LC S/N 1130809', '2013-09-05', 5741, '9/5/2013', NULL), (5742, 600, '', '', '', '0000-00-00', 5742, '', NULL), (5743, 601, 'S/N 112643000', 'Ohaus Explorer Pro Scale (E-898)', 'Range: 12,000 Grams ', '2013-09-04', 5743, '9/4/2013', NULL), (5744, 602, '', '', '', '0000-00-00', 5744, '', NULL), (5745, 603, 'S/N AE346530229', 'Adam Equipment CBW-100A Scale (E-898)', 'Range: 100 lbs. ', '2013-09-05', 5745, '9/5/2013', NULL), (5746, 604, '', '', '', '0000-00-00', 5746, '', NULL), (5747, 605, 'S/N 67523 (ID# 005742)', ' w/ T & C Load Cell (E-4) ', 'Range: 440 lbs (2 Kn)', '2013-09-04', 5747, '9/4/2013', NULL), (5748, 606, '', '', '', '0000-00-00', 5748, '', NULL), (5749, 607, 'S/N 06-0091-01 ', 'Mecmesin BGF-200N Digital Force Gauge (E-4 & 2%)', 'Range: 45 lbs ', '2011-09-15', 5749, '9/15/2011', NULL), (5750, 608, 'S/N 93083', '(OOS) Dillon Force Gauge', 'Cap: 10K', '2011-09-15', 5750, '9/15/2011', NULL), (5751, 609, '', '', ' ', '0000-00-00', 5751, '', NULL), (5752, 610, '', '', '', '0000-00-00', 5752, '', NULL), (5753, 611, 'S/N 0408212-6HM', 'Ohaus Defender 5000 Mdl. T51P Digital Scale (E-898) ', 'Range: 250 lbs', '2013-09-09', 5753, '9/9/2013', NULL), (5754, 612, '', '', '', '0000-00-00', 5754, '', NULL), (5755, 613, '', '', '', '0000-00-00', 5755, '', NULL), (5756, 614, '', '', '', '0000-00-00', 5756, '', NULL), (5757, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 5757, 'New', NULL), (5758, 616, '', '', '', '0000-00-00', 5758, '', NULL), (5759, 617, '', '', '', '0000-00-00', 5759, '', NULL), (5760, 618, '', '', '', '0000-00-00', 5760, '', NULL), (5761, 619, '', '', '', '0000-00-00', 5761, '', NULL), (5762, 620, '', '', '', '0000-00-00', 5762, '', NULL), (5763, 621, '', '', '', '0000-00-00', 5763, '', NULL), (5764, 622, '', '', '', '0000-00-00', 5764, '', NULL), (5765, 623, '', '', '', '0000-00-00', 5765, '', NULL), (5766, 624, '', '', '', '0000-00-00', 5766, '', NULL), (5767, 625, '', '', '', '0000-00-00', 5767, '', NULL), (5768, 626, '', '', '', '0000-00-00', 5768, '', NULL), (5769, 627, 'S/N 23238', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 1K', '2012-10-30', 5769, '10/30/2012', NULL), (5770, 628, '', '', '', '0000-00-00', 5770, '', NULL), (5771, 629, '', '', '', '0000-00-00', 5771, '', NULL), (5772, 630, '', 'Unit not working properly ', '', '0000-00-00', 5772, '', NULL), (5773, 631, 'S/N 3754', 'Skidmore Wilhelm Bolt Tester Model M (E-4 & 2%)', 'Range: 80K', '2002-10-09', 5773, '10/9/2002', NULL), (5774, 632, '', '', '', '0000-00-00', 5774, '', NULL), (5775, 633, '', '', '', '0000-00-00', 5775, '', NULL), (5776, 634, '', '', '', '0000-00-00', 5776, '', NULL), (5777, 635, '', '', '', '0000-00-00', 5777, '', NULL), (5778, 636, '', '', '', '0000-00-00', 5778, '', NULL), (5779, 637, 'S/N LP-830', ' w/ GeoJac LVDT (D-6027)', 'Range: 3 inches ', '2011-11-14', 5779, '11/14/2011', NULL), (5780, 638, 'S/N PS-2956', ' w/ GeoJac Pressure Transducer (D-5720)', 'Range: 200 psi ', '2012-11-13', 5780, '11/13/2012', NULL), (5781, 639, 'S/N PS-2962', 'GeoJac Digiflow Pressure Transducer (D-5720)', 'Range: 200 psi (Cell Pressure) ', '2012-11-13', 5781, '11/13/2012', NULL), (5782, 640, 'S/N 242E-1245', 'Lorimer 242E-1245 Chart Recorder (D-5720 & 2%)', 'Range: 10,000 psi', '2013-06-27', 5782, '6/27/2013', NULL), (5783, 641, 'S/N I64886', ' w/ Load Cell Mdl. LCS15KSE Channel #2 (E-4)', 'Range: 5K ', '2012-12-04', 5783, '12/4/2012', NULL), (5784, 642, '', '', '', '0000-00-00', 5784, '', NULL), (5785, 643, 'S/N 406156', ' w/ Artech 20210-10K Load Cell (E-4)', 'Range: 10K ', '2012-11-28', 5785, '11/28/2012', NULL), (5786, 644, '', '', '', '0000-00-00', 5786, '', NULL), (5787, 645, '', '', '', '0000-00-00', 5787, '', NULL), (5788, 646, '', '', '', '0000-00-00', 5788, '', NULL), (5789, 647, '', '', '', '0000-00-00', 5789, '', NULL), (5790, 648, '', '', '', '0000-00-00', 5790, '', NULL), (5791, 649, '', '', '', '0000-00-00', 5791, '', NULL), (5792, 650, '', '', '', '0000-00-00', 5792, '', NULL), (5793, 651, 'S/N 0081006-1111-', 'Instron T3M-1660 Extensometer (E-83)', 'Range: (2\" GL)', NULL, 5793, 'New', NULL), (5794, 652, '', '', '', '0000-00-00', 5794, '', NULL), (5795, 653, '', '', '', '0000-00-00', 5795, '', NULL), (5796, 654, '', '', '', '0000-00-00', 5796, '', NULL), (5797, 655, '', 'Plus Shipping', '', '0000-00-00', 5797, '', NULL), (5798, 656, '', ' ***Calibrate to Z540-1-1994 w/ before & after data***', '', '0000-00-00', 5798, '', NULL), (5799, 657, '', '', '', '0000-00-00', 5799, '', NULL), (5800, 658, '', '', '', '0000-00-00', 5800, '', NULL), (5801, 659, 'S/N F6086', 'Rimac Spring Tester (OOS) (E-4)', 'Range: 500 lbs', '2006-12-05', 5801, '12/5/2006', NULL), (5802, 660, 'S/N 1087065', ' w/ MTS 634-11E-54 Extensometer (E-83)', 'Range: 0.2 inches (GL 1\")', '2013-01-14', 5802, '1/14/2013', NULL), (5803, 661, 'S/N SL-SM-001', ' w/ Vertical Force (E-4 & ManSpecs) ', 'Range: 1/8 TSF to 16 TSF', '2013-03-06', 5803, '3/6/2013', NULL), (5804, 662, '', '', '', '0000-00-00', 5804, '', NULL), (5805, 663, '', '', '', '0000-00-00', 5805, '', NULL), (5806, 664, '', '', '', '0000-00-00', 5806, '', NULL), (5807, 665, 'S/N 342518A', ' w/ Interface 1220ACK-25K-B T & C Load Cell (E-4)', 'Range: 25K', NULL, 5807, 'New', NULL), (5808, 666, '', '', '', '0000-00-00', 5808, '', NULL), (5809, 667, '', '', '', '0000-00-00', 5809, '', NULL), (5810, 668, '', '', '', '0000-00-00', 5810, '', NULL), (5811, 669, '', ' w/ 2nd Range Class B-2(0.0002) (E-83)', 'Range: 0.014 in/in (GL 28\") (0.4 travel)', '2013-01-15', 5811, '1/15/2013', NULL), (5812, 670, '', '', '', '0000-00-00', 5812, '', NULL), (5813, 671, '', '', '', '0000-00-00', 5813, '', NULL), (5814, 672, 'S/N 94417 / NC#16', 'HCS Model HCS-LC-2502 Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K ', '2013-01-16', 5814, '1/16/2013', NULL), (5815, 673, '', '', '', '0000-00-00', 5815, '', NULL), (5816, 674, 'S/N VT1117-', 'Soiltest Versa Tester 30M AP1000-CS-100-7 (E-4)', 'Range: 600 lbs to 60,000 lbs', '2012-01-23', 5816, '1/23/2012', NULL), (5817, 675, 'S/N 1701', ' w/ T & C Load Cell (E-4)', 'Range: ', NULL, 5817, 'New', NULL), (5818, 676, '', '', '', '0000-00-00', 5818, '', NULL), (5819, 677, '', '', '', '0000-00-00', 5819, '', NULL), (5820, 678, '', '', '', '0000-00-00', 5820, '', NULL), (5821, 679, '', '', '', '0000-00-00', 5821, '', NULL), (5822, 680, '', '', '', '0000-00-00', 5822, '', NULL), (5823, 681, 'S/N 4392', 'Hilti Pull Tester Model 59604/02/00 (Chicago) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs ', '2009-12-04', 5823, '12/4/2009', NULL), (5824, 682, 'S/N 96520 / NC#20', 'HCS Hydraulic Load Cell (E-4)', 'Range: 50K ', '2010-04-30', 5824, '4/30/2010', NULL), (5825, 683, '', '', '', '0000-00-00', 5825, '', NULL), (5826, 684, '', '', '', '0000-00-00', 5826, '', NULL), (5827, 685, 'S/N 30747', 'National Scale 1100049 Load Cell (E-4)', 'Range: 300 K', '2013-03-14', 5827, '3/14/2013', NULL), (5828, 686, '', ' w/ 40-200-TK5U Gauge (D-5720 & 2%)', 'Range: 200 PSI ', '2013-01-11', 5828, '1/11/2013', NULL), (5829, 687, '', '', '', '0000-00-00', 5829, '', NULL), (5830, 688, '', '', '', '0000-00-00', 5830, '', NULL), (5831, 689, '', '', '', '0000-00-00', 5831, '', NULL), (5832, 690, 'S/N 003761', 'Hilti Pull Tester Model 59604/02/97 (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-08-09', 5832, '8/9/2013', NULL), (5833, 691, '', '', '', '0000-00-00', 5833, '', NULL), (5834, 692, '', '', '', '0000-00-00', 5834, '', NULL), (5835, 693, 'S/N 090319', 'Testmark CM-0030-RT-SD Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K ', '0000-00-00', 5835, '', NULL), (5836, 694, 'S/N 475-1-FM', 'Dwyer 475 Mark III Digital Manometer (D-5720 & 2%)', 'Range: 20 inWc (10 PSI) ', '2013-02-06', 5836, '2/6/2013', NULL), (5837, 695, 'S/N 988-1', ' w/ Geotest Gauge (Vertical Force) (E-4 & 2%)', 'Range: 2K ', '2013-02-06', 5837, '2/6/2013', NULL), (5838, 696, '', '', '', '0000-00-00', 5838, '', NULL), (5839, 697, '', '', '', '0000-00-00', 5839, '', NULL), (5840, 698, '', '', '', '0000-00-00', 5840, '', NULL), (5841, 699, '', '', '', '0000-00-00', 5841, '', NULL), (5842, 700, 'S/N 100592', 'Simms Model P3500 Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K', '2009-07-14', 5842, '7/14/2009', NULL), (5843, 701, '', '', '', '0000-00-00', 5843, '', NULL), (5844, 702, '', '', '', '0000-00-00', 5844, '', NULL), (5845, 703, 'S/N 100295 (ID# 8209)', 'Open Joist 2000 FT-440-2 Finger Joint Tester (E-4 & Man Specs) ', 'Range: 3.5K (2K PSI) ', '2013-02-18', 5845, '2/18/2013', NULL), (5846, 704, '', '', '', '0000-00-00', 5846, '', NULL), (5847, 705, '', '', '', '0000-00-00', 5847, '', NULL), (5848, 706, 'S/N DRCIPT6 ', 'Enerpac Hand Jack w/ RCH202/P392 Ram S/N C4611K', 'Range: 40K (8,500 PSI) (E-4 & 2%)', '2012-02-17', 5848, '2/17/2012', NULL), (5849, 707, '', '', '', '0000-00-00', 5849, '', NULL), (5850, 708, '', '', '', '0000-00-00', 5850, '', NULL), (5851, 709, '', '', '', '0000-00-00', 5851, '', NULL), (5852, 710, '', '', '', '0000-00-00', 5852, '', NULL), (5853, 711, '', '', '', '0000-00-00', 5853, '', NULL), (5854, 712, '', '', '', '0000-00-00', 5854, '', NULL), (5855, 713, 'S/N 1248477', ' w/ Load Cell (E-4)', 'Range: 100 lbs to 10,000 lbs', '2013-03-05', 5855, '3/5/2013', NULL), (5856, 714, '', '', '', '0000-00-00', 5856, '', NULL), (5857, 715, '', ' w/ Minus Y Axis - T & C ', 'Range: 50K', '2012-03-12', 5857, '3/12/2012', NULL), (5858, 716, 'S/N 103222A', ' w/ Tovey Load Cell Plus Y Axis - T & C', 'Range: 2.5K ', '2012-03-13', 5858, '3/13/2012', NULL), (5859, 717, ' ', ' ', ' ', '0000-00-00', 5859, '', NULL), (5860, 718, '', '', '', '0000-00-00', 5860, '', NULL), (5861, 719, 'S/N 212005079', ' w/ Load Cell (E-4 & 2% ManSpecs)', 'Range: 1K', '2013-04-01', 5861, '4/1/2013', NULL), (5862, 720, '', '', '', '0000-00-00', 5862, '', NULL), (5863, 721, '', '', '', '0000-00-00', 5863, '', NULL), (5864, 722, '', '', '', '0000-00-00', 5864, '', NULL), (5865, 723, '', '', '', '0000-00-00', 5865, '', NULL), (5866, 724, '', '', '', '0000-00-00', 5866, '', NULL), (5867, 725, '', '', '', '0000-00-00', 5867, '', NULL), (5868, 726, '', '', '', '0000-00-00', 5868, '', NULL), (5869, 727, '', '', '', '0000-00-00', 5869, '', NULL), (5870, 728, 'S/N 1089241', 'Ashcroft Mdl. 25-D-1005PS-02L-100 Pressure Gauge (D-5720)', 'Range: 100 PSI', '2013-05-09', 5870, '5/9/2013', NULL), (5871, 729, '', '', '', '0000-00-00', 5871, '', NULL), (5872, 730, '', ' w/ Gauge High Range Only', 'Range: 60,0.00 lbs', '0000-00-00', 5872, '', NULL), (5873, 731, 'S/N AE82622', 'Adam GFK 330aH Scale (E-898)', 'Range: 330 lbs ', '2011-12-12', 5873, '12/12/2011', NULL), (5874, 732, 'S/N 12986', 'Stress Con Prestress Jack (E-4 & PCI & 2%)', '4 K/ 47,500 lbs', '2013-10-08', 5874, '10/8/2013', NULL), (5875, 733, '', '', '', '0000-00-00', 5875, '', NULL), (5876, 734, 'S/N C5349', ' w/ Speed Control (E-2658-11)', 'Range:0.5 in/min, 1 in/min, 2 in/min ', '2013-09-30', 5876, '9/30/2013', NULL), (5877, 735, 'S/N 333 ', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 15K (MDOT# 208192)', '2013-04-08', 5877, '4/8/2013', NULL), (5878, 736, 'S/N 251026', 'Homemade Prestress Mdl. HP28400A Jack (E-4 & PCI)', 'Range: 3K ', NULL, 5878, 'New', NULL), (5879, 737, 'S/N 598357', 'Humboldt HM-2300.023 Load Cell (E-4)', 'Range: 20 lbs to 2K', '2013-04-09', 5879, '4/9/2013', NULL), (5880, 738, '', '', '', '0000-00-00', 5880, '', NULL), (5881, 739, '', '', '', '0000-00-00', 5881, '', NULL), (5882, 740, 'S/N 112248', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82 ', '2010-02-08', 5882, '2/8/2010', NULL), (5883, 741, 'S/N B17712015C', 'Enerpac 2U4008PB-V Post Tension Jack (E-4 & PCI 2% ManSpecs)', 'Range: 30 Ton (Area 6.28)', '2013-04-16', 5883, '4/16/2013', NULL), (5884, 742, '', '', '', '0000-00-00', 5884, '', NULL), (5885, 743, 'S/N TEN005', 'Revere Load Cell w/CS-100-2 Digital T&C Machine (E-4)', 'Range: 100 lbs to 10K', '2012-04-24', 5885, '4/24/2012', NULL), (5886, 744, '', '', '', '0000-00-00', 5886, '', NULL), (5887, 745, '', '', '', '0000-00-00', 5887, '', NULL), (5888, 746, '', '', '', '0000-00-00', 5888, '', NULL), (5889, 747, '', '', '', '0000-00-00', 5889, '', NULL), (5890, 748, '', '', '', '0000-00-00', 5890, '', NULL), (5891, 749, 'S/N E90180, ID#524', 'Epsilon Extensometer Model 3542-0100-020 -ST (E-83)', 'Range : 0.2 in/in', '2013-04-22', 5891, '4/22/2013', NULL), (5892, 750, '', '', '', '0000-00-00', 5892, '', NULL), (5893, 751, 'S/N 141420', ' w/Tinius Olsen S-400-2A Extensometer Alignment (E-1012-05)', 'Range: 0.00050 in/in / 1K lbs Force ', '2011-11-15', 5893, '11/15/2011', NULL), (5894, 752, '', '', '', '0000-00-00', 5894, '', NULL), (5895, 753, '', '', '', '0000-00-00', 5895, '', NULL), (5896, 754, 'P-1600110', ' w/Linseis LY 16100-11 X/Y Recorder w/ LVDT (D-6027)', 'Range: 0.5 \"', '2013-04-30', 5896, '4/30/2013', NULL), (5897, 755, 'S/N unknown', 'Omega DP-41 V LVDT -Extra Range (D-6027)', 'Range: 3 inches', '2013-04-30', 5897, '4/30/2013', NULL), (5898, 756, '', '', '', '0000-00-00', 5898, '', NULL), (5899, 757, 'S/N 612706', 'Humboldt HM-2300 Load Cell (E-4)', 'Range: 10K ', NULL, 5899, 'New', NULL), (5900, 758, '', '', '', '0000-00-00', 5900, '', NULL), (5901, 759, '', '', '', '0000-00-00', 5901, '', NULL), (5902, 760, '', '', '', '0000-00-00', 5902, '', NULL), (5903, 761, 'S/N 123177', 'Simms Prestress Jack-Model 25000 (OUT OF SERVICE)', 'Range: 2,150 lbs. to 35,000 lbs.', '2004-05-20', 5903, '5/20/2004', NULL), (5904, 762, '', '', '', '0000-00-00', 5904, '', NULL), (5905, 763, '', '', '', '0000-00-00', 5905, '', NULL), (5906, 764, '', '', '', '0000-00-00', 5906, '', NULL), (5907, 765, '', '', '', '0000-00-00', 5907, '', NULL), (5908, 766, 'S/N 113825', 'Tinius Olsen Universal Testing Machine (E-4)', 'Range: 60K / 400K', '2013-07-16', 5908, '7/16/2013', NULL), (5909, 767, 'S/N 165925 ', 'Tinius Olsen Super L Digital Compression Machine w/EP2 (E-4)', 'Range: 600 lbs to 90K', '2013-05-08', 5909, '5/8/2013', NULL), (5910, 768, 'S/N R-3996', 'with Load Cell (E-4) 100% Range', 'Range: 300 lbs to 30K', '2012-11-28', 5910, '11/28/2012', NULL), (5911, 769, 'S/N C-455', ' w/ area Compensator (Tension Tester) (Man Spec\'s 1%)', 'Range: 0.1 to 0.9', '2012-11-28', 5911, '11/28/2012', NULL), (5912, 770, '', '', '', '0000-00-00', 5912, '', NULL), (5913, 771, '', '', '', '0000-00-00', 5913, '', NULL), (5914, 772, '', '', '', '0000-00-00', 5914, '', NULL), (5915, 773, 'S/N 26105', 'Adam Equipment Scale (E-898)', 'Range: 2,600 grams', '2013-05-07', 5915, '5/7/2013', NULL), (5916, 774, 'S/N MG 4140', ' w/LVDT Mdl. HM-2310.1 (D-6027)', 'Range: 0.1 inch to 1 inch', '2012-08-20', 5916, '8/20/2012', NULL), (5917, 775, '', '', '', '0000-00-00', 5917, '', NULL), (5918, 776, '', '', '', '0000-00-00', 5918, '', NULL), (5919, 777, 'S/N R-4000', 'Instron Model 4206 Testing Machine (E-2309)', 'Range: 2 in to 20 in', '2012-11-28', 5919, '11/28/2012', NULL), (5920, 778, 'S/N C-455', ' with Speed Control (E2658-11) Recorder ', 'Range: 1 in/min', '2012-11-27', 5920, '11/27/2012', NULL), (5921, 779, 'S/N C-455', ' with Speed Control Digital (E2658-11)', 'Range: 10 in/min', '2012-11-27', 5921, '11/27/2012', NULL), (5922, 780, '', '', '', '0000-00-00', 5922, '', NULL), (5923, 781, '', '', '', '0000-00-00', 5923, '', NULL), (5924, 782, 'S/N 2000-101', 'SPX Mdl. PE550 Post Tension Jack (E-4 & PCI 2% ManSpecs) ', 'Range: 50K (6 Month Schedule) ', '2013-05-15', 5924, '5/15/2013', NULL), (5925, 783, '', '', '', '0000-00-00', 5925, '', NULL), (5926, 784, '', '', '', '0000-00-00', 5926, '', NULL), (5927, 785, '', '', '', '0000-00-00', 5927, '', NULL), (5928, 786, 'S/N 222', 'Enerpac Jack mdl: CLL1506 PTJ', 'Range: 150 Ton', '2012-05-21', 5928, '5/21/2012', NULL), (5929, 787, 'S/N DZ0800', ' w/ Revere Load Cell #2 Yellow (E-4)', 'Range: 100 lbs to 50K', '2013-05-16', 5929, '5/16/2013', NULL), (5930, 788, '', '', '', '0000-00-00', 5930, '', NULL), (5931, 789, '', '9/10/2012 MACHINE ON ANOTHER PROFILE', '', '0000-00-00', 5931, '', NULL), (5932, 790, '', '', '', '0000-00-00', 5932, '', NULL), (5933, 791, 'S/N 211723', ' w/LVDT (D6027)', 'Range: 0.2 inches to 2 inches', '2013-06-04', 5933, '6/4/2013', NULL), (5934, 792, 'S/N 211707090', ' w/ Total Comp load cell Mdl TCSPI-50K-SS', 'Range: 50K Channel #2', '2012-06-22', 5934, '6/22/2012', NULL), (5935, 793, '', '', '', '0000-00-00', 5935, '', NULL), (5936, 794, '', '', '', '0000-00-00', 5936, '', NULL), (5937, 795, '', '', '', '0000-00-00', 5937, '', NULL), (5938, 796, 'S/N H3804029', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 5938, '6/4/2013', NULL), (5939, 797, '', '', '', '0000-00-00', 5939, '', NULL), (5940, 798, 'S/N 07', 'Stress Con Pre Stress Jack (E4 & PCI)', 'Range: 4K/5K, Final 50K', '2012-10-01', 5940, '10/1/2012', NULL), (5941, 799, '', '', '', '0000-00-00', 5941, '', NULL), (5942, 800, '', '', '', '0000-00-00', 5942, '', NULL), (5943, 801, '', '', '', '0000-00-00', 5943, '', NULL), (5944, 802, '', '', '', '0000-00-00', 5944, '', NULL), (5945, 803, '', '', '', '0000-00-00', 5945, '', NULL), (5946, 804, '', '', '', '0000-00-00', 5946, '', NULL), (5947, 805, '', '', '', '0000-00-00', 5947, '', NULL), (5948, 806, 'S/N 0045', 'VSL Bond Tester (E-4 & 2% ManSpecs)', 'Range: 3,000 lbs', '2013-02-25', 5948, '2/25/2013', NULL), (5949, 807, '', '', '', '0000-00-00', 5949, '', NULL), (5950, 808, '', '', '', '0000-00-00', 5950, '', NULL), (5951, 809, '', '', '', '0000-00-00', 5951, '', NULL), (5952, 810, '', '', '', '0000-00-00', 5952, '', NULL), (5953, 811, '', '', '', '0000-00-00', 5953, '', NULL), (5954, 812, 'S/n Unknown', 'Ohaus Triple Beam Balance (E-898)', 'Range: 2,600 grams', '2013-04-25', 5954, '4/25/2013', NULL), (5955, 813, '', '', '', '0000-00-00', 5955, '', NULL), (5956, 814, 'S/N 54931', ' w/ T & C Load Cell Mdl. 2530-405 (E-4)', 'Range: 10 lbs to 1K (5 Kn)', '2013-07-23', 5956, '7/23/2013', NULL), (5957, 815, '', '', '', '0000-00-00', 5957, '', NULL), (5958, 816, 'S/N 101013', 'Testmark CM-2500-RT Digital Compression Machine (E-4) ', 'Range: 2.5K to 250K (Channel #2)', '2013-06-25', 5958, '6/25/2013', NULL), (5959, 817, '', '', '', '0000-00-00', 5959, '', NULL), (5960, 818, '', '', '', '0000-00-00', 5960, '', NULL), (5961, 819, '', '***Send Certs to Jobsite***', '', '0000-00-00', 5961, '', NULL), (5962, 820, '', '', '', '0000-00-00', 5962, '', NULL), (5963, 821, '', '', '', '0000-00-00', 5963, '', NULL), (5964, 822, '', '', '', '0000-00-00', 5964, '', NULL), (5965, 823, '', '', '', '0000-00-00', 5965, '', NULL), (5966, 824, 'S/N 0107876/20', 'Eilon Engineering RON 2501 S-1 Load Cell (ManSpecs%0.1%FS)', 'Range: 1 Ton (ID# 815-29-06-085)', NULL, 5966, 'New', NULL), (5967, 825, '', '', '', '0000-00-00', 5967, '', NULL), (5968, 826, 'S/N 4528537/5046', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 5968, '8/27/2013', NULL), (5969, 827, 'S/N 0507332-1', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 10K', '0000-00-00', 5969, '', NULL), (5970, 828, 'S/N 0507264-4 ID# 13', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2012-07-19', 5970, '7/19/2012', NULL), (5971, 829, 'S/N 0507283/2', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1%FS)', 'Range : 5 Ton', '2012-07-19', 5971, '7/19/2012', NULL), (5972, 830, '', 'JOB # 923-01', '', '0000-00-00', 5972, '', NULL), (5973, 831, 'S/N 25329', 'Chatillon Hand Held Force Gauge T & C (E-4) ', 'Range: 500 lbs ', '2010-01-13', 5973, '1/13/2010', NULL), (5974, 832, 'S/N 79170', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K', '2013-08-06', 5974, '8/6/2013', NULL), (5975, 833, '', '', 'RAM AREA 61.89 sq. in.', '0000-00-00', 5975, '', NULL), (5976, 834, '', '', '', '0000-00-00', 5976, '', NULL), (5977, 835, ' ', ' ', ' ', '0000-00-00', 5977, '', NULL), (5978, 836, 'S/N 475084', 'Geotac Load Cell ID# G1435 (E4)', 'Range: 20 lbs to 500 lbs', '2012-08-14', 5978, '8/14/2012', NULL), (5979, 837, '', '', '', '0000-00-00', 5979, '', NULL), (5980, 838, '', '', '', '0000-00-00', 5980, '', NULL), (5981, 839, '', '', '', '0000-00-00', 5981, '', NULL), (5982, 840, '', '', '', '0000-00-00', 5982, '', NULL), (5983, 841, 'S/N 266913A', ' w/ Load Cell (E-4)', 'Range: 35K (150KN)', '2013-04-29', 5983, '4/29/2013', NULL), (5984, 842, 'S/N Bed #3', 'Enerpac Switch Tie Jack E-4 PCI & ManSpecs)', 'Range: 440K (7,500 PSI)', '2013-08-28', 5984, '8/28/2013', NULL), (5985, 843, 'S/N 107', 'Enerpac Pressure Gauge (D-5720)', 'Range: 10K ', '2008-08-04', 5985, '8/4/2008', NULL), (5986, 844, '', '', '', '0000-00-00', 5986, '', NULL), (5987, 845, '', '', '', '0000-00-00', 5987, '', NULL), (5988, 846, '', '', '', '0000-00-00', 5988, '', NULL), (5989, 847, 'S/N 336483', 'SPX Post Tension Jack (E-4 & PCI)', 'Range: 35K (7,990 psi)', '2013-08-28', 5989, '8/28/2013', NULL), (5990, 848, '', '', '', '0000-00-00', 5990, '', NULL), (5991, 849, '', '', '', '0000-00-00', 5991, '', NULL), (5992, 850, '', '', '', '0000-00-00', 5992, '', NULL), (5993, 851, '', '', '', '0000-00-00', 5993, '', NULL), (5994, 852, '', '', '', '0000-00-00', 5994, '', NULL), (5995, 853, 'S/N 4121', ' w/ Gauge', 'Range: 10,000 psi (60 Ton)', '2013-09-26', 5995, '9/26/2013', NULL), (5996, 854, ' ', ' ', ' ', '0000-00-00', 5996, '', NULL), (5997, 855, 'S/N 002', ' w/ Gauge ', 'Range: 60 Ton (8,900 PSI)', '2012-08-09', 5997, '8/9/2012', NULL), (5998, 856, '', '', '', '0000-00-00', 5998, '', NULL), (5999, 857, '', '', '', '0000-00-00', 5999, '', NULL), (6000, 858, '', '', '', '0000-00-00', 6000, '', NULL), (6001, 859, 'S/N 23555', 'Soiltest Proving Ring (E-4 & Man Specs)', 'Range 1,000', '2013-09-05', 6001, '9/5/2013', NULL), (6002, 860, 'S/N 1125', ' with Speed Control (E-2658)', 'Range: 0.20 in/min', '2013-09-04', 6002, '9/4/2013', NULL), (6003, 861, '', '', '', '0000-00-00', 6003, '', NULL), (6004, 862, '', '', '', '0000-00-00', 6004, '', NULL), (6005, 863, '', '', '', '0000-00-00', 6005, '', NULL), (6006, 864, '', '', '', '0000-00-00', 6006, '', NULL), (6007, 865, '', '', ' ', '0000-00-00', 6007, '', NULL), (6008, 866, '', '', '', '0000-00-00', 6008, '', NULL), (6009, 867, '', '', '', '0000-00-00', 6009, '', NULL), (6010, 868, '', '', '', '0000-00-00', 6010, '', NULL), (6011, 869, '', '', '', '0000-00-00', 6011, '', NULL), (6012, 870, 'S/N 1130795', ' w/ Total Comp Load Cell (E-4)', 'Range: 10K', '2013-04-09', 6012, '4/9/2013', NULL), (6013, 871, '', '', '', '0000-00-00', 6013, '', NULL), (6014, 872, '', '', '', '0000-00-00', 6014, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (6015, 873, 'S/N 21262', 'Soiltest 4-130-2 Double Proving Ring (E-4& Man Specs)', 'Range: 500 lbs (Do 1,5&10 lb Readings)', '2013-10-02', 6015, '10/2/2013', NULL), (6016, 874, '', '', '', '0000-00-00', 6016, '', NULL), (6017, 875, '', '', '', '0000-00-00', 6017, '', NULL), (6018, 876, '', '', '', '0000-00-00', 6018, '', NULL), (6019, 877, '', '', '', '0000-00-00', 6019, '', NULL), (6020, 878, 'S/N 0048', 'VSL Bond Tester (Detroit) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2012-12-20', 6020, '12/20/2012', NULL), (6021, 879, '', '', '', '0000-00-00', 6021, '', NULL), (6022, 880, '', '', '', '0000-00-00', 6022, '', NULL), (6023, 881, '', '', '', '0000-00-00', 6023, '', NULL), (6024, 882, '', '', '', '0000-00-00', 6024, '', NULL), (6025, 883, '', '', '', '0000-00-00', 6025, '', NULL), (6026, 884, '', '', '', '0000-00-00', 6026, '', NULL), (6027, 885, '', '', '', '0000-00-00', 6027, '', NULL), (6028, 886, '', '', '', '0000-00-00', 6028, '', NULL), (6029, 887, '', '', '', '0000-00-00', 6029, '', NULL), (6030, 888, '', '', '', '0000-00-00', 6030, '', NULL), (6031, 889, 'S/N 102981', 'Proceq Hammer Model N-34 (In House) (C-805)', 'Range: 78 to 82', '2013-07-31', 6031, '7/31/2013', NULL), (6032, 890, '', '', '', '0000-00-00', 6032, '', NULL), (6033, 891, '', ' w/ load cell ', '', '0000-00-00', 6033, '', NULL), (6034, 892, 'S/N 005344', 'Hilti Pull Tester Model (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2009-03-20', 6034, '3/20/2009', NULL), (6035, 893, '', '', '', '0000-00-00', 6035, '', NULL), (6036, 894, 'S/N 399241/606', 'Enerpac Post Tension Jack w/ RRH-606 Ram (E-4&PCI& ManSpecs)', 'Range: 5K (590 PSI) / 50K (4,300 PSI)', '2012-01-23', 6036, '1/23/2012', NULL), (6037, 895, '', '', '', '0000-00-00', 6037, '', NULL), (6038, 896, '', '*2012 - Display on DC-16-Last-Zero-digital load flickers periodicly*', '', '0000-00-00', 6038, '', NULL), (6039, 897, '', '', '', '0000-00-00', 6039, '', NULL), (6040, 898, '', ' w/ Block Frame Channel #1 (E-4)', 'Range: 4K to 500K ', '2012-11-26', 6040, '11/26/2012', NULL), (6041, 899, '', '', '', '0000-00-00', 6041, '', NULL), (6042, 900, '', '', '', '0000-00-00', 6042, '', NULL), (6043, 901, 'S/N 8026300026', 'Ohaus Aventure Pro Scale Model # AZ812 (E-898)', 'Range: 810 Grams', '2012-12-05', 6043, '12/5/2012', NULL), (6044, 902, '', '', '', '0000-00-00', 6044, '', NULL), (6045, 903, 'S/N 093481211', 'ELE 88-4100 Dial Indicator (D-6027)', 'Range: 1 inch', '2013-10-02', 6045, '10/2/2013', NULL), (6046, 904, 'S/N 2343', ' w/ Geo Comp 4\" Horizontal LVDT (D-6027) ', 'Range: -2 inch to 2 inch (T&C)', '2010-10-06', 6046, '10/6/2010', NULL), (6047, 905, 'S/N 2317', 'Geo Comp Flowtrac II Pressure Transducer (Sample) (D-5720)', 'Range: 200 PSI', '2010-10-06', 6047, '10/6/2010', NULL), (6048, 906, 'S/N 6-20713', ' w/ McDaniels Gauge (E-4)', 'Range: 10,000 psi', '2013-10-10', 6048, '10/10/2013', NULL), (6049, 907, 'S/N 002', ' w/ Gauge ', 'Range: 60K (4,000 PSI )', '2010-11-11', 6049, '11/11/2010', NULL), (6050, 908, '', '', '', '0000-00-00', 6050, '', NULL), (6051, 909, 'S/N 08074258/3', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 160K', '2010-11-24', 6051, '11/24/2010', NULL), (6052, 910, '', '', '', '0000-00-00', 6052, '', NULL), (6053, 911, '', '', '', '0000-00-00', 6053, '', NULL), (6054, 912, 'S/N Unknown', 'Heise CM16251 Pressure Gauge (D-5720)', 'Range: 100 PSI', NULL, 6054, 'New', NULL), (6055, 913, '', '', '', '0000-00-00', 6055, '', NULL), (6056, 914, '', '', '', '0000-00-00', 6056, '', NULL), (6057, 915, 'S/N 152596A', ' w/ 1 Kip cell T & C (E-4)', 'Range: 10 lbs to 1K ', '2012-01-03', 6057, '1/3/2012', NULL), (6058, 916, '', '', '', '0000-00-00', 6058, '', NULL), (6059, 917, '', '', '', '0000-00-00', 6059, '', NULL), (6060, 918, '', '', '', '0000-00-00', 6060, '', NULL), (6061, 919, 'S/N 21840', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K', '2012-12-19', 6061, '12/19/2012', NULL), (6062, 920, 'S/N D2303C', 'Enerpac Model RCS-502 Ram (E-4 & Man Specs)', 'Range: 40K ', '2013-07-23', 6062, '7/23/2013', NULL), (6063, 921, 'S/N 429 / 1312', 'CBR Frame w/ S Type Load Cell w/ Digital E-400 (E-4)', 'Range: 6K ', '2012-12-17', 6063, '12/17/2012', NULL), (6064, 922, 'S/N 002', ' Starrett Dial Indicator (D-6027)', 'Range: 0.4 Inch', '2012-12-17', 6064, '12/17/2012', NULL), (6065, 923, 'S/N 00370', ' w/ Vertical Force (E-4 & Man Spec)', 'Range: 8.52lbs-68.18lbs/136.35lbs-1.5K', '2012-12-17', 6065, '12/17/2012', NULL), (6066, 924, '', '', '', '0000-00-00', 6066, '', NULL), (6067, 925, '', '', '', '0000-00-00', 6067, '', NULL), (6068, 926, 'S/N 0563628', 'Eilon Engineering RON 3025 S-5 Load Cell (ManSp & 0.1% FS)', 'Range: 10K 10 Kip only', '2012-03-20', 6068, '3/20/2012', NULL), (6069, 927, '', '', '', '0000-00-00', 6069, '', NULL), (6070, 928, '', '', '', '0000-00-00', 6070, '', NULL), (6071, 929, ' ', ' w/ LVDT 1 (D-6027)', 'Range: 100 MILLS', '2013-01-07', 6071, '1/7/2013', NULL), (6072, 930, 'S/N 2254', 'Geojac Consolidometer (E-4)', '', '0000-00-00', 6072, '', NULL), (6073, 931, 'S/N', ' w/Speed Control (E-2658)', 'Range: 0.002 in/min', '2013-01-07', 6073, '1/7/2013', NULL), (6074, 932, 'S/N', ' w/ LVDT (Only Do Force Reading) (D-6027)', 'Range:', '0000-00-00', 6074, '', NULL), (6075, 933, 'S/N LP-924', ' w/ LVDT (D-6027) (ID# G1426)', 'Range: 3 inches', '2013-01-09', 6075, '1/9/2013', NULL), (6076, 934, '', '', '', '0000-00-00', 6076, '', NULL), (6077, 935, 'S/N E04290', ' w/ Load Cell (Vertical Force)', 'Range: 1,500 lbs ', '2013-01-23', 6077, '1/23/2013', NULL), (6078, 936, 'S/N AL-921', 'Teclock Dial Indicator (D-6027)', 'Range: 1.0\"', '2013-01-24', 6078, '1/24/2013', NULL), (6079, 937, '', '', '', '0000-00-00', 6079, '', NULL), (6080, 938, '', '', '', '0000-00-00', 6080, '', NULL), (6081, 939, '', '', '', '0000-00-00', 6081, '', NULL), (6082, 940, 'S/N S3CL14220700-', 'Sensotec LVDT Dual Aberaging (ID# LabN20) (D-6027)', 'Range: 0.008 in to 0.8 in', '2013-01-29', 6082, '1/29/2013', NULL), (6083, 941, 'S/N 03018324/8', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 50K', NULL, 6083, 'New', NULL), (6084, 942, 'S/N A125/A1/0006', 'Matest A125 Point Loader (E-4 & 2% Man Specs) (IN HOUSE)', 'Range: 45 KN', '2013-01-30', 6084, '1/30/2013', NULL), (6085, 943, '', '', '', '0000-00-00', 6085, '', NULL), (6086, 944, 'S/N 0107870/18', 'Eilon Engineering RON 2501 (ManSpecs 0.1 %FS)', 'Range: 200 lbs to 2K (ID# 815-29-06-086)', '2013-05-06', 6086, '5/6/2013', NULL), (6087, 945, '', '', '', '0000-00-00', 6087, '', NULL), (6088, 946, 'S/N 8907', ' w/Vertical Force (E-4) (OOS)', 'Range: 20 lbs to 500 lbs', '2012-01-09', 6088, '1/9/2012', NULL), (6089, 947, 'S/N HS10-12936/359', 'LSC LVDT Transducer w/ E-415 Digital--Ch#5 (SOLD)', 'Range: 0.4 Inches (D-6027)', '2008-03-04', 6089, '3/4/2008', NULL), (6090, 948, 'S/N 404', 'Brainard Kilman Consolidometer Mdl. S-450', 'Range: 16 TSF', '0000-00-00', 6090, '', NULL), (6091, 949, '', ' w/ Speed Control (E2658-11)', 'Range: 20 in/min ', '2013-02-28', 6091, '2/28/2013', NULL), (6092, 950, '', '', '', '0000-00-00', 6092, '', NULL), (6093, 951, 'S/N 01', 'Soiltest LC-9 Dial Indicator (D-6027)', 'Range: 1 Inch ', '2009-03-11', 6093, '3/11/2009', NULL), (6094, 952, '', '', '', '0000-00-00', 6094, '', NULL), (6095, 953, 'S/N KW69(PrR-5)', 'Karol Warner Unconfined Single Proving Ring (E-4 & Mans Spec)', 'Range: 2.5K', '2013-02-26', 6095, '2/26/2013', NULL), (6096, 954, '', '', '', '0000-00-00', 6096, '', NULL), (6097, 955, 'S/N 15564', 'Skidmore Wilhelm Mdl. MS (E-4 & 2% ManSpecs)', 'Range: 100K', '2013-02-25', 6097, '2/25/2013', NULL), (6098, 956, '', '', '', '0000-00-00', 6098, '', NULL), (6099, 957, '', '', '', '0000-00-00', 6099, '', NULL), (6100, 958, '', '', '', '0000-00-00', 6100, '', NULL), (6101, 959, '', '', '', '0000-00-00', 6101, '', NULL), (6102, 960, '', '', '', '0000-00-00', 6102, '', NULL), (6103, 961, '', '', '', '0000-00-00', 6103, '', NULL), (6104, 962, 'S/N 0282', 'Brainard Killman Test Gauge (D-5720 &2%)', 'Range: 60 psi', '2013-07-30', 6104, '7/30/2013', NULL), (6105, 963, 'S/N 303 (ID# 0202)', 'BK Terraload S-450 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 32 TSF', '2013-07-30', 6105, '7/30/2013', NULL), (6106, 964, 'S/N', 'Hercules Prestress Jack (E-4 & PCI)', 'Range', NULL, 6106, 'NEW', NULL), (6107, 965, '', ' ', '', '0000-00-00', 6107, '', NULL), (6108, 966, '', '', '', '0000-00-00', 6108, '', NULL), (6109, 967, 'S/N 004426', 'Hilti Pull Tester Model 59604/02/00 (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-03-14', 6109, '3/14/2013', NULL), (6110, 968, 'S/N 381777', 'Eilon Engineering RON 2000 S3 Load Cell (Man Specs 0.1% FS)', 'Range: 3 Ton', '2013-10-09', 6110, '10/9/2013', NULL), (6111, 969, 'S/N 121304', 'RON 2000 S-12.5 Eilon Engineering (Man Specs 0.1 % FS)', 'Range: 12.5 Ton', '2013-02-08', 6111, '2/8/2013', NULL), (6112, 970, '', '', '', '0000-00-00', 6112, '', NULL), (6113, 971, 'S/N 205(ID# TS-06)', 'TMI Electronic Scales (MOVED) (E-898)', 'Range: 1,000 Grams ', '2012-02-14', 6113, '2/14/2012', NULL), (6114, 972, 'S/N 988-1', 'Geotest Direct Shear S2213A Vertical Load (E-4 & 2%)', 'Range: 2K (Moved)', '2011-02-08', 6114, '2/8/2011', NULL), (6115, 973, '', '', '', '0000-00-00', 6115, '', NULL), (6116, 974, '', '', '', '0000-00-00', 6116, '', NULL), (6117, 975, 'S/N 015', 'Pine Instrument RAM Device (Rapid Angle Measurement)', 'Range:', '2013-03-12', 6117, '3/12/2013', NULL), (6118, 976, '', '', '', '0000-00-00', 6118, '', NULL), (6119, 977, '', '', '', '0000-00-00', 6119, '', NULL), (6120, 978, '', '', '', '0000-00-00', 6120, '', NULL), (6121, 979, '', '', '', '0000-00-00', 6121, '', NULL), (6122, 980, '', '', '', '0000-00-00', 6122, '', NULL), (6123, 981, '', '', '', '0000-00-00', 6123, '', NULL), (6124, 982, '', '', '', '0000-00-00', 6124, '', NULL), (6125, 983, '', '', '', '0000-00-00', 6125, '', NULL), (6126, 984, '', '', '', '0000-00-00', 6126, '', NULL), (6127, 985, '', '', '', '0000-00-00', 6127, '', NULL), (6128, 986, '', '', '', '0000-00-00', 6128, '', NULL), (6129, 987, '', '', '', '0000-00-00', 6129, '', NULL), (6130, 988, '', '', '', '0000-00-00', 6130, '', NULL), (6131, 989, '', '', '', '0000-00-00', 6131, '', NULL), (6132, 990, '', '', '', '0000-00-00', 6132, '', NULL), (6133, 991, '', '', '', '0000-00-00', 6133, '', NULL), (6134, 992, 'S/N 085 (ID# Instron 3)', ' w/ Instron T & C Load Cell (E-4) ', 'Range: 22 lbs to 2,200 lbs (10 Kn)', '2013-03-13', 6134, '3/13/2013', NULL), (6135, 993, '', ' w/ Recorder (DOES NOT WORK)', '', '0000-00-00', 6135, '', NULL), (6136, 994, '', '', '', '0000-00-00', 6136, '', NULL), (6137, 995, 'S/N 78008', 'Soiltest AP-750 Asphalt Press w/ Recorder (E-4 & 2%) ', 'Range: 1K/2K/5K/10K (5K & 10K Only)', '2013-03-12', 6137, '3/12/2013', NULL), (6138, 996, 'S/N 12077 ID#011851', 'Forner F-25EX-B-TPilot Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2013-03-13', 6138, '3/13/2013', NULL), (6139, 997, 'S/N 388', 'Pine Instrument Mdl. 850 Asphalt Press (E-4 & 2%) ', 'Range: 2.5K / 5K / 10K', '2013-03-12', 6139, '3/12/2013', NULL), (6140, 998, 'S/N 387', 'Pine Insrument Mdl. 850 Asphalt Tester (E-4)', 'Range: 2.5K / 5K / 10K', '2013-03-13', 6140, '3/13/2013', NULL), (6141, 999, '', '', '', '0000-00-00', 6141, '', NULL), (6142, 1000, '', '', '', '0000-00-00', 6142, '', NULL), (6143, 1001, '', '', '', '0000-00-00', 6143, '', NULL), (6144, 1002, 'S/N 818035', ' w/ LVDT (D-6027)', 'Range: 0.4 inches ', '2013-05-28', 6144, '5/28/2013', NULL), (6145, 1003, '', '', '', '0000-00-00', 6145, '', NULL), (6146, 1004, 'S/N 1035', 'Brainard Kilman CBR S-610 Speed Control (Man Specs)', 'Range: 0.05 in/min ', '2013-04-01', 6146, '4/1/2013', NULL), (6147, 1005, '', '', '', '0000-00-00', 6147, '', NULL), (6148, 1006, '', '', '', '0000-00-00', 6148, '', NULL), (6149, 1007, 'S/N 116607', 'ATS PLC 2009 Series 900-PLC Universal Testing Machine (E-4)', 'Ranges:(4 Ranges) (Compression Only)', NULL, 6149, 'New', NULL), (6150, 1008, 'S/N E-84569', ' w/ Epsilon 3542-0200-025-ST Extensometer (E-83)', 'Range: 0.25 in/in ', '2013-06-03', 6150, '6/3/2013', NULL), (6151, 1009, 'S/N 044-1136', 'Baldwin Tate Emery 120 BTE-Pi-XS Universal Testing Machine E-4)', 'Range: 1K to 120K', '2013-06-26', 6151, '6/26/2013', NULL), (6152, 1010, '', '', '', '0000-00-00', 6152, '', NULL), (6153, 1011, 'S/N 02', 'Stress Con Prestress Jack (E-4& PCI ) ', 'Range: 4K / 5K , Final 50K', '2012-06-15', 6153, '6/15/2012', NULL), (6154, 1012, 'S/N 01282', 'Hercules Model HSJ Prestress Jack (E-4 & PCI)', 'Range: 3K / 37.5K', '2013-07-10', 6154, '7/10/2013', NULL), (6155, 1013, 'S/N 146004 /ID# LabD47', 'RDP LVDT D6/05000A w/ Strainsmart DAQ Channel #4 (D-6027)', 'Range: 0.25 mm to 2.5 mm', '2013-06-12', 6155, '6/12/2013', NULL), (6156, 1014, 'S/N 104', ' w/ Extra Gauge-Final Jack #4 (E-4 & PCI)', 'Range: 40K', '2013-07-15', 6156, '7/15/2013', NULL), (6157, 1015, 'S/N 69122 / Jack F', 'SPX Powerteam Prestress - Jack F (E-4 & PCI)', 'Range: 4K / 50K ', '2013-07-15', 6157, '7/15/2013', NULL), (6158, 1016, '', '', '', '0000-00-00', 6158, '', NULL), (6159, 1017, '', '', '', '0000-00-00', 6159, '', NULL), (6160, 1018, 'S/N 386191-1027', 'OTC Mdl. PE55A-AB Post Tension Jack (E-4 & PCI)', 'Range: 35K (5,700 PSI) ', '2012-08-07', 6160, '8/7/2012', NULL), (6161, 1019, 'S/N 358989', 'OTC Post Tension Jack (E-4 & PCI & Man Spec)', 'Range: 40K (9,100 PSI)', '2013-09-09', 6161, '9/9/2013', NULL), (6162, 1020, '', '', '', '0000-00-00', 6162, '', NULL), (6163, 1021, 'S/N 7981 ', 'Skidmore Wilhelm Model M Bolt Tester (E-4 & 2%)', 'Range: 100K', '2013-02-19', 6163, '2/19/2013', NULL), (6164, 1022, '', '', '', '0000-00-00', 6164, '', NULL), (6165, 1023, 'S/N1446525(ID#03-101)', ' w/MTS Mdl. 634.12E-24 Extensometer Channel #1 (E-83)', 'Range: 0.25 in/in (GL 1Inch) ', '2013-02-05', 6165, '2/5/2013', NULL), (6166, 1024, '', '', '', '0000-00-00', 6166, '', NULL), (6167, 1025, '', '', '', '0000-00-00', 6167, '', NULL), (6168, 1026, 'S/N Unknown', 'PowerTeam Post Tension Jack (E-4 & PCI)', 'Range: 35K (8,200 PSI)', '2013-10-01', 6168, '10/1/2013', NULL), (6169, 1027, '', '', '', '0000-00-00', 6169, '', NULL), (6170, 1028, 'S/N 04008', 'Forney F-50EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2013-06-24', 6170, '6/24/2013', NULL), (6171, 1029, '', '', '', '0000-00-00', 6171, '', NULL), (6172, 1030, 'S/N DC 1207', 'Pelouza Scale 4010', 'Range: 400 lbs', '2013-01-03', 6172, '1/3/2013', NULL), (6173, 1031, '', '', '', '0000-00-00', 6173, '', NULL), (6174, 1032, '', '', '', '0000-00-00', 6174, '', NULL), (6175, 1033, '', '', '', '0000-00-00', 6175, '', NULL), (6176, 1034, '', '', '', '0000-00-00', 6176, '', NULL), (6177, 1035, '', '', '', '0000-00-00', 6177, '', NULL), (6178, 1036, 'S/N 1020-495-5 ', 'WIKA PAV Mdl. 232.34.5 Inch Pressure Gauge (D-5720) ', 'Range: 600 PSI', '2013-04-03', 6178, '4/3/2013', NULL), (6179, 1037, 'S/N 12-28 ', 'Boart Longyear Direct Shear Machine w/Horizontal Force (E-4) ', 'Range: 500 lbs ADU Channel 29', '2012-04-04', 6179, '4/4/2012', NULL), (6180, 1038, 'S/N 944 ', 'Boart Longyear Pore Pressure Transducer (D-5720)', 'Range: 100 PSI ADU Channel 28', '2012-04-04', 6180, '4/4/2012', NULL), (6181, 1039, 'S/N 245', 'Brainard-Kilman Terraload Consolidation Unit Console 2', 'Cap: 1200 lbs (16 TSF) (E-4& Man Specs)', '2013-04-01', 6181, '4/1/2013', NULL), (6182, 1040, '', '', '', '0000-00-00', 6182, '', NULL), (6183, 1041, 'S/N 1387336', ' w/ Total Comp Load Cell Model TS-2K, Load Channel #3 (E-4)', 'Range: 2K ', '2013-04-02', 6183, '4/2/2013', NULL), (6184, 1042, 'S/N 331', 'HMA Lab Supply Mdl. 9210 Digital Manometer (D-5720)', 'Range: 800 mm Hg', '2013-04-01', 6184, '4/1/2013', NULL), (6185, 1043, 'S/N 112', 'Brainard Kilman CBR Tester S-610 w/ Recorder E-490 (E-4)', 'Range: 5K', '2013-04-01', 6185, '4/1/2013', NULL), (6186, 1044, 'S/N 9546 (ID#2859)', 'Skidmore-Wilhelm Model MS Bolt Tester (E-4)', 'Range: 110K ', '2013-04-02', 6186, '4/2/2013', NULL), (6187, 1045, 'S/N 87040', 'Forney FT-40 Compression Machine (E-4)', 'Range: 250 K (ID # 0003257)', '2013-04-17', 6187, '4/17/2013', NULL), (6188, 1046, 'S/N 1107435', 'Humboldt mini Logger wtih Pressure Transducer', 'Range: (Channel 3)', '0000-00-00', 6188, '', NULL), (6189, 1047, '', '', '', '0000-00-00', 6189, '', NULL), (6190, 1048, '', '', '', '0000-00-00', 6190, '', NULL), (6191, 1049, '', '', '', '0000-00-00', 6191, '', NULL), (6192, 1050, '', '', '', '0000-00-00', 6192, '', NULL), (6193, 1051, 'S/N 9353', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2012-04-09', 6193, '4/9/2012', NULL), (6194, 1052, '', '', '', '0000-00-00', 6194, '', NULL), (6195, 1053, '', '', '', '0000-00-00', 6195, '', NULL), (6196, 1054, 'S/N 000999', 'Humboldt Flex Panel Pressure Transducer (D-5720)', 'Range: 100 PSI ', '2013-04-11', 6196, '4/11/2013', NULL), (6197, 1055, '', ' 8\" G.L. B-1 Classification', '', '0000-00-00', 6197, '', NULL), (6198, 1056, '', '', '', '0000-00-00', 6198, '', NULL), (6199, 1057, '', '', '', '0000-00-00', 6199, '', NULL), (6200, 1058, 'S/N Unknown', 'Hydrotile Mdl. Hydro D Pipe Tester - Otek Digital (E-4 & C-497)', 'Range: 200K Digital', '2013-04-15', 6200, '4/15/2013', NULL), (6201, 1059, 'S/N RJ109', 'McDaniel Controls Inc Dial Gauge (Possible S/N Change) (D-5720)', 'Range: 5,000 psi', '2012-05-07', 6201, '5/7/2012', NULL), (6202, 1060, 'S/N RJ105', 'McDaniel Controls Inc Dial Gauge (D-5720)', 'Range: 200 psi', '2013-04-22', 6202, '4/22/2013', NULL), (6203, 1061, 'S/N TEN012', 'Instron TM-CS-100-1S Universal Testing Machine (E-4)', 'Range: 5 lbs to 500 lbs ', '2013-04-25', 6203, '4/25/2013', NULL), (6204, 1062, '', '', '', '0000-00-00', 6204, '', NULL), (6205, 1063, '', '', '', '0000-00-00', 6205, '', NULL), (6206, 1064, '', '', '', '0000-00-00', 6206, '', NULL), (6207, 1065, '', '', '', '0000-00-00', 6207, '', NULL), (6208, 1066, 'S/N V1504S', 'Transducer', 'Range: 9,000 lbs', NULL, 6208, 'new', NULL), (6209, 1067, 'S/N 853', 'Boart Longyear E-124 Transducer-Ch3 (D-5720)', 'Cap: 150 psi', '2005-06-16', 6209, '6/16/2005', NULL), (6210, 1068, '', '', '', '0000-00-00', 6210, '', NULL), (6211, 1069, '', '', '', '0000-00-00', 6211, '', NULL), (6212, 1070, '', '', '', '0000-00-00', 6212, '', NULL), (6213, 1071, '', '', '', '0000-00-00', 6213, '', NULL), (6214, 1072, '', '', '', '0000-00-00', 6214, '', NULL), (6215, 1073, '', '', '', '0000-00-00', 6215, '', NULL), (6216, 1074, '', '', '', '0000-00-00', 6216, '', NULL), (6217, 1075, '', '', '', '0000-00-00', 6217, '', NULL), (6218, 1076, 'S/N 4944', 'Chatillon Pull Tester Model DPPH-150 (E-4)', 'Range: 150 lb.', '1998-04-29', 6218, '4/29/1998', NULL), (6219, 1077, 'S/N B30386', 'Chatillon Force Gauge Digital DFIS-200 T &C (E-4)', 'Range: 20-200 lb.', '1998-04-28', 6219, '4/28/1998', NULL), (6220, 1078, '', '', '', '0000-00-00', 6220, '', NULL), (6221, 1079, '', '', '', '0000-00-00', 6221, '', NULL), (6222, 1080, '', '', '', '0000-00-00', 6222, '', NULL), (6223, 1081, '', '', '', '0000-00-00', 6223, '', NULL), (6224, 1082, '', '', '', '0000-00-00', 6224, '', NULL), (6225, 1083, '', '', '', '0000-00-00', 6225, '', NULL), (6226, 1084, '', '', '', '0000-00-00', 6226, '', NULL), (6227, 1085, '', '', '', '0000-00-00', 6227, '', NULL), (6228, 1086, 'S/N 1000979', 'CBR Proving Ring Humboldt Model H-4454', 'Cap: 10K', '2004-10-27', 6228, '10/27/2004', NULL), (6229, 1087, '', '', '', '0000-00-00', 6229, '', NULL), (6230, 1088, '', '', '', '0000-00-00', 6230, '', NULL), (6231, 1089, '', '', '', '0000-00-00', 6231, '', NULL), (6232, 1090, 'S/N 99202', 'Forney 25F-DR2000 Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2001-04-25', 6232, '4/25/2001', NULL), (6233, 1091, 'S/N 192', 'Pine Instrument Asphalt Press Model 750', 'Range 2.5/5/10K', '0000-00-00', 6233, '', NULL), (6234, 1092, '', '', '', '0000-00-00', 6234, '', NULL), (6235, 1093, '', '', '', '0000-00-00', 6235, '', NULL), (6236, 1094, '', '', '', '0000-00-00', 6236, '', NULL), (6237, 1095, '', '', '', '0000-00-00', 6237, '', NULL), (6238, 1096, '', '', '', '0000-00-00', 6238, '', NULL), (6239, 1097, '', 'Having issues with the refrigeration unit (See attached email)', '', '0000-00-00', 6239, '', NULL), (6240, 1098, '', '', '', '0000-00-00', 6240, '', NULL), (6241, 1099, '', '', '', '0000-00-00', 6241, '', NULL), (6242, 1100, 'S/N 104', 'Simms Prestress Jack (E-4&PCI)', 'Range 4/35K', '2000-10-25', 6242, '10/25/2000', NULL), (6243, 1101, '', '', '', '0000-00-00', 6243, '', NULL), (6244, 1102, '', '', '', '0000-00-00', 6244, '', NULL), (6245, 1103, '', '', '', '0000-00-00', 6245, '', NULL), (6246, 1104, 'S/N 18181', 'Soiltest Double Proving Ring Model LC-2 (E-4)', 'Cap: 500#', '1995-07-25', 6246, '7/25/1995', NULL), (6247, 1105, '', '', '', '0000-00-00', 6247, '', NULL), (6248, 1106, '', '', '', '0000-00-00', 6248, '', NULL), (6249, 1107, '', '', '', '0000-00-00', 6249, '', NULL), (6250, 1108, '', '', '', '0000-00-00', 6250, '', NULL), (6251, 1109, '', '', '', '0000-00-00', 6251, '', NULL), (6252, 1110, '', '', '', '0000-00-00', 6252, '', NULL), (6253, 1111, '', '', '', '0000-00-00', 6253, '', NULL), (6254, 1112, '', '', '', '0000-00-00', 6254, '', NULL), (6255, 1113, '', '', '', '0000-00-00', 6255, '', NULL), (6256, 1114, '', '', '', '0000-00-00', 6256, '', NULL), (6257, 1115, 'S/N 212', 'Durham Geo LVDT & Dial Indicator', 'Range:', NULL, 6257, 'New', NULL), (6258, 1116, '', '', '', '0000-00-00', 6258, '', NULL), (6259, 1117, '', '', '', '0000-00-00', 6259, '', NULL), (6260, 1118, '', '', '', '0000-00-00', 6260, '', NULL), (6261, 1119, 'VS-2023', 'O\'Ring Greenlee Release Lever/Pump Block Cap', '', '0000-00-00', 6261, '', NULL), (6262, 1120, '', '', '', '0000-00-00', 6262, '', NULL), (6263, 1121, 'S/N LVDT 2', 'with FS-2000 LVDT 2 Frame 875 / ID # 3499-0003 (ISO-9513) ', 'Range: 2 Inches', '2007-05-07', 6263, '5/7/2007', NULL), (6264, 1122, 'S/N 3345-Q7175', ' w/ Displacement (D-6027)', 'Range: 5 inches ', '2008-04-23', 6264, '4/23/2008', NULL), (6265, 1123, '', '', '', '0000-00-00', 6265, '', NULL), (6266, 1124, 'S/N 1185', 'Boart Longyear S-610 CBR Frame', 'Range: 500 lbs L/C', NULL, 6266, 'New', NULL), (6267, 1125, 'S/N 1155', 'Brainard-Kilman CBR Tester S610 (NOT DONE)', '', '2006-05-17', 6267, '5/17/2006', NULL), (6268, 1126, 'S/N 1035/121', ' with Load Cell E-214', 'Range: 5K ', '2007-04-04', 6268, '4/4/2007', NULL), (6269, 1127, '', '', '', '0000-00-00', 6269, '', NULL), (6270, 1128, '', '', '', '0000-00-00', 6270, '', NULL), (6271, 1129, '', '', '', '0000-00-00', 6271, '', NULL), (6272, 1130, '', '', '', '0000-00-00', 6272, '', NULL), (6273, 1131, '', '', '', '0000-00-00', 6273, '', NULL), (6274, 1132, 'S/N 1', 'March Dial Pressure Gauge-Model Master Gauge (D-5720)', 'Range: 0- 160 psi (OOS)', '2003-04-30', 6274, '4/30/2003', NULL), (6275, 1133, '', '', '', '0000-00-00', 6275, '', NULL), (6276, 1134, 'S/N 1125191148', 'Ohaus Scale Mdl. EP12001', 'Range: 1,200 Grams ', '2007-05-01', 6276, '5/1/2007', NULL), (6277, 1135, '', '', '', '0000-00-00', 6277, '', NULL), (6278, 1136, '', '', '', '0000-00-00', 6278, '', NULL), (6279, 1137, '', '', '', '0000-00-00', 6279, '', NULL), (6280, 1138, '', '', '', '0000-00-00', 6280, '', NULL), (6281, 1139, '', '', '', '0000-00-00', 6281, '', NULL), (6282, 1140, '', '', '', '0000-00-00', 6282, '', NULL), (6283, 1141, '', '', '', '0000-00-00', 6283, '', NULL), (6284, 1142, 'S/N 08169', 'Forney F-25EX-F-CPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-08-06', 6284, '8/6/2013', NULL), (6285, 1143, 'S/N 111200000055', 'Ele International Proving Ring 78-0900', 'Range: 500 lbs', '2013-08-05', 6285, '8/5/2013', NULL), (6286, 1144, '', '', '', '0000-00-00', 6286, '', NULL), (6287, 1145, '', '', '', '0000-00-00', 6287, '', NULL), (6288, 1146, '', '', '', '0000-00-00', 6288, '', NULL), (6289, 1147, 'S/N 306', 'Gilson Marshall Proving Ring (E-4 & ManSpecs)', 'Range: 10 K', '2013-08-06', 6289, '8/6/2013', NULL), (6290, 1148, 'S/N 6950', 'Martin Decker Model SW8-0150-16 Liquid Load Cell', 'Range: 1.5K to 15 K (E-4 & C-497 & 2%)', '2013-08-06', 6290, '8/6/2013', NULL), (6291, 1149, '', '', '', '0000-00-00', 6291, '', NULL), (6292, 1150, '', '', '', '0000-00-00', 6292, '', NULL), (6293, 1151, '', ' with Electric pump and Hand pump ', '', '0000-00-00', 6293, '', NULL), (6294, 1152, '', ' ', '', '0000-00-00', 6294, '', NULL), (6295, 1153, '', '', '', '0000-00-00', 6295, '', NULL), (6296, 1154, '', '', '', '0000-00-00', 6296, '', NULL), (6297, 1155, '', '', '', '0000-00-00', 6297, '', NULL), (6298, 1156, '', '', '', '0000-00-00', 6298, '', NULL), (6299, 1157, '', '', '', '0000-00-00', 6299, '', NULL), (6300, 1158, 'S/N 196454', 'Soiltest CT-320A Hammer (C-805)', 'Range: 78 to 82', '2013-08-21', 6300, '8/21/2013', NULL), (6301, 1159, 'S/N 008', 'HCN Dial Indicator (D-6027)', 'Range: 2 inch', '2013-08-21', 6301, '8/21/2013', NULL), (6302, 1160, '', '', '', '0000-00-00', 6302, '', NULL), (6303, 1161, 'S/N 13454', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', '2013-08-20', 6303, '8/20/2013', NULL), (6304, 1162, '', '', '', '0000-00-00', 6304, '', NULL), (6305, 1163, '', '', '', '0000-00-00', 6305, '', NULL), (6306, 1164, '', '', '', '0000-00-00', 6306, '', NULL), (6307, 1165, '', '', '', '0000-00-00', 6307, '', NULL), (6308, 1166, '', '', '', '0000-00-00', 6308, '', NULL), (6309, 1167, 'S/N #1', 'No Shok Gauge', 'Range: 5K psi', '2006-08-07', 6309, '8/7/2006', NULL), (6310, 1168, '', '', '', '0000-00-00', 6310, '', NULL), (6311, 1169, '', '', '', '0000-00-00', 6311, '', NULL), (6312, 1170, '', '', '', '0000-00-00', 6312, '', NULL), (6313, 1171, '', '', '', '0000-00-00', 6313, '', NULL), (6314, 1172, '', '', '', '0000-00-00', 6314, '', NULL), (6315, 1173, '', '', '', '0000-00-00', 6315, '', NULL), (6316, 1174, 'S/N 90102247', 'Brainard-Kilman C-100 Compression Machine', 'Range: Digital', '1995-08-19', 6316, '8/19/1995', NULL), (6317, 1175, '', '', '', '0000-00-00', 6317, '', NULL), (6318, 1176, '', '', '', '0000-00-00', 6318, '', NULL), (6319, 1177, '', '', '', '0000-00-00', 6319, '', NULL), (6320, 1178, '', '', '', '0000-00-00', 6320, '', NULL), (6321, 1179, '', '', '', '0000-00-00', 6321, '', NULL), (6322, 1180, 'S/N 1592', 'Enerpac Gauge', 'Range 60K', '1998-08-31', 6322, '8/31/1998', NULL), (6323, 1181, '', '', '', '0000-00-00', 6323, '', NULL), (6324, 1182, '', '', '', '0000-00-00', 6324, '', NULL), (6325, 1183, '', '', '', '0000-00-00', 6325, '', NULL), (6326, 1184, '', '', '', '0000-00-00', 6326, '', NULL), (6327, 1185, '', 'SOLICITATION LETTER RETURNED', '', '0000-00-00', 6327, '', NULL), (6328, 1186, '', '', '', '0000-00-00', 6328, '', NULL), (6329, 1187, '', '', '', '0000-00-00', 6329, '', NULL), (6330, 1188, '', '', '', '0000-00-00', 6330, '', NULL), (6331, 1189, '', '', '', '0000-00-00', 6331, '', NULL), (6332, 1190, '', '', '', '0000-00-00', 6332, '', NULL), (6333, 1191, 'S/N 242', 'Brainard-Kilman E-212 Load Cell (E-4)', 'Range 2,000 lbs.', '2001-08-29', 6333, '8/29/2001', NULL), (6334, 1192, '', '', '', '0000-00-00', 6334, '', NULL), (6335, 1193, '', '', '', '0000-00-00', 6335, '', NULL), (6336, 1194, '', '', '', '0000-00-00', 6336, '', NULL), (6337, 1195, '', '', '', '0000-00-00', 6337, '', NULL), (6338, 1196, '', '', '', '0000-00-00', 6338, '', NULL), (6339, 1197, '', '', '', '0000-00-00', 6339, '', NULL), (6340, 1198, '', 'Call Jack\'s cell when at Airport, will come get you ', '', '0000-00-00', 6340, '', NULL), (6341, 1199, '', '', '', '0000-00-00', 6341, '', NULL), (6342, 1200, '', '', '', '0000-00-00', 6342, '', NULL), (6343, 1201, 'S/N 236', 'BK Panel--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 6343, '8/30/2006', NULL), (6344, 1202, '', '', '', '0000-00-00', 6344, '', NULL), (6345, 1203, '', '', '', '0000-00-00', 6345, '', NULL), (6346, 1204, '', '', '', '0000-00-00', 6346, '', NULL), (6347, 1205, 'Rt. 2, Box 36', '***SOLICITE HARVEY AT HOME OR YOU WILL GET NO ', 'RESPONSE FOR CAL***', '0000-00-00', 6347, '', NULL), (6348, 1206, '', '', '', '0000-00-00', 6348, '', NULL), (6349, 1207, '', '', '', '0000-00-00', 6349, '', NULL), (6350, 1208, 'S/N 001', 'Test Lab Dial Indicator (OOS) (D-6027)', 'Range: 0.4\"', '2004-03-01', 6350, '3/1/2004', NULL), (6351, 1209, '', '', '', '0000-00-00', 6351, '', NULL), (6352, 1210, '', '', '', '0000-00-00', 6352, '', NULL), (6353, 1211, 'S/N 861711-01', '3D Instrument / Analog P/N 25544-27B14 0.25% Accuracy', 'Range: 50 PSI to 500 PSI', '2006-08-11', 6353, '8/11/2006', NULL), (6354, 1212, '', '', '', '0000-00-00', 6354, '', NULL), (6355, 1213, '', '', '', '0000-00-00', 6355, '', NULL), (6356, 1214, 'S/N 150', 'Karol Warner Mdl. 1000R Single Proving Ring T & C ', 'Cap: 1K (E-4 & Man Specs)', '2012-12-12', 6356, '12/12/2012', NULL), (6357, 1215, '', '', '', '0000-00-00', 6357, '', NULL), (6358, 1216, 'S/N 591918 ', 'Unknown Dial Indicator (D-6027)', 'Range: 1 inches ', '2012-12-12', 6358, '12/12/2012', NULL), (6359, 1217, '', '', '', '0000-00-00', 6359, '', NULL), (6360, 1218, '', '', '', '0000-00-00', 6360, '', NULL), (6361, 1219, '', '', '', '0000-00-00', 6361, '', NULL), (6362, 1220, 'S/N 030600000005', 'ELE Soiltest Unconfined Proving Ring', 'Range: ', NULL, 6362, 'New', NULL), (6363, 1221, 'S/N 4019-S', 'Karol Warner Digital Readout Mdl. M 6574 (E-4)', 'Range: Low 10K / High 50K', '2007-08-03', 6363, '8/3/2007', NULL), (6364, 1222, '', '', '', '0000-00-00', 6364, '', NULL), (6365, 1223, '', '', '', '0000-00-00', 6365, '', NULL), (6366, 1224, '', '', '', '0000-00-00', 6366, '', NULL), (6367, 1225, '', '', '', '0000-00-00', 6367, '', NULL), (6368, 1226, '', '', '', '0000-00-00', 6368, '', NULL), (6369, 1227, '', '', '', '0000-00-00', 6369, '', NULL), (6370, 1228, '', '', '', '0000-00-00', 6370, '', NULL), (6371, 1229, '', 'DUPLICATE OF OHIODOT2 S/N IS ACTUALLY MODEL #', '', '0000-00-00', 6371, '', NULL), (6372, 1230, '', '', '', '0000-00-00', 6372, '', NULL), (6373, 1231, '', '', '', '0000-00-00', 6373, '', NULL), (6374, 1232, 'S/N K6086', 'Rimac Spring Tester (E-4) (OUT OF SERVICE)', 'Range: 500 lbs', '2003-12-10', 6374, '12/10/2003', NULL), (6375, 1233, '', '', '', '0000-00-00', 6375, '', NULL), (6376, 1234, '', '', '', '0000-00-00', 6376, '', NULL), (6377, 1235, '', '', '', '0000-00-00', 6377, '', NULL), (6378, 1236, '', '', '', '0000-00-00', 6378, '', NULL), (6379, 1237, '', '', '', '0000-00-00', 6379, '', NULL), (6380, 1238, '', '', '', '0000-00-00', 6380, '', NULL), (6381, 1239, '', 'Existing valve on machine needs to be returned to us or a ', '', '0000-00-00', 6381, '', NULL), (6382, 1240, '', 'Excess Baggage ', '', '0000-00-00', 6382, '', NULL), (6383, 1241, '', '', '', '0000-00-00', 6383, '', NULL), (6384, 1242, '', '', '', '0000-00-00', 6384, '', NULL), (6385, 1243, 'S/N 013601', 'Pine Instruments Load Cell Test Kit (E-4)', 'Cap: 600 KPA (2383.6 lbs) ', '2012-12-14', 6385, '12/14/2012', NULL), (6386, 1244, 'S/N 91125', 'Hayes Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K', '2012-12-11', 6386, '12/11/2012', NULL), (6387, 1245, '', '', '', '0000-00-00', 6387, '', NULL), (6388, 1246, '', '', '', '0000-00-00', 6388, '', NULL), (6389, 1247, '', '', '', '0000-00-00', 6389, '', NULL), (6390, 1248, '', '', '', '0000-00-00', 6390, '', NULL), (6391, 1249, '', '', '', '0000-00-00', 6391, '', NULL), (6392, 1250, '', '', '', '0000-00-00', 6392, '', NULL), (6393, 1251, 'S/N 2920', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2012-12-13', 6393, '12/13/2012', NULL), (6394, 1252, '', '', '', '0000-00-00', 6394, '', NULL), (6395, 1253, '', '', '', '0000-00-00', 6395, '', NULL), (6396, 1254, 'S/N PS2454', 'Geo Jac Pressure Transducer (D-5720)', 'Range: 100 PSI', '2012-12-12', 6396, '12/12/2012', NULL), (6397, 1255, '', '', '', '0000-00-00', 6397, '', NULL), (6398, 1256, 'S/N 9518-1554-0505103', 'Soiltest CT-7251-CS-100-2A Digital Compression Machine (E-4)', 'Range: 250K', '2005-12-09', 6398, '12/9/2005', NULL), (6399, 1257, '', '', '', '0000-00-00', 6399, '', NULL), (6400, 1258, '', '', '', '0000-00-00', 6400, '', NULL), (6401, 1259, '', '', '', '0000-00-00', 6401, '', NULL), (6402, 1260, '', 'Needs digital ', '', '0000-00-00', 6402, '', NULL), (6403, 1261, '', '', '', '0000-00-00', 6403, '', NULL), (6404, 1262, '', '', '', '0000-00-00', 6404, '', NULL), (6405, 1263, '', '', '', '0000-00-00', 6405, '', NULL), (6406, 1264, '', '', '', '0000-00-00', 6406, '', NULL), (6407, 1265, '', '', '', '0000-00-00', 6407, '', NULL), (6408, 1266, '', '', '', '0000-00-00', 6408, '', NULL), (6409, 1267, '', '', '', '0000-00-00', 6409, '', NULL), (6410, 1268, 'S/N 05220', 'Forney FX-250/LA-270-TP Digital Compression Machine (E-4)', 'Range: Cylinder Frame 300K/Beam 300K', '2007-05-07', 6410, '5/7/2007', NULL), (6411, 1269, '', '', '', '0000-00-00', 6411, '', NULL), (6412, 1270, '', '', '', '0000-00-00', 6412, '', NULL), (6413, 1271, '', '', '', '0000-00-00', 6413, '', NULL), (6414, 1272, '', '', '', '0000-00-00', 6414, '', NULL), (6415, 1273, '', '', '', '0000-00-00', 6415, '', NULL), (6416, 1274, '', '', '', '0000-00-00', 6416, '', NULL), (6417, 1275, '', '', '', '0000-00-00', 6417, '', NULL), (6418, 1276, 'S/N 2-1-98', 'Hogentogler Unconfined Single Proving Ring (E-4 & ManSpec)', 'Range: 2K', '2013-02-06', 6418, '2/6/2013', NULL), (6419, 1277, '', '', '', '0000-00-00', 6419, '', NULL), (6420, 1278, 'S/N 100297', 'Geotest S2010 Digital Compression Machine w/Laureate Dig. (E-4)', 'Range: 20 lbs to 2K', '2013-02-05', 6420, '2/5/2013', NULL), (6421, 1279, 'S/N 310057', 'Powerteam PE554 Prestress Jack (E-4 & PCI)', 'Range: 35K (8,450 psi)', '2013-02-07', 6421, '2/7/2013', NULL), (6422, 1280, '', '', '', '0000-00-00', 6422, '', NULL), (6423, 1281, '', '', '', '0000-00-00', 6423, '', NULL), (6424, 1282, '', '', '', '0000-00-00', 6424, '', NULL), (6425, 1283, '', '', '', '0000-00-00', 6425, '', NULL), (6426, 1284, 'S/N 6-2-00', 'Hogentogler Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 6K', '2013-02-06', 6426, '2/6/2013', NULL), (6427, 1285, 'S/N 212', 'Humboldt H4-M-N Beambreaker (E-4 & 2%)', 'Range: 15K', '2013-02-13', 6427, '2/13/2013', NULL), (6428, 1286, '', '', '', '0000-00-00', 6428, '', NULL), (6429, 1287, '', '', '', '0000-00-00', 6429, '', NULL), (6430, 1288, 'S/N 1155-14-1964408', 'ELE 1155BO900 Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-02-12', 6430, '2/12/2013', NULL), (6431, 1289, 'S/N 811/ 00478', 'Durham Geo E-114 Pressure Transducer (D-5720)', 'Range: 150 psi', '2013-02-12', 6431, '2/12/2013', NULL), (6432, 1290, '', '', '', '0000-00-00', 6432, '', NULL), (6433, 1291, 'S/N 321', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 15K', '2013-02-12', 6433, '2/12/2013', NULL), (6434, 1292, '', '', '', '0000-00-00', 6434, '', NULL), (6435, 1293, '', '', '', '0000-00-00', 6435, '', NULL), (6436, 1294, 'S/N 980300 (ID# 0268)', 'Karol Warner Direct Shear Dial Indicator-Shear Displacement', 'Range: 2 inches (D-6027)', '2013-02-12', 6436, '2/12/2013', NULL), (6437, 1295, '', '', '', '0000-00-00', 6437, '', NULL), (6438, 1296, '', '', '', '0000-00-00', 6438, '', NULL), (6439, 1297, '', '', '', '0000-00-00', 6439, '', NULL), (6440, 1298, '', '', '', '0000-00-00', 6440, '', NULL), (6441, 1299, '', '', '', '0000-00-00', 6441, '', NULL), (6442, 1300, '', '', '', '0000-00-00', 6442, '', NULL), (6443, 1301, '', '', '', '0000-00-00', 6443, '', NULL), (6444, 1302, '', '', '', '0000-00-00', 6444, '', NULL), (6445, 1303, 'S/N H3801208', 'AND FG60K Scale (E-898)', 'Range: 150 lbs ', '2013-02-20', 6445, '2/20/2013', NULL), (6446, 1304, '', '', '', '0000-00-00', 6446, '', NULL), (6447, 1305, '', ' w/ Channel #0 Deflectometer (E-2309)', 'Range: 0.25 Inch ', '2013-02-19', 6447, '2/19/2013', NULL), (6448, 1306, '', '', '', '0000-00-00', 6448, '', NULL), (6449, 1307, '', '', '', '0000-00-00', 6449, '', NULL), (6450, 1308, '', '', '', '0000-00-00', 6450, '', NULL), (6451, 1309, '', '', '', '0000-00-00', 6451, '', NULL), (6452, 1310, '', '', '', '0000-00-00', 6452, '', NULL), (6453, 1311, '', '', '', '0000-00-00', 6453, '', NULL), (6454, 1312, '', '', '', '0000-00-00', 6454, '', NULL), (6455, 1313, '', '', '', '0000-00-00', 6455, '', NULL), (6456, 1314, '', '', '', '0000-00-00', 6456, '', NULL), (6457, 1315, 'S/N 0991036', 'ELE 35-1475 Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 6457, '2/16/2011', NULL), (6458, 1316, '', '', '', '0000-00-00', 6458, '', NULL), (6459, 1317, '', '', '', '0000-00-00', 6459, '', NULL), (6460, 1318, '', '', '', '0000-00-00', 6460, '', NULL), (6461, 1319, '', '', '', '0000-00-00', 6461, '', NULL), (6462, 1320, '', '', '', '0000-00-00', 6462, '', NULL), (6463, 1321, '', '', '', '0000-00-00', 6463, '', NULL), (6464, 1322, 'S/N 23177', 'Soiltest Single Proving Ring (E-4)', 'Cap: 6,000 lbs.', '1998-02-17', 6464, '2/17/1998', NULL), (6465, 1323, 'S/N 390', ' and Pine Test Spring', 'Range 2500 lb.', '0000-00-00', 6465, '', NULL), (6466, 1324, '', '', '', '0000-00-00', 6466, '', NULL), (6467, 1325, 'S/N 159815', 'Tinius Olsen Super L- Model 290 Display (E4-02)', 'Range 2.4/12/60/120K', '2005-03-30', 6467, '3/30/2005', NULL), (6468, 1326, '', '', '', '0000-00-00', 6468, '', NULL), (6469, 1327, '', '', '', '0000-00-00', 6469, '', NULL), (6470, 1328, 'S/N 055', ' with 20 K Load Cell (T/C) Model A30=33 (E-4)', '', '1999-02-15', 6470, '2/15/1999', NULL), (6471, 1329, 'S/N 09863 ', 'Mitutoyo Digital Indicator--Model IDC112E', 'Range: .5 inches', '2001-03-26', 6471, '3/26/2001', NULL), (6472, 1330, '', '', '', '0000-00-00', 6472, '', NULL), (6473, 1331, '', '', '', '0000-00-00', 6473, '', NULL), (6474, 1332, '', '', '', '0000-00-00', 6474, '', NULL), (6475, 1333, '', '', '', '0000-00-00', 6475, '', NULL), (6476, 1334, '', '', '', '0000-00-00', 6476, '', NULL), (6477, 1335, '', '', '', '0000-00-00', 6477, '', NULL), (6478, 1336, '', '', '', '0000-00-00', 6478, '', NULL), (6479, 1337, '', '', '', '0000-00-00', 6479, '', NULL), (6480, 1338, '', '', '', '0000-00-00', 6480, '', NULL), (6481, 1339, '', '', '', '0000-00-00', 6481, '', NULL), (6482, 1340, '', '', '', '0000-00-00', 6482, '', NULL), (6483, 1341, '', '', '', '0000-00-00', 6483, '', NULL), (6484, 1342, '', '', '', '0000-00-00', 6484, '', NULL), (6485, 1343, '', '12/99 LOCATION HAS MOVED TO CINCINNATI, OH', '', '0000-00-00', 6485, '', NULL), (6486, 1344, '', '', '', '0000-00-00', 6486, '', NULL), (6487, 1345, 'S/N LT40D', 'Forney Compression Machine (E-4)', 'Range: 120K', NULL, 6487, 'New', NULL), (6488, 1346, '', '', '', '0000-00-00', 6488, '', NULL), (6489, 1347, '', '', '', '0000-00-00', 6489, '', NULL), (6490, 1348, '', '', '', '0000-00-00', 6490, '', NULL), (6491, 1349, '', '', '', '0000-00-00', 6491, '', NULL), (6492, 1350, '', '', '', '0000-00-00', 6492, '', NULL), (6493, 1351, 'S/N 22691T', ' with Dynamometer', '', '1996-03-25', 6493, '3/25/1996', NULL), (6494, 1352, '', '', '', '0000-00-00', 6494, '', NULL), (6495, 1353, '', '', '', '0000-00-00', 6495, '', NULL), (6496, 1354, '', '', '', '0000-00-00', 6496, '', NULL), (6497, 1355, 'S/N LF1641', 'Lloyd Instruments LF Plus CS4921', 'Range: ', NULL, 6497, 'New', NULL), (6498, 1356, '', '', '', '0000-00-00', 6498, '', NULL), (6499, 1357, '', '', '', '0000-00-00', 6499, '', NULL), (6500, 1358, '', '', '', '0000-00-00', 6500, '', NULL), (6501, 1359, '', '', '', '0000-00-00', 6501, '', NULL), (6502, 1360, 'S/N 6432', ' Range 5Kip T & C - 10 Ranges ID#25-LC07 (E-4)', '', '2005-02-17', 6502, '2/17/2005', NULL), (6503, 1361, '', '', '', '0000-00-00', 6503, '', NULL), (6504, 1362, 'S/N 8027191073', 'OHaus Balance Scale Mdl. Adventuerer SL ', 'Range: 600 Gram', '2007-02-12', 6504, '2/12/2007', NULL), (6505, 1363, '', '', '', '0000-00-00', 6505, '', NULL), (6506, 1364, '', '', '', '0000-00-00', 6506, '', NULL), (6507, 1365, '', '', '', '0000-00-00', 6507, '', NULL), (6508, 1366, 'S/N E80968', ' w/Epsilon 3542-0100-050-ST Extensometer Channel #1 (E-83)', 'Range: 0.5 in/in (1\" GL)', '2010-02-15', 6508, '2/15/2010', NULL), (6509, 1367, '', '', '', '0000-00-00', 6509, '', NULL), (6510, 1368, '', '', '', '0000-00-00', 6510, '', NULL), (6511, 1369, '', '', '', '0000-00-00', 6511, '', NULL), (6512, 1370, '', '', '', '0000-00-00', 6512, '', NULL), (6513, 1371, '', '', '', '0000-00-00', 6513, '', NULL), (6514, 1372, '', '', '', '0000-00-00', 6514, '', NULL), (6515, 1373, '', '', '', '0000-00-00', 6515, '', NULL), (6516, 1374, '', '', '', '0000-00-00', 6516, '', NULL), (6517, 1375, 'S/N 3802436', 'AND FG60K Scale (E-898)', 'Range: 15 lbs to 150 lbs ', '2008-02-12', 6517, '2/12/2008', NULL), (6518, 1376, '', '', '', '0000-00-00', 6518, '', NULL), (6519, 1377, 'S/N S-2104', 'Karol Warner Pore Pressure (Destroyed) (D-5720)', 'Range: 90 psi', '2006-02-13', 6519, '2/13/2006', NULL), (6520, 1378, 'S/N 29020206', 'Load Cell 155411-00502 w/ GSE (E-4 & 2%)', 'Range: 5K ', '2011-02-16', 6520, '2/16/2011', NULL), (6521, 1379, 'S/N Channel 1 ', 'Compress LVDT (D-6027)', 'Range: 0.1 Inch to 1 Inch ', '2007-10-01', 6521, '10/1/2007', NULL), (6522, 1380, '', '', '', '0000-00-00', 6522, '', NULL), (6523, 1381, '', '', '', '0000-00-00', 6523, '', NULL), (6524, 1382, '', '', '', '0000-00-00', 6524, '', NULL), (6525, 1383, '', '', '', '0000-00-00', 6525, '', NULL), (6526, 1384, '', '', '', '0000-00-00', 6526, '', NULL), (6527, 1385, '', '', '', '0000-00-00', 6527, '', NULL), (6528, 1386, 'S/N 311782/1', 'Eilon Engineering RON 2501 S-03 Load Cell (ManSp & 0.1% FS)', 'Cap: 3 Tons', '2005-07-29', 6528, '7/29/2005', NULL), (6529, 1387, 'S/N 1023371', 'Eilon Engineering RON 2100 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Ton', '2004-09-16', 6529, '9/16/2004', NULL), (6530, 1388, '', '', '', '0000-00-00', 6530, '', NULL), (6531, 1389, 'S/N HS10/1.25', 'LSC LVDT w/ Linseis Recorder LY16100-II (D-6027)', 'Range: 0.04 Inches to 0.4 Inches', '2013-01-21', 6531, '1/21/2013', NULL), (6532, 1390, 'S/N MG2712', ' w/ LVDT Displacement Model HS25 Vertical Force (D-6027)', 'Range: 1inch w/E-405 Digital', '2008-11-18', 6532, '11/18/2008', NULL), (6533, 1391, '', '', '', '0000-00-00', 6533, '', NULL), (6534, 1392, 'S/N 96520 / NC#20', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2012-07-18', 6534, '7/18/2012', NULL), (6535, 1393, 'S/N ', ' w/Vertical Force (E-4)', 'Range: 22TSF (1,500 lbs)', '2013-01-08', 6535, '1/8/2013', NULL), (6536, 1394, '', '', '', '0000-00-00', 6536, '', NULL), (6537, 1395, 'S/N 961230', ' w/ 1 Forney TA-3000-EB Extensometer (E-83) ', 'Range: 8 Inch to 0.08 Inch (OOS) ', '2006-02-14', 6537, '2/14/2006', NULL), (6538, 1396, '', '', '', '0000-00-00', 6538, '', NULL), (6539, 1397, '', '', '', '0000-00-00', 6539, '', NULL), (6540, 1398, '', '', '', '0000-00-00', 6540, '', NULL), (6541, 1399, '', '', '', '0000-00-00', 6541, '', NULL), (6542, 1400, '', '', '', '0000-00-00', 6542, '', NULL), (6543, 1401, 'S/N 98063', 'Forney F-250E-CS-100 Digital Compression Machine (E-4)', 'Range: 3K to 250K ', '2013-01-16', 6543, '1/16/2013', NULL), (6544, 1402, '', '', '', '0000-00-00', 6544, '', NULL), (6545, 1403, 'S/N 881578-12-88', 'ATS Model 900 Digital Tensile Machine (E-4)', 'Range: 500 lbs/1K/2.5K/5K', '2013-01-21', 6545, '1/21/2013', NULL), (6546, 1404, 'S/N 1145 (ID# Q-0445)', 'Schmidt Model NA-2 Hammer (C-805)', 'Range: 78 to 82', '2011-01-25', 6546, '1/25/2011', NULL), (6547, 1405, 'S/N 14712935 ', 'AND Mdl. GP4OK Scale (ID# Q-2471) (E-898)', 'Range: 1 lbs to 85 lbs ', '2013-01-22', 6547, '1/22/2013', NULL), (6548, 1406, 'S/N L58709 ', 'Mettler PM6100 Scale (ID# Q-0822) (E-898)', 'Range: 50 Gram to 6,100 Gram ', '2013-01-24', 6548, '1/24/2013', NULL), (6549, 1407, '', 'plus ---40 Kip Range T&C', '', '0000-00-00', 6549, '', NULL), (6550, 1408, 'S/N 05064744/3', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2007-08-13', 6550, '8/13/2007', NULL), (6551, 1409, '', '', '', '0000-00-00', 6551, '', NULL), (6552, 1410, '', '', '', '0000-00-00', 6552, '', NULL), (6553, 1411, '', '', '', '0000-00-00', 6553, '', NULL), (6554, 1412, '', 'Rice Lake Indicator w/summing box', '', '0000-00-00', 6554, '', NULL), (6555, 1413, '', '', '', '0000-00-00', 6555, '', NULL), (6556, 1414, '', '', '', '0000-00-00', 6556, '', NULL), (6557, 1415, '', '', '', '0000-00-00', 6557, '', NULL), (6558, 1416, '', 'NO ISO', '', '0000-00-00', 6558, '', NULL), (6559, 1417, 'S/N 146719', 'Tinius Olsen Mechanical Extensometer (E-83)', 'Range: 0.0125 in/in ', '2007-09-13', 6559, '9/13/2007', NULL), (6560, 1418, '', '', '', '0000-00-00', 6560, '', NULL), (6561, 1419, '', '', '', '0000-00-00', 6561, '', NULL), (6562, 1420, '', '', '', '0000-00-00', 6562, '', NULL), (6563, 1421, 'S/N 101', 'Karol Warner Proving Ring (E-4 & Man Spec)', 'Cap: 1500 lbs.', '2004-01-12', 6563, '1/12/2004', NULL), (6564, 1422, '', '', '', '0000-00-00', 6564, '', NULL), (6565, 1423, 'S/N 137316', 'Tinius Olsen 5-500-1A (E83-00)', '1\" Extensometer', '2002-01-31', 6565, '1/31/2002', NULL), (6566, 1424, '', '', '', '0000-00-00', 6566, '', NULL), (6567, 1425, '', '', '', '0000-00-00', 6567, '', NULL), (6568, 1426, '', '', '', '0000-00-00', 6568, '', NULL), (6569, 1427, '', '', '', '0000-00-00', 6569, '', NULL), (6570, 1428, '', '', '', '0000-00-00', 6570, '', NULL), (6571, 1429, '', '', '', '0000-00-00', 6571, '', NULL), (6572, 1430, '', '', '', '0000-00-00', 6572, '', NULL), (6573, 1431, '', '', '', '0000-00-00', 6573, '', NULL), (6574, 1432, '', '', '', '0000-00-00', 6574, '', NULL), (6575, 1433, 'S/N 5', 'Extra Gauge - Final with Jack #3 (E-4 & PCI) OUT OF SERVICE', 'Range 45K', '2005-08-02', 6575, '8/2/2005', NULL), (6576, 1434, 'S/N 861117C', 'Strainsense Load Cell C (E-4 & PCI) OUT OF SERVICE', 'Range: 5K/50K', '2004-02-02', 6576, '2/2/2004', NULL), (6577, 1435, '', '', '', '0000-00-00', 6577, '', NULL), (6578, 1436, '', '', '', '0000-00-00', 6578, '', NULL), (6579, 1437, 'S/N', 'MTS Compression Machine', 'Range 22K', '0000-00-00', 6579, '', NULL), (6580, 1438, '', '', '', '0000-00-00', 6580, '', NULL), (6581, 1439, '', '', '', '0000-00-00', 6581, '', NULL), (6582, 1440, '', '', '', '0000-00-00', 6582, '', NULL), (6583, 1441, 'S/N 185142', 'Tinius Olsen Compression Machinew/ Series 398 Digital', 'Ranges 12/60/300K', '2000-04-10', 6583, '4/10/2000', NULL), (6584, 1442, '', '', '', '0000-00-00', 6584, '', NULL), (6585, 1443, '', '', '', '0000-00-00', 6585, '', NULL), (6586, 1444, 'S/N 114', 'Brainard-Kilman LVDT Model E-310 (Channel #22)', 'Range: .43 Inches (D6027-96el)', '2000-01-18', 6586, '1/18/2000', NULL), (6587, 1445, '', '', '', '0000-00-00', 6587, '', NULL), (6588, 1446, 'S/N MG4195', 'Wykeham Farrance LVDT Consolidation Frame (D-6027)', 'Range: 10mm', '2005-02-21', 6588, '2/21/2005', NULL), (6589, 1447, 'S/N 1155-13-19298', 'ELE Mdl. PR-61 Single Proving Ring (E-4 & Man Spec)', 'Cap: 6.3K ', '2009-01-21', 6589, '1/21/2009', NULL), (6590, 1448, '', '', '', '0000-00-00', 6590, '', NULL), (6591, 1449, '', '', '', '0000-00-00', 6591, '', NULL), (6592, 1450, '', '', '', '0000-00-00', 6592, '', NULL), (6593, 1451, '', '', '', '0000-00-00', 6593, '', NULL), (6594, 1452, 'S/N E4880', 'ELE Pressure Transducer System', 'Range: 15 psi to 150 psi', '2006-07-25', 6594, '7/25/2006', NULL), (6595, 1453, '', '', '', '0000-00-00', 6595, '', NULL), (6596, 1454, '', 'Calibration done on these items by Plasti-Pak using Spring Gauge:', '', '0000-00-00', 6596, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (6597, 1455, 'S/N 24', 'Extra Gauge-Jack #4 (OOS) (E-4 & PCI)', 'Range: 45K', '2007-01-30', 6597, '1/30/2007', NULL), (6598, 1456, '', '', '', '0000-00-00', 6598, '', NULL), (6599, 1457, '', '', '', '0000-00-00', 6599, '', NULL), (6600, 1458, '', '', '', '0000-00-00', 6600, '', NULL), (6601, 1459, '', '', '', '0000-00-00', 6601, '', NULL), (6602, 1460, '', '', '', '0000-00-00', 6602, '', NULL), (6603, 1461, 'S/N 1155-11-18822', ' with Single Multiload Ring Proving Ring PR-61 (E4)', 'Range: 28KN / 6K', '2005-02-21', 6603, '2/21/2005', NULL), (6604, 1462, '', '', '', '0000-00-00', 6604, '', NULL), (6605, 1463, 'S/N 97092791', 'James Instrument N-25 Hammer (C-805)', 'Range: 78 to 81', '2012-07-10', 6605, '7/10/2012', NULL), (6606, 1464, '', '', '', '0000-00-00', 6606, '', NULL), (6607, 1465, '', '', '', '0000-00-00', 6607, '', NULL), (6608, 1466, '', '', '', '0000-00-00', 6608, '', NULL), (6609, 1467, '', '', '', '0000-00-00', 6609, '', NULL), (6610, 1468, '', '', '', '0000-00-00', 6610, '', NULL), (6611, 1469, '', '', '', '0000-00-00', 6611, '', NULL), (6612, 1470, '', '', '', '0000-00-00', 6612, '', NULL), (6613, 1471, '', '', '', '0000-00-00', 6613, '', NULL), (6614, 1472, '', '', '', '0000-00-00', 6614, '', NULL), (6615, 1473, 'S/N 1002', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI', '2007-07-24', 6615, '7/24/2007', NULL), (6616, 1474, '', '', '', '0000-00-00', 6616, '', NULL), (6617, 1475, '', '', '', '0000-00-00', 6617, '', NULL), (6618, 1476, '', '', '', '0000-00-00', 6618, '', NULL), (6619, 1477, '', '', '', '0000-00-00', 6619, '', NULL), (6620, 1478, '', '', '', '0000-00-00', 6620, '', NULL), (6621, 1479, '', '', '', '0000-00-00', 6621, '', NULL), (6622, 1480, '', '', '', '0000-00-00', 6622, '', NULL), (6623, 1481, 'S/N 3751', 'Instron Compression Machine 4206 w/ Multi ranging cells', 'Range 10K T&C / 30K T & C (E-4)', '2000-07-13', 6623, '7/13/2000', NULL), (6624, 1482, '', '', '', '0000-00-00', 6624, '', NULL), (6625, 1483, '', '', '', '0000-00-00', 6625, '', NULL), (6626, 1484, '', '', '', '0000-00-00', 6626, '', NULL), (6627, 1485, '', '', '', '0000-00-00', 6627, '', NULL), (6628, 1486, '', '', '', '0000-00-00', 6628, '', NULL), (6629, 1487, '', '', '', '0000-00-00', 6629, '', NULL), (6630, 1488, '', '', '', '0000-00-00', 6630, '', NULL), (6631, 1489, '', 'Machine Moved to Massilon, Ohio Location', '', '0000-00-00', 6631, '', NULL), (6632, 1490, '', 'Out of our area of work', '', '0000-00-00', 6632, '', NULL), (6633, 1491, '', '', '', '0000-00-00', 6633, '', NULL), (6634, 1492, '', '', '', '0000-00-00', 6634, '', NULL), (6635, 1493, '', '', '', '0000-00-00', 6635, '', NULL), (6636, 1494, '', '', '', '0000-00-00', 6636, '', NULL), (6637, 1495, '', '', '', '0000-00-00', 6637, '', NULL), (6638, 1496, '', '', '', '0000-00-00', 6638, '', NULL), (6639, 1497, '', '', '', '0000-00-00', 6639, '', NULL), (6640, 1498, '', '', '', '0000-00-00', 6640, '', NULL), (6641, 1499, '', '', '', '0000-00-00', 6641, '', NULL), (6642, 1500, '', '', '', '0000-00-00', 6642, '', NULL), (6643, 1501, 'S/N 66035', 'Hamilton Simplex Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2009-07-20', 6643, '7/20/2009', NULL), (6644, 1502, 'S/N 282', 'Ames Dial Indicator (D-6027)', 'Range: 0.2 Inches ', '2007-07-09', 6644, '7/9/2007', NULL), (6645, 1503, '', '', '', '0000-00-00', 6645, '', NULL), (6646, 1504, 'S/N 111405', 'Satec CS-100-1S Pipe Tester (E-4 & C-497)', 'Range: 15K to 500K ', '2008-07-16', 6646, '7/16/2008', NULL), (6647, 1505, '', '', '', '0000-00-00', 6647, '', NULL), (6648, 1506, '', '', '', '0000-00-00', 6648, '', NULL), (6649, 1507, '', '', '', '0000-00-00', 6649, '', NULL), (6650, 1508, '', '', '', '0000-00-00', 6650, '', NULL), (6651, 1509, '', '', '', '0000-00-00', 6651, '', NULL), (6652, 1510, '', '**Need financial information for them to be Net 30, so far Forney', '', '0000-00-00', 6652, '', NULL), (6653, 1511, '', '', '', '0000-00-00', 6653, '', NULL), (6654, 1512, '', '', '', '0000-00-00', 6654, '', NULL), (6655, 1513, '', '', '', '0000-00-00', 6655, '', NULL), (6656, 1514, 'S/N 126385', 'Proceq N-34 Schmidt Hammer (C-805)', 'Range: 78 to 82 ', '2013-06-27', 6656, '6/27/2013', NULL), (6657, 1515, '', '', '', '0000-00-00', 6657, '', NULL), (6658, 1516, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 6658, '', NULL), (6659, 1517, '', '', '', '0000-00-00', 6659, '', NULL), (6660, 1518, '', '', '', '0000-00-00', 6660, '', NULL), (6661, 1519, '', '', '', '0000-00-00', 6661, '', NULL), (6662, 1520, '', '', '', '0000-00-00', 6662, '', NULL), (6663, 1521, '', '', '', '0000-00-00', 6663, '', NULL), (6664, 1522, '', '', '', '0000-00-00', 6664, '', NULL), (6665, 1523, '', '', '', '0000-00-00', 6665, '', NULL), (6666, 1524, '', '', '', '0000-00-00', 6666, '', NULL), (6667, 1525, '', '', '', '0000-00-00', 6667, '', NULL), (6668, 1526, '', '', '', '0000-00-00', 6668, '', NULL), (6669, 1527, '', '', '', '0000-00-00', 6669, '', NULL), (6670, 1528, '', '', '', '0000-00-00', 6670, '', NULL), (6671, 1529, '', '', '', '0000-00-00', 6671, '', NULL), (6672, 1530, '', '', '', '0000-00-00', 6672, '', NULL), (6673, 1531, '', '', '', '0000-00-00', 6673, '', NULL), (6674, 1532, '', '', '', '0000-00-00', 6674, '', NULL), (6675, 1533, '', '', '', '0000-00-00', 6675, '', NULL), (6676, 1534, 'S/N 255479', 'Artech Model 20210 5K Load Cell (E-4)', 'Range: 50 lbs to 5K', '2013-06-04', 6676, '6/4/2013', NULL), (6677, 1535, 'S/N 944-400', 'Brainard Kilman E-124 Pressure Transducer (D-5720)', 'Range: 15 psi to 150 psi', '2013-06-04', 6677, '6/4/2013', NULL), (6678, 1536, 'S/N P-42/RC302', 'Simplex Pullout Tester (Bolt Tester) w/ Extra Gauge (E-4)', 'Range: 8K / 60K ', '2013-06-05', 6678, '6/5/2013', NULL), (6679, 1537, 'S/N 9906-078', 'Detecto AP-4K Scale (E-898)', 'Range: 4,000 Grams ', '2010-06-08', 6679, '6/8/2010', NULL), (6680, 1538, '', '', '', '0000-00-00', 6680, '', NULL), (6681, 1539, 'S/N 1901AA12456', 'Powerteam RH302 Ram Pack w/Gauge #1 (E-4 & PCI)', 'Range: 30 tons', '2013-06-05', 6681, '6/5/2013', NULL), (6682, 1540, 'S/N 417', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K', '2013-06-04', 6682, '6/4/2013', NULL), (6683, 1541, 'S/N 13007406', 'AND HP-20K Scale (E-898)', 'Range : 46 lbs', '2013-06-04', 6683, '6/4/2013', NULL), (6684, 1542, '', '', '', '0000-00-00', 6684, '', NULL), (6685, 1543, '', '', '', '0000-00-00', 6685, '', NULL), (6686, 1544, 'S/N 1491', 'Pine Instrument Gyratory Test Kit Single Proving Ring', 'Range: 5K (E-4 & Man Specs)', '2012-06-05', 6686, '6/5/2012', NULL), (6687, 1545, 'S/N 300', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 1.5K to 15K ', '2013-06-04', 6687, '6/4/2013', NULL), (6688, 1546, '', '', '', '0000-00-00', 6688, '', NULL), (6689, 1547, '', '', '', '0000-00-00', 6689, '', NULL), (6690, 1548, 'S/N 128051', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2012-06-21', 6690, '6/21/2012', NULL), (6691, 1549, '', '', '', '0000-00-00', 6691, '', NULL), (6692, 1550, '', '', '', '0000-00-00', 6692, '', NULL), (6693, 1551, 'S/N 603002', 'Omega DPG1200-30VAC Digital Vacuum Gauge ', 'Range: 30 inHg (D-5720)', '2013-06-12', 6693, '6/12/2013', NULL), (6694, 1552, '', '', '', '0000-00-00', 6694, '', NULL), (6695, 1553, '', '', '', '0000-00-00', 6695, '', NULL), (6696, 1554, '', '', '', '0000-00-00', 6696, '', NULL), (6697, 1555, '', '', '', '0000-00-00', 6697, '', NULL), (6698, 1556, 'S/N 03218', ' w/LA 270-TPILOT Beam Frame Fr. 2 / Ch. 2 (E-4)', 'Range: 3K to 30K', '2013-06-18', 6698, '6/18/2013', NULL), (6699, 1557, '', '', '', '0000-00-00', 6699, '', NULL), (6700, 1558, 'S/N 14709174', 'AND GP-20K Lab Scale (E-898)', 'Range: 20Kg', '2013-06-10', 6700, '6/10/2013', NULL), (6701, 1559, '', '', '', '0000-00-00', 6701, '', NULL), (6702, 1560, '', '', '', '0000-00-00', 6702, '', NULL), (6703, 1561, 'S/N STME02', 'Durham GEO E-124 Pressure Transducer w/ E-210 dig. - Channel #4 ', 'Range: 150 psi (Dig S/N 1109) (D-5720)', '2013-06-19', 6703, '6/19/2013', NULL), (6704, 1562, 'S/N B02236', ' w/ Model DBBPU-IT Shear Force Load Cell (E-4)', 'Range: 500 lbs ', '2013-06-19', 6704, '6/19/2013', NULL), (6705, 1563, 'S/N 22198', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K (ID# 003448)', '2013-06-19', 6705, '6/19/2013', NULL), (6706, 1564, 'S/N D2361-01-2A', 'Pollard Pressure Gauge ID#D2361-01-2A (D-5720)', 'Range: 160 PSI', '2012-07-25', 6706, '7/25/2012', NULL), (6707, 1565, '', '', '', '0000-00-00', 6707, '', NULL), (6708, 1566, 'S/N 03043922/5', 'Eilon Engineering RON Load Cell 2501S-30 Asset # MSL115286', 'Range: 60K (ManSp & 0.1% FS)', '2006-07-19', 6708, '7/19/2006', NULL), (6709, 1567, 'S/N 05054293/1', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 KG', '2007-08-13', 6709, '8/13/2007', NULL), (6710, 1568, '', '', '', '0000-00-00', 6710, '', NULL), (6711, 1569, '', '', '', '0000-00-00', 6711, '', NULL), (6712, 1570, '', '', '', '0000-00-00', 6712, '', NULL), (6713, 1571, '', '', '', '0000-00-00', 6713, '', NULL), (6714, 1572, '', '', '', '0000-00-00', 6714, '', NULL), (6715, 1573, '', '', '', '0000-00-00', 6715, '', NULL), (6716, 1574, '', '', '', '0000-00-00', 6716, '', NULL), (6717, 1575, '', 'Tilting Bench Stand/Carring DP41-TBS', '', NULL, 6717, 'New', NULL), (6718, 1576, 'S/N 2', 'Ametek Force Gauge - in Tension Bed', 'Cap: 150#', '0000-00-00', 6718, '', NULL), (6719, 1577, '', '', '', '0000-00-00', 6719, '', NULL), (6720, 1578, '', '', '', '0000-00-00', 6720, '', NULL), (6721, 1579, '', '', '', '0000-00-00', 6721, '', NULL), (6722, 1580, 'S/N 93153', 'Extensometer S-1000A with Recorder (E-83)', 'Range .008/.02/.04/.08\"', '2002-06-20', 6722, '6/20/2002', NULL), (6723, 1581, '', '', '', '0000-00-00', 6723, '', NULL), (6724, 1582, '', '', '', '0000-00-00', 6724, '', NULL), (6725, 1583, '', '3/2/00 MACHINE MOVED - DO NOT USE THIS PROFILE', '', '0000-00-00', 6725, '', NULL), (6726, 1584, '', '', '', '0000-00-00', 6726, '', NULL), (6727, 1585, '', '', '', '0000-00-00', 6727, '', NULL), (6728, 1586, '', '', '', '0000-00-00', 6728, '', NULL), (6729, 1587, '', '', '', '0000-00-00', 6729, '', NULL), (6730, 1588, '', '', '', '0000-00-00', 6730, '', NULL), (6731, 1589, '', '', '', '0000-00-00', 6731, '', NULL), (6732, 1590, '', '', '', '0000-00-00', 6732, '', NULL), (6733, 1591, '', '', '', '0000-00-00', 6733, '', NULL), (6734, 1592, '', '', '', '0000-00-00', 6734, '', NULL), (6735, 1593, '', '', '', '0000-00-00', 6735, '', NULL), (6736, 1594, '', '', '', '0000-00-00', 6736, '', NULL), (6737, 1595, '', '', '', '0000-00-00', 6737, '', NULL), (6738, 1596, '', '', '', '0000-00-00', 6738, '', NULL), (6739, 1597, '', '', '', '0000-00-00', 6739, '', NULL), (6740, 1598, '', '', '', '0000-00-00', 6740, '', NULL), (6741, 1599, '', '', '', '0000-00-00', 6741, '', NULL), (6742, 1600, '', '', '', '0000-00-00', 6742, '', NULL), (6743, 1601, 'S/N 12164', 'Wykeham-Farrance Single Proving Ring', 'Cap: 2250#', '2000-06-15', 6743, '6/15/2000', NULL), (6744, 1602, '', '', '', '0000-00-00', 6744, '', NULL), (6745, 1603, '', '', '', '0000-00-00', 6745, '', NULL), (6746, 1604, '', '', '', '0000-00-00', 6746, '', NULL), (6747, 1605, '', '', 'Range 30/150/600/1500 KN', '0000-00-00', 6747, '', NULL), (6748, 1606, '', '', '', '0000-00-00', 6748, '', NULL), (6749, 1607, '', '', '', '0000-00-00', 6749, '', NULL), (6750, 1608, '', '', '', '0000-00-00', 6750, '', NULL), (6751, 1609, '', '', '', '0000-00-00', 6751, '', NULL), (6752, 1610, '', '', '', '0000-00-00', 6752, '', NULL), (6753, 1611, '', '', '', '0000-00-00', 6753, '', NULL), (6754, 1612, '', '', '', '0000-00-00', 6754, '', NULL), (6755, 1613, '', '', '', '0000-00-00', 6755, '', NULL), (6756, 1614, '', '', '', '0000-00-00', 6756, '', NULL), (6757, 1615, 'S/N 85019', 'Forney FT-40 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2002-05-02', 6757, '5/2/2002', NULL), (6758, 1616, '', '', '', '0000-00-00', 6758, '', NULL), (6759, 1617, '', '', '', '0000-00-00', 6759, '', NULL), (6760, 1618, 'S/N 114164', 'Tinius Olsen Extensometer -- Model S-1000-2 (E-83) (OOS)', 'Range 2\" G.L. ', '2006-01-19', 6760, '1/19/2006', NULL), (6761, 1619, '', '', '', '0000-00-00', 6761, '', NULL), (6762, 1620, '', '', '', '0000-00-00', 6762, '', NULL), (6763, 1621, '', '', '', '0000-00-00', 6763, '', NULL), (6764, 1622, '', '', '', '0000-00-00', 6764, '', NULL), (6765, 1623, '', '', '', '0000-00-00', 6765, '', NULL), (6766, 1624, '', '', '', '0000-00-00', 6766, '', NULL), (6767, 1625, '', '1 Hour Labor', '', '0000-00-00', 6767, '', NULL), (6768, 1626, 'S/N 001', 'Ametek Accuforce III Digital Force Gauge (Moved) (E-4)', 'Range: 20 lbs', '2008-06-26', 6768, '6/26/2008', NULL), (6769, 1627, '', '', '', '0000-00-00', 6769, '', NULL), (6770, 1628, '', '', '', '0000-00-00', 6770, '', NULL), (6771, 1629, 'S/N B12091', 'Scot Tensile Tester Model DH', 'Range: 100 lbs to 400 lbs', '2006-07-17', 6771, '7/17/2006', NULL), (6772, 1630, 'S/N 88236', 'Hercules Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K', '2008-06-03', 6772, '6/3/2008', NULL), (6773, 1631, '', 'Forever COD', '', '0000-00-00', 6773, '', NULL), (6774, 1632, 'S/N E-83299', 'Epsilon Extensometer Model 3542-0200-025-ST (E-83)', 'Range: 0.001 inches to 0.5 inches', '2007-06-12', 6774, '6/12/2007', NULL), (6775, 1633, '', '', '', '0000-00-00', 6775, '', NULL), (6776, 1634, 'S/N Unit #3', 'Simms Post Tension Jack (E-4 & PCI)', 'Range: 4K (450 psi) / 35K (3,450 psi)', '2008-02-14', 6776, '2/14/2008', NULL), (6777, 1635, '', '', '', '0000-00-00', 6777, '', NULL), (6778, 1636, '', '', '', '0000-00-00', 6778, '', NULL), (6779, 1637, '', '', '', '0000-00-00', 6779, '', NULL), (6780, 1638, '', '', '', '0000-00-00', 6780, '', NULL), (6781, 1639, '', '', '', '0000-00-00', 6781, '', NULL), (6782, 1640, 'S/N 1155-5-18323', 'ELE CBR Test 50 (28KN Proving Ring)', 'Range 28KN', '1998-09-16', 6782, '9/16/1998', NULL), (6783, 1641, '', '', '', '0000-00-00', 6783, '', NULL), (6784, 1642, 'S/N 2704X19600', 'Hightech Magnus Beam Machine (E-4)', 'Range: 20Kn / 200Kn', '2001-06-06', 6784, '6/6/2001', NULL), (6785, 1643, '', '', '', '0000-00-00', 6785, '', NULL), (6786, 1644, '', '', '', '0000-00-00', 6786, '', NULL), (6787, 1645, '', '', '', '0000-00-00', 6787, '', NULL), (6788, 1646, '', '', '', '0000-00-00', 6788, '', NULL), (6789, 1647, '', '', '', '0000-00-00', 6789, '', NULL), (6790, 1648, '', '', '', '0000-00-00', 6790, '', NULL), (6791, 1649, '', '', '', '0000-00-00', 6791, '', NULL), (6792, 1650, 'S/N 00055-0611202', 'Forney Fortec F-500P-CS-100-2A Digital Compression Machine (E-4)', 'Range: 3K to 500K', '2013-06-13', 6792, '6/13/2013', NULL), (6793, 1651, 'S/N 112', 'Geotest Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-06-10', 6793, '6/10/2013', NULL), (6794, 1652, 'S/N 8064 (Plant #21)', 'Pine Instrument Gyratory Compactor AFG1A(Man Specs & AASHTO)', 'Cap: 5KN/10.5KN 152.4mm 30RPM ', '2012-12-14', 6794, '12/14/2012', NULL), (6795, 1653, 'S/N 8065 (Plant #19)', 'Pine Instrument Gyratory Compactor AFG2A(ManSpecs&AASHTO)', 'Cap:5KN/10.5KN 152.4mm 30RPM ', '2012-12-10', 6795, '12/10/2012', NULL), (6796, 1654, '', '', '', '0000-00-00', 6796, '', NULL), (6797, 1655, '', ' w/ Vertical Force', 'Range: 1/8 TSF to 22 TSF', '2009-12-16', 6797, '12/16/2009', NULL), (6798, 1656, 'S/N 1327 (Angle)', 'Pine Instruments AFGI Gyratory Compactor (E-4 & Man Specs)', 'Range: 5KN/10.5KN 152.4mm 30RPM 1.27 deg', '2012-06-16', 6798, '6/16/2012', NULL), (6799, 1657, 'S/N 98064', 'Forney F-250F-02 Compression Machine (E-4)', 'Range: 30K / 250K', '2013-06-17', 6799, '6/17/2013', NULL), (6800, 1658, '', '', '', '0000-00-00', 6800, '', NULL), (6801, 1659, '', '', '', '0000-00-00', 6801, '', NULL), (6802, 1660, '', '', '', '0000-00-00', 6802, '', NULL), (6803, 1661, 'S/N 158', 'Geo Durham Model 5510 Single Proving Ring ', 'Cap: 10K Plant #10 (E-4 & Man Specs)', '2012-06-15', 6803, '6/15/2012', NULL), (6804, 1662, 'S/N 030600000005', 'ELE Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', '2011-05-24', 6804, '5/24/2011', NULL), (6805, 1663, 'S/N 45762-3', 'Tinius Olsen Compression Machine (ID #14480) (E-4)', 'Range: 50K / 200K', '2011-12-12', 6805, '12/12/2011', NULL), (6806, 1664, '', '', '', '0000-00-00', 6806, '', NULL), (6807, 1665, '.', '', '', '0000-00-00', 6807, '', NULL), (6808, 1666, 'S/N 1026-00110', 'Baldwin 60HV-CS-100-4A Universal Testing Machine (E-4)', 'Range: 200 lbs to 60K', '2013-06-12', 6808, '6/12/2013', NULL), (6809, 1667, '', '', '', '0000-00-00', 6809, '', NULL), (6810, 1668, 'S/N 12900 ', 'LCS HS25 LVDT (D-6027)', 'Range: 1 inch (Done In House)', '2013-01-02', 6810, '1/2/2013', NULL), (6811, 1669, 'S/N 393858', 'Powerteam PE554T Post Tension Jack (E-4 & ManSpec)', 'Range: 35K (Only to 30,250 lbs) ', '2013-06-11', 6811, '6/11/2013', NULL), (6812, 1670, 'S/N 3000XP7500', 'Instron Satec 300DX-F1-G1 Universal Testing Machine (E-4)', 'Range: 400 lbs to 40K ', '2013-06-18', 6812, '6/18/2013', NULL), (6813, 1671, '', '', '', '0000-00-00', 6813, '', NULL), (6814, 1672, 'S/N 08192', 'Forney F-50EX-F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2013-06-17', 6814, '6/17/2013', NULL), (6815, 1673, '', '', '', '0000-00-00', 6815, '', NULL), (6816, 1674, 'S/N 03013', 'Forney LA-270-F-CPILOT Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K (Beam Frame)', '2013-06-12', 6816, '6/12/2013', NULL), (6817, 1675, 'S/N 101', 'Durham Geo CC-300-GB Digital Compression Machine (E-4)', 'Range: 3K to 300K ', '2013-06-12', 6817, '6/12/2013', NULL), (6818, 1676, '', '', '', '0000-00-00', 6818, '', NULL), (6819, 1677, '', '', '', '0000-00-00', 6819, '', NULL), (6820, 1678, '', '', '', '0000-00-00', 6820, '', NULL), (6821, 1679, '', '', '', '0000-00-00', 6821, '', NULL), (6822, 1680, '', '', '', '0000-00-00', 6822, '', NULL), (6823, 1681, '', '', '', '0000-00-00', 6823, '', NULL), (6824, 1682, '', '', '', '0000-00-00', 6824, '', NULL), (6825, 1683, 'S/N 8861', 'Soiltest AP-170C with AP707 Graph', 'Range 1/2/5/10K', '2000-06-13', 6825, '6/13/2000', NULL), (6826, 1684, '', '', '', '0000-00-00', 6826, '', NULL), (6827, 1685, 'S/N 99041', 'Forney F-250C-LCIA', 'Ranges: 5K/250K', '2000-06-07', 6827, '6/7/2000', NULL), (6828, 1686, '', '', '', '0000-00-00', 6828, '', NULL), (6829, 1687, 'S/N EP-413', 'Freyssnet Jack SC2M-108 with Gauge #17391 - GONE', 'Range 580 Bar (47,500 lbs.)', '1998-09-17', 6829, '9/17/1998', NULL), (6830, 1688, 'S/N', 'Lane Tester (frame broke )', '', NULL, 6830, 'No cal', NULL), (6831, 1689, '', '', '', '0000-00-00', 6831, '', NULL), (6832, 1690, '', '', '', '0000-00-00', 6832, '', NULL), (6833, 1691, '', '', '', '0000-00-00', 6833, '', NULL), (6834, 1692, 'S/N VV8025', 'Bourdon Master Gauge wtih Freyssinet Jack', 'Range 573 Bar', '1999-06-19', 6834, '6/19/1999', NULL), (6835, 1693, 'S/N 85186', 'Hercules Prestress Jack', 'Range 1.5 /35K', '1997-09-03', 6835, '9/3/1997', NULL), (6836, 1694, '', '', '', '0000-00-00', 6836, '', NULL), (6837, 1695, '', '', '', '0000-00-00', 6837, '', NULL), (6838, 1696, '', '', '', '0000-00-00', 6838, '', NULL), (6839, 1697, '', 'Max pressure only goes up to 50K. May have pump problems.', '', '0000-00-00', 6839, '', NULL), (6840, 1698, '', '', '', '0000-00-00', 6840, '', NULL), (6841, 1699, '', '', '', '0000-00-00', 6841, '', NULL), (6842, 1700, '', '', '', '0000-00-00', 6842, '', NULL), (6843, 1701, '', 'Gyratory Calibration Kit:', '', '0000-00-00', 6843, '', NULL), (6844, 1702, 'S/N 73027', 'Forney QC 150DR Digital Compression Machine w/ GB (E-4)', 'Range: 3K to 300K', '2013-03-14', 6844, '3/14/2013', NULL), (6845, 1703, 'S/N Unknown', 'TECH LAB Industries Beam Scale (E-898)', 'Range: 131 lbs ', '2013-03-04', 6845, '3/4/2013', NULL), (6846, 1704, 'S/N 031200000007', 'ELE 78-0900 Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2013-03-06', 6846, '3/6/2013', NULL), (6847, 1705, 'S/N 1155-14-13682', ' w/ Single Proving Ring( Dial Ind on Ring) (E-4 & Man Specs)', 'Range: 4,500 Newtons (Shear Force)', '2013-03-06', 6847, '3/6/2013', NULL), (6848, 1706, '', '', '', '0000-00-00', 6848, '', NULL), (6849, 1707, '', '', '', '0000-00-00', 6849, '', NULL), (6850, 1708, 'S/N 11803M', 'Testmark CM-2500-LD Digital Compression Machine (Dry Plant)', 'Range: 2,500 lbs to 250,000 lbs (E-4)', '2013-07-29', 6850, '7/29/2013', NULL), (6851, 1709, '', '', '', '0000-00-00', 6851, '', NULL), (6852, 1710, '', '', '', '0000-00-00', 6852, '', NULL), (6853, 1711, '', '', '', '0000-00-00', 6853, '', NULL), (6854, 1712, '', '', '', '0000-00-00', 6854, '', NULL), (6855, 1713, '', '', '', '0000-00-00', 6855, '', NULL), (6856, 1714, '', '', '', '0000-00-00', 6856, '', NULL), (6857, 1715, '', '', '', '0000-00-00', 6857, '', NULL), (6858, 1716, '', '', '', '0000-00-00', 6858, '', NULL), (6859, 1717, '', '', '', '0000-00-00', 6859, '', NULL), (6860, 1718, '', '', '', '0000-00-00', 6860, '', NULL), (6861, 1719, 'S/N C5000', ' w/ Displacement (E-2309)', 'Range: 5 Inches', '2013-02-26', 6861, '2/26/2013', NULL), (6862, 1720, '', '', '', '0000-00-00', 6862, '', NULL), (6863, 1721, 'S/N 19150157', 'Satorious Electronic Balance Model CP12001S Scale (E-898)', 'Cap: 12,000 Grams', '2013-03-27', 6863, '3/27/2013', NULL), (6864, 1722, 'S/N 4839-02011', 'Dillon Model CS-100-2 SP Digital Compression Machine (E-4)', 'Range: 50 lbs to 10K', '2013-03-26', 6864, '3/26/2013', NULL), (6865, 1723, '', '', '', '0000-00-00', 6865, '', NULL), (6866, 1724, '', '', '', '0000-00-00', 6866, '', NULL), (6867, 1725, '', '', '', '0000-00-00', 6867, '', NULL), (6868, 1726, '', '', '', '0000-00-00', 6868, '', NULL), (6869, 1727, 'S/N 1628126E', ' Revere Load Cell Model CSP-D3-50K ACFT Yellow (E-4)', 'Range: 50K', '2008-03-31', 6869, '3/31/2008', NULL), (6870, 1728, 'S/N Unknown', 'Marshall Method Proving Ring (In House)', 'Cap: 10K', '2003-04-01', 6870, '4/1/2003', NULL), (6871, 1729, '', '', '', '0000-00-00', 6871, '', NULL), (6872, 1730, '', '', '', '0000-00-00', 6872, '', NULL), (6873, 1731, '', '', '', '0000-00-00', 6873, '', NULL), (6874, 1732, '', '', '', '0000-00-00', 6874, '', NULL), (6875, 1733, '', '', '', '0000-00-00', 6875, '', NULL), (6876, 1734, '', '', '', '0000-00-00', 6876, '', NULL), (6877, 1735, '', '', '', '0000-00-00', 6877, '', NULL), (6878, 1736, '', '', '', '0000-00-00', 6878, '', NULL), (6879, 1737, '', '', '', '0000-00-00', 6879, '', NULL), (6880, 1738, '', '', '', '0000-00-00', 6880, '', NULL), (6881, 1739, '', '', '', '0000-00-00', 6881, '', NULL), (6882, 1740, '', '', '', '0000-00-00', 6882, '', NULL), (6883, 1741, 'S/N 2', 'Mitutoyo Dial Indicator-Model 2776F (E83-00) ', 'Range: 1 inch', '2003-03-20', 6883, '3/20/2003', NULL), (6884, 1742, '', '', '', '0000-00-00', 6884, '', NULL), (6885, 1743, '', '', '', '0000-00-00', 6885, '', NULL), (6886, 1744, 'S/N 270/946.67', 'MTS 1 Machine--Model 810 (E4-02)', '55K Load Cell Model 661.22CO1', '2004-03-23', 6886, '3/23/2004', NULL), (6887, 1745, 'S/N 270/78094', ' with Range Card', 'Range: 2.5K ID#25-LC11RC02', '0000-00-00', 6887, '', NULL), (6888, 1746, '', '', '', '0000-00-00', 6888, '', NULL), (6889, 1747, '', '', '', '0000-00-00', 6889, '', NULL), (6890, 1748, '', '', '', '0000-00-00', 6890, '', NULL), (6891, 1749, '', '', '', '0000-00-00', 6891, '', NULL), (6892, 1750, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 6892, '', NULL), (6893, 1751, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 6893, '', NULL), (6894, 1752, '', '', '', '0000-00-00', 6894, '', NULL), (6895, 1753, 'S/N 401', ' with 1 load cell Model E-214 (E-4)', 'Cap: 6K', '2002-04-17', 6895, '4/17/2002', NULL), (6896, 1754, '', '', '', '0000-00-00', 6896, '', NULL), (6897, 1755, '', '', '', '0000-00-00', 6897, '', NULL), (6898, 1756, '', '', '', '0000-00-00', 6898, '', NULL), (6899, 1757, '', '', '', '0000-00-00', 6899, '', NULL), (6900, 1758, '', '', '', '0000-00-00', 6900, '', NULL), (6901, 1759, '', '', '', '0000-00-00', 6901, '', NULL), (6902, 1760, '', '', '', '0000-00-00', 6902, '', NULL), (6903, 1761, '', '', '', '0000-00-00', 6903, '', NULL), (6904, 1762, '', 'LAB CLOSED', '', '0000-00-00', 6904, '', NULL), (6905, 1763, '', '', '', '0000-00-00', 6905, '', NULL), (6906, 1764, '', 'Called June 2007 moving machine to Harrisburg, PA ', '', '0000-00-00', 6906, '', NULL), (6907, 1765, '', '', '', '0000-00-00', 6907, '', NULL), (6908, 1766, '', '', '', '0000-00-00', 6908, '', NULL), (6909, 1767, '', '', '', '0000-00-00', 6909, '', NULL), (6910, 1768, '', '', '', '0000-00-00', 6910, '', NULL), (6911, 1769, '', '', '', '0000-00-00', 6911, '', NULL), (6912, 1770, '', '', '', '0000-00-00', 6912, '', NULL), (6913, 1771, '', '', '', '0000-00-00', 6913, '', NULL), (6914, 1772, '', '', '', '0000-00-00', 6914, '', NULL), (6915, 1773, '', '', '', '0000-00-00', 6915, '', NULL), (6916, 1774, '', '', '', '0000-00-00', 6916, '', NULL), (6917, 1775, '', '', '', '0000-00-00', 6917, '', NULL), (6918, 1776, '', '', '', '0000-00-00', 6918, '', NULL), (6919, 1777, '', '', '', '0000-00-00', 6919, '', NULL), (6920, 1778, '', '', '', '0000-00-00', 6920, '', NULL), (6921, 1779, '', '', '', '0000-00-00', 6921, '', NULL), (6922, 1780, 'S/N 69103624', 'Scale, Triner Model 303', '', NULL, 6922, 'NEW', NULL), (6923, 1781, 'S/N 6525031', 'Scale, Platform Fairbanks Morse', 'Cap: 600 lbs', NULL, 6923, 'NEW', NULL), (6924, 1782, '', '', '', '0000-00-00', 6924, '', NULL), (6925, 1783, '', '', '', '0000-00-00', 6925, '', NULL), (6926, 1784, 'S/N 97929', 'Schmidt Test Hammer Type N', '', '1997-04-10', 6926, '4/10/1997', NULL), (6927, 1785, '', 'Gram Scale Ohaus Model 2610 ID #1', '', NULL, 6927, 'NEW', NULL), (6928, 1786, '', '', '', '0000-00-00', 6928, '', NULL), (6929, 1787, '', '', '', '0000-00-00', 6929, '', NULL), (6930, 1788, '', '', '', '0000-00-00', 6930, '', NULL), (6931, 1789, '', '', '', '0000-00-00', 6931, '', NULL), (6932, 1790, '', '', '', '0000-00-00', 6932, '', NULL), (6933, 1791, '', 'DO NOT USE THIS RECORD!', '', '0000-00-00', 6933, '', NULL), (6934, 1792, '', '', '', '0000-00-00', 6934, '', NULL), (6935, 1793, '', '', '', '0000-00-00', 6935, '', NULL), (6936, 1794, '', '', '', '0000-00-00', 6936, '', NULL), (6937, 1795, '', '', '', '0000-00-00', 6937, '', NULL), (6938, 1796, '', '', '', '0000-00-00', 6938, '', NULL), (6939, 1797, '', '', '', '0000-00-00', 6939, '', NULL), (6940, 1798, '', '', '', '0000-00-00', 6940, '', NULL), (6941, 1799, '', '', '', '0000-00-00', 6941, '', NULL), (6942, 1800, '', '', '', '0000-00-00', 6942, '', NULL), (6943, 1801, '', '', '', '0000-00-00', 6943, '', NULL), (6944, 1802, '', '', '', '0000-00-00', 6944, '', NULL), (6945, 1803, '', '', '', '0000-00-00', 6945, '', NULL), (6946, 1804, 'S/N ', ' w/Displacment (E-2309)', 'Range: ', NULL, 6946, 'New', NULL), (6947, 1805, '', '', '', '0000-00-00', 6947, '', NULL), (6948, 1806, '', '', '', '0000-00-00', 6948, '', NULL), (6949, 1807, '', '', '', '0000-00-00', 6949, '', NULL), (6950, 1808, '', '', '', '0000-00-00', 6950, '', NULL), (6951, 1809, '', '', '', '0000-00-00', 6951, '', NULL), (6952, 1810, 'S/N 062763649', 'CDI Dial Indicator MDL. 25001BJ (D-6027)', 'Range: 0.05 inch to 0.5 inch', '2007-03-14', 6952, '3/14/2007', NULL), (6953, 1811, 'S/N 20106056', ' w/Load Cell Mdl. PSB0004 (E-4)', 'Range: 4 lbs', '2008-03-26', 6953, '3/26/2008', NULL), (6954, 1812, '', '', '', '0000-00-00', 6954, '', NULL), (6955, 1813, '', '', '', '0000-00-00', 6955, '', NULL), (6956, 1814, '', '', '', '0000-00-00', 6956, '', NULL), (6957, 1815, '', '', '', '0000-00-00', 6957, '', NULL), (6958, 1816, '', '', '', '0000-00-00', 6958, '', NULL), (6959, 1817, 'S/N 1797', 'Pine Instrument Model AFG1A (E-4)', 'Range: ', NULL, 6959, 'New', NULL), (6960, 1818, '', '', '', '0000-00-00', 6960, '', NULL), (6961, 1819, 'S/N 23897', 'Soiltest Single Proving Ring (OOS) (E-4 & Mans Spec)', 'Range: 2,000 lbs', '2006-03-20', 6961, '3/20/2006', NULL), (6962, 1820, 'S/N 24286', 'Soiltest ELE Unconfined Single Proving Ring (E-4& Man Specs)', 'Cap: 1K', '2013-05-07', 6962, '5/7/2013', NULL), (6963, 1821, '', '', '', '0000-00-00', 6963, '', NULL), (6964, 1822, '', '', '', '0000-00-00', 6964, '', NULL), (6965, 1823, 'S/N 1941', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 11K', '2013-05-08', 6965, '5/8/2013', NULL), (6966, 1824, '', '', '', '0000-00-00', 6966, '', NULL), (6967, 1825, '', '', '', '0000-00-00', 6967, '', NULL), (6968, 1826, 'S/N S-1098/25764', 'Hogentogler Dial Indicator (D-6027)', 'Range: 1 Inch', NULL, 6968, 'New', NULL), (6969, 1827, '', '', '', '0000-00-00', 6969, '', NULL), (6970, 1828, '', '', '', '0000-00-00', 6970, '', NULL), (6971, 1829, '', '', '', '0000-00-00', 6971, '', NULL), (6972, 1830, '', '', '', '0000-00-00', 6972, '', NULL), (6973, 1831, 'S/N 123-3-615', 'ELE CBR Single Proving Ring (E-4 & ManSpec)', 'Cap: 5K', '2013-05-15', 6973, '5/15/2013', NULL), (6974, 1832, 'S/N 17046', 'Skidmore Wilhelm Mld MZ Bolt Tester (E4-2% & Man Specs)', 'Range: 100K', '2013-05-14', 6974, '5/14/2013', NULL), (6975, 1833, '', '', '', '0000-00-00', 6975, '', NULL), (6976, 1834, 'S/N 802', ' w/ Test Spring ', ' ', '2013-05-13', 6976, '5/13/2013', NULL), (6977, 1835, 'S/N 588', 'Pine Instrument AF850T Asphalt Tester (E-4 & 2%)', 'Range: 11 Kn / 22 Kn / 44 Kn ', '2012-05-15', 6977, '5/15/2012', NULL), (6978, 1836, '', '', '', '0000-00-00', 6978, '', NULL), (6979, 1837, 'S/N 11666 ', ' w/ LVDT (D-6027)', 'Range: 1 inches ', '2013-07-31', 6979, '7/31/2013', NULL), (6980, 1838, 'S/N 97021', 'Forney F-250F-CS-100-1S Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-07-31', 6980, '7/31/2013', NULL), (6981, 1839, 'S/N 11281', 'Valdine Eng L2350 Load Cell w/ Geotac DAU (Load 3 CH #7) (E-4)', 'Range: 1K', '2011-05-24', 6981, '5/24/2011', NULL), (6982, 1840, 'S/N 7771', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500 lbs', '2013-05-21', 6982, '5/21/2013', NULL), (6983, 1841, 'S/N 24600', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 1.5K', '2013-05-21', 6983, '5/21/2013', NULL), (6984, 1842, 'S/N 100/2365028', 'Trautwein Model MVFS Pressure Transducer (D-5720)', 'Range: 150 PSI ', '2013-05-20', 6984, '5/20/2013', NULL), (6985, 1843, 'S/N LP-488', 'Geotac LS3 w/ Geotac DAU (Channel 6 LVDT 2) LVDT (D-6027)', 'Range: 2 inches', '2011-05-23', 6985, '5/23/2011', NULL), (6986, 1844, 'S/N 027788', 'Inteface Mdl.SSM-2000 Load Cell w/Geotac DAU (Load 1 CH #1) ', 'Range: 1K (E-4)', '2012-05-21', 6986, '5/21/2012', NULL), (6987, 1845, 'S/N 104', 'Trautwein MVFS w/ DP-25 Pressure Transducer (D-5720)', 'Range: 150 PSI', '2013-05-20', 6987, '5/20/2013', NULL), (6988, 1846, '', '', '', '0000-00-00', 6988, '', NULL), (6989, 1847, 'S/N 131', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K', '2013-05-21', 6989, '5/21/2013', NULL), (6990, 1848, ' ', '', '', '0000-00-00', 6990, '', NULL), (6991, 1849, '', '', '', '0000-00-00', 6991, '', NULL), (6992, 1850, '', '', '', '0000-00-00', 6992, '', NULL), (6993, 1851, '', '', '', '0000-00-00', 6993, '', NULL), (6994, 1852, '', '', '', '0000-00-00', 6994, '', NULL), (6995, 1853, '', '', '', '0000-00-00', 6995, '', NULL), (6996, 1854, '', '', '', '0000-00-00', 6996, '', NULL), (6997, 1855, '', '', '', '0000-00-00', 6997, '', NULL), (6998, 1856, '', '', '', '0000-00-00', 6998, '', NULL), (6999, 1857, '', '', '', '0000-00-00', 6999, '', NULL), (7000, 1858, '', '', '', '0000-00-00', 7000, '', NULL), (7001, 1859, '', '', '', '0000-00-00', 7001, '', NULL), (7002, 1860, '', '', '', '0000-00-00', 7002, '', NULL), (7003, 1861, '', '', '', '0000-00-00', 7003, '', NULL), (7004, 1862, '', '', '', '0000-00-00', 7004, '', NULL), (7005, 1863, '', ' with 2 Linear Displacement Transducers', '', '0000-00-00', 7005, '', NULL), (7006, 1864, 'S/N 1140 Display', '', '', '0000-00-00', 7006, '', NULL), (7007, 1865, 'S/N 78094', 'Range Card', 'Cap: 2.5K', '1995-12-31', 7007, '12/31/1995', NULL), (7008, 1866, 'S/N 205865', 'Viatran Transducer: Item #129 SSM - Shot Cylinder Head', 'Range 7500 psi', '1996-05-08', 7008, '5/8/1996', NULL), (7009, 1867, 'S/N 3', 'Gauge', 'Range 4000 psi', '1996-05-08', 7009, '5/8/1996', NULL), (7010, 1868, 'S/N 9', 'Gauge', 'Range 4000 psi', '1996-05-08', 7010, '5/8/1996', NULL), (7011, 1869, 'S/N 1797', ' with Load Cell', 'Range 110K ID#25-LC13', '0000-00-00', 7011, '', NULL), (7012, 1870, 'S/N 1985', 'Range Card #2 (Tag# 25-LC09RC02)', 'Range 25 Kip', '1998-05-27', 7012, '5/27/1998', NULL), (7013, 1871, 'S/N 71503', 'Range Card #2 (Tag# 25-LC10RC02)', 'Range 2.5 Kip', '1998-05-27', 7013, '5/27/1998', NULL), (7014, 1872, 'S/N 191', 'Extensometer 632.31E-24 (Tag# 25-EXT09)', 'Range +.2, -.1 inch', '1998-05-28', 7014, '5/28/1998', NULL), (7015, 1873, '', '', '', '0000-00-00', 7015, '', NULL), (7016, 1874, '', '', '', '0000-00-00', 7016, '', NULL), (7017, 1875, '', '', '', '0000-00-00', 7017, '', NULL), (7018, 1876, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 7018, '', NULL), (7019, 1877, '', ' SPECIAL TRIP', '', '0000-00-00', 7019, '', NULL), (7020, 1878, '', '', '', '0000-00-00', 7020, '', NULL), (7021, 1879, '', '', '', '0000-00-00', 7021, '', NULL), (7022, 1880, '', '', '', '0000-00-00', 7022, '', NULL), (7023, 1881, '', '', '', '0000-00-00', 7023, '', NULL), (7024, 1882, 'S/N 85187', 'Hercules Prestress Jack Model HSJ', 'Range 3K / 46K', '1998-05-05', 7024, '5/5/1998', NULL), (7025, 1883, '', '', '', '0000-00-00', 7025, '', NULL), (7026, 1884, '', '', '', '0000-00-00', 7026, '', NULL), (7027, 1885, '', '', '', '0000-00-00', 7027, '', NULL), (7028, 1886, '', '', '', '0000-00-00', 7028, '', NULL), (7029, 1887, '', '', '', '0000-00-00', 7029, '', NULL), (7030, 1888, '', '', '', '0000-00-00', 7030, '', NULL), (7031, 1889, '', '', '', '0000-00-00', 7031, '', NULL), (7032, 1890, '', '', '', '0000-00-00', 7032, '', NULL), (7033, 1891, 'S/N 60PSI', 'Conbel Pressure Gauge (in house)', 'Range 60 psi', '1995-05-23', 7033, '5/23/1995', NULL), (7034, 1892, '', '', '', '0000-00-00', 7034, '', NULL), (7035, 1893, '', '', '', '0000-00-00', 7035, '', NULL), (7036, 1894, '', '', '', '0000-00-00', 7036, '', NULL), (7037, 1895, '', '', '', '0000-00-00', 7037, '', NULL), (7038, 1896, 'S/N 10-51-85', 'Soiltest Single Proving Ring', 'Cap: 10,000#', '1995-07-25', 7038, '7/25/1995', NULL), (7039, 1897, '', '', '', '0000-00-00', 7039, '', NULL), (7040, 1898, '', '', '', '0000-00-00', 7040, '', NULL), (7041, 1899, '', '', '', '0000-00-00', 7041, '', NULL), (7042, 1900, '', '', '', '0000-00-00', 7042, '', NULL), (7043, 1901, '', '', '', '0000-00-00', 7043, '', NULL), (7044, 1902, '', '', '', '0000-00-00', 7044, '', NULL), (7045, 1903, '', '', '', '0000-00-00', 7045, '', NULL), (7046, 1904, '', '', '', '0000-00-00', 7046, '', NULL), (7047, 1905, 'S/N 175', 'Soiltest Single Proving Ring (OOS) (E-4 & Man Specs)', 'Cap: 1K', '2007-05-29', 7047, '5/29/2007', NULL), (7048, 1906, 'S/N 1650', 'SINTECH 10/D w/Main Cell MTS MDL 3187-104 (E-4)', 'Range: 100 lbs to 10,000 lbs ', '2008-05-29', 7048, '5/29/2008', NULL), (7049, 1907, '', '', '', '0000-00-00', 7049, '', NULL), (7050, 1908, '', '', '', '0000-00-00', 7050, '', NULL), (7051, 1909, '', '', '', '0000-00-00', 7051, '', NULL), (7052, 1910, '', '', '', '0000-00-00', 7052, '', NULL), (7053, 1911, '', '', '', '0000-00-00', 7053, '', NULL), (7054, 1912, 'S/N 90001043', 'Com-Ten Mdl. 951KRC2000 Universal Testing Machine (E-4) ', 'Range: 20 lbs to 400 lbs', '2007-05-09', 7054, '5/9/2007', NULL), (7055, 1913, '', '', '', '0000-00-00', 7055, '', NULL), (7056, 1914, 'S/N 10200156', 'Asheroft Pressure Transducer Mdl. K17M0242F2150 (D-5720)', 'Range: 150 psi', '2006-08-01', 7056, '8/1/2006', NULL), (7057, 1915, '', '', '', '0000-00-00', 7057, '', NULL), (7058, 1916, 'S/N 19174516', 'AccuLab SV1-50C Scale (E-898)', 'Range: 11 lbs to 110 lbs ', '2008-06-05', 7058, '6/5/2008', NULL), (7059, 1917, '', '', '', '0000-00-00', 7059, '', NULL), (7060, 1918, '', '', '', '0000-00-00', 7060, '', NULL), (7061, 1919, '', '', '', '0000-00-00', 7061, '', NULL), (7062, 1920, '', '', '', '0000-00-00', 7062, '', NULL), (7063, 1921, '', '', '', '0000-00-00', 7063, '', NULL), (7064, 1922, '', '', '', '0000-00-00', 7064, '', NULL), (7065, 1923, '', '', '', '0000-00-00', 7065, '', NULL), (7066, 1924, 'S/N 1003', 'Hogentogler Mdl. G 3103 Dial Indicator (D-6027)', 'Range: 1 Inch', '2010-05-12', 7066, '5/12/2010', NULL), (7067, 1925, 'S/N 5962', 'Soiltest Double Proving Ring (E-4 & Man. Specs)', 'Range: 500 lbs', '2005-12-19', 7067, '12/19/2005', NULL), (7068, 1926, '', '', '', '0000-00-00', 7068, '', NULL), (7069, 1927, '', '', '', '0000-00-00', 7069, '', NULL), (7070, 1928, '', '', '', '0000-00-00', 7070, '', NULL), (7071, 1929, '', '', '', '0000-00-00', 7071, '', NULL), (7072, 1930, '', '', '', '0000-00-00', 7072, '', NULL), (7073, 1931, '', ' (Frame is off a CT-712 S/N 207)', '', '0000-00-00', 7073, '', NULL), (7074, 1932, '', '', '', '0000-00-00', 7074, '', NULL), (7075, 1933, '', '', '', '0000-00-00', 7075, '', NULL), (7076, 1934, '', '', '', '0000-00-00', 7076, '', NULL), (7077, 1935, '', 'with Extra Gauge ', 'Range: 40K to 400K', '2007-05-11', 7077, '5/11/2007', NULL), (7078, 1936, '', '', '', '0000-00-00', 7078, '', NULL), (7079, 1937, '', '', '', '0000-00-00', 7079, '', NULL), (7080, 1938, '', '', '', '0000-00-00', 7080, '', NULL), (7081, 1939, '', '', '', '0000-00-00', 7081, '', NULL), (7082, 1940, '', '', '', '0000-00-00', 7082, '', NULL), (7083, 1941, '', '', '', '0000-00-00', 7083, '', NULL), (7084, 1942, '', '', '', '0000-00-00', 7084, '', NULL), (7085, 1943, '', '', '', '0000-00-00', 7085, '', NULL), (7086, 1944, '', '', '', '0000-00-00', 7086, '', NULL), (7087, 1945, '', '', '', '0000-00-00', 7087, '', NULL), (7088, 1946, '', '', '', '0000-00-00', 7088, '', NULL), (7089, 1947, '', '', '', '0000-00-00', 7089, '', NULL), (7090, 1948, '', '', '', '0000-00-00', 7090, '', NULL), (7091, 1949, '', '', '', '0000-00-00', 7091, '', NULL), (7092, 1950, '', '', '', '0000-00-00', 7092, '', NULL), (7093, 1951, '', '', '', '0000-00-00', 7093, '', NULL), (7094, 1952, '', '', '', '0000-00-00', 7094, '', NULL), (7095, 1953, '', '', '', '0000-00-00', 7095, '', NULL), (7096, 1954, '', '', '', '0000-00-00', 7096, '', NULL), (7097, 1955, '', '', '', '0000-00-00', 7097, '', NULL), (7098, 1956, 'S/N', 'Forney Press-Aire Meter Gauge', 'Range:', NULL, 7098, 'New', NULL), (7099, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 7099, 'New', NULL), (7100, 1958, 'S/N 2467958', 'Extra Gauge for Post Tension Jack--Gauge B', '', '2003-09-19', 7100, '9/19/2003', NULL), (7101, 1959, 'S/N 1010', 'Lang Stressing Jack', 'Range: 20,000 lbs (10,000 psi)', '2003-11-08', 7101, '11/8/2003', NULL), (7102, 1960, 'S/N 423', 'Geo Durham E405 Digital Ch 1 (E-405)', 'Range: 2 Inches', '2005-11-22', 7102, '11/22/2005', NULL), (7103, 1961, '', '', '', '0000-00-00', 7103, '', NULL), (7104, 1962, '', '', '', '0000-00-00', 7104, '', NULL), (7105, 1963, '', '', '', '0000-00-00', 7105, '', NULL), (7106, 1964, '', '', '', '0000-00-00', 7106, '', NULL), (7107, 1965, '', '', '', '0000-00-00', 7107, '', NULL), (7108, 1966, '', '', '', '0000-00-00', 7108, '', NULL), (7109, 1967, '', '', '', '0000-00-00', 7109, '', NULL), (7110, 1968, '', '', '', '0000-00-00', 7110, '', NULL), (7111, 1969, '', '', '', '0000-00-00', 7111, '', NULL), (7112, 1970, '', '', '', '0000-00-00', 7112, '', NULL), (7113, 1971, 'S/N D98427', 'ELE Soiltest Hammer-Model CT-320A', ' ', '2002-01-09', 7113, '1/9/2002', NULL), (7114, 1972, 'S/N 070999', 'Geotest Multi Loader Model S5840 (E-4)', 'Range: 200 lbs. to 10,000 lbs.', '2002-11-19', 7114, '11/19/2002', NULL), (7115, 1973, '', '', '', '0000-00-00', 7115, '', NULL), (7116, 1974, '', '', '', '0000-00-00', 7116, '', NULL), (7117, 1975, '', '', '', '0000-00-00', 7117, '', NULL), (7118, 1976, '', '', '', '0000-00-00', 7118, '', NULL), (7119, 1977, 'S/N 10993', 'Zwick Extensometer', 'Range 50mm', '0000-00-00', 7119, '', NULL), (7120, 1978, '', '', '', '0000-00-00', 7120, '', NULL), (7121, 1979, 'S/N 41973', 'Bynum Prestress Jack MPU-3 ', 'Range: 5K to 35K (E-4 & PCI)', '2005-11-15', 7121, '11/15/2005', NULL), (7122, 1980, '', '', '', '0000-00-00', 7122, '', NULL), (7123, 1981, '', '', '', '0000-00-00', 7123, '', NULL), (7124, 1982, '', '', '', '0000-00-00', 7124, '', NULL), (7125, 1983, '', '', '', '0000-00-00', 7125, '', NULL), (7126, 1984, '', '', '', '0000-00-00', 7126, '', NULL), (7127, 1985, 'S/N 03074', 'Kofer Single Proving Ring (E-4 & Man Specs)', 'Range: 30KN', '2005-12-13', 7127, '12/13/2005', NULL), (7128, 1986, '2 BLUE', 'Hercules Prestress Jack (E-4 & PCI)', 'Range: 4K/35K', '2006-12-05', 7128, '12/5/2006', NULL), (7129, 1987, '', ' w/Gauge ', 'Range: 200K', '2007-12-10', 7129, '12/10/2007', NULL), (7130, 1988, 'S/N 1907AH35325', 'Power Team Post Tension Jack (E-4 & PCI)', 'Range: 35K (8150 PSI)', '2008-05-21', 7130, '5/21/2008', NULL), (7131, 1989, 'S/N 47333', 'Tinius Olsen--Super L (E-4)', 'Range: 60K / 300K', '2005-05-16', 7131, '5/16/2005', NULL), (7132, 1990, 'S/N 91271', 'Hercules Prestress Jack (E-4 & PCI)', 'Range: 6K / 35K', '2008-12-10', 7132, '12/10/2008', NULL), (7133, 1991, '', '', '', '0000-00-00', 7133, '', NULL), (7134, 1992, '', '', '', '0000-00-00', 7134, '', NULL), (7135, 1993, '', '', '', '0000-00-00', 7135, '', NULL), (7136, 1994, '', '', '', '0000-00-00', 7136, '', NULL), (7137, 1995, '', '', '', '0000-00-00', 7137, '', NULL), (7138, 1996, '', '', '', '0000-00-00', 7138, '', NULL), (7139, 1997, 'S/N 100-0141', 'Humboldt Marshall Single Proving Ring (OOS)', 'Cap: 10K Plant #7 (E-4 & Man Specs)', '2007-12-08', 7139, '12/8/2007', NULL), (7140, 1998, '', '', '', '0000-00-00', 7140, '', NULL), (7141, 1999, '', '', '', '0000-00-00', 7141, '', NULL), (7142, 2000, 'S/N 1143423', ' w/Total Comp Load Cell (E-4)', 'Range: 500 lbs ', '2011-10-06', 7142, '10/6/2011', NULL), (7143, 2001, '', '', '', '0000-00-00', 7143, '', NULL), (7144, 2002, '', '', '', '0000-00-00', 7144, '', NULL), (7145, 2003, '', '', '', '0000-00-00', 7145, '', NULL), (7146, 2004, '', '', '', '0000-00-00', 7146, '', NULL), (7147, 2005, 'S/N M-1686', 'Wabash 250 Ton Press PRE05 (E-4 & 2%)', 'Range: 250 ton', '2012-10-18', 7147, '10/18/2012', NULL), (7148, 2006, '', '', '', '0000-00-00', 7148, '', NULL), (7149, 2007, '', '', '', '0000-00-00', 7149, '', NULL), (7150, 2008, 'S/N 79', 'Rogers Multi Strand (E-4 & Man Specs)', 'Range: 6,600 psi (995,259 lb.)', '2012-10-16', 7150, '10/16/2012', NULL), (7151, 2009, 'S/N 10015', ' w/ 10K Load Cell T & C (Compression Only) (E-4) ', 'Range: 500 lbs / 1K / 2K / 5K / 10K', '2011-10-18', 7151, '10/18/2011', NULL), (7152, 2010, '', '', '', '0000-00-00', 7152, '', NULL), (7153, 2011, '', '', '', '0000-00-00', 7153, '', NULL), (7154, 2012, '', '', '', '0000-00-00', 7154, '', NULL), (7155, 2013, '', '', '', '0000-00-00', 7155, '', NULL), (7156, 2014, '', '', '**Calibrate From 25K to 500K**', '0000-00-00', 7156, '', NULL), (7157, 2015, 'S/N', 'Vacuum Gauge (E-4)', 'Range: 15 in Hg', NULL, 7157, 'New', NULL), (7158, 2016, '', '', '', '0000-00-00', 7158, '', NULL), (7159, 2017, '', '', '', '0000-00-00', 7159, '', NULL), (7160, 2018, '', '', '', '0000-00-00', 7160, '', NULL), (7161, 2019, '', '', '', '0000-00-00', 7161, '', NULL), (7162, 2020, '', '', '', '0000-00-00', 7162, '', NULL), (7163, 2021, 'S/N 111818', 'Tinius Olsen Air-O-Brinell Tester (E-4)', 'Range 3000Kg (6614 lbs.)', '2002-10-31', 7163, '10/31/2002', NULL), (7164, 2022, '', '', '', '0000-00-00', 7164, '', NULL), (7165, 2023, '', '', '', '0000-00-00', 7165, '', NULL), (7166, 2024, '', '', '', '0000-00-00', 7166, '', NULL), (7167, 2025, '', '', '', '0000-00-00', 7167, '', NULL), (7168, 2026, '', '', '', '0000-00-00', 7168, '', NULL), (7169, 2027, '', '', '', '0000-00-00', 7169, '', NULL), (7170, 2028, '', '', '', '0000-00-00', 7170, '', NULL), (7171, 2029, '', '', '', '0000-00-00', 7171, '', NULL), (7172, 2030, '', '', '', '0000-00-00', 7172, '', NULL), (7173, 2031, '', '', '', '0000-00-00', 7173, '', NULL), (7174, 2032, '', '', '', '0000-00-00', 7174, '', NULL), (7175, 2033, '', '', '', '0000-00-00', 7175, '', NULL), (7176, 2034, 'S/N 98-547', 'Hercules Prestress Jack Model HSJ (E-4 & PCI)', 'Range 3K / 45K ', '2000-07-10', 7176, '7/10/2000', NULL), (7177, 2035, '', '', '', '0000-00-00', 7177, '', NULL), (7178, 2036, '', '', '', '0000-00-00', 7178, '', NULL), (7179, 2037, '', '', '', '0000-00-00', 7179, '', NULL), (7180, 2038, '', '', '', '0000-00-00', 7180, '', NULL), (7181, 2039, '', '', '', '0000-00-00', 7181, '', NULL), (7182, 2040, '', '', '', '0000-00-00', 7182, '', NULL), (7183, 2041, '', '', '', '0000-00-00', 7183, '', NULL), (7184, 2042, '', '', '', '0000-00-00', 7184, '', NULL), (7185, 2043, '', '', '', '0000-00-00', 7185, '', NULL), (7186, 2044, '', '', '', '0000-00-00', 7186, '', NULL), (7187, 2045, '', '', '', '0000-00-00', 7187, '', NULL), (7188, 2046, '', '', '', '0000-00-00', 7188, '', NULL), (7189, 2047, '', '', '', '0000-00-00', 7189, '', NULL), (7190, 2048, '', '', '', '0000-00-00', 7190, '', NULL), (7191, 2049, '', '', '', '0000-00-00', 7191, '', NULL), (7192, 2050, 'S/N 940307b', 'Strainsense Extensometer (E-83)', 'Range .02\"', '2002-10-21', 7192, '10/21/2002', NULL), (7193, 2051, 'S/N APD 912850', 'Dillon Dynamometer (E-4) ', 'Range 20K', '1998-11-11', 7193, '11/11/1998', NULL), (7194, 2052, '', '', '', '0000-00-00', 7194, '', NULL), (7195, 2053, 'S/N 3543', 'Skidmore Wilhelm Bolt Tester Model R (E-4)', 'Range 110K', '1998-11-11', 7195, '11/11/1998', NULL), (7196, 2054, '', '', '', '0000-00-00', 7196, '', NULL), (7197, 2055, '', '', '', '0000-00-00', 7197, '', NULL), (7198, 2056, '', '', '', '0000-00-00', 7198, '', NULL), (7199, 2057, 'S/N 371636', 'Dial Gauge Mitutoyo (OUT OF SERVICE) (D-6027)', 'Range: .5 inch', '2004-10-25', 7199, '10/25/2004', NULL), (7200, 2058, 'S/N 248', 'Geo Engineering Direct Shear Box Mdl. LG112 (E-4)', 'Range: 500K', '2007-10-24', 7200, '10/24/2007', NULL), (7201, 2059, '', '', '', '0000-00-00', 7201, '', NULL), (7202, 2060, '', '', '', '0000-00-00', 7202, '', NULL), (7203, 2061, 'S/N 02121', 'Forney F025EX-F-DR500 Digital Compression Machine', 'Range: 2,500 lbs to 250,000 lbs', '2003-10-21', 7203, '10/21/2003', NULL), (7204, 2062, '', '', '', '0000-00-00', 7204, '', NULL), (7205, 2063, '', '', '', '0000-00-00', 7205, '', NULL), (7206, 2064, '', '', '', '0000-00-00', 7206, '', NULL), (7207, 2065, '', '', '', '0000-00-00', 7207, '', NULL), (7208, 2066, 'S/N 786', 'Humboldt H-4454 Single Proving Ring (MOVED)(E-4 & Man Specs)', 'Range: 1,100 lbs ', '2007-10-10', 7208, '10/10/2007', NULL), (7209, 2067, '', '', '', '0000-00-00', 7209, '', NULL), (7210, 2068, '', '', '', '0000-00-00', 7210, '', NULL), (7211, 2069, '', 'Cylinder Frame/Beam Frame', '', '0000-00-00', 7211, '', NULL), (7212, 2070, '', '', '', '0000-00-00', 7212, '', NULL), (7213, 2071, '', '', '', '0000-00-00', 7213, '', NULL), (7214, 2072, 'S/N M077052', ' Gems Mdl 2200AGA 6001 A20A Pressure Transducer (D-5720)', 'Range: 600 KPA ', '2006-10-24', 7214, '10/24/2006', NULL), (7215, 2073, 'S/N 18385', 'RDP Electronics LVDT RADIAL 3 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 7215, '10/24/2006', NULL), (7216, 2074, 'S/N TW2244', 'SPX Powerteam Post Tension Jack Mdl. PE55 4 w/Gauges #222, #225, ', 'Range: 35K (E-4 & PCI) & #231', '2008-01-31', 7216, '1/31/2008', NULL), (7217, 2075, 'S/N STR-E2', 'Hercules Prestress Jack--Model HSJ (OOS) (E-4 & PCI) ', 'Range: 3,000 lbs. to 47,000 lbs.', '2005-06-21', 7217, '6/21/2005', NULL), (7218, 2076, '', '', '', '0000-00-00', 7218, '', NULL), (7219, 2077, '', '', '', '0000-00-00', 7219, '', NULL), (7220, 2078, 'S/N 17557', 'Soiltest Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-10-22', 7220, '10/22/2012', NULL), (7221, 2079, 'S/N 1648', 'Forney N-20 Hammer (C-805)', 'Range: 78 to 82', '2012-10-23', 7221, '10/23/2012', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (7222, 2080, 'S/N MG0850', 'GEOJAC LVDT (D-6027)', 'Range: 0.8 inch', '2012-10-23', 7222, '10/23/2012', NULL), (7223, 2081, '', '', '', '0000-00-00', 7223, '', NULL), (7224, 2082, '', '', '', '0000-00-00', 7224, '', NULL), (7225, 2083, 'S/N 223', 'McDaniel Gauge (D-5720)', 'Range: 10,000 PSI ', '2007-05-16', 7225, '5/16/2007', NULL), (7226, 2084, 'S/N 95520 NC#20', 'HCS Hydraulic Load Cell (E-4 2% ManSpecs)', 'Range: 60K', '2013-06-13', 7226, '6/13/2013', NULL), (7227, 2085, '', '', '', '0000-00-00', 7227, '', NULL), (7228, 2086, 'S/N 433066A', ' w/ T & C Load Cell (E-4)', 'Range: 50 lbs ', '2013-09-04', 7228, '9/4/2013', NULL), (7229, 2087, ' ', '', ' ', '0000-00-00', 7229, '', NULL), (7230, 2088, '', '', '', '0000-00-00', 7230, '', NULL), (7231, 2089, 'S/N 586-44979', 'Acroteck Mdl. MDX-8A Load Cell w/ Digital Indicator (E-4)', 'Range: 50K', '2013-09-04', 7231, '9/4/2013', NULL), (7232, 2090, 'S/N 22879', 'Soiltest Double Proving Ring (E-4 & Man Specs)', 'Cap: 500 lbs', '2012-09-06', 7232, '9/6/2012', NULL), (7233, 2091, '', '', '', '0000-00-00', 7233, '', NULL), (7234, 2092, 'S/N 06/188038', ' w/Paul Prestress Jack 3/8 Inch Ram - Channel 2 ', 'Range:13.5 KN/89 KN (E-4 & PCI & 2%) ', '2013-09-03', 7234, '9/3/2013', NULL), (7235, 2093, '', '', '', '0000-00-00', 7235, '', NULL), (7236, 2094, 'S/N 990301', 'Hamilton Simplex Prestress Jack (E-4 & PCI)', 'Range: 3K / 37K ', '2013-09-10', 7236, '9/10/2013', NULL), (7237, 2095, '', '', '', '0000-00-00', 7237, '', NULL), (7238, 2096, 'S/N 19104', ' w/ Beam Frame Channel #1 (E-4)', 'Range: 20K ', '2013-09-24', 7238, '9/24/2013', NULL), (7239, 2097, '', '', '', '0000-00-00', 7239, '', NULL), (7240, 2098, 'S/N 53118-1', 'ELE Beam Breaker (E-4)', 'Range: 11K', '2013-09-23', 7240, '9/23/2013', NULL), (7241, 2099, '', '', '', '0000-00-00', 7241, '', NULL), (7242, 2100, '', '', '', '0000-00-00', 7242, '', NULL), (7243, 2101, '', '', '', '0000-00-00', 7243, '', NULL), (7244, 2102, '', '', '', '0000-00-00', 7244, '', NULL), (7245, 2103, '', '', '', '0000-00-00', 7245, '', NULL), (7246, 2104, '', '', '', '0000-00-00', 7246, '', NULL), (7247, 2105, '', '', '', '0000-00-00', 7247, '', NULL), (7248, 2106, '', '', '', '0000-00-00', 7248, '', NULL), (7249, 2107, '', '', '', '0000-00-00', 7249, '', NULL), (7250, 2108, '', '', '', '0000-00-00', 7250, '', NULL), (7251, 2109, 'S/N 49250', 'Baldwin/Satec 90 Universal Testing Machine', 'Range 5/24/60/120K', '1996-08-06', 7251, '8/6/1996', NULL), (7252, 2110, '', '', '', '0000-00-00', 7252, '', NULL), (7253, 2111, '', '', '', '0000-00-00', 7253, '', NULL), (7254, 2112, '', '', '', '0000-00-00', 7254, '', NULL), (7255, 2113, '', '', '', '0000-00-00', 7255, '', NULL), (7256, 2114, '', '', '', '0000-00-00', 7256, '', NULL), (7257, 2115, '', '', '', '0000-00-00', 7257, '', NULL), (7258, 2116, 'S/N E-79766', 'Epsilon Extensometer Model 3542 (E-83)', 'Range: 1 inch', '2000-09-11', 7258, '9/11/2000', NULL), (7259, 2117, '', '', '', '0000-00-00', 7259, '', NULL), (7260, 2118, '', '', '', '0000-00-00', 7260, '', NULL), (7261, 2119, '', '', '', '0000-00-00', 7261, '', NULL), (7262, 2120, '', '', '', '0000-00-00', 7262, '', NULL), (7263, 2121, '', '', '', '0000-00-00', 7263, '', NULL), (7264, 2122, '', '', '', '0000-00-00', 7264, '', NULL), (7265, 2123, '', '', '', '0000-00-00', 7265, '', NULL), (7266, 2124, '', '', '', '0000-00-00', 7266, '', NULL), (7267, 2125, '', '', '', '0000-00-00', 7267, '', NULL), (7268, 2126, 'S/N 142', 'Humboldt Peneometer Model H4133', 'Range', '1998-09-09', 7268, '9/9/1998', NULL), (7269, 2127, '', '', '', '0000-00-00', 7269, '', NULL), (7270, 2128, 'S/N 9701', 'Soiltest Versa Load T-903 (E-4)', 'Load Cell: 2K', '2001-09-07', 7270, '9/7/2001', NULL), (7271, 2129, '', '', '', '0000-00-00', 7271, '', NULL), (7272, 2130, '', '', '', '0000-00-00', 7272, '', NULL), (7273, 2131, '', '', '', '0000-00-00', 7273, '', NULL), (7274, 2132, '', '', '', '0000-00-00', 7274, '', NULL), (7275, 2133, '', '', '', '0000-00-00', 7275, '', NULL), (7276, 2134, '', '', '', '0000-00-00', 7276, '', NULL), (7277, 2135, '', '', '', '0000-00-00', 7277, '', NULL), (7278, 2136, '', '', '', '0000-00-00', 7278, '', NULL), (7279, 2137, 'S/N 5209', 'Skidmore Testing machine Model K', 'Range 225K', '1996-03-20', 7279, '3/20/1996', NULL), (7280, 2138, '', '', '', '0000-00-00', 7280, '', NULL), (7281, 2139, '', '', '', '0000-00-00', 7281, '', NULL), (7282, 2140, '', '', '', '0000-00-00', 7282, '', NULL), (7283, 2141, '', '', '', '0000-00-00', 7283, '', NULL), (7284, 2142, '', '', '', '0000-00-00', 7284, '', NULL), (7285, 2143, 'S/N', 'Satec Extensometer (E-83)', 'Range: ', NULL, 7285, 'New', NULL), (7286, 2144, '', '', '', '0000-00-00', 7286, '', NULL), (7287, 2145, '', '', '', '0000-00-00', 7287, '', NULL), (7288, 2146, '', '', '', '0000-00-00', 7288, '', NULL), (7289, 2147, 'S/N E-115-45', 'Tovey FR 20-25K B0000 Digital Compression Machine (E-4)', 'Range: 20K', '2006-09-06', 7289, '9/6/2006', NULL), (7290, 2148, 'S/N 0001', 'Hogentogler Single Proving Ring (Out of Service)', 'Cap: 2000#', '2005-09-14', 7290, '9/14/2005', NULL), (7291, 2149, 'S/N 476274', 'Druck Pressure Transducer System', 'Cap: 275 psi', '0000-00-00', 7291, '', NULL), (7292, 2150, 'S/N B44210', ' w/ Vertical Force 500 lb (E-4)', 'Range: 150 lbs to 1,500 lbs,1/8 to 22 TSF ', '2006-09-12', 7292, '9/12/2006', NULL), (7293, 2151, '', '', '', '0000-00-00', 7293, '', NULL), (7294, 2152, '', '', '', '0000-00-00', 7294, '', NULL), (7295, 2153, 'S/N 82130', 'Forney FT-40 DR Compression Machine (MOVED) (E-4)', 'Range: 30K and 250K', '2005-08-26', 7295, '8/26/2005', NULL), (7296, 2154, '', '', '', '0000-00-00', 7296, '', NULL), (7297, 2155, '', '', '', '0000-00-00', 7297, '', NULL), (7298, 2156, '', '', '', '0000-00-00', 7298, '', NULL), (7299, 2157, '', '', '', '0000-00-00', 7299, '', NULL), (7300, 2158, '', '', '', '0000-00-00', 7300, '', NULL), (7301, 2159, '', '', '', '0000-00-00', 7301, '', NULL), (7302, 2160, 'S/N 080793985', 'Humboldt Mdl. BG2600-0-16001 Dial Indicator (D-6027)', 'Range: 0.6 inch (OOS)', '2009-08-26', 7302, '8/26/2009', NULL), (7303, 2161, '', '', '', '0000-00-00', 7303, '', NULL), (7304, 2162, '', '', '', '0000-00-00', 7304, '', NULL), (7305, 2163, '', '', '', '0000-00-00', 7305, '', NULL), (7306, 2164, '', '', '', '0000-00-00', 7306, '', NULL), (7307, 2165, '', '', '', '0000-00-00', 7307, '', NULL), (7308, 2166, '', '', '', '0000-00-00', 7308, '', NULL), (7309, 2167, '', '', '', '0000-00-00', 7309, '', NULL), (7310, 2168, '', '', '', '0000-00-00', 7310, '', NULL), (7311, 2169, '', '', '', '0000-00-00', 7311, '', NULL), (7312, 2170, '', '', '', '0000-00-00', 7312, '', NULL), (7313, 2171, '', '', '', '0000-00-00', 7313, '', NULL), (7314, 2172, '', '', '', '0000-00-00', 7314, '', NULL), (7315, 2173, '', '', '', '0000-00-00', 7315, '', NULL), (7316, 2174, '', '', '', '0000-00-00', 7316, '', NULL), (7317, 2175, '', '', '', '0000-00-00', 7317, '', NULL), (7318, 2176, '', '', '', '0000-00-00', 7318, '', NULL), (7319, 2177, '', '', '', '0000-00-00', 7319, '', NULL), (7320, 2178, '', '', '', '0000-00-00', 7320, '', NULL), (7321, 2179, '', '', '', '0000-00-00', 7321, '', NULL), (7322, 2180, '', '', '', '0000-00-00', 7322, '', NULL), (7323, 2181, '', '', '', '0000-00-00', 7323, '', NULL), (7324, 2182, '', '', '', '0000-00-00', 7324, '', NULL), (7325, 2183, '', '', '', '0000-00-00', 7325, '', NULL), (7326, 2184, '', '', '', '0000-00-00', 7326, '', NULL), (7327, 2185, '', '', '', '0000-00-00', 7327, '', NULL), (7328, 2186, '', '', '', '0000-00-00', 7328, '', NULL), (7329, 2187, '', '', '', '0000-00-00', 7329, '', NULL), (7330, 2188, '', '', '', '0000-00-00', 7330, '', NULL), (7331, 2189, '', '', '', '0000-00-00', 7331, '', NULL), (7332, 2190, '', '', '', '0000-00-00', 7332, '', NULL), (7333, 2191, '', '', '', '0000-00-00', 7333, '', NULL), (7334, 2192, '', '', '', '0000-00-00', 7334, '', NULL), (7335, 2193, '', '', '', '0000-00-00', 7335, '', NULL), (7336, 2194, '', '', '', '0000-00-00', 7336, '', NULL), (7337, 2195, '', '', '', '0000-00-00', 7337, '', NULL), (7338, 2196, 'S/N 0518105/4', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 7338, '8/27/2013', NULL), (7339, 2197, 'S/N S-2104', 'Karol Warner Pore Pressure (Destroyed) (D-5720)', 'Range: 90 psi', '2006-02-13', 7339, '2/13/2006', NULL), (7340, 2198, '', '', '', '0000-00-00', 7340, '', NULL), (7341, 2199, '', '', '', '0000-00-00', 7341, '', NULL), (7342, 2200, '', '', '', '0000-00-00', 7342, '', NULL), (7343, 2201, '', '', '', '0000-00-00', 7343, '', NULL), (7344, 2202, 'S/N U-03', 'Simplex Model RC-202 Ram w/ hand pump (E-4 & Man Specs)', 'Range: 24K (4,650 PSI)', '2009-02-16', 7344, '2/16/2009', NULL), (7345, 2203, '', '', '', '0000-00-00', 7345, '', NULL), (7346, 2204, 'S/N 0492', 'Humboldt H-4454 CBR Proving Ring (E-4 & Man Specs)', 'Range: 10K ', NULL, 7346, 'New', NULL), (7347, 2205, '', ' w/ Vertical Force Load Cell (E-4)', 'Range: 1K', NULL, 7347, 'New', NULL), (7348, 2206, 'S/N 5500-6168', 'Instron 5500R Digital Compression Machine (E-4)', 'Range: 50 lbs to 5,500 lbs (ID# 041)', '2009-03-17', 7348, '3/17/2009', NULL), (7349, 2207, 'S/N MG4195', 'Wykeham Farrance LVDT Consolidation Frame (D-6027)', 'Range: 10mm', '2005-02-21', 7349, '2/21/2005', NULL), (7350, 2208, 'S/N 1155-11-18822', ' with Single Multiload Ring Proving Ring PR-61 (E4)', 'Range: 28KN / 6K', '2005-02-21', 7350, '2/21/2005', NULL), (7351, 2209, 'S/N 314192-2000-101', 'OTC Post Tension Jack Model PE-554 (OOS) (E-4 & PCI)', 'Range: 45K ', '2003-10-29', 7351, '10/29/2003', NULL), (7352, 2210, 'S/N 236', 'BK Panel--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 7352, '8/30/2006', NULL), (7353, 2211, '', '', '', '0000-00-00', 7353, '', NULL), (7354, 2212, '', '', '', '0000-00-00', 7354, '', NULL), (7355, 2213, '', '', '', '0000-00-00', 7355, '', NULL), (7356, 2214, '', '', '', '0000-00-00', 7356, '', NULL), (7357, 2215, '', '', '', '0000-00-00', 7357, '', NULL), (7358, 2216, '', '', '', '0000-00-00', 7358, '', NULL), (7359, 2217, '', 'Putting in archived database', '', '0000-00-00', 7359, '', NULL), (7360, 2218, '', '', '', '0000-00-00', 7360, '', NULL), (7361, 2219, 'S/N 3345-Q7175', ' w/ Displacement (D-6027)', 'Range: 5 inches ', '2008-04-23', 7361, '4/23/2008', NULL), (7362, 2220, 'S/N RC-104', 'Enerpac Pushout Tester L (E-4 & Man Specs)', 'Range: 8K', '2009-08-13', 7362, '8/13/2009', NULL), (7363, 2221, '', 'Putting in archived database.', '', '0000-00-00', 7363, '', NULL), (7364, 2222, 'S/N 0706TR75-03', ' w/ Horizontal LVDT (D-6027) OOS', 'Range: 3 inches', '2010-04-01', 7364, '4/1/2010', NULL), (7365, 2223, '', 'Putting in archived database.', '', '0000-00-00', 7365, '', NULL), (7366, 2224, '', 'Putting in archived database.', '', '0000-00-00', 7366, '', NULL), (7367, 2225, '', 'Putting in archived database.', '', '0000-00-00', 7367, '', NULL), (7368, 2226, '', 'Excess Baggage ', '', '0000-00-00', 7368, '', NULL), (7369, 2227, '', '', '', '0000-00-00', 7369, '', NULL), (7370, 2228, 'S/N 1125191148', 'Ohaus Scale Mdl. EP12001', 'Range: 1,200 Grams ', '2007-05-01', 7370, '5/1/2007', NULL), (7371, 2229, '', '', '', '0000-00-00', 7371, '', NULL), (7372, 2230, '', '', '', '0000-00-00', 7372, '', NULL), (7373, 2231, '', '', '', '0000-00-00', 7373, '', NULL), (7374, 2232, '', ' w/ Gauge High Range Only', 'Range: 60,0.00 lbs', '0000-00-00', 7374, '', NULL), (7375, 2233, '', '', '', '0000-00-00', 7375, '', NULL), (7376, 2234, '', '', '', '0000-00-00', 7376, '', NULL), (7377, 2235, '', '', '', '0000-00-00', 7377, '', NULL), (7378, 2236, '', 'Putting in archived database.', '', '0000-00-00', 7378, '', NULL), (7379, 2237, '', '', '', '0000-00-00', 7379, '', NULL), (7380, 2238, '', '', '', '0000-00-00', 7380, '', NULL), (7381, 2239, 'S/N 102', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 100 PSI', NULL, 7381, 'New', NULL), (7382, 2240, '', '', '', '0000-00-00', 7382, '', NULL), (7383, 2241, '', '', '', '0000-00-00', 7383, '', NULL), (7384, 2242, 'S/N 132285', 'Tinius Olsen Lo Cap Digital Compression Machine (E-4)', 'Range: 1K/6K/15K/30K ', NULL, 7384, 'New', NULL), (7385, 2243, '', '', '', '0000-00-00', 7385, '', NULL), (7386, 2244, '', '', '', '0000-00-00', 7386, '', NULL), (7387, 2245, '', '', '', '0000-00-00', 7387, '', NULL), (7388, 2246, '', '', '', '0000-00-00', 7388, '', NULL), (7389, 2247, '', '', '', '0000-00-00', 7389, '', NULL), (7390, 2248, '', '', '', '0000-00-00', 7390, '', NULL), (7391, 2249, 'S/N 4944', 'Chatillon Pull Tester Model DPPH-150 (E-4)', 'Range: 150 lb.', '1998-04-29', 7391, '4/29/1998', NULL), (7392, 2250, 'S/N 137315', 'Tinius Olsen Super-L w/ 398 Digital (E83-00)', '4 Ranges 1200/6000/24000/60000', '2002-01-31', 7392, '1/31/2002', NULL), (7393, 2251, '', '', '', '0000-00-00', 7393, '', NULL), (7394, 2252, '', '', '', '0000-00-00', 7394, '', NULL), (7395, 2253, '', '', '', '0000-00-00', 7395, '', NULL), (7396, 2254, '', '', '', '0000-00-00', 7396, '', NULL), (7397, 2255, '', '', '', '0000-00-00', 7397, '', NULL), (7398, 2256, '', '', '', '0000-00-00', 7398, '', NULL), (7399, 2257, 'S/N 23897', 'Soiltest Single Proving Ring (OOS) (E-4 & Mans Spec)', 'Range: 2,000 lbs', '2006-03-20', 7399, '3/20/2006', NULL), (7400, 2258, '', '', '', '0000-00-00', 7400, '', NULL), (7401, 2259, '', '', '', '0000-00-00', 7401, '', NULL), (7402, 2260, '', '', '', '0000-00-00', 7402, '', NULL), (7403, 2261, '', '', '', '0000-00-00', 7403, '', NULL), (7404, 2262, '', '', '', '0000-00-00', 7404, '', NULL), (7405, 2263, '', 'Forever COD', '', '0000-00-00', 7405, '', NULL), (7406, 2264, ' ', '', ' ', '0000-00-00', 7406, '', NULL), (7407, 2265, '', '', '', '0000-00-00', 7407, '', NULL), (7408, 2266, '', 'Gyratory Calibration Kit:', '', '0000-00-00', 7408, '', NULL), (7409, 2267, 'S/N 90102247', 'Brainard-Kilman C-100 Compression Machine', 'Range: Digital', '1995-08-19', 7409, '8/19/1995', NULL), (7410, 2268, '', '', '', '0000-00-00', 7410, '', NULL), (7411, 2269, '', '', '', '0000-00-00', 7411, '', NULL), (7412, 2270, '', '', '', '0000-00-00', 7412, '', NULL), (7413, 2271, '', '', '', '0000-00-00', 7413, '', NULL), (7414, 2272, '', '', '', '0000-00-00', 7414, '', NULL), (7415, 2273, '', '', '', '0000-00-00', 7415, '', NULL), (7416, 2274, 'S/N 10015', ' w/ 10K Load Cell T & C (Compression Only) (E-4) ', 'Range: 500 lbs / 1K / 2K / 5K / 10K', '2011-10-18', 7416, '10/18/2011', NULL), (7417, 2275, '', '', '', '0000-00-00', 7417, '', NULL), (7418, 2276, '', '', '', '0000-00-00', 7418, '', NULL), (7419, 2277, '', '', '', '0000-00-00', 7419, '', NULL), (7420, 2278, '', 'Putting in archived database.', '', '0000-00-00', 7420, '', NULL), (7421, 2279, '', '', '', '0000-00-00', 7421, '', NULL), (7422, 2280, '', '', '', '0000-00-00', 7422, '', NULL), (7423, 2281, 'S/N 6432', ' Range 5Kip T & C - 10 Ranges ID#25-LC07 (E-4)', '', '2005-02-17', 7423, '2/17/2005', NULL), (7424, 2282, 'S/N 159815', 'Tinius Olsen Super L- Model 290 Display (E4-02)', 'Range 2.4/12/60/120K', '2005-03-30', 7424, '3/30/2005', NULL), (7425, 2283, '', '', '', '0000-00-00', 7425, '', NULL), (7426, 2284, 'S/N 270/946.67', 'MTS 1 Machine--Model 810 (E4-02)', '55K Load Cell Model 661.22CO1', '2004-03-23', 7426, '3/23/2004', NULL), (7427, 2285, 'S/N 66035', 'Hamilton Simplex Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2009-07-20', 7427, '7/20/2009', NULL), (7428, 2286, '', '', '', '0000-00-00', 7428, '', NULL), (7429, 2287, '', '', '', '0000-00-00', 7429, '', NULL), (7430, 2288, '', '', '', '0000-00-00', 7430, '', NULL), (7431, 2289, '', '', '', '0000-00-00', 7431, '', NULL), (7432, 2290, '', '', '', '0000-00-00', 7432, '', NULL), (7433, 2291, '', '', '', '0000-00-00', 7433, '', NULL), (7434, 2292, 'S/N 205(ID# TS-06)', 'TMI Electronic Scales (MOVED) (E-898)', 'Range: 1,000 Grams ', '2012-02-14', 7434, '2/14/2012', NULL), (7435, 2293, '', '', '', '0000-00-00', 7435, '', NULL), (7436, 2294, '', '', '', '0000-00-00', 7436, '', NULL), (7437, 2295, '', '', '', '0000-00-00', 7437, '', NULL), (7438, 2296, '', '', '', '0000-00-00', 7438, '', NULL), (7439, 2297, '', '', '', '0000-00-00', 7439, '', NULL), (7440, 2298, '', '', '', '0000-00-00', 7440, '', NULL), (7441, 2299, '', '', '', '0000-00-00', 7441, '', NULL), (7442, 2300, '', '', '', '0000-00-00', 7442, '', NULL), (7443, 2301, '', '', '', '0000-00-00', 7443, '', NULL), (7444, 2302, '', '', '', '0000-00-00', 7444, '', NULL), (7445, 2303, 'S/N 20106056', ' w/Load Cell Mdl. PSB0004 (E-4)', 'Range: 4 lbs', '2008-03-26', 7445, '3/26/2008', NULL), (7446, 2304, '', '', '', '0000-00-00', 7446, '', NULL), (7447, 2305, '', '', '', '0000-00-00', 7447, '', NULL), (7448, 2306, '', 'Unsure of current location; sending to archived database.', '', '0000-00-00', 7448, '', NULL), (7449, 2307, '', 'Machine on current tour under CUST#: GEOABINGHOU', 'putting this cust. in archived database.', '0000-00-00', 7449, '', NULL), (7450, 2308, '', '', '', '0000-00-00', 7450, '', NULL), (7451, 2309, '', 'Machine under CUST#: GAVCO/CARM on current tour;', 'putting in archived database.', '0000-00-00', 7451, '', NULL), (7452, 2310, '', 'Never cal\'d; going into archived database.', '', '0000-00-00', 7452, '', NULL), (7453, 2311, '', 'Machine destroyed in fire; putting in archived database.', '', '0000-00-00', 7453, '', NULL), (7454, 2312, 'S/N', 'Proving Ring (E-4 & ManSpecs)', 'Cap: 2K', NULL, 7454, 'New', NULL), (7455, 2313, 'S/N 8331320126 ', 'Ohaus PA 31102 Scale (E-898)', 'Range: 3,100 Grams', '2011-03-30', 7455, '3/30/2011', NULL), (7456, 2314, 'S/N 962494163', 'Humboldt BG2110-0-16 Dial Indicator OOS (D-6027)', 'Range: 1 inch ', '2010-06-08', 7456, '6/8/2010', NULL), (7457, 2315, '', '', '', '0000-00-00', 7457, '', NULL), (7458, 2316, '', '', '', '0000-00-00', 7458, '', NULL), (7459, 2317, 'S/N 881578-12-88', 'ATS Model 900 Digital Tensile Machine (E-4)', 'Range: 500 lbs/1K/2.5K/5K', '2013-01-21', 7459, '1/21/2013', NULL), (7460, 2318, 'S/N M92113740-08-04', ' w/ Horizontal LVDT Shear Displacement (D-6027)', 'Range: 0.4 inches', '0000-00-00', 7460, '', NULL), (7461, 2319, '', 'Putting in archived database; Machine sold to ', 'CUST#: ERNST 2', '0000-00-00', 7461, '', NULL), (7462, 2320, '', '', '', '0000-00-00', 7462, '', NULL), (7463, 2321, 'S/N H-0241', 'Soiltest C-220 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-12', 7463, '5/12/2010', NULL), (7464, 2322, 'S/N 1003', 'Hogentogler Mdl. G 3103 Dial Indicator (D-6027)', 'Range: 1 Inch', '2010-05-12', 7464, '5/12/2010', NULL), (7465, 2323, 'S/N 1', 'CDI 2-CR100-1000 Dial Indicator OOS (D-6027)', 'Range: 1 Inch', '2009-05-13', 7465, '5/13/2009', NULL), (7466, 2324, 'S/N 1054 (SOLD)', ' w/ Extensometer (E-83)', 'Range: 0.02 in/in (GL 1.4 Inch)', '2015-09-16', 7466, '9/16/2015', NULL), (7467, 2325, 'S/N 1000979', 'CBR Proving Ring Humboldt Model H-4454', 'Cap: 10K', '2004-10-27', 7467, '10/27/2004', NULL), (7468, 2326, '', '', '', '0000-00-00', 7468, '', NULL), (7469, 2327, '', '', '', '0000-00-00', 7469, '', NULL), (7470, 2328, '', '', '', '0000-00-00', 7470, '', NULL), (7471, 2329, '', '', '', '0000-00-00', 7471, '', NULL), (7472, 2330, '', '', '', '0000-00-00', 7472, '', NULL), (7473, 2331, '', '', '', '0000-00-00', 7473, '', NULL), (7474, 2332, '', '', '', '0000-00-00', 7474, '', NULL), (7475, 2333, '', 'Closed on Friday ', '', '0000-00-00', 7475, '', NULL), (7476, 2334, '', '', '', '0000-00-00', 7476, '', NULL), (7477, 2335, '', '', '', '0000-00-00', 7477, '', NULL), (7478, 2336, '', '', '', '0000-00-00', 7478, '', NULL), (7479, 2337, '', '', '', '0000-00-00', 7479, '', NULL), (7480, 2338, 'S/N 25329', 'Chatillon Hand Held Force Gauge T & C (E-4) ', 'Range: 500 lbs ', '2010-01-13', 7480, '1/13/2010', NULL), (7481, 2339, '', '', '', '0000-00-00', 7481, '', NULL), (7482, 2340, '', '', '', '0000-00-00', 7482, '', NULL), (7483, 2341, '', '', '', '0000-00-00', 7483, '', NULL), (7484, 2342, 'S/N LF1641', 'Lloyd Instruments LF Plus CS4921', 'Range: ', NULL, 7484, 'New', NULL), (7485, 2343, 'S/N 5962', 'Soiltest Double Proving Ring (E-4 & Man. Specs)', 'Range: 500 lbs', '2005-12-19', 7485, '12/19/2005', NULL), (7486, 2344, '', 'Putting in archived database.', '', '0000-00-00', 7486, '', NULL), (7487, 2345, '', 'Putting in archived database.', '', '0000-00-00', 7487, '', NULL), (7488, 2346, '', 'Putting in archived database.', '', '0000-00-00', 7488, '', NULL), (7489, 2347, '', 'Putting in archived database.', '', '0000-00-00', 7489, '', NULL), (7490, 2348, '', 'Putting in archived database.', '', '0000-00-00', 7490, '', NULL), (7491, 2349, '', '', '', '0000-00-00', 7491, '', NULL), (7492, 2350, '', 'Putting in archived database.', '', '0000-00-00', 7492, '', NULL), (7493, 2351, 'S/N P1845454', 'AND EK2000I Scale (E-898) (OOS)', 'Range: 2000 grams', '2015-04-23', 7493, '4/23/2015', NULL), (7494, 2352, '', 'Putting in archived database.', '', '0000-00-00', 7494, '', NULL), (7495, 2353, 'S/N 97092791', 'James Instrument N-25 Hammer (C-805)', 'Range: 78 to 81', '2012-07-10', 7495, '7/10/2012', NULL), (7496, 2354, '', '', '', '0000-00-00', 7496, '', NULL), (7497, 2355, '', '', '', '0000-00-00', 7497, '', NULL), (7498, 2356, '', '', '', '0000-00-00', 7498, '', NULL), (7499, 2357, '', '', '', '0000-00-00', 7499, '', NULL), (7500, 2358, 'S/N 41973', 'Bynum Prestress Jack MPU-3 ', 'Range: 5K to 35K (E-4 & PCI)', '2005-11-15', 7500, '11/15/2005', NULL), (7501, 2359, 'S/N 06311', 'SPX Mdl. PE550 Post Tension Jack (E-4 & PCI)', 'Range: 45K', '2008-04-14', 7501, '4/14/2008', NULL), (7502, 2360, '', '', '', '0000-00-00', 7502, '', NULL), (7503, 2361, 'S/N E-83299', 'Epsilon Extensometer Model 3542-0200-025-ST (E-83)', 'Range: 0.001 inches to 0.5 inches', '2007-06-12', 7503, '6/12/2007', NULL), (7504, 2362, '', '', '', '0000-00-00', 7504, '', NULL), (7505, 2363, '', 'Putting in archived database.', '', '0000-00-00', 7505, '', NULL), (7506, 2364, 'S/N 404', 'Brainard Kilman Consolidometer Mdl. S-450', 'Range: 16 TSF', '0000-00-00', 7506, '', NULL), (7507, 2365, '', '', '', '0000-00-00', 7507, '', NULL), (7508, 2366, '', 'Putting in archived database', '', '0000-00-00', 7508, '', NULL), (7509, 2367, '', 'Putting in archived database', '', '0000-00-00', 7509, '', NULL), (7510, 2368, '', '', '', '0000-00-00', 7510, '', NULL), (7511, 2369, 'S/N 399241/606', 'Enerpac Post Tension Jack w/ RRH-606 Ram (E-4&PCI& ManSpecs)', 'Range: 5K (590 PSI) / 50K (4,300 PSI)', '2012-01-23', 7511, '1/23/2012', NULL), (7512, 2370, '', ' w/ Block Frame Channel #1 (E-4)', 'Range: 4K to 500K ', '2014-11-06', 7512, '11/6/2014', NULL), (7513, 2371, '', 'Putting in archived database.', '', '0000-00-00', 7513, '', NULL), (7514, 2372, '', 'Putting in archived database.', '', '0000-00-00', 7514, '', NULL), (7515, 2373, '', 'Putting in archived database.', '', '0000-00-00', 7515, '', NULL), (7516, 2374, '', '', '', '0000-00-00', 7516, '', NULL), (7517, 2375, 'S/N 29020206', 'Load Cell 155411-00502 w/ GSE (E-4 & 2%)', 'Range: 5K ', '2011-02-16', 7517, '2/16/2011', NULL), (7518, 2376, '', '', '', '0000-00-00', 7518, '', NULL), (7519, 2377, '', '', '', '0000-00-00', 7519, '', NULL), (7520, 2378, '', '', '', '0000-00-00', 7520, '', NULL), (7521, 2379, '', '', '', '0000-00-00', 7521, '', NULL), (7522, 2380, '', '', '', '0000-00-00', 7522, '', NULL), (7523, 2381, '', 'Putting in archived database.', '', '0000-00-00', 7523, '', NULL), (7524, 2382, '', '', '', '0000-00-00', 7524, '', NULL), (7525, 2383, '', 'Putting in archived database.', '', '0000-00-00', 7525, '', NULL), (7526, 2384, '', 'Putting in archived database.', '', '0000-00-00', 7526, '', NULL), (7527, 2385, '', 'Putting in archived database.', '', '0000-00-00', 7527, '', NULL), (7528, 2386, '', 'Putting in archived database.', '', '0000-00-00', 7528, '', NULL), (7529, 2387, 'S/N Unit #3', 'Simms Post Tension Jack (E-4 & PCI)', 'Range: 4K (450 psi) / 35K (3,450 psi)', '2008-02-14', 7529, '2/14/2008', NULL), (7530, 2388, '', '', '', '0000-00-00', 7530, '', NULL), (7531, 2389, '', 'Putting in archived database.', '', '0000-00-00', 7531, '', NULL), (7532, 2390, '', 'Putting in archived database.', '', '0000-00-00', 7532, '', NULL), (7533, 2391, '', 'Putting in archived database.', '', '0000-00-00', 7533, '', NULL), (7534, 2392, '', 'Putting in archived database.', '', '0000-00-00', 7534, '', NULL), (7535, 2393, 'S/N 002', ' Starrett Dial Indicator (D-6027)', 'Range: 0.4 Inch', '2015-10-07', 7535, '10/7/2015', NULL), (7536, 2394, 'S/N 637 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel #1', 'Range: 150 PSI (D-5720)', '2015-10-07', 7536, '10/7/2015', NULL), (7537, 2395, 'S/N 8027191073', 'OHaus Balance Scale Mdl. Adventuerer SL ', 'Range: 600 Gram', '2007-02-12', 7537, '2/12/2007', NULL), (7538, 2396, 'S/N 00370', ' w/ Vertical Force (E-4 & Man Spec)', 'Range: 8.52lbs-68.18lbs/136.35lbs-1.5K', '2015-10-07', 7538, '10/7/2015', NULL), (7539, 2397, '', '', '', '0000-00-00', 7539, '', NULL), (7540, 2398, '', '', '', '0000-00-00', 7540, '', NULL), (7541, 2399, 'S/N 282', 'Ames Dial Indicator (D-6027)', 'Range: 0.2 Inches ', '2007-07-09', 7541, '7/9/2007', NULL), (7542, 2400, 'S/N B12091', 'Scot Tensile Tester Model DH', 'Range: 100 lbs to 400 lbs', '2006-07-17', 7542, '7/17/2006', NULL), (7543, 2401, 'S/N 50819892', ' w/ Micro Measurement HS-10 LVDT (D-6027) ', 'Range: 0.4 inch', '2015-05-12', 7543, '5/12/2015', NULL), (7544, 2402, '', 'Putting in archived database.', '', '0000-00-00', 7544, '', NULL), (7545, 2403, 'S/N 152596A', ' w/ 1 Kip cell T & C (E-4)', 'Range: 10 lbs to 1K ', '2012-01-03', 7545, '1/3/2012', NULL), (7546, 2404, 'S/N 449', 'Humboldt Beam Braker (E-4 & 2%)', 'Range: 15K', '2016-11-28', 7546, '11/28/2016', NULL), (7547, 2405, 'S/N 62792', ' w/ Interface SM-1000 1 Kip T & C Load Cell (E-4)', 'Range: 10 lbs to 1K (ID#CAL3692)', '2008-10-28', 7547, '10/28/2008', NULL), (7548, 2406, '', '', '', '0000-00-00', 7548, '', NULL), (7549, 2407, '', 'Putting in archived database.', '', '0000-00-00', 7549, '', NULL), (7550, 2408, 'S/N 10200156', 'Asheroft Pressure Transducer Mdl. K17M0242F2150 (D-5720)', 'Range: 150 psi', '2006-08-01', 7550, '8/1/2006', NULL), (7551, 2409, '', '', '', '0000-00-00', 7551, '', NULL), (7552, 2410, '', '', '', '0000-00-00', 7552, '', NULL), (7553, 2411, '', 'Putting in archived database.', '', '0000-00-00', 7553, '', NULL), (7554, 2412, '', '', '', '0000-00-00', 7554, '', NULL), (7555, 2413, 'S/N 0991036', 'ELE 35-1475 Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 7555, '2/16/2011', NULL), (7556, 2414, '', 'Putting in archived database.', '', '0000-00-00', 7556, '', NULL), (7557, 2415, '', 'Putting in archived database.', '', '0000-00-00', 7557, '', NULL), (7558, 2416, 'S/N', 'Hercules Prestress Jack (E-4 & PCI)', 'Range', NULL, 7558, 'NEW', NULL), (7559, 2417, '', 'Called June 2007 moving machine to Harrisburg, PA ', '', '0000-00-00', 7559, '', NULL), (7560, 2418, '', '', '', '0000-00-00', 7560, '', NULL), (7561, 2419, '', '', '', '0000-00-00', 7561, '', NULL), (7562, 2420, '', 'Putting in archived database.', '', '0000-00-00', 7562, '', NULL), (7563, 2421, '', 'Putting in archived database.', '', '0000-00-00', 7563, '', NULL), (7564, 2422, '', 'Putting in archived database.', '', '0000-00-00', 7564, '', NULL), (7565, 2423, '', 'Putting in archived database.', '', '0000-00-00', 7565, '', NULL), (7566, 2424, '', 'Putting in archived database.', '', '0000-00-00', 7566, '', NULL), (7567, 2425, '', 'Putting in archived database.', '', '0000-00-00', 7567, '', NULL), (7568, 2426, '', 'Putting in archived database.', '', '0000-00-00', 7568, '', NULL), (7569, 2427, '', 'Putting in archived database.', '', '0000-00-00', 7569, '', NULL), (7570, 2428, '', 'Putting in archived database.', '', '0000-00-00', 7570, '', NULL), (7571, 2429, 'S/N 1155-13-19298', 'ELE Mdl. PR-61 Single Proving Ring (E-4 & Man Spec)', 'Cap: 6.3K ', '2009-01-21', 7571, '1/21/2009', NULL), (7572, 2430, '', 'Putting in archived database.', '', '0000-00-00', 7572, '', NULL), (7573, 2431, '', 'Putting in archived database.', '', '0000-00-00', 7573, '', NULL), (7574, 2432, '', 'Putting in archived database.', '', '0000-00-00', 7574, '', NULL), (7575, 2433, '', 'Putting in archived database.', '', '0000-00-00', 7575, '', NULL), (7576, 2434, 'S/N', ' w/ Horizontal Force (E-4)', 'Range: ', NULL, 7576, 'New', NULL), (7577, 2435, '', 'Putting in archived database.', '', '0000-00-00', 7577, '', NULL), (7578, 2436, '', 'Putting in archived database.', '', '0000-00-00', 7578, '', NULL), (7579, 2437, '', 'Putting in archived database.', '', '0000-00-00', 7579, '', NULL), (7580, 2438, '', '', '', '0000-00-00', 7580, '', NULL), (7581, 2439, '', '', '', '0000-00-00', 7581, '', NULL), (7582, 2440, '', '', '', '0000-00-00', 7582, '', NULL), (7583, 2441, 'S/N 9906-078', 'Detecto AP-4K Scale (E-898)', 'Range: 4,000 Grams ', '2010-06-08', 7583, '6/8/2010', NULL), (7584, 2442, '', '', '', '0000-00-00', 7584, '', NULL), (7585, 2443, '', 'Putting in archived database.', '', '0000-00-00', 7585, '', NULL), (7586, 2444, '', '', '', '0000-00-00', 7586, '', NULL), (7587, 2445, '', 'Putting in archived database.', '', '0000-00-00', 7587, '', NULL), (7588, 2446, '', 'Putting in archived database.', '', '0000-00-00', 7588, '', NULL), (7589, 2447, '', '', '', '0000-00-00', 7589, '', NULL), (7590, 2448, '', 'Putting in archived database.', '', '0000-00-00', 7590, '', NULL), (7591, 2449, '', '', '', '0000-00-00', 7591, '', NULL), (7592, 2450, '', 'Putting in archived database.', '', '0000-00-00', 7592, '', NULL), (7593, 2451, '', 'CS-100-2 taken off of machine and put on S/N 01079 in Grand Rapids', '', '0000-00-00', 7593, '', NULL), (7594, 2452, '', 'Putting in archived database.', '', '0000-00-00', 7594, '', NULL), (7595, 2453, '', '', '', '0000-00-00', 7595, '', NULL), (7596, 2454, '', '', '', '0000-00-00', 7596, '', NULL), (7597, 2455, '', 'Putting in archived database.', '', '0000-00-00', 7597, '', NULL), (7598, 2456, '', '', '', '0000-00-00', 7598, '', NULL), (7599, 2457, 'S/N 608264', 'AEADAM Max Scale (E-898)', 'Range: 70 lbs ', '2011-04-19', 7599, '4/19/2011', NULL), (7600, 2458, '', 'Putting in archived database.', '', '0000-00-00', 7600, '', NULL), (7601, 2459, '', '', '', '0000-00-00', 7601, '', NULL), (7602, 2460, '', '', '', '0000-00-00', 7602, '', NULL), (7603, 2461, 'S/N 103222A', ' w/ Tovey Load Cell Plus Y Axis - T & C', 'Range: 2.5K ', '2012-03-13', 7603, '3/13/2012', NULL), (7604, 2462, '', ' w/ Minus Y Axis - T & C ', 'Range: 50K', '2012-03-12', 7604, '3/12/2012', NULL), (7605, 2463, '', 'Putting in archived database.', '', '0000-00-00', 7605, '', NULL), (7606, 2464, '', 'Putting in archived database.', '', '0000-00-00', 7606, '', NULL), (7607, 2465, 'S/N Ram 2', ' w/ Simplex Ram ', 'Range: 10K (9,000 PSI)', '2011-06-29', 7607, '6/29/2011', NULL), (7608, 2466, 'S/N 11', 'Extra Gauge Final w/Jack #5 (E-4 & PCI)', 'Range: 45K', '2008-07-29', 7608, '7/29/2008', NULL), (7609, 2467, '', '', '', '0000-00-00', 7609, '', NULL), (7610, 2468, '', '', 'Putting in archived database.', '0000-00-00', 7610, '', NULL), (7611, 2469, '', '', '', '0000-00-00', 7611, '', NULL), (7612, 2470, '', '', '', '0000-00-00', 7612, '', NULL), (7613, 2471, '', 'Putting in archived database.', '', '0000-00-00', 7613, '', NULL), (7614, 2472, '', 'Putting in archived database.', '', '0000-00-00', 7614, '', NULL), (7615, 2473, 'S/N C0702L', 'Enerpac Mdl. RCH-202 Post Tension Jack (E-4 & PCI) ', 'Range: 20 Ton ', '2007-05-15', 7615, '5/15/2007', NULL), (7616, 2474, '', ' w/Beam Frame (E-4)', 'Range: 1K to 30K', '2010-01-14', 7616, '1/14/2010', NULL), (7617, 2475, '', '', '', '0000-00-00', 7617, '', NULL), (7618, 2476, 'S/N 53118-1', 'ELE Beam Breaker (E-4)', 'Range: 11K (moved to Livonia)', '2013-09-23', 7618, '9/23/2013', NULL), (7619, 2477, 'S/N 1810', 'Humboldt Mdl. H-4454 Single Proving Ring (E-4 & Man Specs) ', 'Range: 550 lbs ', '2015-03-12', 7619, '3/12/2015', NULL), (7620, 2478, '', '', '', '0000-00-00', 7620, '', NULL), (7621, 2479, '', '', '', '0000-00-00', 7621, '', NULL), (7622, 2480, 'S/N 10015', ' w/ 10K Load Cell T & C (Compression Only) (E-4) ', 'Range: 500 lbs / 1K / 2K / 5K / 10K', '2011-10-18', 7622, '10/18/2011', NULL), (7623, 2481, 'S/N 248', 'Geo Engineering Direct Shear Box Mdl. LG112 (E-4)', 'Range: 500K', '2007-10-24', 7623, '10/24/2007', NULL), (7624, 2482, '', '', '', '0000-00-00', 7624, '', NULL), (7625, 2483, 'S/N 175', 'Soiltest Single Proving Ring (OOS) (E-4 & Man Specs)', 'Cap: 1K', '2007-05-29', 7625, '5/29/2007', NULL), (7626, 2484, 'S/N 9', 'Trautwein Pressure Transducer w/Geocomp Datalogger (OOS)', 'Range: 10 to 120 psi. (D-5720)', '2003-06-03', 7626, '6/3/2003', NULL), (7627, 2485, 'S/N 970246', 'Karol Warner Direct Shear Model KW590-Vertical Force only', 'Range:16TSF(E-4&ManSpecs)(Out of Svc)', '2006-06-01', 7627, '6/1/2006', NULL), (7628, 2486, '', '', '', '0000-00-00', 7628, '', NULL), (7629, 2487, 'S/N 19174516', 'AccuLab SV1-50C Scale (E-898)', 'Range: 11 lbs to 110 lbs ', '2008-06-05', 7629, '6/5/2008', NULL), (7630, 2488, '', '', '', '0000-00-00', 7630, '', NULL), (7631, 2489, '', '', '', '0000-00-00', 7631, '', NULL), (7632, 2490, '', '', '', '0000-00-00', 7632, '', NULL), (7633, 2491, 'S/N 571254', 'ELE Pressure Transducer--Channel# 4 (D-5720)', 'Range: 150 psi', '2008-11-18', 7633, '11/18/2008', NULL), (7634, 2492, 'S/N C-8556', 'Main Panel Pressure Transducer (D-5720)', 'Range: 100 psi', '2008-11-17', 7634, '11/17/2008', NULL), (7635, 2493, 'S/N MG2712', ' w/ LVDT Displacement Model HS25 Vertical Force (D-6027)', 'Range: 1inch w/E-405 Digital', '2008-11-18', 7635, '11/18/2008', NULL), (7636, 2494, 'S/N 14637585', 'AND GF-3000 Scale (E-898)', 'Range: 3,100 Grams ', '2013-10-30', 7636, '10/30/2013', NULL), (7637, 2495, '', '', '', '0000-00-00', 7637, '', NULL), (7638, 2496, '', '', '', '0000-00-00', 7638, '', NULL), (7639, 2497, '', '', '', '0000-00-00', 7639, '', NULL), (7640, 2498, '', '', 'Putting in archived database.', '0000-00-00', 7640, '', NULL), (7641, 2499, '', '', '', '0000-00-00', 7641, '', NULL), (7642, 2500, '', '', '', '0000-00-00', 7642, '', NULL), (7643, 2501, '', '', '', '0000-00-00', 7643, '', NULL), (7644, 2502, '', '', 'Putting in archived database.', '0000-00-00', 7644, '', NULL), (7645, 2503, '', '', '', '0000-00-00', 7645, '', NULL), (7646, 2504, '', '', '', '0000-00-00', 7646, '', NULL), (7647, 2505, '', '', 'Putting in archived database.', '0000-00-00', 7647, '', NULL), (7648, 2506, 'S/N 916519 / NC#19', 'HCS Hydraulic Load Cell (E-4 & 2%) OOS', 'Range: 40K', '2011-07-19', 7648, '7/19/2011', NULL), (7649, 2507, ' 06105BALH01003', 'CAS Mdl. SBA-10KLB-I Load Cell w/ Digital 6572 (E-4)OOS', 'Range: 100K', '2009-04-22', 7649, '4/22/2009', NULL), (7650, 2508, 'S/N B44210', ' w/ Vertical Force 500 lb (E-4)', 'Range: 150 lbs to 1,500 lbs,1/8 to 22 TSF ', '2006-09-12', 7650, '9/12/2006', NULL), (7651, 2509, 'S/N 476274', 'Druck Pressure Transducer System', 'Cap: 275 psi', '0000-00-00', 7651, '', NULL), (7652, 2510, '', '', '', '0000-00-00', 7652, '', NULL), (7653, 2511, 'S/N DC 1207', 'Pelouza Scale 4010', 'Range: 400 lbs', '2013-01-03', 7653, '1/3/2013', NULL), (7654, 2512, 'S/N LVDT 2', 'with FS-2000 LVDT 2 Frame 875 / ID # 3499-0003 (ISO-9513) ', 'Range: 2 Inches', '2007-05-07', 7654, '5/7/2007', NULL), (7655, 2513, '', '', '', '0000-00-00', 7655, '', NULL), (7656, 2514, '', '', 'Putting in archived database.', '0000-00-00', 7656, '', NULL), (7657, 2515, '', '', '', '0000-00-00', 7657, '', NULL), (7658, 2516, 'S/N 119564', 'Proceq Type N Hammer (C-805)', 'Range: 78 to 82 (Moved)', '2009-01-14', 7658, '1/14/2009', NULL), (7659, 2517, 'S/N 90001043', 'Com-Ten Mdl. 951KRC2000 Universal Testing Machine (E-4) ', 'Range: 20 lbs to 400 lbs', '2007-05-09', 7659, '5/9/2007', NULL), (7660, 2518, '', '', 'Putting in archived database.', '0000-00-00', 7660, '', NULL), (7661, 2519, '', 'Calibration done on these items by Plasti-Pak using Spring Gauge:', '', '0000-00-00', 7661, '', NULL), (7662, 2520, '', '', '', '0000-00-00', 7662, '', NULL), (7663, 2521, '', '', 'Putting in archived database.', '0000-00-00', 7663, '', NULL), (7664, 2522, '', '', '', '0000-00-00', 7664, '', NULL), (7665, 2523, '', '', '', '0000-00-00', 7665, '', NULL), (7666, 2524, '', '', '', '0000-00-00', 7666, '', NULL), (7667, 2525, '', '', '', '0000-00-00', 7667, '', NULL), (7668, 2526, '', '', '', '0000-00-00', 7668, '', NULL), (7669, 2527, '', '', '', '0000-00-00', 7669, '', NULL), (7670, 2528, '', '', '', '0000-00-00', 7670, '', NULL), (7671, 2529, '', '', 'Putting in archived database.', '0000-00-00', 7671, '', NULL), (7672, 2530, '', '', '', '0000-00-00', 7672, '', NULL), (7673, 2531, '', '', '', '0000-00-00', 7673, '', NULL), (7674, 2532, '', '', '', '0000-00-00', 7674, '', NULL), (7675, 2533, '', '', '', '0000-00-00', 7675, '', NULL), (7676, 2534, '', '', '', '0000-00-00', 7676, '', NULL), (7677, 2535, 'S/N', ' w/Recorder (Cal In House) (E-83)', 'Range: ', NULL, 7677, 'New', NULL), (7678, 2536, 'S/N 1124018215', 'Ohaus High Precision Balance Explorer-Pro (ID # Q-3688) (E-898)', 'Range: 220 grams to 22,000 grams', '2014-01-21', 7678, '1/21/2014', NULL), (7679, 2537, 'S/N 14712935 ', 'AND Mdl. GP4OK Scale (ID# Q-2471) (E-898)', 'Range: 1 lbs to 85 lbs ', '2016-01-19', 7679, '1/19/2016', NULL), (7680, 2538, 'S/N 20610068', 'Com-Ten FGC2000 Pull Tester (E-4)', 'Range: 2K (ID# Q-2623)', '2013-01-28', 7680, '1/28/2013', NULL), (7681, 2539, 'S/N 090319', 'Testmark CM-0030-RT-SD Digital Compression Machine (E-4)', 'Range: 300 lbs to 30K ', '2014-02-04', 7681, '2/4/2014', NULL), (7682, 2540, '', '', '', '0000-00-00', 7682, '', NULL), (7683, 2541, '', '', '', '0000-00-00', 7683, '', NULL), (7684, 2542, '', '', '', '0000-00-00', 7684, '', NULL), (7685, 2543, '', '', '', '0000-00-00', 7685, '', NULL), (7686, 2544, '', '', '', '0000-00-00', 7686, '', NULL), (7687, 2545, '', '', '', '0000-00-00', 7687, '', NULL), (7688, 2546, '', '', '', '0000-00-00', 7688, '', NULL), (7689, 2547, 'S/N 111405', 'Satec CS-100-1S Pipe Tester (E-4 & C-497)', 'Range: 15K to 500K ', '2008-07-16', 7689, '7/16/2008', NULL), (7690, 2548, '', '', '', '0000-00-00', 7690, '', NULL), (7691, 2549, '', '', '', '0000-00-00', 7691, '', NULL), (7692, 2550, '', '', '', '0000-00-00', 7692, '', NULL), (7693, 2551, '', '', 'Putting in archived database.', '0000-00-00', 7693, '', NULL), (7694, 2552, '', '', 'Putting in archived database.', '0000-00-00', 7694, '', NULL), (7695, 2553, 'S/N E80968', ' w/Epsilon 3542-0100-050-ST Extensometer Channel #1 (E-83)', 'Range: 0.5 in/in (1\" GL)', '2010-02-15', 7695, '2/15/2010', NULL), (7696, 2554, '', '', '', '0000-00-00', 7696, '', NULL), (7697, 2555, '', '', '', '0000-00-00', 7697, '', NULL), (7698, 2556, '', '', '', '0000-00-00', 7698, '', NULL), (7699, 2557, '', '', '', '0000-00-00', 7699, '', NULL), (7700, 2558, '', '', '', '0000-00-00', 7700, '', NULL), (7701, 2559, '', ' Certs to Job Site', '', '0000-00-00', 7701, '', NULL), (7702, 2560, '', '', '', '0000-00-00', 7702, '', NULL), (7703, 2561, '', '', 'Putting in archived database.', '0000-00-00', 7703, '', NULL), (7704, 2562, '', '', '', '0000-00-00', 7704, '', NULL), (7705, 2563, '', '', 'Putting in archived database.', '0000-00-00', 7705, '', NULL), (7706, 2564, 'S/N 1627-4-1172', 'Soiltest ELE D-300A Compression Machine (E-4)', 'Range:', NULL, 7706, 'New', NULL), (7707, 2565, '', '', '', '0000-00-00', 7707, '', NULL), (7708, 2566, '', '', '', '0000-00-00', 7708, '', NULL), (7709, 2567, '', '', 'Putting in archived database.', '0000-00-00', 7709, '', NULL), (7710, 2568, '', '', '', '0000-00-00', 7710, '', NULL), (7711, 2569, 'S/N 93-028', 'Totalcomp Mdl. 5000S Load Cell w/Humboldt Data Logger(E-4)OOS', 'Range: 1K (Channel #13)', '2010-05-05', 7711, '5/5/2010', NULL), (7712, 2570, '', '', '', '0000-00-00', 7712, '', NULL), (7713, 2571, '', '', '', '0000-00-00', 7713, '', NULL), (7714, 1, 'S/N 266', ' Brainard-Kilman E-212 Load Cell (E-4)', 'Range: 2.5K', '2013-01-22', 7714, '1/22/2013', NULL), (7715, 2, '', '', '', '0000-00-00', 7715, '', NULL), (7716, 3, 'S/N 22 ', 'Extra Gauge Prepull w/Jack #5 (E-4 & PCI)', 'Range: 45K', '2008-07-29', 7716, '7/29/2008', NULL), (7717, 4, 'S/N 02-035', ' w/ LVDT Encoder (E-2309)', 'Range: 1 Inch', '2012-02-23', 7717, '2/23/2012', NULL), (7718, 5, 'S/N 1012', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500lbs', '2007-01-05', 7718, '1/5/2007', NULL), (7719, 6, '', '', '', '0000-00-00', 7719, '', NULL), (7720, 7, '', '', '', '0000-00-00', 7720, '', NULL), (7721, 8, 'S/N 1853', 'Humboldt Mdl. H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 11K ', '2013-05-08', 7721, '5/8/2013', NULL), (7722, 9, 'S/N MG7324', ' w/Durham Geo HS50 LVDT (Channel #1) (D-6027)', 'Range: 2 inches ', '2009-05-19', 7722, '5/19/2009', NULL), (7723, 10, 'ID# 189092-0023', '', '', '0000-00-00', 7723, '', NULL), (7724, 11, '', '', '', '0000-00-00', 7724, '', NULL), (7725, 12, 'S/N 103', 'Dynamic Fluid Component Gauge Model CF1P', 'Range: 5,000 psi', '1999-06-15', 7725, '6/15/1999', NULL), (7726, 13, '', '', '', '0000-00-00', 7726, '', NULL), (7727, 14, 'S/N A1251406', 'ELE 77-0115 Point Loader (E-4 & 2% ManSpecs)', 'Range: 4,500 Newton', '2013-05-13', 7727, '5/13/2013', NULL), (7728, 15, 'S/N 130115907', ' w/ Gilson Dial Indicator (D-6027)', 'Range: 1 inch', '2013-05-13', 7728, '5/13/2013', NULL), (7729, 16, '', '', '', '0000-00-00', 7729, '', NULL), (7730, 17, '', '', '', '0000-00-00', 7730, '', NULL), (7731, 18, '', '', '', '0000-00-00', 7731, '', NULL), (7732, 19, 'S/N 75508', 'Transducer Techniques Load Cell Model LBO-100 (E-4)', 'Range: 100 lbs', '2008-06-20', 7732, '6/20/2008', NULL), (7733, 20, '', '', '', '0000-00-00', 7733, '', NULL), (7734, 21, '', '**Contact Shannan Stephenson 304-766-8062 **', '', '0000-00-00', 7734, '', NULL), (7735, 22, '', '', '', '0000-00-00', 7735, '', NULL), (7736, 23, '', '', '', '0000-00-00', 7736, '', NULL), (7737, 24, '', '', '', '0000-00-00', 7737, '', NULL), (7738, 25, '', '', '', '0000-00-00', 7738, '', NULL), (7739, 26, '', '', '', '0000-00-00', 7739, '', NULL), (7740, 27, '', '', '', '0000-00-00', 7740, '', NULL), (7741, 28, '', '', '', '0000-00-00', 7741, '', NULL), (7742, 29, '', '', '', '0000-00-00', 7742, '', NULL), (7743, 30, '', '', '', '0000-00-00', 7743, '', NULL), (7744, 31, '', '', '', '0000-00-00', 7744, '', NULL), (7745, 32, '', '', '', '0000-00-00', 7745, '', NULL), (7746, 33, '', '', '', '0000-00-00', 7746, '', NULL), (7747, 34, '', '', '', '0000-00-00', 7747, '', NULL), (7748, 35, '', '', '', '0000-00-00', 7748, '', NULL), (7749, 36, '', '', '', '0000-00-00', 7749, '', NULL), (7750, 37, '', '', '', '0000-00-00', 7750, '', NULL), (7751, 38, 'S/N 00110', 'Enerpac Pushout Tester with Digital Readout (E-4)', 'Range: 12K (ID# ANC 0310) ', '2009-08-13', 7751, '8/13/2009', NULL), (7752, 39, '', '', '', '0000-00-00', 7752, '', NULL), (7753, 40, '', '', '', '0000-00-00', 7753, '', NULL), (7754, 41, '', '', '', '0000-00-00', 7754, '', NULL), (7755, 42, '', '', '', '0000-00-00', 7755, '', NULL), (7756, 43, '', '', '', '0000-00-00', 7756, '', NULL), (7757, 44, '', ' ', '', '0000-00-00', 7757, '', NULL), (7758, 45, '', '', '', '0000-00-00', 7758, '', NULL), (7759, 46, '', '', '', '0000-00-00', 7759, '', NULL), (7760, 47, '', '', '', '0000-00-00', 7760, '', NULL), (7761, 48, '', '', '', '0000-00-00', 7761, '', NULL), (7762, 49, '', '', '', '0000-00-00', 7762, '', NULL), (7763, 50, '', '', '', '0000-00-00', 7763, '', NULL), (7764, 51, '', '', '', '0000-00-00', 7764, '', NULL), (7765, 52, '', '', '', '0000-00-00', 7765, '', NULL), (7766, 53, 'S/N 459', 'Pressure Trandsucer System Geostor with 4 transducers', 'Cap: 150 psi #2 (D-5720)', '2006-10-10', 7766, '10/10/2006', NULL), (7767, 54, 'S/N 103', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 100 PSI', NULL, 7767, 'New', NULL), (7768, 55, '', '', '', '0000-00-00', 7768, '', NULL), (7769, 56, 'S/N 112906', ' w/Geotest S5830AX Speed Control (Man Specs)', 'Range: 0.050 in/min', '2012-11-06', 7769, '11/6/2012', NULL), (7770, 57, '', '', '', '0000-00-00', 7770, '', NULL), (7771, 58, '', '', '', '0000-00-00', 7771, '', NULL), (7772, 59, '', ' w/ Displacement (E-2309)', 'Range: 5 in', '2013-09-03', 7772, '9/3/2013', NULL), (7773, 60, 'S/N 23200', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 1K', '2012-11-27', 7773, '11/27/2012', NULL), (7774, 61, 'S/N B010172', ' w/ Load Cell Model CBES-11 (Verical Load) (E-4)', 'Range: 1/8 TSF to 22 TSF (1,500 lbs)', '2012-11-27', 7774, '11/27/2012', NULL), (7775, 62, 'S/N Unknown', 'Pressure Transducer on Permeability/Triaxial Board (D-5720)', 'Range: 100 PSI', '2012-11-29', 7775, '11/29/2012', NULL), (7776, 63, '', '', '', '0000-00-00', 7776, '', NULL), (7777, 64, 'S/N 218506 ', 'Artech 20210-5K Load Cell (E-4)', 'Range: 5K', '2012-11-26', 7777, '11/26/2012', NULL), (7778, 65, 'S/N 091111001841', 'Scale Slim Line Electronic Scale Model 9010A (E-898)', 'Range: ', '2012-11-27', 7778, '11/27/2012', NULL), (7779, 66, '', '', '', '0000-00-00', 7779, '', NULL), (7780, 67, '', '', '', '0000-00-00', 7780, '', NULL), (7781, 68, 'S/N 70124', 'Marshalltown Gauge (ASME Grade B)', 'Range: 35 in H20', '2008-11-20', 7781, '11/20/2008', NULL), (7782, 69, '', '', '', '0000-00-00', 7782, '', NULL), (7783, 70, '', '', '', '0000-00-00', 7783, '', NULL), (7784, 71, '', '', '', '0000-00-00', 7784, '', NULL), (7785, 72, '', '', '', '0000-00-00', 7785, '', NULL), (7786, 73, 'S/N 0012', 'VSL Bond Tester (Pompano, FL) (E-4) ', 'Range: 300 lbs to 3,000 lbs ', '2013-10-03', 7786, '10/3/2013', NULL), (7787, 74, 'S/N 183', 'Humboldt H4M-04 Beam Breaker (E-4 & 2%)', 'Range: 15K ', '2012-12-06', 7787, '12/6/2012', NULL), (7788, 75, '', '', '', '0000-00-00', 7788, '', NULL), (7789, 76, '', '', '', '0000-00-00', 7789, '', NULL), (7790, 77, '', '', '', '0000-00-00', 7790, '', NULL), (7791, 78, '', '', '', '0000-00-00', 7791, '', NULL), (7792, 79, 'S/N 13232', 'Digital Readout Virtual w/ Transcell Technology Load Cell (E-4)', 'Range: 5K LC: S/N 7H261502000651', NULL, 7792, 'New', NULL), (7793, 80, '', '', '', '0000-00-00', 7793, '', NULL), (7794, 81, '', '', '', '0000-00-00', 7794, '', NULL), (7795, 82, 'S/N AE774197', 'Adam PGL 20001 Scale (ID# Q-3233) (E-898)', 'Range: 5 Grams to 20,000 Grams ', '2013-01-22', 7795, '1/22/2013', NULL), (7796, 83, '', '', '', '0000-00-00', 7796, '', NULL), (7797, 84, '', '', '', '0000-00-00', 7797, '', NULL), (7798, 85, '', '', '', '0000-00-00', 7798, '', NULL), (7799, 86, '', '', '', '0000-00-00', 7799, '', NULL), (7800, 87, '', '', '', '0000-00-00', 7800, '', NULL), (7801, 88, '', '', '', '0000-00-00', 7801, '', NULL), (7802, 89, '', '', '', '0000-00-00', 7802, '', NULL), (7803, 90, '', '', '', '0000-00-00', 7803, '', NULL), (7804, 91, 'S/N 595159', 'ELE Pressure Transducer--Channel# 9 (D-5720)', 'Range: 150 psi', '2008-11-17', 7804, '11/17/2008', NULL), (7805, 92, 'S/N1155-12-11607', 'Soiltest Single Proving Ring w/ Dial, Channel 16 (E-4 & Man Specs)', 'Range: 450 lbs (2 KN)', '2008-11-17', 7805, '11/17/2008', NULL), (7806, 93, '', '', '', '0000-00-00', 7806, '', NULL), (7807, 94, '', '', '', '0000-00-00', 7807, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (7808, 95, '', '', '', '0000-00-00', 7808, '', NULL), (7809, 96, 'S/N 654347', ' w/Crystal Engineering Gauge (E-4 & PCI)', '', '2008-04-14', 7809, '4/14/2008', NULL), (7810, 97, '', '', '', '0000-00-00', 7810, '', NULL), (7811, 98, '', '', '', '0000-00-00', 7811, '', NULL), (7812, 99, '', '', '', '0000-00-00', 7812, '', NULL), (7813, 100, 'S/N 5500-6168', ' w/ Displacement (D-6027)', 'Range: 5 inch', '2009-03-17', 7813, '3/17/2009', NULL), (7814, 101, '', '', '', '0000-00-00', 7814, '', NULL), (7815, 102, '', '', '', '0000-00-00', 7815, '', NULL), (7816, 103, '', '', '', '0000-00-00', 7816, '', NULL), (7817, 104, '', '', '', '0000-00-00', 7817, '', NULL), (7818, 105, 'S/N 0189847', 'Humboldt Speed Control (Man Specs) ', 'Range: 0.06 in/min ', '2013-03-12', 7818, '3/12/2013', NULL), (7819, 106, 'S/N 15062', 'Ohaus I5S Scale (E-898)', 'Range: 110 lbs ', '0000-00-00', 7819, '', NULL), (7820, 107, '', '', '', '0000-00-00', 7820, '', NULL), (7821, 108, 'S/N 990311/1135 ', ' w/ Karol Warner Horizontal LVDT (D-6027)', 'Range: 0.5 Inch (Shear LVDT)', '2013-03-21', 7821, '3/21/2013', NULL), (7822, 109, 'S/N 2229/023262', 'Novotechnik TR-50 LVDT w/ Digital 6572 (D-6027)', 'Range: 2 inch', '2008-09-10', 7822, '9/10/2008', NULL), (7823, 110, '', '', '', '0000-00-00', 7823, '', NULL), (7824, 111, 'S/N 324', 'Forney Mdl. 5510 Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2013-03-28', 7824, '3/28/2013', NULL), (7825, 112, '', ' w/ Deflection (D-6027)', 'Range: 1K ', '2008-07-09', 7825, '7/9/2008', NULL), (7826, 113, '', '', '', '0000-00-00', 7826, '', NULL), (7827, 114, '', '', '', '0000-00-00', 7827, '', NULL), (7828, 115, '', '', '', '0000-00-00', 7828, '', NULL), (7829, 116, '', '', '', '0000-00-00', 7829, '', NULL), (7830, 117, 'S/N 9045', 'Soiltest CT-6200-2 Digital Compression Machine w/Frame #1 (E-4)', 'Range: 4.5K to 450K ', '2008-01-28', 7830, '1/28/2008', NULL), (7831, 118, '', '', '', '0000-00-00', 7831, '', NULL), (7832, 119, '', '', '', '0000-00-00', 7832, '', NULL), (7833, 120, '', '', '', '0000-00-00', 7833, '', NULL), (7834, 121, 'S/N 20310184', 'Powerteam Post Tension Jack (E-4 & PCI)', 'Range: 35K ', '2008-10-14', 7834, '10/14/2008', NULL), (7835, 122, '', '', '', '0000-00-00', 7835, '', NULL), (7836, 123, '', '', '', '0000-00-00', 7836, '', NULL), (7837, 124, '', '', '', '0000-00-00', 7837, '', NULL), (7838, 125, 'S/N 613042', ' w/Humboldt 2300-100 Load Cell (E-4)', 'Range: 10K', '2013-04-16', 7838, '4/16/2013', NULL), (7839, 126, '', '', '', '0000-00-00', 7839, '', NULL), (7840, 127, 'S/N 5033701/5', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Tons (45,000 kg)', '2005-02-26', 7840, '2/26/2005', NULL), (7841, 128, '', '', '', '0000-00-00', 7841, '', NULL), (7842, 129, '', '', '', '0000-00-00', 7842, '', NULL), (7843, 130, '', ' with Speed Control (Not Done)', '', '0000-00-00', 7843, '', NULL), (7844, 131, '', '', '', '0000-00-00', 7844, '', NULL), (7845, 132, '', '', '', '0000-00-00', 7845, '', NULL), (7846, 133, 'S/N 190409', 'ELE SP-10025 Bond Wrench Tester (E-4) ', 'Range: 1K', '2013-05-07', 7846, '5/7/2013', NULL), (7847, 134, '', '', '', '0000-00-00', 7847, '', NULL), (7848, 135, '', '', '', '0000-00-00', 7848, '', NULL), (7849, 136, '', '', '', '0000-00-00', 7849, '', NULL), (7850, 137, '', '', '', '0000-00-00', 7850, '', NULL), (7851, 138, '', '', '', '0000-00-00', 7851, '', NULL), (7852, 139, '', '', '', '0000-00-00', 7852, '', NULL), (7853, 140, 'S/N', 'Control Company D-200 Direct Shear (E-4)', 'Range: ', NULL, 7853, 'New', NULL), (7854, 141, '', '', '', '0000-00-00', 7854, '', NULL), (7855, 142, '', '', '', '0000-00-00', 7855, '', NULL), (7856, 143, '', '', '', '0000-00-00', 7856, '', NULL), (7857, 144, '', '', '', '0000-00-00', 7857, '', NULL), (7858, 145, '', '', '', '0000-00-00', 7858, '', NULL), (7859, 146, '', '', '', '0000-00-00', 7859, '', NULL), (7860, 147, '', '', '', '0000-00-00', 7860, '', NULL), (7861, 148, 'S/N 10907853', 'Tamtron BCSD-100-A Crane Scale (E-4)', 'Range: 10,000 Kg', NULL, 7861, 'New', NULL), (7862, 149, '', '', '', '0000-00-00', 7862, '', NULL), (7863, 150, '', '', '', '0000-00-00', 7863, '', NULL), (7864, 151, 'S/N 981742431', 'Humboldt Mdl. BG2110-0-16 Dial Indicator(OUT OF SERVICE) ', 'Range: 1 Inch (D-6027)', '2008-05-05', 7864, '5/5/2008', NULL), (7865, 152, '', '', '', '0000-00-00', 7865, '', NULL), (7866, 153, '', '', '', '0000-00-00', 7866, '', NULL), (7867, 154, '', '', '', '0000-00-00', 7867, '', NULL), (7868, 155, '', '', '', '0000-00-00', 7868, '', NULL), (7869, 156, '', '', '', '0000-00-00', 7869, '', NULL), (7870, 157, '', '', '', '0000-00-00', 7870, '', NULL), (7871, 158, '', '', '', '0000-00-00', 7871, '', NULL), (7872, 159, '', '', '', '0000-00-00', 7872, '', NULL), (7873, 160, 'S/N 18767', 'Total Comp. Load Cell Model TC-33 w/ Laureate Digital (OOS) (E-4)', 'Cap: 25,000 lbs', '2004-04-22', 7873, '4/22/2004', NULL), (7874, 161, '', '', '', '0000-00-00', 7874, '', NULL), (7875, 162, 'S/N 912 (1046)', 'Chatillon DPP-50 Force Gauge (E-4 & 2%)', 'Range: 50 lbs (Compression Only)', '2013-07-08', 7875, '7/8/2013', NULL), (7876, 163, '', '', '', '0000-00-00', 7876, '', NULL), (7877, 164, '', '', '', '0000-00-00', 7877, '', NULL), (7878, 165, 'S/N 4', 'HCS LC-40 Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K', '2011-07-19', 7878, '7/19/2011', NULL), (7879, 166, 'S/N 5012376/8', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 36,000 kg', '2005-03-31', 7879, '3/31/2005', NULL), (7880, 167, '', 'Shipping', '', '0000-00-00', 7880, '', NULL), (7881, 168, 'S/N 138129', 'Proceq Type N Hammer (C-805) ', 'Range: 78 to 82 (Moved)', '2009-01-22', 7881, '1/22/2009', NULL), (7882, 169, 'S/N Unknown ', 'Rex Wheeler Pressure Gauge (D-5720)', 'Range: 600 PSI', '2007-05-15', 7882, '5/15/2007', NULL), (7883, 170, '', '', '', '0000-00-00', 7883, '', NULL), (7884, 171, 'S/N 0052', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2013-08-01', 7884, '8/1/2013', NULL), (7885, 172, 'S/N 0024A', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-23', 7885, '7/23/2009', NULL), (7886, 173, '', '', '', '0000-00-00', 7886, '', NULL), (7887, 174, '', '', '', '0000-00-00', 7887, '', NULL), (7888, 175, 'S/N 921789640', 'Soiltest AP-171B Dial Indicator (2%) (D-6027)', 'Range: 1 inch', '2013-08-21', 7888, '8/21/2013', NULL), (7889, 176, '', '', '', '0000-00-00', 7889, '', NULL), (7890, 177, '', '', '', '0000-00-00', 7890, '', NULL), (7891, 178, '', '', '', '0000-00-00', 7891, '', NULL), (7892, 179, '', ' w/ Speed Control (Man Specs)', 'Range: 0.050 in/min ', '2009-08-31', 7892, '8/31/2009', NULL), (7893, 180, '', '', '', '0000-00-00', 7893, '', NULL), (7894, 181, '', '', '', '0000-00-00', 7894, '', NULL), (7895, 182, '', '', '', '0000-00-00', 7895, '', NULL), (7896, 183, '', '', '', '0000-00-00', 7896, '', NULL), (7897, 184, '', '', '', '0000-00-00', 7897, '', NULL), (7898, 185, '', '', '', '0000-00-00', 7898, '', NULL), (7899, 186, '', '', '', '0000-00-00', 7899, '', NULL), (7900, 187, '', '', '', '0000-00-00', 7900, '', NULL), (7901, 188, '', '', '', '0000-00-00', 7901, '', NULL), (7902, 189, '', '', '', '0000-00-00', 7902, '', NULL), (7903, 190, '', '', '', '0000-00-00', 7903, '', NULL), (7904, 191, 'S/N 522915', 'Baldwin Tate Emery 120 BTE Universal Testing Machine (E-4)', 'Range: 6K / 24K / 120K ', '2012-10-09', 7904, '10/9/2012', NULL), (7905, 192, 'S/N M922026A-727-03', ' w/ Vertical Force (E-4)', 'Range: 1 Kg to 68 Kg', '2010-10-20', 7905, '10/20/2010', NULL), (7906, 193, 'S/N KSS758', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2010-10-20', 7906, '10/20/2010', NULL), (7907, 194, '', '', '', '0000-00-00', 7907, '', NULL), (7908, 195, '', '', '', '0000-00-00', 7908, '', NULL), (7909, 196, 'S/N 617114', ' w/ Interface SM-100 100 lb T & C Load Cell (E-4)', 'Range: 1 lbs to 100 lbs (ID#CAL4447)', '2008-10-28', 7909, '10/28/2008', NULL), (7910, 197, '', '', '', '0000-00-00', 7910, '', NULL), (7911, 198, 'S/N 21797', 'Soiltest CBR Double Proving Ring (E-4 & Man Specs) (Out of Service) ', 'Cap: 500 lbs ', '2004-11-03', 7911, '11/3/2004', NULL), (7912, 199, '', '', '', '0000-00-00', 7912, '', NULL), (7913, 200, 'S/N 50378', ' w/Load Cell Compression & Tension (Back Up Cell) (E-4)', 'Range: 116 lbs to 112 lbs', '2012-11-20', 7913, '11/20/2012', NULL), (7914, 201, '', '', '', '0000-00-00', 7914, '', NULL), (7915, 202, '', '', '', '0000-00-00', 7915, '', NULL), (7916, 203, '', '', '', '0000-00-00', 7916, '', NULL), (7917, 204, '', '', '', '0000-00-00', 7917, '', NULL), (7918, 205, '', '', '', '0000-00-00', 7918, '', NULL), (7919, 206, '', '', '', '0000-00-00', 7919, '', NULL), (7920, 207, '', '', '', '0000-00-00', 7920, '', NULL), (7921, 208, '', '', '', '0000-00-00', 7921, '', NULL), (7922, 209, '', '', '', '0000-00-00', 7922, '', NULL), (7923, 210, '', '', '', '0000-00-00', 7923, '', NULL), (7924, 211, '', '', '', '0000-00-00', 7924, '', NULL), (7925, 212, '', '', '', '0000-00-00', 7925, '', NULL), (7926, 213, '', 'floor is complete.', '', '0000-00-00', 7926, '', NULL), (7927, 214, 'S/N 03698C', 'Enerpac RCH 202 Post Tension Jack (E-4 & PCI)', 'Range: 20 Tons', '2013-01-14', 7927, '1/14/2013', NULL), (7928, 215, 'S/N 482820', 'Satec 60 BTE Universal Testing Machine ', 'Range: 100K / 30K (E-4)', '2004-02-11', 7928, '2/11/2004', NULL), (7929, 216, '', '', '', '0000-00-00', 7929, '', NULL), (7930, 217, '', '', '', '0000-00-00', 7930, '', NULL), (7931, 218, '', '', '', '0000-00-00', 7931, '', NULL), (7932, 219, '', '', '', '0000-00-00', 7932, '', NULL), (7933, 220, 'S/N 901113 (ID#1)', 'Strainsense TA-3000-E8 Extensometer (E-83)', 'Range: 8 GL', NULL, 7933, 'New', NULL), (7934, 221, '', '', '', '0000-00-00', 7934, '', NULL), (7935, 222, 'S/N 89560', 'Forney N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-01-29', 7935, '1/29/2013', NULL), (7936, 223, '', '', '', '0000-00-00', 7936, '', NULL), (7937, 224, 'S/N 1312', 'Rainhart Series 416 Beam Breaker (E-4 & 2%)', 'Range: 12K', '2011-02-03', 7937, '2/3/2011', NULL), (7938, 225, '', '', '', '0000-00-00', 7938, '', NULL), (7939, 226, '', '', '', '0000-00-00', 7939, '', NULL), (7940, 227, '', '', '', '0000-00-00', 7940, '', NULL), (7941, 228, '', '', '', '0000-00-00', 7941, '', NULL), (7942, 229, '', '', '', '0000-00-00', 7942, '', NULL), (7943, 230, '', '', '', '0000-00-00', 7943, '', NULL), (7944, 231, 'S/N 104', 'Wika Service Gauge (D-5720)', 'Range: 1,000 PSI', '2010-01-13', 7944, '1/13/2010', NULL), (7945, 232, 'S/N 102', 'Marsh Service Gauge (D-5720)', 'Range: 600 PSI', '2010-01-13', 7945, '1/13/2010', NULL), (7946, 233, '', '', '', '0000-00-00', 7946, '', NULL), (7947, 234, 'S/N 05075712/3', 'Eilon Engineering RON 2501 S-50 Load Cell #3 (ManSp & 0.1% FS)', 'Range: 50 Short Ton ', '2010-02-16', 7947, '2/16/2010', NULL), (7948, 235, 'S/N 1VA-83568-031', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 15 PSI ', '2010-01-18', 7948, '1/18/2010', NULL), (7949, 236, 'S/N 10334167A ', ' w/ MTS 634.11E-24 Extensometer (ID# LABD39) (E-83)', 'Range: 0.03 in/in (4\" GL)', '2011-01-26', 7949, '1/26/2011', NULL), (7950, 237, '', '', '', '0000-00-00', 7950, '', NULL), (7951, 238, 'S/N 119', 'Geotest Unconfined Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', NULL, 7951, 'New', NULL), (7952, 239, 'S/N', ' w/ Extensometer (Cal In House) (E-83)', 'Range: ', NULL, 7952, 'New', NULL), (7953, 240, 'S/N 861 (ID#LABD15)', ' w/ MTS 632.11B-20 Compressometer-Traverse Strain Channel', 'Range: 0.03 in/in (E-83)', '2011-01-10', 7953, '1/10/2011', NULL), (7954, 241, '', '', '', '0000-00-00', 7954, '', NULL), (7955, 242, 'S/N 50946MTW0606', 'Tinius Olsen Super L-MTEST Universal Testing Machine (E-4)', 'Range: 3K to 300K', '2013-02-27', 7955, '2/27/2013', NULL), (7956, 243, 'S/N 1054/1051', 'Satec PS2M Extensometer (E-83)', 'Range: 0.02 in/in (GL 1.4 Inch)', '2013-09-16', 7956, '9/16/2013', NULL), (7957, 244, '', '', '', '0000-00-00', 7957, '', NULL), (7958, 245, '', '', '', '0000-00-00', 7958, '', NULL), (7959, 246, '', '', '', '0000-00-00', 7959, '', NULL), (7960, 247, 'S/N 401 ', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K ', '2012-02-16', 7960, '2/16/2012', NULL), (7961, 248, '', '', '', '0000-00-00', 7961, '', NULL), (7962, 249, '', '', '', '0000-00-00', 7962, '', NULL), (7963, 250, '', '', '', '0000-00-00', 7963, '', NULL), (7964, 251, '', '', '', '0000-00-00', 7964, '', NULL), (7965, 252, '', '', '', '0000-00-00', 7965, '', NULL), (7966, 253, '', '', '', '0000-00-00', 7966, '', NULL), (7967, 254, '', '', '', '0000-00-00', 7967, '', NULL), (7968, 255, '', '', '', '0000-00-00', 7968, '', NULL), (7969, 256, '', '', '', '0000-00-00', 7969, '', NULL), (7970, 257, '', '', '', '0000-00-00', 7970, '', NULL), (7971, 258, '', '', '', '0000-00-00', 7971, '', NULL), (7972, 259, '', '', '', '0000-00-00', 7972, '', NULL), (7973, 260, '', '', '', '0000-00-00', 7973, '', NULL), (7974, 261, 'S/N 46445 (ATG# 603)', 'Baldwin Southwark Tate Emery UTM Testing Machine ', 'Range: 6K / 24K / 60K (E-4)', '2013-03-27', 7974, '3/27/2013', NULL), (7975, 262, 'S/N GCC06-0512', 'GeoComp Sheartrac II Direct Shear (E-4)', '', '0000-00-00', 7975, '', NULL), (7976, 263, '', '', '', '0000-00-00', 7976, '', NULL), (7977, 264, 'S/N 1310452(ATG# 866)', 'Honeywell 060-0571-06-21 Load Cell (E-4)', 'Range: 1K ', '2011-03-31', 7977, '3/31/2011', NULL), (7978, 265, '', '', '', '0000-00-00', 7978, '', NULL), (7979, 266, '', '', '', '0000-00-00', 7979, '', NULL), (7980, 267, 'S/N 3587', 'Richard Dudgeon 1508A Post Tension Jack w/2 gauges', 'Range: 300 K', '2012-10-15', 7980, '10/15/2012', NULL), (7981, 268, '', '', '', '0000-00-00', 7981, '', NULL), (7982, 269, '', '', '', '0000-00-00', 7982, '', NULL), (7983, 270, '', '', '', '0000-00-00', 7983, '', NULL), (7984, 271, '', '', '', '0000-00-00', 7984, '', NULL), (7985, 272, '', '', '', '0000-00-00', 7985, '', NULL), (7986, 273, '', '', '', '0000-00-00', 7986, '', NULL), (7987, 274, 'S/N 89037 ', 'Forney FT-250F-01 Compression Machine (E-4)', 'Range: 250K (MOVED)', '2011-03-28', 7987, '3/28/2011', NULL), (7988, 275, '', ' ', '', '0000-00-00', 7988, '', NULL), (7989, 276, '', '', '', '0000-00-00', 7989, '', NULL), (7990, 277, '', '', 'Cell #4 - 50K S/N 713625 ', '2010-07-14', 7990, '7/14/2010', NULL), (7991, 278, '', '', '', '0000-00-00', 7991, '', NULL), (7992, 279, '', '', '', '0000-00-00', 7992, '', NULL), (7993, 280, '', '', '', '0000-00-00', 7993, '', NULL), (7994, 281, 'S/N Z42978', 'Enerpac Mdl. LS10006 (E-4 ManSpecs &2%)', 'Range: 200,000 lbs', '2013-05-02', 7994, '5/2/2013', NULL), (7995, 282, '', '', '', '0000-00-00', 7995, '', NULL), (7996, 283, '', '', '', '0000-00-00', 7996, '', NULL), (7997, 284, 'S/N TEN017 ', 'Erico Dead Weight Load Frame 1 (Man Specs)', 'Range: 0 lbs to 20 Weights ', '2013-04-24', 7997, '4/24/2013', NULL), (7998, 285, '', '', '', '0000-00-00', 7998, '', NULL), (7999, 286, '', '', '', '0000-00-00', 7999, '', NULL), (8000, 287, '', '', '', '0000-00-00', 8000, '', NULL), (8001, 288, 'S/N 9635', 'Soiltest Unconfined Single Proving Ring (E-4 & ManSpecs)', 'Cap: 1.5K', '2010-04-15', 8001, '4/15/2010', NULL), (8002, 289, '', '', '', '0000-00-00', 8002, '', NULL), (8003, 290, '', '', '', '0000-00-00', 8003, '', NULL), (8004, 291, '', '', '', '0000-00-00', 8004, '', NULL), (8005, 292, '', '', '', '0000-00-00', 8005, '', NULL), (8006, 293, '', '', '', '0000-00-00', 8006, '', NULL), (8007, 294, 'S/N 8031101113', 'Ohaus Adventure Pro AV3102 Balance Scale (E-898)', 'Range: 3,100 Grams', '2011-04-19', 8007, '4/19/2011', NULL), (8008, 295, 'S/N 0002', 'VSL Bond Tester (Houston) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2008-01-31', 8008, '1/31/2008', NULL), (8009, 296, 'S/N 011088329', 'ELE Mdl. 88-4070 Dial Indicator (D-6027)', 'Range: 0.4 inches', '2010-05-12', 8009, '5/12/2010', NULL), (8010, 297, '', '', '', '0000-00-00', 8010, '', NULL), (8011, 298, 'S/N AE 682150', 'Adams CBK 8H Scale (E-898)', 'Range: 8,000 Grams', '2013-05-15', 8011, '5/15/2013', NULL), (8012, 299, 'S/N 093511450', ' w/ GeoTest BG2110-0-36 Dial Indicator (D-6027)', 'Range: 1 inch', '2013-05-22', 8012, '5/22/2013', NULL), (8013, 300, 'S/N 14708173', 'AND GP-12K Scale (E-898)', 'Range: 150 lbs', '2013-05-15', 8013, '5/15/2013', NULL), (8014, 301, '', '', '', '0000-00-00', 8014, '', NULL), (8015, 302, '', '', '', '0000-00-00', 8015, '', NULL), (8016, 303, 'S/N 1698', 'Geotac GeoJac Frame 2 (E-4)', '', '2012-05-23', 8016, '5/23/2012', NULL), (8017, 304, '', '', '', '0000-00-00', 8017, '', NULL), (8018, 305, '', '', '', '0000-00-00', 8018, '', NULL), (8019, 306, '', '', '', '0000-00-00', 8019, '', NULL), (8020, 307, '', '', '', '0000-00-00', 8020, '', NULL), (8021, 308, 'S/N 3', 'LVDT w/ Geocomp Datalogger (OUT OF SVC) (D-6027)', 'Range: .25 inches', '2002-06-20', 8021, '6/20/2002', NULL), (8022, 309, 'S/N 10', 'Trautwein Pressure Transducer Model with GeoComp Datalogger', 'Range: 150 PSI (OUT OF SERVICE)', '2005-06-29', 8022, '6/29/2005', NULL), (8023, 310, '', ' w/ Shear Displacement LDT (D-6027)', 'Range: ', NULL, 8023, 'New', NULL), (8024, 311, '', '', '', '0000-00-00', 8024, '', NULL), (8025, 312, '', '', '', '0000-00-00', 8025, '', NULL), (8026, 313, '', '', '', '0000-00-00', 8026, '', NULL), (8027, 314, '', '', '', '0000-00-00', 8027, '', NULL), (8028, 315, '', ' ***Only use machine for Internal Calibration***', '', '0000-00-00', 8028, '', NULL), (8029, 316, 'S/N 1121370303', 'Ohaus Desk Scale (E-898)', 'Range: 210 Grams ', '2013-06-04', 8029, '6/4/2013', NULL), (8030, 317, '', '', '', '0000-00-00', 8030, '', NULL), (8031, 318, '', '', '', '0000-00-00', 8031, '', NULL), (8032, 319, '', '', '', '0000-00-00', 8032, '', NULL), (8033, 320, 'S/N 001', 'CDI Model 36204CJ Dial Indicator (D-6027)', 'Range: 2 inches ', '2009-06-24', 8033, '6/24/2009', NULL), (8034, 321, '', '', '', '0000-00-00', 8034, '', NULL), (8035, 322, 'S/N 1135', 'American Cube Mold Beam Tester (E-4)', 'Range: 10K ', '2012-06-12', 8035, '6/12/2012', NULL), (8036, 323, '', '', '', '0000-00-00', 8036, '', NULL), (8037, 324, '', '', '', '0000-00-00', 8037, '', NULL), (8038, 325, '', '', '', '0000-00-00', 8038, '', NULL), (8039, 326, '', '', '', '0000-00-00', 8039, '', NULL), (8040, 327, '', '', '', '0000-00-00', 8040, '', NULL), (8041, 328, '', '', '', '0000-00-00', 8041, '', NULL), (8042, 329, 'S/N 3', 'Harrington Model HLT Hoist Tester (E-4 & Man Specs)', 'Cap: 5 Ton / 10 Ton ', '2013-06-26', 8042, '6/26/2013', NULL), (8043, 330, '', '', '', '0000-00-00', 8043, '', NULL), (8044, 331, '', '', '', '0000-00-00', 8044, '', NULL), (8045, 332, '', '', '', '0000-00-00', 8045, '', NULL), (8046, 333, '', '', '', '0000-00-00', 8046, '', NULL), (8047, 334, 'S/N APD90941', 'Dillon Mdl. AP Dynamometer (E-4 & 2%)', 'Range: 1K ', '2013-06-27', 8047, '6/27/2013', NULL), (8048, 335, '', '', '', '0000-00-00', 8048, '', NULL), (8049, 336, '', '', '', '0000-00-00', 8049, '', NULL), (8050, 337, '', '', '', '0000-00-00', 8050, '', NULL), (8051, 338, 'S/N A-3797', ' w/Speed Control (E-2658-11)', 'Range: 0.035 In/min ', '2013-06-24', 8051, '6/24/2013', NULL), (8052, 339, '', '', '', '0000-00-00', 8052, '', NULL), (8053, 340, '', ' Digital S/N 46', '', '0000-00-00', 8053, '', NULL), (8054, 341, 'S/N 203', 'Ashcroft Gauge G-8962 (IN HOUSE) (D-5720)', 'Range: 0-60psi', '2003-03-28', 8054, '3/28/2003', NULL), (8055, 342, '', '', '', '0000-00-00', 8055, '', NULL), (8056, 343, '', '', '', '0000-00-00', 8056, '', NULL), (8057, 344, '', '', '', '0000-00-00', 8057, '', NULL), (8058, 345, 'S/N 001', 'Humboldt Beam Tester (E-4 & 2%)', 'Range: 10K ', '2009-02-16', 8058, '2/16/2009', NULL), (8059, 346, '', '', '', '0000-00-00', 8059, '', NULL), (8060, 347, '', '', '', '0000-00-00', 8060, '', NULL), (8061, 348, 'S/N 52634', 'AND FG-150K Scale (E-898)', 'Range: 1 lbs to 300 lbs ', '2010-06-07', 8061, '6/7/2010', NULL), (8062, 349, '', '', '', '0000-00-00', 8062, '', NULL), (8063, 350, '', '', '', '0000-00-00', 8063, '', NULL), (8064, 351, '', '', '', '0000-00-00', 8064, '', NULL), (8065, 352, '', '', '', '0000-00-00', 8065, '', NULL), (8066, 353, '', 'Price includes CMC Coating of Texas, Waxahacie, TX ', '', '0000-00-00', 8066, '', NULL), (8067, 354, '', '', '', '0000-00-00', 8067, '', NULL), (8068, 355, '', '', '', '0000-00-00', 8068, '', NULL), (8069, 356, '', '', '', '0000-00-00', 8069, '', NULL), (8070, 357, '', '', '', '0000-00-00', 8070, '', NULL), (8071, 358, '', '', '', '0000-00-00', 8071, '', NULL), (8072, 359, '', '', '', '0000-00-00', 8072, '', NULL), (8073, 360, '', '', '', '0000-00-00', 8073, '', NULL), (8074, 361, '', '', '', '0000-00-00', 8074, '', NULL), (8075, 362, '', '', '', '0000-00-00', 8075, '', NULL), (8076, 363, '', '', '', '0000-00-00', 8076, '', NULL), (8077, 364, '', '', '', '0000-00-00', 8077, '', NULL), (8078, 365, '', '', '', '0000-00-00', 8078, '', NULL), (8079, 366, '', '', '', '0000-00-00', 8079, '', NULL), (8080, 367, '', '', '', '0000-00-00', 8080, '', NULL), (8081, 368, '', '', '', '0000-00-00', 8081, '', NULL), (8082, 369, '', '', '', '0000-00-00', 8082, '', NULL), (8083, 370, '', '', '', '0000-00-00', 8083, '', NULL), (8084, 371, '', '', '', '0000-00-00', 8084, '', NULL), (8085, 372, '', '', '', '0000-00-00', 8085, '', NULL), (8086, 373, 'S/N 817', 'Karol Warner 6410 Pressure Transducer (D-5720)', 'Range: 100 PSI ', '2013-08-27', 8086, '8/27/2013', NULL), (8087, 374, '', '', '', '0000-00-00', 8087, '', NULL), (8088, 375, 'S/N 3023595/5', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 60K', '2010-08-20', 8088, '8/20/2010', NULL), (8089, 376, '', '', '', '0000-00-00', 8089, '', NULL), (8090, 377, '', '', '', '0000-00-00', 8090, '', NULL), (8091, 378, '', '', '', '0000-00-00', 8091, '', NULL), (8092, 379, 'S/N 9530-31', ' w/ 2000 Recorder (E-83)', 'Range: 1K/6K/15K/30K ', NULL, 8092, 'New', NULL), (8093, 380, '', '', '', '0000-00-00', 8093, '', NULL), (8094, 381, '', '', '', '0000-00-00', 8094, '', NULL), (8095, 382, '', '', '', '0000-00-00', 8095, '', NULL), (8096, 383, '', '', '', '0000-00-00', 8096, '', NULL), (8097, 384, '', '', '', '0000-00-00', 8097, '', NULL), (8098, 385, '', '', '', '0000-00-00', 8098, '', NULL), (8099, 386, '', '', '', '0000-00-00', 8099, '', NULL), (8100, 387, '', '', '', '0000-00-00', 8100, '', NULL), (8101, 388, '', '', '', '0000-00-00', 8101, '', NULL), (8102, 389, '', '', '', '0000-00-00', 8102, '', NULL), (8103, 390, 'S/N Unknown ', 'Wika Vaccum Gauge (Man Specs & 2%)', 'Range: 30 in Hg', '2012-10-08', 8103, '10/8/2012', NULL), (8104, 391, '', '', '', '0000-00-00', 8104, '', NULL), (8105, 392, '', '', '', '0000-00-00', 8105, '', NULL), (8106, 393, '', '', '', '0000-00-00', 8106, '', NULL), (8107, 394, '', '', '', '0000-00-00', 8107, '', NULL), (8108, 395, '', '', '', '0000-00-00', 8108, '', NULL), (8109, 396, '', '', '', '0000-00-00', 8109, '', NULL), (8110, 397, 'S/N', 'Scale', 'Range:', NULL, 8110, 'New', NULL), (8111, 398, '', '', '', '0000-00-00', 8111, '', NULL), (8112, 399, '', 'Work coordinated thru ETS, they pay for both labs', '', '0000-00-00', 8112, '', NULL), (8113, 400, 'S/N H3806132', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs ', '2012-10-29', 8113, '10/29/2012', NULL), (8114, 401, '', '', '', '0000-00-00', 8114, '', NULL), (8115, 402, '', '', '', '0000-00-00', 8115, '', NULL), (8116, 403, '', '', '', '0000-00-00', 8116, '', NULL), (8117, 404, '', '', '', '0000-00-00', 8117, '', NULL), (8118, 405, '', '', '', '0000-00-00', 8118, '', NULL), (8119, 406, '', '', '', '0000-00-00', 8119, '', NULL), (8120, 407, '12', 'Back Up Ring Greenlee Rapid Travel Valve - VS-2013', '$3.50 each ', '0000-00-00', 8120, '', NULL), (8121, 408, '', '', '', '0000-00-00', 8121, '', NULL), (8122, 409, '', '', '', '0000-00-00', 8122, '', NULL), (8123, 410, '', '', '', '0000-00-00', 8123, '', NULL), (8124, 411, '', '', '', '0000-00-00', 8124, '', NULL), (8125, 412, '', '', '', '0000-00-00', 8125, '', NULL), (8126, 413, '', '', '', '0000-00-00', 8126, '', NULL), (8127, 414, 'S/N', ' w/LVDT (D-6027)', 'Range: ', NULL, 8127, 'New', NULL), (8128, 415, '', '', '', '0000-00-00', 8128, '', NULL), (8129, 416, '', '', '', '0000-00-00', 8129, '', NULL), (8130, 417, '', '', '', '0000-00-00', 8130, '', NULL), (8131, 418, 'S/N 1885PL0044-39532', ' w/ Shear Displacement Soiltest LC8 Dial Indicator (D-6027)', 'Range: 1 inches ', '2012-11-06', 8131, '11/6/2012', NULL), (8132, 419, '', '', '', '0000-00-00', 8132, '', NULL), (8133, 420, '', '1 - VS-2022 O\'Ring Greenlee Back Plate', '', '0000-00-00', 8133, '', NULL), (8134, 421, '', '', '', '0000-00-00', 8134, '', NULL), (8135, 422, 'S/N 60420 ', 'Artech Load Cell S-Type w/ CSI-CS-100-1S Digital S/N 111904A', 'Range: 20K (ID# GS060) (E-4)', '2013-01-09', 8135, '1/9/2013', NULL), (8136, 423, 'S/N ID# G1073', ' w/ Brainard Kilman E-400 Digital (E-4)', 'Range: 0.002 in/min ', '2013-01-08', 8136, '1/8/2013', NULL), (8137, 424, '', ' w/ Brainard Kilman E-400 Digital (ID# G838) (E-4)', '', '0000-00-00', 8137, '', NULL), (8138, 425, 'S/N ID #G833', ' w/ Speed Control (Man Specs)', 'Range: 0.002 in/min ', '2013-01-08', 8138, '1/8/2013', NULL), (8139, 426, '', '', '', '0000-00-00', 8139, '', NULL), (8140, 427, 'S/N G783', 'Geotest Direct Shear Machine (E-4)', '', '0000-00-00', 8140, '', NULL), (8141, 428, 'S/N 9642-050810D034', 'Soiltest CT-7250 w/ Testnet GP Digital Compresion Machine (E-4)', 'Range: 2.5K to 250K (ID# G1379) CH#1', '2013-01-07', 8141, '1/7/2013', NULL), (8142, 429, 'S/N 1450', ' w/ Satec T1M Extensometer (10% Range / ML Range) (E-83)', 'Range: 0.01 in/in 2\"GL ', '2013-01-09', 8142, '1/9/2013', NULL), (8143, 430, '', '', '', '0000-00-00', 8143, '', NULL), (8144, 431, 'S/N 120CS-1014', 'Satec Mdl. 120CS-GB Spring Tester (ID# M-110) (E-4)', 'Range: 1K to 120K ', '2013-01-07', 8144, '1/7/2013', NULL), (8145, 432, '', '', '', '0000-00-00', 8145, '', NULL), (8146, 433, '', '', '', '0000-00-00', 8146, '', NULL), (8147, 434, '', '', '', '0000-00-00', 8147, '', NULL), (8148, 435, 'S/N E86182', 'Epsilon 3565-ST Extensometer (E-83)', 'Range: 1\" GL 0.05 in/in', '2013-01-30', 8148, '1/30/2013', NULL), (8149, 436, '', '', '', '0000-00-00', 8149, '', NULL), (8150, 437, 'S/N 2705 ', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2013-01-28', 8150, '1/28/2013', NULL), (8151, 438, '', '', '', '0000-00-00', 8151, '', NULL), (8152, 439, '', '', '', '0000-00-00', 8152, '', NULL), (8153, 440, '', '', '', '0000-00-00', 8153, '', NULL), (8154, 441, '', '', '', '0000-00-00', 8154, '', NULL), (8155, 442, '', '', '', '0000-00-00', 8155, '', NULL), (8156, 443, '', '', '', '0000-00-00', 8156, '', NULL), (8157, 444, '', '', '', '0000-00-00', 8157, '', NULL), (8158, 445, 'S/N 5270', 'Trautwein Digital Pressure Transducer (D-5720)', 'Range: 200 PSI', '2013-02-13', 8158, '2/13/2013', NULL), (8159, 446, '', '', '', '0000-00-00', 8159, '', NULL), (8160, 447, 'S/N CBR3', 'Soiltest Dial Indicator (ID# DI-04) (D-6027)', 'Range: 1 inch', '2013-02-13', 8160, '2/13/2013', NULL), (8161, 448, 'S/N PFS-04 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 8161, '2/13/2013', NULL), (8162, 449, 'S/N 7130410038', 'Ohaus Valor 3000 Extrem V31XH202 Scale (E-898) (ID#TS-05)', 'Range: 200 Grams ', '2013-02-13', 8162, '2/13/2013', NULL), (8163, 450, 'S/N AH-0607 ID#CM-1', 'Soiltest C-220 Consolidation Machine (E-4 & 2%)', 'Range: 1/8 TSF to 22 TSF ', '2013-02-13', 8163, '2/13/2013', NULL), (8164, 451, 'S/N 4004', 'Ohaus Triple Beam Scale (E-898) ', 'Range: 2,610 Grams ', '2013-02-12', 8164, '2/12/2013', NULL), (8165, 452, '', '', '', '0000-00-00', 8165, '', NULL), (8166, 453, '', '', '', '0000-00-00', 8166, '', NULL), (8167, 454, '', '', '', '0000-00-00', 8167, '', NULL), (8168, 455, '', '', '', '0000-00-00', 8168, '', NULL), (8169, 456, '', '1-VS-2013 Back Up Ring for Greenlee Rapid Travel Valve ', '', '0000-00-00', 8169, '', NULL), (8170, 457, '', '', '', '0000-00-00', 8170, '', NULL), (8171, 458, 'S/N', 'Scale', 'Range: 90 lbs ', NULL, 8171, 'New', NULL), (8172, 459, '', '', '', '0000-00-00', 8172, '', NULL), (8173, 460, '', 'This facility is Closed, building new building ', '', '0000-00-00', 8173, '', NULL), (8174, 461, '', '', '', '0000-00-00', 8174, '', NULL), (8175, 462, '', '', '', '0000-00-00', 8175, '', NULL), (8176, 463, '4016', ' w/ Load Cell Vert Force (E-4)', 'Range: 1/8 TSF to 22 TSF', '2013-03-05', 8176, '3/5/2013', NULL), (8177, 464, '', '', '', '0000-00-00', 8177, '', NULL), (8178, 465, '', '', '', '0000-00-00', 8178, '', NULL), (8179, 466, 'S/N 0811SBALA01018', ' w/ Vertical Load Cell (E-4 & 2%)', 'Range: 1/8 TSF to 12 TSF', '2013-03-20', 8179, '3/20/2013', NULL), (8180, 467, '', '', '', '0000-00-00', 8180, '', NULL), (8181, 468, '', '', '', '0000-00-00', 8181, '', NULL), (8182, 469, '', '', '', '0000-00-00', 8182, '', NULL), (8183, 470, '', '', '', '0000-00-00', 8183, '', NULL), (8184, 471, 'S/N 06254', 'Forney FX-250-F-DR2001-TPILOT Digital Compression Machine ', 'Range: 3K to 300K (E-4)', '2010-01-14', 8184, '1/14/2010', NULL), (8185, 472, 'S/N 7/26 ', 'Enerpac Ram (E-4 & Man Specs) ', 'Range: 40K (MOVED)', '2010-03-15', 8185, '3/15/2010', NULL), (8186, 473, '', '', '', '0000-00-00', 8186, '', NULL), (8187, 474, 'S/N 1124012198', 'Ohaus EP 22001C Scale (E-898)', 'Range: 22,000 Grams', '2011-03-29', 8187, '3/29/2011', NULL), (8188, 475, '', '', '', '0000-00-00', 8188, '', NULL), (8189, 476, 'S/N 0152753601110203', 'NCAT F85900 Oven Scale (Internal) (E-898) ', 'Range: 8,000 Grams ', '2013-04-10', 8189, '4/10/2013', NULL), (8190, 477, '', '', '', '0000-00-00', 8190, '', NULL), (8191, 478, '', '', '', '0000-00-00', 8191, '', NULL), (8192, 479, '', '', '', '0000-00-00', 8192, '', NULL), (8193, 480, '', '', '', '0000-00-00', 8193, '', NULL), (8194, 481, '', '', '', '0000-00-00', 8194, '', NULL), (8195, 482, '', '', '', '0000-00-00', 8195, '', NULL), (8196, 483, '', '', '', '0000-00-00', 8196, '', NULL), (8197, 484, 'S/N 571773', 'Geotest Skip Load Cell (E-4)', 'Range: ', NULL, 8197, 'New', NULL), (8198, 485, '', '', '', '0000-00-00', 8198, '', NULL), (8199, 486, '', '', '', '0000-00-00', 8199, '', NULL), (8200, 487, '', '', '', '0000-00-00', 8200, '', NULL), (8201, 488, 'S/N 317730', 'Artech Mdl. 20210-2K Load Cell (E-4)', 'Range: 200 lbs to 2,000 lbs', '2013-05-01', 8201, '5/1/2013', NULL), (8202, 489, 'GB0406211', ' Serial Number Too Long ', '', '0000-00-00', 8202, '', NULL), (8203, 490, '', '', '', '0000-00-00', 8203, '', NULL), (8204, 491, 'S/N 1103', 'Diamond Load Cell Mdl. DS (E-4)', 'Range: 10K ', '2013-04-24', 8204, '4/24/2013', NULL), (8205, 492, '', '', '', '0000-00-00', 8205, '', NULL), (8206, 493, 'S/N 14592', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 10 K', '2013-04-29', 8206, '4/29/2013', NULL), (8207, 494, 'S/N 20543', 'Ametek Pressure Transducer (D-5720)', 'Range: 150 PSI (Channel #14)', '2013-05-01', 8207, '5/1/2013', NULL), (8208, 495, 'S/N 101788-2', 'Wykeham Farrance 25851 Ring Shear Frame (E-4 & 2% ManSpecs)', 'Range: 50 KG', '2013-04-30', 8208, '4/30/2013', NULL), (8209, 496, 'S/N 71773136', 'CDI Mdl. BD2110 Dial Indicator (D-6027)', 'Range 1 inches', '2013-04-29', 8209, '4/29/2013', NULL), (8210, 497, '', '', '', '0000-00-00', 8210, '', NULL), (8211, 498, '', '', '', '0000-00-00', 8211, '', NULL), (8212, 499, '', '', '', '0000-00-00', 8212, '', NULL), (8213, 500, 'S/N 601664', ' w/ 10K T & C Load Cell (E-4)', 'Range: 500 lbs / 1K / 2K /5K / 10K ', '2013-04-29', 8213, '4/29/2013', NULL), (8214, 501, '', '', '', '0000-00-00', 8214, '', NULL), (8215, 502, '', '', '', '0000-00-00', 8215, '', NULL), (8216, 503, '', '', '', '0000-00-00', 8216, '', NULL), (8217, 504, '', '', '', '0000-00-00', 8217, '', NULL), (8218, 505, 'S/N Unknown', 'USG Pressure Gauge (D-5720)', 'Range: 600 PSI ', '2013-08-08', 8218, '8/8/2013', NULL), (8219, 506, '', '', '', '0000-00-00', 8219, '', NULL), (8220, 507, '', '', '', '0000-00-00', 8220, '', NULL), (8221, 508, '', '', '', '0000-00-00', 8221, '', NULL), (8222, 509, '', ' ***Probably needs piston seals next time***', '', '0000-00-00', 8222, '', NULL), (8223, 510, '', '', '', '0000-00-00', 8223, '', NULL), (8224, 511, '', '9/4/12 ON OTHER PROFILE', '', '0000-00-00', 8224, '', NULL), (8225, 512, 'S/N 161057', 'Transducer Techniques Load Cell Model THD-50K-Z (E-4)', 'Range: 250K (OOS)', '2005-07-21', 8225, '7/21/2005', NULL), (8226, 513, '', '', '', '0000-00-00', 8226, '', NULL), (8227, 514, '', '', '', '0000-00-00', 8227, '', NULL), (8228, 515, '', ' w/ Gauge20', 'Range: 35K', '2013-05-09', 8228, '5/9/2013', NULL), (8229, 516, 'S/N 1627-6-1262', 'ELE D-300A Direct Shear Machine (E-4)', '', '0000-00-00', 8229, '', NULL), (8230, 517, '', ' w/ Gauge # 860', 'Range: 47K', '2013-05-09', 8230, '5/9/2013', NULL), (8231, 518, '', '', '', '0000-00-00', 8231, '', NULL), (8232, 519, 'S/N 5018', 'Wykeham Farrance Triaxial Single Proving Ring (E-4 & Man Spec)', 'Cap: 1K', '2013-02-21', 8232, '2/21/2013', NULL), (8233, 520, '', ' w/ Gauge # 3010', 'Range: 35K ', '2013-05-09', 8233, '5/9/2013', NULL), (8234, 521, '', '', '', '0000-00-00', 8234, '', NULL), (8235, 522, '', '', '', '0000-00-00', 8235, '', NULL), (8236, 523, '', '', '', '0000-00-00', 8236, '', NULL), (8237, 524, 'S/N AE435857', 'Adam POW 4502E Scale (E898)', 'Range: 4,500 lbs', '2013-04-30', 8237, '4/30/2013', NULL), (8238, 525, '', '', '', '0000-00-00', 8238, '', NULL), (8239, 526, '', '', '', '0000-00-00', 8239, '', NULL), (8240, 527, '', '', '', '0000-00-00', 8240, '', NULL), (8241, 528, '', '', '', '0000-00-00', 8241, '', NULL), (8242, 529, '', '', '', '0000-00-00', 8242, '', NULL), (8243, 530, '', '', '', '0000-00-00', 8243, '', NULL), (8244, 531, '', '', '', '0000-00-00', 8244, '', NULL), (8245, 532, '', '', '', '0000-00-00', 8245, '', NULL), (8246, 533, '', '', '', '0000-00-00', 8246, '', NULL), (8247, 534, '', '', '', '0000-00-00', 8247, '', NULL), (8248, 535, '', '', '', '0000-00-00', 8248, '', NULL), (8249, 536, '', '', '', '0000-00-00', 8249, '', NULL), (8250, 537, '', '', '', '0000-00-00', 8250, '', NULL), (8251, 538, '', '', '', '0000-00-00', 8251, '', NULL), (8252, 539, '', '', '', '0000-00-00', 8252, '', NULL), (8253, 540, '', '', '', '0000-00-00', 8253, '', NULL), (8254, 541, 'S/N 21853802', 'Acculab VIC-10Kg Scale (E-898)', 'Range: 10,100 Grams', '2013-06-04', 8254, '6/4/2013', NULL), (8255, 542, '', '', '', '0000-00-00', 8255, '', NULL), (8256, 543, '', '', '', '0000-00-00', 8256, '', NULL), (8257, 544, '', '', '', '0000-00-00', 8257, '', NULL), (8258, 545, 'S/N 26104CC', 'CDI Dial Indicator (D-6027)', 'Range: 1 inch ', '2011-06-16', 8258, '6/16/2011', NULL), (8259, 546, '', '', '', '0000-00-00', 8259, '', NULL), (8260, 547, '', '', '', '0000-00-00', 8260, '', NULL), (8261, 548, 'S/N 209608', 'Transducer Techniques Load Cell w/ Dig. S/N 250004 (E-4) ', 'Range: 5K to 50K ', '2013-06-19', 8261, '6/19/2013', NULL), (8262, 549, '', '', '', '0000-00-00', 8262, '', NULL), (8263, 550, '', '', '', '0000-00-00', 8263, '', NULL), (8264, 551, '', '', '', '0000-00-00', 8264, '', NULL), (8265, 552, 'S/N Ram 3', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 8265, '6/29/2011', NULL), (8266, 553, '', '', '', '0000-00-00', 8266, '', NULL), (8267, 554, '', '', '', '0000-00-00', 8267, '', NULL), (8268, 555, 'S/N 004 Master Gauge', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI ', '2011-04-28', 8268, '4/28/2011', NULL), (8269, 556, '', '', '', '0000-00-00', 8269, '', NULL), (8270, 557, 'S/N 225223', ' w/ Transducer Techniques SSI Indicator ', '', '0000-00-00', 8270, '', NULL), (8271, 558, '', '', '', '0000-00-00', 8271, '', NULL), (8272, 559, 'S/N 903', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 30 PSI ', '2011-06-09', 8272, '6/9/2011', NULL), (8273, 560, '', '', '', '0000-00-00', 8273, '', NULL), (8274, 561, '', '', '', '0000-00-00', 8274, '', NULL), (8275, 562, '', '', '', '0000-00-00', 8275, '', NULL), (8276, 563, '', '', '', '0000-00-00', 8276, '', NULL), (8277, 564, '', '', '', '0000-00-00', 8277, '', NULL), (8278, 565, '', '', '', '0000-00-00', 8278, '', NULL), (8279, 566, '', '', '', '0000-00-00', 8279, '', NULL), (8280, 567, '', '', '', '0000-00-00', 8280, '', NULL), (8281, 568, '', '', '', '0000-00-00', 8281, '', NULL), (8282, 569, '', '', '', '0000-00-00', 8282, '', NULL), (8283, 570, 'S/N 6992', 'Soiltest CBR Double Proving Ring (E-4 & Man Specs )', 'Range: 500 lbs', '2013-07-30', 8283, '7/30/2013', NULL), (8284, 571, '', '', '', '0000-00-00', 8284, '', NULL), (8285, 572, '', '', '', '0000-00-00', 8285, '', NULL), (8286, 573, '', '', '', '0000-00-00', 8286, '', NULL), (8287, 574, '', '', '', '0000-00-00', 8287, '', NULL), (8288, 575, 'S/N 0675', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 5,500 lbs', '2013-07-30', 8288, '7/30/2013', NULL), (8289, 576, '', '', '', '0000-00-00', 8289, '', NULL), (8290, 577, 'S/N 937547', 'BK Load Cell w/ E-410 Digital Channel #2 (E-4)', 'Range: 10K', '2010-08-13', 8290, '8/13/2010', NULL), (8291, 578, '', '', '', '0000-00-00', 8291, '', NULL), (8292, 579, '', '', '', '0000-00-00', 8292, '', NULL), (8293, 580, '', '', '', '0000-00-00', 8293, '', NULL), (8294, 581, 'S/N A-362155', ' Load Cell #3 Yellow (E-4)', 'Range: 100 lbs. to 50,000 lbs.', '2013-09-12', 8294, '9/12/2013', NULL), (8295, 582, '', '', '', '0000-00-00', 8295, '', NULL), (8296, 583, '', '', '', '0000-00-00', 8296, '', NULL), (8297, 584, '', '', '', '0000-00-00', 8297, '', NULL), (8298, 585, '', '', '', '0000-00-00', 8298, '', NULL), (8299, 586, 'S/N 9201-00110', 'Soiltest CT-6300-CS-100-3A DigitalCompression Machine (E-4)', 'Range: 3K to 400K Channel #0', '2013-08-08', 8299, '8/8/2013', NULL), (8300, 587, 'S/N 78492', ' w/ Tinius Olsen S-200-2 Extensometer (Ext. Channel #1) (E-83)', 'Range: 0.2 in/in (2\" Gauge Length) ', '2013-08-13', 8300, '8/13/2013', NULL), (8301, 588, '', '', '', '0000-00-00', 8301, '', NULL), (8302, 589, '', '', '', '0000-00-00', 8302, '', NULL), (8303, 590, '', '', '', '0000-00-00', 8303, '', NULL), (8304, 591, '', '', '', '0000-00-00', 8304, '', NULL), (8305, 592, '', '', '', '0000-00-00', 8305, '', NULL), (8306, 593, 'S/N 1228-7-1002', 'ELE CT-700C Tensile Tester (E-4 & 2%)', 'Range: 10,000 Newtons', '2010-10-25', 8306, '10/25/2010', NULL), (8307, 594, '', '', '', '0000-00-00', 8307, '', NULL), (8308, 595, '', '', '', '0000-00-00', 8308, '', NULL), (8309, 596, '', '', '', '0000-00-00', 8309, '', NULL), (8310, 597, '', '', '', '0000-00-00', 8310, '', NULL), (8311, 598, '', '', '', '0000-00-00', 8311, '', NULL), (8312, 599, 'S/N MG2655', 'Humboldt HM-3000 LVDT for CBR unit (D-6027)', 'Range: 1 inch', '2012-09-06', 8312, '9/6/2012', NULL), (8313, 600, '', ' ', '', '0000-00-00', 8313, '', NULL), (8314, 601, 'S/N 14656739', 'AND GF2000 Scale (E-898)', 'Range: 2,100 Grams ', '2013-09-04', 8314, '9/4/2013', NULL), (8315, 602, '', '', '', '0000-00-00', 8315, '', NULL), (8316, 603, 'S/N E0421218450371', 'Ohaus Adventurer Scale (E-898)', 'Range: 3,100 grams', '2013-09-05', 8316, '9/5/2013', NULL), (8317, 604, '', '', '', '0000-00-00', 8317, '', NULL), (8318, 605, 'S/N 67671 (ID# 00571)', ' w/ T & C Load Cell (E-4) ', 'Range: 10K (50 Kn)', '2013-09-04', 8318, '9/4/2013', NULL), (8319, 606, '', '', '', '0000-00-00', 8319, '', NULL), (8320, 607, 'S/N FG-10 (ID#E-068)', 'Wagner Force Five FDV-100 Force Gauge w/ Wagner Digital (E-4)', 'Range: 100 lbs ', '2013-10-08', 8320, '10/8/2013', NULL), (8321, 608, 'S/N 97067-99111', '(OOS)Forney F-250ECS-100-2 Digital Compression Machine (E-4)', 'Range: 500 lbs to 90K', '2010-06-01', 8321, '6/1/2010', NULL), (8322, 609, '', '', '', '0000-00-00', 8322, '', NULL), (8323, 610, '', '', '', '0000-00-00', 8323, '', NULL), (8324, 611, '', '', '', '0000-00-00', 8324, '', NULL), (8325, 612, '', '', '', '0000-00-00', 8325, '', NULL), (8326, 613, '', '', '', '0000-00-00', 8326, '', NULL), (8327, 614, '', '', '', '0000-00-00', 8327, '', NULL), (8328, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 8328, 'New', NULL), (8329, 616, '', '', '', '0000-00-00', 8329, '', NULL), (8330, 617, '', '', '', '0000-00-00', 8330, '', NULL), (8331, 618, '', '', '', '0000-00-00', 8331, '', NULL), (8332, 619, '', '', '', '0000-00-00', 8332, '', NULL), (8333, 620, '', '', '', '0000-00-00', 8333, '', NULL), (8334, 621, '', '', '', '0000-00-00', 8334, '', NULL), (8335, 622, '', '', '', '0000-00-00', 8335, '', NULL), (8336, 623, '', '', '', '0000-00-00', 8336, '', NULL), (8337, 624, '', '', '', '0000-00-00', 8337, '', NULL), (8338, 625, '', '', '', '0000-00-00', 8338, '', NULL), (8339, 626, '', '', '', '0000-00-00', 8339, '', NULL), (8340, 627, 'S/N D602', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 6K', '2012-10-30', 8340, '10/30/2012', NULL), (8341, 628, '', '', '', '0000-00-00', 8341, '', NULL), (8342, 629, '', '', '', '0000-00-00', 8342, '', NULL), (8343, 630, '', '', '', '0000-00-00', 8343, '', NULL), (8344, 631, '', '', '', '0000-00-00', 8344, '', NULL), (8345, 632, '', '', '', '0000-00-00', 8345, '', NULL), (8346, 633, '', '', '', '0000-00-00', 8346, '', NULL), (8347, 634, '', '', '', '0000-00-00', 8347, '', NULL), (8348, 635, '', '', '', '0000-00-00', 8348, '', NULL), (8349, 636, '', '', '', '0000-00-00', 8349, '', NULL), (8350, 637, 'S/N 2193', 'GeoJac Load Frame (E-4)', '', '0000-00-00', 8350, '', NULL), (8351, 638, 'S/N PS-2957', ' w/ GeoJac Pressure Transducer (D-5720)', 'Range: 200 psi ', '2012-11-13', 8351, '11/13/2012', NULL), (8352, 639, 'S/N PS-2963', 'GeoJac Digiflow Pressure Transducer (D-5720)', 'Range: 200 psi (Bottom Pump) ', '2012-11-13', 8352, '11/13/2012', NULL), (8353, 640, 'S/N 20566930', 'Wika Mdl. DG-10-S Pressure Gauge (D-5720 & 2%)', 'Range : 10,000 psi', '2013-06-27', 8353, '6/27/2013', NULL), (8354, 641, '', ' w/ Load Cell 1 & 2 Tandem (E-4)', 'Range: 10K ', '2012-12-04', 8354, '12/4/2012', NULL), (8355, 642, '', '', '', '0000-00-00', 8355, '', NULL), (8356, 643, 'S/N E10111', ' w/ ELE AML/SGD 50mm LVDT (D-6027)', 'Range: 2 inches ', '2012-11-28', 8356, '11/28/2012', NULL), (8357, 644, '', '', '', '0000-00-00', 8357, '', NULL), (8358, 645, '', '', '', '0000-00-00', 8358, '', NULL), (8359, 646, '', '', '', '0000-00-00', 8359, '', NULL), (8360, 647, '', '', '', '0000-00-00', 8360, '', NULL), (8361, 648, '', '', '', '0000-00-00', 8361, '', NULL), (8362, 649, '', '', '', '0000-00-00', 8362, '', NULL), (8363, 650, '', '', '', '0000-00-00', 8363, '', NULL), (8364, 651, '126392-3D', ' Serial Number too long ', '', '0000-00-00', 8364, '', NULL), (8365, 652, '', '', '', '0000-00-00', 8365, '', NULL), (8366, 653, '', '', '', '0000-00-00', 8366, '', NULL), (8367, 654, '', '', '', '0000-00-00', 8367, '', NULL), (8368, 655, '', '', '', '0000-00-00', 8368, '', NULL), (8369, 656, '', '', '', '0000-00-00', 8369, '', NULL), (8370, 657, '', '', '', '0000-00-00', 8370, '', NULL), (8371, 658, '', '', '', '0000-00-00', 8371, '', NULL), (8372, 659, 'S/N 99322647', 'CDI Dial Indicator (OOS) (D-6027)', 'Range: 0.4\"', '2006-12-05', 8372, '12/5/2006', NULL), (8373, 660, 'S/N 2089 ', ' w/ Displacement (E-2309)', 'Range: 20 inches ', '2013-01-14', 8373, '1/14/2013', NULL), (8374, 661, 'S/N 110046612', ' w/ Horizontal Displacement (D-6027)', 'Range: 1 inches ', '2013-03-06', 8374, '3/6/2013', NULL), (8375, 662, '', '', '', '0000-00-00', 8375, '', NULL), (8376, 663, '', '', '', '0000-00-00', 8376, '', NULL), (8377, 664, '', '', '', '0000-00-00', 8377, '', NULL), (8378, 665, 'S/N', ' w/ Speed Control (Price Per Each Speed) (Man Specs)', 'Range: ', NULL, 8378, 'New', NULL), (8379, 666, '', '', '', '0000-00-00', 8379, '', NULL), (8380, 667, '', '', '', '0000-00-00', 8380, '', NULL), (8381, 668, '', '', '', '0000-00-00', 8381, '', NULL), (8382, 669, 'S/N 0500547', 'United Calibration Corporation STM-10 Tensile Machine (E-4)', 'Range: 10K ', NULL, 8382, 'New', NULL), (8383, 670, '', '', '', '0000-00-00', 8383, '', NULL), (8384, 671, '', '', '', '0000-00-00', 8384, '', NULL), (8385, 672, 'S/N 94117 / NC#15', 'HCS Model HCS-LC-2502 Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K ', '2012-01-18', 8385, '1/18/2012', NULL), (8386, 673, '', '', '', '0000-00-00', 8386, '', NULL), (8387, 674, 'FDC-0508311-DA', '', '', '0000-00-00', 8387, '', NULL), (8388, 675, 'S/N 1245', ' w/ T & C Load Cell (E-4)', 'Range: ', NULL, 8388, 'New', NULL), (8389, 676, '', '', '', '0000-00-00', 8389, '', NULL), (8390, 677, '', '', '', '0000-00-00', 8390, '', NULL), (8391, 678, '', '', '', '0000-00-00', 8391, '', NULL), (8392, 679, '', '', '', '0000-00-00', 8392, '', NULL), (8393, 680, '', '', '', '0000-00-00', 8393, '', NULL), (8394, 681, 'S/N 3762', 'Hilti Pull Tester Model 59604/02/97 (Chicago) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs ', '2012-01-12', 8394, '1/12/2012', NULL), (8395, 682, 'S/N 96517', 'HCS Hydraulic Load Cell (E-4)', 'Range: 50K ', '2010-04-30', 8395, '4/30/2010', NULL), (8396, 683, '', '', '', '0000-00-00', 8396, '', NULL), (8397, 684, '', '', '', '0000-00-00', 8397, '', NULL), (8398, 685, 'S/N 961262', ' w/ GSE 350 Load Cell Indicator (E-4)', ' ', '0000-00-00', 8398, '', NULL), (8399, 686, '', '', '', '0000-00-00', 8399, '', NULL), (8400, 687, '', '', '', '0000-00-00', 8400, '', NULL), (8401, 688, '', '', '', '0000-00-00', 8401, '', NULL), (8402, 689, '', '', '', '0000-00-00', 8402, '', NULL), (8403, 690, 'S/N 004425', 'Hilti Pull Tester Model 59604/02/00 (Baltimore) (E-4)', 'Range: 150 lbs to 1,500 lbs', '2012-10-18', 8403, '10/18/2012', NULL), (8404, 691, '', ' ', '', '0000-00-00', 8404, '', NULL), (8405, 692, '', ' ', '', '0000-00-00', 8405, '', NULL), (8406, 693, '', ' w/ Frame #2', 'Range: 3K to 300K ', '0000-00-00', 8406, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (8407, 694, 'S/N A1-1507', 'ELE Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1K ', '2013-02-06', 8407, '2/6/2013', NULL), (8408, 695, 'S/N S-0903', ' w/ Dial Indicator (D-6027)', 'Range: ', '2013-02-06', 8408, '2/6/2013', NULL), (8409, 696, '', '', '', '0000-00-00', 8409, '', NULL), (8410, 697, '', '', '', '0000-00-00', 8410, '', NULL), (8411, 698, '', '', '', '0000-00-00', 8411, '', NULL), (8412, 699, '', '', '', '0000-00-00', 8412, '', NULL), (8413, 700, 'S/N 7929', 'Hercules Mdl. HSJ Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K', '2013-07-11', 8413, '7/11/2013', NULL), (8414, 701, '', '', '', '0000-00-00', 8414, '', NULL), (8415, 702, '', '', '', '0000-00-00', 8415, '', NULL), (8416, 703, '', '', '', '0000-00-00', 8416, '', NULL), (8417, 704, '', '', '', '0000-00-00', 8417, '', NULL), (8418, 705, '', '', '', '0000-00-00', 8418, '', NULL), (8419, 706, 'S/N DRCIPT1 ', 'Enerpac Hand Jack w/ RCH202/P392 Ram S/N C2308C ', 'Range: 40K (8,500 PSI) (E-4 & 2%)', '2012-03-02', 8419, '3/2/2012', NULL), (8420, 707, '', '', '', '0000-00-00', 8420, '', NULL), (8421, 708, '', '', '', '0000-00-00', 8421, '', NULL), (8422, 709, '', 'Need Tax Exempt form ', '', '0000-00-00', 8422, '', NULL), (8423, 710, '', '', '', '0000-00-00', 8423, '', NULL), (8424, 711, '', '', '', '0000-00-00', 8424, '', NULL), (8425, 712, '', '', '', '0000-00-00', 8425, '', NULL), (8426, 713, 'S/N MG0907', ' w/LVDT (D-6027)', 'Range: 0.1 Inch to 1 Inch', '2013-03-05', 8426, '3/5/2013', NULL), (8427, 714, '', '', '', '0000-00-00', 8427, '', NULL), (8428, 715, '', ' w/ Plus X Axis - T & C', 'Range: 50K', '2012-03-12', 8428, '3/12/2012', NULL), (8429, 716, 'S/N 8580-112380', 'Instron Biaxial Inplane Displacement (E-2309)', '', '2012-03-13', 8429, '3/13/2012', NULL), (8430, 717, ' ', ' ', ' ', '0000-00-00', 8430, '', NULL), (8431, 718, '', '', '', '0000-00-00', 8431, '', NULL), (8432, 719, 'S/N 21110034', ' w/ Load Cell (E-4 & 2% ManSpecs)', 'Range: 5K', '2013-04-01', 8432, '4/1/2013', NULL), (8433, 720, '', '', '', '0000-00-00', 8433, '', NULL), (8434, 721, '', '', '', '0000-00-00', 8434, '', NULL), (8435, 722, '', '', '', '0000-00-00', 8435, '', NULL), (8436, 723, '', '', '', '0000-00-00', 8436, '', NULL), (8437, 724, '', '', '', '0000-00-00', 8437, '', NULL), (8438, 725, '', '', '', '0000-00-00', 8438, '', NULL), (8439, 726, '', '', '', '0000-00-00', 8439, '', NULL), (8440, 727, '', '', '', '0000-00-00', 8440, '', NULL), (8441, 728, 'S/N 1089243', 'Ashcroft Mdl. 25-D-1005PS-02L-100 Pressure Gauge (D-5720)', 'Range: 100 PSI', '2013-05-09', 8441, '5/9/2013', NULL), (8442, 729, '', '', '', '0000-00-00', 8442, '', NULL), (8443, 730, 'S/N: E89762', 'Epsilon Extensometer Model 3542-0200-025-ST (E-83)', 'Range: 0.25 in/in, 2\" GL 25% Range', '2012-03-27', 8443, '3/27/2012', NULL), (8444, 731, '', '', '', '0000-00-00', 8444, '', NULL), (8445, 732, 'S/N H-1', 'Hamilton Prestress Jack (E-4 & PCI & 2%)', 'Range: 3K (710 PSI) / 35K', '2013-04-09', 8445, '4/9/2013', NULL), (8446, 733, '', '', '', '0000-00-00', 8446, '', NULL), (8447, 734, 'S/N C5349', ' w/ Displacement (E-2309)', 'Range: 20 inches ', '2013-09-30', 8447, '9/30/2013', NULL), (8448, 735, 'S/N 320', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 15K (MDOT# 208176)', '2013-04-08', 8448, '4/8/2013', NULL), (8449, 736, '', '', '', '0000-00-00', 8449, '', NULL), (8450, 737, 'S/N 131416', 'Proceq N-34 Hammer (C-805)', 'Range: 78 -82', '2013-04-09', 8450, '4/9/2013', NULL), (8451, 738, '', '', '', '0000-00-00', 8451, '', NULL), (8452, 739, '', 'Duplicate S/N 74127 on Material1 Profile was Scottville Location', '', '0000-00-00', 8452, '', NULL), (8453, 740, 'S/N 110944', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82 ', '2012-06-21', 8453, '6/21/2012', NULL), (8454, 741, 'S/N 994672', 'Simplex Post Tension Jack (E-4 & PCI 2% ManSpecs)', 'Range:35 K', '2013-04-16', 8454, '4/16/2013', NULL), (8455, 742, '', '', '', '0000-00-00', 8455, '', NULL), (8456, 743, 'S/N TEN006', 'Tinius Olsen Super L MTest Digital Universal Testing Machin (E-4)', 'Range: 1K to 120 K', '2012-04-24', 8456, '4/24/2012', NULL), (8457, 744, '', '', '', '0000-00-00', 8457, '', NULL), (8458, 745, '', ' ', '', '0000-00-00', 8458, '', NULL), (8459, 746, '', '', '', '0000-00-00', 8459, '', NULL), (8460, 747, '', '', '', '0000-00-00', 8460, '', NULL), (8461, 748, '', '', '', '0000-00-00', 8461, '', NULL), (8462, 749, 'S/N 6304', 'Instron Model 1125C w/ mTestwindows', '20 inches, Displacement', '2012-04-23', 8462, '4/23/2012', NULL), (8463, 750, '', '', '', '0000-00-00', 8463, '', NULL), (8464, 751, 'S/N 209312', ' w/Tinius Olsen LS-10%-2A Extensometer (E-83)', 'Range: 0.02 in/min (GL 2\") (10%)', '2013-05-02', 8464, '5/2/2013', NULL), (8465, 752, '', '', '', '0000-00-00', 8465, '', NULL), (8466, 753, '', '', '', '0000-00-00', 8466, '', NULL), (8467, 754, 'S/N C0502C', 'Enerpac RCH-202 Ram Pack (E-4 & Man Specs)', 'Range: 40 K (8,400 psi)', '2013-05-01', 8467, '5/1/2013', NULL), (8468, 755, '', ' ', '', '0000-00-00', 8468, '', NULL), (8469, 756, '', '', '', '0000-00-00', 8469, '', NULL), (8470, 757, 'S/N 112007', 'Humboldt HM-4156 Speed Control (E2658-11)', 'Range: 0.05 in/min', NULL, 8470, 'New', NULL), (8471, 758, '', '', '', '0000-00-00', 8471, '', NULL), (8472, 759, '', '', '', '0000-00-00', 8472, '', NULL), (8473, 760, '', '', '', '0000-00-00', 8473, '', NULL), (8474, 761, 'S/N STR-E2', 'Hercules Prestress Jack--Model HSJ (E-4 & PCI)(Moved to Detroit)', 'Range: 3,000 lbs. to 47,000 lbs.', '2005-06-21', 8474, '6/21/2005', NULL), (8475, 762, '', '', '', '0000-00-00', 8475, '', NULL), (8476, 763, '', '', '', '0000-00-00', 8476, '', NULL), (8477, 764, '', '', '', '0000-00-00', 8477, '', NULL), (8478, 765, '', '', '', '0000-00-00', 8478, '', NULL), (8479, 766, 'S/N M921138A62-15', 'LVDT ELE (D-6027)', 'Range: 2 in', '2012-09-04', 8479, '9/4/2012', NULL), (8480, 767, 'S/N 165925', ' w/ Displacment Encoder (E2309)', 'Range: 5\"', '2013-05-08', 8480, '5/8/2013', NULL), (8481, 768, 'S/N R-3996', 'with Load Cell (E-4) 5% & 100 % Range', 'Range: 1.5 K / 30 K', '2012-11-28', 8481, '11/28/2012', NULL), (8482, 769, 'S/N C-455', ' with Speed Control (E-2658-11) Recorder Proportional', 'Range: 0.5 in/min', '2012-11-27', 8482, '11/27/2012', NULL), (8483, 770, '', '', '', '0000-00-00', 8483, '', NULL), (8484, 771, '', '', '', '0000-00-00', 8484, '', NULL), (8485, 772, '', '', '', '0000-00-00', 8485, '', NULL), (8486, 773, '', '', '', '0000-00-00', 8486, '', NULL), (8487, 774, 'S/N 1265276', ' w/Load Cell TS-10K', 'Range: 100 lbs to 10,000 lbs', '2012-08-20', 8487, '8/20/2012', NULL), (8488, 775, '', '', '', '0000-00-00', 8488, '', NULL), (8489, 776, '', '', '', '0000-00-00', 8489, '', NULL), (8490, 777, 'S/N R4000', 'Instron 4206 Recorder (E2658-11)', 'Range: 2 in/min', '2012-11-28', 8490, '11/28/2012', NULL), (8491, 778, 'S/N C-455', ' with Speed Control (E2658-11) Recorder ', 'Range: 2 in/min', '2012-11-27', 8491, '11/27/2012', NULL), (8492, 779, 'S/N C-455', ' with Speed Control Digital (E2658-11)', 'Range: 20 in/min', '2012-11-27', 8492, '11/27/2012', NULL), (8493, 780, '', '', '', '0000-00-00', 8493, '', NULL), (8494, 781, '', '', '', '0000-00-00', 8494, '', NULL), (8495, 782, 'S/N B06912002C', 'Enerpac Post Tension Jack w/Custom Gauge (E-4 & PCI)', 'Range: 40,000 lbs', '2013-05-15', 8495, '5/15/2013', NULL), (8496, 783, '', '', '', '0000-00-00', 8496, '', NULL), (8497, 784, '', '', '', '0000-00-00', 8497, '', NULL), (8498, 785, '', '', '', '0000-00-00', 8498, '', NULL), (8499, 786, '', '', '', '0000-00-00', 8499, '', NULL), (8500, 787, 'S/N 129121', ' w/ Revere Load Cell #3 Blue (E-4)', 'Range: 100 lbs to 50K', '2013-05-16', 8500, '5/16/2013', NULL), (8501, 788, '', '', '', '0000-00-00', 8501, '', NULL), (8502, 789, '', 'DO NOT USE THIS PROFILE', '', '0000-00-00', 8502, '', NULL), (8503, 790, '', '', '', '0000-00-00', 8503, '', NULL), (8504, 791, 'S/N 211723', ' w/Speed Control (E2658-11)', 'Range: 0.012 in/min', '2013-06-04', 8504, '6/4/2013', NULL), (8505, 792, 'S/N 8612JG', 'Tinius Olsen Quattro w/total Comp TCSP1-50K-SS Load cell pkg', 'Range: 1,000 lbs to 150,000 lbs', '2012-08-23', 8505, '8/23/2012', NULL), (8506, 793, '', '', '', '0000-00-00', 8506, '', NULL), (8507, 794, '', '', '', '0000-00-00', 8507, '', NULL), (8508, 795, '', '', '', '0000-00-00', 8508, '', NULL), (8509, 796, 'S/N H3804365', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 8509, '6/4/2013', NULL), (8510, 797, '', '', '', '0000-00-00', 8510, '', NULL), (8511, 798, '', '', '', '0000-00-00', 8511, '', NULL), (8512, 799, '', '', '', '0000-00-00', 8512, '', NULL), (8513, 800, '', '', '', '0000-00-00', 8513, '', NULL), (8514, 801, '', '', '', '0000-00-00', 8514, '', NULL), (8515, 802, '', '', '', '0000-00-00', 8515, '', NULL), (8516, 803, '', '', '', '0000-00-00', 8516, '', NULL), (8517, 804, '', '', '', '0000-00-00', 8517, '', NULL), (8518, 805, '', '', '', '0000-00-00', 8518, '', NULL), (8519, 806, '', '', '', '0000-00-00', 8519, '', NULL), (8520, 807, '', '', '', '0000-00-00', 8520, '', NULL), (8521, 808, '', '', '', '0000-00-00', 8521, '', NULL), (8522, 809, '', '', '', '0000-00-00', 8522, '', NULL), (8523, 810, '', '', '', '0000-00-00', 8523, '', NULL), (8524, 811, '', '`', '', '0000-00-00', 8524, '', NULL), (8525, 812, '', '', '', '0000-00-00', 8525, '', NULL), (8526, 813, '', '', '', '0000-00-00', 8526, '', NULL), (8527, 814, 'S/N 260 ', ' w/ Instron 2630-108 Extensometer (ID# MVMTC 39) (E-83)', 'Range: 0.04 in/in (GL 1\")', '2013-07-23', 8527, '7/23/2013', NULL), (8528, 815, '', '', '', '0000-00-00', 8528, '', NULL), (8529, 816, '', '', '', '0000-00-00', 8529, '', NULL), (8530, 817, '', '', '', '0000-00-00', 8530, '', NULL), (8531, 818, '', '', '', '0000-00-00', 8531, '', NULL), (8532, 819, '', '', '', '0000-00-00', 8532, '', NULL), (8533, 820, '', '', '', '0000-00-00', 8533, '', NULL), (8534, 821, '', '', '', '0000-00-00', 8534, '', NULL), (8535, 822, '', '', '', '0000-00-00', 8535, '', NULL), (8536, 823, '', '', '', '0000-00-00', 8536, '', NULL), (8537, 824, '', '', '', '0000-00-00', 8537, '', NULL), (8538, 825, '', '', '', '0000-00-00', 8538, '', NULL), (8539, 826, 'S/N 4528575/5064', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 8539, '8/27/2013', NULL), (8540, 827, 'S/N 0508063-18', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 10K', '0000-00-00', 8540, '', NULL), (8541, 828, 'S/N 0507227-6 ID# 16', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2012-07-19', 8541, '7/19/2012', NULL), (8542, 829, 'S/N 0507280/21', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1%FS)', 'Range : 5 Ton', '2012-07-19', 8542, '7/19/2012', NULL), (8543, 830, '', '', '', '0000-00-00', 8543, '', NULL), (8544, 831, 'S/N 25330', 'Chatillon Hand Held Force Gauge T & C (E-4) ', 'Range: 500 lbs ', '2010-01-13', 8544, '1/13/2010', NULL), (8545, 832, '', '', '', '0000-00-00', 8545, '', NULL), (8546, 833, '', '', '', '0000-00-00', 8546, '', NULL), (8547, 834, '', '', '', '0000-00-00', 8547, '', NULL), (8548, 835, '', '', '', '0000-00-00', 8548, '', NULL), (8549, 836, ' ', ' ', ' ', '0000-00-00', 8549, '', NULL), (8550, 837, '', '', '', '0000-00-00', 8550, '', NULL), (8551, 838, '', '', '', '0000-00-00', 8551, '', NULL), (8552, 839, '', '', '', '0000-00-00', 8552, '', NULL), (8553, 840, '', '', '', '0000-00-00', 8553, '', NULL), (8554, 841, 'S/N 50378489', ' w/ LVDT (D-6027)', 'Range: 10mm', '2013-04-29', 8554, '4/29/2013', NULL), (8555, 842, 'S/N Unknown', 'Rogers Multi-Strand Jack (E-4 & PCI ManSpecs)', 'Range: 1,104,000 lbs / 4 Rams & Avg. ', '2013-08-28', 8555, '8/28/2013', NULL), (8556, 843, '', '', '', '0000-00-00', 8556, '', NULL), (8557, 844, '', '', '', '0000-00-00', 8557, '', NULL), (8558, 845, '', '', '', '0000-00-00', 8558, '', NULL), (8559, 846, '', '', '', '0000-00-00', 8559, '', NULL), (8560, 847, '', '', '', '0000-00-00', 8560, '', NULL), (8561, 848, '', '', '', '0000-00-00', 8561, '', NULL), (8562, 849, '', '', '', '0000-00-00', 8562, '', NULL), (8563, 850, '', '', '', '0000-00-00', 8563, '', NULL), (8564, 851, '', '', '', '0000-00-00', 8564, '', NULL), (8565, 852, '', '', '', '0000-00-00', 8565, '', NULL), (8566, 853, 'S/N M1489', 'Enerpac Hydraulic Ram (E-4 PCI & ManSpecs)', '', '2013-09-26', 8566, '9/26/2013', NULL), (8567, 854, ' ', ' ', ' ', '0000-00-00', 8567, '', NULL), (8568, 855, 'S/N 003', ' w/ Gauge ', 'Range: 30 Ton (4,400 PSI)', '2012-08-09', 8568, '8/9/2012', NULL), (8569, 856, '', '', '', '0000-00-00', 8569, '', NULL), (8570, 857, '', '', '', '0000-00-00', 8570, '', NULL), (8571, 858, '', '', '', '0000-00-00', 8571, '', NULL), (8572, 859, '', '', '', '0000-00-00', 8572, '', NULL), (8573, 860, 'S/N 1125', ' with Speed Control (E-2658)', 'Range: 0.05 in/min', '2013-09-04', 8573, '9/4/2013', NULL), (8574, 861, '', '', '', '0000-00-00', 8574, '', NULL), (8575, 862, '', '', '', '0000-00-00', 8575, '', NULL), (8576, 863, '', '', '', '0000-00-00', 8576, '', NULL), (8577, 864, '', '', '', '0000-00-00', 8577, '', NULL), (8578, 865, '', '', '', '0000-00-00', 8578, '', NULL), (8579, 866, '', '', '', '0000-00-00', 8579, '', NULL), (8580, 867, '', '', '', '0000-00-00', 8580, '', NULL), (8581, 868, '', '', '', '0000-00-00', 8581, '', NULL), (8582, 869, '', '', '', '0000-00-00', 8582, '', NULL), (8583, 870, 'S/N 1143423', ' w/ Total Comp Load Cell (E-4)', 'Range: 500 lbs', '2013-04-09', 8583, '4/9/2013', NULL), (8584, 871, '', '', '', '0000-00-00', 8584, '', NULL), (8585, 872, '', '', '', '0000-00-00', 8585, '', NULL), (8586, 873, 'S/N 23876', 'Soiltest AP-170-CY Single Proving Ring (E-4 & Man Specs)', 'Range: 6K ', '2013-10-02', 8586, '10/2/2013', NULL), (8587, 874, '', '', '', '0000-00-00', 8587, '', NULL), (8588, 875, '', '', '', '0000-00-00', 8588, '', NULL), (8589, 876, '', ' ', '', '0000-00-00', 8589, '', NULL), (8590, 877, '', '', '', '0000-00-00', 8590, '', NULL), (8591, 878, 'S/N 3747', 'Hilti Pull Tester Model 59604/02/97 (Detroit) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2012-08-16', 8591, '8/16/2012', NULL), (8592, 879, '', ' ***Needs sent In House to be calibrated***', '', '0000-00-00', 8592, '', NULL), (8593, 880, '', '', '', '0000-00-00', 8593, '', NULL), (8594, 881, '', '', '', '0000-00-00', 8594, '', NULL), (8595, 882, '', '', '', '0000-00-00', 8595, '', NULL), (8596, 883, '', '', '', '0000-00-00', 8596, '', NULL), (8597, 884, '', '', '', '0000-00-00', 8597, '', NULL), (8598, 885, '', '', '', '0000-00-00', 8598, '', NULL), (8599, 886, '', '', '', '0000-00-00', 8599, '', NULL), (8600, 887, '', '', '', '0000-00-00', 8600, '', NULL), (8601, 888, '', '', '', '0000-00-00', 8601, '', NULL), (8602, 889, '', '', '', '0000-00-00', 8602, '', NULL), (8603, 890, '', '', '', '0000-00-00', 8603, '', NULL), (8604, 891, 'S/N', 'Eilon Engineering RON 4000 S-1 Load Cell (ManSpec & 0.1%FS)', 'Range: 1 Ton ', NULL, 8604, 'New', NULL), (8605, 892, 'S/N 004476', 'Hilti Pull Tester Model (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2009-06-05', 8605, '6/5/2009', NULL), (8606, 893, '', '', '', '0000-00-00', 8606, '', NULL), (8607, 894, 'S/N 318172/606', 'Enerpac Post Tension Jack w/ RRH-606 Ram (E-4&PCI& ManSpecs)', 'Range: 5K (590 PSI) / 50K (4,300 PSI)', '2012-01-23', 8607, '1/23/2012', NULL), (8608, 895, '', '', '', '0000-00-00', 8608, '', NULL), (8609, 896, '', '', '', '0000-00-00', 8609, '', NULL), (8610, 897, '', '', '', '0000-00-00', 8610, '', NULL), (8611, 898, '', '', '', '0000-00-00', 8611, '', NULL), (8612, 899, '', '', '', '0000-00-00', 8612, '', NULL), (8613, 900, '', '', '', '0000-00-00', 8613, '', NULL), (8614, 901, 'S/N 1127581348', 'Ohaus Explorer Pro Scale Model # EP2201 (E-898)', 'Range: 2,200 Grams', '2012-12-05', 8614, '12/5/2012', NULL), (8615, 902, '', '', '', '0000-00-00', 8615, '', NULL), (8616, 903, 'S/N 063042', 'Ohaus SD-75 Scale (E898)', 'Range: 165lbs', '2013-10-02', 8616, '10/2/2013', NULL), (8617, 904, 'S/N 0708SBALA01016', ' w/ Geo Comp Vertical Force (E-4 & 2%) ', 'Range: 1/8 TSF to 14.7 TSF ', '2010-10-06', 8617, '10/6/2010', NULL), (8618, 905, 'S/N 2318', 'Geo Comp Flowtrac II Pressure Transducer (Cell) (D-5720)', 'Range: 200 PSI', '2010-10-06', 8618, '10/6/2010', NULL), (8619, 906, '', '', '', '0000-00-00', 8619, '', NULL), (8620, 907, 'S/N 003', ' w/ Gauge ', 'Range: 60K (4,400 PSI )', '2010-11-11', 8620, '11/11/2010', NULL), (8621, 908, '', '', '', '0000-00-00', 8621, '', NULL), (8622, 909, 'S/N 05086850/4', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100K (Asset # VMUQ-1940)', '2012-04-02', 8622, '4/2/2012', NULL), (8623, 910, '', '', '', '0000-00-00', 8623, '', NULL), (8624, 911, '', '', '', '0000-00-00', 8624, '', NULL), (8625, 912, 'S/N Unknown', 'Soiltest LC-8 Dial Indicator (D-6027)', 'Range: 1 inch', NULL, 8625, 'New', NULL), (8626, 913, '', '', '', '0000-00-00', 8626, '', NULL), (8627, 914, '', '', '', '0000-00-00', 8627, '', NULL), (8628, 915, 'S/N 103902A', ' w/ 10 Kip cell T & C (E-4)', 'Range: 100 lbs to 10K', '2012-01-03', 8628, '1/3/2012', NULL), (8629, 916, '', '', '', '0000-00-00', 8629, '', NULL), (8630, 917, '', '', '', '0000-00-00', 8630, '', NULL), (8631, 918, '', '', '', '0000-00-00', 8631, '', NULL), (8632, 919, 'S/N 00-66', 'ELE Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2012-12-19', 8632, '12/19/2012', NULL), (8633, 920, '', '', '', '0000-00-00', 8633, '', NULL), (8634, 921, 'S/N 637 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel #1', 'Range: 150 PSI (D-5720)', '2012-12-17', 8634, '12/17/2012', NULL), (8635, 922, 'S/N 001', 'Starrett Dial Indicator (D-6027)', 'Range: 0.4 Inch', '2012-12-17', 8635, '12/17/2012', NULL), (8636, 923, 'S/N 013416196/00370', ' w/ Dial Indicator Shear Displacement (D-6027)', 'Range: 1 Inch', '2012-12-17', 8636, '12/17/2012', NULL), (8637, 924, '', '', '', '0000-00-00', 8637, '', NULL), (8638, 925, '', '', '', '0000-00-00', 8638, '', NULL), (8639, 926, 'S/N 4843', 'Eilon Engineering RON 3025 S-3 Load Cell (ManSp & 0.1% FS)', 'Range: 600 lbs to 6,000 lbs', '2012-12-04', 8639, '12/4/2012', NULL), (8640, 927, '', '', '', '0000-00-00', 8640, '', NULL), (8641, 928, '', '', '', '0000-00-00', 8641, '', NULL), (8642, 929, '', ' w/ LVDT 2 (D-6027)', 'Range: 100 MILLS', '2013-01-07', 8642, '1/7/2013', NULL), (8643, 930, 'S/N 685951', ' w/ Load Cell (E-4)', 'Range: 2K', '2013-01-09', 8643, '1/9/2013', NULL), (8644, 931, 'S/N 685736', 'Range: 2K', '', '2013-01-07', 8644, '1/7/2013', NULL), (8645, 932, 'S/N', ' w/ Vertical Load (Dead Weights) (D-6027)', 'Range:', '0000-00-00', 8645, '', NULL), (8646, 933, 'S/N 2253', 'Geojac Consolidometer (E-4) (ID# G1418)', '(ID# G1418)', '0000-00-00', 8646, '', NULL), (8647, 934, '', '', '', '0000-00-00', 8647, '', NULL), (8648, 935, 'S/N L821248', ' w/ Load Cell (Shear Force)', 'Range: 1K', '2013-01-23', 8648, '1/23/2013', NULL), (8649, 936, 'S/N 081821811', 'Gilson Dial Indicator (D-6027)', 'Range: 1. \"', '2013-01-24', 8649, '1/24/2013', NULL), (8650, 937, '', '', '', '0000-00-00', 8650, '', NULL), (8651, 938, '', '', '', '0000-00-00', 8651, '', NULL), (8652, 939, '', '', '', '0000-00-00', 8652, '', NULL), (8653, 940, 'L13541700', 'S/N to Long', '', '0000-00-00', 8653, '', NULL), (8654, 941, 'S/N 05018250/4', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 50K', NULL, 8654, 'New', NULL), (8655, 942, '', '', '', '0000-00-00', 8655, '', NULL), (8656, 943, '', '', '', '0000-00-00', 8656, '', NULL), (8657, 944, 'S/N 03087214/9', 'Eilon Engineering RON 2501 S-25 (ManSpecs 0.1 %FS)', 'Range: 5K to 50K (ID# 815-29-06-079)', '2013-05-09', 8657, '5/9/2013', NULL), (8658, 945, '', '', '', '0000-00-00', 8658, '', NULL), (8659, 946, 'S/N 814009', ' w/ LVDT - Vertical Displacement (D-6027) (OOS)', 'Range: 0.04 inch to 0.4 inch', '2012-01-09', 8659, '1/9/2012', NULL), (8660, 947, 'S/N 818', 'Brainard-Kilman E-124 Pressure Transducer (OUT OF SERVICE) ', 'Cap: 15 to 150 (D-5720) ', '2004-03-29', 8660, '3/29/2004', NULL), (8661, 948, 'S/N 381', 'Brainard Kilman Consolidometer Mdl. S-450 (ID# 381)', 'Range: 16 TSF', '0000-00-00', 8661, '', NULL), (8662, 949, '', ' w/ Displacement (E-2309)', 'Range: 20 inches ', '2013-02-28', 8662, '2/28/2013', NULL), (8663, 950, '', '', '', '0000-00-00', 8663, '', NULL), (8664, 951, 'S/N 2', 'Soiltest Consolidation Machine Frame #2 (10:1 Ratio) (E-4)', 'Range: 760 Kg', '2013-02-26', 8664, '2/26/2013', NULL), (8665, 952, '', '', '', '0000-00-00', 8665, '', NULL), (8666, 953, 'S/N KW128', 'Karol Warner Unconfined Single Proving Ring (E-4 & Mans Spec)', 'Range: 2K', '2012-03-07', 8666, '3/7/2012', NULL), (8667, 954, '', '', '', '0000-00-00', 8667, '', NULL), (8668, 955, 'S/N 7125', 'Enerpac Ram Pack KCH202 (E-4 & 2% ManSpecs)', 'Range: 40 K', '2013-10-03', 8668, '10/3/2013', NULL), (8669, 956, '', '', '', '0000-00-00', 8669, '', NULL), (8670, 957, '', '', '', '0000-00-00', 8670, '', NULL), (8671, 958, '', '', '', '0000-00-00', 8671, '', NULL), (8672, 959, '', '', '', '0000-00-00', 8672, '', NULL), (8673, 960, '', '', '', '0000-00-00', 8673, '', NULL), (8674, 961, '', '', '', '0000-00-00', 8674, '', NULL), (8675, 962, '', '', '', '0000-00-00', 8675, '', NULL), (8676, 963, 'S/N 060749193', ' w/ BK 88-4070 Dial Indicator (D-6027)', 'Range: 0.4 inch', '2013-07-30', 8676, '7/30/2013', NULL), (8677, 964, '', '', '', '0000-00-00', 8677, '', NULL), (8678, 965, '', ' ', '', '0000-00-00', 8678, '', NULL), (8679, 966, '', '', '', '0000-00-00', 8679, '', NULL), (8680, 967, 'S/N 0034', 'VSL Bond Tester (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2011-10-26', 8680, '10/26/2011', NULL), (8681, 968, 'S/N 52517', 'Eilon Engineering RON 2000 S5 Load Cell (Man Specs 0.1% FS)', 'Range: 5 Ton', '2013-10-09', 8681, '10/9/2013', NULL), (8682, 969, 'S/N 122395', 'RON 2000 Eilon Engineering (Man Specs 0.1 % FS)', 'Range: 5 Ton', NULL, 8682, 'New', NULL), (8683, 970, '', '', '', '0000-00-00', 8683, '', NULL), (8684, 971, 'S/N PFS-01', 'TIF Electronic Mdl. 9010A Scale (moved) (E-898)', 'Range: 110 lbs ', '2010-04-13', 8684, '4/13/2010', NULL), (8685, 972, 'S/N 51901-861543', 'Karol Warner Model 351Consolidation (E-4 & ManSpec)(OOS)', 'Range: 1/8 TSF to 16 TSF (43.2 PSI)', '2011-02-08', 8685, '2/8/2011', NULL), (8686, 973, '', '', '', '0000-00-00', 8686, '', NULL), (8687, 974, '', '', '', '0000-00-00', 8687, '', NULL), (8688, 975, '', '', '', '0000-00-00', 8688, '', NULL), (8689, 976, '', '', '', '0000-00-00', 8689, '', NULL), (8690, 977, '', '', '', '0000-00-00', 8690, '', NULL), (8691, 978, '', '', '', '0000-00-00', 8691, '', NULL), (8692, 979, '', '', '', '0000-00-00', 8692, '', NULL), (8693, 980, '', '', '', '0000-00-00', 8693, '', NULL), (8694, 981, '', '', '', '0000-00-00', 8694, '', NULL), (8695, 982, '', '', '', '0000-00-00', 8695, '', NULL), (8696, 983, '', '', '', '0000-00-00', 8696, '', NULL), (8697, 984, '', '', '', '0000-00-00', 8697, '', NULL), (8698, 985, '', '', '', '0000-00-00', 8698, '', NULL), (8699, 986, '', '', '', '0000-00-00', 8699, '', NULL), (8700, 987, '', '', '', '0000-00-00', 8700, '', NULL), (8701, 988, '', '', '', '0000-00-00', 8701, '', NULL), (8702, 989, '', '', '', '0000-00-00', 8702, '', NULL), (8703, 990, '', '', '', '0000-00-00', 8703, '', NULL), (8704, 991, '', '', '', '0000-00-00', 8704, '', NULL), (8705, 992, 'S/N 093 (ID# Instron 4)', ' w/ Instron T & C Load Cell (E-4) ', 'Range: 1 lbs to 120 lbs (500 Newtons)', '2013-03-13', 8705, '3/13/2013', NULL), (8706, 993, 'S/N 86068', 'Forney FT-60-D Digital Compression Machine w/ IMS Digital (E-4)', 'Range: 2.5K to 250K (ID# 000075)', '2013-03-14', 8706, '3/14/2013', NULL), (8707, 994, '', '', '', '0000-00-00', 8707, '', NULL), (8708, 995, 'S/N 309', 'Brainard Kilman Model CBR E-214 Load Cell (E-4)', 'Range: 5K', '2013-03-12', 8708, '3/12/2013', NULL), (8709, 996, 'S/N 56416', 'Humboldt Master Loader Model HM2000 CBR w/Load Cell (E-4) ', 'Range: 5K', '2013-03-13', 8709, '3/13/2013', NULL), (8710, 997, 'S/N 1886', 'GCTS Point Load Tester Model PTL-100 (E-4 & 2% ManSpecs)', 'Range: 45 KN', '2013-03-12', 8710, '3/12/2013', NULL), (8711, 998, ' ', ' ', ' ', '0000-00-00', 8711, '', NULL), (8712, 999, '', '', '', '0000-00-00', 8712, '', NULL), (8713, 1000, '', '', '', '0000-00-00', 8713, '', NULL), (8714, 1001, '', '', '', '0000-00-00', 8714, '', NULL), (8715, 1002, 'S/N 4509', ' w/ Position Encoder (E-2309)', 'Range: 5 inches ', '2013-05-28', 8715, '5/28/2013', NULL), (8716, 1003, '', '', '', '0000-00-00', 8716, '', NULL), (8717, 1004, 'S/N 112', ' w/ Model E 490 Recorder (OOS) (Not Done)', 'Range: 5K (0.7\")', '0000-00-00', 8717, '', NULL), (8718, 1005, '', '', '', '0000-00-00', 8718, '', NULL), (8719, 1006, '', '', '', '0000-00-00', 8719, '', NULL), (8720, 1007, 'S/N 323560A', ' w/ ATSA 101 Load Cell (E-4)', '', '0000-00-00', 8720, '', NULL), (8721, 1008, 'S/N E91369', ' w/ Epsilon 3542-0100-020-ST Extensometer (E-83)', 'Range: 0.2 in/in ', '2013-06-03', 8721, '6/3/2013', NULL), (8722, 1009, '', '', '', '0000-00-00', 8722, '', NULL), (8723, 1010, '', '', '', '0000-00-00', 8723, '', NULL), (8724, 1011, 'S/N 04', 'Stress Con Prestress Jack (E-4& PCI) ', 'Range: 4K/5K Final 50,000 lbs', '2012-10-01', 8724, '10/1/2012', NULL), (8725, 1012, 'S/N 1339', 'Hamilton Mdl. 4045 Prestress Jack (E-4 & PCI)', 'Range: 2K / 37K ', '2013-07-10', 8725, '7/10/2013', NULL), (8726, 1013, 'S/N 138512 /ID# LabD44', 'RDP LVDT D6/05000A w/ Strainsmart DAQ Channel #1 (D-6027)', 'Range: 0.25 mm to 2.5 mm', '2013-06-12', 8726, '6/12/2013', NULL), (8727, 1014, 'S/N 400', ' w/ Extra Gauge- Prepull Jack #4 (E-4 & PCI)', 'Ranges: 4K', '2013-07-15', 8727, '7/15/2013', NULL), (8728, 1015, 'S/N Jack #5', 'Simms Prestress Jack w/ Gauge #602 Pre-Pull (E-4 & PCI)', 'Range: 4K / 35K Gauge #11 Final ', '2013-07-15', 8728, '7/15/2013', NULL), (8729, 1016, '', '', '', '0000-00-00', 8729, '', NULL), (8730, 1017, '', '', '', '0000-00-00', 8730, '', NULL), (8731, 1018, 'S/N 326386', 'SPX Powerteam Mdl. PE550 Poste Tension Jack (E-4 PCI)', 'Range: 35K (5,000 PSI)', '2013-01-14', 8731, '1/14/2013', NULL), (8732, 1019, 'S/N 822535', 'Simplex Post Tension Jack (E-4 & PCI & ManSpec)', 'Range: 80K (5,500 PSI)', '2013-08-12', 8732, '8/12/2013', NULL), (8733, 1020, '', '', '', '0000-00-00', 8733, '', NULL), (8734, 1021, '', '', '', '0000-00-00', 8734, '', NULL), (8735, 1022, '', '', '', '0000-00-00', 8735, '', NULL), (8736, 1023, 'S/N 34210 (ID# 07-102)', ' w/ Displacement w/Celesco Model DPT250-0025-111-1330 Encoder ', 'Range: 5 Inches (E-2309)', '2013-02-05', 8736, '2/5/2013', NULL), (8737, 1024, '', '', '', '0000-00-00', 8737, '', NULL), (8738, 1025, '', '', '', '0000-00-00', 8738, '', NULL), (8739, 1026, 'S/N Bear Unit 0002 ', 'Stress Con Prestress Jack (E-4 & PCI)', 'Range: 4K / 50K ', '2013-10-01', 8739, '10/1/2013', NULL), (8740, 1027, '', '', '', '0000-00-00', 8740, '', NULL), (8741, 1028, '', '', '', '0000-00-00', 8741, '', NULL), (8742, 1029, '', '', '', '0000-00-00', 8742, '', NULL), (8743, 1030, 'S/N PT-1', 'Stressing Jack Power Team', 'Range: 40,000 K (6,600 PSI)', '2013-01-03', 8743, '1/3/2013', NULL), (8744, 1031, '', '', '', '0000-00-00', 8744, '', NULL), (8745, 1032, '', '', '', '0000-00-00', 8745, '', NULL), (8746, 1033, '', '', '', '0000-00-00', 8746, '', NULL), (8747, 1034, '', '', '', '0000-00-00', 8747, '', NULL), (8748, 1035, '', '', '', '0000-00-00', 8748, '', NULL), (8749, 1036, 'S/N 1495', 'HMA Lab Supplies Mdl. 9210 Digital Manometer (Man Specs & 2%)', 'Range: 800 mm Hg', '2013-04-03', 8749, '4/3/2013', NULL), (8750, 1037, 'S/N 4081 ', 'Boart Longyear Direct Shear Machine w/Vertical LVDT (D-6027)', 'Range: 0.5 Inch ADU Channel 31', '2012-04-04', 8750, '4/4/2012', NULL), (8751, 1038, 'S/N 344 ', 'Geo Comp CBR Load Cell (E-4)', 'Range: 5K ADU Channel 23 ', '2012-04-04', 8751, '4/4/2012', NULL), (8752, 1039, 'S/N 245/110', 'Brainard-Kilman LVDT Model E-310 (Channel #18)', 'Range: 0.4 Inches (D-6027)', '2012-04-04', 8752, '4/4/2012', NULL), (8753, 1040, '', '', '', '0000-00-00', 8753, '', NULL), (8754, 1041, 'S/N 1346594', ' w/ Total Comp Load Cell Model TS-150, Load Channel #4 (E-4)', 'Range: 150 lbs ', '2013-04-02', 8754, '4/2/2013', NULL), (8755, 1042, 'S/N 1554/308', 'Brainard Kilman Mdl. E-214 Load Cell w/ E-400 Digital (E-4)', 'Range: 5K', '2013-04-02', 8755, '4/2/2013', NULL), (8756, 1043, 'S/N 249', 'HMA Lab Supplies Mdl. 9210 Digital Manometer (D-5720 & 2%)', 'Range: 800 mm Hg ', '2013-04-02', 8756, '4/2/2013', NULL), (8757, 1044, 'S/N97079 (ID#004808)', 'Forney LT-900/920-CS-100-7 Universal Testing Machine (E-4)', 'Range: 3K to 400K ', '2013-04-02', 8757, '4/2/2013', NULL), (8758, 1045, '', '', '', '0000-00-00', 8758, '', NULL), (8759, 1046, 'S/N 1107435', 'Humboldt mini Logger with 500 lbf cell S/N:176', 'Range: 500lbf (Channel 1)', '2001-06-26', 8759, '06/26/20012', NULL), (8760, 1047, '', '', '', '0000-00-00', 8760, '', NULL), (8761, 1048, '', '', '', '0000-00-00', 8761, '', NULL), (8762, 1049, '', '', '', '0000-00-00', 8762, '', NULL), (8763, 1050, '', '', '', '0000-00-00', 8763, '', NULL), (8764, 1051, 'S/N 12056', 'Skidmore Wilhelm Mdl. MS Bolt Tester (E-4 & 2% ManSpecs)', 'Range: 90K ', '2013-04-08', 8764, '4/8/2013', NULL), (8765, 1052, '', '', '', '0000-00-00', 8765, '', NULL), (8766, 1053, '', '', '', '0000-00-00', 8766, '', NULL), (8767, 1054, 'S/N 114081', 'Omega PX180B Pressure Transducer (D-5720)', 'Range: 100 PSI (ID# 000882)', '2013-04-11', 8767, '4/11/2013', NULL), (8768, 1055, 'S/N 591', 'Soiltest CT-710 Compression Machine (E-4)', 'Range: 250K (MTC# 000591)', '2013-04-10', 8768, '4/10/2013', NULL), (8769, 1056, '', '', '', '0000-00-00', 8769, '', NULL), (8770, 1057, '', '', '', '0000-00-00', 8770, '', NULL), (8771, 1058, '', '', '', '0000-00-00', 8771, '', NULL), (8772, 1059, 'S/N RJ107', 'McDaniel Controls Inc Dial Gauge (OOS) (D-5720)', 'Range: 1,000 psi', '2012-05-07', 8772, '5/7/2012', NULL), (8773, 1060, 'S/N RJ106', 'McDaniel Controls Inc Dial Gauge (D-5720)', 'Range: 600 psi', '2011-04-27', 8773, '4/27/2011', NULL), (8774, 1061, 'S/N TEN013', 'Dillon Mdl. AP-5000 Pull Tester (E-4 & 2%)', 'Range: 5K', '2013-04-25', 8774, '4/25/2013', NULL), (8775, 1062, '', '', '', '0000-00-00', 8775, '', NULL), (8776, 1063, '', '', '', '0000-00-00', 8776, '', NULL), (8777, 1064, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 8777, '', NULL), (8778, 1065, '', '', '', '0000-00-00', 8778, '', NULL), (8779, 1066, 'S/N U0488S', 'Transducer', 'Range: 9,000 lbs', '2006-04-10', 8779, '4/10/2006', NULL), (8780, 1067, 'S/N 804', 'Boart Longyear E-124 Transducer (D-5720)', 'Cap: 150 psi', '2005-05-06', 8780, '5/6/2005', NULL), (8781, 1068, '', '', '', '0000-00-00', 8781, '', NULL), (8782, 1069, '', '', '', '0000-00-00', 8782, '', NULL), (8783, 1070, '', '', '', '0000-00-00', 8783, '', NULL), (8784, 1071, '', '', '', '0000-00-00', 8784, '', NULL), (8785, 1072, '', '', '', '0000-00-00', 8785, '', NULL), (8786, 1073, '', '', '', '0000-00-00', 8786, '', NULL), (8787, 1074, '', '', '', '0000-00-00', 8787, '', NULL), (8788, 1075, '', '', '', '0000-00-00', 8788, '', NULL), (8789, 1076, 'S/N B32506', 'Chatillon Pull Tester DFIS-500 Digital (T & C) (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 8789, '4/28/1998', NULL), (8790, 1077, 'S/N B32139', 'Chatillon Force Gauge Digital DFIS-200 (E-4)', 'Range: 20 to 200 lb. ', '1998-04-29', 8790, '4/29/1998', NULL), (8791, 1078, '', '', '', '0000-00-00', 8791, '', NULL), (8792, 1079, '', '', '', '0000-00-00', 8792, '', NULL), (8793, 1080, '', '', '', '0000-00-00', 8793, '', NULL), (8794, 1081, '', '', '', '0000-00-00', 8794, '', NULL), (8795, 1082, '', '', '', '0000-00-00', 8795, '', NULL), (8796, 1083, '', '', '', '0000-00-00', 8796, '', NULL), (8797, 1084, '', '', '', '0000-00-00', 8797, '', NULL), (8798, 1085, '', '', '', '0000-00-00', 8798, '', NULL), (8799, 1086, '', '', '', '0000-00-00', 8799, '', NULL), (8800, 1087, '', '', '', '0000-00-00', 8800, '', NULL), (8801, 1088, '', '', '', '0000-00-00', 8801, '', NULL), (8802, 1089, '', '', '', '0000-00-00', 8802, '', NULL), (8803, 1090, '', '', '', '0000-00-00', 8803, '', NULL), (8804, 1091, '', '', '', '0000-00-00', 8804, '', NULL), (8805, 1092, '', '', '', '0000-00-00', 8805, '', NULL), (8806, 1093, '', '', '', '0000-00-00', 8806, '', NULL), (8807, 1094, '', '', '', '0000-00-00', 8807, '', NULL), (8808, 1095, '', '', '', '0000-00-00', 8808, '', NULL), (8809, 1096, '', '', '', '0000-00-00', 8809, '', NULL), (8810, 1097, '', '', '', '0000-00-00', 8810, '', NULL), (8811, 1098, '', '', '', '0000-00-00', 8811, '', NULL), (8812, 1099, '', '', '', '0000-00-00', 8812, '', NULL), (8813, 1100, '', '', '', '0000-00-00', 8813, '', NULL), (8814, 1101, '', '', '', '0000-00-00', 8814, '', NULL), (8815, 1102, '', '', '', '0000-00-00', 8815, '', NULL), (8816, 1103, '', '', '', '0000-00-00', 8816, '', NULL), (8817, 1104, 'S/N 19832', 'Soiltest Double Proving Ring Model LC-2 (E-4)', 'Cap: 500#', '1998-07-25', 8817, '7/25/1998', NULL), (8818, 1105, '', '', '', '0000-00-00', 8818, '', NULL), (8819, 1106, '', '', '', '0000-00-00', 8819, '', NULL), (8820, 1107, '', '', '', '0000-00-00', 8820, '', NULL), (8821, 1108, '', '', '', '0000-00-00', 8821, '', NULL), (8822, 1109, '', '', '', '0000-00-00', 8822, '', NULL), (8823, 1110, '', '', '', '0000-00-00', 8823, '', NULL), (8824, 1111, '', '', '', '0000-00-00', 8824, '', NULL), (8825, 1112, '', '', '', '0000-00-00', 8825, '', NULL), (8826, 1113, '', '', '', '0000-00-00', 8826, '', NULL), (8827, 1114, '', '', '', '0000-00-00', 8827, '', NULL), (8828, 1115, 'S/N 250', 'Durham Geo LVDT & Dial Indicator', 'Range:', NULL, 8828, 'New', NULL), (8829, 1116, '', '', '', '0000-00-00', 8829, '', NULL), (8830, 1117, '', '', '', '0000-00-00', 8830, '', NULL), (8831, 1118, '', '', '', '0000-00-00', 8831, '', NULL), (8832, 1119, '', 'Postage', '', '0000-00-00', 8832, '', NULL), (8833, 1120, '', '', '', '0000-00-00', 8833, '', NULL), (8834, 1121, 'S/N LVDT 3', 'with FS-2000 LVDT 3 Frame 875 / ID # 3895-0001 (ISO-9513) ', 'Range: 2 Inches', '2007-05-07', 8834, '5/7/2007', NULL), (8835, 1122, 'S/N 3345-Q7175', ' w/ Speed Control (Man Specs)', 'Range: 0.5 in/sec', '2008-04-23', 8835, '4/23/2008', NULL), (8836, 1123, '', '', '', '0000-00-00', 8836, '', NULL), (8837, 1124, 'S/N 113', 'Durham Geo Flex Panel', 'Range: 150 psi', NULL, 8837, 'New', NULL), (8838, 1125, ' S/N 802/12758', 'Brainard Kilman Recorder Model 700 Series AD 720E (D-6027)', 'Range: 0.7 Inch', '2007-04-03', 8838, '4/3/2007', NULL), (8839, 1126, 'S/N 127', 'Geo Durham E3ll LVDT w/E-400 Digital (D-6027)', '', '0000-00-00', 8839, '', NULL), (8840, 1127, '', '', '', '0000-00-00', 8840, '', NULL), (8841, 1128, '', '', '', '0000-00-00', 8841, '', NULL), (8842, 1129, '', '', '', '0000-00-00', 8842, '', NULL), (8843, 1130, '', '', '', '0000-00-00', 8843, '', NULL), (8844, 1131, '', '', '', '0000-00-00', 8844, '', NULL), (8845, 1132, 'S/N 2', 'March Dial Pressure Gauge-Model Master Gauge (D-5720)', 'Range: 0- 160 psi (OOS)', '2003-04-30', 8845, '4/30/2003', NULL), (8846, 1133, '', '', '', '0000-00-00', 8846, '', NULL), (8847, 1134, 'S/N 11351125140824P', 'Ohaus Scale Mdl. EP2102 ', 'Range: 1,200 Grams ', '2007-05-01', 8847, '5/1/2007', NULL), (8848, 1135, '', '', '', '0000-00-00', 8848, '', NULL), (8849, 1136, '', '', '', '0000-00-00', 8849, '', NULL), (8850, 1137, '', '', '', '0000-00-00', 8850, '', NULL), (8851, 1138, '', '', '', '0000-00-00', 8851, '', NULL), (8852, 1139, '', '', '', '0000-00-00', 8852, '', NULL), (8853, 1140, '', '', '', '0000-00-00', 8853, '', NULL), (8854, 1141, '', '', '', '0000-00-00', 8854, '', NULL), (8855, 1142, 'S/N 174', 'Karol Warner Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 1K', '2013-08-06', 8855, '8/6/2013', NULL), (8856, 1143, '', '', '', '0000-00-00', 8856, '', NULL), (8857, 1144, '', '', '', '0000-00-00', 8857, '', NULL), (8858, 1145, '', '', '', '0000-00-00', 8858, '', NULL), (8859, 1146, '', '', '', '0000-00-00', 8859, '', NULL), (8860, 1147, 'S/N Unknown', 'Brainard Kilman Digital Pressure Transducer (D-5720)', 'Cap: 10 psi to 100 psi', '2013-08-06', 8860, '8/6/2013', NULL), (8861, 1148, '', '', '', '0000-00-00', 8861, '', NULL), (8862, 1149, '', '', '', '0000-00-00', 8862, '', NULL), (8863, 1150, '', '', '', '0000-00-00', 8863, '', NULL), (8864, 1151, '', '', '', '0000-00-00', 8864, '', NULL), (8865, 1152, '', '', '', '0000-00-00', 8865, '', NULL), (8866, 1153, '', '', '', '0000-00-00', 8866, '', NULL), (8867, 1154, '', '', '', '0000-00-00', 8867, '', NULL), (8868, 1155, '', '', '', '0000-00-00', 8868, '', NULL), (8869, 1156, '', 'GET PO# ON SITE!!!!!', '', '0000-00-00', 8869, '', NULL), (8870, 1157, '', '', '', '0000-00-00', 8870, '', NULL), (8871, 1158, 'S/N 18811', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 7.5K', '2013-08-21', 8871, '8/21/2013', NULL), (8872, 1159, 'S/N 111256652', 'Humbolt H- 4158-1 Dial Indicator (D 6027)', 'Range 1 inch', '2013-08-21', 8872, '8/21/2013', NULL), (8873, 1160, '', '', '', '0000-00-00', 8873, '', NULL), (8874, 1161, '', '', '', '0000-00-00', 8874, '', NULL), (8875, 1162, '', '', '', '0000-00-00', 8875, '', NULL), (8876, 1163, '', '', '', '0000-00-00', 8876, '', NULL), (8877, 1164, '', '', '', '0000-00-00', 8877, '', NULL), (8878, 1165, '', '', '', '0000-00-00', 8878, '', NULL), (8879, 1166, '', '', '', '0000-00-00', 8879, '', NULL), (8880, 1167, 'S/N #2', 'Enerpac Model RCS 1002 Jack', 'Range: 160K', '2006-08-07', 8880, '8/7/2006', NULL), (8881, 1168, '', '', '', '0000-00-00', 8881, '', NULL), (8882, 1169, '', '', '', '0000-00-00', 8882, '', NULL), (8883, 1170, '', '', '', '0000-00-00', 8883, '', NULL), (8884, 1171, '', '', '', '0000-00-00', 8884, '', NULL), (8885, 1172, '', '', '', '0000-00-00', 8885, '', NULL), (8886, 1173, '', '', '', '0000-00-00', 8886, '', NULL), (8887, 1174, '', '', '', '0000-00-00', 8887, '', NULL), (8888, 1175, '', '', '', '0000-00-00', 8888, '', NULL), (8889, 1176, '', '', '', '0000-00-00', 8889, '', NULL), (8890, 1177, '', '', '', '0000-00-00', 8890, '', NULL), (8891, 1178, '', '', '', '0000-00-00', 8891, '', NULL), (8892, 1179, '', '', '', '0000-00-00', 8892, '', NULL), (8893, 1180, '', '', '', '0000-00-00', 8893, '', NULL), (8894, 1181, '', '', '', '0000-00-00', 8894, '', NULL), (8895, 1182, '', '', '', '0000-00-00', 8895, '', NULL), (8896, 1183, '', '', '', '0000-00-00', 8896, '', NULL), (8897, 1184, '', '', '', '0000-00-00', 8897, '', NULL), (8898, 1185, '', '', '', '0000-00-00', 8898, '', NULL), (8899, 1186, '', '', '', '0000-00-00', 8899, '', NULL), (8900, 1187, '', '', '', '0000-00-00', 8900, '', NULL), (8901, 1188, '', '', '', '0000-00-00', 8901, '', NULL), (8902, 1189, '', '', '', '0000-00-00', 8902, '', NULL), (8903, 1190, '', '', '', '0000-00-00', 8903, '', NULL), (8904, 1191, 'S/N 220061', 'Wykeham-Farrance Model 2956 Proving Ring ', 'Cap: 2,000 lbs.', '1998-09-03', 8904, '9/3/1998', NULL), (8905, 1192, '', '', '', '0000-00-00', 8905, '', NULL), (8906, 1193, '', '', '', '0000-00-00', 8906, '', NULL), (8907, 1194, '', '', '', '0000-00-00', 8907, '', NULL), (8908, 1195, '', '', '', '0000-00-00', 8908, '', NULL), (8909, 1196, '', '', '', '0000-00-00', 8909, '', NULL), (8910, 1197, '', '', '', '0000-00-00', 8910, '', NULL), (8911, 1198, '', '614-778-4305', '', '0000-00-00', 8911, '', NULL), (8912, 1199, '', '', '', '0000-00-00', 8912, '', NULL), (8913, 1200, '', '', '', '0000-00-00', 8913, '', NULL), (8914, 1201, 'S/N 920', 'BK Pore Pressl--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 8914, '8/30/2006', NULL), (8915, 1202, '', '', '', '0000-00-00', 8915, '', NULL), (8916, 1203, '', '', '', '0000-00-00', 8916, '', NULL), (8917, 1204, '', '', '', '0000-00-00', 8917, '', NULL), (8918, 1205, 'Delbarton, WV 25670', '', '', '0000-00-00', 8918, '', NULL), (8919, 1206, '', '', '', '0000-00-00', 8919, '', NULL), (8920, 1207, '', '', '', '0000-00-00', 8920, '', NULL), (8921, 1208, 'S/N 18500', 'Soiltest Double Proving Ring (OOS) (E-4 & Man Specs)', 'Cap: 500 lbs', '2006-08-29', 8921, '8/29/2006', NULL), (8922, 1209, '', '', '', '0000-00-00', 8922, '', NULL), (8923, 1210, '', '', '', '0000-00-00', 8923, '', NULL), (8924, 1211, 'S/N 764730', '3D Instrument / Analog P/N 25544-24B13 0.25% Accuracy', 'Range: 15 PSI to 150 PSI', '2007-08-10', 8924, '8/10/2007', NULL), (8925, 1212, '', '', '', '0000-00-00', 8925, '', NULL), (8926, 1213, '', '', '', '0000-00-00', 8926, '', NULL), (8927, 1214, 'S/N 133', 'Karol Warner Mdl. 5000R Single Proving Ring (E-4 & Man Spec)', 'Cap: 5K', '2012-12-12', 8927, '12/12/2012', NULL), (8928, 1215, '', '', '', '0000-00-00', 8928, '', NULL), (8929, 1216, 'S/N 85467', 'Teclock AI-921 Dial Indicator (D-6027)', 'Range: 1 inches', '2012-12-12', 8929, '12/12/2012', NULL), (8930, 1217, '', '', '', '0000-00-00', 8930, '', NULL), (8931, 1218, '', '', '', '0000-00-00', 8931, '', NULL), (8932, 1219, '', '', '', '0000-00-00', 8932, '', NULL), (8933, 1220, 'S/N 022639505', 'ELE Displacement Indicator', 'Range: 1 Inch', NULL, 8933, 'New', NULL), (8934, 1221, 'S/N 693186A ', ' w/JRT Load Cell Mdl. JRT-50K-35596 (E-4) ', 'Range: Low 10K / High 50K', '2007-08-03', 8934, '8/3/2007', NULL), (8935, 1222, '', '', '', '0000-00-00', 8935, '', NULL), (8936, 1223, '', '', '', '0000-00-00', 8936, '', NULL), (8937, 1224, '', '', '', '0000-00-00', 8937, '', NULL), (8938, 1225, '', '', '', '0000-00-00', 8938, '', NULL), (8939, 1226, '', '', '', '0000-00-00', 8939, '', NULL), (8940, 1227, '', '', '', '0000-00-00', 8940, '', NULL), (8941, 1228, '', '', '', '0000-00-00', 8941, '', NULL), (8942, 1229, '', '', '', '0000-00-00', 8942, '', NULL), (8943, 1230, '', '', '', '0000-00-00', 8943, '', NULL), (8944, 1231, '', '', '', '0000-00-00', 8944, '', NULL), (8945, 1232, '', '', '', '0000-00-00', 8945, '', NULL), (8946, 1233, '', '', '', '0000-00-00', 8946, '', NULL), (8947, 1234, '', '', '', '0000-00-00', 8947, '', NULL), (8948, 1235, '', '', '', '0000-00-00', 8948, '', NULL), (8949, 1236, '', '', '', '0000-00-00', 8949, '', NULL), (8950, 1237, '', '', '', '0000-00-00', 8950, '', NULL), (8951, 1238, '', '', '', '0000-00-00', 8951, '', NULL), (8952, 1239, '', '$450.00 core charge will be assessed. ', '', '0000-00-00', 8952, '', NULL), (8953, 1240, '', '', '', '0000-00-00', 8953, '', NULL), (8954, 1241, '', '', '', '0000-00-00', 8954, '', NULL), (8955, 1242, '', '', '', '0000-00-00', 8955, '', NULL), (8956, 1243, 'S/N 2155 (Angle)', 'Pine Instruments AFG1A Gyratory Compactor(AASHTO&ManSpecs)', 'Cap:5KN/10.5KN 152.4mm 30RPM ', '2012-12-14', 8956, '12/14/2012', NULL), (8957, 1244, 'S/N 110-10', 'Hercules Prestress Jack (E4 & PCI)', 'Range: 4K / 35K', '2012-12-11', 8957, '12/11/2012', NULL), (8958, 1245, '', '', '', '0000-00-00', 8958, '', NULL), (8959, 1246, '', '', '', '0000-00-00', 8959, '', NULL), (8960, 1247, '', '', '', '0000-00-00', 8960, '', NULL), (8961, 1248, '', '', '', '0000-00-00', 8961, '', NULL), (8962, 1249, '', '', '', '0000-00-00', 8962, '', NULL), (8963, 1250, '', '', '', '0000-00-00', 8963, '', NULL), (8964, 1251, 'S/N 22025', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 5K ', '2012-12-13', 8964, '12/13/2012', NULL), (8965, 1252, '', '', '', '0000-00-00', 8965, '', NULL), (8966, 1253, '', '', '', '0000-00-00', 8966, '', NULL), (8967, 1254, 'S/N PS3115', 'Geo Jac Pressure Transducer (D-5720)', 'Range: 100 PSI', '2012-12-12', 8967, '12/12/2012', NULL), (8968, 1255, '', '', '', '0000-00-00', 8968, '', NULL), (8969, 1256, 'S/N ECA-4-48-99515', 'Powerteam SPX Post Tension Jack (E-4 & PCI)', 'Range: 30K', '2005-12-09', 8969, '12/9/2005', NULL), (8970, 1257, '', '', '', '0000-00-00', 8970, '', NULL), (8971, 1258, '', '', '', '0000-00-00', 8971, '', NULL), (8972, 1259, '', '', '', '0000-00-00', 8972, '', NULL), (8973, 1260, '', 'Sent quote 040908B for new digital, did not get a signed quote ', '', '0000-00-00', 8973, '', NULL), (8974, 1261, '', '', '', '0000-00-00', 8974, '', NULL), (8975, 1262, '', '', '', '0000-00-00', 8975, '', NULL), (8976, 1263, '', '', '', '0000-00-00', 8976, '', NULL), (8977, 1264, '', '', '', '0000-00-00', 8977, '', NULL), (8978, 1265, '', '', '', '0000-00-00', 8978, '', NULL), (8979, 1266, '', '', '', '0000-00-00', 8979, '', NULL), (8980, 1267, '', '', '', '0000-00-00', 8980, '', NULL), (8981, 1268, '', '', '', '0000-00-00', 8981, '', NULL), (8982, 1269, '', '', '', '0000-00-00', 8982, '', NULL), (8983, 1270, '', 'Customer ordering new valve & wants fluid changed ', '', '0000-00-00', 8983, '', NULL), (8984, 1271, '', '', '', '0000-00-00', 8984, '', NULL), (8985, 1272, '', 'Make sure you have 290 Manual ', '', '0000-00-00', 8985, '', NULL), (8986, 1273, '', '', '', '0000-00-00', 8986, '', NULL), (8987, 1274, '', '', '', '0000-00-00', 8987, '', NULL), (8988, 1275, '', '', '', '0000-00-00', 8988, '', NULL), (8989, 1276, 'S/N 26324', 'ELE Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs', '2013-02-06', 8989, '2/6/2013', NULL), (8990, 1277, '', '', '', '0000-00-00', 8990, '', NULL), (8991, 1278, 'S/N 269702', 'Artech 20210-2.5K Load Cell w/ E405 Digital (E-4)', 'Range: 2.5K', '2012-02-07', 8991, '2/7/2012', NULL), (8992, 1279, 'S/N 355064', 'Powerteam PE554 Post Tension Jack (E-4 & PCI)', 'Range: 35K (8,000 psi) ', '2013-02-07', 8992, '2/7/2013', NULL), (8993, 1280, '', '', '', '0000-00-00', 8993, '', NULL), (8994, 1281, '', '', '', '0000-00-00', 8994, '', NULL), (8995, 1282, '', '', '', '0000-00-00', 8995, '', NULL), (8996, 1283, '', '', '', '0000-00-00', 8996, '', NULL), (8997, 1284, 'S/N 21402', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs) ', 'Range: 500 lbs ', '2013-02-06', 8997, '2/6/2013', NULL), (8998, 1285, '', '', '', '0000-00-00', 8998, '', NULL), (8999, 1286, '', '', '', '0000-00-00', 8999, '', NULL), (9000, 1287, '', '', '', '0000-00-00', 9000, '', NULL), (9001, 1288, 'S/N M921138A344-08', 'ELE LVDT (D-6027)', 'Range: 1.5 Inches', '2013-02-12', 9001, '2/12/2013', NULL), (9002, 1289, 'S/N 122 / 00478', 'Durham Geo LVDT (D-6027)', 'Range: 0.4 Inches', '2012-02-16', 9002, '2/16/2012', NULL), (9003, 1290, '', '', '', '0000-00-00', 9003, '', NULL), (9004, 1291, '', '', '', '0000-00-00', 9004, '', NULL), (9005, 1292, '', '', '', '0000-00-00', 9005, '', NULL), (9006, 1293, '', '', '', '0000-00-00', 9006, '', NULL), (9007, 1294, '', ' w/ Starrett 25-2041 Dial Indicator (ID# 0268) ', '', '0000-00-00', 9007, '', NULL), (9008, 1295, '', '', '', '0000-00-00', 9008, '', NULL), (9009, 1296, '', '', '', '0000-00-00', 9009, '', NULL), (9010, 1297, '', '', '', '0000-00-00', 9010, '', NULL), (9011, 1298, '', '', '', '0000-00-00', 9011, '', NULL), (9012, 1299, '', '', '', '0000-00-00', 9012, '', NULL), (9013, 1300, '', '', '', '0000-00-00', 9013, '', NULL), (9014, 1301, '', '', '', '0000-00-00', 9014, '', NULL), (9015, 1302, '', '', '', '0000-00-00', 9015, '', NULL), (9016, 1303, 'S/N 3804292', 'AND EP-20KA Scale (E-898)', 'Range: 20,000 Grams ', '2013-02-20', 9016, '2/20/2013', NULL), (9017, 1304, '', '', '', '0000-00-00', 9017, '', NULL), (9018, 1305, '', ' w/ Channel #1 Deflectometer (E-2309)', 'Range: 0.5 Inch ', '2013-02-19', 9018, '2/19/2013', NULL), (9019, 1306, '', '', '', '0000-00-00', 9019, '', NULL), (9020, 1307, '', '', '', '0000-00-00', 9020, '', NULL), (9021, 1308, '', '', '', '0000-00-00', 9021, '', NULL), (9022, 1309, '', '', '', '0000-00-00', 9022, '', NULL), (9023, 1310, '', '', '', '0000-00-00', 9023, '', NULL), (9024, 1311, '', '', '', '0000-00-00', 9024, '', NULL), (9025, 1312, '', '', '', '0000-00-00', 9025, '', NULL), (9026, 1313, '', '', '', '0000-00-00', 9026, '', NULL), (9027, 1314, '', '', '', '0000-00-00', 9027, '', NULL), (9028, 1315, 'S/N G98761', 'ELE CT-320A Hammer (C-805)', 'Range: 78 to 82', '2010-02-16', 9028, '2/16/2010', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (9029, 1316, '', '', '', '0000-00-00', 9029, '', NULL), (9030, 1317, '', '', '', '0000-00-00', 9030, '', NULL), (9031, 1318, '', '', '', '0000-00-00', 9031, '', NULL), (9032, 1319, '', '', '', '0000-00-00', 9032, '', NULL), (9033, 1320, '', '', '', '0000-00-00', 9033, '', NULL), (9034, 1321, '', '', '', '0000-00-00', 9034, '', NULL), (9035, 1322, 'S/N 22837', 'Soiltest Single Proving Ring (E-4)', 'Cap: 2,000 lbs.', '1998-02-17', 9035, '2/17/1998', NULL), (9036, 1323, '', '', '', '0000-00-00', 9036, '', NULL), (9037, 1324, '', '', '', '0000-00-00', 9037, '', NULL), (9038, 1325, 'S/N 159819', ' XY Recorder', 'Range 2.4/12/60/120K ID#25-REC01', '2005-03-30', 9038, '3/30/2005', NULL), (9039, 1326, '', '', '', '0000-00-00', 9039, '', NULL), (9040, 1327, '', '', '', '0000-00-00', 9040, '', NULL), (9041, 1328, '', '', '', '0000-00-00', 9041, '', NULL), (9042, 1329, '', '', '', '0000-00-00', 9042, '', NULL), (9043, 1330, '', '', '', '0000-00-00', 9043, '', NULL), (9044, 1331, '', '', '', '0000-00-00', 9044, '', NULL), (9045, 1332, '', '', '', '0000-00-00', 9045, '', NULL), (9046, 1333, '', '', '', '0000-00-00', 9046, '', NULL), (9047, 1334, '', '', '', '0000-00-00', 9047, '', NULL), (9048, 1335, '', '', '', '0000-00-00', 9048, '', NULL), (9049, 1336, '', '', '', '0000-00-00', 9049, '', NULL), (9050, 1337, '', '', '', '0000-00-00', 9050, '', NULL), (9051, 1338, '', '', '', '0000-00-00', 9051, '', NULL), (9052, 1339, '', '', '', '0000-00-00', 9052, '', NULL), (9053, 1340, '', '', '', '0000-00-00', 9053, '', NULL), (9054, 1341, '', '', '', '0000-00-00', 9054, '', NULL), (9055, 1342, '', '', '', '0000-00-00', 9055, '', NULL), (9056, 1343, '', 'THIS MACHINE WILL PROBABLY GO INTO STORAGE', '', '0000-00-00', 9056, '', NULL), (9057, 1344, '', '', '', '0000-00-00', 9057, '', NULL), (9058, 1345, 'S/N 13004', 'Forner Compression Machine F-25EX-F-TPILOT (E-4)', 'Range:', NULL, 9058, 'New', NULL), (9059, 1346, '', '', '', '0000-00-00', 9059, '', NULL), (9060, 1347, '', '', '', '0000-00-00', 9060, '', NULL), (9061, 1348, '', '', '', '0000-00-00', 9061, '', NULL), (9062, 1349, '', '', '', '0000-00-00', 9062, '', NULL), (9063, 1350, '', '', '', '0000-00-00', 9063, '', NULL), (9064, 1351, '', '', '', '0000-00-00', 9064, '', NULL), (9065, 1352, '', '', '', '0000-00-00', 9065, '', NULL), (9066, 1353, '', '', '', '0000-00-00', 9066, '', NULL), (9067, 1354, '', '', '', '0000-00-00', 9067, '', NULL), (9068, 1355, '', '', '', '0000-00-00', 9068, '', NULL), (9069, 1356, '', '', '', '0000-00-00', 9069, '', NULL), (9070, 1357, '', '', '', '0000-00-00', 9070, '', NULL), (9071, 1358, '', '', '', '0000-00-00', 9071, '', NULL), (9072, 1359, '', '', '', '0000-00-00', 9072, '', NULL), (9073, 1360, 'S/N 8803559', ' Range .5Kip T & C - 10 Ranges ID#25-LC08 (E-4)', '', '2005-02-17', 9073, '2/17/2005', NULL), (9074, 1361, '', '', '', '0000-00-00', 9074, '', NULL), (9075, 1362, 'S/N 1127063811', 'OHaus Balance Scale Mdl. EP12001', 'Range: 1,200 Grams', '2007-02-12', 9075, '2/12/2007', NULL), (9076, 1363, '', '', '', '0000-00-00', 9076, '', NULL), (9077, 1364, '', '', '', '0000-00-00', 9077, '', NULL), (9078, 1365, '', '', '', '0000-00-00', 9078, '', NULL), (9079, 1366, 'S/N', ' w/ Speed Control (Man Specs)', 'Range: ', NULL, 9079, 'New', NULL), (9080, 1367, '', '', '', '0000-00-00', 9080, '', NULL), (9081, 1368, '', '', '', '0000-00-00', 9081, '', NULL), (9082, 1369, '', '', '', '0000-00-00', 9082, '', NULL), (9083, 1370, '', '', '', '0000-00-00', 9083, '', NULL), (9084, 1371, '', '', '', '0000-00-00', 9084, '', NULL), (9085, 1372, '', '', '', '0000-00-00', 9085, '', NULL), (9086, 1373, '', '', '', '0000-00-00', 9086, '', NULL), (9087, 1374, '', '', '', '0000-00-00', 9087, '', NULL), (9088, 1375, '', '', '', '0000-00-00', 9088, '', NULL), (9089, 1376, '', '', '', '0000-00-00', 9089, '', NULL), (9090, 1377, 'S/N S-2103', 'Karol Warner Pressure Gauge (D-5720)', 'Range: 100 psi', '2006-02-14', 9090, '2/14/2006', NULL), (9091, 1378, '', '', '', '0000-00-00', 9091, '', NULL), (9092, 1379, 'S/N Channel 0 ', 'Compress LVDT (D-6027)', 'Range: 0.1 Inch to 1 Inch ', '2007-10-01', 9092, '10/1/2007', NULL), (9093, 1380, '', '', '', '0000-00-00', 9093, '', NULL), (9094, 1381, '', '', '', '0000-00-00', 9094, '', NULL), (9095, 1382, '', '', '', '0000-00-00', 9095, '', NULL), (9096, 1383, '', '', '', '0000-00-00', 9096, '', NULL), (9097, 1384, '', '', '', '0000-00-00', 9097, '', NULL), (9098, 1385, '', '', '', '0000-00-00', 9098, '', NULL), (9099, 1386, 'S/N 171312', 'Eilon Engineering RON 2000 S-12.5 Load Cell (ManSp & 0.1% FS)', 'Cap: 12.5 Ton', '2004-07-30', 9099, '7/30/2004', NULL), (9100, 1387, 'S/N 2012829', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Ton', '2004-09-16', 9100, '9/16/2004', NULL), (9101, 1388, '', '', '', '0000-00-00', 9101, '', NULL), (9102, 1389, 'S/N 215', 'Pine Instrument 750 Asphalt Tester (E-4 & Man Specs)', 'Range: 2.5K / 5K / 10K ', '2012-01-24', 9102, '1/24/2012', NULL), (9103, 1390, 'S/N MG2305', ' w/ LVDT Displacement Model HS50 Shear Force (D-6027)', 'Range: 2 inch w/ E-405 Digital', '2008-11-24', 9103, '11/24/2008', NULL), (9104, 1391, '', '', '', '0000-00-00', 9104, '', NULL), (9105, 1392, 'S/N NC#18', 'HCS Model LC-2502 Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2013-01-15', 9105, '1/15/2013', NULL), (9106, 1393, 'S/N 12958', ' w/LVDT - Vertical Displacment HM-2310.04(D-6027)', 'Range: 0.04 inch to 0.4 inch', '2013-01-08', 9106, '1/8/2013', NULL), (9107, 1394, '', '', '', '0000-00-00', 9107, '', NULL), (9108, 1395, 'S/N 040917', 'Strainsense SS EXE 2004 Extensometer (E-83)', 'Range: 2 Inch to 0.02 Inch (OOS)', '2006-02-14', 9108, '2/14/2006', NULL), (9109, 1396, '', '', '', '0000-00-00', 9109, '', NULL), (9110, 1397, '', '', '', '0000-00-00', 9110, '', NULL), (9111, 1398, '', '', '', '0000-00-00', 9111, '', NULL), (9112, 1399, '', '', '', '0000-00-00', 9112, '', NULL), (9113, 1400, '', '', '', '0000-00-00', 9113, '', NULL), (9114, 1401, 'S/N 93189', 'Proceq Model N Hammer (C-805)', 'Range: 78 to 82', '2013-01-16', 9114, '1/16/2013', NULL), (9115, 1402, '', '', '', '0000-00-00', 9115, '', NULL), (9116, 1403, 'S/N 129045', 'United DP-2-6 FM-60 w/ Precise Digital Tension Machine ', 'Range: 200 lbs to 60,000 lbs (E-4)', '2013-01-21', 9116, '1/21/2013', NULL), (9117, 1404, 'S/N AE40113302', 'Adam CPW PLUS-75 Scale (ID#Q-2483) (C-898)', 'Range: 150 lbs ', '2013-01-21', 9117, '1/21/2013', NULL), (9118, 1405, 'S/N JA18546', 'Ohaus I5S Scale (ID# Q-1980) (E-898)', 'Range: 1 lbs to 200 lbs ', '2013-01-22', 9118, '1/22/2013', NULL), (9119, 1406, 'S/N 1124018215', 'Ohaus High Precision Balance Explorer-Pro (ID # Q-3688) (E-898)', 'Range: 220 grams to 22,000 grams', '2013-01-24', 9119, '1/24/2013', NULL), (9120, 1407, '', 'Displacement Transducer', '', '0000-00-00', 9120, '', NULL), (9121, 1408, 'S/N 05044015/7', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2006-04-26', 9121, '4/26/2006', NULL), (9122, 1409, '', '', '', '0000-00-00', 9122, '', NULL), (9123, 1410, '', '', '', '0000-00-00', 9123, '', NULL), (9124, 1411, '', '', '', '0000-00-00', 9124, '', NULL), (9125, 1412, '', '', '', '0000-00-00', 9125, '', NULL), (9126, 1413, '', '', '', '0000-00-00', 9126, '', NULL), (9127, 1414, '', '', '', '0000-00-00', 9127, '', NULL), (9128, 1415, '', '', '', '0000-00-00', 9128, '', NULL), (9129, 1416, '', '', '', '0000-00-00', 9129, '', NULL), (9130, 1417, 'S/N ', 'Riehle Mechanical Extensometer (E-83)', 'Range: 0.001 in/in ', NULL, 9130, 'New', NULL), (9131, 1418, '', '', '', '0000-00-00', 9131, '', NULL), (9132, 1419, '', '', '', '0000-00-00', 9132, '', NULL), (9133, 1420, '', '', '', '0000-00-00', 9133, '', NULL), (9134, 1421, '', '', '', '0000-00-00', 9134, '', NULL), (9135, 1422, '', '', '', '0000-00-00', 9135, '', NULL), (9136, 1423, 'S/N 137130', 'Tinius Olsen 5-1000-2A (E83-00)', '2\" Extensometer', '2002-01-31', 9136, '1/31/2002', NULL), (9137, 1424, '', '', '', '0000-00-00', 9137, '', NULL), (9138, 1425, '', '', '', '0000-00-00', 9138, '', NULL), (9139, 1426, '', '', '', '0000-00-00', 9139, '', NULL), (9140, 1427, '', '', '', '0000-00-00', 9140, '', NULL), (9141, 1428, '', '', '', '0000-00-00', 9141, '', NULL), (9142, 1429, '', '', '', '0000-00-00', 9142, '', NULL), (9143, 1430, '', '', '', '0000-00-00', 9143, '', NULL), (9144, 1431, '', '', '', '0000-00-00', 9144, '', NULL), (9145, 1432, '', '', '', '0000-00-00', 9145, '', NULL), (9146, 1433, 'S/N 324467', 'SPX Powerteam Prestress Jack PE554(E-4 & PCI) Never Had', 'Range: 2K,3K,4K / 35K', NULL, 9146, 'New', NULL), (9147, 1434, 'S/N 861117D', 'Strainsense Load Cell D (E-4) OUT OF SERVICE', 'Range: 5K/50K', '2004-02-02', 9147, '2/2/2004', NULL), (9148, 1435, '', '', '', '0000-00-00', 9148, '', NULL), (9149, 1436, '', '', '', '0000-00-00', 9149, '', NULL), (9150, 1437, '', '', '', '0000-00-00', 9150, '', NULL), (9151, 1438, '', '', '', '0000-00-00', 9151, '', NULL), (9152, 1439, '', '', '', '0000-00-00', 9152, '', NULL), (9153, 1440, '', '', '', '0000-00-00', 9153, '', NULL), (9154, 1441, 'S/N 185143', 'Tinius Olsen Extensometer Model LS-4%-2A', 'Ranges: .4% /1% /2% /4%', '2000-04-10', 9154, '4/10/2000', NULL), (9155, 1442, '', '', '', '0000-00-00', 9155, '', NULL), (9156, 1443, '', '', '', '0000-00-00', 9156, '', NULL), (9157, 1444, 'S/N 207', 'Brainard-Kilman LVDT Model E-311 (Channel #24)', 'Range: 1.00 Inches (D6027-96el)', '2000-01-18', 9157, '1/18/2000', NULL), (9158, 1445, '', '', '', '0000-00-00', 9158, '', NULL), (9159, 1446, 'S/N 201', 'Karol Warner Proving Ring S504 (E-4 & ManSpecs)', 'Cap: 1K', '2005-02-21', 9159, '2/21/2005', NULL), (9160, 1447, 'S/N 372', 'Pine Instrument 850 Marshall Test Press (E-4)', 'Range: 2.5K/ 5K/10K', '2009-01-20', 9160, '1/20/2009', NULL), (9161, 1448, '', '', '', '0000-00-00', 9161, '', NULL), (9162, 1449, '', '', '', '0000-00-00', 9162, '', NULL), (9163, 1450, '', '', '', '0000-00-00', 9163, '', NULL), (9164, 1451, '', '', '', '0000-00-00', 9164, '', NULL), (9165, 1452, '', '', '', '0000-00-00', 9165, '', NULL), (9166, 1453, '', '', '', '0000-00-00', 9166, '', NULL), (9167, 1454, 'S/N 2390', 'Com-Ten Universal Testing Machine (E-4)', 'Range: 20 lbs. to 400 lbs.', '2005-11-08', 9167, '11/8/2005', NULL), (9168, 1455, 'S/N 10635 ', 'CSI Model LC-40 Hydraulic Load Cell (OUT OF SERVICE) (E-4)', 'Range: 40K', '2006-10-23', 9168, '10/23/2006', NULL), (9169, 1456, '', '** No Longer will do Calibration due to Insurance requirements', 'for the State of NY**', '0000-00-00', 9169, '', NULL), (9170, 1457, '', '', '', '0000-00-00', 9170, '', NULL), (9171, 1458, '', '', '', '0000-00-00', 9171, '', NULL), (9172, 1459, '', '', '', '0000-00-00', 9172, '', NULL), (9173, 1460, '', '', '', '0000-00-00', 9173, '', NULL), (9174, 1461, 'S/N 1155-16-12564', 'ELE Proving Ring (E4)', 'Range: 675 lbs', '2005-02-21', 9174, '2/21/2005', NULL), (9175, 1462, '', '', '', '0000-00-00', 9175, '', NULL), (9176, 1463, 'S/N 62846', 'Forney N-25 Hammer (C-805)', 'Range: 78 to 81', '2012-07-10', 9176, '7/10/2012', NULL), (9177, 1464, '', '', '', '0000-00-00', 9177, '', NULL), (9178, 1465, '', '', '', '0000-00-00', 9178, '', NULL), (9179, 1466, '', '', '', '0000-00-00', 9179, '', NULL), (9180, 1467, '', '', '', '0000-00-00', 9180, '', NULL), (9181, 1468, '', '', '', '0000-00-00', 9181, '', NULL), (9182, 1469, '', '', '', '0000-00-00', 9182, '', NULL), (9183, 1470, '', '', '', '0000-00-00', 9183, '', NULL), (9184, 1471, '', '', '', '0000-00-00', 9184, '', NULL), (9185, 1472, '', '', '', '0000-00-00', 9185, '', NULL), (9186, 1473, 'S/N 1003', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI', '2007-07-24', 9186, '7/24/2007', NULL), (9187, 1474, '', '', '', '0000-00-00', 9187, '', NULL), (9188, 1475, '', '', '', '0000-00-00', 9188, '', NULL), (9189, 1476, '', '', '', '0000-00-00', 9189, '', NULL), (9190, 1477, '', '', '', '0000-00-00', 9190, '', NULL), (9191, 1478, '', '', '', '0000-00-00', 9191, '', NULL), (9192, 1479, '', '', '', '0000-00-00', 9192, '', NULL), (9193, 1480, '', '', '', '0000-00-00', 9193, '', NULL), (9194, 1481, '', '', '', '0000-00-00', 9194, '', NULL), (9195, 1482, '', '', '', '0000-00-00', 9195, '', NULL), (9196, 1483, '', '', '', '0000-00-00', 9196, '', NULL), (9197, 1484, '', '', '', '0000-00-00', 9197, '', NULL), (9198, 1485, '', '', '', '0000-00-00', 9198, '', NULL), (9199, 1486, 'S/N 62022', 'Forney LT-700 Compression Machine (E-4) (SOLD)', 'Range: 350K', '2005-07-12', 9199, '7/12/2005', NULL), (9200, 1487, '', '', '', '0000-00-00', 9200, '', NULL), (9201, 1488, '', '', '', '0000-00-00', 9201, '', NULL), (9202, 1489, '', '', '', '0000-00-00', 9202, '', NULL), (9203, 1490, '', '', '', '0000-00-00', 9203, '', NULL), (9204, 1491, '', '', '', '0000-00-00', 9204, '', NULL), (9205, 1492, '', '', '', '0000-00-00', 9205, '', NULL), (9206, 1493, '', '', '', '0000-00-00', 9206, '', NULL), (9207, 1494, '', '', '', '0000-00-00', 9207, '', NULL), (9208, 1495, '', '', '', '0000-00-00', 9208, '', NULL), (9209, 1496, '', '', '', '0000-00-00', 9209, '', NULL), (9210, 1497, '', '', '', '0000-00-00', 9210, '', NULL), (9211, 1498, '', '', '', '0000-00-00', 9211, '', NULL), (9212, 1499, '', '', '', '0000-00-00', 9212, '', NULL), (9213, 1500, '', '', '', '0000-00-00', 9213, '', NULL), (9214, 1501, 'S/N F13127', 'Hamilton Mdl P-4500 Spare Gauge #3 (E-4& PCI)', 'Range: 1.5K to 4K', '2007-07-09', 9214, '7/9/2007', NULL), (9215, 1502, 'S/N ', 'Frazier Compressometer', 'Range: ', NULL, 9215, 'New', NULL), (9216, 1503, '', '', '', '0000-00-00', 9216, '', NULL), (9217, 1504, 'S/N 1504', 'Forney PT-150-2 Pipe Tester (E-4 & C-497)', 'Range: 15K to 150K ', '2008-07-16', 9217, '7/16/2008', NULL), (9218, 1505, '', '', '', '0000-00-00', 9218, '', NULL), (9219, 1506, '', '', '', '0000-00-00', 9219, '', NULL), (9220, 1507, '', '', '', '0000-00-00', 9220, '', NULL), (9221, 1508, '', '', '', '0000-00-00', 9221, '', NULL), (9222, 1509, '', '', '', '0000-00-00', 9222, '', NULL), (9223, 1510, '', 'has been billed for any work done here.', '', '0000-00-00', 9223, '', NULL), (9224, 1511, '', '', '', '0000-00-00', 9224, '', NULL), (9225, 1512, '', '', '', '0000-00-00', 9225, '', NULL), (9226, 1513, '', '', '', '0000-00-00', 9226, '', NULL), (9227, 1514, '', '', '', '0000-00-00', 9227, '', NULL), (9228, 1515, '', '', '', '0000-00-00', 9228, '', NULL), (9229, 1516, '', '', '', '0000-00-00', 9229, '', NULL), (9230, 1517, '', '', '', '0000-00-00', 9230, '', NULL), (9231, 1518, '', '', '', '0000-00-00', 9231, '', NULL), (9232, 1519, '', '', '', '0000-00-00', 9232, '', NULL), (9233, 1520, '', '', '', '0000-00-00', 9233, '', NULL), (9234, 1521, '', '', '', '0000-00-00', 9234, '', NULL), (9235, 1522, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 9235, '', NULL), (9236, 1523, '', '', '', '0000-00-00', 9236, '', NULL), (9237, 1524, '', '', '', '0000-00-00', 9237, '', NULL), (9238, 1525, '', '', '', '0000-00-00', 9238, '', NULL), (9239, 1526, '', '', '', '0000-00-00', 9239, '', NULL), (9240, 1527, '', '', '', '0000-00-00', 9240, '', NULL), (9241, 1528, '', '', '', '0000-00-00', 9241, '', NULL), (9242, 1529, '', '', '', '0000-00-00', 9242, '', NULL), (9243, 1530, '', '', '', '0000-00-00', 9243, '', NULL), (9244, 1531, '', '', '', '0000-00-00', 9244, '', NULL), (9245, 1532, '', '', '', '0000-00-00', 9245, '', NULL), (9246, 1533, '', '', '', '0000-00-00', 9246, '', NULL), (9247, 1534, 'S/N 1240', 'Durham Geo S-610 Speed Control w/ 2 speeds (D-5720)', 'Range: 0.055 in/min / 0.012 in/min', '2013-06-04', 9247, '6/4/2013', NULL), (9248, 1535, 'S/N 2135-1119', 'Brainard Kilman E-124 Pressure Transducer (D-5720)', 'Range: 15 psi to 150 psi', '2013-06-04', 9248, '6/4/2013', NULL), (9249, 1536, 'S/N 48A05001', 'Rocktest Point Load Telematic (E-4 & Man Specs)', 'Range: 10K', '2013-06-04', 9249, '6/4/2013', NULL), (9250, 1537, '', '', '', '0000-00-00', 9250, '', NULL), (9251, 1538, '', '', '', '0000-00-00', 9251, '', NULL), (9252, 1539, '', '', '', '0000-00-00', 9252, '', NULL), (9253, 1540, 'S/N BJ345681 ', 'Ohaus Scout II SC2020 Scale (E-898)', 'Range: 200 Grams ', '2011-06-08', 9253, '6/8/2011', NULL), (9254, 1541, 'S/N 03808847', 'AND EP-20 KA Scale (E-898)', 'Range: 44 lbs ', '2013-06-04', 9254, '6/4/2013', NULL), (9255, 1542, '', '', '', '0000-00-00', 9255, '', NULL), (9256, 1543, '', '', '', '0000-00-00', 9256, '', NULL), (9257, 1544, '', '', '', '0000-00-00', 9257, '', NULL), (9258, 1545, 'S/N 3460', 'Karol Warner Manometer (D5720 +/-0.5% Full Scale)', 'Range: 800 mm Hg', '2013-06-04', 9258, '6/4/2013', NULL), (9259, 1546, '', '', '', '0000-00-00', 9259, '', NULL), (9260, 1547, '', '', '', '0000-00-00', 9260, '', NULL), (9261, 1548, 'S/N 122558', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-06-11', 9261, '6/11/2013', NULL), (9262, 1549, '', '', '', '0000-00-00', 9262, '', NULL), (9263, 1550, '', '', '', '0000-00-00', 9263, '', NULL), (9264, 1551, '', '', '', '0000-00-00', 9264, '', NULL), (9265, 1552, '', '', '', '0000-00-00', 9265, '', NULL), (9266, 1553, '', '', '', '0000-00-00', 9266, '', NULL), (9267, 1554, '', '', '', '0000-00-00', 9267, '', NULL), (9268, 1555, '', '', '', '0000-00-00', 9268, '', NULL), (9269, 1556, '', '', '', '0000-00-00', 9269, '', NULL), (9270, 1557, '', '', '', '0000-00-00', 9270, '', NULL), (9271, 1558, '', '', '', '0000-00-00', 9271, '', NULL), (9272, 1559, '', '', '', '0000-00-00', 9272, '', NULL), (9273, 1560, '', '', '', '0000-00-00', 9273, '', NULL), (9274, 1561, 'S/N 400', 'Durham Geo E214 Load Cell w/ Dig. S/N 1107 - Channel #2 (E-4)', 'Range: 500 lbs to 6K ', '2013-06-19', 9274, '6/19/2013', NULL), (9275, 1562, 'S/N 1001', ' w/Dial Indicator Shear Displacement (D-6027)', 'Range: 1 inch', '2013-06-19', 9275, '6/19/2013', NULL), (9276, 1563, 'S/N 1002', 'Soiltest Mdl. LC-8 Dial Indicator (D-6027)', 'Range: 1 inch', '2012-06-19', 9276, '6/19/2012', NULL), (9277, 1564, 'S/N D2361-01-1A', 'Pollard Pressure Gauge ID#D2361-01-1A (D-5720)', 'Range: 100 PSI', '2012-07-25', 9277, '7/25/2012', NULL), (9278, 1565, '', '', '', '0000-00-00', 9278, '', NULL), (9279, 1566, 'S/N 0554421/9', 'Eilion Engineering RON Load Cell 2501S-05 Asset # NORG20001', 'Range: 10K (ManSp & 0.1% FS)', '2007-06-22', 9279, '6/22/2007', NULL), (9280, 1567, '', '', '', '0000-00-00', 9280, '', NULL), (9281, 1568, '', '', '', '0000-00-00', 9281, '', NULL), (9282, 1569, '', '', '', '0000-00-00', 9282, '', NULL), (9283, 1570, '', '', '', '0000-00-00', 9283, '', NULL), (9284, 1571, '', '', '', '0000-00-00', 9284, '', NULL), (9285, 1572, '', '', '', '0000-00-00', 9285, '', NULL), (9286, 1573, '', '', '', '0000-00-00', 9286, '', NULL), (9287, 1574, '', '', '', '0000-00-00', 9287, '', NULL), (9288, 1575, '', 'Tilting Bench Stand/Carring DP41-TBS', '', NULL, 9288, 'New', NULL), (9289, 1576, 'S/N 1229', 'Ametek Digital Force Gauge - in Tension Bed', 'Cap: 500#', '0000-00-00', 9289, '', NULL), (9290, 1577, '', '', '', '0000-00-00', 9290, '', NULL), (9291, 1578, '', '', '', '0000-00-00', 9291, '', NULL), (9292, 1579, '', '', '', '0000-00-00', 9292, '', NULL), (9293, 1580, 'S/N 167125', 'Rod Positioning System (E-83)', 'Range 5\"', '2002-06-20', 9293, '6/20/2002', NULL), (9294, 1581, '', '', '', '0000-00-00', 9294, '', NULL), (9295, 1582, '', '', '', '0000-00-00', 9295, '', NULL), (9296, 1583, '', '', '', '0000-00-00', 9296, '', NULL), (9297, 1584, '', '', '', '0000-00-00', 9297, '', NULL), (9298, 1585, '', '', '', '0000-00-00', 9298, '', NULL), (9299, 1586, '', '', '', '0000-00-00', 9299, '', NULL), (9300, 1587, '', '', '', '0000-00-00', 9300, '', NULL), (9301, 1588, '', '', '', '0000-00-00', 9301, '', NULL), (9302, 1589, '', '', '', '0000-00-00', 9302, '', NULL), (9303, 1590, '', '', '', '0000-00-00', 9303, '', NULL), (9304, 1591, '', '', '', '0000-00-00', 9304, '', NULL), (9305, 1592, '', '', '', '0000-00-00', 9305, '', NULL), (9306, 1593, '', '', '', '0000-00-00', 9306, '', NULL), (9307, 1594, '', '', '', '0000-00-00', 9307, '', NULL), (9308, 1595, '', '', '', '0000-00-00', 9308, '', NULL), (9309, 1596, '', '', '', '0000-00-00', 9309, '', NULL), (9310, 1597, '', '', '', '0000-00-00', 9310, '', NULL), (9311, 1598, '', '', '', '0000-00-00', 9311, '', NULL), (9312, 1599, '', '', '', '0000-00-00', 9312, '', NULL), (9313, 1600, '', '', '', '0000-00-00', 9313, '', NULL), (9314, 1601, 'S/N 1605', 'Wykeham-Farrance Single Proving Ring', 'Cap: 1000#', '1999-06-16', 9314, '6/16/1999', NULL), (9315, 1602, '', '', '', '0000-00-00', 9315, '', NULL), (9316, 1603, '', '', '', '0000-00-00', 9316, '', NULL), (9317, 1604, '', '', '', '0000-00-00', 9317, '', NULL), (9318, 1605, 'S/N 98532', 'Plowman Brothers Model PBI Compression Machine (E-4)', 'Range 200 to 8,000 lb.', '1998-07-10', 9318, '7/10/1998', NULL), (9319, 1606, '', '', '', '0000-00-00', 9319, '', NULL), (9320, 1607, '', '', '', '0000-00-00', 9320, '', NULL), (9321, 1608, '', '', '', '0000-00-00', 9321, '', NULL), (9322, 1609, '', '', '', '0000-00-00', 9322, '', NULL), (9323, 1610, '', '', '', '0000-00-00', 9323, '', NULL), (9324, 1611, '', '', '', '0000-00-00', 9324, '', NULL), (9325, 1612, '', '', '', '0000-00-00', 9325, '', NULL), (9326, 1613, '', '', '', '0000-00-00', 9326, '', NULL), (9327, 1614, '', '', '', '0000-00-00', 9327, '', NULL), (9328, 1615, '', 'Pine AFG1A Gyratory Compactor', '5,000 N / 10,500 N Set angle', '0000-00-00', 9328, '', NULL), (9329, 1616, '', '', '', '0000-00-00', 9329, '', NULL), (9330, 1617, '', '', '', '0000-00-00', 9330, '', NULL), (9331, 1618, 'S/N 154378', 'Tinius Olsen Extensometer Model S-1000-2A (E-83) (OSS)', 'Range: 2\"', '2006-01-19', 9331, '1/19/2006', NULL), (9332, 1619, '', '', '', '0000-00-00', 9332, '', NULL), (9333, 1620, '', '', '', '0000-00-00', 9333, '', NULL), (9334, 1621, '', '', '', '0000-00-00', 9334, '', NULL), (9335, 1622, '', '', '', '0000-00-00', 9335, '', NULL), (9336, 1623, '', '', '', '0000-00-00', 9336, '', NULL), (9337, 1624, '', '', '', '0000-00-00', 9337, '', NULL), (9338, 1625, '', 'Need to replace seals ', '', '0000-00-00', 9338, '', NULL), (9339, 1626, 'S/N 06-0091-01 ', 'Mecmesin BGF-200N Digital Force Gauge (Moved) (E-4)', 'Range: 45 lbs ', '2008-06-26', 9339, '6/26/2008', NULL), (9340, 1627, '', '', '', '0000-00-00', 9340, '', NULL), (9341, 1628, '', '', '', '0000-00-00', 9341, '', NULL), (9342, 1629, '', '', '', '0000-00-00', 9342, '', NULL), (9343, 1630, 'S/N 60282', 'Simms Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K', '2008-06-03', 9343, '6/3/2008', NULL), (9344, 1631, '', '', '', '0000-00-00', 9344, '', NULL), (9345, 1632, '', '', '', '0000-00-00', 9345, '', NULL), (9346, 1633, '', '', '', '0000-00-00', 9346, '', NULL), (9347, 1634, '', '', '', '0000-00-00', 9347, '', NULL), (9348, 1635, '', '', '', '0000-00-00', 9348, '', NULL), (9349, 1636, '', '', '', '0000-00-00', 9349, '', NULL), (9350, 1637, '', '', '', '0000-00-00', 9350, '', NULL), (9351, 1638, '', '', '', '0000-00-00', 9351, '', NULL), (9352, 1639, '', '', '', '0000-00-00', 9352, '', NULL), (9353, 1640, 'S/N 1155-5-15049', 'ELE CBR Test 50 (10KN Proving Ring)', 'Range 10KN', '1998-09-16', 9353, '9/16/1998', NULL), (9354, 1641, '', '', '', '0000-00-00', 9354, '', NULL), (9355, 1642, 'S/N 1155-14-19631', 'ELE Proving Ring PR-112 (E-4)', 'Range: 50KN', '2004-06-11', 9355, '6/11/2004', NULL), (9356, 1643, '', '', '', '0000-00-00', 9356, '', NULL), (9357, 1644, '', '', '', '0000-00-00', 9357, '', NULL), (9358, 1645, '', '', '', '0000-00-00', 9358, '', NULL), (9359, 1646, '', '', '', '0000-00-00', 9359, '', NULL), (9360, 1647, '', '', '', '0000-00-00', 9360, '', NULL), (9361, 1648, '', '', '', '0000-00-00', 9361, '', NULL), (9362, 1649, '', '', '', '0000-00-00', 9362, '', NULL), (9363, 1650, 'S/N 9110', 'Soiltest AP-1700-Y Asphalt Tester (ID#26835)', 'Range: 1K / 2K / 5K / 10K (E-4)', '2013-06-13', 9363, '6/13/2013', NULL), (9364, 1651, '', '', '', '0000-00-00', 9364, '', NULL), (9365, 1652, 'S/N 2129 (Plant #3)', 'Pine Instrument Gyratory Compactor AFG1A(Man Specs & AASHTO)', 'Cap: 5KN/10.5KN 152.4mm 30RPM ', '2012-12-07', 9365, '12/7/2012', NULL), (9366, 1653, 'S/N 133', 'Karol Warner Marshall Single Proving Ring ', 'Cap: 10K Plant#19 (E-4 & Man Specs)', '2013-06-14', 9366, '6/14/2013', NULL), (9367, 1654, '', '', '', '0000-00-00', 9367, '', NULL), (9368, 1655, 'S/N 1155-14-13582', 'ELE 1155BO300 Single Proving Ring (E-4 & Man Specs)', 'Range: 1K', '2009-12-16', 9368, '12/16/2009', NULL), (9369, 1656, 'S/N 1950', 'Pine Instruments AFGCLR05C Single Proving Ring(E-4&ManSpecs)', ' Range: 45,0000 Newtons (Plant #1)', '2012-06-16', 9369, '6/16/2012', NULL), (9370, 1657, 'S/N 62209', 'Forney LT-800-2 Universal Testing Machine (E-4)', 'Range 25K / 250K', '2013-06-17', 9370, '6/17/2013', NULL), (9371, 1658, '', '', '', '0000-00-00', 9371, '', NULL), (9372, 1659, '', '', '', '0000-00-00', 9372, '', NULL), (9373, 1660, '', '', '', '0000-00-00', 9373, '', NULL), (9374, 1661, 'S/N 156', 'Geo Durham AM-100 Marshall Single Proving Ring ', 'Cap: 10K Plant #14 (E-4 & Man Specs)', '2013-06-14', 9374, '6/14/2013', NULL), (9375, 1662, 'S/N 022639505', 'ELE Mdl: EDP 26104C-SL Dial Indicator (D-6027)', 'Range: 1 Inch', '2011-05-24', 9375, '5/24/2011', NULL), (9376, 1663, '', '', '', '0000-00-00', 9376, '', NULL), (9377, 1664, '', '', '', '0000-00-00', 9377, '', NULL), (9378, 1665, '', '', '', '0000-00-00', 9378, '', NULL), (9379, 1666, 'S/N U83797', ' w/ Epsilon 3542-0200-050-ST Extensometer (E-83)', 'Range: 0.5 in/in (GL 2\")', '2013-06-12', 9379, '6/12/2013', NULL), (9380, 1667, '', '', '', '0000-00-00', 9380, '', NULL), (9381, 1668, 'S/N 162239 ', 'Artech Mdl. 20210-500 S Type Load Cell (E-4)', 'Range: 500 lbs (Done In House)', '2013-01-02', 9381, '1/2/2013', NULL), (9382, 1669, '', '', '', '0000-00-00', 9382, '', NULL), (9383, 1670, 'S/N 658', ' w/ Instron 2630-115 Extensometer (E-83)', 'Range: 0.5 in/in (GL 2\")', '2013-06-18', 9383, '6/18/2013', NULL), (9384, 1671, '', '', '', '0000-00-00', 9384, '', NULL), (9385, 1672, '', '', '', '0000-00-00', 9385, '', NULL), (9386, 1673, '', '', '', '0000-00-00', 9386, '', NULL), (9387, 1674, '', '', '', '0000-00-00', 9387, '', NULL), (9388, 1675, '', '', '', '0000-00-00', 9388, '', NULL), (9389, 1676, '', '', '', '0000-00-00', 9389, '', NULL), (9390, 1677, '', '', '', '0000-00-00', 9390, '', NULL), (9391, 1678, '', '', '', '0000-00-00', 9391, '', NULL), (9392, 1679, '', '', '', '0000-00-00', 9392, '', NULL), (9393, 1680, '', '', '', '0000-00-00', 9393, '', NULL), (9394, 1681, '', '', '', '0000-00-00', 9394, '', NULL), (9395, 1682, '', '', '', '0000-00-00', 9395, '', NULL), (9396, 1683, 'S/N 22745', 'Soiltest Proving Ring PR-05 on Soiltest U-590 Unconfined', 'Cap: 500#', '2000-06-13', 9396, '6/13/2000', NULL), (9397, 1684, '', '', '', '0000-00-00', 9397, '', NULL), (9398, 1685, '', '', '', '0000-00-00', 9398, '', NULL), (9399, 1686, '', '', '', '0000-00-00', 9399, '', NULL), (9400, 1687, 'S/N EP-415', 'Freyssnet Jack SC2M-108 with Gauge #17391 - GONE', 'Range 580 Bar (47,500 lbs.)', '1998-09-17', 9400, '9/17/1998', NULL), (9401, 1688, '', '', '', '0000-00-00', 9401, '', NULL), (9402, 1689, '', '', '', '0000-00-00', 9402, '', NULL), (9403, 1690, '', '', '', '0000-00-00', 9403, '', NULL), (9404, 1691, '', '', '', '0000-00-00', 9404, '', NULL), (9405, 1692, 'S/N EP598/391626', 'Freyssinet Bar Model C', 'Range 573 Bar', '1999-06-19', 9405, '6/19/1999', NULL), (9406, 1693, 'S/N 521', 'Hercules Prestress Jack', 'Range Pre 1500 / Final to 35K', '1998-06-16', 9406, '6/16/1998', NULL), (9407, 1694, '', '', '', '0000-00-00', 9407, '', NULL), (9408, 1695, '', '', '', '0000-00-00', 9408, '', NULL), (9409, 1696, '', '', '', '0000-00-00', 9409, '', NULL), (9410, 1697, '', '', '', '0000-00-00', 9410, '', NULL), (9411, 1698, '', '', '', '0000-00-00', 9411, '', NULL), (9412, 1699, '', '', '', '0000-00-00', 9412, '', NULL), (9413, 1700, '', '', '', '0000-00-00', 9413, '', NULL), (9414, 1701, 'S/N 2002', 'Pine Instrument Single Proving Ring (E-4 & Man Spec)', 'Range: 18K Newtons', '2012-03-09', 9414, '3/9/2012', NULL), (9415, 1702, '', ' w/ Gauge (E-', 'Range: 30K', '2013-03-14', 9415, '3/14/2013', NULL), (9416, 1703, 'S/N 06632576LL', 'Ohaus SD-200 Scale (E-898)', 'Range: 440 lbs ', '2013-03-04', 9416, '3/4/2013', NULL), (9417, 1704, 'S/N 22414', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2013-03-06', 9417, '3/6/2013', NULL), (9418, 1705, 'S/N 1155-14-13682', ' w/ Shear Force Proving Ring w/ LVDT (E-4) ', 'Range: 4,500 Newtons (Shear Force)', '2013-03-06', 9418, '3/6/2013', NULL), (9419, 1706, '', '', '', '0000-00-00', 9419, '', NULL), (9420, 1707, '', '', '', '0000-00-00', 9420, '', NULL), (9421, 1708, '', '', '', '0000-00-00', 9421, '', NULL), (9422, 1709, '', '', '', '0000-00-00', 9422, '', NULL), (9423, 1710, '', '', '', '0000-00-00', 9423, '', NULL), (9424, 1711, '', '', '', '0000-00-00', 9424, '', NULL), (9425, 1712, '', '', '', '0000-00-00', 9425, '', NULL), (9426, 1713, '', '', '', '0000-00-00', 9426, '', NULL), (9427, 1714, '', '', '', '0000-00-00', 9427, '', NULL), (9428, 1715, '', '', '', '0000-00-00', 9428, '', NULL), (9429, 1716, '', '', '', '0000-00-00', 9429, '', NULL), (9430, 1717, '', '', '', '0000-00-00', 9430, '', NULL), (9431, 1718, '', '', '', '0000-00-00', 9431, '', NULL), (9432, 1719, 'S/N C5000', ' w/ Speed Control (Man Specs)', 'Range: 0.1 in/min', '2013-02-26', 9432, '2/26/2013', NULL), (9433, 1720, '', '', '', '0000-00-00', 9433, '', NULL), (9434, 1721, 'S/N 65107', 'Accu-Weight Mechanical Model 301TADL/A-54 Scale (E-898)', 'Cap: 300 lbs ', '2013-03-27', 9434, '3/27/2013', NULL), (9435, 1722, 'S/N 2822-435', 'Carver 20 Ton Press R & D (E-4 & Man Specs )', 'Cap: 30K (5,900 psi) (liquid filled gauge)', '2013-03-26', 9435, '3/26/2013', NULL), (9436, 1723, '', '', '', '0000-00-00', 9436, '', NULL), (9437, 1724, '', '', '', '0000-00-00', 9437, '', NULL), (9438, 1725, '', '', '', '0000-00-00', 9438, '', NULL), (9439, 1726, '', '', '', '0000-00-00', 9439, '', NULL), (9440, 1727, 'S/N 901237YL', ' Revere Load Cell Model C-46170 Blue (E-4)', 'Range: 50K', '2008-03-31', 9440, '3/31/2008', NULL), (9441, 1728, '', '', '', '0000-00-00', 9441, '', NULL), (9442, 1729, '', '', '', '0000-00-00', 9442, '', NULL), (9443, 1730, '', '', '', '0000-00-00', 9443, '', NULL), (9444, 1731, '', '', '', '0000-00-00', 9444, '', NULL), (9445, 1732, '', '', '', '0000-00-00', 9445, '', NULL), (9446, 1733, '', '', '', '0000-00-00', 9446, '', NULL), (9447, 1734, '', '', '', '0000-00-00', 9447, '', NULL), (9448, 1735, '', '', '', '0000-00-00', 9448, '', NULL), (9449, 1736, '', '', '', '0000-00-00', 9449, '', NULL), (9450, 1737, '', '', '', '0000-00-00', 9450, '', NULL), (9451, 1738, '', '', '', '0000-00-00', 9451, '', NULL), (9452, 1739, '', '', '', '0000-00-00', 9452, '', NULL), (9453, 1740, '', '', '', '0000-00-00', 9453, '', NULL), (9454, 1741, '', '', '', '0000-00-00', 9454, '', NULL), (9455, 1742, '', '', '', '0000-00-00', 9455, '', NULL), (9456, 1743, '', '', '', '0000-00-00', 9456, '', NULL), (9457, 1744, 'S/N 270/946.67', ' with Range Card', 'Range: 5K ID#25-LC06RC04', '0000-00-00', 9457, '', NULL), (9458, 1745, 'S/N 270/78094', ' with Range Card', 'Range: 5K ID#25-LC11RC01', '0000-00-00', 9458, '', NULL), (9459, 1746, '', '', '', '0000-00-00', 9459, '', NULL), (9460, 1747, '', '', '', '0000-00-00', 9460, '', NULL), (9461, 1748, '', '', '', '0000-00-00', 9461, '', NULL), (9462, 1749, '', '', '', '0000-00-00', 9462, '', NULL), (9463, 1750, '', 'person ordering the services ', '', '0000-00-00', 9463, '', NULL), (9464, 1751, '', 'person ordering the services ', '', '0000-00-00', 9464, '', NULL), (9465, 1752, '', '', '', '0000-00-00', 9465, '', NULL), (9466, 1753, 'S/N 163', ' with 1 load cell Model E-212 (E-4)', 'Cap: 2K', '2002-04-17', 9466, '4/17/2002', NULL), (9467, 1754, '', '', '', '0000-00-00', 9467, '', NULL), (9468, 1755, '', '', '', '0000-00-00', 9468, '', NULL), (9469, 1756, '', '', '', '0000-00-00', 9469, '', NULL), (9470, 1757, '', '', '', '0000-00-00', 9470, '', NULL), (9471, 1758, '', '', '', '0000-00-00', 9471, '', NULL), (9472, 1759, '', '', '', '0000-00-00', 9472, '', NULL), (9473, 1760, '', '', '', '0000-00-00', 9473, '', NULL), (9474, 1761, '', '', '', '0000-00-00', 9474, '', NULL), (9475, 1762, '', '', '', '0000-00-00', 9475, '', NULL), (9476, 1763, '', '', '', '0000-00-00', 9476, '', NULL), (9477, 1764, '', 'Wanted Bill\'s advice on how to move ', '', '0000-00-00', 9477, '', NULL), (9478, 1765, '', '', '', '0000-00-00', 9478, '', NULL), (9479, 1766, '', '', '', '0000-00-00', 9479, '', NULL), (9480, 1767, '', '', '', '0000-00-00', 9480, '', NULL), (9481, 1768, '', '', '', '0000-00-00', 9481, '', NULL), (9482, 1769, '', '', '', '0000-00-00', 9482, '', NULL), (9483, 1770, '', '', '', '0000-00-00', 9483, '', NULL), (9484, 1771, '', '', '', '0000-00-00', 9484, '', NULL), (9485, 1772, '', '', '', '0000-00-00', 9485, '', NULL), (9486, 1773, '', '', '', '0000-00-00', 9486, '', NULL), (9487, 1774, '', '', '', '0000-00-00', 9487, '', NULL), (9488, 1775, '', '', '', '0000-00-00', 9488, '', NULL), (9489, 1776, '', '', '', '0000-00-00', 9489, '', NULL), (9490, 1777, '', '', '', '0000-00-00', 9490, '', NULL), (9491, 1778, '', '', '', '0000-00-00', 9491, '', NULL), (9492, 1779, '', '', '', '0000-00-00', 9492, '', NULL), (9493, 1780, 'S/N 11N25191', 'Scale, Accu-wt Model 301-TD', '', NULL, 9493, 'NEW', NULL), (9494, 1781, '', '', '', '0000-00-00', 9494, '', NULL), (9495, 1782, '', '', '', '0000-00-00', 9495, '', NULL), (9496, 1783, '', '', '', '0000-00-00', 9496, '', NULL), (9497, 1784, 'S/N 90062', 'Schmidt Test Hammer Type N', '', '1996-04-11', 9497, '4/11/1996', NULL), (9498, 1785, '', 'Gram Scale Ohaus Model 2610 ID #2', '', NULL, 9498, 'NEW', NULL), (9499, 1786, '', '', '', '0000-00-00', 9499, '', NULL), (9500, 1787, '', '', '', '0000-00-00', 9500, '', NULL), (9501, 1788, '', '', '', '0000-00-00', 9501, '', NULL), (9502, 1789, '', '', '', '0000-00-00', 9502, '', NULL), (9503, 1790, '', '', '', '0000-00-00', 9503, '', NULL), (9504, 1791, '', '', '', '0000-00-00', 9504, '', NULL), (9505, 1792, '', '', '', '0000-00-00', 9505, '', NULL), (9506, 1793, '', '', '', '0000-00-00', 9506, '', NULL), (9507, 1794, '', '', '', '0000-00-00', 9507, '', NULL), (9508, 1795, '', '', '', '0000-00-00', 9508, '', NULL), (9509, 1796, '', '', '', '0000-00-00', 9509, '', NULL), (9510, 1797, '', '', '', '0000-00-00', 9510, '', NULL), (9511, 1798, '', '', '', '0000-00-00', 9511, '', NULL), (9512, 1799, '', '', '', '0000-00-00', 9512, '', NULL), (9513, 1800, '', '', '', '0000-00-00', 9513, '', NULL), (9514, 1801, '', '', '', '0000-00-00', 9514, '', NULL), (9515, 1802, '', '', '', '0000-00-00', 9515, '', NULL), (9516, 1803, '', '', '', '0000-00-00', 9516, '', NULL), (9517, 1804, 'S/N', 'Satec Compression Machine w/2,000 lb Load Cell (E-4)', 'Range: ', NULL, 9517, 'New', NULL), (9518, 1805, '', '', '', '0000-00-00', 9518, '', NULL), (9519, 1806, '', '', '', '0000-00-00', 9519, '', NULL), (9520, 1807, '', '', '', '0000-00-00', 9520, '', NULL), (9521, 1808, '', '', '', '0000-00-00', 9521, '', NULL), (9522, 1809, '', '', '', '0000-00-00', 9522, '', NULL), (9523, 1810, 'S/N 405164', 'Humboldt Master Loader ', '', '2007-03-14', 9523, '3/14/2007', NULL), (9524, 1811, 'S/N 20106055', ' w/ Extra Load Cell Mdl. PSB5000 (E-4)', 'Range: 5K ', '2008-03-26', 9524, '3/26/2008', NULL), (9525, 1812, '', '', '', '0000-00-00', 9525, '', NULL), (9526, 1813, '', '', '', '0000-00-00', 9526, '', NULL), (9527, 1814, '', '', '', '0000-00-00', 9527, '', NULL), (9528, 1815, '', '', '', '0000-00-00', 9528, '', NULL), (9529, 1816, '', '', '', '0000-00-00', 9529, '', NULL), (9530, 1817, '', '', '', '0000-00-00', 9530, '', NULL), (9531, 1818, '', '', '', '0000-00-00', 9531, '', NULL), (9532, 1819, 'S/N 1 ', 'Soiltest Dial Indicator (OOS) (D-6027)', 'Range: 0.4 inch ', NULL, 9532, 'New', NULL), (9533, 1820, 'S/N 23515', 'Soiltest Marshall CBR Single Proving Ring (E-4 & Man Specs )', 'Cap: 10K', '2013-05-07', 9533, '5/7/2013', NULL), (9534, 1821, '', '', '', '0000-00-00', 9534, '', NULL), (9535, 1822, '', '', '', '0000-00-00', 9535, '', NULL), (9536, 1823, 'S/N 061142032', 'Humboldt H-4158.1 Dial Indicator (D-6027)', 'Range: 1 Inch ', '2013-05-07', 9536, '5/7/2013', NULL), (9537, 1824, '', '', '', '0000-00-00', 9537, '', NULL), (9538, 1825, '', '', '', '0000-00-00', 9538, '', NULL), (9539, 1826, 'S/N A-1232/20724', 'Hogentogler Dial Indicator (D-6027)', 'Range: 1 Inch', NULL, 9539, 'New', NULL), (9540, 1827, '', '', '', '0000-00-00', 9540, '', NULL), (9541, 1828, '', '', '', '0000-00-00', 9541, '', NULL), (9542, 1829, '', '', '', '0000-00-00', 9542, '', NULL), (9543, 1830, '', '', '', '0000-00-00', 9543, '', NULL), (9544, 1831, 'S/N 92759', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-05-15', 9544, '5/15/2013', NULL), (9545, 1832, '', '', '', '0000-00-00', 9545, '', NULL), (9546, 1833, '', ' ', '', '0000-00-00', 9546, '', NULL), (9547, 1834, 'S/N 783', 'Pine Instrument AF850T Asphalt Press w/ Test Spring S/N 802', 'Range: 2.5K/5K/10K (E-4 & 2%)', '2010-05-19', 9547, '5/19/2010', NULL), (9548, 1835, 'S/N 498', ' w/ Test Spring ', 'Range:', '2012-05-15', 9548, '5/15/2012', NULL), (9549, 1836, '', '', '', '0000-00-00', 9549, '', NULL), (9550, 1837, '', '', '', '0000-00-00', 9550, '', NULL), (9551, 1838, 'S/N 990203', 'Karol Warner Mdl. 1032 Consolidation Frame (E-4)', 'Range: 1/8TSF to 22 TSF', '2013-07-31', 9551, '7/31/2013', NULL), (9552, 1839, 'S/N 033292140', 'Logic BasicDial Indicator Model BG1720 (D-6027)', 'Range: 2 Inches', '2013-05-21', 9552, '5/21/2013', NULL), (9553, 1840, 'S/N 050595', 'Geotest Mdl. 55215A Direct Shear Machine (E-4)', 'Range: 20 lbs to 1,000lbs Shear Force', '2013-05-21', 9553, '5/21/2013', NULL), (9554, 1841, 'S/N 20771', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs )', 'Cap: 2K', '2013-05-20', 9554, '5/20/2013', NULL), (9555, 1842, 'S/N 103/2365014', 'Trautwein Model MVFS Pressure Transducer (D-5720)', 'Range: 150 PSI ', '2013-05-20', 9555, '5/20/2013', NULL), (9556, 1843, 'S/N LP-489', 'Geotac LS3 w/ Geotac DAU (Channel 3 LVDT 3) LVDT (D-6027)', 'Range: 2 inches', '2011-05-23', 9556, '5/23/2011', NULL), (9557, 1844, 'S/N 027799', 'Inteface Mdl.SSM-2000 Load Cell w/Geotac DAU (Load 2 CH #4) ', 'Range: 1K (E-4) ', '2012-05-21', 9557, '5/21/2012', NULL), (9558, 1845, 'S/N 95019', 'Wegener 500B Ultitest Tensiometer (E-4 &2% ManSpecs)', 'Range: 500 lbs', '2013-05-21', 9558, '5/21/2013', NULL), (9559, 1846, '', '', '', '0000-00-00', 9559, '', NULL), (9560, 1847, 'S/N Unknown', 'Forney PT-250 Pipe Tester (E-4 & C-497)', 'Range: 500K ', '2012-05-23', 9560, '5/23/2012', NULL), (9561, 1848, '', '', '', '0000-00-00', 9561, '', NULL), (9562, 1849, '', '', '', '0000-00-00', 9562, '', NULL), (9563, 1850, '', '', '', '0000-00-00', 9563, '', NULL), (9564, 1851, '', '', '', '0000-00-00', 9564, '', NULL), (9565, 1852, '', '', '', '0000-00-00', 9565, '', NULL), (9566, 1853, '', '', '', '0000-00-00', 9566, '', NULL), (9567, 1854, '', '', '', '0000-00-00', 9567, '', NULL), (9568, 1855, '', '', '', '0000-00-00', 9568, '', NULL), (9569, 1856, '', '', '', '0000-00-00', 9569, '', NULL), (9570, 1857, '', '', '', '0000-00-00', 9570, '', NULL), (9571, 1858, '', '', '', '0000-00-00', 9571, '', NULL), (9572, 1859, '', '', '', '0000-00-00', 9572, '', NULL), (9573, 1860, '', '', '', '0000-00-00', 9573, '', NULL), (9574, 1861, '', '', '', '0000-00-00', 9574, '', NULL), (9575, 1862, '', '', '', '0000-00-00', 9575, '', NULL), (9576, 1863, '', ' with 50K Load Cell', '', '0000-00-00', 9576, '', NULL), (9577, 1864, '', '', '', '0000-00-00', 9577, '', NULL), (9578, 1865, 'S/N 78094', 'Range Card', 'Cap: 1K', '1995-12-31', 9578, '12/31/1995', NULL), (9579, 1866, 'S/N 213471', 'Viatran Transducer: Item #130 SSM - Intensifer Accum', 'Range 6000 psi', '1996-05-08', 9579, '5/8/1996', NULL), (9580, 1867, 'S/N 4', 'Gauge', 'Range 3000 psi', '1996-05-08', 9580, '5/8/1996', NULL), (9581, 1868, '', '', '', '0000-00-00', 9581, '', NULL), (9582, 1869, 'S/N 0225298A', ' with Displacement Card', '1\" Displacement, ID#25-MTS3DCO4', '1998-02-25', 9582, '2/25/1998', NULL), (9583, 1870, 'S/N 1985', 'Range Card #3 (Tag# 25-LC09RC03)', 'Range 10 Kip', '1998-05-27', 9583, '5/27/1998', NULL), (9584, 1871, 'S/N 71503', 'Range Card #3 (Tag# 25-LC10RC03)', 'Range 1 Kip', '1998-05-27', 9584, '5/27/1998', NULL), (9585, 1872, 'S/N 2162', 'Extensometer 632.11-E20 (Tag# 25-EXT08)', 'Range +.15, -.15 inch', '1998-05-28', 9585, '5/28/1998', NULL), (9586, 1873, '', '', '', '0000-00-00', 9586, '', NULL), (9587, 1874, '', '', '', '0000-00-00', 9587, '', NULL), (9588, 1875, '', '', '', '0000-00-00', 9588, '', NULL), (9589, 1876, '', 'person ordering the services ', '', '0000-00-00', 9589, '', NULL), (9590, 1877, '', '', '', '0000-00-00', 9590, '', NULL), (9591, 1878, '', '', '', '0000-00-00', 9591, '', NULL), (9592, 1879, '', '', '', '0000-00-00', 9592, '', NULL), (9593, 1880, '', '', '', '0000-00-00', 9593, '', NULL), (9594, 1881, '', '', '', '0000-00-00', 9594, '', NULL), (9595, 1882, '', '', '', '0000-00-00', 9595, '', NULL), (9596, 1883, '', '', '', '0000-00-00', 9596, '', NULL), (9597, 1884, '', '', '', '0000-00-00', 9597, '', NULL), (9598, 1885, '', '', '', '0000-00-00', 9598, '', NULL), (9599, 1886, '', '', '', '0000-00-00', 9599, '', NULL), (9600, 1887, '', '', '', '0000-00-00', 9600, '', NULL), (9601, 1888, '', '', '', '0000-00-00', 9601, '', NULL), (9602, 1889, '', '', '', '0000-00-00', 9602, '', NULL), (9603, 1890, '', '', '', '0000-00-00', 9603, '', NULL), (9604, 1891, 'S/N 100PSI', 'Conbel Pressure Gauge (in house)', 'Range 100 psi', '1995-05-23', 9604, '5/23/1995', NULL), (9605, 1892, '', '', '', '0000-00-00', 9605, '', NULL), (9606, 1893, '', '', '', '0000-00-00', 9606, '', NULL), (9607, 1894, '', '', '', '0000-00-00', 9607, '', NULL), (9608, 1895, '', '', '', '0000-00-00', 9608, '', NULL), (9609, 1896, 'S/N 21054', 'Soiltest Single Proving Ring', 'Cap: 250#', '1995-07-25', 9609, '7/25/1995', NULL), (9610, 1897, '', '', '', '0000-00-00', 9610, '', NULL), (9611, 1898, '', '', '', '0000-00-00', 9611, '', NULL), (9612, 1899, '', '', '', '0000-00-00', 9612, '', NULL), (9613, 1900, '', '', '', '0000-00-00', 9613, '', NULL), (9614, 1901, '', '', '', '0000-00-00', 9614, '', NULL), (9615, 1902, '', '', '', '0000-00-00', 9615, '', NULL), (9616, 1903, '', '', '', '0000-00-00', 9616, '', NULL), (9617, 1904, '', '', '', '0000-00-00', 9617, '', NULL), (9618, 1905, 'S/N VT-1063', 'Soiltest Versa-Tester 30M Model AP-1000 (E-4)', 'Range: 12K/60K (OUT OF SERVICE)', '2004-06-02', 9618, '6/2/2004', NULL), (9619, 1906, 'S/N 1840', ' Back Up Cell MTS MDL 3187-111 (E-4)', 'Range: 100 lbs to 10,000 lbs ', '2008-05-29', 9619, '5/29/2008', NULL), (9620, 1907, '', '', '', '0000-00-00', 9620, '', NULL), (9621, 1908, '', '', '', '0000-00-00', 9621, '', NULL), (9622, 1909, '', '', '', '0000-00-00', 9622, '', NULL), (9623, 1910, '', '', '', '0000-00-00', 9623, '', NULL), (9624, 1911, '', '', '', '0000-00-00', 9624, '', NULL), (9625, 1912, '', ' w/Load Cell PSB0400', '', '2007-05-09', 9625, '5/9/2007', NULL), (9626, 1913, '', '', '', '0000-00-00', 9626, '', NULL), (9627, 1914, 'S/N 392', 'Brainard-Kilman Pressure Transducer Mdl E125 (D-5720)', 'Range: 150 psi', '2006-08-01', 9627, '8/1/2006', NULL), (9628, 1915, '', '', '', '0000-00-00', 9628, '', NULL), (9629, 1916, 'S/N 11518', 'Ohaus Brainweigh OB-5000 Scale (E-898)', 'Range: 1 Gram to 5,000 Gram ', '2008-06-05', 9629, '6/5/2008', NULL), (9630, 1917, '', '', '', '0000-00-00', 9630, '', NULL), (9631, 1918, '', '', '', '0000-00-00', 9631, '', NULL), (9632, 1919, '', '', '', '0000-00-00', 9632, '', NULL), (9633, 1920, '', '', '', '0000-00-00', 9633, '', NULL), (9634, 1921, '', '', '', '0000-00-00', 9634, '', NULL), (9635, 1922, '', '', '', '0000-00-00', 9635, '', NULL), (9636, 1923, '', '', '', '0000-00-00', 9636, '', NULL), (9637, 1924, 'S/N 5', 'Soiltest Dial Indicator (D-6027)', 'Range: 1 Inch ', '2009-05-13', 9637, '5/13/2009', NULL), (9638, 1925, 'S/N 5996', 'Soiltest Single Proving Ring (E-4 & Man Specs.)', 'Range: 2,000 lbs', '2005-12-19', 9638, '12/19/2005', NULL), (9639, 1926, '', '', '', '0000-00-00', 9639, '', NULL), (9640, 1927, '', '', '', '0000-00-00', 9640, '', NULL), (9641, 1928, '', '', '', '0000-00-00', 9641, '', NULL), (9642, 1929, '', '', '', '0000-00-00', 9642, '', NULL), (9643, 1930, '', '', '', '0000-00-00', 9643, '', NULL), (9644, 1931, '', ' (Pump is off a CT-715H S/N 9006)', '', '0000-00-00', 9644, '', NULL), (9645, 1932, '', '', '', '0000-00-00', 9645, '', NULL), (9646, 1933, '', '', '', '0000-00-00', 9646, '', NULL), (9647, 1934, '', '', '', '0000-00-00', 9647, '', NULL), (9648, 1935, 'S/N 9912', 'Soiltest 36-0657 Digital Compression Machine w/DR-500 (E-4) ', 'Range: 250K gauge and microhead digital', '2005-12-06', 9648, '12/6/2005', NULL), (9649, 1936, '', '', '', '0000-00-00', 9649, '', NULL), (9650, 1937, '', '', '', '0000-00-00', 9650, '', NULL), (9651, 1938, '', '', '', '0000-00-00', 9651, '', NULL), (9652, 1939, '', '', '', '0000-00-00', 9652, '', NULL), (9653, 1940, '', '', '', '0000-00-00', 9653, '', NULL), (9654, 1941, '', '', '', '0000-00-00', 9654, '', NULL), (9655, 1942, '', '', '', '0000-00-00', 9655, '', NULL), (9656, 1943, '', '', '', '0000-00-00', 9656, '', NULL), (9657, 1944, '', '', '', '0000-00-00', 9657, '', NULL), (9658, 1945, '', '', '', '0000-00-00', 9658, '', NULL), (9659, 1946, '', '', '', '0000-00-00', 9659, '', NULL), (9660, 1947, '', '', '', '0000-00-00', 9660, '', NULL), (9661, 1948, '', '', '', '0000-00-00', 9661, '', NULL), (9662, 1949, '', '', '', '0000-00-00', 9662, '', NULL), (9663, 1950, '', '', '', '0000-00-00', 9663, '', NULL), (9664, 1951, '', '', '', '0000-00-00', 9664, '', NULL), (9665, 1952, '', '', '', '0000-00-00', 9665, '', NULL), (9666, 1953, '', '', '', '0000-00-00', 9666, '', NULL), (9667, 1954, '', '', '', '0000-00-00', 9667, '', NULL), (9668, 1955, '', '', '', '0000-00-00', 9668, '', NULL), (9669, 1956, '', '', '', '0000-00-00', 9669, '', NULL), (9670, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 9670, 'New', NULL), (9671, 1958, 'S/ N 5999', 'Geo Con Load Cell--Model 4900 w/ indicator', 'Range: 350K (E-4)', '2002-04-12', 9671, '4/12/2002', NULL), (9672, 1959, 'S/N', 'No Shok Air Meter Gauge (D-5720)', 'Range: 15 PSI', '2009-11-02', 9672, '11/2/2009', NULL), (9673, 1960, 'S/N 289', ' w/LVDT', '', '0000-00-00', 9673, '', NULL), (9674, 1961, '', '', '', '0000-00-00', 9674, '', NULL), (9675, 1962, '', '', '', '0000-00-00', 9675, '', NULL), (9676, 1963, '', '', '', '0000-00-00', 9676, '', NULL), (9677, 1964, '', '', '', '0000-00-00', 9677, '', NULL), (9678, 1965, '', '', '', '0000-00-00', 9678, '', NULL), (9679, 1966, '', '', '', '0000-00-00', 9679, '', NULL), (9680, 1967, '', '', '', '0000-00-00', 9680, '', NULL), (9681, 1968, '', '', '', '0000-00-00', 9681, '', NULL), (9682, 1969, '', '', '', '0000-00-00', 9682, '', NULL), (9683, 1970, '', '', '', '0000-00-00', 9683, '', NULL), (9684, 1971, 'S/N D98408', 'ELE Soiltest Hammer-Model CT-320A', ' ', '2002-01-09', 9684, '1/9/2002', NULL), (9685, 1972, 'S/N J07393', 'w/ 10 kip Load Cell Model DBBP', '', '0000-00-00', 9685, '', NULL), (9686, 1973, '', '', '', '0000-00-00', 9686, '', NULL), (9687, 1974, '', '', '', '0000-00-00', 9687, '', NULL), (9688, 1975, '', '', '', '0000-00-00', 9688, '', NULL), (9689, 1976, '', '', '', '0000-00-00', 9689, '', NULL), (9690, 1977, 'S/N 100994', 'Zwick Extensometer', 'Range 200mm', '0000-00-00', 9690, '', NULL), (9691, 1978, '', '', '', '0000-00-00', 9691, '', NULL), (9692, 1979, '', '', '', '0000-00-00', 9692, '', NULL), (9693, 1980, '', '', '', '0000-00-00', 9693, '', NULL), (9694, 1981, '', '', '', '0000-00-00', 9694, '', NULL), (9695, 1982, '', '', '', '0000-00-00', 9695, '', NULL), (9696, 1983, '', '', '', '0000-00-00', 9696, '', NULL), (9697, 1984, '', '', '', '0000-00-00', 9697, '', NULL), (9698, 1985, 'S/N 1155-16-19883', 'ELE 1155BO800 Single Proving Ring (E-4 & Man Specs)', 'Range: 28KN', '2005-12-13', 9698, '12/13/2005', NULL), (9699, 1986, '', '', '', '0000-00-00', 9699, '', NULL), (9700, 1987, '', '', '', '0000-00-00', 9700, '', NULL), (9701, 1988, 'S/N Unknown', 'Power Pole Pipe Tester w/ Rice Lake Digital (E-4 & C-497)', 'Range: 300K', '2007-05-10', 9701, '5/10/2007', NULL), (9702, 1989, 'S/N 0219185', 'MTS / Instron Controller Mdl. 810 Frame (661.22C-01 Cell)', 'Range: 55K', NULL, 9702, 'New', NULL), (9703, 1990, '', '', '', '0000-00-00', 9703, '', NULL), (9704, 1991, '', '', '', '0000-00-00', 9704, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (9705, 1992, '', '', '', '0000-00-00', 9705, '', NULL), (9706, 1993, '', '', '', '0000-00-00', 9706, '', NULL), (9707, 1994, '', '', '', '0000-00-00', 9707, '', NULL), (9708, 1995, '', '', '', '0000-00-00', 9708, '', NULL), (9709, 1996, '', '', '', '0000-00-00', 9709, '', NULL), (9710, 1997, 'S/N 20951', 'Soiltest AP-170-A Marshall Single Proving Ring (OOS)', 'Cap: 10K Plant #18 (E-4 & Man Specs)', '2007-12-08', 9710, '12/8/2007', NULL), (9711, 1998, '', '', '', '0000-00-00', 9711, '', NULL), (9712, 1999, '', '', '', '0000-00-00', 9712, '', NULL), (9713, 2000, 'S/N MG2824', ' w/Humboldt LVDT (D-6027)', 'Range: 2 Inch ', '2011-10-06', 9713, '10/6/2011', NULL), (9714, 2001, '', '', '', '0000-00-00', 9714, '', NULL), (9715, 2002, '', '', '', '0000-00-00', 9715, '', NULL), (9716, 2003, '', '', '', '0000-00-00', 9716, '', NULL), (9717, 2004, '', '', '', '0000-00-00', 9717, '', NULL), (9718, 2005, 'S/N M-1684', 'Wabash 100 Ton Press PRE08 (E-4 & 2%)', 'Range: 100 ton', '2012-10-18', 9718, '10/18/2012', NULL), (9719, 2006, '', '', '', '0000-00-00', 9719, '', NULL), (9720, 2007, '', '', '', '0000-00-00', 9720, '', NULL), (9721, 2008, 'S/N 05058', 'Forney FX-400F-F96 Digital Compression Machine (E-4)', 'Range: 4K to 400K', '2013-10-16', 9721, '10/16/2013', NULL), (9722, 2009, 'S/N 167870', ' w/ Displacement (E-2309)', 'Range: 10 inches', '2011-10-18', 9722, '10/18/2011', NULL), (9723, 2010, '', '', '', '0000-00-00', 9723, '', NULL), (9724, 2011, '', '', '', '0000-00-00', 9724, '', NULL), (9725, 2012, '', '', '', '0000-00-00', 9725, '', NULL), (9726, 2013, '', '', '', '0000-00-00', 9726, '', NULL), (9727, 2014, '', '', '', '0000-00-00', 9727, '', NULL), (9728, 2015, '', '', '', '0000-00-00', 9728, '', NULL), (9729, 2016, '', '', '', '0000-00-00', 9729, '', NULL), (9730, 2017, '', '', '', '0000-00-00', 9730, '', NULL), (9731, 2018, '', '', '', '0000-00-00', 9731, '', NULL), (9732, 2019, '', '', '', '0000-00-00', 9732, '', NULL), (9733, 2020, '', '', '', '0000-00-00', 9733, '', NULL), (9734, 2021, 'S/N Unknown', 'Dynafore F98102 Digital Load Cell System (E-4)', 'Range 1 ton to 25K', '2002-10-31', 9734, '10/31/2002', NULL), (9735, 2022, '', '', '', '0000-00-00', 9735, '', NULL), (9736, 2023, '', '', '', '0000-00-00', 9736, '', NULL), (9737, 2024, '', '', '', '0000-00-00', 9737, '', NULL), (9738, 2025, '', '', '', '0000-00-00', 9738, '', NULL), (9739, 2026, '', '', '', '0000-00-00', 9739, '', NULL), (9740, 2027, '', '', '', '0000-00-00', 9740, '', NULL), (9741, 2028, '', '', '', '0000-00-00', 9741, '', NULL), (9742, 2029, '', '', '', '0000-00-00', 9742, '', NULL), (9743, 2030, '', '', '', '0000-00-00', 9743, '', NULL), (9744, 2031, '', '', '', '0000-00-00', 9744, '', NULL), (9745, 2032, '', '', '', '0000-00-00', 9745, '', NULL), (9746, 2033, '', '', '', '0000-00-00', 9746, '', NULL), (9747, 2034, 'S/N U14', 'Simplex Hydraulic Post Tension Jack (E-4 & PCI)', 'Range 42K', '2000-07-10', 9747, '7/10/2000', NULL), (9748, 2035, '', '', '', '0000-00-00', 9748, '', NULL), (9749, 2036, '', '', '', '0000-00-00', 9749, '', NULL), (9750, 2037, '', '', '', '0000-00-00', 9750, '', NULL), (9751, 2038, '', '', '', '0000-00-00', 9751, '', NULL), (9752, 2039, '', '', '', '0000-00-00', 9752, '', NULL), (9753, 2040, '', '', '', '0000-00-00', 9753, '', NULL), (9754, 2041, '', '', '', '0000-00-00', 9754, '', NULL), (9755, 2042, '', '', '', '0000-00-00', 9755, '', NULL), (9756, 2043, '', '', '', '0000-00-00', 9756, '', NULL), (9757, 2044, 'S/N 150', 'Soiltest Model CT-850 Compression Machine (E-4)', 'Range 100K/400K', '1999-10-20', 9757, '10/20/1999', NULL), (9758, 2045, '', '', '', '0000-00-00', 9758, '', NULL), (9759, 2046, '', '', '', '0000-00-00', 9759, '', NULL), (9760, 2047, '', '', '', '0000-00-00', 9760, '', NULL), (9761, 2048, '', '', '', '0000-00-00', 9761, '', NULL), (9762, 2049, '', '', '', '0000-00-00', 9762, '', NULL), (9763, 2050, 'S/N 6-21-86', 'Strainsense Extensometer (E-83)', 'Range .02\"', '2002-10-21', 9763, '10/21/2002', NULL), (9764, 2051, '', '', '', '0000-00-00', 9764, '', NULL), (9765, 2052, '', '', '', '0000-00-00', 9765, '', NULL), (9766, 2053, 'S/N 1864', 'Skidmore Wilhelm Bolt Tester Model J (E-4)', 'Range 30K', '1998-11-11', 9766, '11/11/1998', NULL), (9767, 2054, '', '', '', '0000-00-00', 9767, '', NULL), (9768, 2055, '', '', '', '0000-00-00', 9768, '', NULL), (9769, 2056, '', '', '', '0000-00-00', 9769, '', NULL), (9770, 2057, 'S/N 225844', 'Dial Gauge Mitutoyo (OUT OF SERVICE) (D-6027)', 'Range: .5 inch', '2004-10-25', 9770, '10/25/2004', NULL), (9771, 2058, 'S/N 110', ' w/ Geo-Durham Load Cell (Remove from machine to Cal) (E-4)', 'Range: 6K Compression Only', '2007-10-24', 9771, '10/24/2007', NULL), (9772, 2059, '', '', '', '0000-00-00', 9772, '', NULL), (9773, 2060, '', '', '', '0000-00-00', 9773, '', NULL), (9774, 2061, '', '', '', '0000-00-00', 9774, '', NULL), (9775, 2062, '', '', '', '0000-00-00', 9775, '', NULL), (9776, 2063, '', '', '', '0000-00-00', 9776, '', NULL), (9777, 2064, '', '', '', '0000-00-00', 9777, '', NULL), (9778, 2065, '', '', '', '0000-00-00', 9778, '', NULL), (9779, 2066, 'S/N 1810', 'Humboldt H-4454 Single Proving Ring(MOVED)(E-4 & Man Specs)', 'Range: 550 lbs ', '2007-10-10', 9779, '10/10/2007', NULL), (9780, 2067, '', '', '', '0000-00-00', 9780, '', NULL), (9781, 2068, '', '', '', '0000-00-00', 9781, '', NULL), (9782, 2069, 'S/N 88480', 'Post Tension Jack ', 'Range: 60K ', '2006-10-26', 9782, '10/26/2006', NULL), (9783, 2070, '', '', '', '0000-00-00', 9783, '', NULL), (9784, 2071, '', '', '', '0000-00-00', 9784, '', NULL), (9785, 2072, 'S/N 17230', ' RDP Electronics LVDT D5200AG AXIAL 1 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 9785, '10/24/2006', NULL), (9786, 2073, 'S/N 18122', 'RDP Electronics LVDT RADIAL 4 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 9786, '10/24/2006', NULL), (9787, 2074, '', ' w/Gauges #231, #1, #3010, #801, #225, #20', 'Range: 35K', '2007-11-14', 9787, '11/14/2007', NULL), (9788, 2075, 'S/N Q14706-1', 'Strainsert PLNX-2-128 IND Load Cell PC-40 (E-4)', 'Range: 50K OUT OF SERVICE', '2006-04-19', 9788, '4/19/2006', NULL), (9789, 2076, '', '', '', '0000-00-00', 9789, '', NULL), (9790, 2077, '', '', '', '0000-00-00', 9790, '', NULL), (9791, 2078, 'S/N 4212 ID# AL-VG #2', 'Karol Warner 9210 Digital Manometer (ManSpecs & 0.5FS)', 'Range: 800mmHg', '2013-04-19', 9791, '4/19/2013', NULL), (9792, 2079, 'S/N Unknown', 'Soiltest Type N Hammer (C-805)', 'Range: 78 to 82', '2012-10-23', 9792, '10/23/2012', NULL), (9793, 2080, 'S/N 1271', 'Durham Geo E-124 Pressure Transducer (D-5720)', 'Range: 150 psi ', '2012-10-23', 9793, '10/23/2012', NULL), (9794, 2081, '', '', '', '0000-00-00', 9794, '', NULL), (9795, 2082, '', '', '', '0000-00-00', 9795, '', NULL), (9796, 2083, '', 'SPX Post Tension Jack Mdl. SJ2010DA (E-4 & PCI) ', 'Range: 35K', '2008-05-13', 9796, '5/13/2008', NULL), (9797, 2084, '', '', '', '0000-00-00', 9797, '', NULL), (9798, 2085, '', '', '', '0000-00-00', 9798, '', NULL), (9799, 2086, 'S/N 417337A', ' w/ T & C Load Cell (E-4)', 'Range: 500 lbs ', '2013-09-04', 9799, '9/4/2013', NULL), (9800, 2087, '', ' ', ' ', '0000-00-00', 9800, '', NULL), (9801, 2088, '', '', '', '0000-00-00', 9801, '', NULL), (9802, 2089, 'S/N 534', 'Hayes Prestress Jack with Digital-Model 1 (E-4&PCI)', 'Range: 4K / 45K', '2013-09-04', 9802, '9/4/2013', NULL), (9803, 2090, 'S/N 4204145', 'Humbolt Single Proving Ring (E-4 & Man Specs)', 'Cap: 200 lbs', '2012-09-06', 9803, '9/6/2012', NULL), (9804, 2091, '', '', '', '0000-00-00', 9804, '', NULL), (9805, 2092, 'S/N 092130078', 'Paul HBM Load Cell (E-4 & PCI & 2%)', 'Range: 13.5 KN / 200 KN ', '2013-09-03', 9805, '9/3/2013', NULL), (9806, 2093, '', '', '', '0000-00-00', 9806, '', NULL), (9807, 2094, 'S/N Unknown', 'Simplex Prestress Jack (E-4 &PCI)', 'Range: 3K (700 PSI) / 35K', '2013-09-10', 9807, '9/10/2013', NULL), (9808, 2095, '', '', '', '0000-00-00', 9808, '', NULL), (9809, 2096, '', '', '', '0000-00-00', 9809, '', NULL), (9810, 2097, '', '', '', '0000-00-00', 9810, '', NULL), (9811, 2098, '', '', '', '0000-00-00', 9811, '', NULL), (9812, 2099, '', '', '', '0000-00-00', 9812, '', NULL), (9813, 2100, '', '', '', '0000-00-00', 9813, '', NULL), (9814, 2101, '', '', '', '0000-00-00', 9814, '', NULL), (9815, 2102, '', '', '', '0000-00-00', 9815, '', NULL), (9816, 2103, '', '', '', '0000-00-00', 9816, '', NULL), (9817, 2104, '', '', '', '0000-00-00', 9817, '', NULL), (9818, 2105, '', '', '', '0000-00-00', 9818, '', NULL), (9819, 2106, '', '', '', '0000-00-00', 9819, '', NULL), (9820, 2107, '', '', '', '0000-00-00', 9820, '', NULL), (9821, 2108, '', '', '', '0000-00-00', 9821, '', NULL), (9822, 2109, 'S/N 4041', 'MTS Load Cell 661.21A-03 (T & C)', 'Range 2/4/10/20K', '1996-08-08', 9822, '8/8/1996', NULL), (9823, 2110, '', '', '', '0000-00-00', 9823, '', NULL), (9824, 2111, '', '', '', '0000-00-00', 9824, '', NULL), (9825, 2112, '', '', '', '0000-00-00', 9825, '', NULL), (9826, 2113, '', '', '', '0000-00-00', 9826, '', NULL), (9827, 2114, '', '', '', '0000-00-00', 9827, '', NULL), (9828, 2115, '', '', '', '0000-00-00', 9828, '', NULL), (9829, 2116, '', '', '', '0000-00-00', 9829, '', NULL), (9830, 2117, '', '', '', '0000-00-00', 9830, '', NULL), (9831, 2118, '', '', '', '0000-00-00', 9831, '', NULL), (9832, 2119, '', '', '', '0000-00-00', 9832, '', NULL), (9833, 2120, '', '', '', '0000-00-00', 9833, '', NULL), (9834, 2121, '', '', '', '0000-00-00', 9834, '', NULL), (9835, 2122, '', '', '', '0000-00-00', 9835, '', NULL), (9836, 2123, '', '', '', '0000-00-00', 9836, '', NULL), (9837, 2124, '', '', '', '0000-00-00', 9837, '', NULL), (9838, 2125, '', '', '', '0000-00-00', 9838, '', NULL), (9839, 2126, '', '', '', '0000-00-00', 9839, '', NULL), (9840, 2127, '', '', '', '0000-00-00', 9840, '', NULL), (9841, 2128, 'S/N 9701', ' Displacement 2 \"', '', '0000-00-00', 9841, '', NULL), (9842, 2129, '', '', '', '0000-00-00', 9842, '', NULL), (9843, 2130, '', '', '', '0000-00-00', 9843, '', NULL), (9844, 2131, '', '', '', '0000-00-00', 9844, '', NULL), (9845, 2132, '', '', '', '0000-00-00', 9845, '', NULL), (9846, 2133, '', '', '', '0000-00-00', 9846, '', NULL), (9847, 2134, '', '', '', '0000-00-00', 9847, '', NULL), (9848, 2135, '', '', '', '0000-00-00', 9848, '', NULL), (9849, 2136, '', '', '', '0000-00-00', 9849, '', NULL), (9850, 2137, 'S/N AP 26100', 'Dillon Dynamometer', '', '0000-00-00', 9850, '', NULL), (9851, 2138, '', '', '', '0000-00-00', 9851, '', NULL), (9852, 2139, '', '', '', '0000-00-00', 9852, '', NULL), (9853, 2140, '', '', '', '0000-00-00', 9853, '', NULL), (9854, 2141, '', '', '', '0000-00-00', 9854, '', NULL), (9855, 2142, '', '', '', '0000-00-00', 9855, '', NULL), (9856, 2143, 'S/N', 'Satec Extensometer (E-83)', 'Range: ', NULL, 9856, 'New', NULL), (9857, 2144, '', '', '', '0000-00-00', 9857, '', NULL), (9858, 2145, '', '', '', '0000-00-00', 9858, '', NULL), (9859, 2146, '', '', '', '0000-00-00', 9859, '', NULL), (9860, 2147, 'S/N 101816', ' with Load Cell', '', '0000-00-00', 9860, '', NULL), (9861, 2148, 'S/N 190409', 'ELE Bond Wrench Tester Model SP-10025 (OOS) (E-4)', 'Range: 20 lbs to 1,000 lbs', '2005-09-14', 9861, '9/14/2005', NULL), (9862, 2149, '', 'Triaxial Machine', '', '0000-00-00', 9862, '', NULL), (9863, 2150, '', '2 - Linear Tranducers', '', '0000-00-00', 9863, '', NULL), (9864, 2151, '', '', '', '0000-00-00', 9864, '', NULL), (9865, 2152, '', '', '', '0000-00-00', 9865, '', NULL), (9866, 2153, '', '', '', '0000-00-00', 9866, '', NULL), (9867, 2154, '', '', '', '0000-00-00', 9867, '', NULL), (9868, 2155, '', '', '', '0000-00-00', 9868, '', NULL), (9869, 2156, '', '', '', '0000-00-00', 9869, '', NULL), (9870, 2157, '', '', '', '0000-00-00', 9870, '', NULL), (9871, 2158, '', '', '', '0000-00-00', 9871, '', NULL), (9872, 2159, '', '', '', '0000-00-00', 9872, '', NULL), (9873, 2160, 'S/N H652', 'HCN Dial Indicator (OOS) (D-6027)', 'Range: 2 inch', '2009-08-26', 9873, '8/26/2009', NULL), (9874, 2161, '', '', '', '0000-00-00', 9874, '', NULL), (9875, 2162, '', '', '', '0000-00-00', 9875, '', NULL), (9876, 2163, '', '', '', '0000-00-00', 9876, '', NULL), (9877, 2164, '', '', '', '0000-00-00', 9877, '', NULL), (9878, 2165, '', '', '', '0000-00-00', 9878, '', NULL), (9879, 2166, '', '', '', '0000-00-00', 9879, '', NULL), (9880, 2167, '', '', '', '0000-00-00', 9880, '', NULL), (9881, 2168, '', '', '', '0000-00-00', 9881, '', NULL), (9882, 2169, '', '', '', '0000-00-00', 9882, '', NULL), (9883, 2170, '', '', '', '0000-00-00', 9883, '', NULL), (9884, 2171, '', '', '', '0000-00-00', 9884, '', NULL), (9885, 2172, '', '', '', '0000-00-00', 9885, '', NULL), (9886, 2173, '', '', '', '0000-00-00', 9886, '', NULL), (9887, 2174, '', '', '', '0000-00-00', 9887, '', NULL), (9888, 2175, '', '', '', '0000-00-00', 9888, '', NULL), (9889, 2176, '', '', '', '0000-00-00', 9889, '', NULL), (9890, 2177, '', '', '', '0000-00-00', 9890, '', NULL), (9891, 2178, '', '', '', '0000-00-00', 9891, '', NULL), (9892, 2179, '', '', '', '0000-00-00', 9892, '', NULL), (9893, 2180, '', '', '', '0000-00-00', 9893, '', NULL), (9894, 2181, '', '', '', '0000-00-00', 9894, '', NULL), (9895, 2182, '', '', '', '0000-00-00', 9895, '', NULL), (9896, 2183, '', '', '', '0000-00-00', 9896, '', NULL), (9897, 2184, '', '', '', '0000-00-00', 9897, '', NULL), (9898, 2185, '', '', '', '0000-00-00', 9898, '', NULL), (9899, 2186, '', '', '', '0000-00-00', 9899, '', NULL), (9900, 2187, '', '', '', '0000-00-00', 9900, '', NULL), (9901, 2188, '', '', '', '0000-00-00', 9901, '', NULL), (9902, 2189, '', '', '', '0000-00-00', 9902, '', NULL), (9903, 2190, '', '', '', '0000-00-00', 9903, '', NULL), (9904, 2191, '', '', '', '0000-00-00', 9904, '', NULL), (9905, 2192, '', '', '', '0000-00-00', 9905, '', NULL), (9906, 2193, '', '', '', '0000-00-00', 9906, '', NULL), (9907, 2194, '', '', '', '0000-00-00', 9907, '', NULL), (9908, 2195, '', '', '', '0000-00-00', 9908, '', NULL), (9909, 2196, 'S/N 0518492/8', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 9909, '8/27/2013', NULL), (9910, 2197, 'S/N S-2103', 'Karol Warner Pressure Gauge (D-5720)', 'Range: 100 psi', '2006-02-14', 9910, '2/14/2006', NULL), (9911, 2198, '', '', '', '0000-00-00', 9911, '', NULL), (9912, 2199, '', 'Putting in archived database.', '', '0000-00-00', 9912, '', NULL), (9913, 2200, '', '', '', '0000-00-00', 9913, '', NULL), (9914, 2201, '', 'Putting in archived database', '', '0000-00-00', 9914, '', NULL), (9915, 2202, 'S/N 001', 'Humboldt Beam Tester (E-4 & 2%)', 'Range: 10K ', '2009-02-16', 9915, '2/16/2009', NULL), (9916, 2203, '', 'Putting in archived database', '', '0000-00-00', 9916, '', NULL), (9917, 2204, 'S/N 119', 'Geotest Unconfined Proving Ring (E-4 & Man Specs)', 'Range: 1.5K ', NULL, 9917, 'New', NULL), (9918, 2205, '', ' w/ Shear Displacement LDT (D-6027)', 'Range: ', NULL, 9918, 'New', NULL), (9919, 2206, 'S/N 5500-6168', ' w/ Displacement (D-6027)', 'Range: 5 inch', '2009-03-17', 9919, '3/17/2009', NULL), (9920, 2207, 'S/N 201', 'Karol Warner Proving Ring S504 (E-4 & ManSpecs)', 'Cap: 1K', '2005-02-21', 9920, '2/21/2005', NULL), (9921, 2208, 'S/N 1155-16-12564', 'ELE Proving Ring (E4)', 'Range: 675 lbs', '2005-02-21', 9921, '2/21/2005', NULL), (9922, 2209, 'S/N 5179', 'Soiltest CT-710 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2005-01-06', 9922, '1/6/2005', NULL), (9923, 2210, 'S/N 920', 'BK Pore Pressl--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 9923, '8/30/2006', NULL), (9924, 2211, '', '', '', '0000-00-00', 9924, '', NULL), (9925, 2212, '', '', '', '0000-00-00', 9925, '', NULL), (9926, 2213, '', '', '', '0000-00-00', 9926, '', NULL), (9927, 2214, '', 'Putting in archived database.', '', '0000-00-00', 9927, '', NULL), (9928, 2215, '', '', '', '0000-00-00', 9928, '', NULL), (9929, 2216, '', '', '', '0000-00-00', 9929, '', NULL), (9930, 2217, '', '', '', '0000-00-00', 9930, '', NULL), (9931, 2218, '', 'Putting in archived database', '', '0000-00-00', 9931, '', NULL), (9932, 2219, 'S/N 3345-Q7175', ' w/ Speed Control (Man Specs)', 'Range: 0.5 in/sec', '2008-04-23', 9932, '4/23/2008', NULL), (9933, 2220, 'S/N 00110', 'Enerpac Pushout Tester with Digital Readout (E-4)', 'Range: 12K (ID# ANC 0310) ', '2009-08-13', 9933, '8/13/2009', NULL), (9934, 2221, '', '', '', '0000-00-00', 9934, '', NULL), (9935, 2222, 'S/N 07025BAL', ' w/ Vertical Mdl. SBA-1KLB-I Load Cell (E-4) OOS', 'Range: 1K', '2010-04-01', 9935, '4/1/2010', NULL), (9936, 2223, '', '', '', '0000-00-00', 9936, '', NULL), (9937, 2224, '', '', '', '0000-00-00', 9937, '', NULL), (9938, 2225, '', '', '', '0000-00-00', 9938, '', NULL), (9939, 2226, '', '', '', '0000-00-00', 9939, '', NULL), (9940, 2227, '', '', '', '0000-00-00', 9940, '', NULL), (9941, 2228, 'S/N 11351125140824P', 'Ohaus Scale Mdl. EP2102 ', 'Range: 1,200 Grams ', '2007-05-01', 9941, '5/1/2007', NULL), (9942, 2229, '', '', '', '0000-00-00', 9942, '', NULL), (9943, 2230, '', 'Putting in archived database.', '', '0000-00-00', 9943, '', NULL), (9944, 2231, '', '', '', '0000-00-00', 9944, '', NULL), (9945, 2232, 'S/N: E89762', 'Epsilon Extensometer Model 3542-0200-025-ST (E-83)', 'Range: 0.25 in/in, 2\" GL 25% Range', '2012-03-27', 9945, '3/27/2012', NULL), (9946, 2233, '', 'Putting in archived database.', '', '0000-00-00', 9946, '', NULL), (9947, 2234, '', '', '', '0000-00-00', 9947, '', NULL), (9948, 2235, '', '', '', '0000-00-00', 9948, '', NULL), (9949, 2236, '', '', '', '0000-00-00', 9949, '', NULL), (9950, 2237, '', '', '', '0000-00-00', 9950, '', NULL), (9951, 2238, '', '', '', '0000-00-00', 9951, '', NULL), (9952, 2239, 'S/N 103', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 100 PSI', NULL, 9952, 'New', NULL), (9953, 2240, '', '', '', '0000-00-00', 9953, '', NULL), (9954, 2241, '', 'Putting in archived database.', '', '0000-00-00', 9954, '', NULL), (9955, 2242, 'S/N 9530-31', ' w/ 2000 Recorder (E-83)', 'Range: 1K/6K/15K/30K ', NULL, 9955, 'New', NULL), (9956, 2243, '', '', '', '0000-00-00', 9956, '', NULL), (9957, 2244, '', '', '', '0000-00-00', 9957, '', NULL), (9958, 2245, '', '', '', '0000-00-00', 9958, '', NULL), (9959, 2246, '', 'Putting in archived database.', '', '0000-00-00', 9959, '', NULL), (9960, 2247, '', 'Putting in archived database.', '', '0000-00-00', 9960, '', NULL), (9961, 2248, '', '', '', '0000-00-00', 9961, '', NULL), (9962, 2249, 'S/N B32506', 'Chatillon Pull Tester DFIS-500 Digital (T & C) (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 9962, '4/28/1998', NULL), (9963, 2250, 'S/N 137316', 'Tinius Olsen 5-500-1A (E83-00)', '1\" Extensometer', '2002-01-31', 9963, '1/31/2002', NULL), (9964, 2251, '', '', '', '0000-00-00', 9964, '', NULL), (9965, 2252, '', '', '', '0000-00-00', 9965, '', NULL), (9966, 2253, '', 'Putting in archived database.', '', '0000-00-00', 9966, '', NULL), (9967, 2254, '', '', '', '0000-00-00', 9967, '', NULL), (9968, 2255, '', 'Sold Machine to JK Precast', '', '0000-00-00', 9968, '', NULL), (9969, 2256, '', '', '', '0000-00-00', 9969, '', NULL), (9970, 2257, 'S/N 1 ', 'Soiltest Dial Indicator (OOS) (D-6027)', 'Range: 0.4 inch ', NULL, 9970, 'New', NULL), (9971, 2258, '', '', '', '0000-00-00', 9971, '', NULL), (9972, 2259, '', '', '', '0000-00-00', 9972, '', NULL), (9973, 2260, '', '', '', '0000-00-00', 9973, '', NULL), (9974, 2261, '', '', '', '0000-00-00', 9974, '', NULL), (9975, 2262, '', '', '', '0000-00-00', 9975, '', NULL), (9976, 2263, '', '', '', '0000-00-00', 9976, '', NULL), (9977, 2264, '', ' ', ' ', '0000-00-00', 9977, '', NULL), (9978, 2265, '', '', '', '0000-00-00', 9978, '', NULL), (9979, 2266, 'S/N 2002', 'Pine Instrument Single Proving Ring (E-4 & Man Spec)', 'Range: 18K Newtons', '2015-03-03', 9979, '3/3/2015', NULL), (9980, 2267, '', '', '', '0000-00-00', 9980, '', NULL), (9981, 2268, '', '', '', '0000-00-00', 9981, '', NULL), (9982, 2269, '', '', '', '0000-00-00', 9982, '', NULL), (9983, 2270, '', '', '', '0000-00-00', 9983, '', NULL), (9984, 2271, '', 'Putting in archived database.', '', '0000-00-00', 9984, '', NULL), (9985, 2272, '', '', '', '0000-00-00', 9985, '', NULL), (9986, 2273, '', '', '', '0000-00-00', 9986, '', NULL), (9987, 2274, '', '', '', '0000-00-00', 9987, '', NULL), (9988, 2275, '', '', '', '0000-00-00', 9988, '', NULL), (9989, 2276, '', '', '', '0000-00-00', 9989, '', NULL), (9990, 2277, '', '', '', '0000-00-00', 9990, '', NULL), (9991, 2278, '', '', '', '0000-00-00', 9991, '', NULL), (9992, 2279, '', 'Putting in archived database.', '', '0000-00-00', 9992, '', NULL), (9993, 2280, '', 'Putting in archived database.', '', '0000-00-00', 9993, '', NULL), (9994, 2281, 'S/N 8803559', ' Range .5Kip T & C - 10 Ranges ID#25-LC08 (E-4)', '', '2005-02-17', 9994, '2/17/2005', NULL), (9995, 2282, 'S/N 159819', ' XY Recorder', 'Range 2.4/12/60/120K ID#25-REC01', '2005-03-30', 9995, '3/30/2005', NULL), (9996, 2283, '', '', '', '0000-00-00', 9996, '', NULL), (9997, 2284, 'S/N 270/946.67', ' with Range Card', 'Range: 5K ID#25-LC06RC04', '0000-00-00', 9997, '', NULL), (9998, 2285, 'S/N F13127', 'Hamilton Mdl P-4500 Spare Gauge #3 (E-4& PCI)', 'Range: 1.5K to 4K', '2007-07-09', 9998, '7/9/2007', NULL), (9999, 2286, '', '', '', '0000-00-00', 9999, '', NULL), (10000, 2287, '', '', '', '0000-00-00', 10000, '', NULL), (10001, 2288, '', '', '', '0000-00-00', 10001, '', NULL), (10002, 2289, '', '', '', '0000-00-00', 10002, '', NULL), (10003, 2290, '', '', '', '0000-00-00', 10003, '', NULL), (10004, 2291, '', '', '', '0000-00-00', 10004, '', NULL), (10005, 2292, 'S/N PFS-01', 'TIF Electronic Mdl. 9010A Scale (moved) (E-898)', 'Range: 110 lbs ', '2010-04-13', 10005, '4/13/2010', NULL), (10006, 2293, '', 'Putting in archived database.', '', '0000-00-00', 10006, '', NULL), (10007, 2294, '', 'Putting in archived database.', '', '0000-00-00', 10007, '', NULL), (10008, 2295, '', '', '', '0000-00-00', 10008, '', NULL), (10009, 2296, '', '', '', '0000-00-00', 10009, '', NULL), (10010, 2297, '', 'Putting in archived database.', '', '0000-00-00', 10010, '', NULL), (10011, 2298, '', 'Putting in archived database.', '', '0000-00-00', 10011, '', NULL), (10012, 2299, '', '', '', '0000-00-00', 10012, '', NULL), (10013, 2300, '', '', '', '0000-00-00', 10013, '', NULL), (10014, 2301, '', '', '', '0000-00-00', 10014, '', NULL), (10015, 2302, '', '', '', '0000-00-00', 10015, '', NULL), (10016, 2303, 'S/N 20106055', ' w/ Extra Load Cell Mdl. PSB5000 (E-4)', 'Range: 5K ', '2008-03-26', 10016, '3/26/2008', NULL), (10017, 2304, '', 'Unsure of current location, moving to archived database', '', '0000-00-00', 10017, '', NULL), (10018, 2305, '', 'Unsure of current location; putting in archived database', '', '0000-00-00', 10018, '', NULL), (10019, 2306, '', '', '', '0000-00-00', 10019, '', NULL), (10020, 2307, '', '', '', '0000-00-00', 10020, '', NULL), (10021, 2308, '', 'Sold to CUST#: WALSHARB; putting in archived database.', '', '0000-00-00', 10021, '', NULL), (10022, 2309, '', '', '', '0000-00-00', 10022, '', NULL), (10023, 2310, '', '', '', '0000-00-00', 10023, '', NULL), (10024, 2311, '', '', '', '0000-00-00', 10024, '', NULL), (10025, 2312, 'S/N 18767', 'Total Comp. Load Cell Model TC-33 w/ Laureate Digital (OOS) (E-4)', 'Cap: 25,000 lbs', '2004-04-22', 10025, '4/22/2004', NULL), (10026, 2313, 'S/N 1124012198', 'Ohaus EP 22001C Scale (E-898)', 'Range: 22,000 Grams', '2011-03-29', 10026, '3/29/2011', NULL), (10027, 2314, 'S/N 083169973', 'Humboldt BG2110-0-16 Dial Indicator OOS (D-6027)', 'Range: 1 inch ', '2010-06-08', 10027, '6/8/2010', NULL), (10028, 2315, '', 'Putting in archived database; machine sold to', 'CUST#: INDTESTLAB', '0000-00-00', 10028, '', NULL), (10029, 2316, '', 'Putting in archived database; machine sold to ', 'CUST#: REPIERSON', '0000-00-00', 10029, '', NULL), (10030, 2317, 'S/N 129045', 'United DP-2-6 FM-60 w/ Precise Digital Tension Machine ', 'Range: 200 lbs to 60,000 lbs (E-4)', '2013-01-21', 10030, '1/21/2013', NULL), (10031, 2318, 'S/N M922026A-727-03', ' w/ Vertical Force (E-4)', 'Range: 1 Kg to 68 Kg', '2010-10-20', 10031, '10/20/2010', NULL), (10032, 2319, '', '', '', '0000-00-00', 10032, '', NULL), (10033, 2320, '', 'Putting in archived database; machine on current tour', 'CUST#: MIConcreteAssoc', '0000-00-00', 10033, '', NULL), (10034, 2321, 'S/N 011088329', 'ELE Mdl. 88-4070 Dial Indicator (D-6027)', 'Range: 0.4 inches', '2010-05-12', 10034, '5/12/2010', NULL), (10035, 2322, 'S/N 5', 'Soiltest Dial Indicator (D-6027)', 'Range: 1 Inch ', '2009-05-13', 10035, '5/13/2009', NULL), (10036, 2323, 'S/N Unknown ', 'Lufkin Mdl. P28D-1 Dial Gauge OOS (D-6027)', 'Range: 1 Inch', '2010-05-12', 10036, '5/12/2010', NULL), (10037, 2324, 'S/N 1373 (SOLD)', ' w/ Extensometer (E-83)', 'Range: 0.02 in/in (GL 1 Inch)', '2015-09-16', 10037, '9/16/2015', NULL), (10038, 2325, '', '', '', '0000-00-00', 10038, '', NULL), (10039, 2326, '', '', '', '0000-00-00', 10039, '', NULL), (10040, 2327, '', '', '', '0000-00-00', 10040, '', NULL), (10041, 2328, '', ' ***Only use machine for Internal Calibration***', '', '0000-00-00', 10041, '', NULL), (10042, 2329, '', '', '', '0000-00-00', 10042, '', NULL), (10043, 2330, '', 'Putting in archived database; uses different cal company.', '', '0000-00-00', 10043, '', NULL), (10044, 2331, '', '', '', '0000-00-00', 10044, '', NULL), (10045, 2332, '', '', '', '0000-00-00', 10045, '', NULL), (10046, 2333, '', '', '', '0000-00-00', 10046, '', NULL), (10047, 2334, '', 'Moving to archived database; plant closed.', '', '0000-00-00', 10047, '', NULL), (10048, 2335, '', 'Moving to archived database; been in storage since 2008.', '', '0000-00-00', 10048, '', NULL), (10049, 2336, '', '', '', '0000-00-00', 10049, '', NULL), (10050, 2337, '', '', '', '0000-00-00', 10050, '', NULL), (10051, 2338, 'S/N 25330', 'Chatillon Hand Held Force Gauge T & C (E-4) ', 'Range: 500 lbs ', '2010-01-13', 10051, '1/13/2010', NULL), (10052, 2339, '', '', '', '0000-00-00', 10052, '', NULL), (10053, 2340, '', '', '', '0000-00-00', 10053, '', NULL), (10054, 2341, '', 'Putting in archived database; plant closed.', '', '0000-00-00', 10054, '', NULL), (10055, 2342, '', '', '', '0000-00-00', 10055, '', NULL), (10056, 2343, 'S/N 5996', 'Soiltest Single Proving Ring (E-4 & Man Specs.)', 'Range: 2,000 lbs', '2005-12-19', 10056, '12/19/2005', NULL), (10057, 2344, '', '', '', '0000-00-00', 10057, '', NULL), (10058, 2345, '', '', '', '0000-00-00', 10058, '', NULL), (10059, 2346, '', '', '', '0000-00-00', 10059, '', NULL), (10060, 2347, '', '', '', '0000-00-00', 10060, '', NULL), (10061, 2348, '', '', '', '0000-00-00', 10061, '', NULL), (10062, 2349, '', 'Putting in archived database.', '', '0000-00-00', 10062, '', NULL), (10063, 2350, '', '', '', '0000-00-00', 10063, '', NULL), (10064, 2351, '', '', '', '0000-00-00', 10064, '', NULL), (10065, 2352, '', '', '', '0000-00-00', 10065, '', NULL), (10066, 2353, 'S/N 62846', 'Forney N-25 Hammer (C-805)', 'Range: 78 to 81', '2012-07-10', 10066, '7/10/2012', NULL), (10067, 2354, '', 'Putting in archived database.', '', '0000-00-00', 10067, '', NULL), (10068, 2355, '', 'Putting in archived database', '', '0000-00-00', 10068, '', NULL), (10069, 2356, '', '', '', '0000-00-00', 10069, '', NULL), (10070, 2357, '', '', '', '0000-00-00', 10070, '', NULL), (10071, 2358, '', '', '', '0000-00-00', 10071, '', NULL), (10072, 2359, 'S/N 654347', ' w/Crystal Engineering Gauge (E-4 & PCI)', '', '2008-04-14', 10072, '4/14/2008', NULL), (10073, 2360, '', '', '', '0000-00-00', 10073, '', NULL), (10074, 2361, '', '', '', '0000-00-00', 10074, '', NULL), (10075, 2362, '', '', '', '0000-00-00', 10075, '', NULL), (10076, 2363, '', '', '', '0000-00-00', 10076, '', NULL), (10077, 2364, 'S/N 381', 'Brainard Kilman Consolidometer Mdl. S-450 (ID# 381)', 'Range: 16 TSF', '0000-00-00', 10077, '', NULL), (10078, 2365, '', '', '', '0000-00-00', 10078, '', NULL), (10079, 2366, '', '', '', '0000-00-00', 10079, '', NULL), (10080, 2367, '', '', '', '0000-00-00', 10080, '', NULL), (10081, 2368, '', '', '', '0000-00-00', 10081, '', NULL), (10082, 2369, 'S/N 318172/606', 'Enerpac Post Tension Jack w/ RRH-606 Ram (E-4&PCI& ManSpecs)', 'Range: 5K (590 PSI) / 50K (4,300 PSI)', '2012-01-23', 10082, '1/23/2012', NULL), (10083, 2370, 'S/N 190408', 'ELE International CT-400 Bond Tester (E-4)', 'Range: 2K', '2014-11-06', 10083, '11/6/2014', NULL), (10084, 2371, '', '', '', '0000-00-00', 10084, '', NULL), (10085, 2372, '', '', '', '0000-00-00', 10085, '', NULL), (10086, 2373, '', '', '', '0000-00-00', 10086, '', NULL), (10087, 2374, '', '', '', '0000-00-00', 10087, '', NULL), (10088, 2375, '', '', '', '0000-00-00', 10088, '', NULL), (10089, 2376, '', 'Putting in archived database.', '', '0000-00-00', 10089, '', NULL), (10090, 2377, '', 'Putting in archived database.', '', '0000-00-00', 10090, '', NULL), (10091, 2378, '', '', '', '0000-00-00', 10091, '', NULL), (10092, 2379, '', 'Putting in archived database.', '', '0000-00-00', 10092, '', NULL), (10093, 2380, '', 'Putting in archived database.', '', '0000-00-00', 10093, '', NULL), (10094, 2381, '', '', '', '0000-00-00', 10094, '', NULL), (10095, 2382, '', '', '', '0000-00-00', 10095, '', NULL), (10096, 2383, '', '', '', '0000-00-00', 10096, '', NULL), (10097, 2384, '', '', '', '0000-00-00', 10097, '', NULL), (10098, 2385, '', '', '', '0000-00-00', 10098, '', NULL), (10099, 2386, '', '', '', '0000-00-00', 10099, '', NULL), (10100, 2387, '', '', '', '0000-00-00', 10100, '', NULL), (10101, 2388, '', 'Putting in archived database.', '', '0000-00-00', 10101, '', NULL), (10102, 2389, '', '', '', '0000-00-00', 10102, '', NULL), (10103, 2390, '', '', '', '0000-00-00', 10103, '', NULL), (10104, 2391, '', '', '', '0000-00-00', 10104, '', NULL), (10105, 2392, '', '', '', '0000-00-00', 10105, '', NULL), (10106, 2393, 'S/N 001', 'Starrett Dial Indicator (D-6027)', 'Range: 0.4 Inch', '2015-10-07', 10106, '10/7/2015', NULL), (10107, 2394, 'S/N 640 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel #2', 'Range: 150 PSI (D-5720)', '2015-10-07', 10107, '10/7/2015', NULL), (10108, 2395, 'S/N 1127063811', 'OHaus Balance Scale Mdl. EP12001', 'Range: 1,200 Grams', '2007-02-12', 10108, '2/12/2007', NULL), (10109, 2396, 'S/N 013416196/00370', ' w/ Dial Indicator Shear Displacement (D-6027)', 'Range: 1 Inch', '2015-10-07', 10109, '10/7/2015', NULL), (10110, 2397, '', 'Putting in archived database.', '', '0000-00-00', 10110, '', NULL), (10111, 2398, '', '', '', '0000-00-00', 10111, '', NULL), (10112, 2399, 'S/N ', 'Frazier Compressometer', 'Range: ', NULL, 10112, 'New', NULL), (10113, 2400, '', '', '', '0000-00-00', 10113, '', NULL), (10114, 2401, 'S/N 50801249', ' w/ Micro Measurement HS-10 LVDT (D-6027) ', 'Range: 0.4 inch', '2015-05-12', 10114, '5/12/2015', NULL), (10115, 2402, '', '', '', '0000-00-00', 10115, '', NULL), (10116, 2403, 'S/N 103902A', ' w/ 10 Kip cell T & C (E-4)', 'Range: 100 lbs to 10K', '2012-01-03', 10116, '1/3/2012', NULL), (10117, 2404, '', '', '', '0000-00-00', 10117, '', NULL), (10118, 2405, 'S/N 617114', ' w/ Interface SM-100 100 lb T & C Load Cell (E-4)', 'Range: 1 lbs to 100 lbs (ID#CAL4447)', '2008-10-28', 10118, '10/28/2008', NULL), (10119, 2406, '', '', '', '0000-00-00', 10119, '', NULL), (10120, 2407, '', '', '', '0000-00-00', 10120, '', NULL), (10121, 2408, 'S/N 392', 'Brainard-Kilman Pressure Transducer Mdl E125 (D-5720)', 'Range: 150 psi', '2006-08-01', 10121, '8/1/2006', NULL), (10122, 2409, '', 'Putting in archived database.', '', '0000-00-00', 10122, '', NULL), (10123, 2410, '', '', '', '0000-00-00', 10123, '', NULL), (10124, 2411, '', '', '', '0000-00-00', 10124, '', NULL), (10125, 2412, '', 'Putting in archived database.', '', '0000-00-00', 10125, '', NULL), (10126, 2413, 'S/N G98761', 'ELE CT-320A Hammer (C-805)', 'Range: 78 to 82', '2010-02-16', 10126, '2/16/2010', NULL), (10127, 2414, '', '', '', '0000-00-00', 10127, '', NULL), (10128, 2415, '', '', '', '0000-00-00', 10128, '', NULL), (10129, 2416, '', '', '', '0000-00-00', 10129, '', NULL), (10130, 2417, '', 'Wanted Bill\'s advice on how to move ', '', '0000-00-00', 10130, '', NULL), (10131, 2418, '', 'Putting in archived database.', '', '0000-00-00', 10131, '', NULL), (10132, 2419, '', 'Putting in archived database.', '', '0000-00-00', 10132, '', NULL), (10133, 2420, '', '', '', '0000-00-00', 10133, '', NULL), (10134, 2421, '', '', '', '0000-00-00', 10134, '', NULL), (10135, 2422, '', '', '', '0000-00-00', 10135, '', NULL), (10136, 2423, '', '', '', '0000-00-00', 10136, '', NULL), (10137, 2424, '', '', '', '0000-00-00', 10137, '', NULL), (10138, 2425, '', '', '', '0000-00-00', 10138, '', NULL), (10139, 2426, '', '', '', '0000-00-00', 10139, '', NULL), (10140, 2427, '', '', '', '0000-00-00', 10140, '', NULL), (10141, 2428, '', '', '', '0000-00-00', 10141, '', NULL), (10142, 2429, 'S/N 372', 'Pine Instrument 850 Marshall Test Press (E-4)', 'Range: 2.5K/ 5K/10K', '2009-01-20', 10142, '1/20/2009', NULL), (10143, 2430, '', '', '', '0000-00-00', 10143, '', NULL), (10144, 2431, '', '', '', '0000-00-00', 10144, '', NULL), (10145, 2432, '', '', '', '0000-00-00', 10145, '', NULL), (10146, 2433, '', '', '', '0000-00-00', 10146, '', NULL), (10147, 2434, 'S/N', ' w/LVDT (D-6027)', 'Range: ', NULL, 10147, 'New', NULL), (10148, 2435, '', '', '', '0000-00-00', 10148, '', NULL), (10149, 2436, '', '', '', '0000-00-00', 10149, '', NULL), (10150, 2437, '', '', '', '0000-00-00', 10150, '', NULL), (10151, 2438, '', 'Putting in archived database.', '', '0000-00-00', 10151, '', NULL), (10152, 2439, '', '', '', '0000-00-00', 10152, '', NULL), (10153, 2440, '', '', '', '0000-00-00', 10153, '', NULL), (10154, 2441, '', 'Putting in archived database.', '', '0000-00-00', 10154, '', NULL), (10155, 2442, '', '', '', '0000-00-00', 10155, '', NULL), (10156, 2443, '', '', '', '0000-00-00', 10156, '', NULL), (10157, 2444, '', '', '', '0000-00-00', 10157, '', NULL), (10158, 2445, '', '', '', '0000-00-00', 10158, '', NULL), (10159, 2446, 'S/N 62022', 'Forney LT-700 Compression Machine (E-4) (SOLD)', 'Range: 350K', '2005-07-12', 10159, '7/12/2005', NULL), (10160, 2447, '', '', '', '0000-00-00', 10160, '', NULL), (10161, 2448, '', '', '', '0000-00-00', 10161, '', NULL), (10162, 2449, '', '', '', '0000-00-00', 10162, '', NULL), (10163, 2450, '', '', '', '0000-00-00', 10163, '', NULL), (10164, 2451, '', 'This facility is Closed, building new building ', '', '0000-00-00', 10164, '', NULL), (10165, 2452, '', '', '', '0000-00-00', 10165, '', NULL), (10166, 2453, '', '', '', '0000-00-00', 10166, '', NULL), (10167, 2454, '', 'Putting in archived database.', '', '0000-00-00', 10167, '', NULL), (10168, 2455, '', '', '', '0000-00-00', 10168, '', NULL), (10169, 2456, '', '', '', '0000-00-00', 10169, '', NULL), (10170, 2457, 'S/N 8031101113', 'Ohaus Adventure Pro AV3102 Balance Scale (E-898)', 'Range: 3,100 Grams', '2011-04-19', 10170, '4/19/2011', NULL), (10171, 2458, '', '', '', '0000-00-00', 10171, '', NULL), (10172, 2459, '', '', '', '0000-00-00', 10172, '', NULL), (10173, 2460, '', '', '', '0000-00-00', 10173, '', NULL), (10174, 2461, 'S/N 8580-112380', 'Instron Biaxial Inplane Displacement (E-2309)', '', '2012-03-13', 10174, '3/13/2012', NULL), (10175, 2462, '', ' w/ Plus X Axis - T & C', 'Range: 50K', '2012-03-12', 10175, '3/12/2012', NULL), (10176, 2463, '', '', '', '0000-00-00', 10176, '', NULL), (10177, 2464, '', '', '', '0000-00-00', 10177, '', NULL), (10178, 2465, 'S/N Ram 3', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 10178, '6/29/2011', NULL), (10179, 2466, 'S/N 22 ', 'Extra Gauge Prepull w/Jack #5 (E-4 & PCI)', 'Range: 45K', '2008-07-29', 10179, '7/29/2008', NULL), (10180, 2467, '', '', '', '0000-00-00', 10180, '', NULL), (10181, 2468, '', '', '', '0000-00-00', 10181, '', NULL), (10182, 2469, '', '', '', '0000-00-00', 10182, '', NULL), (10183, 2470, '', '', '', '0000-00-00', 10183, '', NULL), (10184, 2471, '', '', '', '0000-00-00', 10184, '', NULL), (10185, 2472, '', '', '', '0000-00-00', 10185, '', NULL), (10186, 2473, 'S/N Unknown ', 'Rex Wheeler Pressure Gauge (D-5720)', 'Range: 600 PSI', '2007-05-15', 10186, '5/15/2007', NULL), (10187, 2474, 'S/N 06254', 'Forney FX-250-F-DR2001-TPILOT Digital Compression Machine ', 'Range: 3K to 300K (E-4)', '2010-01-14', 10187, '1/14/2010', NULL), (10188, 2475, '', '', '', '0000-00-00', 10188, '', NULL), (10189, 2476, '', '', 'Putting in archived database.', '0000-00-00', 10189, '', NULL), (10190, 2477, 'S/N 0189847', 'Humboldt Triscan 50 Speed Control', 'Range: 0.06 in/min (1.524mm/min)', '2016-09-28', 10190, '9/28/2016', NULL), (10191, 2478, '', '', '', '0000-00-00', 10191, '', NULL), (10192, 2479, '', '', '', '0000-00-00', 10192, '', NULL), (10193, 2480, 'S/N 167870', ' w/ Displacement (E-2309)', 'Range: 10 inches', '2011-10-18', 10193, '10/18/2011', NULL), (10194, 2481, 'S/N 110', ' w/ Geo-Durham Load Cell (Remove from machine to Cal) (E-4)', 'Range: 6K Compression Only', '2007-10-24', 10194, '10/24/2007', NULL), (10195, 2482, '', '', '', '0000-00-00', 10195, '', NULL), (10196, 2483, 'S/N VT-1063', 'Soiltest Versa-Tester 30M Model AP-1000 (E-4)', 'Range: 12K/60K (OUT OF SERVICE)', '2004-06-02', 10196, '6/2/2004', NULL), (10197, 2484, 'S/N 3', 'LVDT w/ Geocomp Datalogger (OUT OF SVC) (D-6027)', 'Range: .25 inches', '2002-06-20', 10197, '6/20/2002', NULL), (10198, 2485, 'S/N 10', 'Trautwein Pressure Transducer Model with GeoComp Datalogger', 'Range: 150 PSI (OUT OF SERVICE)', '2005-06-29', 10198, '6/29/2005', NULL), (10199, 2486, '', '', '', '0000-00-00', 10199, '', NULL), (10200, 2487, 'S/N 11518', 'Ohaus Brainweigh OB-5000 Scale (E-898)', 'Range: 1 Gram to 5,000 Gram ', '2008-06-05', 10200, '6/5/2008', NULL), (10201, 2488, '', '', '', '0000-00-00', 10201, '', NULL), (10202, 2489, '', '', '', '0000-00-00', 10202, '', NULL), (10203, 2490, '', '** No Longer will do Calibration due to Insurance requirements', 'for the State of NY**', '0000-00-00', 10203, '', NULL), (10204, 2491, 'S/N 595159', 'ELE Pressure Transducer--Channel# 9 (D-5720)', 'Range: 150 psi', '2008-11-17', 10204, '11/17/2008', NULL), (10205, 2492, 'S/N1155-12-11607', 'Soiltest Single Proving Ring w/ Dial, Channel 16 (E-4 & Man Specs)', 'Range: 450 lbs (2 KN)', '2008-11-17', 10205, '11/17/2008', NULL), (10206, 2493, 'S/N MG2305', ' w/ LVDT Displacement Model HS50 Shear Force (D-6027)', 'Range: 2 inch w/ E-405 Digital', '2008-11-24', 10206, '11/24/2008', NULL), (10207, 2494, 'S/N H3806132', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs ', '2013-10-30', 10207, '10/30/2013', NULL), (10208, 2495, '', '', '', '0000-00-00', 10208, '', NULL), (10209, 2496, '', '', '', '0000-00-00', 10209, '', NULL), (10210, 2497, '', '', '', '0000-00-00', 10210, '', NULL), (10211, 2498, '', '', '', '0000-00-00', 10211, '', NULL), (10212, 2499, '', '', '', '0000-00-00', 10212, '', NULL), (10213, 2500, '', '', '', '0000-00-00', 10213, '', NULL), (10214, 2501, '', '', '', '0000-00-00', 10214, '', NULL), (10215, 2502, '', '', '', '0000-00-00', 10215, '', NULL), (10216, 2503, '', '', '', '0000-00-00', 10216, '', NULL), (10217, 2504, '', '', '', '0000-00-00', 10217, '', NULL), (10218, 2505, '', '', '', '0000-00-00', 10218, '', NULL), (10219, 2506, 'S/N 4', 'HCS LC-40 Hydraulic Load Cell (E-4 & 2%) OOS', 'Range: 40K', '2011-07-19', 10219, '7/19/2011', NULL), (10220, 2507, 'S/N 2229/023262', 'Novotechnik TR-50 LVDT w/ Digital 6572 (D-6027) OOS', 'Range: 2 inch', '2008-09-10', 10220, '9/10/2008', NULL), (10221, 2508, '', '2 - Linear Tranducers', 'Putting in archived database.', '0000-00-00', 10221, '', NULL), (10222, 2509, '', 'Triaxial Machine', 'Putting in archived database.', '0000-00-00', 10222, '', NULL), (10223, 2510, '', '', '', '0000-00-00', 10223, '', NULL), (10224, 2511, 'S/N PT-1', 'Stressing Jack Power Team', 'Range: 40,000 K (6,600 PSI)', '2013-01-03', 10224, '1/3/2013', NULL), (10225, 2512, 'S/N LVDT 3', 'with FS-2000 LVDT 3 Frame 875 / ID # 3895-0001 (ISO-9513) ', 'Range: 2 Inches', '2007-05-07', 10225, '5/7/2007', NULL), (10226, 2513, '', '', '', '0000-00-00', 10226, '', NULL), (10227, 2514, '', '', '', '0000-00-00', 10227, '', NULL), (10228, 2515, '', '', '', '0000-00-00', 10228, '', NULL), (10229, 2516, 'S/N 138129', 'Proceq Type N Hammer (C-805) ', 'Range: 78 to 82 (Moved)', '2009-01-22', 10229, '1/22/2009', NULL), (10230, 2517, '', ' w/Load Cell PSB0400', '', '2007-05-09', 10230, '5/9/2007', NULL), (10231, 2518, '', '', '', '0000-00-00', 10231, '', NULL), (10232, 2519, 'S/N 2390', 'Com-Ten Universal Testing Machine (E-4)', 'Range: 20 lbs. to 400 lbs.', '2005-11-08', 10232, '11/8/2005', NULL), (10233, 2520, '', '', '', '0000-00-00', 10233, '', NULL), (10234, 2521, '', '', '', '0000-00-00', 10234, '', NULL), (10235, 2522, '', '', '', '0000-00-00', 10235, '', NULL), (10236, 2523, '', '', '', '0000-00-00', 10236, '', NULL), (10237, 2524, '', '', '', '0000-00-00', 10237, '', NULL), (10238, 2525, '', '', '', '0000-00-00', 10238, '', NULL), (10239, 2526, '', '', '', '0000-00-00', 10239, '', NULL), (10240, 2527, '', '', '', '0000-00-00', 10240, '', NULL), (10241, 2528, '', '', '', '0000-00-00', 10241, '', NULL), (10242, 2529, '', '', '', '0000-00-00', 10242, '', NULL), (10243, 2530, '', '', '', '0000-00-00', 10243, '', NULL), (10244, 2531, '', '', '', '0000-00-00', 10244, '', NULL), (10245, 2532, '', '', '', '0000-00-00', 10245, '', NULL), (10246, 2533, '', '', '', '0000-00-00', 10246, '', NULL), (10247, 2534, '', '', '', '0000-00-00', 10247, '', NULL), (10248, 2535, 'S/N', ' w/ Extensometer (Cal In House) (E-83)', 'Range: ', NULL, 10248, 'New', NULL), (10249, 2536, 'S/N AE44298', 'Adam PGW 753i (ID# Q2168) (E898)', 'Range: 750 grams', '2016-01-19', 10249, '1/19/2016', NULL), (10250, 2537, 'S/N JA18546', 'Ohaus I5S Scale (ID# Q-1980) (E-898)', 'Range: 200 lbs ', '2016-01-19', 10250, '1/19/2016', NULL), (10251, 2538, 'S/N AE774197', 'Adam PGL 20001 Scale (ID# Q-3233) (E-898)', 'Range: 5 Grams to 20,000 Grams ', '2016-01-19', 10251, '1/19/2016', NULL), (10252, 2539, '', ' w/ Frame #2', 'Range: 3K to 300K ', '0000-00-00', 10252, '', NULL), (10253, 2540, '', '', '', '0000-00-00', 10253, '', NULL), (10254, 2541, '', '', '', '0000-00-00', 10254, '', NULL), (10255, 2542, '', '', '', '0000-00-00', 10255, '', NULL), (10256, 2543, '', '', '', '0000-00-00', 10256, '', NULL), (10257, 2544, '', '', '', '0000-00-00', 10257, '', NULL), (10258, 2545, '', '', '', '0000-00-00', 10258, '', NULL), (10259, 2546, '', '', '', '0000-00-00', 10259, '', NULL), (10260, 2547, 'S/N 1504', 'Forney PT-150-2 Pipe Tester (E-4 & C-497)', 'Range: 15K to 150K ', '2008-07-16', 10260, '7/16/2008', NULL), (10261, 2548, '', '', '', '0000-00-00', 10261, '', NULL), (10262, 2549, '', '', '', '0000-00-00', 10262, '', NULL), (10263, 2550, '', '', '', '0000-00-00', 10263, '', NULL), (10264, 2551, '', '', '', '0000-00-00', 10264, '', NULL), (10265, 2552, '', '', '', '0000-00-00', 10265, '', NULL), (10266, 2553, 'S/N', ' w/ Speed Control (Man Specs)', 'Range: ', NULL, 10266, 'New', NULL), (10267, 2554, '', '', '', '0000-00-00', 10267, '', NULL), (10268, 2555, '', '', '', '0000-00-00', 10268, '', NULL), (10269, 2556, '', '', '', '0000-00-00', 10269, '', NULL), (10270, 2557, '', '', '', '0000-00-00', 10270, '', NULL), (10271, 2558, '', '', '', '0000-00-00', 10271, '', NULL), (10272, 2559, '', '', '', '0000-00-00', 10272, '', NULL), (10273, 2560, '', '', '', '0000-00-00', 10273, '', NULL), (10274, 2561, '', '', '', '0000-00-00', 10274, '', NULL), (10275, 2562, '', '', '', '0000-00-00', 10275, '', NULL), (10276, 2563, '', '', '', '0000-00-00', 10276, '', NULL), (10277, 2564, 'S/N 1228-7-1002', 'ELE CT-700C Tensile Tester (E-4 & 2%)', 'Range: 10,000 Newtons', '2010-10-25', 10277, '10/25/2010', NULL), (10278, 2565, '', '', '', '0000-00-00', 10278, '', NULL), (10279, 2566, '', '', '', '0000-00-00', 10279, '', NULL), (10280, 2567, '', '', '', '0000-00-00', 10280, '', NULL), (10281, 2568, '', '', '', '0000-00-00', 10281, '', NULL), (10282, 2569, 'S/N 6461', 'Soiltest Uncontived Double Proving Ring OOS (E-4 & ManSpecs)', 'Range: 1,500 lbs', '2004-05-17', 10282, '5/17/2004', NULL), (10283, 2570, '', '', '', '0000-00-00', 10283, '', NULL), (10284, 2571, '', '', '', '0000-00-00', 10284, '', NULL), (10285, 1, 'S/N 154', ' w/ Model E-415 Readout ', 'Channel #1', '2013-01-22', 10285, '1/22/2013', NULL), (10286, 2, '', '', '', '0000-00-00', 10286, '', NULL), (10287, 3, 'S/N 602', 'Extra Gauge Prepull w/Jack #5 (E-4 & PCI)', 'Range: 4K', '2008-07-29', 10287, '7/29/2008', NULL), (10288, 4, 'S/N 2122', 'Satec Apex T-5000 Digital Testing Machine w/ Partner (E-4)', '', '2012-02-23', 10288, '2/23/2012', NULL), (10289, 5, 'S/N 70-1-70', 'Geotest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500lbs', '2007-01-05', 10289, '1/5/2007', NULL), (10290, 6, '', '', '', '0000-00-00', 10290, '', NULL), (10291, 7, '', '', '', '0000-00-00', 10291, '', NULL), (10292, 8, 'S/N Unknown ', 'Enerpac RCH-202 20 Ton Ram (E-4 & Man Specs)', 'Range: 40K (8,600 PSI)', '2013-05-08', 10292, '5/8/2013', NULL), (10293, 9, 'S/N 1333', ' w/Durham Geo Speed Control (Man Specs)', 'Range: 0.010 in/min ', '2009-05-19', 10293, '5/19/2009', NULL), (10294, 10, 'S/N 01265230', 'Eilon Engineering RON 2000 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Metric Ton', '2008-05-23', 10294, '5/23/2008', NULL), (10295, 11, '', '', '', '0000-00-00', 10295, '', NULL), (10296, 12, '', '', '', '0000-00-00', 10296, '', NULL), (10297, 13, '', '', '', '0000-00-00', 10297, '', NULL), (10298, 14, 'S/N 1071541A', 'NovoTechnick LVDT (D-6027)', 'Range: 1 inch', '2013-05-13', 10298, '5/13/2013', NULL), (10299, 15, 'S/N 130115894', ' w/ Gilson Dial Indicator (D-6027)', 'Range: 1 inch', '2013-05-13', 10299, '5/13/2013', NULL), (10300, 16, '', '', '', '0000-00-00', 10300, '', NULL), (10301, 17, '', '', '', '0000-00-00', 10301, '', NULL), (10302, 18, '', '', '', '0000-00-00', 10302, '', NULL), (10303, 19, 'S/N 148564', 'Transducer Techniques Load Cell Model LBO-5K-OPT-HT (E-4)', 'Range: 5K', '2006-04-21', 10303, '4/21/2006', NULL), (10304, 20, '', '', '', '0000-00-00', 10304, '', NULL), (10305, 21, '', '', '', '0000-00-00', 10305, '', NULL), (10306, 22, '', '', '', '0000-00-00', 10306, '', NULL), (10307, 23, '', '', '', '0000-00-00', 10307, '', NULL), (10308, 24, '', '', '', '0000-00-00', 10308, '', NULL), (10309, 25, '', '', '', '0000-00-00', 10309, '', NULL), (10310, 26, '', '', '', '0000-00-00', 10310, '', NULL), (10311, 27, '', '', '', '0000-00-00', 10311, '', NULL), (10312, 28, '', '', '', '0000-00-00', 10312, '', NULL), (10313, 29, '', '', '', '0000-00-00', 10313, '', NULL), (10314, 30, '', '', '', '0000-00-00', 10314, '', NULL), (10315, 31, '', '', '', '0000-00-00', 10315, '', NULL), (10316, 32, '', '', '', '0000-00-00', 10316, '', NULL), (10317, 33, '', '', '', '0000-00-00', 10317, '', NULL), (10318, 34, '', '', '', '0000-00-00', 10318, '', NULL), (10319, 35, '', '', '', '0000-00-00', 10319, '', NULL), (10320, 36, '', '', '', '0000-00-00', 10320, '', NULL), (10321, 37, '', '', '', '0000-00-00', 10321, '', NULL), (10322, 38, '', '', '', '0000-00-00', 10322, '', NULL), (10323, 39, '', '', '', '0000-00-00', 10323, '', NULL), (10324, 40, '', '', '', '0000-00-00', 10324, '', NULL), (10325, 41, '', '', '', '0000-00-00', 10325, '', NULL), (10326, 42, '', '', '', '0000-00-00', 10326, '', NULL), (10327, 43, '', '', '', '0000-00-00', 10327, '', NULL), (10328, 44, '', '', '', '0000-00-00', 10328, '', NULL), (10329, 45, '', '', '', '0000-00-00', 10329, '', NULL), (10330, 46, '', '', '', '0000-00-00', 10330, '', NULL), (10331, 47, '', '', '', '0000-00-00', 10331, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (10332, 48, '', '', '', '0000-00-00', 10332, '', NULL), (10333, 49, '', '', '', '0000-00-00', 10333, '', NULL), (10334, 50, '', '', '', '0000-00-00', 10334, '', NULL), (10335, 51, '', '', '', '0000-00-00', 10335, '', NULL), (10336, 52, '', '', '', '0000-00-00', 10336, '', NULL), (10337, 53, 'S/N 509', '', 'Cap: 150 psi #3', '2006-10-10', 10337, '10/10/2006', NULL), (10338, 54, 'S/N ', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 200 PSI', NULL, 10338, 'New', NULL), (10339, 55, '', '', '', '0000-00-00', 10339, '', NULL), (10340, 56, 'S/N Unknown', 'Geotest Flex Panel (D-5720)', 'Range: 200 PSI', '2012-11-06', 10340, '11/6/2012', NULL), (10341, 57, '', '', '', '0000-00-00', 10341, '', NULL), (10342, 58, '', '', '', '0000-00-00', 10342, '', NULL), (10343, 59, '', ' w/ Epsilon Extensometer 3542-0200-020-ST (E-83)', '', '2013-09-03', 10343, '9/3/2013', NULL), (10344, 60, 'S/N 22714', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500 lbs ', '2012-11-27', 10344, '11/27/2012', NULL), (10345, 61, 'S/N B02248', ' w/ Load Cell Model DBBPU-IT (Shear Load) (E-4)', 'Range: 2K', '2012-11-27', 10345, '11/27/2012', NULL), (10346, 62, 'S/N 1004326 (Pres. 6)', 'Humboldt HM-2325A Mini Logger w/ Pressure Transducer HM-4170', 'Range: 100 PSI (PT S/N 136289)(D-5720)', '2012-11-29', 10346, '11/29/2012', NULL), (10347, 63, '', '', '', '0000-00-00', 10347, '', NULL), (10348, 64, '', '', '', '0000-00-00', 10348, '', NULL), (10349, 65, '', '', '', '0000-00-00', 10349, '', NULL), (10350, 66, '', '', '', '0000-00-00', 10350, '', NULL), (10351, 67, '', '', '', '0000-00-00', 10351, '', NULL), (10352, 68, 'S/N 70125', 'Marshalltown Gauge (ASME Grade B)', 'Range: 35 in H20', '2008-11-20', 10352, '11/20/2008', NULL), (10353, 69, '', '', '', '0000-00-00', 10353, '', NULL), (10354, 70, '', '', '', '0000-00-00', 10354, '', NULL), (10355, 71, '', '', '', '0000-00-00', 10355, '', NULL), (10356, 72, '', '', '', '0000-00-00', 10356, '', NULL), (10357, 73, 'S/N 0043', 'VSL Bond Tester (Pompano, FL) (E-4) ', 'Range: 300 lbs to 3,000 lbs ', '2013-10-03', 10357, '10/3/2013', NULL), (10358, 74, '', '', '', '0000-00-00', 10358, '', NULL), (10359, 75, '', '', '', '0000-00-00', 10359, '', NULL), (10360, 76, '', '', '', '0000-00-00', 10360, '', NULL), (10361, 77, '', '', '', '0000-00-00', 10361, '', NULL), (10362, 78, '', '', '', '0000-00-00', 10362, '', NULL), (10363, 79, 'S/N 210128', 'Digital Readout Load Cell Central w/ Load Cell Central Load Cell(E-4) ', 'Range: 200K LC: S/N 1069094', '2009-07-24', 10363, '7/24/2009', NULL), (10364, 80, '', '', '', '0000-00-00', 10364, '', NULL), (10365, 81, '', '', '', '0000-00-00', 10365, '', NULL), (10366, 82, 'S/N 041011003305', 'TIF 9010A Scale (E-898)', 'Range: 1 lbs to 110 lbs (ID# Q-3153)', '2013-01-22', 10366, '1/22/2013', NULL), (10367, 83, '', '', '', '0000-00-00', 10367, '', NULL), (10368, 84, '', '', '', '0000-00-00', 10368, '', NULL), (10369, 85, '', '', '', '0000-00-00', 10369, '', NULL), (10370, 86, '', '', '', '0000-00-00', 10370, '', NULL), (10371, 87, '', '', '', '0000-00-00', 10371, '', NULL), (10372, 88, '', '', '', '0000-00-00', 10372, '', NULL), (10373, 89, '', '', '', '0000-00-00', 10373, '', NULL), (10374, 90, '', '', '', '0000-00-00', 10374, '', NULL), (10375, 91, 'S/N 588047', 'ELE Pressure Transducer--Channel# 12 (D-5720)', 'Range: 150 psi', '2008-11-18', 10375, '11/18/2008', NULL), (10376, 92, 'S/N1155-12-11607', 'with ELE Proving Ring & LVDT Unit Channel 16 (E-4)', 'Range: 450 lbs', '2008-11-24', 10376, '11/24/2008', NULL), (10377, 93, '', '', '', '0000-00-00', 10377, '', NULL), (10378, 94, '', '', '', '0000-00-00', 10378, '', NULL), (10379, 95, '', '', '', '0000-00-00', 10379, '', NULL), (10380, 96, '', '', '', '0000-00-00', 10380, '', NULL), (10381, 97, '', '', '', '0000-00-00', 10381, '', NULL), (10382, 98, '', '', '', '0000-00-00', 10382, '', NULL), (10383, 99, '', '', '', '0000-00-00', 10383, '', NULL), (10384, 100, '', '', '', '0000-00-00', 10384, '', NULL), (10385, 101, '', '', '', '0000-00-00', 10385, '', NULL), (10386, 102, '', '', '', '0000-00-00', 10386, '', NULL), (10387, 103, '', ' ', '', '0000-00-00', 10387, '', NULL), (10388, 104, '', '', '', '0000-00-00', 10388, '', NULL), (10389, 105, 'S/N 12241', 'Wykeham-Farrance 14230P Single Proving Ring (E-4 & Man Specs) ', 'Cap: 11,200 lbs ', '2012-03-14', 10389, '3/14/2012', NULL), (10390, 106, 'S/N 02137-3', 'Chatillion Platform Mechanical Scale (E-898)', 'Range: 131 lbs ', '2013-03-18', 10390, '3/18/2013', NULL), (10391, 107, '', '', '', '0000-00-00', 10391, '', NULL), (10392, 108, 'S/N 0811SBALA01010', ' w/ Load Cell (E-4)', 'Range: 1K Vert. Force', '2013-03-21', 10392, '3/21/2013', NULL), (10393, 109, 'S/N 2229/1066 Digital', ' Digital Serial Number ', '', '0000-00-00', 10393, '', NULL), (10394, 110, '', '', '', '0000-00-00', 10394, '', NULL), (10395, 111, '', '', '', '0000-00-00', 10395, '', NULL), (10396, 112, '', ' **Load vs Deflection is only done once in a while***', '', '0000-00-00', 10396, '', NULL), (10397, 113, '', '', '', '0000-00-00', 10397, '', NULL), (10398, 114, '', '', '', '0000-00-00', 10398, '', NULL), (10399, 115, '', '', '', '0000-00-00', 10399, '', NULL), (10400, 116, '', '', '', '0000-00-00', 10400, '', NULL), (10401, 117, '', '', '', '0000-00-00', 10401, '', NULL), (10402, 118, '', '', '', '0000-00-00', 10402, '', NULL), (10403, 119, '', '', '', '0000-00-00', 10403, '', NULL), (10404, 120, '', '', '', '0000-00-00', 10404, '', NULL), (10405, 121, 'S/N 28439', 'Enerpac Model RCH302 Post Tension Jack (E-4 & PCI)', 'Range: 35K ', '2008-10-14', 10405, '10/14/2008', NULL), (10406, 122, '', '', '', '0000-00-00', 10406, '', NULL), (10407, 123, '', '', '', '0000-00-00', 10407, '', NULL), (10408, 124, '', '', '', '0000-00-00', 10408, '', NULL), (10409, 125, 'S/N MG4432', ' w/ Humboldt 2310.10 LVDT (D-6027)', 'Range: 1 inch', '2013-04-16', 10409, '4/16/2013', NULL), (10410, 126, '', '', '', '0000-00-00', 10410, '', NULL), (10411, 127, 'S/N 5002706/1', 'Eilon Engineering RON 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 40 Tons (36 Deca Newtons)', '2005-02-26', 10411, '2/26/2005', NULL), (10412, 128, '', '', '', '0000-00-00', 10412, '', NULL), (10413, 129, '', '', '', '0000-00-00', 10413, '', NULL), (10414, 130, '', ' with Load Cell E-214 (Not Done)', '', '0000-00-00', 10414, '', NULL), (10415, 131, '', '', '', '0000-00-00', 10415, '', NULL), (10416, 132, '', '', '', '0000-00-00', 10416, '', NULL), (10417, 133, '', '', '', '0000-00-00', 10417, '', NULL), (10418, 134, '', '', '', '0000-00-00', 10418, '', NULL), (10419, 135, '', '', '', '0000-00-00', 10419, '', NULL), (10420, 136, '', '', '', '0000-00-00', 10420, '', NULL), (10421, 137, '', '', '', '0000-00-00', 10421, '', NULL), (10422, 138, '', '', '', '0000-00-00', 10422, '', NULL), (10423, 139, '', '', '', '0000-00-00', 10423, '', NULL), (10424, 140, 'S/N', 'Soiltest D-110A Direct Shear Machine ', 'Range: ', NULL, 10424, 'New', NULL), (10425, 141, '', '', '', '0000-00-00', 10425, '', NULL), (10426, 142, '', '', '', '0000-00-00', 10426, '', NULL), (10427, 143, '', '', '', '0000-00-00', 10427, '', NULL), (10428, 144, '', '', '', '0000-00-00', 10428, '', NULL), (10429, 145, '', '', '', '0000-00-00', 10429, '', NULL), (10430, 146, '', '', '', '0000-00-00', 10430, '', NULL), (10431, 147, '', '', '', '0000-00-00', 10431, '', NULL), (10432, 148, '', '', '', '0000-00-00', 10432, '', NULL), (10433, 149, '', '', '', '0000-00-00', 10433, '', NULL), (10434, 150, '', '', '', '0000-00-00', 10434, '', NULL), (10435, 151, 'S/N 640', 'Technotest Proving Ring (OUT OF SERVICE) (E-4 & Man Specs) ', 'Cap: 300 kg (661 lb.) ', '2004-05-17', 10435, '5/17/2004', NULL), (10436, 152, '', '', '', '0000-00-00', 10436, '', NULL), (10437, 153, '', '', '', '0000-00-00', 10437, '', NULL), (10438, 154, '', '', '', '0000-00-00', 10438, '', NULL), (10439, 155, '', '', '', '0000-00-00', 10439, '', NULL), (10440, 156, '', '', '', '0000-00-00', 10440, '', NULL), (10441, 157, '', '', '', '0000-00-00', 10441, '', NULL), (10442, 158, '', '', '', '0000-00-00', 10442, '', NULL), (10443, 159, '', '', '', '0000-00-00', 10443, '', NULL), (10444, 160, 'S/N G9945711', 'Gauge--Model A-21 (OOS) (E-4) ', 'Range: 1,000 lbs to 10,000 lbs', '2004-03-10', 10444, '3/10/2004', NULL), (10445, 161, '', '', '', '0000-00-00', 10445, '', NULL), (10446, 162, '', '', '', '0000-00-00', 10446, '', NULL), (10447, 163, '', '', '', '0000-00-00', 10447, '', NULL), (10448, 164, '', '', '', '0000-00-00', 10448, '', NULL), (10449, 165, 'S/N 916519 / NC#19', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K', '2011-07-19', 10449, '7/19/2011', NULL), (10450, 166, 'S/N 03074486/6', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS)', 'Range: 25 Ton ', NULL, 10450, 'New', NULL), (10451, 167, '', 'Bill all seals to Layne Miller ', '', '0000-00-00', 10451, '', NULL), (10452, 168, '', '', '', '0000-00-00', 10452, '', NULL), (10453, 169, 'S/N HSZ179', 'Mitutoya Mdl. 2416S Dial Indicator (D-6027)', 'Range: 1 inch ', '2008-07-24', 10453, '7/24/2008', NULL), (10454, 170, '', '', '', '0000-00-00', 10454, '', NULL), (10455, 171, 'S/N 0054', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-22', 10455, '7/22/2009', NULL), (10456, 172, 'S/N 0024B', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', NULL, 10456, 'New', NULL), (10457, 173, '', '', '', '0000-00-00', 10457, '', NULL), (10458, 174, '', '', '', '0000-00-00', 10458, '', NULL), (10459, 175, 'S/N 102720253', 'Humboldt BG2600-0-16001 Dial Indicator (D-6027)', 'Range: 0.6 inch', '2013-08-21', 10459, '8/21/2013', NULL), (10460, 176, '', '', '', '0000-00-00', 10460, '', NULL), (10461, 177, '', '', '', '0000-00-00', 10461, '', NULL), (10462, 178, '', '', '', '0000-00-00', 10462, '', NULL), (10463, 179, '', '', '', '0000-00-00', 10463, '', NULL), (10464, 180, '', '', '', '0000-00-00', 10464, '', NULL), (10465, 181, '', '', '', '0000-00-00', 10465, '', NULL), (10466, 182, '', '', '', '0000-00-00', 10466, '', NULL), (10467, 183, '', '', '', '0000-00-00', 10467, '', NULL), (10468, 184, '', '***Pump makes loud screeching noise, do not tear apart, cannot ', 'solve problem***', '0000-00-00', 10468, '', NULL), (10469, 185, '', '', '', '0000-00-00', 10469, '', NULL), (10470, 186, '', '', '', '0000-00-00', 10470, '', NULL), (10471, 187, '', '', '', '0000-00-00', 10471, '', NULL), (10472, 188, '', '', '', '0000-00-00', 10472, '', NULL), (10473, 189, '', '', '', '0000-00-00', 10473, '', NULL), (10474, 190, '', '', '', '0000-00-00', 10474, '', NULL), (10475, 191, 'S/N 372', 'Pine Instrument 850 Asphalt Press (E-4 & 2%)', 'Range: 2.5K / 5K / 10K', '2012-10-09', 10475, '10/9/2012', NULL), (10476, 192, 'S/N 1155-14-13615', 'ELE 1155B0300 Shear Force Proving Ring (E-4 & ManSpec)', 'Range: 1K', '2010-10-20', 10476, '10/20/2010', NULL), (10477, 193, 'S/N JQQ600', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2012-10-16', 10477, '10/16/2012', NULL), (10478, 194, '', '', '9/12/12 Dennis Dager machine being ', '2012-10-03', 10478, '10/3/2012', NULL), (10479, 195, '', '', '', '0000-00-00', 10479, '', NULL), (10480, 196, 'S/N 616017', ' w/ Interface SMT 1-11 10 lb T & C Load Cell (E-4)', 'Range: 0.1 lbs to 10 lbs (ID#CAL4004)', '2008-10-28', 10480, '10/28/2008', NULL), (10481, 197, '', '', '', '0000-00-00', 10481, '', NULL), (10482, 198, 'S/N 2064', 'Soiltest Proving Ring (E-4 & Man Specs) (Out of Service)', 'Range: 500 lbs', '2004-11-03', 10482, '11/3/2004', NULL), (10483, 199, '', '', '', '0000-00-00', 10483, '', NULL), (10484, 200, '', '', '', '0000-00-00', 10484, '', NULL), (10485, 201, '', '', '', '0000-00-00', 10485, '', NULL), (10486, 202, '', '', '', '0000-00-00', 10486, '', NULL), (10487, 203, '', '', '', '0000-00-00', 10487, '', NULL), (10488, 204, '', '', '', '0000-00-00', 10488, '', NULL), (10489, 205, '', '', '', '0000-00-00', 10489, '', NULL), (10490, 206, '', '', '', '0000-00-00', 10490, '', NULL), (10491, 207, '', '', '', '0000-00-00', 10491, '', NULL), (10492, 208, '', '', '', '0000-00-00', 10492, '', NULL), (10493, 209, '', '', '', '0000-00-00', 10493, '', NULL), (10494, 210, '', '', '', '0000-00-00', 10494, '', NULL), (10495, 211, '', '', '', '0000-00-00', 10495, '', NULL), (10496, 212, '', '', '', '0000-00-00', 10496, '', NULL), (10497, 213, 'S/N 90175 (ID#H0803) ', 'Forney LT-900-Precise Universal Testing Machine (E-4)', 'Range: 3K to 400K ', '0000-00-00', 10497, '', NULL), (10498, 214, 'S/N 12AE', 'Simplex RP3A-1 Post Tension Jack (E-4 & PCI)', 'Range: 16K (5,750 psi)', '2013-01-14', 10498, '1/14/2013', NULL), (10499, 215, 'S/N ', ' w/ Extensometer (E-83)', 'Range: ', NULL, 10499, 'New', NULL), (10500, 216, '', '', '', '0000-00-00', 10500, '', NULL), (10501, 217, '', '', '', '0000-00-00', 10501, '', NULL), (10502, 218, '', '', '', '0000-00-00', 10502, '', NULL), (10503, 219, '', '', '', '0000-00-00', 10503, '', NULL), (10504, 220, 'S/N 900512 (ID#2)', 'Strainsense TA-3000-E8 Extensometer (E-83)', 'Range: 8 GL', NULL, 10504, 'New', NULL), (10505, 221, '', '', '', '0000-00-00', 10505, '', NULL), (10506, 222, 'S/N F-17177', 'Hamilton Form Company RC1612 Prestress Jack (E-4 & PCI)', 'Range: 3K / 40K ', '2013-01-29', 10506, '1/29/2013', NULL), (10507, 223, '', '', '', '0000-00-00', 10507, '', NULL), (10508, 224, 'S/N 72-S-115', 'Karol Warner Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-01-29', 10508, '1/29/2013', NULL), (10509, 225, '', '', '', '0000-00-00', 10509, '', NULL), (10510, 226, '', '', '', '0000-00-00', 10510, '', NULL), (10511, 227, '', '', '', '0000-00-00', 10511, '', NULL), (10512, 228, '', '', '', '0000-00-00', 10512, '', NULL), (10513, 229, '', '', '', '0000-00-00', 10513, '', NULL), (10514, 230, '', '', '', '0000-00-00', 10514, '', NULL), (10515, 231, 'S/N 36433', 'McDaniel Service Gauge (D-5720)', 'Range: 1,000 PSI', '2010-01-13', 10515, '1/13/2010', NULL), (10516, 232, 'S/N 103', 'Marsh Service Gauge (D-5720)', 'Range: 600 PSI', '2010-01-13', 10516, '1/13/2010', NULL), (10517, 233, '', '', '', '0000-00-00', 10517, '', NULL), (10518, 234, 'S/N 05075711/4', 'Eilon Engineering RON 2501 S-50 Load Cell #4 (ManSp & 0.1% FS)', 'Range: 50 Short Ton ', '2010-02-16', 10518, '2/16/2010', NULL), (10519, 235, 'S/N 1TA-82555-116', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 35 in H2O', '2010-01-18', 10519, '1/18/2010', NULL), (10520, 236, '', '', '', '0000-00-00', 10520, '', NULL), (10521, 237, '', '', '', '0000-00-00', 10521, '', NULL), (10522, 238, 'S/N ', 'Durham Geo LG114 Direct Shear Box (E-4)', 'Range: ', NULL, 10522, 'New', NULL), (10523, 239, '', '', '', '0000-00-00', 10523, '', NULL), (10524, 240, 'S/N 599', ' w/ MTS 632.12B-20 Extensometer (E-83)', 'Range: ', NULL, 10524, 'New', NULL), (10525, 241, '', '', '', '0000-00-00', 10525, '', NULL), (10526, 242, '281-DA', ' Serial Number too long ', '', '0000-00-00', 10526, '', NULL), (10527, 243, 'S/N 1373/1051', 'Satec PS3M Extensometer (E-83)', 'Range: 0.02 in/in (GL 1 Inch)', '2013-09-16', 10527, '9/16/2013', NULL), (10528, 244, '', '', '', '0000-00-00', 10528, '', NULL), (10529, 245, '', '', '', '0000-00-00', 10529, '', NULL), (10530, 246, '', '', '', '0000-00-00', 10530, '', NULL), (10531, 247, 'S/N 05057', 'Testmark CM-25000COPILOT Digital Compression Machine (E-4)', 'Range: 2.5K to 250K ', '2013-02-14', 10531, '2/14/2013', NULL), (10532, 248, '', '', '', '0000-00-00', 10532, '', NULL), (10533, 249, '', '', '', '0000-00-00', 10533, '', NULL), (10534, 250, '', '', '', '0000-00-00', 10534, '', NULL), (10535, 251, '', '', '', '0000-00-00', 10535, '', NULL), (10536, 252, '', '', '', '0000-00-00', 10536, '', NULL), (10537, 253, '', '', '', '0000-00-00', 10537, '', NULL), (10538, 254, '', '', '', '0000-00-00', 10538, '', NULL), (10539, 255, '', '', '', '0000-00-00', 10539, '', NULL), (10540, 256, '', '', '', '0000-00-00', 10540, '', NULL), (10541, 257, '', '', '', '0000-00-00', 10541, '', NULL), (10542, 258, '', '', '', '0000-00-00', 10542, '', NULL), (10543, 259, '', '', '', '0000-00-00', 10543, '', NULL), (10544, 260, '', '', '', '0000-00-00', 10544, '', NULL), (10545, 261, 'S/N RCH-606 (ATG#257)', 'Enerpac RCH-606 Ram (E-4)', 'Range: 60 Ton (9,480 PSI)', '2013-03-27', 10545, '3/27/2013', NULL), (10546, 262, 'S/N 0612TR50-05', ' w/ Vertical LVDT (D-6027)', 'Range: 1 inches ', '2010-04-01', 10546, '4/1/2010', NULL), (10547, 263, '', '', '', '0000-00-00', 10547, '', NULL), (10548, 264, 'S/N U08010(ATG# 1299)', 'Chatillon Digital Mdl. DFS2-R-ND ', '', '0000-00-00', 10548, '', NULL), (10549, 265, '', '', '', '0000-00-00', 10549, '', NULL), (10550, 266, '', '', '', '0000-00-00', 10550, '', NULL), (10551, 267, 'S/N S13586', 'Richard Dudgeon H1505 Post Tension Jack w/2 gauges', 'Range: 300 K (E-4 & Man Specs)', '2012-10-15', 10551, '10/15/2012', NULL), (10552, 268, '', '', '', '0000-00-00', 10552, '', NULL), (10553, 269, '', '', '', '0000-00-00', 10553, '', NULL), (10554, 270, '', '', '', '0000-00-00', 10554, '', NULL), (10555, 271, '', '', '', '0000-00-00', 10555, '', NULL), (10556, 272, '', '', '', '0000-00-00', 10556, '', NULL), (10557, 273, '', '', '', '0000-00-00', 10557, '', NULL), (10558, 274, 'S/N Q2002695', 'AND FG-60KBM Scale (E-898)', 'Range: 150 lbs (MOVED)', '2011-03-28', 10558, '3/28/2011', NULL), (10559, 275, '', ' ', '', '0000-00-00', 10559, '', NULL), (10560, 276, '', '', '', '0000-00-00', 10560, '', NULL), (10561, 277, '', '', '', '0000-00-00', 10561, '', NULL), (10562, 278, '', '', '', '0000-00-00', 10562, '', NULL), (10563, 279, '', '', '', '0000-00-00', 10563, '', NULL), (10564, 280, '', '', '', '0000-00-00', 10564, '', NULL), (10565, 281, '', '', '', '0000-00-00', 10565, '', NULL), (10566, 282, '', '', '', '0000-00-00', 10566, '', NULL), (10567, 283, '', '', '', '0000-00-00', 10567, '', NULL), (10568, 284, 'S/N TEN018', 'Erico Dead Weight Load Frame 2 (Man Specs)', 'Range: 0 lbs to 20 weights', '2013-04-24', 10568, '4/24/2013', NULL), (10569, 285, '', '', '', '0000-00-00', 10569, '', NULL), (10570, 286, '', '', '', '0000-00-00', 10570, '', NULL), (10571, 287, '', '', '', '0000-00-00', 10571, '', NULL), (10572, 288, 'S/N 25049', 'Soiltest Unconfined Double Proving Ring (E-4 & ManSpecs)', 'Cap: 500 lbs ', '2010-04-15', 10572, '4/15/2010', NULL), (10573, 289, '', '', '', '0000-00-00', 10573, '', NULL), (10574, 290, '', '', '', '0000-00-00', 10574, '', NULL), (10575, 291, '', '', '', '0000-00-00', 10575, '', NULL), (10576, 292, '', '', '', '0000-00-00', 10576, '', NULL), (10577, 293, '', '', '', '0000-00-00', 10577, '', NULL), (10578, 294, '', '', '', '0000-00-00', 10578, '', NULL), (10579, 295, 'S/N 0019', 'VSL Bond Tester (Houston) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2008-03-13', 10579, '3/13/2008', NULL), (10580, 296, 'S/N H-0311', 'Soiltest C-220 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-13', 10580, '5/13/2010', NULL), (10581, 297, '', '', '', '0000-00-00', 10581, '', NULL), (10582, 298, 'S/N 1122100870', 'Mettler Toledo AG104 Scale (E-898)', 'Range: 101 Grams ', '2013-05-15', 10582, '5/15/2013', NULL), (10583, 299, 'S/N 093511452', ' w/ GeoTest BG2110-0-36 Dial Indicator (D-6027)', 'Range: 1 inch', '2013-05-22', 10583, '5/22/2013', NULL), (10584, 300, 'S/N EQ20111134', 'AND FG-60KBM Scale (E-898)', '', '2013-05-15', 10584, '5/15/2013', NULL), (10585, 301, '', '', '', '0000-00-00', 10585, '', NULL), (10586, 302, '', '', '', '0000-00-00', 10586, '', NULL), (10587, 303, 'S/N 211833', ' w/ Geotac Load Cell (Channel #1) (E-4)', 'Range: 2K ', '2012-05-23', 10587, '5/23/2012', NULL), (10588, 304, '', '', '', '0000-00-00', 10588, '', NULL), (10589, 305, '', '', '', '0000-00-00', 10589, '', NULL), (10590, 306, '', '', '', '0000-00-00', 10590, '', NULL), (10591, 307, '', '', '', '0000-00-00', 10591, '', NULL), (10592, 308, 'S/N 5', 'Geocomp LVDT (Channel 3 LVDT 3) (OOS) (D-6027)', 'Range: 1 inch', '2007-05-29', 10592, '5/29/2007', NULL), (10593, 309, 'S/N EZ2683', 'Geotac Load Cell w/ Geotest IndicatorModel 363-B6-2K-20Pl (E-4)', 'Range: 2K (Out of Service)', '2004-06-01', 10593, '6/1/2004', NULL), (10594, 310, '', ' w/ Vertical Displacement LDT (D-6027)', 'Range: ', NULL, 10594, 'New', NULL), (10595, 311, '', '', '', '0000-00-00', 10595, '', NULL), (10596, 312, '', '', '', '0000-00-00', 10596, '', NULL), (10597, 313, '', '', '', '0000-00-00', 10597, '', NULL), (10598, 314, '', '', '', '0000-00-00', 10598, '', NULL), (10599, 315, 'S/N 515-1007193', 'Soiltest CT-711-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 600 lbs to 60K', '2010-08-03', 10599, '8/3/2010', NULL), (10600, 316, '', '', '', '0000-00-00', 10600, '', NULL), (10601, 317, '', '', '', '0000-00-00', 10601, '', NULL), (10602, 318, '', '', '', '0000-00-00', 10602, '', NULL), (10603, 319, '', '', '', '0000-00-00', 10603, '', NULL), (10604, 320, '', '', '', '0000-00-00', 10604, '', NULL), (10605, 321, '', '', '', '0000-00-00', 10605, '', NULL), (10606, 322, '', '', '', '0000-00-00', 10606, '', NULL), (10607, 323, '', '', '', '0000-00-00', 10607, '', NULL), (10608, 324, '', '', '', '0000-00-00', 10608, '', NULL), (10609, 325, '', '', '', '0000-00-00', 10609, '', NULL), (10610, 326, '', '', '', '0000-00-00', 10610, '', NULL), (10611, 327, '', '', '', '0000-00-00', 10611, '', NULL), (10612, 328, '', '', '', '0000-00-00', 10612, '', NULL), (10613, 329, 'S/N HLT-69204', 'Harrington Model HLTI Hoist Tester (E-4 & Man Specs)', 'Cap: 5 Ton / 10 Ton ', '2013-06-26', 10613, '6/26/2013', NULL), (10614, 330, '', '', '', '0000-00-00', 10614, '', NULL), (10615, 331, '', '', '', '0000-00-00', 10615, '', NULL), (10616, 332, '', '', '', '0000-00-00', 10616, '', NULL), (10617, 333, '', '', '', '0000-00-00', 10617, '', NULL), (10618, 334, 'S/N AN18791', 'Dillon Mdl. AN Dynamometer (E-4 & 2%)', 'Range: 15K (MOVED)', '2011-10-05', 10618, '10/5/2011', NULL), (10619, 335, '', '', '', '0000-00-00', 10619, '', NULL), (10620, 336, '', '', '', '0000-00-00', 10620, '', NULL), (10621, 337, '', '', '', '0000-00-00', 10621, '', NULL), (10622, 338, '', '', '', '0000-00-00', 10622, '', NULL), (10623, 339, '', '', '', '0000-00-00', 10623, '', NULL), (10624, 340, 'S/N 110603', 'Pine Model AFGBA06 ', 'Range: 1200 KPA (21206.0N) ', '2012-06-12', 10624, '6/12/2012', NULL), (10625, 341, 'S/N 204', 'Ashcroft Gauge G-8962 (IN HOUSE) (D-5720)', 'Range: 0-60psi', '2003-03-28', 10625, '3/28/2003', NULL), (10626, 342, '', '', '', '0000-00-00', 10626, '', NULL), (10627, 343, '', '', '', '0000-00-00', 10627, '', NULL), (10628, 344, '', '', '', '0000-00-00', 10628, '', NULL), (10629, 345, 'S/N 1613', 'Brainard Kilman Mdl. S-500 & 502 Flex Panel (D-5720)', 'Range: 150 PSI', '2009-02-16', 10629, '2/16/2009', NULL), (10630, 346, '', '', '', '0000-00-00', 10630, '', NULL), (10631, 347, '', '', '', '0000-00-00', 10631, '', NULL), (10632, 348, '', '', '', '0000-00-00', 10632, '', NULL), (10633, 349, '', '', '', '0000-00-00', 10633, '', NULL), (10634, 350, '', '', '', '0000-00-00', 10634, '', NULL), (10635, 351, '', '', '', '0000-00-00', 10635, '', NULL), (10636, 352, '', '', '', '0000-00-00', 10636, '', NULL), (10637, 353, '', '', '', '0000-00-00', 10637, '', NULL), (10638, 354, '', '', '', '0000-00-00', 10638, '', NULL), (10639, 355, '', '', '', '0000-00-00', 10639, '', NULL), (10640, 356, '', '', '', '0000-00-00', 10640, '', NULL), (10641, 357, '', '', '', '0000-00-00', 10641, '', NULL), (10642, 358, '', '', '', '0000-00-00', 10642, '', NULL), (10643, 359, '', '', '', '0000-00-00', 10643, '', NULL), (10644, 360, '', '', '', '0000-00-00', 10644, '', NULL), (10645, 361, '', '', '', '0000-00-00', 10645, '', NULL), (10646, 362, '', '', '', '0000-00-00', 10646, '', NULL), (10647, 363, '', '', '', '0000-00-00', 10647, '', NULL), (10648, 364, '', '', '', '0000-00-00', 10648, '', NULL), (10649, 365, '', '', '', '0000-00-00', 10649, '', NULL), (10650, 366, '', '', '', '0000-00-00', 10650, '', NULL), (10651, 367, '', '', '*Send Certs to Biling Address*', '0000-00-00', 10651, '', NULL), (10652, 368, '', '', '', '0000-00-00', 10652, '', NULL), (10653, 369, '', '', '', '0000-00-00', 10653, '', NULL), (10654, 370, '', '', '', '0000-00-00', 10654, '', NULL), (10655, 371, '', '', '', '0000-00-00', 10655, '', NULL), (10656, 372, '', '', '', '0000-00-00', 10656, '', NULL), (10657, 373, 'S/N 1177', 'Karol Warner 6630C Pore Pressure Transducer (D-5720)', 'Range: 150 PSI', '2013-08-27', 10657, '8/27/2013', NULL), (10658, 374, '', '', '', '0000-00-00', 10658, '', NULL), (10659, 375, '', '', '', '0000-00-00', 10659, '', NULL), (10660, 376, '', '', '', '0000-00-00', 10660, '', NULL), (10661, 377, '', '', '', '0000-00-00', 10661, '', NULL), (10662, 378, '', '', '', '0000-00-00', 10662, '', NULL), (10663, 379, 'S/N 2383', 'Soiltest CT-710 Digital Compression Machine (E-4)', 'Range: 250K ', NULL, 10663, 'New', NULL), (10664, 380, '', '', '', '0000-00-00', 10664, '', NULL), (10665, 381, '', '', '', '0000-00-00', 10665, '', NULL), (10666, 382, '', '', '', '0000-00-00', 10666, '', NULL), (10667, 383, '', '', '', '0000-00-00', 10667, '', NULL), (10668, 384, '', '', '', '0000-00-00', 10668, '', NULL), (10669, 385, '', '', '', '0000-00-00', 10669, '', NULL), (10670, 386, '', '', '', '0000-00-00', 10670, '', NULL), (10671, 387, '', '', '', '0000-00-00', 10671, '', NULL), (10672, 388, '', '', '', '0000-00-00', 10672, '', NULL), (10673, 389, '', '', '', '0000-00-00', 10673, '', NULL), (10674, 390, 'S/N 202', 'McDaniels Vaccum Gauge (In House) (Man Specs & 2%)', 'Range: 30 in Hg', '2013-09-16', 10674, '9/16/2013', NULL), (10675, 391, '', '', '', '0000-00-00', 10675, '', NULL), (10676, 392, '', '', '', '0000-00-00', 10676, '', NULL), (10677, 393, '', '', '', '0000-00-00', 10677, '', NULL), (10678, 394, '', '', '', '0000-00-00', 10678, '', NULL), (10679, 395, '', '', '', '0000-00-00', 10679, '', NULL), (10680, 396, '', '', '', '0000-00-00', 10680, '', NULL), (10681, 397, '', '', '', '0000-00-00', 10681, '', NULL), (10682, 398, '', 'Work coordinated thru ETS, they pay for both labs', '', '0000-00-00', 10682, '', NULL), (10683, 399, '', '', '', '0000-00-00', 10683, '', NULL), (10684, 400, '', '', '', '0000-00-00', 10684, '', NULL), (10685, 401, '', '', '', '0000-00-00', 10685, '', NULL), (10686, 402, '', '', '', '0000-00-00', 10686, '', NULL), (10687, 403, '', '', '', '0000-00-00', 10687, '', NULL), (10688, 404, '', '', '', '0000-00-00', 10688, '', NULL), (10689, 405, '', '', '', '0000-00-00', 10689, '', NULL), (10690, 406, '', '', '', '0000-00-00', 10690, '', NULL), (10691, 407, '', 'US Mail ', '', '0000-00-00', 10691, '', NULL), (10692, 408, '', '', '', '0000-00-00', 10692, '', NULL), (10693, 409, '', '', '', '0000-00-00', 10693, '', NULL), (10694, 410, '', '', '', '0000-00-00', 10694, '', NULL), (10695, 411, '', '', '', '0000-00-00', 10695, '', NULL), (10696, 412, '', '', '', '0000-00-00', 10696, '', NULL), (10697, 413, '', '', '', '0000-00-00', 10697, '', NULL), (10698, 414, 'S/N', ' w/LVDT (D-6027)', 'Range: ', NULL, 10698, 'New', NULL), (10699, 415, '', '', '', '0000-00-00', 10699, '', NULL), (10700, 416, '', '', '', '0000-00-00', 10700, '', NULL), (10701, 417, '', '', '', '0000-00-00', 10701, '', NULL), (10702, 418, 'S/N 080451657', ' w/ Vertical Displacement ELE Dial Indicator (D-6027)', 'Range: 25 mm', '2012-11-06', 10702, '11/6/2012', NULL), (10703, 419, '', '', '', '0000-00-00', 10703, '', NULL), (10704, 420, '$3.00 each ', '4 - VS-2012 O\'Ring Greenlee Rapid Travel Valve ', '', '0000-00-00', 10704, '', NULL), (10705, 421, '', '', '', '0000-00-00', 10705, '', NULL), (10706, 422, 'S/N 129745', 'Futech Model LCF 505 Load Cell w/ Futech 1BT500 Dig. S/N 139628 ', 'Range: 50K (E-4) (ID# GS275)', '2013-01-08', 10706, '1/8/2013', NULL), (10707, 423, 'S/N PS-2293', ' w/ Geotac Pore Pressure Transducer Channel #3 (D-5720)', 'Range: 200 PSI ', '2013-01-08', 10707, '1/8/2013', NULL), (10708, 424, 'S/N G839', 'Durham Geo E-126 Pore Pressure Transducer (D-5720)', 'Range: 300 PSI', '2013-01-09', 10708, '1/9/2013', NULL), (10709, 425, 'S/N ID# G836A', ' w/ Sensym Pore Pressure Transducer Channel #3', 'Range: 100 PSI (D-5720)', '2013-01-08', 10709, '1/8/2013', NULL), (10710, 426, '', '', '', '0000-00-00', 10710, '', NULL), (10711, 427, 'S/N ID# G787', ' w/ Geotest Horizontal Load Cell T & C (E-4)', 'Range: 2K (Compression Only)', '2013-01-09', 10711, '1/9/2013', NULL), (10712, 428, 'S/N H-1 (ID# G1376)', 'Trans-Tek 0241-0000 K-11 LVDT (D-6027)', 'Range: 0.2 inches (CH #2)', '2013-01-07', 10712, '1/7/2013', NULL), (10713, 429, '', '', '', '0000-00-00', 10713, '', NULL), (10714, 430, '', '', '', '0000-00-00', 10714, '', NULL), (10715, 431, 'S/N 120CS-1014', ' w/ Displacement (ID# M-110) (E-2309)', 'Range: 20 inches ', '2013-01-07', 10715, '1/7/2013', NULL), (10716, 432, '', '', '', '0000-00-00', 10716, '', NULL), (10717, 433, '', '', '', '0000-00-00', 10717, '', NULL), (10718, 434, '', '', '', '0000-00-00', 10718, '', NULL), (10719, 435, '', '', '', '0000-00-00', 10719, '', NULL), (10720, 436, '', '', '', '0000-00-00', 10720, '', NULL), (10721, 437, 'S/N 100696606', 'Humboldt H-4158.1 Dial Indicator (D-6027 & 1%)', 'Range: 1 inch ', '2013-01-28', 10721, '1/28/2013', NULL), (10722, 438, '', 'Invoice needs Job # on it ', '', '0000-00-00', 10722, '', NULL), (10723, 439, '', '', '', '0000-00-00', 10723, '', NULL), (10724, 440, '', '', '', '0000-00-00', 10724, '', NULL), (10725, 441, '', '', '', '0000-00-00', 10725, '', NULL), (10726, 442, '', '', '', '0000-00-00', 10726, '', NULL), (10727, 443, '', '', '', '0000-00-00', 10727, '', NULL), (10728, 444, '', '', '', '0000-00-00', 10728, '', NULL), (10729, 445, 'S/N 100908053', 'CDI Dial Indicator (D-6027)', 'Range: 1 inch', '2013-02-13', 10729, '2/13/2013', NULL), (10730, 446, '', '', '', '0000-00-00', 10730, '', NULL), (10731, 447, 'S/N 567 (ID# TS-09)', 'TMI Electronic Scales (E-898)', 'Range: 10,000 Grams ', '2013-02-13', 10731, '2/13/2013', NULL), (10732, 448, 'S/N PFS-05 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 10732, '2/13/2013', NULL), (10733, 449, 'S/N 11561125213764', 'Ohaus EP4102 Scale (E-898) (ID# TS-01)', 'Range: 4,100 Grams ', '2013-02-13', 10733, '2/13/2013', NULL), (10734, 450, 'S/N 3204 ID# DMG-01', 'Manometer Karol Warner Mdl. 9210 (E-4 & 2%)', 'Range: 800 mmHg', '2013-02-13', 10734, '2/13/2013', NULL), (10735, 451, 'S/N 992849552', 'Humboldt Dial Indicator (D-6027)', 'Range: 4 inches ', '2012-02-14', 10735, '2/14/2012', NULL), (10736, 452, '', '', '', '0000-00-00', 10736, '', NULL), (10737, 453, '', '', '', '0000-00-00', 10737, '', NULL), (10738, 454, '', '', '', '0000-00-00', 10738, '', NULL), (10739, 455, '', '', '', '0000-00-00', 10739, '', NULL), (10740, 456, '', '', '', '0000-00-00', 10740, '', NULL), (10741, 457, '', '', '', '0000-00-00', 10741, '', NULL), (10742, 458, 'S/N 001003', 'Artech Versa Loader Load Cell S/N 224843 (E-4)', 'Range: 500lbs', '2006-02-20', 10742, '2/20/2006', NULL), (10743, 459, '', '', '', '0000-00-00', 10743, '', NULL), (10744, 460, '', '', '', '0000-00-00', 10744, '', NULL), (10745, 461, '', '', '', '0000-00-00', 10745, '', NULL), (10746, 462, '', '', '', '0000-00-00', 10746, '', NULL), (10747, 463, 'S/N P419068A', ' w/ T & C Load Cell Horizontal Force (E-4)', 'Range: Tension 1K/Compression 300 lbs ', '2013-03-05', 10747, '3/5/2013', NULL), (10748, 464, '', '', '', '0000-00-00', 10748, '', NULL), (10749, 465, '', '', '', '0000-00-00', 10749, '', NULL), (10750, 466, 'S/N 1009TR25-01', ' w/ Vertical LVDT (D-6027)', 'Range: 0.5 Inches ', '2013-03-20', 10750, '3/20/2013', NULL), (10751, 467, '', '', '', '0000-00-00', 10751, '', NULL), (10752, 468, '', '', '', '0000-00-00', 10752, '', NULL), (10753, 469, '', '', '', '0000-00-00', 10753, '', NULL), (10754, 470, '', '2014 Replace Broken Case -Chrome Ring on back of Gauge Cracked', '', '0000-00-00', 10754, '', NULL), (10755, 471, 'S/N TM-0104-0', ' w/ Forney Compressometer LVDT (D-6027)', 'Range: 0.02 inches ', '2010-01-14', 10755, '1/14/2010', NULL), (10756, 472, '', '', '', '0000-00-00', 10756, '', NULL), (10757, 473, '', '', '', '0000-00-00', 10757, '', NULL), (10758, 474, 'S/N 1123380795', 'Ohaus EP 32001C Scale (E-898)', 'Range: 32,000 Grams', '2011-03-29', 10758, '3/29/2011', NULL), (10759, 475, '', '', '', '0000-00-00', 10759, '', NULL), (10760, 476, 'S/N 3162973-7GM ', 'Ohaus Ranger Scale (E-898)', 'Range: 15,000 Grams ', '2013-04-10', 10760, '4/10/2013', NULL), (10761, 477, '', ' ', '', '0000-00-00', 10761, '', NULL), (10762, 478, 'S/N 052610090', 'HBM Hydraulic Pressure Transducer (Off Site/ In House) (D-5720)', 'Range: 10,000 PSI ', '2013-10-11', 10762, '10/11/2013', NULL), (10763, 479, '', '', '', '0000-00-00', 10763, '', NULL), (10764, 480, '', ' ***Bill marked label to fit in regular schedule*** ', '', '0000-00-00', 10764, '', NULL), (10765, 481, '', '', '', '0000-00-00', 10765, '', NULL), (10766, 482, '', '', '', '0000-00-00', 10766, '', NULL), (10767, 483, '', '', '', '0000-00-00', 10767, '', NULL), (10768, 484, 'S/N 1970', 'Geojack Direct Shear Machine (E-4)', 'Range: ', '2012-04-23', 10768, '4/23/2012', NULL), (10769, 485, '', '', '', '0000-00-00', 10769, '', NULL), (10770, 486, '', '', '', '0000-00-00', 10770, '', NULL), (10771, 487, '', '', '', '0000-00-00', 10771, '', NULL), (10772, 488, 'S/N SD200110001161', 'Artech Mdl. 20210-15K Load Cell w/ Total Comp Dig. T-500E (E-4)', 'Range 200 lbs to 15,000 lbs', '2013-05-01', 10772, '5/1/2013', NULL), (10773, 489, '', '', '', '0000-00-00', 10773, '', NULL), (10774, 490, '', '', '', '0000-00-00', 10774, '', NULL), (10775, 491, '', '', '', '0000-00-00', 10775, '', NULL), (10776, 492, '', '', '', '0000-00-00', 10776, '', NULL), (10777, 493, 'S/N 643', 'Brainard-Kilman Unconfined Single Proving Ring ', 'Cap: 500 lbs (E-4 & Man Specs)', '2013-04-30', 10777, '4/30/2013', NULL), (10778, 494, 'S/N 13846', 'Ametek Pressure Transducer (D-5720)', 'Range: 150 PSI (Channel #15)', '2013-05-01', 10778, '5/1/2013', NULL), (10779, 495, 'S/N C', 'Soiltest Consolidation Machine (E-4 & Man Specs) ', 'Range: 1/8 TSF to 16 TSF (ASSHTO)', '2013-04-30', 10779, '4/30/2013', NULL), (10780, 496, 'S/N 566-34', 'Ashcroft Vacuum Pump (D-5720 & 2%)', 'Range: 30 in HG ', '2013-04-30', 10780, '4/30/2013', NULL), (10781, 497, '', ' ***ISO Requested***', '', '0000-00-00', 10781, '', NULL), (10782, 498, '', '', '', '0000-00-00', 10782, '', NULL), (10783, 499, '', '', '', '0000-00-00', 10783, '', NULL), (10784, 500, 'S/N 2796', 'Instron Model 1000 T & C Load Cell (E-4)', 'Range: 100 lbs / 200 lbs / 500 lbs / ', '2013-04-29', 10784, '4/29/2013', NULL), (10785, 501, '', '', '', '0000-00-00', 10785, '', NULL), (10786, 502, '', '', '', '0000-00-00', 10786, '', NULL), (10787, 503, '', '', '', '0000-00-00', 10787, '', NULL), (10788, 504, '', '', '', '0000-00-00', 10788, '', NULL), (10789, 505, 'S/N Unknown', 'Marsh Pressure Gauge (D-5720)', 'Range: 600 PSI ', '2013-08-08', 10789, '8/8/2013', NULL), (10790, 506, '', '', '', '0000-00-00', 10790, '', NULL), (10791, 507, '', '', '', '0000-00-00', 10791, '', NULL), (10792, 508, '', '', '', '0000-00-00', 10792, '', NULL), (10793, 509, '', '', '', '0000-00-00', 10793, '', NULL), (10794, 510, '', '', '', '0000-00-00', 10794, '', NULL), (10795, 511, '', '', '', '0000-00-00', 10795, '', NULL), (10796, 512, '', '', '', '0000-00-00', 10796, '', NULL), (10797, 513, '', '', '', '0000-00-00', 10797, '', NULL), (10798, 514, '', '', '', '0000-00-00', 10798, '', NULL), (10799, 515, '', '', '', '0000-00-00', 10799, '', NULL), (10800, 516, 'S/N 1627-6-1262', ' w/ Vertical Force (E-4 & 2% ManSpecs)', 'Range: 442 lbs ( 6.483TSF)', '2013-05-07', 10800, '5/7/2013', NULL), (10801, 517, 'S/N TW4878', 'SPX Mdl. SJ201DA Post Tension Jack w/ Gauge #701 (E-4 & PCI)', 'Range: 35K ', '2013-05-09', 10801, '5/9/2013', NULL), (10802, 518, '', '', '', '0000-00-00', 10802, '', NULL), (10803, 519, 'S/N R1142', 'ELE Triflex 2 Panel Meter (D-5720)', 'Range: 200 psi', '2013-05-22', 10803, '5/22/2013', NULL), (10804, 520, '', '', '', '0000-00-00', 10804, '', NULL), (10805, 521, '', '', '', '0000-00-00', 10805, '', NULL), (10806, 522, '', 'Legal for Trade Scales we can not preform there need to call', '', '0000-00-00', 10806, '', NULL), (10807, 523, '', '', '', '0000-00-00', 10807, '', NULL), (10808, 524, 'S/N AE 774317', 'Adam PGL 20001 Scale (E898)', 'Range: 2,000 grams', '2013-04-30', 10808, '4/30/2013', NULL), (10809, 525, '', '', '', '0000-00-00', 10809, '', NULL), (10810, 526, '', '', '', '0000-00-00', 10810, '', NULL), (10811, 527, '', '', '', '0000-00-00', 10811, '', NULL), (10812, 528, '', '', '', '0000-00-00', 10812, '', NULL), (10813, 529, '', ' ***Put Certs in Walsh Construction Company Name***', '', '0000-00-00', 10813, '', NULL), (10814, 530, '', '', '', '0000-00-00', 10814, '', NULL), (10815, 531, '', '', '', '0000-00-00', 10815, '', NULL), (10816, 532, '', '', '', '0000-00-00', 10816, '', NULL), (10817, 533, '', '', '', '0000-00-00', 10817, '', NULL), (10818, 534, '', '', '', '0000-00-00', 10818, '', NULL), (10819, 535, '', '', '', '0000-00-00', 10819, '', NULL), (10820, 536, '', '', '', '0000-00-00', 10820, '', NULL), (10821, 537, '', '', '', '0000-00-00', 10821, '', NULL), (10822, 538, '', '', '', '0000-00-00', 10822, '', NULL), (10823, 539, '', '', '', '0000-00-00', 10823, '', NULL), (10824, 540, '', '', '', '0000-00-00', 10824, '', NULL), (10825, 541, 'S/N H3804149', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 10825, '6/4/2013', NULL), (10826, 542, '', '', '', '0000-00-00', 10826, '', NULL), (10827, 543, '', 'Must remove Beam Attachments on Testmark to Calibrate ', '', '0000-00-00', 10827, '', NULL), (10828, 544, '', '', '', '0000-00-00', 10828, '', NULL), (10829, 545, 'S/N 304629', 'Artech 20210-5K Load Cell (E-4)', 'Range: 5K ', '2010-06-15', 10829, '6/15/2010', NULL), (10830, 546, '', '', '', '0000-00-00', 10830, '', NULL), (10831, 547, '', '', '', '0000-00-00', 10831, '', NULL), (10832, 548, 'S/N 218236', 'Transducer Techniques Load Cell w/ Dig. S/N 250004 (E-4) ', 'Range: 5K to 50K ', '2013-06-19', 10832, '6/19/2013', NULL), (10833, 549, '', '', '', '0000-00-00', 10833, '', NULL), (10834, 550, '', '', '', '0000-00-00', 10834, '', NULL), (10835, 551, '', '', '', '0000-00-00', 10835, '', NULL), (10836, 552, 'S/N Ram 4', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 10836, '6/29/2011', NULL), (10837, 553, '', '', '', '0000-00-00', 10837, '', NULL), (10838, 554, '', '', '', '0000-00-00', 10838, '', NULL), (10839, 555, '', '', '', '0000-00-00', 10839, '', NULL), (10840, 556, '', '', '', '0000-00-00', 10840, '', NULL), (10841, 557, 'S/N 221310', 'Transducer Techniques HTC-2K T & C Load Cell (E-4) ', 'Range: Tension 2K / Compression -2K ', '2011-06-27', 10841, '6/27/2011', NULL), (10842, 558, '', '', '', '0000-00-00', 10842, '', NULL), (10843, 559, 'S/N 904', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 30 PSI ', '2011-06-09', 10843, '6/9/2011', NULL), (10844, 560, '', '', '', '0000-00-00', 10844, '', NULL), (10845, 561, '', '', '', '0000-00-00', 10845, '', NULL), (10846, 562, '', '', '', '0000-00-00', 10846, '', NULL), (10847, 563, '', '', '', '0000-00-00', 10847, '', NULL), (10848, 564, '', '', '', '0000-00-00', 10848, '', NULL), (10849, 565, '', '', '', '0000-00-00', 10849, '', NULL), (10850, 566, '', '', '', '0000-00-00', 10850, '', NULL), (10851, 567, '', '', '', '0000-00-00', 10851, '', NULL), (10852, 568, '', '', '', '0000-00-00', 10852, '', NULL), (10853, 569, '', '', '', '0000-00-00', 10853, '', NULL), (10854, 570, 'S/N 12160', 'Soiltest CBR Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 5K', '2013-07-30', 10854, '7/30/2013', NULL), (10855, 571, '', '', '', '0000-00-00', 10855, '', NULL), (10856, 572, '', '', '', '0000-00-00', 10856, '', NULL), (10857, 573, '', '', '', '0000-00-00', 10857, '', NULL), (10858, 574, '', '', '', '0000-00-00', 10858, '', NULL), (10859, 575, 'S/N 687', 'Rainhart Mdl. 415 Beam Breaker (E-4 & 2%)', 'Range: 12K ', '2013-07-29', 10859, '7/29/2013', NULL), (10860, 576, '', '', '', '0000-00-00', 10860, '', NULL), (10861, 577, '', '', '', '0000-00-00', 10861, '', NULL), (10862, 578, '', '', '', '0000-00-00', 10862, '', NULL), (10863, 579, '', '', '', '0000-00-00', 10863, '', NULL), (10864, 580, '', '', '', '0000-00-00', 10864, '', NULL), (10865, 581, '', '', '', '0000-00-00', 10865, '', NULL), (10866, 582, '', '', '', '0000-00-00', 10866, '', NULL), (10867, 583, '', '', '', '0000-00-00', 10867, '', NULL), (10868, 584, '', '', '', '0000-00-00', 10868, '', NULL), (10869, 585, '', '', '', '0000-00-00', 10869, '', NULL), (10870, 586, '', ' with 1 cylinder press and 2 channel digital', '', '0000-00-00', 10870, '', NULL), (10871, 587, 'S/N67895/PDC-1006211', 'Baldwin Tate Emery 120 BTE-Precise Universal Tesing Machine', 'Range: 1.2K to 120K Channel #1(E-4)', '2013-08-13', 10871, '8/13/2013', NULL), (10872, 588, '', '', '', '0000-00-00', 10872, '', NULL), (10873, 589, '', '', '', '0000-00-00', 10873, '', NULL), (10874, 590, '', '', '', '0000-00-00', 10874, '', NULL), (10875, 591, '', '', '', '0000-00-00', 10875, '', NULL), (10876, 592, '', '', '', '0000-00-00', 10876, '', NULL), (10877, 593, 'S/N 9522', 'ELE Soiltest Model G-9000 Versa Loader (E-4)', 'Range:', NULL, 10877, 'New', NULL), (10878, 594, '', '', '', '0000-00-00', 10878, '', NULL), (10879, 595, '', '', '', '0000-00-00', 10879, '', NULL), (10880, 596, '', '', '', '0000-00-00', 10880, '', NULL), (10881, 597, '', '', '', '0000-00-00', 10881, '', NULL), (10882, 598, '', '', '', '0000-00-00', 10882, '', NULL), (10883, 599, 'S/N 112164-1', 'Wykeham Ferrance Direct Shear Machine (E-4)', '', '2013-09-05', 10883, '9/5/2013', NULL), (10884, 600, '', '', '', '0000-00-00', 10884, '', NULL), (10885, 601, 'S/N 3704771', 'AND FG-30K Scale (E-898)', 'Range: 60 lbs', '2013-09-04', 10885, '9/4/2013', NULL), (10886, 602, '', '', '', '0000-00-00', 10886, '', NULL), (10887, 603, 'S/N 7125090885', 'Ohaus Scout Pro Scale (E-898)', 'Range: 4,000 grams', '2013-09-05', 10887, '9/5/2013', NULL), (10888, 604, '', '', '', '0000-00-00', 10888, '', NULL), (10889, 605, 'S/N 449', ' w/ Instron 2630-114 Extensometer (E-83)', 'Range: 0.12 in/in (GL 2.0005\") ', '2013-09-04', 10889, '9/4/2013', NULL), (10890, 606, '', '', '', '0000-00-00', 10890, '', NULL), (10891, 607, 'S/N 29000-50(ID# E050)', 'Carver Press w/ 2 Gauges ID# E-050 (E-4)', '', '2013-10-08', 10891, '10/8/2013', NULL), (10892, 608, '', '', '', '0000-00-00', 10892, '', NULL), (10893, 609, '', '', '', '0000-00-00', 10893, '', NULL), (10894, 610, '', '', '', '0000-00-00', 10894, '', NULL), (10895, 611, '', ' ', '', '0000-00-00', 10895, '', NULL), (10896, 612, '', '', '', '0000-00-00', 10896, '', NULL), (10897, 613, '', '', '', '0000-00-00', 10897, '', NULL), (10898, 614, '', '', '', '0000-00-00', 10898, '', NULL), (10899, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 10899, 'New', NULL), (10900, 616, '', '', '', '0000-00-00', 10900, '', NULL), (10901, 617, '', '', '', '0000-00-00', 10901, '', NULL), (10902, 618, '', '', '', '0000-00-00', 10902, '', NULL), (10903, 619, '', '', '', '0000-00-00', 10903, '', NULL), (10904, 620, '', '', '', '0000-00-00', 10904, '', NULL), (10905, 621, '', '', '', '0000-00-00', 10905, '', NULL), (10906, 622, '', '', '', '0000-00-00', 10906, '', NULL), (10907, 623, '', '', '', '0000-00-00', 10907, '', NULL), (10908, 624, '', '', '', '0000-00-00', 10908, '', NULL), (10909, 625, '', '', '', '0000-00-00', 10909, '', NULL), (10910, 626, '', '', '', '0000-00-00', 10910, '', NULL), (10911, 627, '', '', '', '0000-00-00', 10911, '', NULL), (10912, 628, '', '', '', '0000-00-00', 10912, '', NULL), (10913, 629, '', '', '', '0000-00-00', 10913, '', NULL), (10914, 630, '', '', '', '0000-00-00', 10914, '', NULL), (10915, 631, '', '', '', '0000-00-00', 10915, '', NULL), (10916, 632, '', '', '', '0000-00-00', 10916, '', NULL), (10917, 633, '', '', '', '0000-00-00', 10917, '', NULL), (10918, 634, '', '', '', '0000-00-00', 10918, '', NULL), (10919, 635, '', '', '', '0000-00-00', 10919, '', NULL), (10920, 636, '', '', '', '0000-00-00', 10920, '', NULL), (10921, 637, 'S/N 410747', ' w/ GeoJac Load Cell (E-4)', 'Range: 2K ', '2011-11-14', 10921, '11/14/2011', NULL), (10922, 638, 'S/N LP-833', ' w/ GeoJac LVDT (D-6027)', 'Range: 3 inches ', '2012-11-13', 10922, '11/13/2012', NULL), (10923, 639, '', '', '', '0000-00-00', 10923, '', NULL), (10924, 640, '', '', '', '0000-00-00', 10924, '', NULL), (10925, 641, '', '', '', '0000-00-00', 10925, '', NULL), (10926, 642, '', '', '', '0000-00-00', 10926, '', NULL), (10927, 643, 'S/N 100500027', 'ELE 27-1124/02 Digital ', '', '0000-00-00', 10927, '', NULL), (10928, 644, '', ' ***2 Year Cycle***', '', '0000-00-00', 10928, '', NULL), (10929, 645, '', '', '', '0000-00-00', 10929, '', NULL), (10930, 646, '', '', '', '0000-00-00', 10930, '', NULL), (10931, 647, '', '', '', '0000-00-00', 10931, '', NULL), (10932, 648, '', '', '', '0000-00-00', 10932, '', NULL), (10933, 649, '', '', '', '0000-00-00', 10933, '', NULL), (10934, 650, '', '', '', '0000-00-00', 10934, '', NULL), (10935, 651, 'S/N 008100611-', 'Instron T3M-1659 Extensometer (E-83)', 'Range: (2\" GL)', NULL, 10935, 'New', NULL), (10936, 652, '', '', '', '0000-00-00', 10936, '', NULL), (10937, 653, '', '', '', '0000-00-00', 10937, '', NULL), (10938, 654, '', '', '', '0000-00-00', 10938, '', NULL), (10939, 655, '', '', '', '0000-00-00', 10939, '', NULL), (10940, 656, '', '', '', '0000-00-00', 10940, '', NULL), (10941, 657, '', '', '', '0000-00-00', 10941, '', NULL), (10942, 658, '', '', '', '0000-00-00', 10942, '', NULL), (10943, 659, '', '', '', '0000-00-00', 10943, '', NULL), (10944, 660, 'S/N 2089', ' w/ Speed Control (E2658-11)', 'Range: 0.5 in/min ', '2013-01-14', 10944, '1/14/2013', NULL), (10945, 661, 'S/N 041119578', ' w/ Vertical Displacement (D-6027)', 'Range: 0.6 inch', '2012-02-01', 10945, '2/1/2012', NULL), (10946, 662, '', '', '', '0000-00-00', 10946, '', NULL), (10947, 663, '', '', '', '0000-00-00', 10947, '', NULL), (10948, 664, '', '', '', '0000-00-00', 10948, '', NULL), (10949, 665, 'S/N 10311744D', ' w/ MTS 634.25E-24 Extensometer T & C (E-83)', 'Range: T 1 in/in Comp 0.2 in/in (2\" GL)', NULL, 10949, 'New', NULL), (10950, 666, '', '', '', '0000-00-00', 10950, '', NULL), (10951, 667, '', '', '', '0000-00-00', 10951, '', NULL), (10952, 668, '', '', '', '0000-00-00', 10952, '', NULL), (10953, 669, '', '', '', '0000-00-00', 10953, '', NULL), (10954, 670, '', '', '', '0000-00-00', 10954, '', NULL), (10955, 671, '', '', '', '0000-00-00', 10955, '', NULL), (10956, 672, 'S/N 39511 / NC #13', 'HCS Hydraulic Load Cell (E-4 & 2 %)', 'Range: 40K ', '2012-04-25', 10956, '4/25/2012', NULL), (10957, 673, '', '', '', '0000-00-00', 10957, '', NULL), (10958, 674, '', '', '', '0000-00-00', 10958, '', NULL), (10959, 675, 'S/N ', ' w/ Displacement (E-2390)', 'Range: 20 inches ', NULL, 10959, 'New', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (10960, 676, '', '', '', '0000-00-00', 10960, '', NULL), (10961, 677, '', '', '', '0000-00-00', 10961, '', NULL), (10962, 678, '', '', '', '0000-00-00', 10962, '', NULL), (10963, 679, '', '', '', '0000-00-00', 10963, '', NULL), (10964, 680, '', '', '', '0000-00-00', 10964, '', NULL), (10965, 681, 'S/N 0029', 'VSL Bond Tester (Chicago) (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2009-07-29', 10965, '7/29/2009', NULL), (10966, 682, 'S/N 93447', 'HCS Hydraulic Load Cell (E-4)', 'Range: 50K ', '2010-04-30', 10966, '4/30/2010', NULL), (10967, 683, '', '', '', '0000-00-00', 10967, '', NULL), (10968, 684, '', '', '', '0000-00-00', 10968, '', NULL), (10969, 685, '', '', '', '0000-00-00', 10969, '', NULL), (10970, 686, '', '', '', '0000-00-00', 10970, '', NULL), (10971, 687, '', '', '', '0000-00-00', 10971, '', NULL), (10972, 688, '', '', '', '0000-00-00', 10972, '', NULL), (10973, 689, '', '', '', '0000-00-00', 10973, '', NULL), (10974, 690, 'S/N 0026', 'VSL Bond Tester (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2012-05-18', 10974, '5/18/2012', NULL), (10975, 691, '', '', '', '0000-00-00', 10975, '', NULL), (10976, 692, '', '', '', '0000-00-00', 10976, '', NULL), (10977, 693, 'S/N 1676', 'Rainhart 416 Beam Breaker ID # RKSW-012 (E-4 & 2%)', 'Range: 12K ', '2013-03-26', 10977, '3/26/2013', NULL), (10978, 694, 'S/N 04101756', 'Marsh Vacuum Gauge (D-5720 & 2%) ', 'Range: 30 in Hg', '2013-02-06', 10978, '2/6/2013', NULL), (10979, 695, 'S/N S-0910', ' w/ Dial Indicator (D-6027)', 'Range: ', '2013-02-06', 10979, '2/6/2013', NULL), (10980, 696, '', '', '', '0000-00-00', 10980, '', NULL), (10981, 697, '', ' ***Customer needs to order a new Planten***', '', '0000-00-00', 10981, '', NULL), (10982, 698, '', '', '', '0000-00-00', 10982, '', NULL), (10983, 699, '', '', '', '0000-00-00', 10983, '', NULL), (10984, 700, 'S/N 119564', 'Proceq Type N Hammer (C-805)', 'Range: 78 to 82', '2013-07-11', 10984, '7/11/2013', NULL), (10985, 701, '', '', '', '0000-00-00', 10985, '', NULL), (10986, 702, '', '', '', '0000-00-00', 10986, '', NULL), (10987, 703, '', '', '', '0000-00-00', 10987, '', NULL), (10988, 704, '', '', '', '0000-00-00', 10988, '', NULL), (10989, 705, '', '', '', '0000-00-00', 10989, '', NULL), (10990, 706, '', '', '', '0000-00-00', 10990, '', NULL), (10991, 707, '', '', '', '0000-00-00', 10991, '', NULL), (10992, 708, '', '', '', '0000-00-00', 10992, '', NULL), (10993, 709, '', '', '', '0000-00-00', 10993, '', NULL), (10994, 710, '', '', '', '0000-00-00', 10994, '', NULL), (10995, 711, '', '', '', '0000-00-00', 10995, '', NULL), (10996, 712, '', '', '', '0000-00-00', 10996, '', NULL), (10997, 713, 'S/N 405164', ' w/Speed Control (E2658-11)', 'Range: 0.05 in/min ', '2013-03-05', 10997, '3/5/2013', NULL), (10998, 714, '', '', '', '0000-00-00', 10998, '', NULL), (10999, 715, '', ' w/ Minus X Axis - T & C', 'Range: 50K', '2012-03-12', 10999, '3/12/2012', NULL), (11000, 716, '', ' w/ Plus / Minus Y Axis ', 'Range: -2.25 to +2.25', '2012-03-13', 11000, '3/13/2012', NULL), (11001, 717, ' ', ' ', ' ', '0000-00-00', 11001, '', NULL), (11002, 718, '', '', '', '0000-00-00', 11002, '', NULL), (11003, 719, '', '', '', '0000-00-00', 11003, '', NULL), (11004, 720, '', '', '', '0000-00-00', 11004, '', NULL), (11005, 721, '', '', '', '0000-00-00', 11005, '', NULL), (11006, 722, '', '', '', '0000-00-00', 11006, '', NULL), (11007, 723, '', '', '', '0000-00-00', 11007, '', NULL), (11008, 724, '', '', '', '0000-00-00', 11008, '', NULL), (11009, 725, '', '', '', '0000-00-00', 11009, '', NULL), (11010, 726, '', '', '', '0000-00-00', 11010, '', NULL), (11011, 727, '', '', '', '0000-00-00', 11011, '', NULL), (11012, 728, '', '', '', '0000-00-00', 11012, '', NULL), (11013, 729, '', '', '', '0000-00-00', 11013, '', NULL), (11014, 730, '', '', '', '0000-00-00', 11014, '', NULL), (11015, 731, '', 'Send Certs to Billing adderess Attn:Joe Oester', '', '0000-00-00', 11015, '', NULL), (11016, 732, 'S/N Stress 1 ', 'Stress Con Prestress Jack (E-4 & PCI & 2%)', 'Range: 6K / 50K ', '2013-10-08', 11016, '10/8/2013', NULL), (11017, 733, '', '', '', '0000-00-00', 11017, '', NULL), (11018, 734, 'S/N C1928 ', 'Satec Model 3100 Burst Tester (D-5720 & 2%)', 'Range: 2,500 PSI ', '2013-04-10', 11018, '4/10/2013', NULL), (11019, 735, 'S/N 321', 'Humboldt Centerpoint Beam Breaker (E-4 & 2%)', 'Range: 1.5K to 15K ', '2011-06-21', 11019, '6/21/2011', NULL), (11020, 736, '', '', '', '0000-00-00', 11020, '', NULL), (11021, 737, 'S/N 161150', 'Proceq N-34 Hammer (C-805)', 'Range: 78 -82', '2013-04-09', 11021, '4/9/2013', NULL), (11022, 738, '', '', '', '0000-00-00', 11022, '', NULL), (11023, 739, '', 'then moved to Grand Rapids', '', '0000-00-00', 11023, '', NULL), (11024, 740, 'S/N 1477', 'Forney NA-3 Hammer (C-805)', 'Range: 78 to 82', '2008-04-23', 11024, '4/23/2008', NULL), (11025, 741, '', '', '', '0000-00-00', 11025, '', NULL), (11026, 742, '', '', '', '0000-00-00', 11026, '', NULL), (11027, 743, 'S/N TEN008', ' w/Interlaken 3542-0200-025-ST Extensometer (E-83)', 'Range: 0.125 Inches 2\" GL', '2012-04-24', 11027, '4/24/2012', NULL), (11028, 744, '', '', '', '0000-00-00', 11028, '', NULL), (11029, 745, '', '', '', '0000-00-00', 11029, '', NULL), (11030, 746, '', '', '', '0000-00-00', 11030, '', NULL), (11031, 747, '', '', '', '0000-00-00', 11031, '', NULL), (11032, 748, '', '', '', '0000-00-00', 11032, '', NULL), (11033, 749, 'S/N 6304', 'Instron mdl 1125C w/ mTest Windows', 'Range: 0.2 in/min T, 0.5 in/min C', '2012-04-23', 11033, '4/23/2012', NULL), (11034, 750, '', '', '', '0000-00-00', 11034, '', NULL), (11035, 751, 'S/N 114320', ' w/Tinius Olsen S-200-1 Extensometer (E-83)', 'Range: 0.04 in/min (GL 1\") (20%)', '2013-05-02', 11035, '5/2/2013', NULL), (11036, 752, '', '', '', '0000-00-00', 11036, '', NULL), (11037, 753, '', '', '', '0000-00-00', 11037, '', NULL), (11038, 754, 'S/N C3300C', 'Enerpac RCH-302 Ram Pack (E-4 & Man Specs)', 'Range: 60 K (8,200 psi)', '2013-05-01', 11038, '5/1/2013', NULL), (11039, 755, '', '', '', '0000-00-00', 11039, '', NULL), (11040, 756, '', '', '', '0000-00-00', 11040, '', NULL), (11041, 757, 'S/N 0800', 'Humboldt H-4454 Single Proving Ring (OOS) (E-4 & Man Specs)', 'Range: 10K', '2011-01-31', 11041, '1/31/2011', NULL), (11042, 758, '', '', '', '0000-00-00', 11042, '', NULL), (11043, 759, '', '', '', '0000-00-00', 11043, '', NULL), (11044, 760, '', '', '', '0000-00-00', 11044, '', NULL), (11045, 761, 'S/N Q14706-1', 'Strainsert PLNX-2-128 IND Load Cell PC-40 (MOVED) (E-4)', 'Range: 50K', '2006-04-19', 11045, '4/19/2006', NULL), (11046, 762, '', '', '', '0000-00-00', 11046, '', NULL), (11047, 763, '', '', '', '0000-00-00', 11047, '', NULL), (11048, 764, '', '', '', '0000-00-00', 11048, '', NULL), (11049, 765, '', '', '', '0000-00-00', 11049, '', NULL), (11050, 766, 'S/N SR04920903', 'Tronix 3825 weigh scale (E898)', 'Range: 100 lbs', '2012-09-04', 11050, '9/4/2012', NULL), (11051, 767, '', '', '', '0000-00-00', 11051, '', NULL), (11052, 768, 'S/N R-3997', 'with Load Cell (E-4) 5% Range', 'Range: 5 lbs to 50 lbs', '2012-11-28', 11052, '11/28/2012', NULL), (11053, 769, 'S/N C-455', ' with Speed Control (E-2658-11) Recorder Proportional', 'Range: 1 inch/min', '2012-11-27', 11053, '11/27/2012', NULL), (11054, 770, '', '', '', '0000-00-00', 11054, '', NULL), (11055, 771, '', '', '', '0000-00-00', 11055, '', NULL), (11056, 772, '', '', '', '0000-00-00', 11056, '', NULL), (11057, 773, '', '', '', '0000-00-00', 11057, '', NULL), (11058, 774, '', '', '', '0000-00-00', 11058, '', NULL), (11059, 775, '', '*** Send Certs to 4813 Seton Dr. Baltimore, Md 21215****', '', '0000-00-00', 11059, '', NULL), (11060, 776, '', '', '', '0000-00-00', 11060, '', NULL), (11061, 777, 'S/N R4000', 'Instron 4206 Digital (E2658-11)', 'Range: 2 in/ min', '2012-11-28', 11061, '11/28/2012', NULL), (11062, 778, 'S/N C-455', ' with Speed Control (E2658-11) Recorder ', 'Range: 5 in/min', '2012-11-27', 11062, '11/27/2012', NULL), (11063, 779, 'S/N MR-4297', 'Instron Model 1125 Tensile Tester (E-4)', 'Range: 50 lbs/ 200lbs/1,000 lbs', '2012-11-28', 11063, '11/28/2012', NULL), (11064, 780, '', '', '', '0000-00-00', 11064, '', NULL), (11065, 781, '', '', '', '0000-00-00', 11065, '', NULL), (11066, 782, 'S/N 842', 'Velzy Post Tension Jack w/ Gauge #1001 (E-4 & PCI)', 'Range: 45K (I Year Schedule) (OOS)', '2010-01-21', 11066, '1/21/2010', NULL), (11067, 783, '', '', '', '0000-00-00', 11067, '', NULL), (11068, 784, '', '', '', '0000-00-00', 11068, '', NULL), (11069, 785, '', '', '', '0000-00-00', 11069, '', NULL), (11070, 786, '', '', '', '0000-00-00', 11070, '', NULL), (11071, 787, '', '', '', '0000-00-00', 11071, '', NULL), (11072, 788, '', '', '', '0000-00-00', 11072, '', NULL), (11073, 789, '', '', '', '0000-00-00', 11073, '', NULL), (11074, 790, '', '', '', '0000-00-00', 11074, '', NULL), (11075, 791, 'S/N 211723', ' w/Speed Control (E2658-11)', 'Range: 0.120 in/min', '2013-06-04', 11075, '6/4/2013', NULL), (11076, 792, '', '', '', '0000-00-00', 11076, '', NULL), (11077, 793, '', '', '', '0000-00-00', 11077, '', NULL), (11078, 794, '', '', '', '0000-00-00', 11078, '', NULL), (11079, 795, '', '', '', '0000-00-00', 11079, '', NULL), (11080, 796, '', '', '', '0000-00-00', 11080, '', NULL), (11081, 797, '', '', '', '0000-00-00', 11081, '', NULL), (11082, 798, '', '', '', '0000-00-00', 11082, '', NULL), (11083, 799, '', '', '', '0000-00-00', 11083, '', NULL), (11084, 800, '', '', '', '0000-00-00', 11084, '', NULL), (11085, 801, '', '', '', '0000-00-00', 11085, '', NULL), (11086, 802, '', '', '', '0000-00-00', 11086, '', NULL), (11087, 803, '', '', '', '0000-00-00', 11087, '', NULL), (11088, 804, '', '', '', '0000-00-00', 11088, '', NULL), (11089, 805, '', '', '', '0000-00-00', 11089, '', NULL), (11090, 806, '', '', '', '0000-00-00', 11090, '', NULL), (11091, 807, '', '', '', '0000-00-00', 11091, '', NULL), (11092, 808, '', '', '', '0000-00-00', 11092, '', NULL), (11093, 809, '', '', '', '0000-00-00', 11093, '', NULL), (11094, 810, '', ' ', '', '0000-00-00', 11094, '', NULL), (11095, 811, '', '', '', '0000-00-00', 11095, '', NULL), (11096, 812, '', '', '', '0000-00-00', 11096, '', NULL), (11097, 813, '', '', '', '0000-00-00', 11097, '', NULL), (11098, 814, 'S/N 140(ID# MVMTC42)', ' w/ Instron 2640-010 Traverse Averaging Static Extensometer', 'Range:0.36 in/in (GL 1\") (E-83) (10%)', '2013-07-23', 11098, '7/23/2013', NULL), (11099, 815, '', '', '', '0000-00-00', 11099, '', NULL), (11100, 816, '', '', '', '0000-00-00', 11100, '', NULL), (11101, 817, '', '', '', '0000-00-00', 11101, '', NULL), (11102, 818, '', '', '', '0000-00-00', 11102, '', NULL), (11103, 819, '', '', '', '0000-00-00', 11103, '', NULL), (11104, 820, '', '', '', '0000-00-00', 11104, '', NULL), (11105, 821, '', '', '', '0000-00-00', 11105, '', NULL), (11106, 822, '', '', '', '0000-00-00', 11106, '', NULL), (11107, 823, '', '', '', '0000-00-00', 11107, '', NULL), (11108, 824, '', '', '', '0000-00-00', 11108, '', NULL), (11109, 825, '', '', '', '0000-00-00', 11109, '', NULL), (11110, 826, 'S/N 0518078/12', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 11110, '8/27/2013', NULL), (11111, 827, '', '', '', '0000-00-00', 11111, '', NULL), (11112, 828, 'S/N 0507130-20 ID# 5', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2012-07-19', 11112, '7/19/2012', NULL), (11113, 829, 'S/N 0506132/5', 'Eilon Engineering RON 2501-S5 (Man SP & .01% FS)', 'Range : 5 Ton', '2012-07-19', 11113, '7/19/2012', NULL), (11114, 830, '', '', '', '0000-00-00', 11114, '', NULL), (11115, 831, 'S/N T08046', 'Chatillon Hand Held Force Gauge T & C (E-4) ', 'Range: 500 lbs ', '2010-01-13', 11115, '1/13/2010', NULL), (11116, 832, '', '', '', '0000-00-00', 11116, '', NULL), (11117, 833, '', '2014-Left Pin Needs Replace', '', '0000-00-00', 11117, '', NULL), (11118, 834, '', '', '', '0000-00-00', 11118, '', NULL), (11119, 835, '', 'Possible Pro-Rate in January', '', '0000-00-00', 11119, '', NULL), (11120, 836, ' ', ' ', ' ', '0000-00-00', 11120, '', NULL), (11121, 837, '', '', '', '0000-00-00', 11121, '', NULL), (11122, 838, '', ' ', '', '0000-00-00', 11122, '', NULL), (11123, 839, '', '', '', '0000-00-00', 11123, '', NULL), (11124, 840, '', '', '', '0000-00-00', 11124, '', NULL), (11125, 841, 'S/N 50725639', ' w/ LVDT (D-6027)', 'Range: 10mm', '2013-04-29', 11125, '4/29/2013', NULL), (11126, 842, 'S/N RC1006/R', 'Koppers Tie Jack (E-4 & PCI)', 'Range: 50 Ton / 100 Ton ', '2013-08-28', 11126, '8/28/2013', NULL), (11127, 843, '', '', '', '0000-00-00', 11127, '', NULL), (11128, 844, '', '', '', '0000-00-00', 11128, '', NULL), (11129, 845, '', '', '', '0000-00-00', 11129, '', NULL), (11130, 846, '', '', '', '0000-00-00', 11130, '', NULL), (11131, 847, '', '', '', '0000-00-00', 11131, '', NULL), (11132, 848, '', '', '', '0000-00-00', 11132, '', NULL), (11133, 849, '', '', '', '0000-00-00', 11133, '', NULL), (11134, 850, '', '', '', '0000-00-00', 11134, '', NULL), (11135, 851, '', '', '', '0000-00-00', 11135, '', NULL), (11136, 852, '', '', '', '0000-00-00', 11136, '', NULL), (11137, 853, 'S/N 718114-1', ' w/ Gauge', 'Range: 5,000 psi (30 Ton)', '2013-09-26', 11137, '9/26/2013', NULL), (11138, 854, ' ', ' ', ' ', '0000-00-00', 11138, '', NULL), (11139, 855, '', '', '', '0000-00-00', 11139, '', NULL), (11140, 856, '', '', '', '0000-00-00', 11140, '', NULL), (11141, 857, '', '', '', '0000-00-00', 11141, '', NULL), (11142, 858, '', '', '', '0000-00-00', 11142, '', NULL), (11143, 859, '', '', '', '0000-00-00', 11143, '', NULL), (11144, 860, 'S/N 1125', ' with Speed Control (E-2658)', 'Range: 12in/min', '2013-09-04', 11144, '9/4/2013', NULL), (11145, 861, '', '', '', '0000-00-00', 11145, '', NULL), (11146, 862, '', '', '', '0000-00-00', 11146, '', NULL), (11147, 863, '', '', '', '0000-00-00', 11147, '', NULL), (11148, 864, '', '', '', '0000-00-00', 11148, '', NULL), (11149, 865, '', '', '', '0000-00-00', 11149, '', NULL), (11150, 866, '', '', '', '0000-00-00', 11150, '', NULL), (11151, 867, '', '', '', '0000-00-00', 11151, '', NULL), (11152, 868, '', '', '', '0000-00-00', 11152, '', NULL), (11153, 869, '', '', '', '0000-00-00', 11153, '', NULL), (11154, 870, '', '', '', '0000-00-00', 11154, '', NULL), (11155, 871, '', '', '', '0000-00-00', 11155, '', NULL), (11156, 872, '', '', '', '0000-00-00', 11156, '', NULL), (11157, 873, 'S/N 3A', 'Trautwein Pore Pressure System (D-5720)', 'Range: 150 psi', '2012-10-02', 11157, '10/2/2012', NULL), (11158, 874, '', '', '', '0000-00-00', 11158, '', NULL), (11159, 875, '', '', '', '0000-00-00', 11159, '', NULL), (11160, 876, '', '', '', '0000-00-00', 11160, '', NULL), (11161, 877, '', '', '', '0000-00-00', 11161, '', NULL), (11162, 878, '', '', '', '0000-00-00', 11162, '', NULL), (11163, 879, '', '', '', '0000-00-00', 11163, '', NULL), (11164, 880, '', '', '', '0000-00-00', 11164, '', NULL), (11165, 881, '', '', '', '0000-00-00', 11165, '', NULL), (11166, 882, '', '', '', '0000-00-00', 11166, '', NULL), (11167, 883, '', '', '', '0000-00-00', 11167, '', NULL), (11168, 884, '', '', '', '0000-00-00', 11168, '', NULL), (11169, 885, '', '', '', '0000-00-00', 11169, '', NULL), (11170, 886, '', '', '', '0000-00-00', 11170, '', NULL), (11171, 887, '', '', '', '0000-00-00', 11171, '', NULL), (11172, 888, '', '', '', '0000-00-00', 11172, '', NULL), (11173, 889, '', '', '', '0000-00-00', 11173, '', NULL), (11174, 890, '', '', '', '0000-00-00', 11174, '', NULL), (11175, 891, 'S/N', 'Eilon Engineering RON 4000 S-1 Load Cell (ManSpec & 0.1%FS)', 'Range: 1 Ton ', NULL, 11175, 'New', NULL), (11176, 892, 'S/N 0055', 'VSL Bond Tester (Baltimore) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2010-06-23', 11176, '6/23/2010', NULL), (11177, 893, '', '', '', '0000-00-00', 11177, '', NULL), (11178, 894, 'S/N 31872/51589', 'Enerpac Post Tension Jack (E-4&PCI)', 'Range: 3K / 35K ', '2009-04-14', 11178, '4/14/2009', NULL), (11179, 895, '', '', '', '0000-00-00', 11179, '', NULL), (11180, 896, '', '', '', '0000-00-00', 11180, '', NULL), (11181, 897, '', '', '', '0000-00-00', 11181, '', NULL), (11182, 898, '', '', '', '0000-00-00', 11182, '', NULL), (11183, 899, '', '', '', '0000-00-00', 11183, '', NULL), (11184, 900, '', '', '', '0000-00-00', 11184, '', NULL), (11185, 901, 'S/N 00490286AG', 'Ohaus American Scale & Equipment Co. Scale Model # CD11 (E-898)', 'Range: 150 Lbs', '2012-12-05', 11185, '12/5/2012', NULL), (11186, 902, '', '', '', '0000-00-00', 11186, '', NULL), (11187, 903, ' ', ' ', '', '0000-00-00', 11187, '', NULL), (11188, 904, 'S/N 0708SBALA01018', ' w/ Geo Comp Mdl. SBA-1KLB-I Horizontal Load Cell Shear Force ', 'Range: Comp. 1K / Ten. -1K (E-4)', '2010-10-06', 11188, '10/6/2010', NULL), (11189, 905, 'S/N 2331', 'Geo Comp Flowtrac II Pressure Transducer (Top) (D-5720)', 'Range: 200 PSI', '2010-10-06', 11189, '10/6/2010', NULL), (11190, 906, '', '', '', '0000-00-00', 11190, '', NULL), (11191, 907, 'S/N H0806000TB', 'BVA Mdl. HC6003T Hydraulic Ram w/ 3 Gauges (E-4 & Man Specs )', '', '2013-09-17', 11191, '9/17/2013', NULL), (11192, 908, '', '', '', '0000-00-00', 11192, '', NULL), (11193, 909, 'S/N 08043845/3', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 160K', '2013-08-07', 11193, '8/7/2013', NULL), (11194, 910, '', '', '', '0000-00-00', 11194, '', NULL), (11195, 911, '', '', '', '0000-00-00', 11195, '', NULL), (11196, 912, '', '', '', '0000-00-00', 11196, '', NULL), (11197, 913, '', '', '', '0000-00-00', 11197, '', NULL), (11198, 914, '', '', '', '0000-00-00', 11198, '', NULL), (11199, 915, 'S/N N-187', ' w/Satec Model 2630 N Series Extensometer (E-83)', 'Range: 0.005 in/in to 0.5 in/in', '2012-01-03', 11199, '1/3/2012', NULL), (11200, 916, '', '', '', '0000-00-00', 11200, '', NULL), (11201, 917, '', '', '', '0000-00-00', 11201, '', NULL), (11202, 918, '', '', '', '0000-00-00', 11202, '', NULL), (11203, 919, 'S/N 5056', 'Soiltest Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-12-19', 11203, '12/19/2012', NULL), (11204, 920, '', '', '', '0000-00-00', 11204, '', NULL), (11205, 921, 'S/N 640 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel #2', 'Range: 150 PSI (D-5720)', '2012-12-17', 11205, '12/17/2012', NULL), (11206, 922, 'S/N 923378639', 'Brainard Kilman Dial Indicator (D-6027)', 'Range: 1 Inch', '2012-12-17', 11206, '12/17/2012', NULL), (11207, 923, 'S/N 004', ' w/ Dial Indicator Vertical Displacement (D-6027)', 'Range: 0.5 Inch', '2012-12-17', 11207, '12/17/2012', NULL), (11208, 924, '', '', '', '0000-00-00', 11208, '', NULL), (11209, 925, '', '', '', '0000-00-00', 11209, '', NULL), (11210, 926, '', '', '', '0000-00-00', 11210, '', NULL), (11211, 927, '', '', '', '0000-00-00', 11211, '', NULL), (11212, 928, '', '', '', '0000-00-00', 11212, '', NULL), (11213, 929, '', ' w/ LVDT (D-6027)', 'Range: 1 inch', '2013-01-07', 11213, '1/7/2013', NULL), (11214, 930, 'S/N LP-923', ' w/ LVDT (D-6027)', 'Range: 3 inches', '2013-01-09', 11214, '1/9/2013', NULL), (11215, 931, 'S/N 68923', ' w/ Load Cell (E-4) (ID# G1437)', 'Range: 5,000 lbs', '2013-01-07', 11215, '1/7/2013', NULL), (11216, 932, 'S/N G814', ' w/ LVDT Vertical ', 'Range: 0.4 inches', '2013-01-09', 11216, '1/9/2013', NULL), (11217, 933, 'S/N 685950', ' w/ Load Cell (E-4) (ID # G1419)', 'Range: 2K', '2013-01-09', 11217, '1/9/2013', NULL), (11218, 934, '', '', '', '0000-00-00', 11218, '', NULL), (11219, 935, 'S/N 043343120', ' w/ Dial Indicator Shear Displacement (D-6027)', 'Range: 1 inch', '2013-01-23', 11219, '1/23/2013', NULL), (11220, 936, 'S/N A10035', 'Geotest CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2012-05-02', 11220, '5/2/2012', NULL), (11221, 937, '', 'Client request Cal from about 90 lbs to 60,000 lbs', '', '0000-00-00', 11221, '', NULL), (11222, 938, '', '', '', '0000-00-00', 11222, '', NULL), (11223, 939, '', '', '', '0000-00-00', 11223, '', NULL), (11224, 940, 'S/N 2601-94', 'Sensotec Deflectometer LVDT 2601-094 (ID# Lab N 19) (D-6027)', '', '2013-01-29', 11224, '1/29/2013', NULL), (11225, 941, 'S/N 05018232/6', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 50K', NULL, 11225, 'New', NULL), (11226, 942, '', '', '', '0000-00-00', 11226, '', NULL), (11227, 943, '', '', '', '0000-00-00', 11227, '', NULL), (11228, 944, 'S/N 0128179/16', 'Eilon Engineering RON 2501 S-10 (ManSpecs 0.1 %FS)', 'Range: 2K to 20K (ID# 815-29-06-092)', '2013-05-09', 11228, '5/9/2013', NULL), (11229, 945, '', '', '', '0000-00-00', 11229, '', NULL), (11230, 946, 'S/N 829379', ' w/ LVDT - Horizontal Displacement (D-6027) (OOS)', 'Range: 0.1 inch to 1 inch', '2012-01-09', 11230, '1/9/2012', NULL), (11231, 947, 'S/N 154', ' with Model E-415 Readout (OUT OF SERVICE)', 'Channel #1', '0000-00-00', 11231, '', NULL), (11232, 948, '', '', '', '0000-00-00', 11232, '', NULL), (11233, 949, '', ' w/ Extensometer (Strain Encoder) (E-83)', 'Range: 2.0\"(1\" G.L.) (Class D 0.01)(ch#4)', '2013-02-28', 11233, '2/28/2013', NULL), (11234, 950, '', '', '', '0000-00-00', 11234, '', NULL), (11235, 951, 'S/N 111', 'Soiltest Consolidation Dial Indicator Frame #2 (D-6027)', 'Range: 0.4 inch', '2009-03-11', 11235, '3/11/2009', NULL), (11236, 952, '', '', '', '0000-00-00', 11236, '', NULL), (11237, 953, 'S/N 22850', 'Soiltest Unconfined Double Proving Ring (E-4 & Mans Spec)', 'Range: 500 lbs', '2013-02-26', 11237, '2/26/2013', NULL), (11238, 954, '', '', '', '0000-00-00', 11238, '', NULL), (11239, 955, '', '', '', '0000-00-00', 11239, '', NULL), (11240, 956, '', '', '', '0000-00-00', 11240, '', NULL), (11241, 957, '', '', '', '0000-00-00', 11241, '', NULL), (11242, 958, '', '', '', '0000-00-00', 11242, '', NULL), (11243, 959, '', '', '', '0000-00-00', 11243, '', NULL), (11244, 960, '', '', '', '0000-00-00', 11244, '', NULL), (11245, 961, '', '', '', '0000-00-00', 11245, '', NULL), (11246, 962, '', '', '', '0000-00-00', 11246, '', NULL), (11247, 963, 'S/N 348049', 'Ashcroft Pressure Transducer (D-5720)', 'Range: 300 psi', '2013-07-30', 11247, '7/30/2013', NULL), (11248, 964, '', '', '', '0000-00-00', 11248, '', NULL), (11249, 965, '', ' ', '', '0000-00-00', 11249, '', NULL), (11250, 966, '', '', '', '0000-00-00', 11250, '', NULL), (11251, 967, 'S/N 0047', 'VSL Bond Tester (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2010-02-24', 11251, '2/24/2010', NULL), (11252, 968, 'S/N 01297020', 'Eilon Engineering RON 2000 S12.5 Load Cell (Man Specs 0.1% FS)', 'Range: 12.5 Ton', '2013-10-09', 11252, '10/9/2013', NULL), (11253, 969, 'S/N 5002387', 'RON 2000 S-50 Eilon Engineering (Man Specs 0.1 % FS)', 'Range: 50 Ton', NULL, 11253, 'New', NULL), (11254, 970, '', '', '', '0000-00-00', 11254, '', NULL), (11255, 971, 'S/N PFS-02', 'TIF Electronic Mdl. 9010A Scale (moved) (E-898)', 'Range: 110 lbs ', '2011-02-15', 11255, '2/15/2011', NULL), (11256, 972, 'S/N 51901-861543', ' w/ Karol Warner Pressure Gauge ( D-5720)(OOS)', 'Range: 60 PSI', '2011-02-08', 11256, '2/8/2011', NULL), (11257, 973, '', '', '', '0000-00-00', 11257, '', NULL), (11258, 974, '', '', '', '0000-00-00', 11258, '', NULL), (11259, 975, '', '', '', '0000-00-00', 11259, '', NULL), (11260, 976, '', '', '', '0000-00-00', 11260, '', NULL), (11261, 977, '', '', '', '0000-00-00', 11261, '', NULL), (11262, 978, '', '', '', '0000-00-00', 11262, '', NULL), (11263, 979, '', '', '', '0000-00-00', 11263, '', NULL), (11264, 980, '', '', '', '0000-00-00', 11264, '', NULL), (11265, 981, '', '', '', '0000-00-00', 11265, '', NULL), (11266, 982, '', '', '', '0000-00-00', 11266, '', NULL), (11267, 983, '', '', '', '0000-00-00', 11267, '', NULL), (11268, 984, '', '', '', '0000-00-00', 11268, '', NULL), (11269, 985, '', '', '', '0000-00-00', 11269, '', NULL), (11270, 986, '', '', '', '0000-00-00', 11270, '', NULL), (11271, 987, '', '', '', '0000-00-00', 11271, '', NULL), (11272, 988, '', '', '', '0000-00-00', 11272, '', NULL), (11273, 989, '', '', '', '0000-00-00', 11273, '', NULL), (11274, 990, '', '', '', '0000-00-00', 11274, '', NULL), (11275, 991, '', '', '', '0000-00-00', 11275, '', NULL), (11276, 992, 'S/N 2109', 'Instron Extensometer ', 'Range: 0.1 mm/mm 25 mm gl ID#Lab42', '2013-03-13', 11276, '3/13/2013', NULL), (11277, 993, 'S/N 1970', 'Karol Warner HMA Lab Supply Mdl. 9210 Digital Manometer ', 'Range: 800 mm Hg (ManSpecs & 2%)', '2013-03-14', 11277, '3/14/2013', NULL), (11278, 994, '', '', '', '0000-00-00', 11278, '', NULL), (11279, 995, 'S/N 8008/195', 'LSC E-311Model H525 LVDT (D-6027)', 'Range: 0.80 Inch', '2013-03-12', 11279, '3/12/2013', NULL), (11280, 996, 'S/N 9727120', 'Humboldt Master Loader Mdl. HM2000 CBR Speed Control', 'Range:0.05 in/min(ManSpecs)ID# 003741', '2013-03-13', 11280, '3/13/2013', NULL), (11281, 997, 'S/N 1888', ' w/Digital ID# 010719 (E-4 & 2% ManSpecs)', ' ', '2013-03-12', 11281, '3/12/2013', NULL), (11282, 998, ' ', ' ', ' ', '0000-00-00', 11282, '', NULL), (11283, 999, '', '', '', '0000-00-00', 11283, '', NULL), (11284, 1000, '', '', '', '0000-00-00', 11284, '', NULL), (11285, 1001, '', '', '', '0000-00-00', 11285, '', NULL), (11286, 1002, '', '', '', '0000-00-00', 11286, '', NULL), (11287, 1003, '', '', '', '0000-00-00', 11287, '', NULL), (11288, 1004, 'S/N Unknown', ' w/ Speed Control (OOS) (Not Done)', 'Range: 0.05 in/min', '0000-00-00', 11288, '', NULL), (11289, 1005, '', '', '', '0000-00-00', 11289, '', NULL), (11290, 1006, '', '', '', '0000-00-00', 11290, '', NULL), (11291, 1007, '', '', '', '0000-00-00', 11291, '', NULL), (11292, 1008, '', '', '', '0000-00-00', 11292, '', NULL), (11293, 1009, '', '', '', '0000-00-00', 11293, '', NULL), (11294, 1010, '', ' ***Mail Certifications to Bill Address***', '', '0000-00-00', 11294, '', NULL), (11295, 1011, 'S/N 02-103 RAMA', 'Hercules Mdl HSJ Prestress Jack (E4 & PCI & 2%)', 'Range 5K/48K', '2012-04-17', 11295, '4/17/2012', NULL), (11296, 1012, 'S/N 21215', 'GT Bynum Prestress Jack w/ Gauge #1 (E-4 & PCI)', 'Range: 3K / 35K ', '2013-07-10', 11296, '7/10/2013', NULL), (11297, 1013, 'S/N 138509 /ID# LabD45', 'RDP LVDT D6/05000A w/ Strainsmart DAQ Channel #2 (D-6027)', 'Range: 0.25 mm to 2.5 mm', '2013-06-12', 11297, '6/12/2013', NULL), (11298, 1014, 'S/N 101', ' w/ Extra Gauge-Final Jack #4 (E-4 & PCI)', 'Range: 40K', '2013-07-15', 11298, '7/15/2013', NULL), (11299, 1015, 'S/N 2809AD-08663', 'Powerteam Mdl. SPX Post Tension Jack ( E-4 & PCI)', 'Range: 30K (4,000 PSI)', '2013-07-15', 11299, '7/15/2013', NULL), (11300, 1016, '', '', '', '0000-00-00', 11300, '', NULL), (11301, 1017, '', '', '', '0000-00-00', 11301, '', NULL), (11302, 1018, '', '', '', '0000-00-00', 11302, '', NULL), (11303, 1019, 'S/N 98-560', 'Hercules HSJ Prestress Jack (E-4 & PCI & 2%)', 'Range: 3.5K / 50K', '2013-08-12', 11303, '8/12/2013', NULL), (11304, 1020, '', '', '', '0000-00-00', 11304, '', NULL), (11305, 1021, '', '', '', '0000-00-00', 11305, '', NULL), (11306, 1022, '', '', '', '0000-00-00', 11306, '', NULL), (11307, 1023, '', '', '', '0000-00-00', 11307, '', NULL), (11308, 1024, '', '', '', '0000-00-00', 11308, '', NULL), (11309, 1025, '', '', '', '0000-00-00', 11309, '', NULL), (11310, 1026, 'S/N Stress 6', 'Stress Con Prestress Jack (OOS) (E-4 & PCI)', 'Range: 4K (420 PSI) / 35K (3,475 PSI)', '2012-04-11', 11310, '4/11/2012', NULL), (11311, 1027, '', '', '', '0000-00-00', 11311, '', NULL), (11312, 1028, '', '', '', '0000-00-00', 11312, '', NULL), (11313, 1029, '', '', '', '0000-00-00', 11313, '', NULL), (11314, 1030, 'S/N PT-2', 'Stressing Jack Power Team', 'Range: 40,000 K (6,600 PSI)', '2013-01-03', 11314, '1/3/2013', NULL), (11315, 1031, '', '', '', '0000-00-00', 11315, '', NULL), (11316, 1032, '', '', '', '0000-00-00', 11316, '', NULL), (11317, 1033, '', '', '', '0000-00-00', 11317, '', NULL), (11318, 1034, '', '', '', '0000-00-00', 11318, '', NULL), (11319, 1035, '', '', '', '0000-00-00', 11319, '', NULL), (11320, 1036, 'S/N 167214', 'MTS Mdl. 311.11 Universal Testing Machine w/3 Load Cells (E-4)', 'Range: 11 K/22 K/220 K ', '2012-04-07', 11320, '4/7/2012', NULL), (11321, 1037, 'S/N 102 ', 'Boart Longyear Direct Shear Machine w/Horizontal LVDT (D-6027)', 'Range: 1 Inch ADU Channel 30', '2012-04-04', 11321, '4/4/2012', NULL), (11322, 1038, 'S/N 207 ', 'Geo Comp CBR LVDT (D-6027)', 'Range: 1 Inch ADU Channel 24', '2012-04-04', 11322, '4/4/2012', NULL), (11323, 1039, 'S/N 234', 'Brainard-Kilman Terraload Consolidation Unit Console 3', 'Cap: 1200 lbs (16 TSF) (E-4& Man Specs)', '2013-04-01', 11323, '4/1/2013', NULL), (11324, 1040, '', '', '', '0000-00-00', 11324, '', NULL), (11325, 1041, 'S/N 005961', ' w/ Speed Control (E2658-11)', 'Range: 0.15 in/min', '2013-04-02', 11325, '4/2/2013', NULL), (11326, 1042, 'S/N E490/308', ' w/Brainard Kilman E-214 Load Cell w/ Mdl. 700 Plotter (E-4)', 'Range: 5K', '2013-04-02', 11326, '4/2/2013', NULL), (11327, 1043, 'S/N 1009751-14', 'WIKA PAV Mdl. 232.34 4.5 Inch Pressure Gauge (D-5720 & 2%)', 'Range: 600 psi', '2013-04-02', 11327, '4/2/2013', NULL), (11328, 1044, '', ' w/ Admet Controller PDC-0407222', '', '0000-00-00', 11328, '', NULL), (11329, 1045, '', '', '', '0000-00-00', 11329, '', NULL), (11330, 1046, '', '', '', '0000-00-00', 11330, '', NULL), (11331, 1047, '', '***E-Mail Solication Letters to jchesterfield@mccoig.biz***', '', '0000-00-00', 11331, '', NULL), (11332, 1048, '', '', '', '0000-00-00', 11332, '', NULL), (11333, 1049, '', '', '', '0000-00-00', 11333, '', NULL), (11334, 1050, '', '', '', '0000-00-00', 11334, '', NULL), (11335, 1051, '', '', '', '0000-00-00', 11335, '', NULL), (11336, 1052, '', '', '', '0000-00-00', 11336, '', NULL), (11337, 1053, '', '', '', '0000-00-00', 11337, '', NULL), (11338, 1054, 'S/N 803', 'Micro Pressure Transducer (D-5720)', 'Range: 100 PSI (ID# 000801)', '2013-04-11', 11338, '4/11/2013', NULL), (11339, 1055, 'S/N 071029', 'Testmark CM-4000-LXIA Digital Compression Machine (E-4)', 'Range: 4K to 400K (MTC# 001835)', '2013-04-10', 11339, '4/10/2013', NULL), (11340, 1056, '', '', '', '0000-00-00', 11340, '', NULL), (11341, 1057, '', '', '', '0000-00-00', 11341, '', NULL), (11342, 1058, '', '', '', '0000-00-00', 11342, '', NULL), (11343, 1059, '', '', '', '0000-00-00', 11343, '', NULL), (11344, 1060, 'S/N RJ108', 'McDaniel Controls Inc Dial Gauge (D-5720)', 'Range: 2,000 psi', '2013-04-27', 11344, '4/27/2013', NULL), (11345, 1061, 'S/N TEN014', 'Total Comp Mdl. 1601C Tension Tester w/ Digital AMDI', 'Range: 500 lbs to 10,000 lbs (E-4)', '2013-04-25', 11345, '4/25/2013', NULL), (11346, 1062, '', '', '', '0000-00-00', 11346, '', NULL), (11347, 1063, '', '', '', '0000-00-00', 11347, '', NULL), (11348, 1064, '', 'person ordering the services ', '', '0000-00-00', 11348, '', NULL), (11349, 1065, '', '', '', '0000-00-00', 11349, '', NULL), (11350, 1066, 'S/N V15345', 'Transducer', '', '2006-04-10', 11350, '4/10/2006', NULL), (11351, 1067, 'S/N 844', 'Boart Longyear E-124 Transducer-Ch1 (D-5720)', 'Cap: 150 psi', '2005-06-16', 11351, '6/16/2005', NULL), (11352, 1068, '', '', '', '0000-00-00', 11352, '', NULL), (11353, 1069, '', '', '', '0000-00-00', 11353, '', NULL), (11354, 1070, '', '', '', '0000-00-00', 11354, '', NULL), (11355, 1071, '', '', '', '0000-00-00', 11355, '', NULL), (11356, 1072, '', '', '', '0000-00-00', 11356, '', NULL), (11357, 1073, '', '', '', '0000-00-00', 11357, '', NULL), (11358, 1074, '', '', '', '0000-00-00', 11358, '', NULL), (11359, 1075, '', '', '', '0000-00-00', 11359, '', NULL), (11360, 1076, 'S/N 622', ' Ameteck Pull Tester (E-4)', 'Range: 500 lb.', '1998-04-28', 11360, '4/28/1998', NULL), (11361, 1077, 'S/N Unknown', 'Wagner Instruments Force Gauge Model FUD Digital T & C ', 'Range: 10 lb. ', '1998-04-29', 11361, '4/29/1998', NULL), (11362, 1078, '', '', '', '0000-00-00', 11362, '', NULL), (11363, 1079, '', '', '', '0000-00-00', 11363, '', NULL), (11364, 1080, '', '', '', '0000-00-00', 11364, '', NULL), (11365, 1081, '', '', '', '0000-00-00', 11365, '', NULL), (11366, 1082, '', '', '', '0000-00-00', 11366, '', NULL), (11367, 1083, '', '', '', '0000-00-00', 11367, '', NULL), (11368, 1084, '', '', '', '0000-00-00', 11368, '', NULL), (11369, 1085, '', '', '', '0000-00-00', 11369, '', NULL), (11370, 1086, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 11370, '', NULL), (11371, 1087, '', '', '', '0000-00-00', 11371, '', NULL), (11372, 1088, '', '', '', '0000-00-00', 11372, '', NULL), (11373, 1089, '', '', '', '0000-00-00', 11373, '', NULL), (11374, 1090, '', '', '', '0000-00-00', 11374, '', NULL), (11375, 1091, '', '', '', '0000-00-00', 11375, '', NULL), (11376, 1092, '', '', '', '0000-00-00', 11376, '', NULL), (11377, 1093, '', '', '', '0000-00-00', 11377, '', NULL), (11378, 1094, '', '', '', '0000-00-00', 11378, '', NULL), (11379, 1095, '', '', '', '0000-00-00', 11379, '', NULL), (11380, 1096, '', '', '', '0000-00-00', 11380, '', NULL), (11381, 1097, '', '', '', '0000-00-00', 11381, '', NULL), (11382, 1098, '', '', '', '0000-00-00', 11382, '', NULL), (11383, 1099, '', '', '', '0000-00-00', 11383, '', NULL), (11384, 1100, '', '', '', '0000-00-00', 11384, '', NULL), (11385, 1101, '', '', '', '0000-00-00', 11385, '', NULL), (11386, 1102, '', '', '', '0000-00-00', 11386, '', NULL), (11387, 1103, '', '', '', '0000-00-00', 11387, '', NULL), (11388, 1104, 'S/N 19832', 'Soiltest Double Proving Ring Model LC-2 (E-4)', 'Cap: 500#', '1995-07-25', 11388, '7/25/1995', NULL), (11389, 1105, '', '', '', '0000-00-00', 11389, '', NULL), (11390, 1106, '', '', '', '0000-00-00', 11390, '', NULL), (11391, 1107, '', '', '', '0000-00-00', 11391, '', NULL), (11392, 1108, '', '', '', '0000-00-00', 11392, '', NULL), (11393, 1109, '', '', '', '0000-00-00', 11393, '', NULL), (11394, 1110, '', '', '', '0000-00-00', 11394, '', NULL), (11395, 1111, '', '', '', '0000-00-00', 11395, '', NULL), (11396, 1112, '', '', '', '0000-00-00', 11396, '', NULL), (11397, 1113, '', '', '', '0000-00-00', 11397, '', NULL), (11398, 1114, '', '', '', '0000-00-00', 11398, '', NULL), (11399, 1115, 'S/N 144713', 'Geo Comp Load Trac V', 'Range: 2K Load Cell', NULL, 11399, 'New', NULL), (11400, 1116, '', '', '', '0000-00-00', 11400, '', NULL), (11401, 1117, '', '', '', '0000-00-00', 11401, '', NULL), (11402, 1118, '', '', '', '0000-00-00', 11402, '', NULL), (11403, 1119, '', '', '', '0000-00-00', 11403, '', NULL), (11404, 1120, '', '', '', '0000-00-00', 11404, '', NULL), (11405, 1121, 'S/N LVDT 4 (Strain)', 'Macrosensor CD-375-500 Extensometer Frame 875 (ISO-9513) ', 'Range: Tension 0.05 Inch/Comp. 0.5 Inch ', '2007-05-07', 11405, '5/7/2007', NULL), (11406, 1122, '', '', '', '0000-00-00', 11406, '', NULL), (11407, 1123, '', '', '', '0000-00-00', 11407, '', NULL), (11408, 1124, 'S/N Unknown', 'Durham Geo 4 Channel Digital Pressure Transducer', 'Range: ', NULL, 11408, 'New', NULL), (11409, 1125, 'S/N 12758/308', 'Brainard Kilman Recorder w/Load cell (E-4)', 'Range: 5K', '2007-04-03', 11409, '4/3/2007', NULL), (11410, 1126, '', ' with Recorder (Not Done)', 'Range /05\"', '0000-00-00', 11410, '', NULL), (11411, 1127, '', '', '', '0000-00-00', 11411, '', NULL), (11412, 1128, '', '', '', '0000-00-00', 11412, '', NULL), (11413, 1129, '', '', '', '0000-00-00', 11413, '', NULL), (11414, 1130, '', '', '', '0000-00-00', 11414, '', NULL), (11415, 1131, '', '', '', '0000-00-00', 11415, '', NULL), (11416, 1132, 'S/N NAL-1894', 'Columbine Tensiometer-Model AL-0102 (E-4 and Man Specs)', 'Range: 500 lbs. (OOS)', '2006-04-18', 11416, '4/18/2006', NULL), (11417, 1133, '', '', '', '0000-00-00', 11417, '', NULL), (11418, 1134, '', '', '', '0000-00-00', 11418, '', NULL), (11419, 1135, '', '', '', '0000-00-00', 11419, '', NULL), (11420, 1136, '', '', '', '0000-00-00', 11420, '', NULL), (11421, 1137, '', '', '', '0000-00-00', 11421, '', NULL), (11422, 1138, '', '', '', '0000-00-00', 11422, '', NULL), (11423, 1139, '', '', '', '0000-00-00', 11423, '', NULL), (11424, 1140, '', '', '', '0000-00-00', 11424, '', NULL), (11425, 1141, '', '', '', '0000-00-00', 11425, '', NULL), (11426, 1142, 'S/N 8-205', 'Humboldt CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 6K', '2013-08-06', 11426, '8/6/2013', NULL), (11427, 1143, '', '', '', '0000-00-00', 11427, '', NULL), (11428, 1144, '', '', '', '0000-00-00', 11428, '', NULL), (11429, 1145, '', '', '', '0000-00-00', 11429, '', NULL), (11430, 1146, '', ' ', '', '0000-00-00', 11430, '', NULL), (11431, 1147, 'S/N 00423', 'Karol Warner Direct Shear Model 2001 Pressure Transducer ', 'Range: 15 psi to 150 psi (D-5720)', '2011-08-10', 11431, '8/10/2011', NULL), (11432, 1148, '', '', '', '0000-00-00', 11432, '', NULL), (11433, 1149, '', '', '', '0000-00-00', 11433, '', NULL), (11434, 1150, '', '', '', '0000-00-00', 11434, '', NULL), (11435, 1151, '', '', '', '0000-00-00', 11435, '', NULL), (11436, 1152, '', '', '', '0000-00-00', 11436, '', NULL), (11437, 1153, '', 'Mail Certs to PO Box', '', '0000-00-00', 11437, '', NULL), (11438, 1154, '', '', '', '0000-00-00', 11438, '', NULL), (11439, 1155, '', '', '', '0000-00-00', 11439, '', NULL), (11440, 1156, '', '', '', '0000-00-00', 11440, '', NULL), (11441, 1157, '', '', '', '0000-00-00', 11441, '', NULL), (11442, 1158, 'S/N 62323', 'Aerospace Dial Indicator (D-6027)', 'Range: 1 inch ', '2013-08-21', 11442, '8/21/2013', NULL), (11443, 1159, 'S/N 111256649', 'Humbolt H- 4158-1 Dial Indicator (D6027)', 'Range 1 inch', '2013-08-21', 11443, '8/21/2013', NULL), (11444, 1160, '', '', '', '0000-00-00', 11444, '', NULL), (11445, 1161, '', '', '', '0000-00-00', 11445, '', NULL), (11446, 1162, '', '', '', '0000-00-00', 11446, '', NULL), (11447, 1163, '', '', '', '0000-00-00', 11447, '', NULL), (11448, 1164, '', '', '', '0000-00-00', 11448, '', NULL), (11449, 1165, '', '', '', '0000-00-00', 11449, '', NULL), (11450, 1166, '', '', '', '0000-00-00', 11450, '', NULL), (11451, 1167, '', '', '', '0000-00-00', 11451, '', NULL), (11452, 1168, '', '', '', '0000-00-00', 11452, '', NULL), (11453, 1169, '', '', '', '0000-00-00', 11453, '', NULL), (11454, 1170, '', '', '', '0000-00-00', 11454, '', NULL), (11455, 1171, '', '', '', '0000-00-00', 11455, '', NULL), (11456, 1172, '', '', '', '0000-00-00', 11456, '', NULL), (11457, 1173, '', '', '', '0000-00-00', 11457, '', NULL), (11458, 1174, '', '', '', '0000-00-00', 11458, '', NULL), (11459, 1175, '', '', '', '0000-00-00', 11459, '', NULL), (11460, 1176, '', '', '', '0000-00-00', 11460, '', NULL), (11461, 1177, '', '', '', '0000-00-00', 11461, '', NULL), (11462, 1178, '', '', '', '0000-00-00', 11462, '', NULL), (11463, 1179, '', '', '', '0000-00-00', 11463, '', NULL), (11464, 1180, '', '', '', '0000-00-00', 11464, '', NULL), (11465, 1181, '', '', '', '0000-00-00', 11465, '', NULL), (11466, 1182, '', '', '', '0000-00-00', 11466, '', NULL), (11467, 1183, '', '', '', '0000-00-00', 11467, '', NULL), (11468, 1184, '', '', '', '0000-00-00', 11468, '', NULL), (11469, 1185, '', '', '', '0000-00-00', 11469, '', NULL), (11470, 1186, '', '', '', '0000-00-00', 11470, '', NULL), (11471, 1187, '', '', '', '0000-00-00', 11471, '', NULL), (11472, 1188, '', '', '', '0000-00-00', 11472, '', NULL), (11473, 1189, '', '', '', '0000-00-00', 11473, '', NULL), (11474, 1190, '', '', '', '0000-00-00', 11474, '', NULL), (11475, 1191, 'S/N 23862', 'Soiltest AP-170A Proving Ring ', 'Cap: 10,000 lbs.', '1999-09-02', 11475, '9/2/1999', NULL), (11476, 1192, '', '', '', '0000-00-00', 11476, '', NULL), (11477, 1193, '', '', '', '0000-00-00', 11477, '', NULL), (11478, 1194, '', '', '', '0000-00-00', 11478, '', NULL), (11479, 1195, '', '', '', '0000-00-00', 11479, '', NULL), (11480, 1196, '', '', '', '0000-00-00', 11480, '', NULL), (11481, 1197, '', '', '', '0000-00-00', 11481, '', NULL), (11482, 1198, '', '', '', '0000-00-00', 11482, '', NULL), (11483, 1199, '', '', '', '0000-00-00', 11483, '', NULL), (11484, 1200, '', '', '', '0000-00-00', 11484, '', NULL), (11485, 1201, 'S/N 1075', 'BK Pore Press--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 11485, '8/30/2006', NULL), (11486, 1202, '', '', '', '0000-00-00', 11486, '', NULL), (11487, 1203, '', '', '', '0000-00-00', 11487, '', NULL), (11488, 1204, '', '', '', '0000-00-00', 11488, '', NULL), (11489, 1205, '', '', '', '0000-00-00', 11489, '', NULL), (11490, 1206, '', '', '', '0000-00-00', 11490, '', NULL), (11491, 1207, '', '', '', '0000-00-00', 11491, '', NULL), (11492, 1208, 'S/N 052468606', 'Humboldt Dial Indicator (OOS) (D-6027)', 'Range: 0.6\"', '2007-08-29', 11492, '8/29/2007', NULL), (11493, 1209, '', '', '', '0000-00-00', 11493, '', NULL), (11494, 1210, '', '', '', '0000-00-00', 11494, '', NULL), (11495, 1211, 'S/N 765142', '3D Instrument / Analog P/N 25544-24B14 0.25% Accuracy', 'Range: 50 PSI to 500 PSI', '2007-08-10', 11495, '8/10/2007', NULL), (11496, 1212, '', 'Bid includes the Public Works Department machine also', '', '0000-00-00', 11496, '', NULL), (11497, 1213, '', 'Bid includes the St. Kitts Masonry machines also', '', '0000-00-00', 11497, '', NULL), (11498, 1214, 'S/N A10131', 'Geotest Single Proving Ring (E-4 & Man Spec)', 'Cap: 10K', '2012-12-12', 11498, '12/12/2012', NULL), (11499, 1215, '', '', '', '0000-00-00', 11499, '', NULL), (11500, 1216, 'S/N 973516421', 'CDI J2-C100-2000 Dial Indicator (D-6027)', 'Range: 2 inches ', '2012-12-12', 11500, '12/12/2012', NULL), (11501, 1217, '', '', '', '0000-00-00', 11501, '', NULL), (11502, 1218, '', '', '', '0000-00-00', 11502, '', NULL), (11503, 1219, '', '', '', '0000-00-00', 11503, '', NULL), (11504, 1220, '', '', '', '0000-00-00', 11504, '', NULL), (11505, 1221, '', '', '', '0000-00-00', 11505, '', NULL), (11506, 1222, '', '', '', '0000-00-00', 11506, '', NULL), (11507, 1223, '', '', '', '0000-00-00', 11507, '', NULL), (11508, 1224, '', '', '', '0000-00-00', 11508, '', NULL), (11509, 1225, '', '', '', '0000-00-00', 11509, '', NULL), (11510, 1226, '', '', '', '0000-00-00', 11510, '', NULL), (11511, 1227, '', '', '', '0000-00-00', 11511, '', NULL), (11512, 1228, '', '', '', '0000-00-00', 11512, '', NULL), (11513, 1229, '', '', '', '0000-00-00', 11513, '', NULL), (11514, 1230, '', '', '', '0000-00-00', 11514, '', NULL), (11515, 1231, '', '', '', '0000-00-00', 11515, '', NULL), (11516, 1232, '', '', '', '0000-00-00', 11516, '', NULL), (11517, 1233, '', '', '', '0000-00-00', 11517, '', NULL), (11518, 1234, '', '', '', '0000-00-00', 11518, '', NULL), (11519, 1235, '', '', '', '0000-00-00', 11519, '', NULL), (11520, 1236, '', '', '', '0000-00-00', 11520, '', NULL), (11521, 1237, '', '', '', '0000-00-00', 11521, '', NULL), (11522, 1238, '', '', '', '0000-00-00', 11522, '', NULL), (11523, 1239, '', '', '', '0000-00-00', 11523, '', NULL), (11524, 1240, '', '', '', '0000-00-00', 11524, '', NULL), (11525, 1241, '', '', '', '0000-00-00', 11525, '', NULL), (11526, 1242, '', '', '', '0000-00-00', 11526, '', NULL), (11527, 1243, 'S/N 5170 (Angle)', 'Pine Instruments AFGB1A Gyratory Compactor(AASHTO&ManSpecs)', 'Cap: 600KPA 109.97mm 30RPM ', '2012-12-14', 11527, '12/14/2012', NULL), (11528, 1244, '', '', '', '0000-00-00', 11528, '', NULL), (11529, 1245, '', '', '', '0000-00-00', 11529, '', NULL), (11530, 1246, '', '', '', '0000-00-00', 11530, '', NULL), (11531, 1247, '', '', '', '0000-00-00', 11531, '', NULL), (11532, 1248, '', '', '', '0000-00-00', 11532, '', NULL), (11533, 1249, '', '', '', '0000-00-00', 11533, '', NULL), (11534, 1250, '', '', '', '0000-00-00', 11534, '', NULL), (11535, 1251, '', '', '', '0000-00-00', 11535, '', NULL), (11536, 1252, '', '', '', '0000-00-00', 11536, '', NULL), (11537, 1253, '', ' ', '', '0000-00-00', 11537, '', NULL), (11538, 1254, 'MG1178', 'Geo Jac LVDT mm Measurements Model HS10 Ch #4 ID #4 (D-6027)', 'Range: 0.4 Inches ', '2012-12-12', 11538, '12/12/2012', NULL), (11539, 1255, '', '**Needs a New Digital and Transducer for 2013**', '', '0000-00-00', 11539, '', NULL), (11540, 1256, '', '', '', '0000-00-00', 11540, '', NULL), (11541, 1257, '', '', '', '0000-00-00', 11541, '', NULL), (11542, 1258, '', 'Did not pay Cuerda for previous work, did not do ', '', '0000-00-00', 11542, '', NULL), (11543, 1259, '', '', '', '0000-00-00', 11543, '', NULL), (11544, 1260, '', '', '', '0000-00-00', 11544, '', NULL), (11545, 1261, '', '', '', '0000-00-00', 11545, '', NULL), (11546, 1262, '', '', '', '0000-00-00', 11546, '', NULL), (11547, 1263, '', '', '', '0000-00-00', 11547, '', NULL), (11548, 1264, '', '', '', '0000-00-00', 11548, '', NULL), (11549, 1265, '', '', '', '0000-00-00', 11549, '', NULL), (11550, 1266, '', '', '', '0000-00-00', 11550, '', NULL), (11551, 1267, '', '', '', '0000-00-00', 11551, '', NULL), (11552, 1268, '', '', '', '0000-00-00', 11552, '', NULL), (11553, 1269, '', '', '', '0000-00-00', 11553, '', NULL), (11554, 1270, '', '', '', '0000-00-00', 11554, '', NULL), (11555, 1271, '', '', '', '0000-00-00', 11555, '', NULL), (11556, 1272, '', '', '', '0000-00-00', 11556, '', NULL), (11557, 1273, '', '', '', '0000-00-00', 11557, '', NULL), (11558, 1274, '', '', '', '0000-00-00', 11558, '', NULL), (11559, 1275, '', '', '', '0000-00-00', 11559, '', NULL), (11560, 1276, 'S/N 331', 'Humbolt Marshall Single Proving Ring (E-4 & ManSpec)', 'Range: 6K', '2013-02-06', 11560, '2/6/2013', NULL), (11561, 1277, '', '', '', '0000-00-00', 11561, '', NULL), (11562, 1278, 'S/N 1153', 'Durham Geo Pressure Transducer (D-5720)', 'Range: 150 psi', '2012-02-07', 11562, '2/7/2012', NULL), (11563, 1279, 'S/N 323328', 'Powerteam PE554 Prestress Jack (E-4 & PCI)', 'Range: 4K (580 psi) / 35K (5,300 psi)', '2013-02-07', 11563, '2/7/2013', NULL), (11564, 1280, '', '', '', '0000-00-00', 11564, '', NULL), (11565, 1281, '', '', '', '0000-00-00', 11565, '', NULL), (11566, 1282, '', '', '', '0000-00-00', 11566, '', NULL), (11567, 1283, '', '', '', '0000-00-00', 11567, '', NULL), (11568, 1284, 'S/N 1275071287291', 'Barnstead Model F85930 Scale (E-898)', 'Range: 10,000 grams', '2013-02-06', 11568, '2/6/2013', NULL), (11569, 1285, '', '', '', '0000-00-00', 11569, '', NULL), (11570, 1286, '', '', '', '0000-00-00', 11570, '', NULL), (11571, 1287, '', '', '', '0000-00-00', 11571, '', NULL), (11572, 1288, 'S/N 000170', 'Vector PT-1000L Tensiometer (E-4 & 2%)', 'Range: 1K', '2013-02-12', 11572, '2/12/2013', NULL), (11573, 1289, 'S/N 00480', 'Durham Geo S-450 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 22 TSF', '2012-02-16', 11573, '2/16/2012', NULL), (11574, 1290, '', '', '', '0000-00-00', 11574, '', NULL), (11575, 1291, '', '', '', '0000-00-00', 11575, '', NULL), (11576, 1292, '', '', '', '0000-00-00', 11576, '', NULL), (11577, 1293, '', '', '', '0000-00-00', 11577, '', NULL), (11578, 1294, 'S/N 980300 (ID# 0208)', 'Karol Warner Direct Shear Dial Indicator-Vertical Displacement', 'Range: 0.6 inches (D-6027)', '2013-02-12', 11578, '2/12/2013', NULL), (11579, 1295, '', '', '', '0000-00-00', 11579, '', NULL), (11580, 1296, '', '', '', '0000-00-00', 11580, '', NULL), (11581, 1297, '', '', '', '0000-00-00', 11581, '', NULL), (11582, 1298, '', '', '', '0000-00-00', 11582, '', NULL), (11583, 1299, '', '', '', '0000-00-00', 11583, '', NULL), (11584, 1300, '', '', '', '0000-00-00', 11584, '', NULL), (11585, 1301, '', '', '', '0000-00-00', 11585, '', NULL), (11586, 1302, '', '', '', '0000-00-00', 11586, '', NULL), (11587, 1303, 'S/N AE40115947', 'Adam CPWPlus75 Scale (E-898)', 'Range: 165 lbs ', '2013-02-20', 11587, '2/20/2013', NULL), (11588, 1304, '', '', '', '0000-00-00', 11588, '', NULL), (11589, 1305, '', ' w/ Channel #2 Deflectometer (E-2309)', 'Range: 2 Inches ', '2013-02-19', 11589, '2/19/2013', NULL), (11590, 1306, '', '', '', '0000-00-00', 11590, '', NULL), (11591, 1307, '', '', '', '0000-00-00', 11591, '', NULL), (11592, 1308, '', '', '', '0000-00-00', 11592, '', NULL), (11593, 1309, '', '', '', '0000-00-00', 11593, '', NULL), (11594, 1310, '', '', '', '0000-00-00', 11594, '', NULL), (11595, 1311, '', '', '', '0000-00-00', 11595, '', NULL), (11596, 1312, '', '', '', '0000-00-00', 11596, '', NULL), (11597, 1313, '', '', '', '0000-00-00', 11597, '', NULL), (11598, 1314, '', '', '', '0000-00-00', 11598, '', NULL), (11599, 1315, 'S/N 0991276', 'ELE Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 11599, '2/16/2011', NULL), (11600, 1316, '', '', '', '0000-00-00', 11600, '', NULL), (11601, 1317, '', '', '', '0000-00-00', 11601, '', NULL), (11602, 1318, '', '', '', '0000-00-00', 11602, '', NULL), (11603, 1319, '', '', '', '0000-00-00', 11603, '', NULL), (11604, 1320, '', '', '', '0000-00-00', 11604, '', NULL), (11605, 1321, '', '', '', '0000-00-00', 11605, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (11606, 1322, 'S/N 565', 'Geotest Double Proving Ring (E-4)', 'Range 1.5K', '1998-02-17', 11606, '2/17/1998', NULL), (11607, 1323, '', '', '', '0000-00-00', 11607, '', NULL), (11608, 1324, '', '', '', '0000-00-00', 11608, '', NULL), (11609, 1325, 'S/N 9878', 'Tinius Olsen Super L -Model AD Redcorder (Force) (E4-02)', 'Range 2.4/12/60/120K ID#25-REC01', '2005-03-30', 11609, '3/30/2005', NULL), (11610, 1326, '', '', '', '0000-00-00', 11610, '', NULL), (11611, 1327, '', '', '', '0000-00-00', 11611, '', NULL), (11612, 1328, '', '', '', '0000-00-00', 11612, '', NULL), (11613, 1329, '', '', '', '0000-00-00', 11613, '', NULL), (11614, 1330, '', '', '', '0000-00-00', 11614, '', NULL), (11615, 1331, '', '', '', '0000-00-00', 11615, '', NULL), (11616, 1332, '', '', '', '0000-00-00', 11616, '', NULL), (11617, 1333, '', '', '', '0000-00-00', 11617, '', NULL), (11618, 1334, '', '', '', '0000-00-00', 11618, '', NULL), (11619, 1335, '', '', '', '0000-00-00', 11619, '', NULL), (11620, 1336, '', '', '', '0000-00-00', 11620, '', NULL), (11621, 1337, '', '', '', '0000-00-00', 11621, '', NULL), (11622, 1338, '', '', '', '0000-00-00', 11622, '', NULL), (11623, 1339, '', '', '', '0000-00-00', 11623, '', NULL), (11624, 1340, '', '', '', '0000-00-00', 11624, '', NULL), (11625, 1341, '', '', '', '0000-00-00', 11625, '', NULL), (11626, 1342, '', '', '', '0000-00-00', 11626, '', NULL), (11627, 1343, '', '', '', '0000-00-00', 11627, '', NULL), (11628, 1344, '', '', '', '0000-00-00', 11628, '', NULL), (11629, 1345, '', '', '', '0000-00-00', 11629, '', NULL), (11630, 1346, '', '', '', '0000-00-00', 11630, '', NULL), (11631, 1347, '', '', '', '0000-00-00', 11631, '', NULL), (11632, 1348, '', '', '', '0000-00-00', 11632, '', NULL), (11633, 1349, '', '', '', '0000-00-00', 11633, '', NULL), (11634, 1350, '', '', '', '0000-00-00', 11634, '', NULL), (11635, 1351, '', '', '', '0000-00-00', 11635, '', NULL), (11636, 1352, '', '', '', '0000-00-00', 11636, '', NULL), (11637, 1353, '', '', '', '0000-00-00', 11637, '', NULL), (11638, 1354, '', '', '', '0000-00-00', 11638, '', NULL), (11639, 1355, '', '', '', '0000-00-00', 11639, '', NULL), (11640, 1356, '', '', '', '0000-00-00', 11640, '', NULL), (11641, 1357, '', '', '', '0000-00-00', 11641, '', NULL), (11642, 1358, '', '', '', '0000-00-00', 11642, '', NULL), (11643, 1359, '', '', '', '0000-00-00', 11643, '', NULL), (11644, 1360, 'S/N 157098', 'Five (5) Displacement Channels on Tinius Olsen--Model 5000', ' ', '2006-02-27', 11644, '2/27/2006', NULL), (11645, 1361, '', '', '', '0000-00-00', 11645, '', NULL), (11646, 1362, '', '', '', '0000-00-00', 11646, '', NULL), (11647, 1363, '', '', '', '0000-00-00', 11647, '', NULL), (11648, 1364, '', '', '', '0000-00-00', 11648, '', NULL), (11649, 1365, '', '', '', '0000-00-00', 11649, '', NULL), (11650, 1366, 'S/N A81547', ' w/ Displacement (E-2309)', 'Range: 5 inches ', '2009-02-17', 11650, '2/17/2009', NULL), (11651, 1367, '', '', '', '0000-00-00', 11651, '', NULL), (11652, 1368, '', '', '', '0000-00-00', 11652, '', NULL), (11653, 1369, '', '', '', '0000-00-00', 11653, '', NULL), (11654, 1370, '', '', '', '0000-00-00', 11654, '', NULL), (11655, 1371, '', '', '', '0000-00-00', 11655, '', NULL), (11656, 1372, '', '', '', '0000-00-00', 11656, '', NULL), (11657, 1373, '', '', '', '0000-00-00', 11657, '', NULL), (11658, 1374, '', '', '', '0000-00-00', 11658, '', NULL), (11659, 1375, '', '', '', '0000-00-00', 11659, '', NULL), (11660, 1376, '', '', '', '0000-00-00', 11660, '', NULL), (11661, 1377, 'S/N S-2102', 'Karol Warner Pressure Gauge (D-5720)', 'Range: 100 psi', '2006-02-13', 11661, '2/13/2006', NULL), (11662, 1378, '', '', '', '0000-00-00', 11662, '', NULL), (11663, 1379, '', '', '', '0000-00-00', 11663, '', NULL), (11664, 1380, '', '', '', '0000-00-00', 11664, '', NULL), (11665, 1381, '', '', '', '0000-00-00', 11665, '', NULL), (11666, 1382, '', '', '', '0000-00-00', 11666, '', NULL), (11667, 1383, '', '', '', '0000-00-00', 11667, '', NULL), (11668, 1384, '', '', '', '0000-00-00', 11668, '', NULL), (11669, 1385, '', '', '', '0000-00-00', 11669, '', NULL), (11670, 1386, 'S/N 1512208/1', 'Eilon Engineering RON 2501 S-15 Load Cell (ManSp & 0.1% FS)', 'Cap: 15 Tons (30K)', '2005-07-15', 11670, '7/15/2005', NULL), (11671, 1387, 'S/N 161266', 'Eilon Engineering RON 2000 Load Cell (ManSp & 0.1% FS)', 'Range: 1 Ton', '2004-10-29', 11671, '10/29/2004', NULL), (11672, 1388, '', '', '', '0000-00-00', 11672, '', NULL), (11673, 1389, 'S/N 185', ' w/ Test Spring ', '', '2012-01-24', 11673, '1/24/2012', NULL), (11674, 1390, 'S/N 510', ' w/ Deflection (Calibrate in Ascending & Decending)', 'Range:1/8 TSF to 16 TSF(Aashto T-236)', '2009-08-06', 11674, '8/6/2009', NULL), (11675, 1391, '', '', '', '0000-00-00', 11675, '', NULL), (11676, 1392, 'S/N 79833 / NC #2', 'HCS Model HCS-LC-2502 Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2012-07-18', 11676, '7/18/2012', NULL), (11677, 1393, 'S/N 13148', ' w/LVDT - Horizontal Displacement HM-2310.10(D-6027)', 'Range: 0.1 inch to 1 inch', '2013-01-08', 11677, '1/8/2013', NULL), (11678, 1394, '', '', '', '0000-00-00', 11678, '', NULL), (11679, 1395, '', '', '', '0000-00-00', 11679, '', NULL), (11680, 1396, '', '', '', '0000-00-00', 11680, '', NULL), (11681, 1397, '', '', '', '0000-00-00', 11681, '', NULL), (11682, 1398, '', '', '', '0000-00-00', 11682, '', NULL), (11683, 1399, '', '', '', '0000-00-00', 11683, '', NULL), (11684, 1400, '', '', '', '0000-00-00', 11684, '', NULL), (11685, 1401, 'S/N 54646', 'Schmidt N-22 Swiss Hammer (C-805)', 'Range: 78 to 82', '2013-01-16', 11685, '1/16/2013', NULL), (11686, 1402, '', '', '', '0000-00-00', 11686, '', NULL), (11687, 1403, 'S/N 4673', ' w/United EZ 2-1 Extensometer - Channel #3 ', 'Range: 0.02 in/in (1\" GL) (E-83)', '2013-01-21', 11687, '1/21/2013', NULL), (11688, 1404, 'S/N H3806425', 'AND FG-60K Scale ID# Q1488 (C-898)', 'Range: 150 lbs ', '2013-01-21', 11688, '1/21/2013', NULL), (11689, 1405, 'S/N 3491 (ID# Q-1981)', 'Ohaus Cent-O-Gram Scale (E-898)', 'Range: 1 Grams to 311 Grams ', '2013-01-22', 11689, '1/22/2013', NULL), (11690, 1406, '', '', '', '0000-00-00', 11690, '', NULL), (11691, 1407, '', '', '', '0000-00-00', 11691, '', NULL), (11692, 1408, 'S/N 5033730/16', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50,000 kg', '2006-09-17', 11692, '9/17/2006', NULL), (11693, 1409, '', '', '', '0000-00-00', 11693, '', NULL), (11694, 1410, '', '', '', '0000-00-00', 11694, '', NULL), (11695, 1411, '', '', '', '0000-00-00', 11695, '', NULL), (11696, 1412, '', '', '', '0000-00-00', 11696, '', NULL), (11697, 1413, '', '', '', '0000-00-00', 11697, '', NULL), (11698, 1414, '', '', '', '0000-00-00', 11698, '', NULL), (11699, 1415, '', '', '', '0000-00-00', 11699, '', NULL), (11700, 1416, '', '', '', '0000-00-00', 11700, '', NULL), (11701, 1417, '', '', '', '0000-00-00', 11701, '', NULL), (11702, 1418, '', '', '', '0000-00-00', 11702, '', NULL), (11703, 1419, '', '', '', '0000-00-00', 11703, '', NULL), (11704, 1420, '', '', '', '0000-00-00', 11704, '', NULL), (11705, 1421, '', '', '', '0000-00-00', 11705, '', NULL), (11706, 1422, '', '', '', '0000-00-00', 11706, '', NULL), (11707, 1423, 'S/N 134975', 'Tinius Olsen Recorder Model 51 (E83-00)', '3 Ranges .15/.075/.0375', '2002-01-31', 11707, '1/31/2002', NULL), (11708, 1424, '', '', '', '0000-00-00', 11708, '', NULL), (11709, 1425, '', '', '', '0000-00-00', 11709, '', NULL), (11710, 1426, '', '', '', '0000-00-00', 11710, '', NULL), (11711, 1427, '', '', '', '0000-00-00', 11711, '', NULL), (11712, 1428, '', '', '', '0000-00-00', 11712, '', NULL), (11713, 1429, '', '', '', '0000-00-00', 11713, '', NULL), (11714, 1430, '', '', '', '0000-00-00', 11714, '', NULL), (11715, 1431, '', '', '', '0000-00-00', 11715, '', NULL), (11716, 1432, '', '', '', '0000-00-00', 11716, '', NULL), (11717, 1433, 'S/N 69122', 'CSI Prestress-Model PJ-100-1JackC(E-4 & PCI) OUT OF SERVICE', 'Range: 5K to 35K (2 gauges)', '2004-11-06', 11717, '11/6/2004', NULL), (11718, 1434, 'S/N 870820', 'Strainsense Load Cell E (E-4) OUT OF SERVICE', 'Range: 5K/50K', '2004-02-02', 11718, '2/2/2004', NULL), (11719, 1435, '', '', '', '0000-00-00', 11719, '', NULL), (11720, 1436, '', '', '', '0000-00-00', 11720, '', NULL), (11721, 1437, '', '', '', '0000-00-00', 11721, '', NULL), (11722, 1438, '', '', '', '0000-00-00', 11722, '', NULL), (11723, 1439, '', '', '', '0000-00-00', 11723, '', NULL), (11724, 1440, '', '', '', '0000-00-00', 11724, '', NULL), (11725, 1441, '', '', '', '0000-00-00', 11725, '', NULL), (11726, 1442, '', '', '', '0000-00-00', 11726, '', NULL), (11727, 1443, '', '', '', '0000-00-00', 11727, '', NULL), (11728, 1444, 'S/N 4103', 'Brainard-Kilman LVDT Model E-311 (Channel #26)', 'Range: 1.00 Inches (D6027-96el)', '2000-01-18', 11728, '1/18/2000', NULL), (11729, 1445, '', '', '', '0000-00-00', 11729, '', NULL), (11730, 1446, 'S/N 19792', 'Forney Triaxial Pore Pressure Transducer (D-5720)', 'Range: 690 kpa', '2005-02-21', 11730, '2/21/2005', NULL), (11731, 1447, 'S/N 050300000018', 'ELE Mdl. 78-0900 Double Proving Ring (E-4 & Manspec)', 'Range: 500 lbs', '2009-01-21', 11731, '1/21/2009', NULL), (11732, 1448, '', '', '', '0000-00-00', 11732, '', NULL), (11733, 1449, '', '', '', '0000-00-00', 11733, '', NULL), (11734, 1450, '', '', '', '0000-00-00', 11734, '', NULL), (11735, 1451, '', '', '', '0000-00-00', 11735, '', NULL), (11736, 1452, '', '', '', '0000-00-00', 11736, '', NULL), (11737, 1453, '', '', '', '0000-00-00', 11737, '', NULL), (11738, 1454, 'S/N 2970575', ' w/Load Cell', '', '0000-00-00', 11738, '', NULL), (11739, 1455, 'S/N 56', 'Extra Gauge Simms S/N 8 (OUT OF SERVICE) (E-4 & PCI)', 'Range: 40K Gauge #56', '2005-11-18', 11739, '11/18/2005', NULL), (11740, 1456, '', '', '', '0000-00-00', 11740, '', NULL), (11741, 1457, '', '', '', '0000-00-00', 11741, '', NULL), (11742, 1458, '', '', '', '0000-00-00', 11742, '', NULL), (11743, 1459, '', '', '', '0000-00-00', 11743, '', NULL), (11744, 1460, '', '', '', '0000-00-00', 11744, '', NULL), (11745, 1461, 'S/N 1155-11-11432', 'ELE Proving Ring (E4)', 'Range: 450 lbs', '2005-02-21', 11745, '2/21/2005', NULL), (11746, 1462, '', '', '', '0000-00-00', 11746, '', NULL), (11747, 1463, '', '', '', '0000-00-00', 11747, '', NULL), (11748, 1464, '', '', '', '0000-00-00', 11748, '', NULL), (11749, 1465, '', '', '', '0000-00-00', 11749, '', NULL), (11750, 1466, '', '', '', '0000-00-00', 11750, '', NULL), (11751, 1467, '', '', '', '0000-00-00', 11751, '', NULL), (11752, 1468, '', '', '', '0000-00-00', 11752, '', NULL), (11753, 1469, '', '', '', '0000-00-00', 11753, '', NULL), (11754, 1470, '', '', '', '0000-00-00', 11754, '', NULL), (11755, 1471, '', '', '', '0000-00-00', 11755, '', NULL), (11756, 1472, '', '', '', '0000-00-00', 11756, '', NULL), (11757, 1473, 'S/N 1004', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI', '2007-07-24', 11757, '7/24/2007', NULL), (11758, 1474, '', '', '', '0000-00-00', 11758, '', NULL), (11759, 1475, '', '', '', '0000-00-00', 11759, '', NULL), (11760, 1476, '', '', '', '0000-00-00', 11760, '', NULL), (11761, 1477, 'S/N 22691T', 'Dillon LW Compression Machine with Dynamometer ', 'Range 6K (GONE)', '2001-01-31', 11761, '1/31/2001', NULL), (11762, 1478, '', '', '', '0000-00-00', 11762, '', NULL), (11763, 1479, '', '', '', '0000-00-00', 11763, '', NULL), (11764, 1480, '', '', '', '0000-00-00', 11764, '', NULL), (11765, 1481, '', '', '', '0000-00-00', 11765, '', NULL), (11766, 1482, '', '', '', '0000-00-00', 11766, '', NULL), (11767, 1483, '', '', '', '0000-00-00', 11767, '', NULL), (11768, 1484, '', '', '', '0000-00-00', 11768, '', NULL), (11769, 1485, '', '', '', '0000-00-00', 11769, '', NULL), (11770, 1486, 'S/N 11772', 'Swiss Hammer Model N2-5 (C-805) (SOLD)', '', '2005-07-20', 11770, '7/20/2005', NULL), (11771, 1487, '', '', '', '0000-00-00', 11771, '', NULL), (11772, 1488, '', '', '', '0000-00-00', 11772, '', NULL), (11773, 1489, '', '', '', '0000-00-00', 11773, '', NULL), (11774, 1490, '', '', '', '0000-00-00', 11774, '', NULL), (11775, 1491, '', '', '', '0000-00-00', 11775, '', NULL), (11776, 1492, '', '', '', '0000-00-00', 11776, '', NULL), (11777, 1493, '', '', '', '0000-00-00', 11777, '', NULL), (11778, 1494, '', '', '', '0000-00-00', 11778, '', NULL), (11779, 1495, '', '', '', '0000-00-00', 11779, '', NULL), (11780, 1496, '', '', '', '0000-00-00', 11780, '', NULL), (11781, 1497, '', '', '', '0000-00-00', 11781, '', NULL), (11782, 1498, '', '', '', '0000-00-00', 11782, '', NULL), (11783, 1499, '', '', '', '0000-00-00', 11783, '', NULL), (11784, 1500, '', '', '', '0000-00-00', 11784, '', NULL), (11785, 1501, 'S/N F13127', 'Hamilton Mdl P-4500 Spare Gauge #4 (E-4&PCI)', 'Range: 3.5K to 35K', '2007-07-09', 11785, '7/9/2007', NULL), (11786, 1502, '', '', '', '0000-00-00', 11786, '', NULL), (11787, 1503, '', '', '', '0000-00-00', 11787, '', NULL), (11788, 1504, '', '', '', '0000-00-00', 11788, '', NULL), (11789, 1505, '', '', '', '0000-00-00', 11789, '', NULL), (11790, 1506, '', '', '', '0000-00-00', 11790, '', NULL), (11791, 1507, '', '', '', '0000-00-00', 11791, '', NULL), (11792, 1508, '', '', '', '0000-00-00', 11792, '', NULL), (11793, 1509, '', '', '', '0000-00-00', 11793, '', NULL), (11794, 1510, '', '', '', '0000-00-00', 11794, '', NULL), (11795, 1511, '', '', '', '0000-00-00', 11795, '', NULL), (11796, 1512, '', '', '', '0000-00-00', 11796, '', NULL), (11797, 1513, '', '', '', '0000-00-00', 11797, '', NULL), (11798, 1514, '', '', '', '0000-00-00', 11798, '', NULL), (11799, 1515, '', '', '', '0000-00-00', 11799, '', NULL), (11800, 1516, '', 'When calling Dorian\'s home, let it ring for awhile his mother', '', '0000-00-00', 11800, '', NULL), (11801, 1517, '', '', '', '0000-00-00', 11801, '', NULL), (11802, 1518, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 11802, '', NULL), (11803, 1519, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 11803, '', NULL), (11804, 1520, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 11804, '', NULL), (11805, 1521, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 11805, '', NULL), (11806, 1522, '', '', '', '0000-00-00', 11806, '', NULL), (11807, 1523, '', '', '', '0000-00-00', 11807, '', NULL), (11808, 1524, '', '', '', '0000-00-00', 11808, '', NULL), (11809, 1525, '', '', '', '0000-00-00', 11809, '', NULL), (11810, 1526, '', '', '', '0000-00-00', 11810, '', NULL), (11811, 1527, '', '', '', '0000-00-00', 11811, '', NULL), (11812, 1528, '', '', '', '0000-00-00', 11812, '', NULL), (11813, 1529, '', '', '', '0000-00-00', 11813, '', NULL), (11814, 1530, '', '', '', '0000-00-00', 11814, '', NULL), (11815, 1531, '', '', '', '0000-00-00', 11815, '', NULL), (11816, 1532, '', '', '', '0000-00-00', 11816, '', NULL), (11817, 1533, '', '', '', '0000-00-00', 11817, '', NULL), (11818, 1534, 'S/N 150330/579', 'Karol Warner Direct Shear Single Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs', '2013-06-05', 11818, '6/5/2013', NULL), (11819, 1535, 'S/N 001395756', 'Humboldt BG2110-0-16 Dial Indicator (D-6027)', 'Range: 1 inch ', '2010-06-08', 11819, '6/8/2010', NULL), (11820, 1536, 'S/N LP-148', 'Geotac Linear LVDT (D-6027)', 'Range: 3 inches', '2013-06-04', 11820, '6/4/2013', NULL), (11821, 1537, '', '', '', '0000-00-00', 11821, '', NULL), (11822, 1538, '', '', '', '0000-00-00', 11822, '', NULL), (11823, 1539, '', '', '', '0000-00-00', 11823, '', NULL), (11824, 1540, 'S/N 042WBY035', 'Acculab V1-10Kg Scale (E-898)', 'Range: 10,000 Grams ', '2013-06-04', 11824, '6/4/2013', NULL), (11825, 1541, 'S/N H3804454', 'AND FG 60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 11825, '6/4/2013', NULL), (11826, 1542, '', '', '', '0000-00-00', 11826, '', NULL), (11827, 1543, '', '', '', '0000-00-00', 11827, '', NULL), (11828, 1544, '', '', '', '0000-00-00', 11828, '', NULL), (11829, 1545, '', '', '', '0000-00-00', 11829, '', NULL), (11830, 1546, '', 'Send Certs to Billing address', '', '0000-00-00', 11830, '', NULL), (11831, 1547, '', '', '', '0000-00-00', 11831, '', NULL), (11832, 1548, 'S/N 5915', 'Proceq N-34 Hammer (C-805)', 'Range: 78 to 82', '2013-06-11', 11832, '6/11/2013', NULL), (11833, 1549, '', '', '', '0000-00-00', 11833, '', NULL), (11834, 1550, '', '', '', '0000-00-00', 11834, '', NULL), (11835, 1551, '', '', '', '0000-00-00', 11835, '', NULL), (11836, 1552, '', '', '', '0000-00-00', 11836, '', NULL), (11837, 1553, '', '', '', '0000-00-00', 11837, '', NULL), (11838, 1554, '', '', '', '0000-00-00', 11838, '', NULL), (11839, 1555, '', '', '', '0000-00-00', 11839, '', NULL), (11840, 1556, '', ' ', '', '0000-00-00', 11840, '', NULL), (11841, 1557, '', '', '', '0000-00-00', 11841, '', NULL), (11842, 1558, '', '', '', '0000-00-00', 11842, '', NULL), (11843, 1559, '', '', '', '0000-00-00', 11843, '', NULL), (11844, 1560, '', '', '', '0000-00-00', 11844, '', NULL), (11845, 1561, 'S/N 290', 'Durham Geo E210 Load Cell w/ Dig. S/N 1108 - Channel #3 (E-4)', 'Range: 50 lbs to 500 lb ', '2013-06-19', 11845, '6/19/2013', NULL), (11846, 1562, 'S/N 213353', 'Central DTC-400K Load Cell w/ AHM Digital S/N 1000341740 (E-4)', 'Range: 400K Channel #1 ', '2013-06-19', 11846, '6/19/2013', NULL), (11847, 1563, 'S/N 116221', 'Proceq Mdl. N-34 Schmidt Hammer (C-805)', 'Range: 78 to 82', '2010-06-22', 11847, '6/22/2010', NULL), (11848, 1564, 'S/N 1001', 'Starrett Mdl. 656-617 Dial Indicator (D-6027)', 'Range: 0.4 inches', '2008-06-25', 11848, '6/25/2008', NULL), (11849, 1565, '', '', '', '0000-00-00', 11849, '', NULL), (11850, 1566, '', '', '', '0000-00-00', 11850, '', NULL), (11851, 1567, '', '', '', '0000-00-00', 11851, '', NULL), (11852, 1568, '', '', '', '0000-00-00', 11852, '', NULL), (11853, 1569, '', '', '', '0000-00-00', 11853, '', NULL), (11854, 1570, '', '', '', '0000-00-00', 11854, '', NULL), (11855, 1571, '', '', '', '0000-00-00', 11855, '', NULL), (11856, 1572, '', '', '', '0000-00-00', 11856, '', NULL), (11857, 1573, '', '', '', '0000-00-00', 11857, '', NULL), (11858, 1574, '', '', '', '0000-00-00', 11858, '', NULL), (11859, 1575, '', '', '', '0000-00-00', 11859, '', NULL), (11860, 1576, 'S/N 3', 'Ametek Force Gauge - in Tension Bed', 'Cap: 150#', '0000-00-00', 11860, '', NULL), (11861, 1577, '', '', '', '0000-00-00', 11861, '', NULL), (11862, 1578, '', '', '', '0000-00-00', 11862, '', NULL), (11863, 1579, '', '', '', '0000-00-00', 11863, '', NULL), (11864, 1580, '', '', '', '0000-00-00', 11864, '', NULL), (11865, 1581, '', '', '', '0000-00-00', 11865, '', NULL), (11866, 1582, '', '', '', '0000-00-00', 11866, '', NULL), (11867, 1583, '', '', '', '0000-00-00', 11867, '', NULL), (11868, 1584, '', '', '', '0000-00-00', 11868, '', NULL), (11869, 1585, '', '', '', '0000-00-00', 11869, '', NULL), (11870, 1586, '', '', '', '0000-00-00', 11870, '', NULL), (11871, 1587, '', '', '', '0000-00-00', 11871, '', NULL), (11872, 1588, '', '', '', '0000-00-00', 11872, '', NULL), (11873, 1589, '', '', '', '0000-00-00', 11873, '', NULL), (11874, 1590, '', '', '', '0000-00-00', 11874, '', NULL), (11875, 1591, '', '', '', '0000-00-00', 11875, '', NULL), (11876, 1592, '', '', '', '0000-00-00', 11876, '', NULL), (11877, 1593, '', '', '', '0000-00-00', 11877, '', NULL), (11878, 1594, '', '', '', '0000-00-00', 11878, '', NULL), (11879, 1595, '', '', '', '0000-00-00', 11879, '', NULL), (11880, 1596, '', '', '', '0000-00-00', 11880, '', NULL), (11881, 1597, '', '', '', '0000-00-00', 11881, '', NULL), (11882, 1598, '', '', '', '0000-00-00', 11882, '', NULL), (11883, 1599, '', '', '', '0000-00-00', 11883, '', NULL), (11884, 1600, '', '', '', '0000-00-00', 11884, '', NULL), (11885, 1601, 'S/N 3245', 'Wykeham-Farrance Single Proving Ring', 'Cap 5000#', '2000-06-15', 11885, '6/15/2000', NULL), (11886, 1602, '', 'Has work in 30 states, if we branch out to more states, let him know', 'so we can calibrate his equipment', '0000-00-00', 11886, '', NULL), (11887, 1603, '', '', '', '0000-00-00', 11887, '', NULL), (11888, 1604, '', '', '', '0000-00-00', 11888, '', NULL), (11889, 1605, 'S/N 1015', 'Satec Model 60 WHVL Universal Machine (E-4)', 'Range 600/2400/12000/60000 lbs.', '1998-07-09', 11889, '7/9/1998', NULL), (11890, 1606, '', '', '', '0000-00-00', 11890, '', NULL), (11891, 1607, '', '', '', '0000-00-00', 11891, '', NULL), (11892, 1608, '', '', '', '0000-00-00', 11892, '', NULL), (11893, 1609, '', '', '', '0000-00-00', 11893, '', NULL), (11894, 1610, '', '', '', '0000-00-00', 11894, '', NULL), (11895, 1611, '', '', '', '0000-00-00', 11895, '', NULL), (11896, 1612, '', '', '', '0000-00-00', 11896, '', NULL), (11897, 1613, '', '', '', '0000-00-00', 11897, '', NULL), (11898, 1614, '', '', '', '0000-00-00', 11898, '', NULL), (11899, 1615, '', '', '', '0000-00-00', 11899, '', NULL), (11900, 1616, '', '', '', '0000-00-00', 11900, '', NULL), (11901, 1617, '', '', '', '0000-00-00', 11901, '', NULL), (11902, 1618, 'S/N 40241/Gauge', 'Tinius Olsen Pendulum w/Gauge (E-4) (OOS)', 'Range: 6K to 120K', '2006-01-19', 11902, '1/19/2006', NULL), (11903, 1619, '', '', '', '0000-00-00', 11903, '', NULL), (11904, 1620, '', '', '', '0000-00-00', 11904, '', NULL), (11905, 1621, '', '', '', '0000-00-00', 11905, '', NULL), (11906, 1622, '', '', '', '0000-00-00', 11906, '', NULL), (11907, 1623, '', '', '', '0000-00-00', 11907, '', NULL), (11908, 1624, '', '', '', '0000-00-00', 11908, '', NULL), (11909, 1625, '', '', '', '0000-00-00', 11909, '', NULL), (11910, 1626, 'S/N B39625', 'Chatillon DFIS 10 Digital Force Gauge (OOS) (E-4 & 2%)', 'Range: ', NULL, 11910, 'New', NULL), (11911, 1627, '', '', '', '0000-00-00', 11911, '', NULL), (11912, 1628, '', '', '', '0000-00-00', 11912, '', NULL), (11913, 1629, '', '', '', '0000-00-00', 11913, '', NULL), (11914, 1630, 'S/N 11730', 'Soiltest Type N Schmidt Hammer (C-805)', 'Range: 78 to 82', '2008-06-03', 11914, '6/3/2008', NULL), (11915, 1631, '', '', '', '0000-00-00', 11915, '', NULL), (11916, 1632, '', '', '', '0000-00-00', 11916, '', NULL), (11917, 1633, '', '', '', '0000-00-00', 11917, '', NULL), (11918, 1634, '', 'Certifications in this Company name & address:', '', '0000-00-00', 11918, '', NULL), (11919, 1635, '', '', '', '0000-00-00', 11919, '', NULL), (11920, 1636, '', '', '', '0000-00-00', 11920, '', NULL), (11921, 1637, '', '', '', '0000-00-00', 11921, '', NULL), (11922, 1638, '', '', '', '0000-00-00', 11922, '', NULL), (11923, 1639, '', '', '', '0000-00-00', 11923, '', NULL), (11924, 1640, 'S/N 41089', 'ELE Mechanical Compactor Model EL24-9090', 'Range 10 lb.', '1998-09-16', 11924, '9/16/1998', NULL), (11925, 1641, '', '', '', '0000-00-00', 11925, '', NULL), (11926, 1642, 'S/N 650122', 'Sensotec Load Cell 42/8914-01 (E-4)', 'Max Cap: 10,000 lbs', '2004-06-11', 11926, '6/11/2004', NULL), (11927, 1643, '', '', '', '0000-00-00', 11927, '', NULL), (11928, 1644, '', '', '', '0000-00-00', 11928, '', NULL), (11929, 1645, '', '', '', '0000-00-00', 11929, '', NULL), (11930, 1646, '', 'Tinius Olsen gauge starting to go bad', '', '0000-00-00', 11930, '', NULL), (11931, 1647, '', '', '', '0000-00-00', 11931, '', NULL), (11932, 1648, '', '', '', '0000-00-00', 11932, '', NULL), (11933, 1649, '', '', '', '0000-00-00', 11933, '', NULL), (11934, 1650, 'S/N 1306 (Angle)', 'Pine Instruments Mdl. AFG1A Gyratory Compactor (Man Specs)', 'Range: 1,124.1 lbs / 2,360.5 lbs ', '2007-12-03', 11934, '12/3/2007', NULL), (11935, 1651, '', '', '', '0000-00-00', 11935, '', NULL), (11936, 1652, 'S/N 436 (Plant #1)', 'PineInstrumentGyratoryCompactorAFGC125X(ManSpecs&AASHTO)', 'Cap: 3.5KN/14.5KN 152.4mm 30RPM ', '2012-12-07', 11936, '12/7/2012', NULL), (11937, 1653, 'S/N 1080', 'Humboldt Marshall Single Proving Ring ', 'Cap: 10K Plant#20 (E-4 & Man Specs)', '2013-06-14', 11937, '6/14/2013', NULL), (11938, 1654, '', '', '', '0000-00-00', 11938, '', NULL), (11939, 1655, 'S/N 25257', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1K', '2012-12-12', 11939, '12/12/2012', NULL), (11940, 1656, '', '', '', '0000-00-00', 11940, '', NULL), (11941, 1657, 'S/N Y2965', 'Rimac Spring Tester (E-4 & 2%)', 'Range: 350 lbs ', '2013-06-17', 11941, '6/17/2013', NULL), (11942, 1658, '', '', '', '0000-00-00', 11942, '', NULL), (11943, 1659, '', '', '', '0000-00-00', 11943, '', NULL), (11944, 1660, '', '', '', '0000-00-00', 11944, '', NULL), (11945, 1661, 'S/N 157-5510', 'Geo Durham Model 5510 Single Proving Ring ', 'Cap: 10K Plant #1 (E-4 & Man Specs)', '2013-05-29', 11945, '5/29/2013', NULL), (11946, 1662, 'S/N 2143', 'Rimac Spring Tester (E-4 & 2%)', 'Range: 350 lbs ', '2011-05-24', 11946, '5/24/2011', NULL), (11947, 1663, '', '', '', '0000-00-00', 11947, '', NULL), (11948, 1664, '', '', '', '0000-00-00', 11948, '', NULL), (11949, 1665, '', '', '', '0000-00-00', 11949, '', NULL), (11950, 1666, 'S/N 63001', 'Forney PT-75 Pipe Tester (E-4 & C497)', 'Range: 30K / 150K (High Range Only)', '2013-06-12', 11950, '6/12/2013', NULL), (11951, 1667, '', '', '', '0000-00-00', 11951, '', NULL), (11952, 1668, 'S/N 227390', 'Artech Mdl. 20210-5K S Type Load Cell (E-4)', 'Range: 5K (Done In House)', '2013-01-02', 11952, '1/2/2013', NULL), (11953, 1669, '', '', '', '0000-00-00', 11953, '', NULL), (11954, 1670, 'S/N 1550', ' w/ Instron P9M Extensometer (E-83)', 'Range:0.16 in/in (GL 8\")', '2013-06-18', 11954, '6/18/2013', NULL), (11955, 1671, '', '', '', '0000-00-00', 11955, '', NULL), (11956, 1672, '', '', '', '0000-00-00', 11956, '', NULL), (11957, 1673, '', '', '', '0000-00-00', 11957, '', NULL), (11958, 1674, '', '', '', '0000-00-00', 11958, '', NULL), (11959, 1675, 'S/N 7100', 'Spare 1% Gauge w/ELE S/N 0504 (OUT OF SERVICE)', 'Range: 250K', '2004-01-13', 11959, '1/13/2004', NULL), (11960, 1676, '', '', '', '0000-00-00', 11960, '', NULL), (11961, 1677, '', '', '', '0000-00-00', 11961, '', NULL), (11962, 1678, '', '', '', '0000-00-00', 11962, '', NULL), (11963, 1679, '', '', '', '0000-00-00', 11963, '', NULL), (11964, 1680, '', '', '', '0000-00-00', 11964, '', NULL), (11965, 1681, '', '', '', '0000-00-00', 11965, '', NULL), (11966, 1682, '', '', '', '0000-00-00', 11966, '', NULL), (11967, 1683, '', '', '', '0000-00-00', 11967, '', NULL), (11968, 1684, '', '', '', '0000-00-00', 11968, '', NULL), (11969, 1685, '', '', '', '0000-00-00', 11969, '', NULL), (11970, 1686, '', '', '', '0000-00-00', 11970, '', NULL), (11971, 1687, '', '', '', '0000-00-00', 11971, '', NULL), (11972, 1688, '', '', '', '0000-00-00', 11972, '', NULL), (11973, 1689, '', '', '', '0000-00-00', 11973, '', NULL), (11974, 1690, '', '', '', '0000-00-00', 11974, '', NULL), (11975, 1691, '', '', '', '0000-00-00', 11975, '', NULL), (11976, 1692, '', '', '', '0000-00-00', 11976, '', NULL), (11977, 1693, 'S/N 91270', 'Hercules Prestress Jack ', 'Range Pre 1500 / Final to 35K', '2001-06-08', 11977, '6/8/2001', NULL), (11978, 1694, '', '', '', '0000-00-00', 11978, '', NULL), (11979, 1695, '', '', '', '0000-00-00', 11979, '', NULL), (11980, 1696, '', '', '', '0000-00-00', 11980, '', NULL), (11981, 1697, '', '', '', '0000-00-00', 11981, '', NULL), (11982, 1698, '', '', '', '0000-00-00', 11982, '', NULL), (11983, 1699, '', '', '', '0000-00-00', 11983, '', NULL), (11984, 1700, '', '', '', '0000-00-00', 11984, '', NULL), (11985, 1701, 'S/N #1,#2,#3, #4', 'Pine Instrument Gauge Blocks (Man Specs)', 'Range: 1 in x 2in x 3 in', '2012-03-09', 11985, '3/9/2012', NULL), (11986, 1702, '', ' w/ Gauge (E-', 'Range: 300K', '2013-03-14', 11986, '3/14/2013', NULL), (11987, 1703, 'S/N 2353', 'Ohaus CS-1 Scale (E-898)', 'Range: 21,100 grams', '2013-03-04', 11987, '3/4/2013', NULL), (11988, 1704, 'S/N 07123', 'ELE Tri-Flex Pressure Panel (D-5720)', 'Range: 100 PSI', '2013-03-06', 11988, '3/6/2013', NULL), (11989, 1705, 'S/N M921137A220', ' w/LVDT Horizontal Displacement ADU Channel 4 (D-6027)', 'Range: 10 mm', '2013-03-06', 11989, '3/6/2013', NULL), (11990, 1706, '', '', '', '0000-00-00', 11990, '', NULL), (11991, 1707, '', '', '', '0000-00-00', 11991, '', NULL), (11992, 1708, '', '**March 2014 Prorate Testmark**', '', '0000-00-00', 11992, '', NULL), (11993, 1709, '', '', '', '0000-00-00', 11993, '', NULL), (11994, 1710, '', '', '', '0000-00-00', 11994, '', NULL), (11995, 1711, '', '', '', '0000-00-00', 11995, '', NULL), (11996, 1712, '', '', '', '0000-00-00', 11996, '', NULL), (11997, 1713, '', '', '', '0000-00-00', 11997, '', NULL), (11998, 1714, '', '', '', '0000-00-00', 11998, '', NULL), (11999, 1715, '', '', '', '0000-00-00', 11999, '', NULL), (12000, 1716, '', '', '', '0000-00-00', 12000, '', NULL), (12001, 1717, '', '', '', '0000-00-00', 12001, '', NULL), (12002, 1718, '', '', '', '0000-00-00', 12002, '', NULL), (12003, 1719, 'S/N C5000', ' w/ Speed Control (Man Specs)', 'Range: 1 in/min', '2013-02-26', 12003, '2/26/2013', NULL), (12004, 1720, '', '', '', '0000-00-00', 12004, '', NULL), (12005, 1721, 'S/N 50001', 'AND Electronic Model EP-20KA Scale (E-898)', 'Cap: 20,000 Grams', '2013-03-27', 12005, '3/27/2013', NULL), (12006, 1722, '', ' w/ 30,000 lb Gauge (E-4 & 2%)', 'Range: 30K', '2013-03-26', 12006, '3/26/2013', NULL), (12007, 1723, '', '', '', '0000-00-00', 12007, '', NULL), (12008, 1724, '', '', '', '0000-00-00', 12008, '', NULL), (12009, 1725, '', '', '', '0000-00-00', 12009, '', NULL), (12010, 1726, '', '', '', '0000-00-00', 12010, '', NULL), (12011, 1727, 'S/N 4226', 'Revere W & B Kit Mdl. A/S 37M-1 (SOLD) (E-4)', '', '2006-05-24', 12011, '5/24/2006', NULL), (12012, 1728, '', '', '', '0000-00-00', 12012, '', NULL), (12013, 1729, '', '', '', '0000-00-00', 12013, '', NULL), (12014, 1730, '', '', '', '0000-00-00', 12014, '', NULL), (12015, 1731, '', '', '', '0000-00-00', 12015, '', NULL), (12016, 1732, '', '', '', '0000-00-00', 12016, '', NULL), (12017, 1733, '', 'Need Tool & new holding stem, top head needs new bolt &', '', '0000-00-00', 12017, '', NULL), (12018, 1734, '', '', '', '0000-00-00', 12018, '', NULL), (12019, 1735, '', '', '', '0000-00-00', 12019, '', NULL), (12020, 1736, '', '', '', '0000-00-00', 12020, '', NULL), (12021, 1737, '', '', '', '0000-00-00', 12021, '', NULL), (12022, 1738, '', '', '', '0000-00-00', 12022, '', NULL), (12023, 1739, '', '', '', '0000-00-00', 12023, '', NULL), (12024, 1740, '', '', '', '0000-00-00', 12024, '', NULL), (12025, 1741, '', '', '', '0000-00-00', 12025, '', NULL), (12026, 1742, '', '', '', '0000-00-00', 12026, '', NULL), (12027, 1743, '', '', '', '0000-00-00', 12027, '', NULL), (12028, 1744, 'S/N 270/946.67', ' with Range Card', 'Range: 10K ID#25-LC06RC03', '0000-00-00', 12028, '', NULL), (12029, 1745, '', '', '', '0000-00-00', 12029, '', NULL), (12030, 1746, '', '', '', '0000-00-00', 12030, '', NULL), (12031, 1747, '', '', '', '0000-00-00', 12031, '', NULL), (12032, 1748, '', '', '', '0000-00-00', 12032, '', NULL), (12033, 1749, '', '', '', '0000-00-00', 12033, '', NULL), (12034, 1750, '', '', '', '0000-00-00', 12034, '', NULL), (12035, 1751, '', '', '', '0000-00-00', 12035, '', NULL), (12036, 1752, '', '', '', '0000-00-00', 12036, '', NULL), (12037, 1753, 'S/N 255', ' with 1 Pressure Transducer (w/ Digital 444) (D5720-95)', 'Cap: 150 psi', '2002-04-17', 12037, '4/17/2002', NULL), (12038, 1754, '', '', '', '0000-00-00', 12038, '', NULL), (12039, 1755, '', '', '', '0000-00-00', 12039, '', NULL), (12040, 1756, '', '', '', '0000-00-00', 12040, '', NULL), (12041, 1757, '', '', '', '0000-00-00', 12041, '', NULL), (12042, 1758, '', '', '', '0000-00-00', 12042, '', NULL), (12043, 1759, '', '', '', '0000-00-00', 12043, '', NULL), (12044, 1760, '', '', '', '0000-00-00', 12044, '', NULL), (12045, 1761, '', '', '', '0000-00-00', 12045, '', NULL), (12046, 1762, '', '', '', '0000-00-00', 12046, '', NULL), (12047, 1763, '', '', '', '0000-00-00', 12047, '', NULL), (12048, 1764, '', '', '', '0000-00-00', 12048, '', NULL), (12049, 1765, '', '', '', '0000-00-00', 12049, '', NULL), (12050, 1766, '', '', '', '0000-00-00', 12050, '', NULL), (12051, 1767, '', '', '', '0000-00-00', 12051, '', NULL), (12052, 1768, '', '', '', '0000-00-00', 12052, '', NULL), (12053, 1769, '', '', '', '0000-00-00', 12053, '', NULL), (12054, 1770, '', '', '', '0000-00-00', 12054, '', NULL), (12055, 1771, '', '', '', '0000-00-00', 12055, '', NULL), (12056, 1772, '', '', '', '0000-00-00', 12056, '', NULL), (12057, 1773, '', '', '', '0000-00-00', 12057, '', NULL), (12058, 1774, '', '', '', '0000-00-00', 12058, '', NULL), (12059, 1775, '', '', '', '0000-00-00', 12059, '', NULL), (12060, 1776, '', '', '', '0000-00-00', 12060, '', NULL), (12061, 1777, '', '', '', '0000-00-00', 12061, '', NULL), (12062, 1778, '', '', '', '0000-00-00', 12062, '', NULL), (12063, 1779, '', '', '', '0000-00-00', 12063, '', NULL), (12064, 1780, '', '', '', '0000-00-00', 12064, '', NULL), (12065, 1781, '', '', '', '0000-00-00', 12065, '', NULL), (12066, 1782, '', '', '', '0000-00-00', 12066, '', NULL), (12067, 1783, '', '', '', '0000-00-00', 12067, '', NULL), (12068, 1784, 'S/N 5718', 'Scale, Triner Model 202', '', NULL, 12068, 'NEW', NULL), (12069, 1785, '', 'Scale, Triner Model 303 ID #3', '', NULL, 12069, 'NEW', NULL), (12070, 1786, '', '', '', '0000-00-00', 12070, '', NULL), (12071, 1787, '', '', '', '0000-00-00', 12071, '', NULL), (12072, 1788, '', '', '', '0000-00-00', 12072, '', NULL), (12073, 1789, '', '', '', '0000-00-00', 12073, '', NULL), (12074, 1790, '', '', '', '0000-00-00', 12074, '', NULL), (12075, 1791, '', '', '', '0000-00-00', 12075, '', NULL), (12076, 1792, '', '', '', '0000-00-00', 12076, '', NULL), (12077, 1793, '', '', '', '0000-00-00', 12077, '', NULL), (12078, 1794, '', '', '', '0000-00-00', 12078, '', NULL), (12079, 1795, '', '', '', '0000-00-00', 12079, '', NULL), (12080, 1796, '', '', '', '0000-00-00', 12080, '', NULL), (12081, 1797, '', '', '', '0000-00-00', 12081, '', NULL), (12082, 1798, '', '', '', '0000-00-00', 12082, '', NULL), (12083, 1799, '', '', '', '0000-00-00', 12083, '', NULL), (12084, 1800, '', '', '', '0000-00-00', 12084, '', NULL), (12085, 1801, '', '', '', '0000-00-00', 12085, '', NULL), (12086, 1802, '', '', '', '0000-00-00', 12086, '', NULL), (12087, 1803, '', '', '', '0000-00-00', 12087, '', NULL), (12088, 1804, 'S/N ', ' w/Speed Control (Man Specs)', '', '0000-00-00', 12088, '', NULL), (12089, 1805, '', '', '', '0000-00-00', 12089, '', NULL), (12090, 1806, '', '', '', '0000-00-00', 12090, '', NULL), (12091, 1807, '', '', '', '0000-00-00', 12091, '', NULL), (12092, 1808, '', '', '', '0000-00-00', 12092, '', NULL), (12093, 1809, '', '', '', '0000-00-00', 12093, '', NULL), (12094, 1810, 'S/N MG0907', ' w/LVDT (D-6027)', 'Range 0.1 inch to 1 inch', '2007-03-14', 12094, '3/14/2007', NULL), (12095, 1811, '', '', '', '0000-00-00', 12095, '', NULL), (12096, 1812, '', '', '', '0000-00-00', 12096, '', NULL), (12097, 1813, '', '', '', '0000-00-00', 12097, '', NULL), (12098, 1814, '', '', '', '0000-00-00', 12098, '', NULL), (12099, 1815, '', '', '', '0000-00-00', 12099, '', NULL), (12100, 1816, '', '', '', '0000-00-00', 12100, '', NULL), (12101, 1817, '', 'Call Brian when coming 703-753-7832', '', '0000-00-00', 12101, '', NULL), (12102, 1818, '', '', '', '0000-00-00', 12102, '', NULL), (12103, 1819, 'S/N Unknown', 'Pore Pressure Gauge (OOS) (D-5720)', 'Range: 150 PSI', '2007-03-20', 12103, '3/20/2007', NULL), (12104, 1820, 'S/N 7D-1-81', 'Hogentogler Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 750 lbs ', '2013-05-07', 12104, '5/7/2013', NULL), (12105, 1821, '', '', '', '0000-00-00', 12105, '', NULL), (12106, 1822, '', '', '', '0000-00-00', 12106, '', NULL), (12107, 1823, 'S/N 061383868', 'Humboldt H-4158.1 Dial Indicator (D-6027)', 'Range: 1 Inch ', '2013-05-07', 12107, '5/7/2013', NULL), (12108, 1824, '', '', '', '0000-00-00', 12108, '', NULL), (12109, 1825, '', '', '', '0000-00-00', 12109, '', NULL), (12110, 1826, 'S/N 648241', 'Humbolt Pressure Transducer', 'Range: 150 PSI', '2012-05-08', 12110, '5/8/2012', NULL), (12111, 1827, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 12111, '', NULL), (12112, 1828, '', '', '', '0000-00-00', 12112, '', NULL), (12113, 1829, '', '', '', '0000-00-00', 12113, '', NULL), (12114, 1830, '', '', '', '0000-00-00', 12114, '', NULL), (12115, 1831, 'S/N 302', 'Geotest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 400 lbs', '2013-05-15', 12115, '5/15/2013', NULL), (12116, 1832, '', '', '', '0000-00-00', 12116, '', NULL), (12117, 1833, '', '', '', '0000-00-00', 12117, '', NULL), (12118, 1834, '', '', '', '0000-00-00', 12118, '', NULL), (12119, 1835, '', '', '', '0000-00-00', 12119, '', NULL), (12120, 1836, '', '', '', '0000-00-00', 12120, '', NULL), (12121, 1837, '', '', '', '0000-00-00', 12121, '', NULL), (12122, 1838, 'S/N 990203', 'Karol Warner Dial Indicator (D-6027)', 'Range: 150 psi', '2013-07-31', 12122, '7/31/2013', NULL), (12123, 1839, 'S/N 118285-0408231', 'Tinius Olsen Super L w/CS-100-7 Universal Testing Machine (E-4)', 'Range: 200 lbs to 120,000 lbs', '2013-05-20', 12123, '5/20/2013', NULL), (12124, 1840, '', ' w/Vertical Force (E-4)', ' Range: 20lbs to 600lbs ', '2013-05-21', 12124, '5/21/2013', NULL), (12125, 1841, 'S/N 23122', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 1.5K ', '2013-05-21', 12125, '5/21/2013', NULL), (12126, 1842, 'S/N 2193', 'GeoJac Load Frame 1 w/ Geotac Load Cell (E-4)', 'Range: 20 lb sto 2K Load Cell S/N410746', '2013-05-21', 12126, '5/21/2013', NULL), (12127, 1843, '', '', '', '0000-00-00', 12127, '', NULL), (12128, 1844, 'S/N 129945', 'Geotac Load Cell (Load 1 CH# 1) (E-4)', 'Range: 2K', '2013-05-21', 12128, '5/21/2013', NULL), (12129, 1845, '', '', '', '0000-00-00', 12129, '', NULL), (12130, 1846, '', '', '', '0000-00-00', 12130, '', NULL), (12131, 1847, '', '', '', '0000-00-00', 12131, '', NULL), (12132, 1848, '', '', '', '0000-00-00', 12132, '', NULL), (12133, 1849, '', '', '', '0000-00-00', 12133, '', NULL), (12134, 1850, '', '', '', '0000-00-00', 12134, '', NULL), (12135, 1851, '', '', '', '0000-00-00', 12135, '', NULL), (12136, 1852, '', '', '', '0000-00-00', 12136, '', NULL), (12137, 1853, '', '', '', '0000-00-00', 12137, '', NULL), (12138, 1854, '', '', '', '0000-00-00', 12138, '', NULL), (12139, 1855, '', '', '', '0000-00-00', 12139, '', NULL), (12140, 1856, '', '', '', '0000-00-00', 12140, '', NULL), (12141, 1857, '', '', '', '0000-00-00', 12141, '', NULL), (12142, 1858, '', '', '', '0000-00-00', 12142, '', NULL), (12143, 1859, '', '', '', '0000-00-00', 12143, '', NULL), (12144, 1860, '', '', '', '0000-00-00', 12144, '', NULL), (12145, 1861, '', '', '', '0000-00-00', 12145, '', NULL), (12146, 1862, '', '', '', '0000-00-00', 12146, '', NULL), (12147, 1863, '', ' with 10K Load Cell', '', '0000-00-00', 12147, '', NULL), (12148, 1864, '', '', '', '0000-00-00', 12148, '', NULL), (12149, 1865, 'S/N 78094', 'Range Card', 'Cap: .05K', '1995-12-31', 12149, '12/31/1995', NULL), (12150, 1866, 'S/N 205860', 'Viatran Transducer: Item #131 SSM - Pilot Accum', 'Range 6000 psi', '1996-05-08', 12150, '5/8/1996', NULL), (12151, 1867, 'S/N 5', 'Gauge', 'Range 3000 psi', '1996-05-08', 12151, '5/8/1996', NULL), (12152, 1868, '', '', '', '0000-00-00', 12152, '', NULL), (12153, 1869, 'S/N 0225298A', ' with Displacement Card', '.5\" Displacement, ID#25-MTS3DC03', '1998-02-25', 12153, '2/25/1998', NULL), (12154, 1870, '', '', '', '0000-00-00', 12154, '', NULL), (12155, 1871, 'S/N 71503', 'Range Card #4 (Tag# 25-LC10RC04)', 'Range .5 Kip', '1998-05-27', 12155, '5/27/1998', NULL), (12156, 1872, 'S/N 804', 'Extensometer 632.25E-20 (Tag# 25-EXT10)', '+1.0, -.2 inch', '1998-05-28', 12156, '5/28/1998', NULL), (12157, 1873, '', '', '', '0000-00-00', 12157, '', NULL), (12158, 1874, '', '', '', '0000-00-00', 12158, '', NULL), (12159, 1875, '', '', '', '0000-00-00', 12159, '', NULL), (12160, 1876, '', '', '', '0000-00-00', 12160, '', NULL), (12161, 1877, '', '', '', '0000-00-00', 12161, '', NULL), (12162, 1878, '', '', '', '0000-00-00', 12162, '', NULL), (12163, 1879, '', '', '', '0000-00-00', 12163, '', NULL), (12164, 1880, '', '', '', '0000-00-00', 12164, '', NULL), (12165, 1881, '', '', '', '0000-00-00', 12165, '', NULL), (12166, 1882, '', '', '', '0000-00-00', 12166, '', NULL), (12167, 1883, '', '', '', '0000-00-00', 12167, '', NULL), (12168, 1884, '', '', '', '0000-00-00', 12168, '', NULL), (12169, 1885, '', '', '', '0000-00-00', 12169, '', NULL), (12170, 1886, '', '', '', '0000-00-00', 12170, '', NULL), (12171, 1887, '', '***Only calls us when a machine is being moved and needs calibrated', '', '0000-00-00', 12171, '', NULL), (12172, 1888, '', '', '', '0000-00-00', 12172, '', NULL), (12173, 1889, '', '', '', '0000-00-00', 12173, '', NULL), (12174, 1890, '', '', '', '0000-00-00', 12174, '', NULL), (12175, 1891, 'S/N 27831', 'Brainard-Kilman Pressure Transducer (in house)', 'Range 200 psi', '1995-05-23', 12175, '5/23/1995', NULL), (12176, 1892, '', '', '', '0000-00-00', 12176, '', NULL), (12177, 1893, '', '', '', '0000-00-00', 12177, '', NULL), (12178, 1894, '', '', '', '0000-00-00', 12178, '', NULL), (12179, 1895, '', '', '', '0000-00-00', 12179, '', NULL), (12180, 1896, 'S/N 112', 'Brainard-Kilman E-116 Pressure Transducer w/ E400 Dig. Readout', 'Cap: 150 psi E-116 w/E-400 (D-5720)', '2000-05-18', 12180, '5/18/2000', NULL), (12181, 1897, '', '', '', '0000-00-00', 12181, '', NULL), (12182, 1898, '', '', '', '0000-00-00', 12182, '', NULL), (12183, 1899, '', '', '', '0000-00-00', 12183, '', NULL), (12184, 1900, '', '', '', '0000-00-00', 12184, '', NULL), (12185, 1901, '', '', '', '0000-00-00', 12185, '', NULL), (12186, 1902, '', '', '', '0000-00-00', 12186, '', NULL), (12187, 1903, '', '', '', '0000-00-00', 12187, '', NULL), (12188, 1904, '', '', '', '0000-00-00', 12188, '', NULL), (12189, 1905, 'S/N 731', 'Rainhart 416 Beam Tester (E-4) ', 'Range: 1k - 12k (OUT OF SERVICE)', '2004-06-02', 12189, '6/2/2004', NULL), (12190, 1906, 'S/N 4140/95020', 'Metrigard Mdl. 403 Tension Proof Tester (E-4)', 'Range: 1,000 lbs to 10,000 lbs ', '2008-05-29', 12190, '5/29/2008', NULL), (12191, 1907, '', '', '', '0000-00-00', 12191, '', NULL), (12192, 1908, '', '', '', '0000-00-00', 12192, '', NULL), (12193, 1909, '', '', '', '0000-00-00', 12193, '', NULL), (12194, 1910, '', '', '', '0000-00-00', 12194, '', NULL), (12195, 1911, '', '', '', '0000-00-00', 12195, '', NULL), (12196, 1912, '', '', '', '0000-00-00', 12196, '', NULL), (12197, 1913, '', 'If Out of Tolerance Highlight all figures that are out on Cert', '', '0000-00-00', 12197, '', NULL), (12198, 1914, 'S/N 861', ' w/ Brainard-Kilman Digital Mdl. E-400', '', '0000-00-00', 12198, '', NULL), (12199, 1915, '', '', '', '0000-00-00', 12199, '', NULL), (12200, 1916, 'S/N 101', 'Ohaus 2610G 700 Series Scale (E-898)', 'Range: 1 Gram to 650 Gram', '2008-06-05', 12200, '6/5/2008', NULL), (12201, 1917, '', '', '', '0000-00-00', 12201, '', NULL), (12202, 1918, '', '', '', '0000-00-00', 12202, '', NULL), (12203, 1919, '', '', '', '0000-00-00', 12203, '', NULL), (12204, 1920, '', '', '', '0000-00-00', 12204, '', NULL), (12205, 1921, '', '', '', '0000-00-00', 12205, '', NULL), (12206, 1922, '', '', '', '0000-00-00', 12206, '', NULL), (12207, 1923, '', '', '', '0000-00-00', 12207, '', NULL), (12208, 1924, '', '', '', '0000-00-00', 12208, '', NULL), (12209, 1925, 'S/N 11772', 'Swiss Hammer Model N2-5 (C-805)', '', '2005-07-20', 12209, '7/20/2005', NULL), (12210, 1926, '', '', '', '0000-00-00', 12210, '', NULL), (12211, 1927, '', '', '', '0000-00-00', 12211, '', NULL), (12212, 1928, '', '', '', '0000-00-00', 12212, '', NULL), (12213, 1929, '', '', '', '0000-00-00', 12213, '', NULL), (12214, 1930, '', '', '', '0000-00-00', 12214, '', NULL), (12215, 1931, 'S/N 9912/9002', 'Soiltest Microhead Digital OUT OF SERVICE', 'Range: 2.5k to 250k', '2004-01-14', 12215, '1/14/2004', NULL), (12216, 1932, '', '', '', '0000-00-00', 12216, '', NULL), (12217, 1933, '', '', '', '0000-00-00', 12217, '', NULL), (12218, 1934, '', '', '', '0000-00-00', 12218, '', NULL), (12219, 1935, '', '', '', '0000-00-00', 12219, '', NULL), (12220, 1936, '', '', '', '0000-00-00', 12220, '', NULL), (12221, 1937, '', '', '', '0000-00-00', 12221, '', NULL), (12222, 1938, '', '', '', '0000-00-00', 12222, '', NULL), (12223, 1939, '', '', '', '0000-00-00', 12223, '', NULL), (12224, 1940, '', '', '', '0000-00-00', 12224, '', NULL), (12225, 1941, '', '', '', '0000-00-00', 12225, '', NULL), (12226, 1942, '', '', '', '0000-00-00', 12226, '', NULL), (12227, 1943, '', '', '', '0000-00-00', 12227, '', NULL), (12228, 1944, '', '', '', '0000-00-00', 12228, '', NULL), (12229, 1945, '', '', '', '0000-00-00', 12229, '', NULL), (12230, 1946, '', '', '', '0000-00-00', 12230, '', NULL), (12231, 1947, '', '', '', '0000-00-00', 12231, '', NULL), (12232, 1948, '', '', '', '0000-00-00', 12232, '', NULL), (12233, 1949, '', '', '', '0000-00-00', 12233, '', NULL), (12234, 1950, '', '', '', '0000-00-00', 12234, '', NULL), (12235, 1951, '', '', '', '0000-00-00', 12235, '', NULL), (12236, 1952, '', '', '', '0000-00-00', 12236, '', NULL), (12237, 1953, '', '', '', '0000-00-00', 12237, '', NULL), (12238, 1954, '', '', '', '0000-00-00', 12238, '', NULL), (12239, 1955, '', '', '', '0000-00-00', 12239, '', NULL), (12240, 1956, '', '', '', '0000-00-00', 12240, '', NULL), (12241, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 12241, 'New', NULL), (12242, 1958, 'S/N 200', 'Enerpac RCH 606 Post Tension Jack with hand pump', 'Range: 60 ton 100 psi', '2002-12-06', 12242, '12/6/2002', NULL), (12243, 1959, 'S/N', 'No Shok Air Meter Gauge (D-5720)', 'Range: 15 PSI', '2009-11-02', 12243, '11/2/2009', NULL), (12244, 1960, '', '', '', '0000-00-00', 12244, '', NULL), (12245, 1961, '', '', '', '0000-00-00', 12245, '', NULL), (12246, 1962, '', '', '', '0000-00-00', 12246, '', NULL), (12247, 1963, '', '', '', '0000-00-00', 12247, '', NULL), (12248, 1964, '', '', '', '0000-00-00', 12248, '', NULL), (12249, 1965, '', '', '', '0000-00-00', 12249, '', NULL), (12250, 1966, '', '', '', '0000-00-00', 12250, '', NULL), (12251, 1967, '', '', '', '0000-00-00', 12251, '', NULL), (12252, 1968, '', '', '', '0000-00-00', 12252, '', NULL), (12253, 1969, '', '', '', '0000-00-00', 12253, '', NULL), (12254, 1970, '', '', '', '0000-00-00', 12254, '', NULL), (12255, 1971, '', '', '', '0000-00-00', 12255, '', NULL), (12256, 1972, 'S/N 1386', 'Pine Instruments Single Proving Ring', 'Range: 10,000 lbs', '2002-11-19', 12256, '11/19/2002', NULL), (12257, 1973, '', '', '', '0000-00-00', 12257, '', NULL), (12258, 1974, '', '', '', '0000-00-00', 12258, '', NULL), (12259, 1975, '', '', '', '0000-00-00', 12259, '', NULL), (12260, 1976, '', '', '', '0000-00-00', 12260, '', NULL), (12261, 1977, '', '', '', '0000-00-00', 12261, '', NULL), (12262, 1978, '', '', '', '0000-00-00', 12262, '', NULL), (12263, 1979, '', '', '', '0000-00-00', 12263, '', NULL), (12264, 1980, '', '', '', '0000-00-00', 12264, '', NULL), (12265, 1981, '', '', '', '0000-00-00', 12265, '', NULL), (12266, 1982, '', '', '', '0000-00-00', 12266, '', NULL), (12267, 1983, '', '', '', '0000-00-00', 12267, '', NULL), (12268, 1984, '', '', '', '0000-00-00', 12268, '', NULL), (12269, 1985, '', '', '', '0000-00-00', 12269, '', NULL), (12270, 1986, '', '', '', '0000-00-00', 12270, '', NULL), (12271, 1987, '', '', '', '0000-00-00', 12271, '', NULL), (12272, 1988, 'S/N ECA668', 'Power Team Post Tension Jack - Model C (E-4 & PCI)', 'Range: 5200 psi', '2006-05-12', 12272, '5/12/2006', NULL), (12273, 1989, 'S/N C1628', ' w/8500 Plus Control ', 'Range: ', NULL, 12273, 'New', NULL), (12274, 1990, '', '', '', '0000-00-00', 12274, '', NULL), (12275, 1991, '', '', '', '0000-00-00', 12275, '', NULL), (12276, 1992, '', '', '', '0000-00-00', 12276, '', NULL), (12277, 1993, '', '', '', '0000-00-00', 12277, '', NULL), (12278, 1994, '', '', '', '0000-00-00', 12278, '', NULL), (12279, 1995, '', '', '', '0000-00-00', 12279, '', NULL), (12280, 1996, '', '', '', '0000-00-00', 12280, '', NULL), (12281, 1997, '', '', '', '0000-00-00', 12281, '', NULL), (12282, 1998, '', '', '', '0000-00-00', 12282, '', NULL), (12283, 1999, '', '', '', '0000-00-00', 12283, '', NULL), (12284, 2000, '', '', '', '0000-00-00', 12284, '', NULL), (12285, 2001, '', ' ', '', '0000-00-00', 12285, '', NULL), (12286, 2002, '', '', '', '0000-00-00', 12286, '', NULL), (12287, 2003, '', '', '', '0000-00-00', 12287, '', NULL), (12288, 2004, '', '', '', '0000-00-00', 12288, '', NULL), (12289, 2005, '', '', '', '0000-00-00', 12289, '', NULL), (12290, 2006, '', '', '', '0000-00-00', 12290, '', NULL), (12291, 2007, '', '', '', '0000-00-00', 12291, '', NULL), (12292, 2008, 'S/N FGR491', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2009-10-20', 12292, '10/20/2009', NULL), (12293, 2009, 'S/N 00071-0610163', 'Forney F-502F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2011-10-18', 12293, '10/18/2011', NULL), (12294, 2010, '', '', '', '0000-00-00', 12294, '', NULL), (12295, 2011, '', '', '', '0000-00-00', 12295, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (12296, 2012, '', '', '', '0000-00-00', 12296, '', NULL), (12297, 2013, '', '', '', '0000-00-00', 12297, '', NULL), (12298, 2014, '', '', '', '0000-00-00', 12298, '', NULL), (12299, 2015, '', '', '', '0000-00-00', 12299, '', NULL), (12300, 2016, '', '', '', '0000-00-00', 12300, '', NULL), (12301, 2017, '', '', '', '0000-00-00', 12301, '', NULL), (12302, 2018, '', '', '', '0000-00-00', 12302, '', NULL), (12303, 2019, '', '', '', '0000-00-00', 12303, '', NULL), (12304, 2020, '', '', '', '0000-00-00', 12304, '', NULL), (12305, 2021, 'S/N 185134', 'Dillon Dynamometer', 'Range: 30K', '2002-10-31', 12305, '10/31/2002', NULL), (12306, 2022, '', '', '', '0000-00-00', 12306, '', NULL), (12307, 2023, '', '', '', '0000-00-00', 12307, '', NULL), (12308, 2024, '', '', '', '0000-00-00', 12308, '', NULL), (12309, 2025, '', '', '', '0000-00-00', 12309, '', NULL), (12310, 2026, '', '', '', '0000-00-00', 12310, '', NULL), (12311, 2027, '', '', '', '0000-00-00', 12311, '', NULL), (12312, 2028, '', '', '', '0000-00-00', 12312, '', NULL), (12313, 2029, '', '', '', '0000-00-00', 12313, '', NULL), (12314, 2030, '', '', '', '0000-00-00', 12314, '', NULL), (12315, 2031, '', '', '', '0000-00-00', 12315, '', NULL), (12316, 2032, '', '', '', '0000-00-00', 12316, '', NULL), (12317, 2033, '', '', '', '0000-00-00', 12317, '', NULL), (12318, 2034, '', '', '', '0000-00-00', 12318, '', NULL), (12319, 2035, '', '', '', '0000-00-00', 12319, '', NULL), (12320, 2036, '', '', '', '0000-00-00', 12320, '', NULL), (12321, 2037, '', '', '', '0000-00-00', 12321, '', NULL), (12322, 2038, '', '', '', '0000-00-00', 12322, '', NULL), (12323, 2039, '', '', '', '0000-00-00', 12323, '', NULL), (12324, 2040, '', '', '', '0000-00-00', 12324, '', NULL), (12325, 2041, '', '', '', '0000-00-00', 12325, '', NULL), (12326, 2042, '', '', '', '0000-00-00', 12326, '', NULL), (12327, 2043, '', '', '', '0000-00-00', 12327, '', NULL), (12328, 2044, '', '', '', '0000-00-00', 12328, '', NULL), (12329, 2045, '', '', '', '0000-00-00', 12329, '', NULL), (12330, 2046, '', '', '', '0000-00-00', 12330, '', NULL), (12331, 2047, '', '', '', '0000-00-00', 12331, '', NULL), (12332, 2048, '', '', '', '0000-00-00', 12332, '', NULL), (12333, 2049, '', '', '', '0000-00-00', 12333, '', NULL), (12334, 2050, '', '', '', '0000-00-00', 12334, '', NULL), (12335, 2051, '', '', '', '0000-00-00', 12335, '', NULL), (12336, 2052, '', '', '', '0000-00-00', 12336, '', NULL), (12337, 2053, 'S/N G399', 'Enerpac 100 Ton Press with Gauge (E-4)', 'Range 200K', '1998-11-11', 12337, '11/11/1998', NULL), (12338, 2054, '', '', '', '0000-00-00', 12338, '', NULL), (12339, 2055, '', '', '', '0000-00-00', 12339, '', NULL), (12340, 2056, '', '', '', '0000-00-00', 12340, '', NULL), (12341, 2057, 'S/N 200', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (BROKE) (D-6027)', 'Range: 0.5 inch', '2007-10-24', 12341, '10/24/2007', NULL), (12342, 2058, 'S/N 360', ' w/Durham Geo LVDT (Remove from machine to Cal) (E-2309)', 'Range: 4 Inch', '2007-10-24', 12342, '10/24/2007', NULL), (12343, 2059, '', '', '', '0000-00-00', 12343, '', NULL), (12344, 2060, '', '', '', '0000-00-00', 12344, '', NULL), (12345, 2061, '', '', '', '0000-00-00', 12345, '', NULL), (12346, 2062, '', '', '', '0000-00-00', 12346, '', NULL), (12347, 2063, '', '', '', '0000-00-00', 12347, '', NULL), (12348, 2064, '', '', '', '0000-00-00', 12348, '', NULL), (12349, 2065, '', '', '', '0000-00-00', 12349, '', NULL), (12350, 2066, 'S/N 53118-1', 'Soiltest Beam Breaker (MOVED) (E-4)', 'Range: 10K', '2007-10-10', 12350, '10/10/2007', NULL), (12351, 2067, '', '', '', '0000-00-00', 12351, '', NULL), (12352, 2068, '', '', '', '0000-00-00', 12352, '', NULL), (12353, 2069, '', '', '', '0000-00-00', 12353, '', NULL), (12354, 2070, '', '', '', '0000-00-00', 12354, '', NULL), (12355, 2071, '', '', '', '0000-00-00', 12355, '', NULL), (12356, 2072, 'S/N 17239', ' RDP Electronics LVDT AXIAL 2 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 12356, '10/24/2006', NULL), (12357, 2073, '', '', '', '0000-00-00', 12357, '', NULL), (12358, 2074, '', '', '', '0000-00-00', 12358, '', NULL), (12359, 2075, 'S/N Stress 2', 'Stress Con Prestress Jack (E-4 & PCI)', 'Range: 5K / 50K', '2007-10-04', 12359, '10/4/2007', NULL), (12360, 2076, '', '', '', '0000-00-00', 12360, '', NULL), (12361, 2077, '', '', '', '0000-00-00', 12361, '', NULL), (12362, 2078, 'S/N ALVG #1', 'TEL-TRU Vacuum Gauge (ManSpecs)', 'Range: 30inHg', '2013-04-19', 12362, '4/19/2013', NULL), (12363, 2079, 'S/N 259', 'Humboldt Beam Breaker (E-4 & 2%)', 'Range: 15K', '2012-10-23', 12363, '10/23/2012', NULL), (12364, 2080, 'S/N 371', 'Durham Geo E-116 Pressure Transducer (D-5720)', 'Range: 300 psi', '2012-10-23', 12364, '10/23/2012', NULL), (12365, 2081, '', '', '', '0000-00-00', 12365, '', NULL), (12366, 2082, '', '', '', '0000-00-00', 12366, '', NULL), (12367, 2083, '', ' w/Gauges #801,#224, #230, #3010,#2, #20', 'Range: 35K', '2008-05-13', 12367, '5/13/2008', NULL), (12368, 2084, '', '', '', '0000-00-00', 12368, '', NULL), (12369, 2085, '', '', '', '0000-00-00', 12369, '', NULL), (12370, 2086, 'S/N 434287A', ' w/ T & C Load Cell (E-4)', 'Range: 5K ', '2013-09-04', 12370, '9/4/2013', NULL), (12371, 2087, '', '', '', '0000-00-00', 12371, '', NULL), (12372, 2088, '', '', '', '0000-00-00', 12372, '', NULL), (12373, 2089, 'S/N Jack 1', 'OTC Mdl. PE554T Post Tension Jack Gauges #1, #2, & Extra #2 ', 'Range: 35K/35K/35K (E-4 & PCI)', '2013-09-03', 12373, '9/3/2013', NULL), (12374, 2090, '', '', '', '0000-00-00', 12374, '', NULL), (12375, 2091, '', '', '', '0000-00-00', 12375, '', NULL), (12376, 2092, 'S/N 103068', 'GT Bynum MPU-2 Prestress Jack (E-4 & PCI & 2%)', 'Range: Gauge 8,000lb', '2013-09-03', 12376, '9/3/2013', NULL), (12377, 2093, '', '', '', '0000-00-00', 12377, '', NULL), (12378, 2094, '', '', '', '0000-00-00', 12378, '', NULL), (12379, 2095, '', '', '', '0000-00-00', 12379, '', NULL), (12380, 2096, '', '', '', '0000-00-00', 12380, '', NULL), (12381, 2097, '', '', '', '0000-00-00', 12381, '', NULL), (12382, 2098, '', '', '', '0000-00-00', 12382, '', NULL), (12383, 2099, '', 'E-mail Solicitation Letters', '', '0000-00-00', 12383, '', NULL), (12384, 2100, '', '', '', '0000-00-00', 12384, '', NULL), (12385, 2101, '', '', '', '0000-00-00', 12385, '', NULL), (12386, 2102, '', '', '', '0000-00-00', 12386, '', NULL), (12387, 2103, '', '', '', '0000-00-00', 12387, '', NULL), (12388, 2104, '', '', '', '0000-00-00', 12388, '', NULL), (12389, 2105, '', '', '', '0000-00-00', 12389, '', NULL), (12390, 2106, '', '', '', '0000-00-00', 12390, '', NULL), (12391, 2107, '', '', '', '0000-00-00', 12391, '', NULL), (12392, 2108, '', '', '', '0000-00-00', 12392, '', NULL), (12393, 2109, 'S/N 65050-2', 'Tinius Olsen Super L Compression Machine', 'Range 12/60K', '1996-08-06', 12393, '8/6/1996', NULL), (12394, 2110, '', '', '', '0000-00-00', 12394, '', NULL), (12395, 2111, '', '', '', '0000-00-00', 12395, '', NULL), (12396, 2112, '', '', '', '0000-00-00', 12396, '', NULL), (12397, 2113, '', '', '', '0000-00-00', 12397, '', NULL), (12398, 2114, '', '', '', '0000-00-00', 12398, '', NULL), (12399, 2115, '', '', '', '0000-00-00', 12399, '', NULL), (12400, 2116, '', '', '', '0000-00-00', 12400, '', NULL), (12401, 2117, '', '', '', '0000-00-00', 12401, '', NULL), (12402, 2118, '', '', '', '0000-00-00', 12402, '', NULL), (12403, 2119, '', '', '', '0000-00-00', 12403, '', NULL), (12404, 2120, '', '', '', '0000-00-00', 12404, '', NULL), (12405, 2121, '', '', '', '0000-00-00', 12405, '', NULL), (12406, 2122, '', '', '', '0000-00-00', 12406, '', NULL), (12407, 2123, '', '', '', '0000-00-00', 12407, '', NULL), (12408, 2124, '', '', '', '0000-00-00', 12408, '', NULL), (12409, 2125, '', '', '', '0000-00-00', 12409, '', NULL), (12410, 2126, '', '', '', '0000-00-00', 12410, '', NULL), (12411, 2127, '', '', '', '0000-00-00', 12411, '', NULL), (12412, 2128, '', '', '', '0000-00-00', 12412, '', NULL), (12413, 2129, '', '', '', '0000-00-00', 12413, '', NULL), (12414, 2130, '', '', '', '0000-00-00', 12414, '', NULL), (12415, 2131, '', '', '', '0000-00-00', 12415, '', NULL), (12416, 2132, '', '', '', '0000-00-00', 12416, '', NULL), (12417, 2133, '', '', '', '0000-00-00', 12417, '', NULL), (12418, 2134, '', '', '', '0000-00-00', 12418, '', NULL), (12419, 2135, '', '', '', '0000-00-00', 12419, '', NULL), (12420, 2136, '', '', '', '0000-00-00', 12420, '', NULL), (12421, 2137, 'S/N AP D913319', 'Dillon Dynamometer', '', '0000-00-00', 12421, '', NULL), (12422, 2138, '', '', '', '0000-00-00', 12422, '', NULL), (12423, 2139, '', '', '', '0000-00-00', 12423, '', NULL), (12424, 2140, '', '', '', '0000-00-00', 12424, '', NULL), (12425, 2141, '', '', '', '0000-00-00', 12425, '', NULL), (12426, 2142, '', '', '', '0000-00-00', 12426, '', NULL), (12427, 2143, 'S/N', 'Strainsense Extensometer (E-83)', 'Range: 2 Inch', NULL, 12427, 'New', NULL), (12428, 2144, '', '', '', '0000-00-00', 12428, '', NULL), (12429, 2145, '', '', '', '0000-00-00', 12429, '', NULL), (12430, 2146, '', '', '', '0000-00-00', 12430, '', NULL), (12431, 2147, 'S/N 1018414', 'Red Lion Load Cell System PAXS w/ Cooper Eng. Load Cell (E-4)', 'Range: 500 lbs to 20K', '2005-08-12', 12431, '8/12/2005', NULL), (12432, 2148, 'S/N 24617', 'Soiltest Single Proving Ring for Bond Wrench Tester (Out of Service) ', 'Cap: 2000#', '2004-09-15', 12432, '9/15/2004', NULL), (12433, 2149, '', ' ELE Tritest 50 Linear Transducer', '', '0000-00-00', 12433, '', NULL), (12434, 2150, 'S/N 219622', ' w/Vertical Displacement (D-6027)', 'Range: 0.04 inch to 0.4 inch', '2006-09-12', 12434, '9/12/2006', NULL), (12435, 2151, '', '', '', '0000-00-00', 12435, '', NULL), (12436, 2152, '', '', '', '0000-00-00', 12436, '', NULL), (12437, 2153, '', '', '', '0000-00-00', 12437, '', NULL), (12438, 2154, '', '', '', '0000-00-00', 12438, '', NULL), (12439, 2155, '', '', '', '0000-00-00', 12439, '', NULL), (12440, 2156, '', ' Send Certs to Billing Address', '', '0000-00-00', 12440, '', NULL), (12441, 2157, '', '', '', '0000-00-00', 12441, '', NULL), (12442, 2158, '', '', '', '0000-00-00', 12442, '', NULL), (12443, 2159, '', '', '', '0000-00-00', 12443, '', NULL), (12444, 2160, 'S/N H518', 'HCN Dial Indicator (OOS) (D-6027)', '', '2009-08-26', 12444, '8/26/2009', NULL), (12445, 2161, '', '', '', '0000-00-00', 12445, '', NULL), (12446, 2162, '', '', '', '0000-00-00', 12446, '', NULL), (12447, 2163, '', '', '', '0000-00-00', 12447, '', NULL), (12448, 2164, '', '', '', '0000-00-00', 12448, '', NULL), (12449, 2165, '', '', '', '0000-00-00', 12449, '', NULL), (12450, 2166, '', '', '', '0000-00-00', 12450, '', NULL), (12451, 2167, '', '', '', '0000-00-00', 12451, '', NULL), (12452, 2168, '', '', '', '0000-00-00', 12452, '', NULL), (12453, 2169, '', '', '', '0000-00-00', 12453, '', NULL), (12454, 2170, '', '', '', '0000-00-00', 12454, '', NULL), (12455, 2171, '', '', '', '0000-00-00', 12455, '', NULL), (12456, 2172, '', '', '', '0000-00-00', 12456, '', NULL), (12457, 2173, '', '', '', '0000-00-00', 12457, '', NULL), (12458, 2174, '', '', '', '0000-00-00', 12458, '', NULL), (12459, 2175, '', '', '', '0000-00-00', 12459, '', NULL), (12460, 2176, '', '', '', '0000-00-00', 12460, '', NULL), (12461, 2177, '', '', '', '0000-00-00', 12461, '', NULL), (12462, 2178, '', '', '', '0000-00-00', 12462, '', NULL), (12463, 2179, '', '', '', '0000-00-00', 12463, '', NULL), (12464, 2180, '', '', '', '0000-00-00', 12464, '', NULL), (12465, 2181, '', '', '', '0000-00-00', 12465, '', NULL), (12466, 2182, '', '', '', '0000-00-00', 12466, '', NULL), (12467, 2183, '', '', '', '0000-00-00', 12467, '', NULL), (12468, 2184, '', '', '', '0000-00-00', 12468, '', NULL), (12469, 2185, '', '', '', '0000-00-00', 12469, '', NULL), (12470, 2186, '', '', '', '0000-00-00', 12470, '', NULL), (12471, 2187, '', '', '', '0000-00-00', 12471, '', NULL), (12472, 2188, '', '', '', '0000-00-00', 12472, '', NULL), (12473, 2189, '', '', '', '0000-00-00', 12473, '', NULL), (12474, 2190, '', '', '', '0000-00-00', 12474, '', NULL), (12475, 2191, '', '', '', '0000-00-00', 12475, '', NULL), (12476, 2192, '', '', '', '0000-00-00', 12476, '', NULL), (12477, 2193, '', '', '', '0000-00-00', 12477, '', NULL), (12478, 2194, '', '', '', '0000-00-00', 12478, '', NULL), (12479, 2195, '', '', '', '0000-00-00', 12479, '', NULL), (12480, 2196, 'S/N 0518432/20', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 12480, '8/27/2013', NULL), (12481, 2197, 'S/N S-2102', 'Karol Warner Pressure Gauge (D-5720)', 'Range: 100 psi', '2006-02-13', 12481, '2/13/2006', NULL), (12482, 2198, '', 'Putting in archived database; haven\'t cal\'d since before 2010.', '', '0000-00-00', 12482, '', NULL), (12483, 2199, '', '', '', '0000-00-00', 12483, '', NULL), (12484, 2200, '', 'Putting in archived database.', '', '0000-00-00', 12484, '', NULL), (12485, 2201, '', '', '', '0000-00-00', 12485, '', NULL), (12486, 2202, 'S/N 1613', 'Brainard Kilman Mdl. S-500 & 502 Flex Panel (D-5720)', 'Range: 150 PSI', '2009-02-16', 12486, '2/16/2009', NULL), (12487, 2203, '', '', '', '0000-00-00', 12487, '', NULL), (12488, 2204, 'S/N ', 'Durham Geo LG114 Direct Shear Box (E-4)', 'Range: ', NULL, 12488, 'New', NULL), (12489, 2205, '', ' w/ Vertical Displacement LDT (D-6027)', 'Range: ', NULL, 12489, 'New', NULL), (12490, 2206, '', '', '', '0000-00-00', 12490, '', NULL), (12491, 2207, 'S/N 19792', 'Forney Triaxial Pore Pressure Transducer (D-5720)', 'Range: 690 kpa', '2005-02-21', 12491, '2/21/2005', NULL), (12492, 2208, 'S/N 1155-11-11432', 'ELE Proving Ring (E4)', 'Range: 450 lbs', '2005-02-21', 12492, '2/21/2005', NULL), (12493, 2209, '', '', 'Email Invoice- jcameron@acmiller.com', '0000-00-00', 12493, '', NULL), (12494, 2210, 'S/N 1075', 'BK Pore Press--Model E-124 (D-5720)', 'Range: 150 psi', '2006-08-30', 12494, '8/30/2006', NULL), (12495, 2211, '', '', '', '0000-00-00', 12495, '', NULL), (12496, 2212, '', '', '', '0000-00-00', 12496, '', NULL), (12497, 2213, '', 'Putting in archived database', '', '0000-00-00', 12497, '', NULL), (12498, 2214, '', '', '', '0000-00-00', 12498, '', NULL), (12499, 2215, '', 'Putting in archived database.', '', '0000-00-00', 12499, '', NULL), (12500, 2216, '', 'Putting in archived database', '', '0000-00-00', 12500, '', NULL), (12501, 2217, '', '', '', '0000-00-00', 12501, '', NULL), (12502, 2218, '', '', '', '0000-00-00', 12502, '', NULL), (12503, 2219, '', '', '', '0000-00-00', 12503, '', NULL), (12504, 2220, '', '**Putting in archived database**', '', '0000-00-00', 12504, '', NULL), (12505, 2221, '', '', '', '0000-00-00', 12505, '', NULL), (12506, 2222, 'A01008', 'serial number to long', '', '0000-00-00', 12506, '', NULL), (12507, 2223, '', '', '', '0000-00-00', 12507, '', NULL), (12508, 2224, '', '', '', '0000-00-00', 12508, '', NULL), (12509, 2225, '', '', '', '0000-00-00', 12509, '', NULL), (12510, 2226, '', '', '', '0000-00-00', 12510, '', NULL), (12511, 2227, '', 'Putting in archived database.', '', '0000-00-00', 12511, '', NULL), (12512, 2228, '', '', '', '0000-00-00', 12512, '', NULL), (12513, 2229, '', '', '', '0000-00-00', 12513, '', NULL), (12514, 2230, '', '', '', '0000-00-00', 12514, '', NULL), (12515, 2231, '', 'Putting in archived database.', '', '0000-00-00', 12515, '', NULL), (12516, 2232, '', '', '', '0000-00-00', 12516, '', NULL), (12517, 2233, '', '', '', '0000-00-00', 12517, '', NULL), (12518, 2234, '', '', '', '0000-00-00', 12518, '', NULL), (12519, 2235, '', 'Putting in archived database.', '', '0000-00-00', 12519, '', NULL), (12520, 2236, '', '', '', '0000-00-00', 12520, '', NULL), (12521, 2237, '', 'Putting in archived database.', '', '0000-00-00', 12521, '', NULL), (12522, 2238, '', 'Putting in archived database.', '', '0000-00-00', 12522, '', NULL), (12523, 2239, 'S/N ', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 200 PSI', NULL, 12523, 'New', NULL), (12524, 2240, '', '', '', '0000-00-00', 12524, '', NULL), (12525, 2241, '', '', '', '0000-00-00', 12525, '', NULL), (12526, 2242, 'S/N 2383', 'Soiltest CT-710 Digital Compression Machine (E-4)', 'Range: 250K ', NULL, 12526, 'New', NULL), (12527, 2243, '', 'Putting in archived database.', '', '0000-00-00', 12527, '', NULL), (12528, 2244, '', 'Putting in archived database.', '', '0000-00-00', 12528, '', NULL), (12529, 2245, '', 'Putting in archived database.', '', '0000-00-00', 12529, '', NULL), (12530, 2246, '', '', '', '0000-00-00', 12530, '', NULL), (12531, 2247, '', '', '', '0000-00-00', 12531, '', NULL), (12532, 2248, '', 'Putting in archived database.', '', '0000-00-00', 12532, '', NULL), (12533, 2249, 'S/N 622', ' Ameteck Pull Tester (E-4)', 'Range: 500 lb.', '1998-04-28', 12533, '4/28/1998', NULL), (12534, 2250, 'S/N 137130', 'Tinius Olsen 5-1000-2A (E83-00)', '2\" Extensometer', '2002-01-31', 12534, '1/31/2002', NULL), (12535, 2251, '', '', '', '0000-00-00', 12535, '', NULL), (12536, 2252, '', 'Putting in archived database.', '', '0000-00-00', 12536, '', NULL), (12537, 2253, '', '', '', '0000-00-00', 12537, '', NULL), (12538, 2254, '', 'Putting in archived database.', '', '0000-00-00', 12538, '', NULL), (12539, 2255, '', '', '', '0000-00-00', 12539, '', NULL), (12540, 2256, '', '', '', '0000-00-00', 12540, '', NULL), (12541, 2257, 'S/N Unknown', 'Pore Pressure Gauge (OOS) (D-5720)', 'Range: 150 PSI', '2007-03-20', 12541, '3/20/2007', NULL), (12542, 2258, '', 'Putting in archived database.', '', '0000-00-00', 12542, '', NULL), (12543, 2259, '', 'Putting in archived database.', '', '0000-00-00', 12543, '', NULL), (12544, 2260, '', 'Putting in archived database.', '', '0000-00-00', 12544, '', NULL), (12545, 2261, '', '', '', '0000-00-00', 12545, '', NULL), (12546, 2262, '', 'Putting in archived database.', '', '0000-00-00', 12546, '', NULL), (12547, 2263, '', '', '', '0000-00-00', 12547, '', NULL), (12548, 2264, '', '', '', '0000-00-00', 12548, '', NULL), (12549, 2265, '', ' ', '', '0000-00-00', 12549, '', NULL), (12550, 2266, 'S/N #1,#2,#3, #4', 'Pine Instrument Gauge Blocks (Man Specs 0.1 % Accuracy)', 'Range: 1 in x 2in x 3 in', '2015-03-03', 12550, '3/3/2015', NULL), (12551, 2267, '', '', '', '0000-00-00', 12551, '', NULL), (12552, 2268, '', '', '', '0000-00-00', 12552, '', NULL), (12553, 2269, '', '', '', '0000-00-00', 12553, '', NULL), (12554, 2270, '', '', '', '0000-00-00', 12554, '', NULL), (12555, 2271, '', '', '', '0000-00-00', 12555, '', NULL), (12556, 2272, '', '', '', '0000-00-00', 12556, '', NULL), (12557, 2273, '', '', '', '0000-00-00', 12557, '', NULL), (12558, 2274, '', '', '', '0000-00-00', 12558, '', NULL), (12559, 2275, '', 'Putting in archived database.', '', '0000-00-00', 12559, '', NULL), (12560, 2276, '', 'Putting in archived database.', '', '0000-00-00', 12560, '', NULL), (12561, 2277, '', 'Putting in archived database.', '', '0000-00-00', 12561, '', NULL), (12562, 2278, '', 'ONLY SEND SOLICITATION LETTER ONCE NEEDS 5 WEEKS TO', '', '0000-00-00', 12562, '', NULL), (12563, 2279, '', '', '', '0000-00-00', 12563, '', NULL), (12564, 2280, '', '', '', '0000-00-00', 12564, '', NULL), (12565, 2281, 'S/N 157098', 'Five (5) Displacement Channels on Tinius Olsen--Model 5000', ' ', '2006-02-27', 12565, '2/27/2006', NULL), (12566, 2282, 'S/N 9878', 'Tinius Olsen Super L -Model AD Redcorder (Force) (E4-02)', 'Range 2.4/12/60/120K ID#25-REC01', '2005-03-30', 12566, '3/30/2005', NULL), (12567, 2283, '', '', '', '0000-00-00', 12567, '', NULL), (12568, 2284, 'S/N 270/946.67', ' with Range Card', 'Range: 10K ID#25-LC06RC03', '0000-00-00', 12568, '', NULL), (12569, 2285, 'S/N F13127', 'Hamilton Mdl P-4500 Spare Gauge #4 (E-4&PCI)', 'Range: 3.5K to 35K', '2007-07-09', 12569, '7/9/2007', NULL), (12570, 2286, '', 'Putting in archived database.', '', '0000-00-00', 12570, '', NULL), (12571, 2287, '', 'Putting in archived database.', '', '0000-00-00', 12571, '', NULL), (12572, 2288, '', 'Putting in archived database.', '', '0000-00-00', 12572, '', NULL), (12573, 2289, '', 'Putting in archived database.', '', '0000-00-00', 12573, '', NULL), (12574, 2290, '', 'Putting in archived database.', '', '0000-00-00', 12574, '', NULL), (12575, 2291, '', '', '', '0000-00-00', 12575, '', NULL), (12576, 2292, 'S/N PFS-02', 'TIF Electronic Mdl. 9010A Scale (moved) (E-898)', 'Range: 110 lbs ', '2011-02-15', 12576, '2/15/2011', NULL), (12577, 2293, '', '', '', '0000-00-00', 12577, '', NULL), (12578, 2294, '', '', '', '0000-00-00', 12578, '', NULL), (12579, 2295, '', 'Putting in archived database.', '', '0000-00-00', 12579, '', NULL), (12580, 2296, '', 'Putting in archived database.', '', '0000-00-00', 12580, '', NULL), (12581, 2297, '', '', '', '0000-00-00', 12581, '', NULL), (12582, 2298, '', '', '', '0000-00-00', 12582, '', NULL), (12583, 2299, '', '', '', '0000-00-00', 12583, '', NULL), (12584, 2300, '', 'Putting in archived database.', '', '0000-00-00', 12584, '', NULL), (12585, 2301, '', 'Putting in archived database.', '', '0000-00-00', 12585, '', NULL), (12586, 2302, '', 'Putting in archived database.', '', '0000-00-00', 12586, '', NULL), (12587, 2303, '', '', '', '0000-00-00', 12587, '', NULL), (12588, 2304, '', '', '', '0000-00-00', 12588, '', NULL), (12589, 2305, '', '', '', '0000-00-00', 12589, '', NULL), (12590, 2306, '', '', '', '0000-00-00', 12590, '', NULL), (12591, 2307, '', '', '', '0000-00-00', 12591, '', NULL), (12592, 2308, '', '', '', '0000-00-00', 12592, '', NULL), (12593, 2309, '', '', '', '0000-00-00', 12593, '', NULL), (12594, 2310, '', '', '', '0000-00-00', 12594, '', NULL), (12595, 2311, '', '', '', '0000-00-00', 12595, '', NULL), (12596, 2312, 'S/N G9945711', 'Gauge--Model A-21 (OOS) (E-4) ', 'Range: 1,000 lbs to 10,000 lbs', '2004-03-10', 12596, '3/10/2004', NULL), (12597, 2313, 'S/N 1123380795', 'Ohaus EP 32001C Scale (E-898)', 'Range: 32,000 Grams', '2011-03-29', 12597, '3/29/2011', NULL), (12598, 2314, 'S/N 022639523', 'CDI BG2110 Dial Indicator OOS (D-6027)', 'Range: 1 inch ', '2010-06-08', 12598, '6/8/2010', NULL), (12599, 2315, '', '', '', '0000-00-00', 12599, '', NULL), (12600, 2316, '', '', '', '0000-00-00', 12600, '', NULL), (12601, 2317, 'S/N 4673', ' w/United EZ 2-1 Extensometer - Channel #3 ', 'Range: 0.02 in/in (1\" GL) (E-83)', '2013-01-21', 12601, '1/21/2013', NULL), (12602, 2318, 'S/N 1155-14-13615', 'ELE 1155B0300 Shear Force Proving Ring (E-4 & ManSpec)', 'Range: 1K', '2010-10-20', 12602, '10/20/2010', NULL), (12603, 2319, '', '', '', '0000-00-00', 12603, '', NULL), (12604, 2320, '', '', '', '0000-00-00', 12604, '', NULL), (12605, 2321, 'S/N H-0311', 'Soiltest C-220 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-13', 12605, '5/13/2010', NULL), (12606, 2322, '', 'Putting in archived database; does not use equip. anymore', '', '0000-00-00', 12606, '', NULL), (12607, 2323, '', '', '', '0000-00-00', 12607, '', NULL), (12608, 2324, 'S/N 2250 (SOLD)', ' w/ Extensometer (E-83)', 'Range: 0.02 in/in (GL 2 Inch)', '2015-09-16', 12608, '9/16/2015', NULL), (12609, 2325, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 12609, '', NULL), (12610, 2326, '', '', '', '0000-00-00', 12610, '', NULL), (12611, 2327, '', '', '', '0000-00-00', 12611, '', NULL), (12612, 2328, 'S/N 515-1007193', 'Soiltest CT-711-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 600 lbs to 60K', '2010-08-03', 12612, '8/3/2010', NULL), (12613, 2329, '', 'Putting in archived database; does not use our company anymore.', '', '0000-00-00', 12613, '', NULL), (12614, 2330, '', '', '', '0000-00-00', 12614, '', NULL), (12615, 2331, '', '', '', '0000-00-00', 12615, '', NULL), (12616, 2332, '', 'Putting in archived database; current tour CUST# GEOTECHN2', '', '0000-00-00', 12616, '', NULL), (12617, 2333, '', '', '', '0000-00-00', 12617, '', NULL), (12618, 2334, '', ' e-mail invoice to essroc.usap@apconnected.com', 'only e-mail invoice don\'t mail original', '0000-00-00', 12618, '', NULL), (12619, 2335, '', '', '', '0000-00-00', 12619, '', NULL), (12620, 2336, '', 'Moving to archived database; uses other cal company now.', '', '0000-00-00', 12620, '', NULL), (12621, 2337, '', 'Moving to archived database; has not used us since 2009.', '', '0000-00-00', 12621, '', NULL), (12622, 2338, 'S/N T08046', 'Chatillon Hand Held Force Gauge T & C (E-4) ', 'Range: 500 lbs ', '2010-01-13', 12622, '1/13/2010', NULL), (12623, 2339, '', '', '', '0000-00-00', 12623, '', NULL), (12624, 2340, '', 'Legal for Trade Scales we can not preform there need to call', '', '0000-00-00', 12624, '', NULL), (12625, 2341, '', '', '', '0000-00-00', 12625, '', NULL), (12626, 2342, '', '', '', '0000-00-00', 12626, '', NULL), (12627, 2343, 'S/N 11772', 'Swiss Hammer Model N2-5 (C-805)', '', '2005-07-20', 12627, '7/20/2005', NULL), (12628, 2344, '', '', '', '0000-00-00', 12628, '', NULL), (12629, 2345, '', '', '', '0000-00-00', 12629, '', NULL), (12630, 2346, '', '', '', '0000-00-00', 12630, '', NULL), (12631, 2347, '', '', '', '0000-00-00', 12631, '', NULL), (12632, 2348, '', '', '', '0000-00-00', 12632, '', NULL), (12633, 2349, '', '', '', '0000-00-00', 12633, '', NULL), (12634, 2350, '', '', '', '0000-00-00', 12634, '', NULL), (12635, 2351, '', 'Putting in archived database.', '', '0000-00-00', 12635, '', NULL), (12636, 2352, '', '', '', '0000-00-00', 12636, '', NULL), (12637, 2353, '', '', '', '0000-00-00', 12637, '', NULL), (12638, 2354, '', '', '', '0000-00-00', 12638, '', NULL), (12639, 2355, '', '', '', '0000-00-00', 12639, '', NULL), (12640, 2356, '', '', '', '0000-00-00', 12640, '', NULL), (12641, 2357, '', 'Putting in archived database.', '', '0000-00-00', 12641, '', NULL), (12642, 2358, '', '', '', '0000-00-00', 12642, '', NULL), (12643, 2359, '', '', '', '0000-00-00', 12643, '', NULL), (12644, 2360, '', 'Putting in archived database since plant closed.', '', '0000-00-00', 12644, '', NULL), (12645, 2361, '', '', '', '0000-00-00', 12645, '', NULL), (12646, 2362, '', '', '', '0000-00-00', 12646, '', NULL), (12647, 2363, '', '', '', '0000-00-00', 12647, '', NULL), (12648, 2364, '', '', '', '0000-00-00', 12648, '', NULL), (12649, 2365, '', 'Putting in archived database.', '', '0000-00-00', 12649, '', NULL), (12650, 2366, '', '', '', '0000-00-00', 12650, '', NULL), (12651, 2367, '', '', '', '0000-00-00', 12651, '', NULL), (12652, 2368, '', 'Putting in archived database.', '', '0000-00-00', 12652, '', NULL), (12653, 2369, 'S/N 31872/51589', 'Enerpac Post Tension Jack (E-4&PCI)', 'Range: 3K / 35K ', '2009-04-14', 12653, '4/14/2009', NULL), (12654, 2370, '', '**Putting in archived database**', ' Send Certs to Job Site.', '0000-00-00', 12654, '', NULL), (12655, 2371, '', '', '', '0000-00-00', 12655, '', NULL), (12656, 2372, '', '', '', '0000-00-00', 12656, '', NULL), (12657, 2373, '', '', '', '0000-00-00', 12657, '', NULL), (12658, 2374, '', 'Putting in archived database; company out of business.', '', '0000-00-00', 12658, '', NULL), (12659, 2375, '', '', '', '0000-00-00', 12659, '', NULL), (12660, 2376, '', '', '', '0000-00-00', 12660, '', NULL), (12661, 2377, '', '', '', '0000-00-00', 12661, '', NULL), (12662, 2378, '', 'Putting in archived database.', '', '0000-00-00', 12662, '', NULL), (12663, 2379, '', '', '', '0000-00-00', 12663, '', NULL), (12664, 2380, '', 'Email copy of all certs to jackdetz@netzero.com', '', '0000-00-00', 12664, '', NULL), (12665, 2381, '', 'Email copy of all certs to jackdetz@netzero.com', '', '0000-00-00', 12665, '', NULL), (12666, 2382, '', 'Putting in archived database.', '', '0000-00-00', 12666, '', NULL), (12667, 2383, '', 'Email copy of all certs to jackdetz@netzero.com', '', '0000-00-00', 12667, '', NULL), (12668, 2384, '', 'Email copy of all certs to jackdetz@netzero.com', '', '0000-00-00', 12668, '', NULL), (12669, 2385, '', 'Email copy of all certs to jackdetz@netzero.com', '', '0000-00-00', 12669, '', NULL), (12670, 2386, '', '', '', '0000-00-00', 12670, '', NULL), (12671, 2387, '', 'Certifications in this Company name & address:', '', '0000-00-00', 12671, '', NULL), (12672, 2388, '', '', '', '0000-00-00', 12672, '', NULL), (12673, 2389, '', '', '', '0000-00-00', 12673, '', NULL), (12674, 2390, '', '', '', '0000-00-00', 12674, '', NULL), (12675, 2391, '', '', '', '0000-00-00', 12675, '', NULL), (12676, 2392, '', '', '', '0000-00-00', 12676, '', NULL), (12677, 2393, 'S/N 923378639', 'Brainard Kilman Dial Indicator (D-6027)', 'Range: 1 Inch', '2015-10-07', 12677, '10/7/2015', NULL), (12678, 2394, 'S/N 643 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel#3', 'Range: 150 PSI (D-5720)', '2015-10-07', 12678, '10/7/2015', NULL), (12679, 2395, '', '', '', '0000-00-00', 12679, '', NULL), (12680, 2396, 'S/N 004', ' w/ Dial Indicator Vertical Displacement (D-6027)', 'Range: 0.5 Inch', '2015-10-07', 12680, '10/7/2015', NULL), (12681, 2397, '', '', '', '0000-00-00', 12681, '', NULL), (12682, 2398, '', '', '', '0000-00-00', 12682, '', NULL), (12683, 2399, '', '', '', '0000-00-00', 12683, '', NULL), (12684, 2400, '', '', '', '0000-00-00', 12684, '', NULL), (12685, 2401, 'S/N A0501', ' w/Forney Compressometer (D-6027)', 'Range: 0.5 Inch', '2015-05-12', 12685, '5/12/2015', NULL), (12686, 2402, '', '', '', '0000-00-00', 12686, '', NULL), (12687, 2403, 'S/N N-187', ' w/Satec Model 2630 N Series Extensometer (E-83)', 'Range: 0.005 in/in to 0.5 in/in', '2012-01-03', 12687, '1/3/2012', NULL), (12688, 2404, '', 'Putting in archived database.', '', '0000-00-00', 12688, '', NULL), (12689, 2405, 'S/N 616017', ' w/ Interface SMT 1-11 10 lb T & C Load Cell (E-4)', 'Range: 0.1 lbs to 10 lbs (ID#CAL4004)', '2008-10-28', 12689, '10/28/2008', NULL), (12690, 2406, '', '', '', '0000-00-00', 12690, '', NULL), (12691, 2407, '', '', '', '0000-00-00', 12691, '', NULL), (12692, 2408, 'S/N 861', ' w/ Brainard-Kilman Digital Mdl. E-400', '', '0000-00-00', 12692, '', NULL), (12693, 2409, '', '', '', '0000-00-00', 12693, '', NULL), (12694, 2410, '', '', '', '0000-00-00', 12694, '', NULL), (12695, 2411, '', '', '', '0000-00-00', 12695, '', NULL), (12696, 2412, '', '', '', '0000-00-00', 12696, '', NULL), (12697, 2413, 'S/N 0991276', 'ELE Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 12697, '2/16/2011', NULL), (12698, 2414, '', '', '', '0000-00-00', 12698, '', NULL), (12699, 2415, '', '', '', '0000-00-00', 12699, '', NULL), (12700, 2416, '', 'Putting in archived database.', '', '0000-00-00', 12700, '', NULL), (12701, 2417, '', 'Putting in archived database.', '', '0000-00-00', 12701, '', NULL), (12702, 2418, '', '', '', '0000-00-00', 12702, '', NULL), (12703, 2419, '', '', '', '0000-00-00', 12703, '', NULL), (12704, 2420, '', '', '', '0000-00-00', 12704, '', NULL), (12705, 2421, '', ' Authorized for ACH Direct Deposit ', 'email invoice to kccap@kokosing.biz', '0000-00-00', 12705, '', NULL), (12706, 2422, '', '', '', '0000-00-00', 12706, '', NULL), (12707, 2423, '', '', '', '0000-00-00', 12707, '', NULL), (12708, 2424, '', '', '', '0000-00-00', 12708, '', NULL), (12709, 2425, '', '', '', '0000-00-00', 12709, '', NULL), (12710, 2426, '', '', '', '0000-00-00', 12710, '', NULL), (12711, 2427, '', '', '', '0000-00-00', 12711, '', NULL), (12712, 2428, '', '', '', '0000-00-00', 12712, '', NULL), (12713, 2429, 'S/N 050300000018', 'ELE Mdl. 78-0900 Double Proving Ring (E-4 & Manspec)', 'Range: 500 lbs', '2009-01-21', 12713, '1/21/2009', NULL), (12714, 2430, '', '', '', '0000-00-00', 12714, '', NULL), (12715, 2431, '', '', '', '0000-00-00', 12715, '', NULL), (12716, 2432, '', '', '', '0000-00-00', 12716, '', NULL), (12717, 2433, '', '', '', '0000-00-00', 12717, '', NULL), (12718, 2434, 'S/N', ' w/LVDT (D-6027)', 'Range: ', NULL, 12718, 'New', NULL), (12719, 2435, '', '', '', '0000-00-00', 12719, '', NULL), (12720, 2436, '', '', '', '0000-00-00', 12720, '', NULL), (12721, 2437, '', '', '', '0000-00-00', 12721, '', NULL), (12722, 2438, '', '', '', '0000-00-00', 12722, '', NULL), (12723, 2439, '', '', '', '0000-00-00', 12723, '', NULL), (12724, 2440, '', '', '', '0000-00-00', 12724, '', NULL), (12725, 2441, '', '', '', '0000-00-00', 12725, '', NULL), (12726, 2442, '', '', '', '0000-00-00', 12726, '', NULL), (12727, 2443, '', '', '', '0000-00-00', 12727, '', NULL), (12728, 2444, '', '', '', '0000-00-00', 12728, '', NULL), (12729, 2445, '', '', '', '0000-00-00', 12729, '', NULL), (12730, 2446, 'S/N 11772', 'Swiss Hammer Model N2-5 (C-805) (SOLD)', '', '2005-07-20', 12730, '7/20/2005', NULL), (12731, 2447, '', '', '', '0000-00-00', 12731, '', NULL), (12732, 2448, '', 'Need Tool & new holding stem, top head needs new bolt &', '', '0000-00-00', 12732, '', NULL), (12733, 2449, '', '', '', '0000-00-00', 12733, '', NULL), (12734, 2450, '', '', '', '0000-00-00', 12734, '', NULL), (12735, 2451, '', '', '', '0000-00-00', 12735, '', NULL), (12736, 2452, '', '', '', '0000-00-00', 12736, '', NULL), (12737, 2453, '', '', '', '0000-00-00', 12737, '', NULL), (12738, 2454, '', '', '', '0000-00-00', 12738, '', NULL), (12739, 2455, '', '', '', '0000-00-00', 12739, '', NULL), (12740, 2456, '', '', '', '0000-00-00', 12740, '', NULL), (12741, 2457, '', '', '', '0000-00-00', 12741, '', NULL), (12742, 2458, '', '', '', '0000-00-00', 12742, '', NULL), (12743, 2459, '', '', '', '0000-00-00', 12743, '', NULL), (12744, 2460, '', '', '', '0000-00-00', 12744, '', NULL), (12745, 2461, '', ' w/ Plus / Minus Y Axis ', 'Range: -2.25 to +2.25', '2012-03-13', 12745, '3/13/2012', NULL), (12746, 2462, '', ' w/ Minus X Axis - T & C', 'Range: 50K', '2012-03-12', 12746, '3/12/2012', NULL), (12747, 2463, '', '', '', '0000-00-00', 12747, '', NULL), (12748, 2464, '', '', '', '0000-00-00', 12748, '', NULL), (12749, 2465, 'S/N Ram 4', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 12749, '6/29/2011', NULL), (12750, 2466, 'S/N 602', 'Extra Gauge Prepull w/Jack #5 (E-4 & PCI)', 'Range: 4K', '2008-07-29', 12750, '7/29/2008', NULL), (12751, 2467, '', '2014 Replace Broken Case -Chrome Ring on back of Gauge Cracked', '', '0000-00-00', 12751, '', NULL), (12752, 2468, '', 'Certs to billing attn: Mark Moyer', '', '0000-00-00', 12752, '', NULL), (12753, 2469, '', '', '', '0000-00-00', 12753, '', NULL), (12754, 2470, '', '', '', '0000-00-00', 12754, '', NULL), (12755, 2471, '', '', '', '0000-00-00', 12755, '', NULL), (12756, 2472, '', '', '', '0000-00-00', 12756, '', NULL), (12757, 2473, 'S/N HSZ179', 'Mitutoya Mdl. 2416S Dial Indicator (D-6027)', 'Range: 1 inch ', '2008-07-24', 12757, '7/24/2008', NULL), (12758, 2474, 'S/N TM-0104-0', ' w/ Forney Compressometer LVDT (D-6027)', 'Range: 0.02 inches ', '2010-01-14', 12758, '1/14/2010', NULL), (12759, 2475, '', '', '', '0000-00-00', 12759, '', NULL), (12760, 2476, '', '', '', '0000-00-00', 12760, '', NULL), (12761, 2477, 'S/N 3348', 'Wykeham-Farrance Single Proving Ring (E-4 & Man Specs) ', 'Range: 1,000 lbs', '2015-03-12', 12761, '3/12/2015', NULL), (12762, 2478, '', '', '', '0000-00-00', 12762, '', NULL), (12763, 2479, '', '', '', '0000-00-00', 12763, '', NULL), (12764, 2480, 'S/N 00071-0610163', 'Forney F-502F-CS-100-2 Digital Compression Machine (E-4)', 'Range: 5K to 500K', '2011-10-18', 12764, '10/18/2011', NULL), (12765, 2481, 'S/N 360', ' w/Durham Geo LVDT (Remove from machine to Cal) (E-2309)', 'Range: 4 Inch', '2007-10-24', 12765, '10/24/2007', NULL), (12766, 2482, '', '', '', '0000-00-00', 12766, '', NULL), (12767, 2483, 'S/N 731', 'Rainhart 416 Beam Tester (E-4) ', 'Range: 1k - 12k (OUT OF SERVICE)', '2004-06-02', 12767, '6/2/2004', NULL), (12768, 2484, 'S/N 5', 'Geocomp LVDT (Channel 3 LVDT 3) (OOS) (D-6027)', 'Range: 1 inch', '2007-05-29', 12768, '5/29/2007', NULL), (12769, 2485, 'S/N EZ2683', 'Geotac Load Cell w/ Geotest IndicatorModel 363-B6-2K-20Pl (E-4)', 'Range: 2K (Out of Service)', '2004-06-01', 12769, '6/1/2004', NULL), (12770, 2486, '', '', '', '0000-00-00', 12770, '', NULL), (12771, 2487, 'S/N 101', 'Ohaus 2610G 700 Series Scale (E-898)', 'Range: 1 Gram to 650 Gram', '2008-06-05', 12771, '6/5/2008', NULL), (12772, 2488, '', 'ACH Payment Program', '', '0000-00-00', 12772, '', NULL), (12773, 2489, '', '', '', '0000-00-00', 12773, '', NULL), (12774, 2490, '', '', '', '0000-00-00', 12774, '', NULL), (12775, 2491, 'S/N 588047', 'ELE Pressure Transducer--Channel# 12 (D-5720)', 'Range: 150 psi', '2008-11-18', 12775, '11/18/2008', NULL), (12776, 2492, 'S/N1155-12-11607', 'with ELE Proving Ring & LVDT Unit Channel 16 (E-4)', 'Range: 450 lbs', '2008-11-24', 12776, '11/24/2008', NULL), (12777, 2493, 'S/N 510', ' w/ Deflection (Calibrate in Ascending & Decending)', 'Range:1/8 TSF to 16 TSF(Aashto T-236)', '2009-08-06', 12777, '8/6/2009', NULL), (12778, 2494, '', '', 'Putting in archived database.', '0000-00-00', 12778, '', NULL), (12779, 2495, '', '', '', '0000-00-00', 12779, '', NULL), (12780, 2496, '', '', '', '0000-00-00', 12780, '', NULL), (12781, 2497, '', '', '', '0000-00-00', 12781, '', NULL), (12782, 2498, '', '', '', '0000-00-00', 12782, '', NULL), (12783, 2499, '', '', '', '0000-00-00', 12783, '', NULL), (12784, 2500, '', '', '', '0000-00-00', 12784, '', NULL), (12785, 2501, '', '', '', '0000-00-00', 12785, '', NULL), (12786, 2502, '', '', '', '0000-00-00', 12786, '', NULL), (12787, 2503, '', '', '', '0000-00-00', 12787, '', NULL), (12788, 2504, '', '', '', '0000-00-00', 12788, '', NULL), (12789, 2505, '', '', 'Certs to Jobsite', '0000-00-00', 12789, '', NULL), (12790, 2506, 'S/N 89967 ', 'HCS LC-40 Hydraulic Load Cell OOS (E-4 & 2%)(NC#14)', 'Range: 40K ', '2009-01-26', 12790, '1/26/2009', NULL), (12791, 2507, 'S/N 2229/1066 Digital', ' Digital Serial Number ', '', '0000-00-00', 12791, '', NULL), (12792, 2508, 'S/N 219622', ' w/Vertical Displacement (D-6027)', 'Range: 0.04 inch to 0.4 inch', '2006-09-12', 12792, '9/12/2006', NULL), (12793, 2509, '', ' ELE Tritest 50 Linear Transducer', '', '0000-00-00', 12793, '', NULL), (12794, 2510, '', '', '', '0000-00-00', 12794, '', NULL), (12795, 2511, 'S/N PT-2', 'Stressing Jack Power Team', 'Range: 40,000 K (6,600 PSI)', '2013-01-03', 12795, '1/3/2013', NULL), (12796, 2512, 'S/N LVDT 4 (Strain)', 'Macrosensor CD-375-500 Extensometer Frame 875 (ISO-9513) ', 'Range: Tension 0.05 Inch/Comp. 0.5 Inch ', '2007-05-07', 12796, '5/7/2007', NULL), (12797, 2513, '', '', '', '0000-00-00', 12797, '', NULL), (12798, 2514, '', '', '', '0000-00-00', 12798, '', NULL), (12799, 2515, '', '', '', '0000-00-00', 12799, '', NULL), (12800, 2516, '', '', 'Putting in archived database.', '0000-00-00', 12800, '', NULL), (12801, 2517, '', '', 'Putting in archived database.', '0000-00-00', 12801, '', NULL), (12802, 2518, '', 'If Out of Tolerance Highlight all figures that are out on Cert', '', '0000-00-00', 12802, '', NULL), (12803, 2519, 'S/N 2970575', ' w/Load Cell', '', '0000-00-00', 12803, '', NULL), (12804, 2520, '', '', '', '0000-00-00', 12804, '', NULL), (12805, 2521, '', '', '', '0000-00-00', 12805, '', NULL), (12806, 2522, '', '', '', '0000-00-00', 12806, '', NULL), (12807, 2523, '', '', '', '0000-00-00', 12807, '', NULL), (12808, 2524, '', '', '', '0000-00-00', 12808, '', NULL), (12809, 2525, '', '', '', '0000-00-00', 12809, '', NULL), (12810, 2526, '', '', '', '0000-00-00', 12810, '', NULL), (12811, 2527, '', '', '', '0000-00-00', 12811, '', NULL), (12812, 2528, '', '', '', '0000-00-00', 12812, '', NULL), (12813, 2529, '', '', '', '0000-00-00', 12813, '', NULL), (12814, 2530, '', '', '', '0000-00-00', 12814, '', NULL), (12815, 2531, '', '', '', '0000-00-00', 12815, '', NULL), (12816, 2532, '', '', '', '0000-00-00', 12816, '', NULL), (12817, 2533, '', '', '', '0000-00-00', 12817, '', NULL), (12818, 2534, '', '', '', '0000-00-00', 12818, '', NULL), (12819, 2535, '', '', 'Putting in archived database.', '0000-00-00', 12819, '', NULL), (12820, 2536, '', '', 'Putting in archived database.', '0000-00-00', 12820, '', NULL), (12821, 2537, 'S/N 3491 (ID# Q-1981)', 'Ohaus Cent-O-Gram Scale (E-898)', 'Range: 1 Grams to 311 Grams ', '2013-01-22', 12821, '1/22/2013', NULL), (12822, 2538, 'S/N 111111000161', 'TIF Mdl. 9010A Scale (ID# Q-3771) (E-898)', 'Range: 1lb to 110 lbs', '2016-01-19', 12822, '1/19/2016', NULL), (12823, 2539, 'S/N 1676', 'Rainhart 416 Beam Breaker ID # RKSW-012 (E-4 & 2%)', 'Range: 12K ', '2014-02-04', 12823, '2/4/2014', NULL), (12824, 2540, '', '', '', '0000-00-00', 12824, '', NULL), (12825, 2541, '', '', '', '0000-00-00', 12825, '', NULL), (12826, 2542, '', '', '', '0000-00-00', 12826, '', NULL), (12827, 2543, '', '', '', '0000-00-00', 12827, '', NULL), (12828, 2544, '', '', '', '0000-00-00', 12828, '', NULL), (12829, 2545, '', '', '', '0000-00-00', 12829, '', NULL), (12830, 2546, '', '', '', '0000-00-00', 12830, '', NULL), (12831, 2547, '', '', 'Putting in archived database.', '0000-00-00', 12831, '', NULL), (12832, 2548, '', '', '', '0000-00-00', 12832, '', NULL), (12833, 2549, '', '', '', '0000-00-00', 12833, '', NULL), (12834, 2550, '', '', '', '0000-00-00', 12834, '', NULL), (12835, 2551, '', '', '', '0000-00-00', 12835, '', NULL), (12836, 2552, '', '', '', '0000-00-00', 12836, '', NULL), (12837, 2553, 'S/N A81547', ' w/ Displacement (E-2309)', 'Range: 5 inches ', '2009-02-17', 12837, '2/17/2009', NULL), (12838, 2554, '', '', '', '0000-00-00', 12838, '', NULL), (12839, 2555, '', '', '', '0000-00-00', 12839, '', NULL), (12840, 2556, '', '', '', '0000-00-00', 12840, '', NULL), (12841, 2557, '', '', '', '0000-00-00', 12841, '', NULL), (12842, 2558, '', '', '', '0000-00-00', 12842, '', NULL), (12843, 2559, '', '*MUST CALL PRIOR TO LET THEM KNOW DAY & WHAT NEEDS', 'DONE PRIOR TO OUR ARRIVAL', '0000-00-00', 12843, '', NULL), (12844, 2560, '', '', '', '0000-00-00', 12844, '', NULL), (12845, 2561, '', '', '', '0000-00-00', 12845, '', NULL), (12846, 2562, '', '', '', '0000-00-00', 12846, '', NULL), (12847, 2563, '', '', '', '0000-00-00', 12847, '', NULL), (12848, 2564, 'S/N 9522', 'ELE Soiltest Model G-9000 Versa Loader (E-4)', 'Range:', NULL, 12848, 'New', NULL), (12849, 2565, '', '', '', '0000-00-00', 12849, '', NULL), (12850, 2566, '', '', '', '0000-00-00', 12850, '', NULL), (12851, 2567, '', '', '', '0000-00-00', 12851, '', NULL), (12852, 2568, '', '', '', '0000-00-00', 12852, '', NULL), (12853, 2569, 'S/N 102', 'Dwyer DPGW-00 Vacuum Gauge (D-5720)', 'Range: 30 inHg (OOS)', '2012-05-02', 12853, '5/2/2012', NULL), (12854, 2570, '', '', '', '0000-00-00', 12854, '', NULL), (12855, 2571, '', '', '', '0000-00-00', 12855, '', NULL), (12856, 1, 'S/N', 'Brainard Kilman S-610-Load Cell (E-4)', 'Range:', NULL, 12856, 'New', NULL), (12857, 2, '', '', '', '0000-00-00', 12857, '', NULL), (12858, 3, '', '', '', '0000-00-00', 12858, '', NULL), (12859, 4, 'S/N 136596', ' w/ Load Cell (ID# 1-1003) (E-4)', 'Range: 5K (Compression Only)', '2010-02-24', 12859, '2/24/2010', NULL), (12860, 5, 'S/N A10088', 'Geotest CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K', '2007-01-05', 12860, '1/5/2007', NULL), (12861, 6, '', '', '', '0000-00-00', 12861, '', NULL), (12862, 7, '', '', '', '0000-00-00', 12862, '', NULL), (12863, 8, 'S/N C3490C', 'Enerpac RC-102 10 Ton Ram (E-4 & Man Specs)', 'Range: 20K (9,200 PSI)', '2013-05-08', 12863, '5/8/2013', NULL), (12864, 9, 'S/N 571/1182 ', 'Durham Geo Pressure Transducer w/ E-405 Digital (D-5720)', 'Range: 200 PSI (Channel #3)', '2009-05-19', 12864, '5/19/2009', NULL), (12865, 10, 'S/N 01275243', 'Eilon Engineering RON 2000 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Metric Ton', '2008-05-09', 12865, '5/9/2008', NULL), (12866, 11, '', '', '', '0000-00-00', 12866, '', NULL), (12867, 12, '', '', '', '0000-00-00', 12867, '', NULL), (12868, 13, '', '', '', '0000-00-00', 12868, '', NULL), (12869, 14, 'S/N 114875/A', 'NovoTechnick LVDT (D-6027)', 'Range: 1 inch', '2013-05-13', 12869, '5/13/2013', NULL), (12870, 15, 'S/N 1303924', ' w/ Humboldt Load Cell Channel #3 (E-4)', 'Range: 2K', '2013-05-13', 12870, '5/13/2013', NULL), (12871, 16, '', '', '', '0000-00-00', 12871, '', NULL), (12872, 17, '', '', '', '0000-00-00', 12872, '', NULL), (12873, 18, '', '', '', '0000-00-00', 12873, '', NULL), (12874, 19, 'S/N 82475', 'Transducer Techniques Load Cell Model LBO-100 (E-4) ', 'Range: 100 lbs', '2007-05-14', 12874, '5/14/2007', NULL), (12875, 20, '', '', '', '0000-00-00', 12875, '', NULL), (12876, 21, '', '', '', '0000-00-00', 12876, '', NULL), (12877, 22, '', '', '', '0000-00-00', 12877, '', NULL), (12878, 23, '', '', '', '0000-00-00', 12878, '', NULL), (12879, 24, '', '', '', '0000-00-00', 12879, '', NULL), (12880, 25, '', '', '', '0000-00-00', 12880, '', NULL), (12881, 26, '', '', '', '0000-00-00', 12881, '', NULL), (12882, 27, '', '', '', '0000-00-00', 12882, '', NULL), (12883, 28, '', '', '', '0000-00-00', 12883, '', NULL), (12884, 29, '', '', '', '0000-00-00', 12884, '', NULL), (12885, 30, '', '', '', '0000-00-00', 12885, '', NULL), (12886, 31, '', '', '', '0000-00-00', 12886, '', NULL), (12887, 32, '', '', '', '0000-00-00', 12887, '', NULL), (12888, 33, '', '', '', '0000-00-00', 12888, '', NULL), (12889, 34, '', '', '', '0000-00-00', 12889, '', NULL), (12890, 35, '', '', '', '0000-00-00', 12890, '', NULL), (12891, 36, '', '', '', '0000-00-00', 12891, '', NULL), (12892, 37, '', '', '', '0000-00-00', 12892, '', NULL), (12893, 38, '', ' ***Need 24 Hour notice to have check ready***', '', '0000-00-00', 12893, '', NULL), (12894, 39, '', '', '', '0000-00-00', 12894, '', NULL), (12895, 40, '', '', '', '0000-00-00', 12895, '', NULL), (12896, 41, '', '', '', '0000-00-00', 12896, '', NULL), (12897, 42, '', '', '', '0000-00-00', 12897, '', NULL), (12898, 43, '', '', '', '0000-00-00', 12898, '', NULL), (12899, 44, '', '', '', '0000-00-00', 12899, '', NULL), (12900, 45, '', '', '', '0000-00-00', 12900, '', NULL), (12901, 46, '', '', '', '0000-00-00', 12901, '', NULL), (12902, 47, '', '', '', '0000-00-00', 12902, '', NULL), (12903, 48, '', '', '', '0000-00-00', 12903, '', NULL), (12904, 49, '', '', '', '0000-00-00', 12904, '', NULL), (12905, 50, '', '', '', '0000-00-00', 12905, '', NULL), (12906, 51, '', '', '', '0000-00-00', 12906, '', NULL), (12907, 52, '', '', '', '0000-00-00', 12907, '', NULL), (12908, 53, 'S/N 516', '', 'Cap: 150 psi #4', '2006-10-10', 12908, '10/10/2006', NULL), (12909, 54, 'S/N ', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 200 PSI', NULL, 12909, 'New', NULL), (12910, 55, '', '', '', '0000-00-00', 12910, '', NULL), (12911, 56, 'S/N Unknown ', 'Geotest Pressure Transducer (D-5720)', 'Range: 100 PSI', '2012-11-06', 12911, '11/6/2012', NULL), (12912, 57, '', '', '', '0000-00-00', 12912, '', NULL), (12913, 58, '', '', '', '0000-00-00', 12913, '', NULL), (12914, 59, '', '', '', '0000-00-00', 12914, '', NULL), (12915, 60, 'S/N 19901', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 6K', '2012-11-27', 12915, '11/27/2012', NULL), (12916, 61, 'S/N 981691957', 'Humboldt BG2720-0-16 Dial Indicator (D-6027)', 'Range: 2 inches', '2012-11-27', 12916, '11/27/2012', NULL), (12917, 62, 'S/N 1004326 (Pres. 5)', 'Humboldt HM-2325A Mini Logger w/ Pressure Transducer HM-4170', 'Range: 100 PSI (PT S/N 136303)(D-5720)', '2012-11-29', 12917, '11/29/2012', NULL), (12918, 63, '', '', '', '0000-00-00', 12918, '', NULL), (12919, 64, '', '', '', '0000-00-00', 12919, '', NULL), (12920, 65, '', '', '', '0000-00-00', 12920, '', NULL), (12921, 66, '', '', '', '0000-00-00', 12921, '', NULL), (12922, 67, '', '', '', '0000-00-00', 12922, '', NULL), (12923, 68, 'S/N 70126', 'Marshalltown Gauge (ASME Grade B)', 'Range: 35 in H20', '2008-11-20', 12923, '11/20/2008', NULL), (12924, 69, '', '', '', '0000-00-00', 12924, '', NULL), (12925, 70, '', '', '', '0000-00-00', 12925, '', NULL), (12926, 71, '', '', '', '0000-00-00', 12926, '', NULL), (12927, 72, '', '', '', '0000-00-00', 12927, '', NULL), (12928, 73, '', '', '', '0000-00-00', 12928, '', NULL), (12929, 74, '', '', '', '0000-00-00', 12929, '', NULL), (12930, 75, '', '', '', '0000-00-00', 12930, '', NULL), (12931, 76, '', '', '', '0000-00-00', 12931, '', NULL), (12932, 77, '', '', '', '0000-00-00', 12932, '', NULL), (12933, 78, '', '', '', '0000-00-00', 12933, '', NULL), (12934, 79, 'S/N 543982', 'Digital Readout GSE-350 w/ Rice Lake RL2000A-20K LC (E-4)', 'Range: 20K LC: S/N A71197', NULL, 12934, 'New', NULL), (12935, 80, '', '', '', '0000-00-00', 12935, '', NULL), (12936, 81, '', '', '', '0000-00-00', 12936, '', NULL), (12937, 82, 'S/N NR3 (ID# Q-1934)', 'Ohaus Heavy Duty Solution Balance Scale (E-898)', 'Range: 10 Kg to 20,000 Kg', '2008-01-28', 12937, '1/28/2008', NULL), (12938, 83, '', '', '', '0000-00-00', 12938, '', NULL), (12939, 84, '', '', '', '0000-00-00', 12939, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (12940, 85, '', '', '', '0000-00-00', 12940, '', NULL), (12941, 86, '', '', '', '0000-00-00', 12941, '', NULL), (12942, 87, '', '', '', '0000-00-00', 12942, '', NULL), (12943, 88, '', '', '', '0000-00-00', 12943, '', NULL), (12944, 89, '', '', '', '0000-00-00', 12944, '', NULL), (12945, 90, '', '', '', '0000-00-00', 12945, '', NULL), (12946, 91, 'S/N 578232', 'ELE Pressure Transducer--Channel# 13 (D-5720)', 'Range: 150 psi', '2008-11-18', 12946, '11/18/2008', NULL), (12947, 92, 'S/N M848560-21', 'ELE LVDT-Channel 15 (D-6027)', 'Range: 1 inch', '2008-11-17', 12947, '11/17/2008', NULL), (12948, 93, '', '', '', '0000-00-00', 12948, '', NULL), (12949, 94, '', '', '', '0000-00-00', 12949, '', NULL), (12950, 95, '', '', '', '0000-00-00', 12950, '', NULL), (12951, 96, '', '', '', '0000-00-00', 12951, '', NULL), (12952, 97, '', '', '', '0000-00-00', 12952, '', NULL), (12953, 98, '', '', '', '0000-00-00', 12953, '', NULL), (12954, 99, '', '', '', '0000-00-00', 12954, '', NULL), (12955, 100, '', '', '', '0000-00-00', 12955, '', NULL), (12956, 101, '', '', '', '0000-00-00', 12956, '', NULL), (12957, 102, '', '', '', '0000-00-00', 12957, '', NULL), (12958, 103, '', '', '', '0000-00-00', 12958, '', NULL), (12959, 104, '', '', '', '0000-00-00', 12959, '', NULL), (12960, 105, 'S/N 3348', 'Wykeham-Farrance Single Proving Ring (E-4 & Man Specs) ', 'Range: 1,000 lbs', '2013-03-12', 12960, '3/12/2013', NULL), (12961, 106, '', '', '', '0000-00-00', 12961, '', NULL), (12962, 107, '', '', '', '0000-00-00', 12962, '', NULL), (12963, 108, 'S/N 990311', ' w/Karol Warner Direct Shear Pressure Transducer (D-5720)', 'Range: 100 PSI', '2012-03-21', 12963, '3/21/2012', NULL), (12964, 109, 'S/N 0710SBALH01002', 'CAS Mdl. SBA-10KLB-I Load Cell (E-4)', 'Range: 10K', '2009-04-21', 12964, '4/21/2009', NULL), (12965, 110, '', '', '', '0000-00-00', 12965, '', NULL), (12966, 111, '', '', '', '0000-00-00', 12966, '', NULL), (12967, 112, '', '', '', '0000-00-00', 12967, '', NULL), (12968, 113, '', '', '', '0000-00-00', 12968, '', NULL), (12969, 114, '', '', '', '0000-00-00', 12969, '', NULL), (12970, 115, '', '', '', '0000-00-00', 12970, '', NULL), (12971, 116, '', '***Mail Certs to Bill To Address c/o William Dunn***', '', '0000-00-00', 12971, '', NULL), (12972, 117, '', '', '', '0000-00-00', 12972, '', NULL), (12973, 118, '', '', '', '0000-00-00', 12973, '', NULL), (12974, 119, '', '', '', '0000-00-00', 12974, '', NULL), (12975, 120, '', ' ***Send cert Attn: Gary Putt to Bill Site ***', '', '0000-00-00', 12975, '', NULL), (12976, 121, 'S/N 03/16641-3', 'Paul Prestress Jack w/ Digital Display (E-4 & PCI)', 'Range: 3K / 30K ', '2007-03-08', 12976, '3/8/2007', NULL), (12977, 122, '', '', '', '0000-00-00', 12977, '', NULL), (12978, 123, '', '', '', '0000-00-00', 12978, '', NULL), (12979, 124, '', '', '', '0000-00-00', 12979, '', NULL), (12980, 125, 'S/N SL-CM-001', ' w/ Speed Control (E2658-11)', 'Range: 0.050 in/min - 0.5 in/min', '2013-04-16', 12980, '4/16/2013', NULL), (12981, 126, '', '', '', '0000-00-00', 12981, '', NULL), (12982, 127, 'S/N 3033586/11', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 30 Tons', '2004-12-01', 12982, '12/1/2004', NULL), (12983, 128, '', '', '', '0000-00-00', 12983, '', NULL), (12984, 129, '', '', '', '0000-00-00', 12984, '', NULL), (12985, 130, 'S/N 12757', 'Brainard-Kilman CBR Tester (Not Done)', 'Range:', NULL, 12985, 'New', NULL), (12986, 131, '', '', '', '0000-00-00', 12986, '', NULL), (12987, 132, '', '', '', '0000-00-00', 12987, '', NULL), (12988, 133, '', '', '', '0000-00-00', 12988, '', NULL), (12989, 134, '', '', '', '0000-00-00', 12989, '', NULL), (12990, 135, '', '', '', '0000-00-00', 12990, '', NULL), (12991, 136, '', '', '', '0000-00-00', 12991, '', NULL), (12992, 137, '', '', '', '0000-00-00', 12992, '', NULL), (12993, 138, '', '', '', '0000-00-00', 12993, '', NULL), (12994, 139, '', '', '', '0000-00-00', 12994, '', NULL), (12995, 140, 'S/N 165744', 'Tinus Olsen Extensometer Mechanical (E-83)', 'Range: 0.005 in/in 2.0\"G.L. 0.01 in travel', '2012-06-01', 12995, '6/1/2012', NULL), (12996, 141, '', '', '', '0000-00-00', 12996, '', NULL), (12997, 142, '', '', '', '0000-00-00', 12997, '', NULL), (12998, 143, '', '', '', '0000-00-00', 12998, '', NULL), (12999, 144, '', '', '', '0000-00-00', 12999, '', NULL), (13000, 145, '', '', '', '0000-00-00', 13000, '', NULL), (13001, 146, '', 'Send Certs to Billing Address', '', '0000-00-00', 13001, '', NULL), (13002, 147, '', '', '', '0000-00-00', 13002, '', NULL), (13003, 148, '', '', '', '0000-00-00', 13003, '', NULL), (13004, 149, '', '', '', '0000-00-00', 13004, '', NULL), (13005, 150, '', '', '', '0000-00-00', 13005, '', NULL), (13006, 151, 'S/N 6461', 'Soiltest Double Proving Ring (OUT OF SERVICE)(E-4 & Man Specs)', 'Cap: 1,500 lbs', '2004-05-17', 13006, '5/17/2004', NULL), (13007, 152, '', '', '', '0000-00-00', 13007, '', NULL), (13008, 153, '', '', '', '0000-00-00', 13008, '', NULL), (13009, 154, '', '', '', '0000-00-00', 13009, '', NULL), (13010, 155, '', '', '', '0000-00-00', 13010, '', NULL), (13011, 156, '', '', '', '0000-00-00', 13011, '', NULL), (13012, 157, '', '', '', '0000-00-00', 13012, '', NULL), (13013, 158, '', '', '', '0000-00-00', 13013, '', NULL), (13014, 159, '', '', '', '0000-00-00', 13014, '', NULL), (13015, 160, 'S/N 189092', 'Artech Load Cell w/ Master Logger 200 (OUT OF SERVICE) (E-4) ', 'Cap: 2,000 lbs ', '2005-06-14', 13015, '6/14/2005', NULL), (13016, 161, '', '', '', '0000-00-00', 13016, '', NULL), (13017, 162, '', '', '', '0000-00-00', 13017, '', NULL), (13018, 163, '', '', '', '0000-00-00', 13018, '', NULL), (13019, 164, '', '', '', '0000-00-00', 13019, '', NULL), (13020, 165, 'S/N 96517', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2012-07-17', 13020, '7/17/2012', NULL), (13021, 166, 'S/N 01083063', 'Eilon Engineering RON 3050 CW-10 Load Cell (ManSp & 0.1% FS)', 'Range: 20K', '2009-09-11', 13021, '9/11/2009', NULL), (13022, 167, '', 'Ship 6 sets of seals to Layne Miller, One Front Street, Meshoppen, PA ', '18630', '0000-00-00', 13022, '', NULL), (13023, 168, '', '', '', '0000-00-00', 13023, '', NULL), (13024, 169, 'S/N JQN140', 'Mitutoya Mdl. 2416S Dial Indicator (D-6027)', 'Range: 1 inch ', '2008-07-11', 13024, '7/11/2008', NULL), (13025, 170, '', '', '', '0000-00-00', 13025, '', NULL), (13026, 171, 'S/N 0055', 'VSL Bond Tester (Moved to Elkridge, MD) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-23', 13026, '7/23/2009', NULL), (13027, 172, 'S/N 0014', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-23', 13027, '7/23/2009', NULL), (13028, 173, '', '', '', '0000-00-00', 13028, '', NULL), (13029, 174, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 13029, '', NULL), (13030, 175, 'S/N 18500', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2013-08-21', 13030, '8/21/2013', NULL), (13031, 176, '', '', '', '0000-00-00', 13031, '', NULL), (13032, 177, '', '', '', '0000-00-00', 13032, '', NULL), (13033, 178, '', '', '', '0000-00-00', 13033, '', NULL), (13034, 179, '', '', '', '0000-00-00', 13034, '', NULL), (13035, 180, '', '', '', '0000-00-00', 13035, '', NULL), (13036, 181, '', '', '', '0000-00-00', 13036, '', NULL), (13037, 182, '', '', '', '0000-00-00', 13037, '', NULL), (13038, 183, '', '', '', '0000-00-00', 13038, '', NULL), (13039, 184, '', '', '', '0000-00-00', 13039, '', NULL), (13040, 185, '', '', '', '0000-00-00', 13040, '', NULL), (13041, 186, '', '', '', '0000-00-00', 13041, '', NULL), (13042, 187, '', '', '', '0000-00-00', 13042, '', NULL), (13043, 188, '', '', '', '0000-00-00', 13043, '', NULL), (13044, 189, '', '', '', '0000-00-00', 13044, '', NULL), (13045, 190, '', '', '', '0000-00-00', 13045, '', NULL), (13046, 191, 'S/N 804179 (ID# 0304)', 'Humboldt HM-3000 3.F Triaxial Press (E-4)', '', '0000-00-00', 13046, '', NULL), (13047, 192, '', '', '', '0000-00-00', 13047, '', NULL), (13048, 193, 'S/N GZR095', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2012-10-16', 13048, '10/16/2012', NULL), (13049, 194, '', 'Moved to New Jersey-Does not want done.', '', '0000-00-00', 13049, '', NULL), (13050, 195, '', '', '', '0000-00-00', 13050, '', NULL), (13051, 196, 'S/N E-84406', ' w/ Epsilon 3542-0100-050-ST Extensometer (E-83)', 'Range: 0.5 in/in (GL 1 inch)', '2008-10-28', 13051, '10/28/2008', NULL), (13052, 197, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 13052, '', NULL), (13053, 198, 'S/N 50120', 'Schmidt N-20 Hammer (C-805) (Out of Service) ', 'Range: 78 - 82', '2004-11-03', 13053, '11/3/2004', NULL), (13054, 199, '', '', '', '0000-00-00', 13054, '', NULL), (13055, 200, 'S/N 90007003', 'ComTen 955KRC03005K Digital Test System (OOS) (E-4)', 'Range: 5K / 400 lbs. / 40 lbs.', '2007-12-05', 13055, '12/5/2007', NULL), (13056, 201, '', '', '', '0000-00-00', 13056, '', NULL), (13057, 202, '', '', '', '0000-00-00', 13057, '', NULL), (13058, 203, '', '', '', '0000-00-00', 13058, '', NULL), (13059, 204, '', '', '', '0000-00-00', 13059, '', NULL), (13060, 205, '', '', '', '0000-00-00', 13060, '', NULL), (13061, 206, '', '', '', '0000-00-00', 13061, '', NULL), (13062, 207, '', '', '', '0000-00-00', 13062, '', NULL), (13063, 208, '', '', '', '0000-00-00', 13063, '', NULL), (13064, 209, '', '', '', '0000-00-00', 13064, '', NULL), (13065, 210, '', '', '', '0000-00-00', 13065, '', NULL), (13066, 211, '', '', '', '0000-00-00', 13066, '', NULL), (13067, 212, '', '', '', '0000-00-00', 13067, '', NULL), (13068, 213, 'S/N 63191 (ID#C8201) ', 'Forney LT-900-Precise Universal Testing Machine (E-4)', 'Range: 3K to 400K ', '0000-00-00', 13068, '', NULL), (13069, 214, 'S/N 12AE', ' w/ Simplex RP3A-1 Ram (E-4 & PCI)', 'Range: 40K (8,500 psi)', '2013-01-14', 13069, '1/14/2013', NULL), (13070, 215, 'S/N 104', 'Soiltest Model CT-2520 Compression Machine (E-4) ', 'Range: 30K / 250K ', '2004-02-11', 13070, '2/11/2004', NULL), (13071, 216, '', '', '', '0000-00-00', 13071, '', NULL), (13072, 217, '', '', '', '0000-00-00', 13072, '', NULL), (13073, 218, '', '', '', '0000-00-00', 13073, '', NULL), (13074, 219, '', '', '', '0000-00-00', 13074, '', NULL), (13075, 220, 'S/N 09123', 'Forney FX-700F-TPILOT Digital Compression Machine (E-4)', 'Range: 3K to 700K ', '2009-12-09', 13075, '12/9/2009', NULL), (13076, 221, '', '', '', '0000-00-00', 13076, '', NULL), (13077, 222, 'S/N 117540', 'Hamilton Prestress Jack (E-4 & PCI)', '', '2013-06-24', 13077, '6/24/2013', NULL), (13078, 223, '', '', '', '0000-00-00', 13078, '', NULL), (13079, 224, 'S/N 052217407', 'CDI Dial Indicator Mdl. EDP26109C (D-6027)', 'Range: 1 Inch', '2013-01-29', 13079, '1/29/2013', NULL), (13080, 225, '', '', '', '0000-00-00', 13080, '', NULL), (13081, 226, '', '', '', '0000-00-00', 13081, '', NULL), (13082, 227, '', '', '', '0000-00-00', 13082, '', NULL), (13083, 228, '', '', '', '0000-00-00', 13083, '', NULL), (13084, 229, '', '', '', '0000-00-00', 13084, '', NULL), (13085, 230, '', '', '', '0000-00-00', 13085, '', NULL), (13086, 231, 'S/N 45198', 'Dixon Gauge MDL GL340 (D-5720)', 'Range: 200 PSI', '2010-01-13', 13086, '1/13/2010', NULL), (13087, 232, 'S/N 37911', 'US Gauge (D-5720)', 'Range: 2000 PSI', '2010-01-13', 13087, '1/13/2010', NULL), (13088, 233, '', '', '', '0000-00-00', 13088, '', NULL), (13089, 234, 'S/N 05075688/5', 'Eilon Engineering RON 2501 S-50 Load Cell #5 (ManSp & 0.1% FS)', 'Range: 50 Short Ton ', '2010-02-16', 13089, '2/16/2010', NULL), (13090, 235, 'S/N 1VA-82252-016', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 35 in H2O', '2010-01-18', 13090, '1/18/2010', NULL), (13091, 236, '', '', '', '0000-00-00', 13091, '', NULL), (13092, 237, '', '', '', '0000-00-00', 13092, '', NULL), (13093, 238, 'S/N', ' w/ Shear Force Load Cell (E-4)', 'Range: 10K', NULL, 13093, 'New', NULL), (13094, 239, '', '', '', '0000-00-00', 13094, '', NULL), (13095, 240, 'S/N J 23030', ' w/ Schaevitz GDC-121-250 Displacement LVDT Axial Strain Ch. ', 'Range: 0.4 inch (ID# LABD33) (D-6027)', '2011-01-05', 13095, '1/5/2011', NULL), (13096, 241, '', '', '', '0000-00-00', 13096, '', NULL), (13097, 242, 'S/N 154378', 'w/Tinius Olsen Mdl. S-1000-2A Extensometer (E-83)', 'Range: 0.02 in/in (GL 2)', '2013-02-27', 13097, '2/27/2013', NULL), (13098, 243, 'S/N 2250/1051', 'Satec T1M Extensometer (E-83)', 'Range: 0.02 in/in (GL 2 Inch)', '2013-09-16', 13098, '9/16/2013', NULL), (13099, 244, '', '', '', '0000-00-00', 13099, '', NULL), (13100, 245, '', '', '', '0000-00-00', 13100, '', NULL), (13101, 246, '', '', '', '0000-00-00', 13101, '', NULL), (13102, 247, '', '', '', '0000-00-00', 13102, '', NULL), (13103, 248, '', '', '', '0000-00-00', 13103, '', NULL), (13104, 249, '', '', '', '0000-00-00', 13104, '', NULL), (13105, 250, '', '', '', '0000-00-00', 13105, '', NULL), (13106, 251, '', '', '', '0000-00-00', 13106, '', NULL), (13107, 252, '', '', '', '0000-00-00', 13107, '', NULL), (13108, 253, '', '', '', '0000-00-00', 13108, '', NULL), (13109, 254, '', '', '', '0000-00-00', 13109, '', NULL), (13110, 255, '', '', '', '0000-00-00', 13110, '', NULL), (13111, 256, '', '', '', '0000-00-00', 13111, '', NULL), (13112, 257, '', '', '', '0000-00-00', 13112, '', NULL), (13113, 258, '', '', '', '0000-00-00', 13113, '', NULL), (13114, 259, '', '', '', '0000-00-00', 13114, '', NULL), (13115, 260, '', '', '', '0000-00-00', 13115, '', NULL), (13116, 261, 'S/N C2405C (ATG#251)', 'Enerpac RCH-302 Ram (E-4)', 'Range: 30 Ton (8,500 PSI)', '2013-03-27', 13116, '3/27/2013', NULL), (13117, 262, 'S/N 0706TR75-03', ' w/ Horizontal LVDT (D-6027)', 'Range: 3 inches ', '2010-04-01', 13117, '4/1/2010', NULL), (13118, 263, '', '', '', '0000-00-00', 13118, '', NULL), (13119, 264, 'S/N 34006 (ATG# 1300)', ' w/ Futek Load Cell (E-4)', 'Range: 1K ', '2013-03-27', 13119, '3/27/2013', NULL), (13120, 265, '', '', '', '0000-00-00', 13120, '', NULL), (13121, 266, '', '', '', '0000-00-00', 13121, '', NULL), (13122, 267, '', '', '', '0000-00-00', 13122, '', NULL), (13123, 268, '', '', '', '0000-00-00', 13123, '', NULL), (13124, 269, '', '', '', '0000-00-00', 13124, '', NULL), (13125, 270, '', '', '', '0000-00-00', 13125, '', NULL), (13126, 271, '', '', '', '0000-00-00', 13126, '', NULL), (13127, 272, '', '', '', '0000-00-00', 13127, '', NULL), (13128, 273, '', '', '', '0000-00-00', 13128, '', NULL), (13129, 274, 'S/N P1874952', 'AND EK-2000i Scale (E-898)', 'Range: 2,000 Grams (MOVED)', '2011-03-28', 13129, '3/28/2011', NULL), (13130, 275, '', ' ', '', '0000-00-00', 13130, '', NULL), (13131, 276, '', '', '', '0000-00-00', 13131, '', NULL), (13132, 277, 'S/N 2809AD-08663', 'Powerteam Mdl. SPX Post Tension Jack ( E-4 & PCI)', 'Range: 30K (3,900 PSI) (MOVED)', '2010-08-31', 13132, '8/31/2010', NULL), (13133, 278, '', '', '', '0000-00-00', 13133, '', NULL), (13134, 279, '', ' **Send Certs to billings Address Attn: Tim Lautenbach.**', '', '0000-00-00', 13134, '', NULL), (13135, 280, '', '', '', '0000-00-00', 13135, '', NULL), (13136, 281, '', '', '', '0000-00-00', 13136, '', NULL), (13137, 282, '', '', '', '0000-00-00', 13137, '', NULL), (13138, 283, '', '', '', '0000-00-00', 13138, '', NULL), (13139, 284, 'S/N PL1 to PL20', 'Erico Assorted Dead Weights (Man Specs)', 'Range: Various 21 Total Weights', '2013-04-24', 13139, '4/24/2013', NULL), (13140, 285, '', '', '', '0000-00-00', 13140, '', NULL), (13141, 286, '', '', '', '0000-00-00', 13141, '', NULL), (13142, 287, '', '', '', '0000-00-00', 13142, '', NULL), (13143, 288, '', '', '', '0000-00-00', 13143, '', NULL), (13144, 289, '', '', '', '0000-00-00', 13144, '', NULL), (13145, 290, '', '', '', '0000-00-00', 13145, '', NULL), (13146, 291, '', '', '', '0000-00-00', 13146, '', NULL), (13147, 292, '', '', '', '0000-00-00', 13147, '', NULL), (13148, 293, '', '', '', '0000-00-00', 13148, '', NULL), (13149, 294, '', '', '', '0000-00-00', 13149, '', NULL), (13150, 295, '', '', '', '0000-00-00', 13150, '', NULL), (13151, 296, 'S/N H-0242', 'Soiltest C-220 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-13', 13151, '5/13/2010', NULL), (13152, 297, '', '', '', '0000-00-00', 13152, '', NULL), (13153, 298, 'S/N 1127330291', 'Mettler Toledo XS 104 Scale (E-898)', 'Range: 120 Grams', '2013-05-15', 13153, '5/15/2013', NULL), (13154, 299, 'S/N 61108/05', 'Comark C9555 Pressure/Vacuum (D-5720)', 'Range 210 KPA Pressure', '2013-05-15', 13154, '5/15/2013', NULL), (13155, 300, 'S/N EQ2011132', 'AND FG-60KBM Scale (E-898)', 'Range: 150 lbs', '2013-05-15', 13155, '5/15/2013', NULL), (13156, 301, '', '', '', '0000-00-00', 13156, '', NULL), (13157, 302, '', '', '', '0000-00-00', 13157, '', NULL), (13158, 303, 'S/N LP-233', ' w/ Linear Mdl. LS3 Postion Sensor (Channel #2) (D-6027)', 'Range: 2 inches ', '2012-05-23', 13158, '5/23/2012', NULL), (13159, 304, '', '', '', '0000-00-00', 13159, '', NULL), (13160, 305, '', '', '', '0000-00-00', 13160, '', NULL), (13161, 306, '', '', '', '0000-00-00', 13161, '', NULL), (13162, 307, '', '', '', '0000-00-00', 13162, '', NULL), (13163, 308, 'S/N 17', 'Mercer Dial Indicator (OOS) (D-6027)', 'Range: 0.2 Inches', '2006-06-01', 13163, '6/1/2006', NULL), (13164, 309, 'S/N 941959658', 'CDI Dial Indicator Model DPX1000 (D-6027)', 'Range: 2 inches (Done at HC Nut. Shop)', '2005-05-31', 13164, '5/31/2005', NULL), (13165, 310, 'S/N #1', 'Boart Longyear LG 114 Shear Box w/Artech 20210-10K Load Cell', 'Range: 10K LC: S/N 408688 (E-4)', '2009-12-17', 13165, '12/17/2009', NULL), (13166, 311, '', '', '', '0000-00-00', 13166, '', NULL), (13167, 312, '', '', '', '0000-00-00', 13167, '', NULL), (13168, 313, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 13168, '', NULL), (13169, 314, '', '', '', '0000-00-00', 13169, '', NULL), (13170, 315, '', ' w/ Spare Gauge (E-4)', 'Range: 30K', '2010-08-03', 13170, '8/3/2010', NULL), (13171, 316, '', '', '', '0000-00-00', 13171, '', NULL), (13172, 317, '', '', '', '0000-00-00', 13172, '', NULL), (13173, 318, '', '', '', '0000-00-00', 13173, '', NULL), (13174, 319, '', '', '', '0000-00-00', 13174, '', NULL), (13175, 320, '', '', '', '0000-00-00', 13175, '', NULL), (13176, 321, '', '', '', '0000-00-00', 13176, '', NULL), (13177, 322, '', '', '', '0000-00-00', 13177, '', NULL), (13178, 323, '', '', '', '0000-00-00', 13178, '', NULL), (13179, 324, '', '', '', '0000-00-00', 13179, '', NULL), (13180, 325, '', '', '', '0000-00-00', 13180, '', NULL), (13181, 326, '', '', '', '0000-00-00', 13181, '', NULL), (13182, 327, '', '', '', '0000-00-00', 13182, '', NULL), (13183, 328, '', '', '', '0000-00-00', 13183, '', NULL), (13184, 329, 'S/N HLT-69100', 'Harrington Model HLTI Hoist Tester (E-4 & Man Specs)', 'Cap: 5 Ton / 10 Ton ', '2013-06-26', 13184, '6/26/2013', NULL), (13185, 330, '', '', '', '0000-00-00', 13185, '', NULL), (13186, 331, '', '', '', '0000-00-00', 13186, '', NULL), (13187, 332, '', '', '', '0000-00-00', 13187, '', NULL), (13188, 333, '', '', '', '0000-00-00', 13188, '', NULL), (13189, 334, 'S/N HLT-69052', 'Harrington Model HLTI Hoist Tester (E-4 & Man Specs)', 'Range: 5 Ton/ 10 Ton (OOS)', '2011-06-30', 13189, '6/30/2011', NULL), (13190, 335, '', 'PO request must be submited to Mark Moyer', '', '0000-00-00', 13190, '', NULL), (13191, 336, '', 'PO request must be submited to Mark Moyer', '', '0000-00-00', 13191, '', NULL), (13192, 337, '', '', '', '0000-00-00', 13192, '', NULL), (13193, 338, '', '', '', '0000-00-00', 13193, '', NULL), (13194, 339, '', '', '', '0000-00-00', 13194, '', NULL), (13195, 340, 'S/N 351192A', 'w/ Load Cell 1210BDE-5K', '', '0000-00-00', 13195, '', NULL), (13196, 341, 'S/N 205', 'Ashcroft Gauge G-8962 (IN HOUSE) (D-5720)', 'Range: 0-60psi', '2003-03-28', 13196, '3/28/2003', NULL), (13197, 342, '', '', '', '0000-00-00', 13197, '', NULL), (13198, 343, '', '', '', '0000-00-00', 13198, '', NULL), (13199, 344, '', '', '', '0000-00-00', 13199, '', NULL), (13200, 345, 'S/N 1A0606', 'Geotest Type N Schmidt Hammer (C-805)', 'Range: 78 to 82', '2009-02-16', 13200, '2/16/2009', NULL), (13201, 346, '', '', '', '0000-00-00', 13201, '', NULL), (13202, 347, '', '', '', '0000-00-00', 13202, '', NULL), (13203, 348, '', '', '', '0000-00-00', 13203, '', NULL), (13204, 349, '', '', '', '0000-00-00', 13204, '', NULL), (13205, 350, '', '', '', '0000-00-00', 13205, '', NULL), (13206, 351, '', '', '', '0000-00-00', 13206, '', NULL), (13207, 352, '', '', '', '0000-00-00', 13207, '', NULL), (13208, 353, '', '', '', '0000-00-00', 13208, '', NULL), (13209, 354, '', '', '', '0000-00-00', 13209, '', NULL), (13210, 355, '', '', '', '0000-00-00', 13210, '', NULL), (13211, 356, '', '', '', '0000-00-00', 13211, '', NULL), (13212, 357, '', '', '', '0000-00-00', 13212, '', NULL), (13213, 358, '', '', '', '0000-00-00', 13213, '', NULL), (13214, 359, '', '', '', '0000-00-00', 13214, '', NULL), (13215, 360, '', '', '', '0000-00-00', 13215, '', NULL), (13216, 361, '', '', '', '0000-00-00', 13216, '', NULL), (13217, 362, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 13217, '', NULL), (13218, 363, '', '', '', '0000-00-00', 13218, '', NULL), (13219, 364, '', ' ***ISO Requested***', '', '0000-00-00', 13219, '', NULL), (13220, 365, '', '', '', '0000-00-00', 13220, '', NULL), (13221, 366, '', '', '', '0000-00-00', 13221, '', NULL), (13222, 367, '', '', '', '0000-00-00', 13222, '', NULL), (13223, 368, '', '', '', '0000-00-00', 13223, '', NULL), (13224, 369, '', '*Send Solicitation Letters Attn: Philip Reed 304-645-7614 Fax*', '', '0000-00-00', 13224, '', NULL), (13225, 370, '', '', '', '0000-00-00', 13225, '', NULL), (13226, 371, '', '', '', '0000-00-00', 13226, '', NULL), (13227, 372, '', '', '', '0000-00-00', 13227, '', NULL), (13228, 373, '', '', '', '0000-00-00', 13228, '', NULL), (13229, 374, '', '', '', '0000-00-00', 13229, '', NULL), (13230, 375, '', '', '', '0000-00-00', 13230, '', NULL), (13231, 376, '', '', '', '0000-00-00', 13231, '', NULL), (13232, 377, '', '', '', '0000-00-00', 13232, '', NULL), (13233, 378, '', '', '', '0000-00-00', 13233, '', NULL), (13234, 379, 'S/N 152875', 'Tinius Olsen Torsion (CSI Does not Calibrate this type of equipment)', 'Range: 500 lbs/1K/5K/10K inch/lbs', NULL, 13234, 'New', NULL), (13235, 380, '', '', '', '0000-00-00', 13235, '', NULL), (13236, 381, '', '', '', '0000-00-00', 13236, '', NULL), (13237, 382, '', '', '', '0000-00-00', 13237, '', NULL), (13238, 383, '', '', '', '0000-00-00', 13238, '', NULL), (13239, 384, '', '', '', '0000-00-00', 13239, '', NULL), (13240, 385, '', '', '', '0000-00-00', 13240, '', NULL), (13241, 386, '', '', '', '0000-00-00', 13241, '', NULL), (13242, 387, '', '', '', '0000-00-00', 13242, '', NULL), (13243, 388, '', '', '', '0000-00-00', 13243, '', NULL), (13244, 389, '', '', '', '0000-00-00', 13244, '', NULL), (13245, 390, 'S/N 10', 'McDaniels Vaccum Gauge (In House) (Man Specs & 2%)', 'Range: 30 inHg', '2013-09-26', 13245, '9/26/2013', NULL), (13246, 391, '', '', '', '0000-00-00', 13246, '', NULL), (13247, 392, '', '', '', '0000-00-00', 13247, '', NULL), (13248, 393, '', '', '', '0000-00-00', 13248, '', NULL), (13249, 394, '', '', '', '0000-00-00', 13249, '', NULL), (13250, 395, '', '', '', '0000-00-00', 13250, '', NULL), (13251, 396, '', '', '', '0000-00-00', 13251, '', NULL), (13252, 397, '', '', '', '0000-00-00', 13252, '', NULL), (13253, 398, '', '', '', '0000-00-00', 13253, '', NULL), (13254, 399, '', '', '', '0000-00-00', 13254, '', NULL), (13255, 400, '', '', '', '0000-00-00', 13255, '', NULL), (13256, 401, '', '', '', '0000-00-00', 13256, '', NULL), (13257, 402, '', '', '', '0000-00-00', 13257, '', NULL), (13258, 403, '', '', '', '0000-00-00', 13258, '', NULL), (13259, 404, '', '', '', '0000-00-00', 13259, '', NULL), (13260, 405, '', '', '', '0000-00-00', 13260, '', NULL), (13261, 406, '', '', '', '0000-00-00', 13261, '', NULL), (13262, 407, '', 'Valve - Replaced Seals ', '', '0000-00-00', 13262, '', NULL), (13263, 408, '', '', '', '0000-00-00', 13263, '', NULL), (13264, 409, '', '', '', '0000-00-00', 13264, '', NULL), (13265, 410, '', '', '', '0000-00-00', 13265, '', NULL), (13266, 411, '', '', '', '0000-00-00', 13266, '', NULL), (13267, 412, '', '', '', '0000-00-00', 13267, '', NULL), (13268, 413, '', '', '', '0000-00-00', 13268, '', NULL), (13269, 414, 'S/N 00120', 'Forney F-40F-DFM/1 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2005-11-17', 13269, '11/17/2005', NULL), (13270, 415, '', '', '', '0000-00-00', 13270, '', NULL), (13271, 416, '', '', '', '0000-00-00', 13271, '', NULL), (13272, 417, '', '', '', '0000-00-00', 13272, '', NULL), (13273, 418, 'S/N 967747', 'Teclock Corporation A1-921 Dial Indicator (D-6027)', 'Range: 1 inch ', '2012-11-06', 13273, '11/6/2012', NULL), (13274, 419, '', '', '', '0000-00-00', 13274, '', NULL), (13275, 420, '', '', '', '0000-00-00', 13275, '', NULL), (13276, 421, '', '', '', '0000-00-00', 13276, '', NULL), (13277, 422, 'S/N G1029', 'Strainsense SS1024F T & C Load Cell w/ Conamp 1213 Digital ', 'Range: 1K (ID# G1029) (E-4)', '2013-01-08', 13277, '1/8/2013', NULL), (13278, 423, 'S/N PS-2154', ' w/ Geotac Cell Pressure Transducer Channel #4 (D-5720)', 'Range: 200 PSI ', '2013-01-08', 13278, '1/8/2013', NULL), (13279, 424, 'S/N (ID#G839)', ' w/ Brainard Kilman E-400 Digital (E-4)', '', '0000-00-00', 13279, '', NULL), (13280, 425, 'S/N ID# G836B', ' w/ Sensym Cell Pressure Transducer Channel #4', 'Range: 125 PSI (D-5720)', '2013-01-08', 13280, '1/8/2013', NULL), (13281, 426, '', '', '', '0000-00-00', 13281, '', NULL), (13282, 427, 'S/N ID# G784', ' w/ Bong Shin Vertical Load Cell (E-4)', 'Range: 1K ', '2012-01-10', 13282, '1/10/2012', NULL), (13283, 428, 'S/N V-1 (ID# G1377)', 'Trans-Tek 0241-0000 K-11 LVDT (D-6027)', 'Range: 0.18 inches (CH #3)', '2013-01-07', 13283, '1/7/2013', NULL), (13284, 429, '', '', '', '0000-00-00', 13284, '', NULL), (13285, 430, '', '', '', '0000-00-00', 13285, '', NULL), (13286, 431, 'S/N 78950 (ID# M-105)', 'Tinius Olsen Digital Compression Machine w/ MTEST Quattro (E-4)', 'Range: 1K to 120K ', '2013-01-07', 13286, '1/7/2013', NULL), (13287, 432, '', '', '', '0000-00-00', 13287, '', NULL), (13288, 433, '', '', '', '0000-00-00', 13288, '', NULL), (13289, 434, '', '', '', '0000-00-00', 13289, '', NULL), (13290, 435, '', '', '', '0000-00-00', 13290, '', NULL), (13291, 436, '', '', '', '0000-00-00', 13291, '', NULL), (13292, 437, 'S/N 100988505', 'Humboldt H-4158.1 Dial Indicator (D-6027 & 1%)', 'Range: 1 inch ', '2013-01-28', 13292, '1/28/2013', NULL), (13293, 438, '', '', '', '0000-00-00', 13293, '', NULL), (13294, 439, '', '', '', '0000-00-00', 13294, '', NULL), (13295, 440, '', '', '', '0000-00-00', 13295, '', NULL), (13296, 441, '', '', '', '0000-00-00', 13296, '', NULL), (13297, 442, '', '', '', '0000-00-00', 13297, '', NULL), (13298, 443, '', '', '', '0000-00-00', 13298, '', NULL), (13299, 444, '', '', '', '0000-00-00', 13299, '', NULL), (13300, 445, 'S/N 010042240 ', 'Humboldt BG-2600-16001 Dial Indicator (D-6027)', 'Range: 15 mm', '2013-02-13', 13300, '2/13/2013', NULL), (13301, 446, '', '', '', '0000-00-00', 13301, '', NULL), (13302, 447, 'S/N 205 (ID# TS-10)', 'JM Electronic Scale (E-898)', ' ', '2013-02-13', 13302, '2/13/2013', NULL), (13303, 448, 'S/N PFS-06 ', 'TIF Electronic Mdl. 9010A Scale (E-898)', 'Range: 110 lbs ', '2013-02-13', 13303, '2/13/2013', NULL), (13304, 449, 'S/N G-0316', 'Soiltest C-220 Consolidation Machine (E-4 & 2%)', 'Range: 1/8 TSF to 22 TSF ', '2011-02-15', 13304, '2/15/2011', NULL), (13305, 450, 'S/N CH1201802', 'H& C Weighing Systems Scale ID#TS-07 (E-898)', 'Range: 12,000 grams', '2013-02-13', 13305, '2/13/2013', NULL), (13306, 451, '', '', '', '0000-00-00', 13306, '', NULL), (13307, 452, '', '', '', '0000-00-00', 13307, '', NULL), (13308, 453, '', '', '', '0000-00-00', 13308, '', NULL), (13309, 454, '', 'Mail Cert to Billing Office Attn: Mark Lager', '', '0000-00-00', 13309, '', NULL), (13310, 455, '', '', '', '0000-00-00', 13310, '', NULL), (13311, 456, '', 'Mailed US Mail on 2/17/2011', '', '0000-00-00', 13311, '', NULL), (13312, 457, '', ' ', '', '0000-00-00', 13312, '', NULL), (13313, 458, 'S/N M92113813947-05', 'ELE Displacement Transducer (D-6027)', 'Range: 1.5\"', '2006-02-20', 13313, '2/20/2006', NULL), (13314, 459, '', '', '', '0000-00-00', 13314, '', NULL), (13315, 460, '', '', '', '0000-00-00', 13315, '', NULL), (13316, 461, '', '', '', '0000-00-00', 13316, '', NULL), (13317, 462, '', '', '', '0000-00-00', 13317, '', NULL), (13318, 463, '4016', ' w/Pressure Transducer (D-5720)', 'Range: 10 PSI to 100 PSI', '2013-03-05', 13318, '3/5/2013', NULL), (13319, 464, '', '', '', '0000-00-00', 13319, '', NULL), (13320, 465, '', '', '', '0000-00-00', 13320, '', NULL), (13321, 466, 'S/N 0512TR50-01', ' w/ Horizontal LVDT (D-6027)', 'Range: 0.5 Inches ', '2013-03-20', 13321, '3/20/2013', NULL), (13322, 467, '', '', '', '0000-00-00', 13322, '', NULL), (13323, 468, '', '', '', '0000-00-00', 13323, '', NULL), (13324, 469, '', '', '', '0000-00-00', 13324, '', NULL), (13325, 470, '', '', '', '0000-00-00', 13325, '', NULL), (13326, 471, 'S/N TM-0104-1', ' w/ Forney Swell LVDT (D-6027)', 'Range: 0.02 inches ', '2010-01-14', 13326, '1/14/2010', NULL), (13327, 472, '', 'Send Certs to: Mark Weaver, 137 Pine Loganton Road, ', 'Loganton, PA 17747', '0000-00-00', 13327, '', NULL), (13328, 473, '', '', '', '0000-00-00', 13328, '', NULL), (13329, 474, 'S/N Unknown', 'Thermoline NCAT Asphalt Content Tester (E-898)', 'Range: 5,000 Grams ', '2011-03-29', 13329, '3/29/2011', NULL), (13330, 475, '', '', '', '0000-00-00', 13330, '', NULL), (13331, 476, 'S/N 14693499', 'AND GF-6100 Scale (E-898)', 'Range: 6,100 Grams ', '2013-04-10', 13331, '4/10/2013', NULL), (13332, 477, '', '', '', '0000-00-00', 13332, '', NULL), (13333, 478, 'S/N 0009E500389E', ' w/cadman and HBM Mx440A signal conditioner(Off Site)', 'Data Logger w/ 2 Load Cells (E-4) ', '0000-00-00', 13333, '', NULL), (13334, 479, '', '', '', '0000-00-00', 13334, '', NULL), (13335, 480, '', '', '', '0000-00-00', 13335, '', NULL), (13336, 481, '', '', '', '0000-00-00', 13336, '', NULL), (13337, 482, '', '', '', '0000-00-00', 13337, '', NULL), (13338, 483, '', '', '', '0000-00-00', 13338, '', NULL), (13339, 484, 'S/N 1970', ' w/ Shear/Residual Force (E-4)', 'Range: 20 lbs to 2,000 lbs', '2012-04-23', 13339, '4/23/2012', NULL), (13340, 485, '', '', '', '0000-00-00', 13340, '', NULL), (13341, 486, '', '', '', '0000-00-00', 13341, '', NULL), (13342, 487, '', '', '', '0000-00-00', 13342, '', NULL), (13343, 488, 'S/N 289368', ' Load Cell Serial Number ', '', '2013-05-01', 13343, '5/1/2013', NULL), (13344, 489, '', '', '', '0000-00-00', 13344, '', NULL), (13345, 490, '', '', '', '0000-00-00', 13345, '', NULL), (13346, 491, '', '', '', '0000-00-00', 13346, '', NULL), (13347, 492, '', '', '', '0000-00-00', 13347, '', NULL), (13348, 493, 'S/N 14513A', 'Wykeham Farrance Ring Shear Single Proving Ring ', 'Cap: 100 lbs (E-4 & Man Specs)', '2013-04-30', 13348, '4/30/2013', NULL), (13349, 494, 'S/N 090847635', 'CDI BG2110 Dial Indicator (D-6027)', 'Range: 1 inch ', '2013-04-29', 13349, '4/29/2013', NULL), (13350, 495, 'S/N 1680', 'Humboldt H-4454 Single Proving Ring (E-4 & ManSpecs)', 'Range: 2,200 lbs', '2013-04-29', 13350, '4/29/2013', NULL), (13351, 496, 'S/N #1', 'Geo Mil Cone Penetrometer (E-4 & Man Specs)', 'Range: 6.4 KN/ 55KN', '2012-05-17', 13351, '5/17/2012', NULL), (13352, 497, '', ' ***Must have Compression Chamber & Tensile Fixture***', '', '0000-00-00', 13352, '', NULL), (13353, 498, '', ' Cert in Summits name and mail it to them in Canal Fulton, OH', '', '0000-00-00', 13353, '', NULL), (13354, 499, '', '', '', '0000-00-00', 13354, '', NULL), (13355, 500, 'S/N 9026', 'Soiltest Model D-500 Direct Shear Machine', '', '2012-04-30', 13355, '4/30/2012', NULL), (13356, 501, '', '', '', '0000-00-00', 13356, '', NULL), (13357, 502, '', '', '', '0000-00-00', 13357, '', NULL), (13358, 503, '', '', '', '0000-00-00', 13358, '', NULL), (13359, 504, '', '', '', '0000-00-00', 13359, '', NULL), (13360, 505, '', '', '', '0000-00-00', 13360, '', NULL), (13361, 506, '', '', '', '0000-00-00', 13361, '', NULL), (13362, 507, '', '', '', '0000-00-00', 13362, '', NULL), (13363, 508, '', '', '', '0000-00-00', 13363, '', NULL), (13364, 509, '', '', '', '0000-00-00', 13364, '', NULL), (13365, 510, '', '', '', '0000-00-00', 13365, '', NULL), (13366, 511, '', '', '', '0000-00-00', 13366, '', NULL), (13367, 512, '', '', '', '0000-00-00', 13367, '', NULL), (13368, 513, '', '', '', '0000-00-00', 13368, '', NULL), (13369, 514, '', '', '', '0000-00-00', 13369, '', NULL), (13370, 515, '', '', '', '0000-00-00', 13370, '', NULL), (13371, 516, 'S/N 1155-13-11663', ' w/ELE Mdl. 1155B0100 Single Proving Ring (E-4&ManSpecs)', 'Cap: 450 lbs ', '2013-05-07', 13371, '5/7/2013', NULL), (13372, 517, '', ' w/ Gauge # 222', 'Range: 35K ', '2013-05-09', 13372, '5/9/2013', NULL), (13373, 518, 'S/N 796', ' w/ Crowder Ramit Post Tension Jack (E-4 & Man Specs)', 'Range: 35K (OOS)', '2008-05-13', 13373, '5/13/2008', NULL), (13374, 519, 'S/N Q9814', 'ELE Pore Pressure Transducer (D-5720)', 'Range: 200 psi', '2013-05-07', 13374, '5/7/2013', NULL), (13375, 520, '', '', '', '0000-00-00', 13375, '', NULL), (13376, 521, '', '', '', '0000-00-00', 13376, '', NULL), (13377, 522, '', 'The Bureau for Weights and Measures for Scales', '', '0000-00-00', 13377, '', NULL), (13378, 523, '', '', '', '0000-00-00', 13378, '', NULL), (13379, 524, 'S/N 1258', 'Karol Warner Digital Compression Machine (E-4)', 'Range: 200 lbs to 20K', '2013-04-30', 13379, '4/30/2013', NULL), (13380, 525, '', '', '', '0000-00-00', 13380, '', NULL), (13381, 526, '', '', '', '0000-00-00', 13381, '', NULL), (13382, 527, '', '', '', '0000-00-00', 13382, '', NULL), (13383, 528, '', '', '', '0000-00-00', 13383, '', NULL), (13384, 529, '', '', '', '0000-00-00', 13384, '', NULL), (13385, 530, '', '***Send Certs to billing address***', '', '0000-00-00', 13385, '', NULL), (13386, 531, '', '', '', '0000-00-00', 13386, '', NULL), (13387, 532, '', '', '', '0000-00-00', 13387, '', NULL), (13388, 533, '', '', '', '0000-00-00', 13388, '', NULL), (13389, 534, '', '', '', '0000-00-00', 13389, '', NULL), (13390, 535, '', '', '', '0000-00-00', 13390, '', NULL), (13391, 536, '', '', '', '0000-00-00', 13391, '', NULL), (13392, 537, '', '', '', '0000-00-00', 13392, '', NULL), (13393, 538, '', '', '', '0000-00-00', 13393, '', NULL), (13394, 539, '', '', '', '0000-00-00', 13394, '', NULL), (13395, 540, '', '', '', '0000-00-00', 13395, '', NULL), (13396, 541, 'S/N H3804359', 'AND FG-60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 13396, '6/4/2013', NULL), (13397, 542, '', ' Send Certs to Billing Address', '', '0000-00-00', 13397, '', NULL), (13398, 543, '', '', '', '0000-00-00', 13398, '', NULL), (13399, 544, '', '', '', '0000-00-00', 13399, '', NULL), (13400, 545, 'S/N 480/864', 'Durham Geo Load Cell w/ E-400 Digital (E-4)', 'Range: 6K ', '2011-06-16', 13400, '6/16/2011', NULL), (13401, 546, '', '', '', '0000-00-00', 13401, '', NULL), (13402, 547, '', '', '', '0000-00-00', 13402, '', NULL), (13403, 548, 'S/N 168667', 'Transducer Techniques SW010K Load Cell w/ Dig. S/N 250004 ', 'Range: 1K to 10K (E-4)', '2013-06-19', 13403, '6/19/2013', NULL), (13404, 549, '', '', '', '0000-00-00', 13404, '', NULL), (13405, 550, '', '', '', '0000-00-00', 13405, '', NULL), (13406, 551, '', '', '', '0000-00-00', 13406, '', NULL), (13407, 552, 'S/N Ram 5', ' w/ Simplex Ram ', 'Range: 10K (9,000 PSI)', '2011-06-29', 13407, '6/29/2011', NULL), (13408, 553, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 13408, '', NULL), (13409, 554, '', '', '', '0000-00-00', 13409, '', NULL), (13410, 555, '', '', '', '0000-00-00', 13410, '', NULL), (13411, 556, '', '', '', '0000-00-00', 13411, '', NULL), (13412, 557, 'S/N L45413', ' w/ Load Cell Central UPI-CC Digital ', '', '0000-00-00', 13412, '', NULL), (13413, 558, '', '', '', '0000-00-00', 13413, '', NULL), (13414, 559, 'S/N 10631089', 'Wika DG-10-E Pressure Gauge (D-5720)', 'Range: 10,000 PSI ', '2012-01-27', 13414, '1/27/2012', NULL), (13415, 560, '', '', '', '0000-00-00', 13415, '', NULL), (13416, 561, '', '', '', '0000-00-00', 13416, '', NULL), (13417, 562, '', '', '', '0000-00-00', 13417, '', NULL), (13418, 563, '', '', '', '0000-00-00', 13418, '', NULL), (13419, 564, '', '', '', '0000-00-00', 13419, '', NULL), (13420, 565, '', '', '', '0000-00-00', 13420, '', NULL), (13421, 566, '', '', '', '0000-00-00', 13421, '', NULL), (13422, 567, '', '', '', '0000-00-00', 13422, '', NULL), (13423, 568, '', '', '', '0000-00-00', 13423, '', NULL), (13424, 569, '', '', '', '0000-00-00', 13424, '', NULL), (13425, 570, 'S/N 67145-970001', 'Forney QC-50-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2K to 400K', '2013-07-30', 13425, '7/30/2013', NULL), (13426, 571, '', '* Send Certs to Billing Address*', '', '0000-00-00', 13426, '', NULL), (13427, 572, '', '', '', '0000-00-00', 13427, '', NULL), (13428, 573, '', '', '', '0000-00-00', 13428, '', NULL), (13429, 574, '', '', '', '0000-00-00', 13429, '', NULL), (13430, 575, '', '', '', '0000-00-00', 13430, '', NULL), (13431, 576, '', '', '', '0000-00-00', 13431, '', NULL), (13432, 577, '', '', '', '0000-00-00', 13432, '', NULL), (13433, 578, '', '', '', '0000-00-00', 13433, '', NULL), (13434, 579, '', '', '', '0000-00-00', 13434, '', NULL), (13435, 580, '', '', '', '0000-00-00', 13435, '', NULL), (13436, 581, '', '', '', '0000-00-00', 13436, '', NULL), (13437, 582, '', '', '', '0000-00-00', 13437, '', NULL), (13438, 583, '', '', '', '0000-00-00', 13438, '', NULL), (13439, 584, '', '', '', '0000-00-00', 13439, '', NULL), (13440, 585, '', '', '', '0000-00-00', 13440, '', NULL), (13441, 586, 'S/N 9201-00110', ' with Forney B500 Block Tester w/CS-100-3A (E-4)', 'Range: 3K to 450K Channel #1', '2013-08-08', 13441, '8/8/2013', NULL), (13442, 587, '', ' w / Control #006 & #004', '*NOTES*', '2012-08-14', 13442, '8/14/2012', NULL), (13443, 588, '', '', '', '0000-00-00', 13443, '', NULL), (13444, 589, '', '', '', '0000-00-00', 13444, '', NULL), (13445, 590, '', '', '', '0000-00-00', 13445, '', NULL), (13446, 591, '', 'Send certs to Billing Address.', '', '0000-00-00', 13446, '', NULL), (13447, 592, '', '', '', '0000-00-00', 13447, '', NULL), (13448, 593, 'S/N', 'ELE Tri-Flex Master Control Panel Pressure & Vacuum (Man Specs)', 'Range: ', NULL, 13448, 'New', NULL), (13449, 594, '', '', '', '0000-00-00', 13449, '', NULL), (13450, 595, '', '', '', '0000-00-00', 13450, '', NULL), (13451, 596, '', '', '', '0000-00-00', 13451, '', NULL), (13452, 597, '', '', '', '0000-00-00', 13452, '', NULL), (13453, 598, '', '', '', '0000-00-00', 13453, '', NULL), (13454, 599, 'S/N 112164-1', ' Vertical Force', ' Range: 16 TSF', '2013-09-05', 13454, '9/5/2013', NULL), (13455, 600, '', '', '', '0000-00-00', 13455, '', NULL), (13456, 601, '', '', '', '0000-00-00', 13456, '', NULL), (13457, 602, '', 'Send Certs to Billing Address.', '', '0000-00-00', 13457, '', NULL), (13458, 603, '', '', '', '0000-00-00', 13458, '', NULL), (13459, 604, '', '', '', '0000-00-00', 13459, '', NULL), (13460, 605, 'S/N R2711 (ID# 005740)', ' w/ Displacement (E-2309)', 'Range: 20 inches', '2013-09-04', 13460, '9/4/2013', NULL), (13461, 606, '', '', '', '0000-00-00', 13461, '', NULL), (13462, 607, 'S/N FG-09', ' Gauge #1 ', 'Range: 5K ', '2013-10-08', 13462, '10/8/2013', NULL), (13463, 608, '', '', '', '0000-00-00', 13463, '', NULL), (13464, 609, '', '', '', '0000-00-00', 13464, '', NULL), (13465, 610, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 13465, '', NULL), (13466, 611, '', '', '', '0000-00-00', 13466, '', NULL), (13467, 612, '', '', '', '0000-00-00', 13467, '', NULL), (13468, 613, '', '', '', '0000-00-00', 13468, '', NULL), (13469, 614, '', '', '', '0000-00-00', 13469, '', NULL), (13470, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 13470, 'New', NULL), (13471, 616, '', '', '', '0000-00-00', 13471, '', NULL), (13472, 617, '', '***Be careful to align top spacers to prevent movement of ', 'sample on contact***', '0000-00-00', 13472, '', NULL), (13473, 618, '', '', '', '0000-00-00', 13473, '', NULL), (13474, 619, '', '', '', '0000-00-00', 13474, '', NULL), (13475, 620, '', '', '', '0000-00-00', 13475, '', NULL), (13476, 621, '', '', '', '0000-00-00', 13476, '', NULL), (13477, 622, '', '', '', '0000-00-00', 13477, '', NULL), (13478, 623, '', '', '', '0000-00-00', 13478, '', NULL), (13479, 624, '', '', '', '0000-00-00', 13479, '', NULL), (13480, 625, '', '', '', '0000-00-00', 13480, '', NULL), (13481, 626, '', '', '', '0000-00-00', 13481, '', NULL), (13482, 627, '', '', '', '0000-00-00', 13482, '', NULL), (13483, 628, '', '', '', '0000-00-00', 13483, '', NULL), (13484, 629, '', '', '', '0000-00-00', 13484, '', NULL), (13485, 630, '', '', '', '0000-00-00', 13485, '', NULL), (13486, 631, '', '', '', '0000-00-00', 13486, '', NULL), (13487, 632, '', '', '', '0000-00-00', 13487, '', NULL), (13488, 633, '', '', '', '0000-00-00', 13488, '', NULL), (13489, 634, '', '', '', '0000-00-00', 13489, '', NULL), (13490, 635, '', '', '', '0000-00-00', 13490, '', NULL), (13491, 636, '', '', '', '0000-00-00', 13491, '', NULL), (13492, 637, 'S/N LP-831', ' w/ GeoJac LVDT (D-6027)', 'Range: 3 inches ', NULL, 13492, '1113/12', NULL), (13493, 638, 'S/N 2196', 'GeoJac Load Frame (E-4)', '', '0000-00-00', 13493, '', NULL), (13494, 639, '', '', '', '0000-00-00', 13494, '', NULL), (13495, 640, '', '', '', '0000-00-00', 13495, '', NULL), (13496, 641, '', '*Blue Pot compression/Red Pot Tension-Scale 3.4250 offest-00117*', '', '0000-00-00', 13496, '', NULL), (13497, 642, '', '', '', '0000-00-00', 13497, '', NULL), (13498, 643, 'S/N 411306', ' w/ Artech 20210-500 Load Cell (E-4)', 'Range: 500 lbs ', '2012-11-28', 13498, '11/28/2012', NULL), (13499, 644, '', '', '', '0000-00-00', 13499, '', NULL), (13500, 645, '', '', '', '0000-00-00', 13500, '', NULL), (13501, 646, '', '', '', '0000-00-00', 13501, '', NULL), (13502, 647, '', '', '', '0000-00-00', 13502, '', NULL), (13503, 648, '', '', '', '0000-00-00', 13503, '', NULL), (13504, 649, '', '', '', '0000-00-00', 13504, '', NULL), (13505, 650, '', '', '', '0000-00-00', 13505, '', NULL), (13506, 651, '114605-3D', ' Serial Number too long ', '', '0000-00-00', 13506, '', NULL), (13507, 652, '', '', '', '0000-00-00', 13507, '', NULL), (13508, 653, '', '', '', '0000-00-00', 13508, '', NULL), (13509, 654, '', '', '', '0000-00-00', 13509, '', NULL), (13510, 655, '', '', '', '0000-00-00', 13510, '', NULL), (13511, 656, '', '', '', '0000-00-00', 13511, '', NULL), (13512, 657, '', '', '', '0000-00-00', 13512, '', NULL), (13513, 658, '', '', '', '0000-00-00', 13513, '', NULL), (13514, 659, '', '', '', '0000-00-00', 13514, '', NULL), (13515, 660, 'S/N 10325914', ' w/MTS 634-11E-54 Extensometer (E-83)', 'Range: 0.2 0.5 in/in', '2013-01-14', 13515, '1/14/2013', NULL), (13516, 661, 'S/N 040144231', 'Humboldt Dial Indicator Vert. Displacement (D-6027)', 'Range: 1 inches (Channel #4)', '2013-03-06', 13516, '3/6/2013', NULL), (13517, 662, '', 'Send Certs to: Joseph B. Fay Company, PO Box 66, Russellton, PA ', '15076', '0000-00-00', 13517, '', NULL), (13518, 663, '', '', '', '0000-00-00', 13518, '', NULL), (13519, 664, '', '', '', '0000-00-00', 13519, '', NULL), (13520, 665, 'S/N', ' w/ Displacement (E-2309)', 'Range: ', NULL, 13520, 'New', NULL), (13521, 666, '', '', '', '0000-00-00', 13521, '', NULL), (13522, 667, '', '', '', '0000-00-00', 13522, '', NULL), (13523, 668, '', '', '', '0000-00-00', 13523, '', NULL), (13524, 669, '', '', '', '0000-00-00', 13524, '', NULL), (13525, 670, '', '', '', '0000-00-00', 13525, '', NULL), (13526, 671, '', '', '', '0000-00-00', 13526, '', NULL), (13527, 672, 'S/N 13 / NC #13', 'HCS Hydraulic Load Cell (E-4 & 2 %)', 'Range: 50K ', '2011-11-14', 13527, '11/14/2011', NULL), (13528, 673, '', '', '', '0000-00-00', 13528, '', NULL), (13529, 674, '', '', '', '0000-00-00', 13529, '', NULL), (13530, 675, 'S/N ', ' w/ Speed Control (E2658-11)', 'Range: ', NULL, 13530, 'New', NULL), (13531, 676, '', '', '', '0000-00-00', 13531, '', NULL), (13532, 677, '', '', '', '0000-00-00', 13532, '', NULL), (13533, 678, '', '', '', '0000-00-00', 13533, '', NULL), (13534, 679, '', '', '', '0000-00-00', 13534, '', NULL), (13535, 680, '', '', '', '0000-00-00', 13535, '', NULL), (13536, 681, 'S/N 003729', 'Hilti Pull Tester Model 59604/02/97 (Chicago) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs ', '2010-12-08', 13536, '12/8/2010', NULL), (13537, 682, 'S/N 95797 / NC#8', 'Simms LC-2502 Hydraulic Load Cell (E-4)', 'Range: 40K Gauge #52', '2012-03-29', 13537, '3/29/2012', NULL), (13538, 683, '', '', '', '0000-00-00', 13538, '', NULL), (13539, 684, '', '', '', '0000-00-00', 13539, '', NULL), (13540, 685, '', '', '', '0000-00-00', 13540, '', NULL), (13541, 686, '', '', '', '0000-00-00', 13541, '', NULL), (13542, 687, '', '', '', '0000-00-00', 13542, '', NULL), (13543, 688, '', '', '', '0000-00-00', 13543, '', NULL), (13544, 689, '', '', '', '0000-00-00', 13544, '', NULL), (13545, 690, 'S/N 0022', 'VSL Bond Tester (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2012-04-05', 13545, '4/5/2012', NULL), (13546, 691, '', '', '', '0000-00-00', 13546, '', NULL), (13547, 692, '', '', '', '0000-00-00', 13547, '', NULL), (13548, 693, 'S/N G198', 'Fowler Caliper ID # RKEP-1201 (Man Specs)', 'Range :12\"', '2013-03-26', 13548, '3/26/2013', NULL), (13549, 694, 'S/N A-1102', 'Hogentogler Manometer (D-5720)', 'Range: 13 cm Hg', NULL, 13549, 'New', NULL), (13550, 695, 'S/N 1400 ', 'Rainhart Series 416 Beam Breaker (E-4 & 2%)', 'Range: 12K ', '2013-02-06', 13550, '2/6/2013', NULL), (13551, 696, '', '', '', '0000-00-00', 13551, '', NULL), (13552, 697, '', '', '', '0000-00-00', 13552, '', NULL), (13553, 698, '', '', '', '0000-00-00', 13553, '', NULL), (13554, 699, '', '', '', '0000-00-00', 13554, '', NULL), (13555, 700, 'S/N 138129', 'Proceq Type N Hammer (C-805)', 'Range: 78 to 82', '2013-07-11', 13555, '7/11/2013', NULL), (13556, 701, '', '', '', '0000-00-00', 13556, '', NULL), (13557, 702, '', '', '', '0000-00-00', 13557, '', NULL), (13558, 703, '', '', '', '0000-00-00', 13558, '', NULL), (13559, 704, '', '', '', '0000-00-00', 13559, '', NULL), (13560, 705, '', '', '', '0000-00-00', 13560, '', NULL), (13561, 706, '', '', '', '0000-00-00', 13561, '', NULL), (13562, 707, '', '', '', '0000-00-00', 13562, '', NULL), (13563, 708, '', '', '', '0000-00-00', 13563, '', NULL), (13564, 709, '', '', '', '0000-00-00', 13564, '', NULL), (13565, 710, '', '', '', '0000-00-00', 13565, '', NULL), (13566, 711, '', '', '', '0000-00-00', 13566, '', NULL), (13567, 712, '', '', '', '0000-00-00', 13567, '', NULL), (13568, 713, '', '', '', '0000-00-00', 13568, '', NULL), (13569, 714, '', '', '', '0000-00-00', 13569, '', NULL), (13570, 715, 'S/N 8580-112380', 'Instron Biaxial Inplane (E-4)', '', '2012-03-12', 13570, '3/12/2012', NULL), (13571, 716, '', ' w/ Plus / Minus X Axis ', 'Range: -2.25 to +2.25', '2012-03-13', 13571, '3/13/2012', NULL), (13572, 717, ' ', ' ', ' ', '0000-00-00', 13572, '', NULL), (13573, 718, '', '', '', '0000-00-00', 13573, '', NULL), (13574, 719, '', '', '', '0000-00-00', 13574, '', NULL), (13575, 720, '', '', '', '0000-00-00', 13575, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (13576, 721, '', '', '', '0000-00-00', 13576, '', NULL), (13577, 722, '', '', '', '0000-00-00', 13577, '', NULL), (13578, 723, '', '', '', '0000-00-00', 13578, '', NULL), (13579, 724, '', '', '', '0000-00-00', 13579, '', NULL), (13580, 725, '', '', '', '0000-00-00', 13580, '', NULL), (13581, 726, '', '', '', '0000-00-00', 13581, '', NULL), (13582, 727, '', '', '', '0000-00-00', 13582, '', NULL), (13583, 728, '', '', '', '0000-00-00', 13583, '', NULL), (13584, 729, '', '', '', '0000-00-00', 13584, '', NULL), (13585, 730, '', '', '', '0000-00-00', 13585, '', NULL), (13586, 731, '', '', '', '0000-00-00', 13586, '', NULL), (13587, 732, 'S/N Stress 7 Deisel', 'Stress Con Prestress Jack (E-4 & PCI & 2%)', 'Range: 5K / 50K ', '2013-10-08', 13587, '10/8/2013', NULL), (13588, 733, '', '', '', '0000-00-00', 13588, '', NULL), (13589, 734, 'S/N 101209-9 ', 'Admet Mdl. 2611 w/ Quattro T & C Digital Testing Machine (E-4)', '', '2013-09-30', 13589, '9/30/2013', NULL), (13590, 735, '', '', '', '0000-00-00', 13590, '', NULL), (13591, 736, '', '', '', '0000-00-00', 13591, '', NULL), (13592, 737, '', '', '', '0000-00-00', 13592, '', NULL), (13593, 738, '', '', '', '0000-00-00', 13593, '', NULL), (13594, 739, '', '', '', '0000-00-00', 13594, '', NULL), (13595, 740, 'S/N H-1', 'Hamilton Prestress Jack (E-4 & PCI & 2%)', 'Range: 2K (460 PSI) / 40K', '2012-04-10', 13595, '4/10/2012', NULL), (13596, 741, '', '', '', '0000-00-00', 13596, '', NULL), (13597, 742, '', '', '', '0000-00-00', 13597, '', NULL), (13598, 743, 'S/N TEN007', 'Tinius Olsen Super L MTest Displacement Encoder (E-2309)', 'Range: 5 inches', '2012-04-24', 13598, '4/24/2012', NULL), (13599, 744, '', '', '', '0000-00-00', 13599, '', NULL), (13600, 745, '', '', '', '0000-00-00', 13600, '', NULL), (13601, 746, '', '', '', '0000-00-00', 13601, '', NULL), (13602, 747, '', '', '', '0000-00-00', 13602, '', NULL), (13603, 748, '', '', '', '0000-00-00', 13603, '', NULL), (13604, 749, '', '', '', '0000-00-00', 13604, '', NULL), (13605, 750, '', '', '', '0000-00-00', 13605, '', NULL), (13606, 751, 'S/N 209315', ' w/Tinius Olsen LS-20%-1 Extensometer (E-83)', 'Range: 0.04 in/min (GL 1\") (20%)', '2013-05-02', 13606, '5/2/2013', NULL), (13607, 752, '', '', '', '0000-00-00', 13607, '', NULL), (13608, 753, '', '', '', '0000-00-00', 13608, '', NULL), (13609, 754, 'S/N 4899', 'Karol Warner Mdl. 9210 Manometer (D570)', 'Range: 800mmHg', NULL, 13609, 'New', NULL), (13610, 755, '', '', '', '0000-00-00', 13610, '', NULL), (13611, 756, '', '', '', '0000-00-00', 13611, '', NULL), (13612, 757, 'S/N 042106576', 'Humboldt BG2500-0-16 Dial Indicator (OOS) (D-6027)', 'Range: 0.25 inches', '2011-01-31', 13612, '1/31/2011', NULL), (13613, 758, '', '', '', '0000-00-00', 13613, '', NULL), (13614, 759, '', '', '', '0000-00-00', 13614, '', NULL), (13615, 760, 'S/N 1421-1-1001-', 'ELE 2000-450K-CS-100-2 Digital Compression Machine (E-4)', 'Range: 3K to 450K (moved)', '2012-04-05', 13615, '4/5/2012', NULL), (13616, 761, '', '', '', '0000-00-00', 13616, '', NULL), (13617, 762, '', '', '', '0000-00-00', 13617, '', NULL), (13618, 763, '', '', '', '0000-00-00', 13618, '', NULL), (13619, 764, '', '', '', '0000-00-00', 13619, '', NULL), (13620, 765, '', '', '', '0000-00-00', 13620, '', NULL), (13621, 766, 'S/N 48900', 'Mettler ScalePE24 (E898)', 'Range: 100 g to 10,000 g', '2013-07-16', 13621, '7/16/2013', NULL), (13622, 767, '', '', '', '0000-00-00', 13622, '', NULL), (13623, 768, 'S/N R-3997', 'with Load Cell (E-4) 100% Range', 'Range: 10lbs to 1 K', '2012-11-28', 13623, '11/28/2012', NULL), (13624, 769, 'S/N C-455', ' with Speed Control (E-2658-11) Recorder Proportional', 'Range: 2 inches/min', '2012-11-27', 13624, '11/27/2012', NULL), (13625, 770, '', 'Mail Certs to Billing Address Attn: Mark Miller', '', '0000-00-00', 13625, '', NULL), (13626, 771, '', '', '', '0000-00-00', 13626, '', NULL), (13627, 772, '', '', '', '0000-00-00', 13627, '', NULL), (13628, 773, '', '', '', '0000-00-00', 13628, '', NULL), (13629, 774, '', '', '', '0000-00-00', 13629, '', NULL), (13630, 775, '', '', '', '0000-00-00', 13630, '', NULL), (13631, 776, '', '', '', '0000-00-00', 13631, '', NULL), (13632, 777, ' ', ' ', ' ', '0000-00-00', 13632, '', NULL), (13633, 778, 'S/N C-455', ' with Speed Control (E2658-11) Recorder ', 'Range: 10 in/ min', '2012-11-27', 13633, '11/27/2012', NULL), (13634, 779, 'S/N MR-4297', ' with Speed Control (E2658-11)', 'Range: 2 in/min', '2012-11-28', 13634, '11/28/2012', NULL), (13635, 780, '', '', '', '0000-00-00', 13635, '', NULL), (13636, 781, '', '', '', '0000-00-00', 13636, '', NULL), (13637, 782, 'S/N F7646', 'Powerteam Post Tension Jack (E-4 & PCI)', 'Range: 45K (I Year Schedule) (OOS)', '2010-01-21', 13637, '1/21/2010', NULL), (13638, 783, '', '', '', '0000-00-00', 13638, '', NULL), (13639, 784, '', '', '', '0000-00-00', 13639, '', NULL), (13640, 785, '', '', '', '0000-00-00', 13640, '', NULL), (13641, 786, '', '', '', '0000-00-00', 13641, '', NULL), (13642, 787, '', '', '', '0000-00-00', 13642, '', NULL), (13643, 788, '', '', '', '0000-00-00', 13643, '', NULL), (13644, 789, '', '', '', '0000-00-00', 13644, '', NULL), (13645, 790, '', '', '', '0000-00-00', 13645, '', NULL), (13646, 791, 'S/N 211723', ' w/Speed Control (E2658-11)', 'Range: 0.055 in/min', '2013-06-04', 13646, '6/4/2013', NULL), (13647, 792, '', '', '', '0000-00-00', 13647, '', NULL), (13648, 793, '', '', '', '0000-00-00', 13648, '', NULL), (13649, 794, '', '', '', '0000-00-00', 13649, '', NULL), (13650, 795, '', '', '', '0000-00-00', 13650, '', NULL), (13651, 796, '', '', '', '0000-00-00', 13651, '', NULL), (13652, 797, '', '', '', '0000-00-00', 13652, '', NULL), (13653, 798, '', '', '', '0000-00-00', 13653, '', NULL), (13654, 799, '', '', '', '0000-00-00', 13654, '', NULL), (13655, 800, '', '', '', '0000-00-00', 13655, '', NULL), (13656, 801, '', '', '', '0000-00-00', 13656, '', NULL), (13657, 802, '', '', '', '0000-00-00', 13657, '', NULL), (13658, 803, '', '', '', '0000-00-00', 13658, '', NULL), (13659, 804, '', '', '', '0000-00-00', 13659, '', NULL), (13660, 805, '', '', '', '0000-00-00', 13660, '', NULL), (13661, 806, '', '', '', '0000-00-00', 13661, '', NULL), (13662, 807, '', '', '', '0000-00-00', 13662, '', NULL), (13663, 808, '', '', '', '0000-00-00', 13663, '', NULL), (13664, 809, '', '', '', '0000-00-00', 13664, '', NULL), (13665, 810, '', '', '', '0000-00-00', 13665, '', NULL), (13666, 811, '', '', '', '0000-00-00', 13666, '', NULL), (13667, 812, '', '', '', '0000-00-00', 13667, '', NULL), (13668, 813, '', '', '', '0000-00-00', 13668, '', NULL), (13669, 814, 'S/N 516', ' w/ Instron 2630-115 Extensometer (ID# MVMTC 40)(E-83)', 'Range: 0.50 in/in (GL 2\") (50% Range)', '2013-07-23', 13669, '7/23/2013', NULL), (13670, 815, '', 'Geotechnical calibrates equipment below In House: ', '', '0000-00-00', 13670, '', NULL), (13671, 816, '', ' Send Solication Letters by E-mail not Fax to ', 'ryan.mcneel@taktl-llc.com', '0000-00-00', 13671, '', NULL), (13672, 817, '', '', '', '0000-00-00', 13672, '', NULL), (13673, 818, '', '', '', '0000-00-00', 13673, '', NULL), (13674, 819, '', '', '', '0000-00-00', 13674, '', NULL), (13675, 820, '', '', '', '0000-00-00', 13675, '', NULL), (13676, 821, '', '', '', '0000-00-00', 13676, '', NULL), (13677, 822, '', '', '', '0000-00-00', 13677, '', NULL), (13678, 823, '', '', '', '0000-00-00', 13678, '', NULL), (13679, 824, '', '', '', '0000-00-00', 13679, '', NULL), (13680, 825, '', '', '', '0000-00-00', 13680, '', NULL), (13681, 826, 'S/N 0508117/16', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 13681, '8/27/2013', NULL), (13682, 827, '', '', '', '0000-00-00', 13682, '', NULL), (13683, 828, '', '', '', '0000-00-00', 13683, '', NULL), (13684, 829, 'S/N 0507070/9', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1% FS) ', 'Range : 5 Ton', NULL, 13684, 'New', NULL), (13685, 830, '', '', '', '0000-00-00', 13685, '', NULL), (13686, 831, 'S/N FET 5K (A)', 'VMC Mdl.VC-210 Load Cell (E-4) ', 'Range: 5K (Tension Only)', '2010-01-13', 13686, '1/13/2010', NULL), (13687, 832, '', '', '', '0000-00-00', 13687, '', NULL), (13688, 833, '', ' Paying with Credit Card in the Future get #', '', '0000-00-00', 13688, '', NULL), (13689, 834, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 13689, '', NULL), (13690, 835, ' ', ' ', ' ', '0000-00-00', 13690, '', NULL), (13691, 836, ' ', ' ', ' ', '0000-00-00', 13691, '', NULL), (13692, 837, '', '', '', '0000-00-00', 13692, '', NULL), (13693, 838, '', '', '', '0000-00-00', 13693, '', NULL), (13694, 839, '', '', '', '0000-00-00', 13694, '', NULL), (13695, 840, '', '', '', '0000-00-00', 13695, '', NULL), (13696, 841, '', ' Comp. Password P@SSW0RD', '', '0000-00-00', 13696, '', NULL), (13697, 842, 'S/N Bed #4', 'Enerpac Switch Tie Jack (E-4 & PCI ManSpecs)', 'Range: 440K (8,100 psi)', '2013-08-28', 13697, '8/28/2013', NULL), (13698, 843, '', '', '', '0000-00-00', 13698, '', NULL), (13699, 844, '', '', '', '0000-00-00', 13699, '', NULL), (13700, 845, '', '', '', '0000-00-00', 13700, '', NULL), (13701, 846, '', '', '', '0000-00-00', 13701, '', NULL), (13702, 847, '', '', '', '0000-00-00', 13702, '', NULL), (13703, 848, '', '', '', '0000-00-00', 13703, '', NULL), (13704, 849, '', '', '', '0000-00-00', 13704, '', NULL), (13705, 850, '', '', '', '0000-00-00', 13705, '', NULL), (13706, 851, '', '', '', '0000-00-00', 13706, '', NULL), (13707, 852, '', '', '', '0000-00-00', 13707, '', NULL), (13708, 853, 'S/N 901G', ' w/ Gauge', 'Range: 10,000 psi (60 Ton)', '2013-09-26', 13708, '9/26/2013', NULL), (13709, 854, ' ', ' ', ' ', '0000-00-00', 13709, '', NULL), (13710, 855, '', '', '', '0000-00-00', 13710, '', NULL), (13711, 856, '', '', '', '0000-00-00', 13711, '', NULL), (13712, 857, '', '', '', '0000-00-00', 13712, '', NULL), (13713, 858, '', '', '', '0000-00-00', 13713, '', NULL), (13714, 859, '', '', '', '0000-00-00', 13714, '', NULL), (13715, 860, '', '', '', '0000-00-00', 13715, '', NULL), (13716, 861, '', '', '', '0000-00-00', 13716, '', NULL), (13717, 862, '', '', '', '0000-00-00', 13717, '', NULL), (13718, 863, '', '', '', '0000-00-00', 13718, '', NULL), (13719, 864, '', '', '', '0000-00-00', 13719, '', NULL), (13720, 865, '', '', '', '0000-00-00', 13720, '', NULL), (13721, 866, '', '', '', '0000-00-00', 13721, '', NULL), (13722, 867, '', '', '', '0000-00-00', 13722, '', NULL), (13723, 868, '', '', '', '0000-00-00', 13723, '', NULL), (13724, 869, '', '', '', '0000-00-00', 13724, '', NULL), (13725, 870, '', '', '', '0000-00-00', 13725, '', NULL), (13726, 871, '', '', '', '0000-00-00', 13726, '', NULL), (13727, 872, '', '', '', '0000-00-00', 13727, '', NULL), (13728, 873, 'S/N 5A', 'Brainard Kilman Pore Pressure System (D-5720)', 'Range: 200 psi', '2013-10-02', 13728, '10/2/2013', NULL), (13729, 874, '', '', '', '0000-00-00', 13729, '', NULL), (13730, 875, '', '', '', '0000-00-00', 13730, '', NULL), (13731, 876, '', '', '', '0000-00-00', 13731, '', NULL), (13732, 877, '', '', '', '0000-00-00', 13732, '', NULL), (13733, 878, '', '', '', '0000-00-00', 13733, '', NULL), (13734, 879, '', '', '', '0000-00-00', 13734, '', NULL), (13735, 880, '', '', '', '0000-00-00', 13735, '', NULL), (13736, 881, '', '', '', '0000-00-00', 13736, '', NULL), (13737, 882, '', '', '', '0000-00-00', 13737, '', NULL), (13738, 883, '', '', '', '0000-00-00', 13738, '', NULL), (13739, 884, '', '', '', '0000-00-00', 13739, '', NULL), (13740, 885, '', '', '', '0000-00-00', 13740, '', NULL), (13741, 886, '', '', '', '0000-00-00', 13741, '', NULL), (13742, 887, '', '', '', '0000-00-00', 13742, '', NULL), (13743, 888, '', '', '', '0000-00-00', 13743, '', NULL), (13744, 889, '', '', '', '0000-00-00', 13744, '', NULL), (13745, 890, '', '', '', '0000-00-00', 13745, '', NULL), (13746, 891, 'S/N', 'Eilon Engineering RON 4000 S-1 Load Cell (ManSpec & 0.1%FS)', 'Range: 1 Ton ', NULL, 13746, 'New', NULL), (13747, 892, 'S/N 005940', 'Hilti Tester 59604/04/12', 'Range: 3,000 lbs', '2012-10-30', 13747, '10/30/2012', NULL), (13748, 893, '', '', '', '0000-00-00', 13748, '', NULL), (13749, 894, '', '', '', '0000-00-00', 13749, '', NULL), (13750, 895, '', '', '', '0000-00-00', 13750, '', NULL), (13751, 896, '', '', '', '0000-00-00', 13751, '', NULL), (13752, 897, '', '', '', '0000-00-00', 13752, '', NULL), (13753, 898, '', '', '', '0000-00-00', 13753, '', NULL), (13754, 899, '', '', '', '0000-00-00', 13754, '', NULL), (13755, 900, '', '', '', '0000-00-00', 13755, '', NULL), (13756, 901, '', '', '', '0000-00-00', 13756, '', NULL), (13757, 902, '', '', '', '0000-00-00', 13757, '', NULL), (13758, 903, '', '', '', '0000-00-00', 13758, '', NULL), (13759, 904, '', '', '', '0000-00-00', 13759, '', NULL), (13760, 905, 'S/N 2316', 'Geo Comp Loadtrac II LVDT Displacement Channel #2 ID#68 ', 'Range: 1 inch (E-2309)', '2010-10-06', 13760, '10/6/2010', NULL), (13761, 906, '', '', '', '0000-00-00', 13761, '', NULL), (13762, 907, 'S/N 005', ' w/ Gauge ', 'Range: 30 Ton (4,400 PSI)', '2013-09-17', 13762, '9/17/2013', NULL), (13763, 908, '', '', '', '0000-00-00', 13763, '', NULL), (13764, 909, 'S/N 2092033', 'Eilon Engineering RON 2100-S-20 Dynamometer ', 'Range : 40K', '2012-05-17', 13764, '5/17/2012', NULL), (13765, 910, '', '', '', '0000-00-00', 13765, '', NULL), (13766, 911, '', '', '', '0000-00-00', 13766, '', NULL), (13767, 912, '', '', '', '0000-00-00', 13767, '', NULL), (13768, 913, '', '', '', '0000-00-00', 13768, '', NULL), (13769, 914, '', '', '', '0000-00-00', 13769, '', NULL), (13770, 915, 'S/N 3144 (ID#004120)', ' w/ Satec Model APEX II EMF Position Channel (E-2309)', 'Range: 0.5 Inch to 5 Inch', '2012-01-03', 13770, '1/3/2012', NULL), (13771, 916, '', '', '', '0000-00-00', 13771, '', NULL), (13772, 917, '', '', '', '0000-00-00', 13772, '', NULL), (13773, 918, '', '', '', '0000-00-00', 13773, '', NULL), (13774, 919, 'S/N 8587', 'Soiltest Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K ', '2012-12-19', 13774, '12/19/2012', NULL), (13775, 920, '', '', '', '0000-00-00', 13775, '', NULL), (13776, 921, 'S/N 643 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel#3', 'Range: 150 PSI (D-5720)', '2012-12-17', 13776, '12/17/2012', NULL), (13777, 922, 'Frame 1', 'Soiltest Consolidation Machine w/ 2 frames (E-4 & 2%)', 'Range: 1/4 TSF to 16 TSF', '2012-12-17', 13777, '12/17/2012', NULL), (13778, 923, 'S/N 357 / 1223', 'Durham Geo Pressure Transducer E-116 w/ BK Dig. E-400 (D-5720)', 'Range: 300 PSI', '2012-12-17', 13778, '12/17/2012', NULL), (13779, 924, '', '', '', '0000-00-00', 13779, '', NULL), (13780, 925, '', '', '', '0000-00-00', 13780, '', NULL), (13781, 926, '', '', '', '0000-00-00', 13781, '', NULL), (13782, 927, '', '', '', '0000-00-00', 13782, '', NULL), (13783, 928, '', '', '', '0000-00-00', 13783, '', NULL), (13784, 929, '', ' w/ Pressure Transducer (D-5720)', 'Range: 150 PSI', '2013-01-07', 13784, '1/7/2013', NULL), (13785, 930, 'S/N 2151', 'Geojac Consolidometer (E-4)', ' ', '0000-00-00', 13785, '', NULL), (13786, 931, 'S/N PS2-145', 'Pressure Transducer (Cell) (ID# G1438) (E-4)', 'Range: 200 PSI', '2013-01-07', 13786, '1/7/2013', NULL), (13787, 932, 'S/N G813', ' w/ LVDT Horizonital', 'Range: 1 inch', '2013-01-09', 13787, '1/9/2013', NULL), (13788, 933, 'S/N LP922', ' w/ LVDT (D-6027) (ID# G1420)', 'Range: 3 inches', '2013-01-09', 13788, '1/9/2013', NULL), (13789, 934, '', '', '', '0000-00-00', 13789, '', NULL), (13790, 935, 'S/N 050245702', ' w/ Dial Indicator Vertical Displacement (D-6027)', 'Range: 0.6 inches ', '2013-01-23', 13790, '1/23/2013', NULL), (13791, 936, 'S/N CB179379982', 'Vaccum Gauge Supco VG64 (E-4 & Man Specs)', 'Range: ', NULL, 13791, 'New', NULL), (13792, 937, '', 'For Cert add Section K from PO(Look at last Years if Needed)', '', '0000-00-00', 13792, '', NULL), (13793, 938, '', '', '', '0000-00-00', 13793, '', NULL), (13794, 939, '', '', '', '0000-00-00', 13794, '', NULL), (13795, 940, 'S/N 24004', 'Testmark CM-600B-DSD Digital Compression Machine (E-4)', 'Range: 3K to 600K (ID#BRKRM3)', '2013-02-07', 13795, '2/7/2013', NULL), (13796, 941, '', '', '', '0000-00-00', 13796, '', NULL), (13797, 942, '', '', '', '0000-00-00', 13797, '', NULL), (13798, 943, '', '', '', '0000-00-00', 13798, '', NULL), (13799, 944, 'S/N 0316422/1', 'Eilon Engineering RON 2501 S-3 (ManSpecs 0.1 %FS)', 'Range: 600 lbs to 6K (ID# 815-29-06-064)', NULL, 13799, 'New', NULL), (13800, 945, '', '', '', '0000-00-00', 13800, '', NULL), (13801, 946, '', '', '', '0000-00-00', 13801, '', NULL), (13802, 947, '', '', '', '0000-00-00', 13802, '', NULL), (13803, 948, '', '', '', '0000-00-00', 13803, '', NULL), (13804, 949, '', '', '', '0000-00-00', 13804, '', NULL), (13805, 950, '', '', '', '0000-00-00', 13805, '', NULL), (13806, 951, 'S/N 1157', 'Karol Warner 6630 Pore Pressure Transducer (D-5720)', 'Range: 100 PSI', '2013-02-26', 13806, '2/26/2013', NULL), (13807, 952, '', '', '', '0000-00-00', 13807, '', NULL), (13808, 953, 'S/N 12200401', 'Hyvac Vacuum Pump (Mans Specs)', 'Range: 26.48 Inches Hg', '2013-02-26', 13808, '2/26/2013', NULL), (13809, 954, '', '', '', '0000-00-00', 13809, '', NULL), (13810, 955, '', '', '', '0000-00-00', 13810, '', NULL), (13811, 956, '', '', '', '0000-00-00', 13811, '', NULL), (13812, 957, '', '', '', '0000-00-00', 13812, '', NULL), (13813, 958, '', '', '', '0000-00-00', 13813, '', NULL), (13814, 959, '', '', '', '0000-00-00', 13814, '', NULL), (13815, 960, '', '', '', '0000-00-00', 13815, '', NULL), (13816, 961, '', '', '', '0000-00-00', 13816, '', NULL), (13817, 962, '', '', '', '0000-00-00', 13817, '', NULL), (13818, 963, 'S/N G6520', 'ELE Tri Flex 2 Pressure Panel (D-5720)', 'Range: 200 psi', '2013-07-30', 13818, '7/30/2013', NULL), (13819, 964, '', '', '', '0000-00-00', 13819, '', NULL), (13820, 965, '', '', '', '0000-00-00', 13820, '', NULL), (13821, 966, '', '', '', '0000-00-00', 13821, '', NULL), (13822, 967, 'S/N 0025', 'VSL Bond Tester (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2006-11-22', 13822, '11/22/2006', NULL), (13823, 968, 'S/N 501343', 'Eilon Engineering RON 2000 S50 Load Cell (Man Specs 0.1% FS)', 'Range: 50 Ton', '2013-10-09', 13823, '10/9/2013', NULL), (13824, 969, 'S/N 512613', 'RON 2000 Eilon Engineering (Man Specs 0.1 % FS)', 'Range: 10K', '2013-02-14', 13824, '2/14/2013', NULL), (13825, 970, '', '', '', '0000-00-00', 13825, '', NULL), (13826, 971, 'S/N PFS-03', 'TIF Electronic Mdl. 9010A Scale (Moved) (E-898)', 'Range: 110 lbs ', '2010-04-13', 13826, '4/13/2010', NULL), (13827, 972, '', '', '', '0000-00-00', 13827, '', NULL), (13828, 973, '', '', '', '0000-00-00', 13828, '', NULL), (13829, 974, '', '', '', '0000-00-00', 13829, '', NULL), (13830, 975, '', '', '', '0000-00-00', 13830, '', NULL), (13831, 976, '', '', '', '0000-00-00', 13831, '', NULL), (13832, 977, '', '', '', '0000-00-00', 13832, '', NULL), (13833, 978, '', '', '', '0000-00-00', 13833, '', NULL), (13834, 979, '', '', '', '0000-00-00', 13834, '', NULL), (13835, 980, '', '', '', '0000-00-00', 13835, '', NULL), (13836, 981, '', '', '', '0000-00-00', 13836, '', NULL), (13837, 982, '', '', '', '0000-00-00', 13837, '', NULL), (13838, 983, '', '', '', '0000-00-00', 13838, '', NULL), (13839, 984, '', '', '', '0000-00-00', 13839, '', NULL), (13840, 985, '', '', '', '0000-00-00', 13840, '', NULL), (13841, 986, '', '', '', '0000-00-00', 13841, '', NULL), (13842, 987, '', '', '', '0000-00-00', 13842, '', NULL), (13843, 988, '', '', '', '0000-00-00', 13843, '', NULL), (13844, 989, '', '', '', '0000-00-00', 13844, '', NULL), (13845, 990, '', '', '', '0000-00-00', 13845, '', NULL), (13846, 991, '', '', '', '0000-00-00', 13846, '', NULL), (13847, 992, 'S/N 2108', 'Instron Extensometer', 'Range:0.1mm/mm 25 mm gl ID #Lab43', '2013-03-13', 13847, '3/13/2013', NULL), (13848, 993, 'S/N 350 ', 'Pine Instrument Mdl. 850 Asphalt Tester (ID# 000028) (E-4 & 2%) ', 'Range: 2.5K / 5K / 10K', '2012-04-17', 13848, '4/17/2012', NULL), (13849, 994, '', '', '', '0000-00-00', 13849, '', NULL), (13850, 995, 'S/N 1154', 'Brainard-Kilman CBR Tester S-610 w/Speed Control (Man Specs)', 'Range: 0.050 in/min ', '2013-03-12', 13850, '3/12/2013', NULL), (13851, 996, 'S/N 962625245', 'Humbolt BG2110-0-16 Dial Indicator (D-6027) ', 'Range: 1 Inch', '2013-03-13', 13851, '3/13/2013', NULL), (13852, 997, 'S/N 23262', ' w/ LVDT for GCTS Model PTL-100 (D-6027)', 'Range: 50 mm', '2013-03-12', 13852, '3/12/2013', NULL), (13853, 998, ' ', ' ', ' ', '0000-00-00', 13853, '', NULL), (13854, 999, '', '', '', '0000-00-00', 13854, '', NULL), (13855, 1000, '', '', '', '0000-00-00', 13855, '', NULL), (13856, 1001, '', '', '', '0000-00-00', 13856, '', NULL), (13857, 1002, '', '', '', '0000-00-00', 13857, '', NULL), (13858, 1003, '', '', '', '0000-00-00', 13858, '', NULL), (13859, 1004, 'S/N 1035', 'Durham Geo Mdl. CBR-S-610 Plotter (E-4)', 'Range: 5K ', '2008-04-30', 13859, '4/30/2008', NULL), (13860, 1005, '', '', '', '0000-00-00', 13860, '', NULL), (13861, 1006, '', ' ***Must have .6 Cable***', '', '0000-00-00', 13861, '', NULL), (13862, 1007, '', '', '', '0000-00-00', 13862, '', NULL), (13863, 1008, '', ' ***Mail Certs to Job Site ***', '', '0000-00-00', 13863, '', NULL), (13864, 1009, '', '', '', '0000-00-00', 13864, '', NULL), (13865, 1010, '', 'Attn:Sean Walsh PO Box 824 Bloomfield Hills MI 48303', '', '0000-00-00', 13865, '', NULL), (13866, 1011, 'S/N 05', 'Stress Con PreStress Jack (E-4 & PCI & 2%)', 'Range: 4K/5K, Final 50K', '2012-06-15', 13866, '6/15/2012', NULL), (13867, 1012, '', ' w/ Extra Final Gauge #2 (E-4 & PCI)', 'Range: 35K', '2013-07-10', 13867, '7/10/2013', NULL), (13868, 1013, 'S/N 138511 /ID# LabD46', 'RDP LVDT D6/05000A w/ Strainsmart DAQ Channel #3 (D-6027)', 'Range: 0.25 mm to 2.5 mm', '2013-06-12', 13868, '6/12/2013', NULL), (13869, 1014, 'S/N Jack #6', 'Simms Hamilton P-3000 Prestress Jack (E-4 & PCI)', 'Range: 4K / 40K', '2013-07-15', 13869, '7/15/2013', NULL), (13870, 1015, 'S/N 8191', 'Hercules-Tucker Prestress Jack (E-4 & PCI)', 'Range: 4K / 50K ', '2013-07-15', 13870, '7/15/2013', NULL), (13871, 1016, '', '', '', '0000-00-00', 13871, '', NULL), (13872, 1017, '', '', '', '0000-00-00', 13872, '', NULL), (13873, 1018, '', '', '', '0000-00-00', 13873, '', NULL), (13874, 1019, '', '', '', '0000-00-00', 13874, '', NULL), (13875, 1020, '', '', '', '0000-00-00', 13875, '', NULL), (13876, 1021, '', '', '', '0000-00-00', 13876, '', NULL), (13877, 1022, '', '', '', '0000-00-00', 13877, '', NULL), (13878, 1023, '', ' ***Hours vary call to make sure someone is there***', ' ***Mail Certs to Bill to address', '0000-00-00', 13878, '', NULL), (13879, 1024, '', '', '', '0000-00-00', 13879, '', NULL), (13880, 1025, '', '', '', '0000-00-00', 13880, '', NULL), (13881, 1026, 'S/N STR-E2 Ram B', 'Hercules Prestress Jack (OOS) (E-4 & PCI)', 'Range: 5K / 50K', '2008-08-20', 13881, '8/20/2008', NULL), (13882, 1027, '', '', '', '0000-00-00', 13882, '', NULL), (13883, 1028, '', '', '', '0000-00-00', 13883, '', NULL), (13884, 1029, '', '', '', '0000-00-00', 13884, '', NULL), (13885, 1030, 'S/N 7951', 'Stressing Jack Hercules HSJ', 'Range: Pre. 5,000 lbs / Final 60,000 lbs', '2013-01-03', 13885, '1/3/2013', NULL), (13886, 1031, '', '', '', '0000-00-00', 13886, '', NULL), (13887, 1032, '', '', '', '0000-00-00', 13887, '', NULL), (13888, 1033, '', '', '', '0000-00-00', 13888, '', NULL), (13889, 1034, '', '', '', '0000-00-00', 13889, '', NULL), (13890, 1035, '', '', '', '0000-00-00', 13890, '', NULL), (13891, 1036, 'S/N 1107435', 'Humboldt HM2302 Digital 4 Channel Logger Data Logger Ch. #1', 'Range: 5K BK LC: (E-4) (S/N 284)', '2013-04-03', 13891, '4/3/2013', NULL), (13892, 1037, 'S/N 5500037', 'Humboldt Speed Control (Man Specs)', 'Range: 0.050 in/min ', '2013-04-01', 13892, '4/1/2013', NULL), (13893, 1038, 'S/N 144 ', 'Brainard Kilman Perm Board Pressure Transducer (D-5720)', 'Range: 200 PSI', '2013-04-01', 13893, '4/1/2013', NULL), (13894, 1039, 'S/N 234/112', 'Brainard-Kilman Mdl. E-310 LVDT (Channel #19)', 'Range: 0.4 Inches (D-6027)', '2012-04-04', 13894, '4/4/2012', NULL), (13895, 1040, '', '', '', '0000-00-00', 13895, '', NULL), (13896, 1041, 'S/N MG 2084', ' w/ Humboldt Model HM2310.20 LVDT CHAN 2 (D-6027)', 'Range: 2 Inch', '2013-04-02', 13896, '4/2/2013', NULL), (13897, 1042, 'S/N E409/HS25/802', 'w/Brainard Kilman E-311-194 LVDT w/ Mdl. 700 Recorder (D-6027)', 'Range: 0.7 Inch ', '2013-04-02', 13897, '4/2/2013', NULL), (13898, 1043, 'S/N 535TX ID#002889', 'Pine Instruments Mdl. 850 Asphalt Press (E-4)', 'Range: 2.5K / 5K / 10K', '2013-04-02', 13898, '4/2/2013', NULL), (13899, 1044, 'S/N E-827872(ID#006840)', ' w/ Epsilon Mdl. 3542-0200-005-ST Extensometer (E-83)', 'Range: 0.05 in/in 2\"GL Channel #0', '2013-04-02', 13899, '4/2/2013', NULL), (13900, 1045, '', '', '', '0000-00-00', 13900, '', NULL), (13901, 1046, '', '', '', '0000-00-00', 13901, '', NULL), (13902, 1047, '', '', '', '0000-00-00', 13902, '', NULL), (13903, 1048, '', '', '', '0000-00-00', 13903, '', NULL), (13904, 1049, '', '', '', '0000-00-00', 13904, '', NULL), (13905, 1050, '', '', '', '0000-00-00', 13905, '', NULL), (13906, 1051, '', '', '', '0000-00-00', 13906, '', NULL), (13907, 1052, '', '', '', '0000-00-00', 13907, '', NULL), (13908, 1053, '', '', '', '0000-00-00', 13908, '', NULL), (13909, 1054, 'S/N 1021903', 'Total Comp TS-5K Load Cell (E-4)', 'Range: 5K ', '2013-05-02', 13909, '5/2/2013', NULL), (13910, 1055, '', '', '', '0000-00-00', 13910, '', NULL), (13911, 1056, '', '', '', '0000-00-00', 13911, '', NULL), (13912, 1057, '', '', '', '0000-00-00', 13912, '', NULL), (13913, 1058, '', '', '', '0000-00-00', 13913, '', NULL), (13914, 1059, '', '', '', '0000-00-00', 13914, '', NULL), (13915, 1060, 'S/N 18493', 'McDaniel Controls Inc Dial Gauge (D-5720)', 'Range: 5,000 psi', '2013-04-27', 13915, '4/27/2013', NULL), (13916, 1061, '', '', '', '0000-00-00', 13916, '', NULL), (13917, 1062, '', '', '', '0000-00-00', 13917, '', NULL), (13918, 1063, '', '', '', '0000-00-00', 13918, '', NULL), (13919, 1064, '', '', '', '0000-00-00', 13919, '', NULL), (13920, 1065, '', '', '', '0000-00-00', 13920, '', NULL), (13921, 1066, '', '', '', '0000-00-00', 13921, '', NULL), (13922, 1067, 'S/N 051505A', 'CSI Digital CS-100-9 used with above transducers', '', '0000-00-00', 13922, '', NULL), (13923, 1068, '', '', '', '0000-00-00', 13923, '', NULL), (13924, 1069, '', '', '', '0000-00-00', 13924, '', NULL), (13925, 1070, '', '', '', '0000-00-00', 13925, '', NULL), (13926, 1071, '', '', '', '0000-00-00', 13926, '', NULL), (13927, 1072, '', '', '', '0000-00-00', 13927, '', NULL), (13928, 1073, '', '', '', '0000-00-00', 13928, '', NULL), (13929, 1074, '', '', '', '0000-00-00', 13929, '', NULL), (13930, 1075, '', '', '', '0000-00-00', 13930, '', NULL), (13931, 1076, 'S/N 25164', ' Chatillon Pull Tester DDP-50 (E-4)', 'Range: 50 lb.', '1998-04-29', 13931, '4/29/1998', NULL), (13932, 1077, 'S/N B32507', 'Chatillon Force Gauge DFIS-500 Digital T & C (E-4)', 'Range: 50 to 500 lb. ', '1998-04-29', 13932, '4/29/1998', NULL), (13933, 1078, '', '', '', '0000-00-00', 13933, '', NULL), (13934, 1079, '', '', '', '0000-00-00', 13934, '', NULL), (13935, 1080, '', '', '', '0000-00-00', 13935, '', NULL), (13936, 1081, '', '', '', '0000-00-00', 13936, '', NULL), (13937, 1082, '', '', '', '0000-00-00', 13937, '', NULL), (13938, 1083, '', '', '', '0000-00-00', 13938, '', NULL), (13939, 1084, '', '', '', '0000-00-00', 13939, '', NULL), (13940, 1085, '', '', '', '0000-00-00', 13940, '', NULL), (13941, 1086, '', 'person ordering the services ', '', '0000-00-00', 13941, '', NULL), (13942, 1087, '', '', '', '0000-00-00', 13942, '', NULL), (13943, 1088, '', '', '', '0000-00-00', 13943, '', NULL), (13944, 1089, '', '', '', '0000-00-00', 13944, '', NULL), (13945, 1090, '', '', '', '0000-00-00', 13945, '', NULL), (13946, 1091, '', '', '', '0000-00-00', 13946, '', NULL), (13947, 1092, '', '', '', '0000-00-00', 13947, '', NULL), (13948, 1093, '', '', '', '0000-00-00', 13948, '', NULL), (13949, 1094, '', '', '', '0000-00-00', 13949, '', NULL), (13950, 1095, '', '', '', '0000-00-00', 13950, '', NULL), (13951, 1096, '', '', '', '0000-00-00', 13951, '', NULL), (13952, 1097, '', '', '', '0000-00-00', 13952, '', NULL), (13953, 1098, '', '', '', '0000-00-00', 13953, '', NULL), (13954, 1099, '', '', '', '0000-00-00', 13954, '', NULL), (13955, 1100, '', '', '', '0000-00-00', 13955, '', NULL), (13956, 1101, '', '', '', '0000-00-00', 13956, '', NULL), (13957, 1102, '', '', '', '0000-00-00', 13957, '', NULL), (13958, 1103, '', '', '', '0000-00-00', 13958, '', NULL), (13959, 1104, '', ' on Soiltest Unconfined Tester Model M-590', '', '0000-00-00', 13959, '', NULL), (13960, 1105, '', '', '', '0000-00-00', 13960, '', NULL), (13961, 1106, '', '', '', '0000-00-00', 13961, '', NULL), (13962, 1107, '', '', '', '0000-00-00', 13962, '', NULL), (13963, 1108, '', '', '', '0000-00-00', 13963, '', NULL), (13964, 1109, '', '', '', '0000-00-00', 13964, '', NULL), (13965, 1110, '', '', '', '0000-00-00', 13965, '', NULL), (13966, 1111, '', '', '', '0000-00-00', 13966, '', NULL), (13967, 1112, '', '', '', '0000-00-00', 13967, '', NULL), (13968, 1113, '', '', '', '0000-00-00', 13968, '', NULL), (13969, 1114, '', '', '', '0000-00-00', 13969, '', NULL), (13970, 1115, 'S/N 896369', 'Total Comp Load Trac V', 'Range: 500 lbs Load Cell', NULL, 13970, 'New', NULL), (13971, 1116, '', '', '', '0000-00-00', 13971, '', NULL), (13972, 1117, '', '', '', '0000-00-00', 13972, '', NULL), (13973, 1118, '', '', '', '0000-00-00', 13973, '', NULL), (13974, 1119, '', '', '', '0000-00-00', 13974, '', NULL), (13975, 1120, '', '', '', '0000-00-00', 13975, '', NULL), (13976, 1121, '', '', '', '0000-00-00', 13976, '', NULL), (13977, 1122, '', '', '', '0000-00-00', 13977, '', NULL), (13978, 1123, '', '', '', '0000-00-00', 13978, '', NULL), (13979, 1124, 'S/N Unknown', 'Durham Geo 4 Channel Pressure Transducer', 'Range: ', NULL, 13979, 'New', NULL), (13980, 1125, '', '', '', '0000-00-00', 13980, '', NULL), (13981, 1126, 'S/N 84070574', 'Brainard-Kilman Controls Tester with E400 Digital (Not Done)', 'Range 10K/250K', '1999-04-26', 13981, '4/26/1999', NULL), (13982, 1127, '', '', '', '0000-00-00', 13982, '', NULL), (13983, 1128, '', '', '', '0000-00-00', 13983, '', NULL), (13984, 1129, '', '', '', '0000-00-00', 13984, '', NULL), (13985, 1130, '', '', '', '0000-00-00', 13985, '', NULL), (13986, 1131, '', '', '', '0000-00-00', 13986, '', NULL), (13987, 1132, 'S/N 16619', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500 lbs (OOS)', '2008-04-15', 13987, '4/15/2008', NULL), (13988, 1133, '', '', '', '0000-00-00', 13988, '', NULL), (13989, 1134, '', '', '', '0000-00-00', 13989, '', NULL), (13990, 1135, '', '', '', '0000-00-00', 13990, '', NULL), (13991, 1136, '', '', '', '0000-00-00', 13991, '', NULL), (13992, 1137, '', '', '', '0000-00-00', 13992, '', NULL), (13993, 1138, '', '', '', '0000-00-00', 13993, '', NULL), (13994, 1139, '', '', '', '0000-00-00', 13994, '', NULL), (13995, 1140, '', '', '', '0000-00-00', 13995, '', NULL), (13996, 1141, '', '', '', '0000-00-00', 13996, '', NULL), (13997, 1142, 'S/N 17048', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 2K', '2013-08-06', 13997, '8/6/2013', NULL), (13998, 1143, '', '', '', '0000-00-00', 13998, '', NULL), (13999, 1144, '', '', '', '0000-00-00', 13999, '', NULL), (14000, 1145, '', '', '', '0000-00-00', 14000, '', NULL), (14001, 1146, '', '', '', '0000-00-00', 14001, '', NULL), (14002, 1147, 'S/N 00423', 'Karol Warner Direct Shear Model 2001 (E-4 & Man Specs)', 'Range: 1/8 TSF / 22 TSF Vertical Force', '2013-08-06', 14002, '8/6/2013', NULL), (14003, 1148, '', '', '', '0000-00-00', 14003, '', NULL), (14004, 1149, '', '', '', '0000-00-00', 14004, '', NULL), (14005, 1150, '', '', '', '0000-00-00', 14005, '', NULL), (14006, 1151, '', '', '', '0000-00-00', 14006, '', NULL), (14007, 1152, '', '', '', '0000-00-00', 14007, '', NULL), (14008, 1153, '', 'Email copy of Certs invoice and Solicitation Letter to ', 'bailey@netsync.net', '0000-00-00', 14008, '', NULL), (14009, 1154, '', '', '', '0000-00-00', 14009, '', NULL), (14010, 1155, '', '', '', '0000-00-00', 14010, '', NULL), (14011, 1156, '', '', '', '0000-00-00', 14011, '', NULL), (14012, 1157, '', '', '', '0000-00-00', 14012, '', NULL), (14013, 1158, 'S/N 68613', 'Aerospace Dial Indicator (D-6027)', 'Range: 1 inch', '2013-08-21', 14013, '8/21/2013', NULL), (14014, 1159, '', '', '', '0000-00-00', 14014, '', NULL), (14015, 1160, '', '', '', '0000-00-00', 14015, '', NULL), (14016, 1161, '', '', '', '0000-00-00', 14016, '', NULL), (14017, 1162, '', '', '', '0000-00-00', 14017, '', NULL), (14018, 1163, '', '', '', '0000-00-00', 14018, '', NULL), (14019, 1164, '', '', '', '0000-00-00', 14019, '', NULL), (14020, 1165, '', '', '', '0000-00-00', 14020, '', NULL), (14021, 1166, '', '', '', '0000-00-00', 14021, '', NULL), (14022, 1167, '', '', '', '0000-00-00', 14022, '', NULL), (14023, 1168, '', '', '', '0000-00-00', 14023, '', NULL), (14024, 1169, '', '', '', '0000-00-00', 14024, '', NULL), (14025, 1170, '', '', '', '0000-00-00', 14025, '', NULL), (14026, 1171, '', '', '', '0000-00-00', 14026, '', NULL), (14027, 1172, '', '', '', '0000-00-00', 14027, '', NULL), (14028, 1173, '', '', '', '0000-00-00', 14028, '', NULL), (14029, 1174, '', '', '', '0000-00-00', 14029, '', NULL), (14030, 1175, '', '', '', '0000-00-00', 14030, '', NULL), (14031, 1176, '', '', '', '0000-00-00', 14031, '', NULL), (14032, 1177, '', '', '', '0000-00-00', 14032, '', NULL), (14033, 1178, '', '', '', '0000-00-00', 14033, '', NULL), (14034, 1179, '', '', '', '0000-00-00', 14034, '', NULL), (14035, 1180, '', '', '', '0000-00-00', 14035, '', NULL), (14036, 1181, '', '', '', '0000-00-00', 14036, '', NULL), (14037, 1182, '', '**MUST ASK whoever makes the arrangements for the work to be', '', '0000-00-00', 14037, '', NULL), (14038, 1183, '', '', '', '0000-00-00', 14038, '', NULL), (14039, 1184, '', '', '', '0000-00-00', 14039, '', NULL), (14040, 1185, '', '', '', '0000-00-00', 14040, '', NULL), (14041, 1186, '', '', '', '0000-00-00', 14041, '', NULL), (14042, 1187, '', '', '', '0000-00-00', 14042, '', NULL), (14043, 1188, '', '', '', '0000-00-00', 14043, '', NULL), (14044, 1189, '', '', '', '0000-00-00', 14044, '', NULL), (14045, 1190, '', '', '', '0000-00-00', 14045, '', NULL), (14046, 1191, 'S/N 132', 'Brainard-Kilman LG-200 Tensiometer (E-4 & Man Specs)', 'Cap: 20 lbs. to 1,000 lbs.', '2002-05-21', 14046, '5/21/2002', NULL), (14047, 1192, '', '', '', '0000-00-00', 14047, '', NULL), (14048, 1193, '', '', '', '0000-00-00', 14048, '', NULL), (14049, 1194, '', '', '', '0000-00-00', 14049, '', NULL), (14050, 1195, '', '', '', '0000-00-00', 14050, '', NULL), (14051, 1196, '', '', '', '0000-00-00', 14051, '', NULL), (14052, 1197, '', '', '', '0000-00-00', 14052, '', NULL), (14053, 1198, '', '', '', '0000-00-00', 14053, '', NULL), (14054, 1199, '', '', '', '0000-00-00', 14054, '', NULL), (14055, 1200, '', '', '', '0000-00-00', 14055, '', NULL), (14056, 1201, '', '', '', '0000-00-00', 14056, '', NULL), (14057, 1202, '', '', '', '0000-00-00', 14057, '', NULL), (14058, 1203, '', '', '', '0000-00-00', 14058, '', NULL), (14059, 1204, '', '', '', '0000-00-00', 14059, '', NULL), (14060, 1205, '', '', '', '0000-00-00', 14060, '', NULL), (14061, 1206, '', '', '', '0000-00-00', 14061, '', NULL), (14062, 1207, '', '', '', '0000-00-00', 14062, '', NULL), (14063, 1208, 'S/N 3213', 'Soiltest Double Proving Ring (OOS) (E-4 & Man Specs)', 'Cap: 500 lbs', '2003-09-02', 14063, '9/2/2003', NULL), (14064, 1209, '', '', '', '0000-00-00', 14064, '', NULL), (14065, 1210, '', '', '', '0000-00-00', 14065, '', NULL), (14066, 1211, '', '', '', '0000-00-00', 14066, '', NULL), (14067, 1212, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14067, '', NULL), (14068, 1213, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14068, '', NULL), (14069, 1214, 'S/N 4393', 'Soiltest Single Proving Ring (E-4 & Man Spec)', 'Cap: 5K', '2012-12-12', 14069, '12/12/2012', NULL), (14070, 1215, '', '', '', '0000-00-00', 14070, '', NULL), (14071, 1216, '', '', '', '0000-00-00', 14071, '', NULL), (14072, 1217, '', '', '', '0000-00-00', 14072, '', NULL), (14073, 1218, '', '', '', '0000-00-00', 14073, '', NULL), (14074, 1219, '', '', '', '0000-00-00', 14074, '', NULL), (14075, 1220, '', '', '', '0000-00-00', 14075, '', NULL), (14076, 1221, '', '', '', '0000-00-00', 14076, '', NULL), (14077, 1222, '', '', '', '0000-00-00', 14077, '', NULL), (14078, 1223, '', '', '', '0000-00-00', 14078, '', NULL), (14079, 1224, '', '', '', '0000-00-00', 14079, '', NULL), (14080, 1225, '', '', '', '0000-00-00', 14080, '', NULL), (14081, 1226, '', '', '', '0000-00-00', 14081, '', NULL), (14082, 1227, '', '', '', '0000-00-00', 14082, '', NULL), (14083, 1228, '', '', '', '0000-00-00', 14083, '', NULL), (14084, 1229, '', '', '', '0000-00-00', 14084, '', NULL), (14085, 1230, '', '', '', '0000-00-00', 14085, '', NULL), (14086, 1231, '', '', '', '0000-00-00', 14086, '', NULL), (14087, 1232, '', '', '', '0000-00-00', 14087, '', NULL), (14088, 1233, '', '', '', '0000-00-00', 14088, '', NULL), (14089, 1234, '', '', '', '0000-00-00', 14089, '', NULL), (14090, 1235, '', '', '', '0000-00-00', 14090, '', NULL), (14091, 1236, '', '', '', '0000-00-00', 14091, '', NULL), (14092, 1237, '', '', '', '0000-00-00', 14092, '', NULL), (14093, 1238, '', '', '', '0000-00-00', 14093, '', NULL), (14094, 1239, '', '', '', '0000-00-00', 14094, '', NULL), (14095, 1240, '', '', '', '0000-00-00', 14095, '', NULL), (14096, 1241, '', '', '', '0000-00-00', 14096, '', NULL), (14097, 1242, '', '', '', '0000-00-00', 14097, '', NULL), (14098, 1243, 'S/N 364', 'Gilson Proving Ring Mashall (E-4 Man Specs)', 'Range: 10K ', '2012-12-14', 14098, '12/14/2012', NULL), (14099, 1244, '', '', '', '0000-00-00', 14099, '', NULL), (14100, 1245, '', '', '', '0000-00-00', 14100, '', NULL), (14101, 1246, '', '', '', '0000-00-00', 14101, '', NULL), (14102, 1247, '', '', '', '0000-00-00', 14102, '', NULL), (14103, 1248, '', '', '', '0000-00-00', 14103, '', NULL), (14104, 1249, '', '', '', '0000-00-00', 14104, '', NULL), (14105, 1250, '', '', '', '0000-00-00', 14105, '', NULL), (14106, 1251, '', '', '', '0000-00-00', 14106, '', NULL), (14107, 1252, '', '', '', '0000-00-00', 14107, '', NULL), (14108, 1253, '', '', '', '0000-00-00', 14108, '', NULL), (14109, 1254, 'S/N 129948-1598', 'Geo Jac Load Cell Ch #1 ID #1 (E-4)', 'Range: 2K', '2011-12-08', 14109, '12/8/2011', NULL), (14110, 1255, '', '', '', '0000-00-00', 14110, '', NULL), (14111, 1256, '', '', '', '0000-00-00', 14111, '', NULL), (14112, 1257, '', 'Did not pay Cuerda for previous work, did not do ', '', '0000-00-00', 14112, '', NULL), (14113, 1258, '', '', '', '0000-00-00', 14113, '', NULL), (14114, 1259, '', '', '', '0000-00-00', 14114, '', NULL), (14115, 1260, '', '', '', '0000-00-00', 14115, '', NULL), (14116, 1261, '', 'Did not pay Cuerda for previous work, did not do ', '', '0000-00-00', 14116, '', NULL), (14117, 1262, '', '', '', '0000-00-00', 14117, '', NULL), (14118, 1263, '', '', '', '0000-00-00', 14118, '', NULL), (14119, 1264, '', '', '', '0000-00-00', 14119, '', NULL), (14120, 1265, '', '', '', '0000-00-00', 14120, '', NULL), (14121, 1266, '', '', '', '0000-00-00', 14121, '', NULL), (14122, 1267, '', '', '', '0000-00-00', 14122, '', NULL), (14123, 1268, '', 'Cuerda not paid for previous work, did not do ', '', '0000-00-00', 14123, '', NULL), (14124, 1269, '', 'Per Cuerda did not pay bill for work done in 12/2007', '', '0000-00-00', 14124, '', NULL), (14125, 1270, '', '', '', '0000-00-00', 14125, '', NULL), (14126, 1271, '', '', '', '0000-00-00', 14126, '', NULL), (14127, 1272, '', '', '', '0000-00-00', 14127, '', NULL), (14128, 1273, '', '', '', '0000-00-00', 14128, '', NULL), (14129, 1274, '', '', '', '0000-00-00', 14129, '', NULL), (14130, 1275, '', '', '', '0000-00-00', 14130, '', NULL), (14131, 1276, 'S/N A-1004', 'Humbolt Single Proving Ring (E-4 & ManSpec)', 'Range: 6K ', NULL, 14131, 'New', NULL), (14132, 1277, '', '', '', '0000-00-00', 14132, '', NULL), (14133, 1278, 'S/N 328', 'Durham Geo S-500 Pressure Panel (D-5720)', 'Range: 150 psi', '2012-02-07', 14133, '2/7/2012', NULL), (14134, 1279, 'S/N 321043', 'Powerteam PE554 Prestress Jack (E-4 & PCI)', 'Range: 4K (620 psi) / 35K (5,250 psi)', '2013-02-07', 14134, '2/7/2013', NULL), (14135, 1280, '', '', '', '0000-00-00', 14135, '', NULL), (14136, 1281, '', '', '', '0000-00-00', 14136, '', NULL), (14137, 1282, '', '', '', '0000-00-00', 14137, '', NULL), (14138, 1283, '', '', '', '0000-00-00', 14138, '', NULL), (14139, 1284, '', '', '', '0000-00-00', 14139, '', NULL), (14140, 1285, '', '', '', '0000-00-00', 14140, '', NULL), (14141, 1286, '', '', '', '0000-00-00', 14141, '', NULL), (14142, 1287, '', '', '', '0000-00-00', 14142, '', NULL), (14143, 1288, 'S/N M921138A611-04', 'ELE LVDT (D-6027)', 'Range: 1.5 Inches', '2013-02-12', 14143, '2/12/2013', NULL), (14144, 1289, 'S/N 817 / 00480', 'Durham Geo E-114 Pressure Transducer (D-5720)', 'Range: 150 psi', '2012-02-16', 14144, '2/16/2012', NULL), (14145, 1290, '', '', '', '0000-00-00', 14145, '', NULL), (14146, 1291, '', '', '', '0000-00-00', 14146, '', NULL), (14147, 1292, '', '', '', '0000-00-00', 14147, '', NULL), (14148, 1293, '', '', '', '0000-00-00', 14148, '', NULL), (14149, 1294, 'S/N 971962993', ' w/ Starrett 65816 Dial Indicator (ID# 0270) ', '', '0000-00-00', 14149, '', NULL), (14150, 1295, '', '', '', '0000-00-00', 14150, '', NULL), (14151, 1296, '', '', '', '0000-00-00', 14151, '', NULL), (14152, 1297, '', '', '', '0000-00-00', 14152, '', NULL), (14153, 1298, '', '', '', '0000-00-00', 14153, '', NULL), (14154, 1299, '', '', '', '0000-00-00', 14154, '', NULL), (14155, 1300, '', '', '', '0000-00-00', 14155, '', NULL), (14156, 1301, '', '', '', '0000-00-00', 14156, '', NULL), (14157, 1302, '', '', '', '0000-00-00', 14157, '', NULL), (14158, 1303, '', '', '', '0000-00-00', 14158, '', NULL), (14159, 1304, '', '', '', '0000-00-00', 14159, '', NULL), (14160, 1305, 'S/N 72197', 'Forney QC-150-DR Compression Machine (E-4)', 'Range: 30K / 300K', '2013-02-19', 14160, '2/19/2013', NULL), (14161, 1306, '', '', '', '0000-00-00', 14161, '', NULL), (14162, 1307, '', '', '', '0000-00-00', 14162, '', NULL), (14163, 1308, '', '', '', '0000-00-00', 14163, '', NULL), (14164, 1309, '', '', '', '0000-00-00', 14164, '', NULL), (14165, 1310, '', '', '', '0000-00-00', 14165, '', NULL), (14166, 1311, '', '', '', '0000-00-00', 14166, '', NULL), (14167, 1312, '', '', '', '0000-00-00', 14167, '', NULL), (14168, 1313, '', '', '', '0000-00-00', 14168, '', NULL), (14169, 1314, '', ' ***Do First *** ***Main Plant ***', '', '0000-00-00', 14169, '', NULL), (14170, 1315, 'S/N 2001290', 'ELE 35-1475 Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 14170, '2/16/2011', NULL), (14171, 1316, '', '', '', '0000-00-00', 14171, '', NULL), (14172, 1317, '', '', '', '0000-00-00', 14172, '', NULL), (14173, 1318, '', '', '', '0000-00-00', 14173, '', NULL), (14174, 1319, '', '', '', '0000-00-00', 14174, '', NULL), (14175, 1320, '', '', '', '0000-00-00', 14175, '', NULL), (14176, 1321, '', '', '', '0000-00-00', 14176, '', NULL), (14177, 1322, '', '', '', '0000-00-00', 14177, '', NULL), (14178, 1323, '', '', '', '0000-00-00', 14178, '', NULL), (14179, 1324, '', '', '', '0000-00-00', 14179, '', NULL), (14180, 1325, 'S/N 889217', 'with Interlaken Extensometer Model 3542-0100-005 ST (E-83)', '1\" GL, Range 50%, ID#25-EXT05', '2005-03-30', 14180, '3/30/2005', NULL), (14181, 1326, '', '', '', '0000-00-00', 14181, '', NULL), (14182, 1327, '', '', '', '0000-00-00', 14182, '', NULL), (14183, 1328, '', '', '', '0000-00-00', 14183, '', NULL), (14184, 1329, '', '', '', '0000-00-00', 14184, '', NULL), (14185, 1330, '', '', '', '0000-00-00', 14185, '', NULL), (14186, 1331, '', '', '', '0000-00-00', 14186, '', NULL), (14187, 1332, '', '', '', '0000-00-00', 14187, '', NULL), (14188, 1333, '', '', '', '0000-00-00', 14188, '', NULL), (14189, 1334, '', '', '', '0000-00-00', 14189, '', NULL), (14190, 1335, '', '', '', '0000-00-00', 14190, '', NULL), (14191, 1336, '', '', '', '0000-00-00', 14191, '', NULL), (14192, 1337, '', '', '', '0000-00-00', 14192, '', NULL), (14193, 1338, '', '', '', '0000-00-00', 14193, '', NULL), (14194, 1339, '', '', '', '0000-00-00', 14194, '', NULL), (14195, 1340, '', '', '', '0000-00-00', 14195, '', NULL), (14196, 1341, '', '', '', '0000-00-00', 14196, '', NULL), (14197, 1342, '', '', '', '0000-00-00', 14197, '', NULL), (14198, 1343, '', '', '', '0000-00-00', 14198, '', NULL), (14199, 1344, '', '', '', '0000-00-00', 14199, '', NULL), (14200, 1345, '', '', '', '0000-00-00', 14200, '', NULL), (14201, 1346, '', '', '', '0000-00-00', 14201, '', NULL), (14202, 1347, '', '', '', '0000-00-00', 14202, '', NULL), (14203, 1348, '', '', '', '0000-00-00', 14203, '', NULL), (14204, 1349, '', '', '', '0000-00-00', 14204, '', NULL), (14205, 1350, '', '', '', '0000-00-00', 14205, '', NULL), (14206, 1351, '', '', '', '0000-00-00', 14206, '', NULL), (14207, 1352, '', '', '', '0000-00-00', 14207, '', NULL), (14208, 1353, '', '', '', '0000-00-00', 14208, '', NULL), (14209, 1354, '', '', '', '0000-00-00', 14209, '', NULL), (14210, 1355, '', '', '', '0000-00-00', 14210, '', NULL), (14211, 1356, '', '', '', '0000-00-00', 14211, '', NULL), (14212, 1357, '', '', '', '0000-00-00', 14212, '', NULL), (14213, 1358, '', '', '', '0000-00-00', 14213, '', NULL), (14214, 1359, '', '', '', '0000-00-00', 14214, '', NULL), (14215, 1360, 'S/N 801', 'MTS Extensometer Model 632-25E-20 (E-83)', '2\"GL, ID#EXT02', '2005-03-29', 14215, '3/29/2005', NULL), (14216, 1361, '', '', '', '0000-00-00', 14216, '', NULL), (14217, 1362, '', '', '', '0000-00-00', 14217, '', NULL), (14218, 1363, '', '', '', '0000-00-00', 14218, '', NULL), (14219, 1364, '', '', '', '0000-00-00', 14219, '', NULL), (14220, 1365, '', '', '', '0000-00-00', 14220, '', NULL), (14221, 1366, 'S/N 60BTE-1028', 'Satec BTE Compression Machine (E-4)', 'Range: 60K ', NULL, 14221, 'New', NULL), (14222, 1367, '', '', '', '0000-00-00', 14222, '', NULL), (14223, 1368, '', '', '', '0000-00-00', 14223, '', NULL), (14224, 1369, '', '', '', '0000-00-00', 14224, '', NULL), (14225, 1370, '', '', '', '0000-00-00', 14225, '', NULL), (14226, 1371, '', '', '', '0000-00-00', 14226, '', NULL), (14227, 1372, '', '', '', '0000-00-00', 14227, '', NULL), (14228, 1373, '', '', '', '0000-00-00', 14228, '', NULL), (14229, 1374, '', '', '', '0000-00-00', 14229, '', NULL), (14230, 1375, '', '', '', '0000-00-00', 14230, '', NULL), (14231, 1376, '', '', '', '0000-00-00', 14231, '', NULL), (14232, 1377, 'S/N 6-2-00', 'Hogentogler Single Proving Ring (E-4 & ManSpec)', 'Range: 6K', '2008-02-18', 14232, '2/18/2008', NULL), (14233, 1378, '', '', '', '0000-00-00', 14233, '', NULL), (14234, 1379, '', '', '', '0000-00-00', 14234, '', NULL), (14235, 1380, '', '', '', '0000-00-00', 14235, '', NULL), (14236, 1381, '', '', '', '0000-00-00', 14236, '', NULL), (14237, 1382, '', '', '', '0000-00-00', 14237, '', NULL), (14238, 1383, '', '', '', '0000-00-00', 14238, '', NULL), (14239, 1384, '', '', '', '0000-00-00', 14239, '', NULL), (14240, 1385, '', '', '', '0000-00-00', 14240, '', NULL), (14241, 1386, 'S/N 012553851', 'Eilon Engineering RON 2000 S-125 Load Cell (ManSp & 0.1% FS)', 'Cap: 125 Tons (250K)', '2005-07-15', 14241, '7/15/2005', NULL), (14242, 1387, 'S/N 0243456/6', 'Eilon Engineering RON 2501 Load Cell (ManSp & 0.1% FS)', 'Range: 2 Ton', NULL, 14242, 'New', NULL), (14243, 1388, '', '', '', '0000-00-00', 14243, '', NULL), (14244, 1389, '', '', '', '0000-00-00', 14244, '', NULL), (14245, 1390, 'S/N 110172-3', 'Wykeham Farrance Mdl. 24251 Deflection Frame #1/Channel 17 ', 'Range: 1/4 TSF to 16 TSF ', '2009-01-21', 14245, '1/21/2009', NULL), (14246, 1391, '', '', '', '0000-00-00', 14246, '', NULL), (14247, 1392, 'S/N 05010 / NC #2', 'CSI Model LC-40 Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K', '2009-01-26', 14247, '1/26/2009', NULL), (14248, 1393, 'S/N 22244', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Cap: 500 lbs ', '2013-01-08', 14248, '1/8/2013', NULL), (14249, 1394, '', '', '', '0000-00-00', 14249, '', NULL), (14250, 1395, '', '', '', '0000-00-00', 14250, '', NULL), (14251, 1396, '', '', '', '0000-00-00', 14251, '', NULL), (14252, 1397, '', '', '', '0000-00-00', 14252, '', NULL), (14253, 1398, '', '', '', '0000-00-00', 14253, '', NULL), (14254, 1399, '', '', '', '0000-00-00', 14254, '', NULL), (14255, 1400, '', '', '', '0000-00-00', 14255, '', NULL), (14256, 1401, 'S/N 95876 / NC#12', 'HCS HCS-LC-2502 Hydraulic Load Cell (E-4 & 2%)', 'Range: 60K ', '2013-01-16', 14256, '1/16/2013', NULL), (14257, 1402, '', '', '', '0000-00-00', 14257, '', NULL), (14258, 1403, 'S/N 3610', ' w/United EZ 2-2 Extensometer - Channel #2 ', 'Range: 0.02 in/in (2\" GL) (E-83)', '2013-01-21', 14258, '1/21/2013', NULL), (14259, 1404, 'S/N 0022139-6JC', 'Ohaus CD11 Scale (ID#Q-0156) (C-898)', 'Range: 150 lbs ', '2013-01-21', 14259, '1/21/2013', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (14260, 1405, 'S/N Unknown ', 'Ohaus 700 Series Triple Beam Balance Scale (E-898)', 'Range: 5 Grams to 2,610 Grams ', '2012-01-25', 14260, '1/25/2012', NULL), (14261, 1406, '', '', '', '0000-00-00', 14261, '', NULL), (14262, 1407, '', '', '', '0000-00-00', 14262, '', NULL), (14263, 1408, 'S/N 05054289/11', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2006-04-26', 14263, '4/26/2006', NULL), (14264, 1409, '', '', '', '0000-00-00', 14264, '', NULL), (14265, 1410, '', '', '', '0000-00-00', 14265, '', NULL), (14266, 1411, '', '', '', '0000-00-00', 14266, '', NULL), (14267, 1412, '', '', '', '0000-00-00', 14267, '', NULL), (14268, 1413, '', '', '', '0000-00-00', 14268, '', NULL), (14269, 1414, '', '', '', '0000-00-00', 14269, '', NULL), (14270, 1415, '', '', '', '0000-00-00', 14270, '', NULL), (14271, 1416, '', '', '', '0000-00-00', 14271, '', NULL), (14272, 1417, '', '', '', '0000-00-00', 14272, '', NULL), (14273, 1418, '', '', '', '0000-00-00', 14273, '', NULL), (14274, 1419, '', '', '', '0000-00-00', 14274, '', NULL), (14275, 1420, '', '', '', '0000-00-00', 14275, '', NULL), (14276, 1421, '', '', '', '0000-00-00', 14276, '', NULL), (14277, 1422, '', '', '', '0000-00-00', 14277, '', NULL), (14278, 1423, '', '', '', '0000-00-00', 14278, '', NULL), (14279, 1424, '', '', '', '0000-00-00', 14279, '', NULL), (14280, 1425, '', '', '', '0000-00-00', 14280, '', NULL), (14281, 1426, '', '', '', '0000-00-00', 14281, '', NULL), (14282, 1427, '', '', '', '0000-00-00', 14282, '', NULL), (14283, 1428, '', '', '', '0000-00-00', 14283, '', NULL), (14284, 1429, '', '', '', '0000-00-00', 14284, '', NULL), (14285, 1430, '', '', '', '0000-00-00', 14285, '', NULL), (14286, 1431, '', '', '', '0000-00-00', 14286, '', NULL), (14287, 1432, '', '', '', '0000-00-00', 14287, '', NULL), (14288, 1433, 'S/N 79050', 'HCS Hydraulic Load Cell ( E4 & PCI) OUT OF SERVICE', 'Range: 5K to 50K', '2005-02-01', 14288, '2/1/2005', NULL), (14289, 1434, 'S/N 870821', 'Strainsense Load Cell F (E-4) OUT OF SERVICE', 'Range: 5K/50K', '2004-02-02', 14289, '2/2/2004', NULL), (14290, 1435, '', '', '', '0000-00-00', 14290, '', NULL), (14291, 1436, '', '', '', '0000-00-00', 14291, '', NULL), (14292, 1437, '', '', '', '0000-00-00', 14292, '', NULL), (14293, 1438, '', '', '', '0000-00-00', 14293, '', NULL), (14294, 1439, '', '', '', '0000-00-00', 14294, '', NULL), (14295, 1440, '', '', '', '0000-00-00', 14295, '', NULL), (14296, 1441, '', '', '', '0000-00-00', 14296, '', NULL), (14297, 1442, '', '', '', '0000-00-00', 14297, '', NULL), (14298, 1443, '', '', '', '0000-00-00', 14298, '', NULL), (14299, 1444, 'S/N 144/1292', 'Brainard-Kilman Control Panel Model 40150/4420-A', 'Range: 200 PSI (D5720-95)', '2000-01-18', 14299, '1/18/2000', NULL), (14300, 1445, '', '', '', '0000-00-00', 14300, '', NULL), (14301, 1446, 'S/N 19916', 'Forney Triaxial Cell Pressure Transducer (D-5720)', 'Range: 690 kpa', '2005-02-21', 14301, '2/21/2005', NULL), (14302, 1447, 'S/N Unknown ', 'Soiltest Direct Shear Machine (E-4)', 'Range: 2lbs to 200 lbs (1KG to 90 KG)', '2009-01-21', 14302, '1/21/2009', NULL), (14303, 1448, '', '', '', '0000-00-00', 14303, '', NULL), (14304, 1449, '', '', '', '0000-00-00', 14304, '', NULL), (14305, 1450, '', '', '', '0000-00-00', 14305, '', NULL), (14306, 1451, '', '', '', '0000-00-00', 14306, '', NULL), (14307, 1452, '', '', '', '0000-00-00', 14307, '', NULL), (14308, 1453, '', '', '', '0000-00-00', 14308, '', NULL), (14309, 1454, 'S/N 80002019', 'Com-Ten Universal Testing Machine (E-4)', 'Range: 20 lbs. to 400 lbs.', '2005-11-08', 14309, '11/8/2005', NULL), (14310, 1455, 'S/N 69122', 'SPX Powerteam Prestress Jack PE554 Jack C (OOS) (E-4 & PCI)', 'Range: 2K,3K,4K / Gauge: #1, #2 35K', '2007-01-30', 14310, '1/30/2007', NULL), (14311, 1456, '', '', '', '0000-00-00', 14311, '', NULL), (14312, 1457, '', '', '', '0000-00-00', 14312, '', NULL), (14313, 1458, '', '', '', '0000-00-00', 14313, '', NULL), (14314, 1459, '', '', '', '0000-00-00', 14314, '', NULL), (14315, 1460, '', '', '', '0000-00-00', 14315, '', NULL), (14316, 1461, 'S/N 16018', 'Wykeham-Farrance Proving Ring', 'Range: 50 KN', '2005-02-21', 14316, '2/21/2005', NULL), (14317, 1462, '', '', '', '0000-00-00', 14317, '', NULL), (14318, 1463, '', '', '', '0000-00-00', 14318, '', NULL), (14319, 1464, '', '', '', '0000-00-00', 14319, '', NULL), (14320, 1465, '', '', '', '0000-00-00', 14320, '', NULL), (14321, 1466, '', '', '', '0000-00-00', 14321, '', NULL), (14322, 1467, '', '', '', '0000-00-00', 14322, '', NULL), (14323, 1468, '', '', '', '0000-00-00', 14323, '', NULL), (14324, 1469, '', '', '', '0000-00-00', 14324, '', NULL), (14325, 1470, '', '', '', '0000-00-00', 14325, '', NULL), (14326, 1471, '', '', '', '0000-00-00', 14326, '', NULL), (14327, 1472, '', '', '', '0000-00-00', 14327, '', NULL), (14328, 1473, 'S/N 1005', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 60 PSI', '2007-07-24', 14328, '7/24/2007', NULL), (14329, 1474, '', '', '', '0000-00-00', 14329, '', NULL), (14330, 1475, '', '', '', '0000-00-00', 14330, '', NULL), (14331, 1476, '', '', '', '0000-00-00', 14331, '', NULL), (14332, 1477, '', '', '', '0000-00-00', 14332, '', NULL), (14333, 1478, '', '', '', '0000-00-00', 14333, '', NULL), (14334, 1479, '', '', '', '0000-00-00', 14334, '', NULL), (14335, 1480, '', '', '', '0000-00-00', 14335, '', NULL), (14336, 1481, '', '', '', '0000-00-00', 14336, '', NULL), (14337, 1482, '', '', '', '0000-00-00', 14337, '', NULL), (14338, 1483, '', '', '', '0000-00-00', 14338, '', NULL), (14339, 1484, '', '', '', '0000-00-00', 14339, '', NULL), (14340, 1485, '', '', '', '0000-00-00', 14340, '', NULL), (14341, 1486, 'S/N Unknown', 'Tinius Olsen Beam Machine (E-4) (OUT OF SERVICE) (SOLD)', 'Range: 1K to 100K', '2004-08-30', 14341, '8/30/2004', NULL), (14342, 1487, '', '', '', '0000-00-00', 14342, '', NULL), (14343, 1488, '', '', '', '0000-00-00', 14343, '', NULL), (14344, 1489, '', '', '', '0000-00-00', 14344, '', NULL), (14345, 1490, '', '', '', '0000-00-00', 14345, '', NULL), (14346, 1491, '', '', '', '0000-00-00', 14346, '', NULL), (14347, 1492, '', '', '', '0000-00-00', 14347, '', NULL), (14348, 1493, '', '', '', '0000-00-00', 14348, '', NULL), (14349, 1494, '', '', '', '0000-00-00', 14349, '', NULL), (14350, 1495, '', '', '', '0000-00-00', 14350, '', NULL), (14351, 1496, '', '', '', '0000-00-00', 14351, '', NULL), (14352, 1497, '', '', '', '0000-00-00', 14352, '', NULL), (14353, 1498, '', '', '', '0000-00-00', 14353, '', NULL), (14354, 1499, '', '', '', '0000-00-00', 14354, '', NULL), (14355, 1500, '', '', '', '0000-00-00', 14355, '', NULL), (14356, 1501, 'S/N 06684', 'Hercules Mdl HJS Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K ', '2009-07-20', 14356, '7/20/2009', NULL), (14357, 1502, '', '', '', '0000-00-00', 14357, '', NULL), (14358, 1503, '', '', '', '0000-00-00', 14358, '', NULL), (14359, 1504, '', '', '', '0000-00-00', 14359, '', NULL), (14360, 1505, '', '', '', '0000-00-00', 14360, '', NULL), (14361, 1506, '', '', '', '0000-00-00', 14361, '', NULL), (14362, 1507, '', '', '', '0000-00-00', 14362, '', NULL), (14363, 1508, '', '', '', '0000-00-00', 14363, '', NULL), (14364, 1509, '', '', '', '0000-00-00', 14364, '', NULL), (14365, 1510, '', '', '', '0000-00-00', 14365, '', NULL), (14366, 1511, '', '', '', '0000-00-00', 14366, '', NULL), (14367, 1512, '', '', '', '0000-00-00', 14367, '', NULL), (14368, 1513, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14368, '', NULL), (14369, 1514, '', ' ***Need ISO Block & Seals ***', '', '0000-00-00', 14369, '', NULL), (14370, 1515, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14370, '', NULL), (14371, 1516, '', '(Miss Jenny), needs time to get to the phone ', '', '0000-00-00', 14371, '', NULL), (14372, 1517, '', '', '', '0000-00-00', 14372, '', NULL), (14373, 1518, '', '', '', '0000-00-00', 14373, '', NULL), (14374, 1519, '', '', '', '0000-00-00', 14374, '', NULL), (14375, 1520, '', '', '', '0000-00-00', 14375, '', NULL), (14376, 1521, '', '', '', '0000-00-00', 14376, '', NULL), (14377, 1522, '', 'Invoice to Corporate Office: Kraus-Manning, Inc., 7233 Lake ', '', '0000-00-00', 14377, '', NULL), (14378, 1523, '', '', '', '0000-00-00', 14378, '', NULL), (14379, 1524, '', '', '', '0000-00-00', 14379, '', NULL), (14380, 1525, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14380, '', NULL), (14381, 1526, '', '', '', '0000-00-00', 14381, '', NULL), (14382, 1527, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14382, '', NULL), (14383, 1528, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14383, '', NULL), (14384, 1529, '', '', '', '0000-00-00', 14384, '', NULL), (14385, 1530, '', '', '', '0000-00-00', 14385, '', NULL), (14386, 1531, '', '', '', '0000-00-00', 14386, '', NULL), (14387, 1532, '', '', '', '0000-00-00', 14387, '', NULL), (14388, 1533, '', '', '', '0000-00-00', 14388, '', NULL), (14389, 1534, 'S/N 090507021', 'SSI Technology MG9V Pressure Transducer (D-5720)', 'Range: 20 PSI ', '2010-06-08', 14389, '6/8/2010', NULL), (14390, 1535, 'S/N 083169976', 'Humboldt BG2110-0-16 Dial Indicator (D-6027)', 'Range: 1 inch ', '2010-06-08', 14390, '6/8/2010', NULL), (14391, 1536, 'S/N 192743', 'Geotac Load Cell (E-4)', 'Range: 2K', '2012-06-06', 14391, '6/6/2012', NULL), (14392, 1537, '', '', '', '0000-00-00', 14392, '', NULL), (14393, 1538, '', '', '', '0000-00-00', 14393, '', NULL), (14394, 1539, '', '', '', '0000-00-00', 14394, '', NULL), (14395, 1540, 'S/N 2464', 'Ohaus E4000D Scale (E-898)', 'Range: 4,000 Grams', '2012-06-06', 14395, '6/6/2012', NULL), (14396, 1541, 'S/N H3805546', 'AND FG 60K Scale (E-898)', 'Range: 150 lbs', '2013-06-04', 14396, '6/4/2013', NULL), (14397, 1542, '', '', '', '0000-00-00', 14397, '', NULL), (14398, 1543, '', '', '', '0000-00-00', 14398, '', NULL), (14399, 1544, '', '', '', '0000-00-00', 14399, '', NULL), (14400, 1545, '', '', '', '0000-00-00', 14400, '', NULL), (14401, 1546, '', '', '', '0000-00-00', 14401, '', NULL), (14402, 1547, '', '', '', '0000-00-00', 14402, '', NULL), (14403, 1548, '', '', '', '0000-00-00', 14403, '', NULL), (14404, 1549, '', '', '', '0000-00-00', 14404, '', NULL), (14405, 1550, '', '', '', '0000-00-00', 14405, '', NULL), (14406, 1551, '', '', '', '0000-00-00', 14406, '', NULL), (14407, 1552, '', '', '', '0000-00-00', 14407, '', NULL), (14408, 1553, '', '', '', '0000-00-00', 14408, '', NULL), (14409, 1554, '', '', '', '0000-00-00', 14409, '', NULL), (14410, 1555, '', '', '', '0000-00-00', 14410, '', NULL), (14411, 1556, '', '', '', '0000-00-00', 14411, '', NULL), (14412, 1557, '', '', '', '0000-00-00', 14412, '', NULL), (14413, 1558, '', '', '', '0000-00-00', 14413, '', NULL), (14414, 1559, '', '', '', '0000-00-00', 14414, '', NULL), (14415, 1560, '', '', '', '0000-00-00', 14415, '', NULL), (14416, 1561, 'S/N 10622', 'Durham Geo LVDT w/ Dig. S/N 1106 - Channel #1 (D-6027)', 'Range: 2 Inch ', '2013-06-19', 14416, '6/19/2013', NULL), (14417, 1562, 'S/N 213350', 'Central DTC-400K Load Cell w/ AHM Digital S/N 1000341740 (E-4)', 'Range: 400K Channel #2 ', '2013-06-19', 14417, '6/19/2013', NULL), (14418, 1563, 'S/N 11648', 'Skidmore Wilhelm Bolt Tester (E-4 & 2%)', 'Range: 90K', '2010-06-22', 14418, '6/22/2010', NULL), (14419, 1564, 'S/N 193', 'Brainard Killman Model 5000-2 Pressure Transducer (D-5720)', 'Range: 150 psi', '2008-06-25', 14419, '6/25/2008', NULL), (14420, 1565, '', '', '', '0000-00-00', 14420, '', NULL), (14421, 1566, '', '', '', '0000-00-00', 14421, '', NULL), (14422, 1567, '', '', '', '0000-00-00', 14422, '', NULL), (14423, 1568, '', '', '', '0000-00-00', 14423, '', NULL), (14424, 1569, '', '', '', '0000-00-00', 14424, '', NULL), (14425, 1570, '', '', '', '0000-00-00', 14425, '', NULL), (14426, 1571, '', '', '', '0000-00-00', 14426, '', NULL), (14427, 1572, '', '', '', '0000-00-00', 14427, '', NULL), (14428, 1573, '', '', '', '0000-00-00', 14428, '', NULL), (14429, 1574, '', '', '', '0000-00-00', 14429, '', NULL), (14430, 1575, '', '', '', '0000-00-00', 14430, '', NULL), (14431, 1576, 'S/N 95', 'Hunter Force Gauge - in Tension Bed / Tensile only', 'Cap: 500#', '0000-00-00', 14431, '', NULL), (14432, 1577, '', '', '', '0000-00-00', 14432, '', NULL), (14433, 1578, '', '', '', '0000-00-00', 14433, '', NULL), (14434, 1579, '', '', '', '0000-00-00', 14434, '', NULL), (14435, 1580, '', '', '', '0000-00-00', 14435, '', NULL), (14436, 1581, '', '', '', '0000-00-00', 14436, '', NULL), (14437, 1582, '', '', '', '0000-00-00', 14437, '', NULL), (14438, 1583, '', '', '', '0000-00-00', 14438, '', NULL), (14439, 1584, '', '', '', '0000-00-00', 14439, '', NULL), (14440, 1585, '', '', '', '0000-00-00', 14440, '', NULL), (14441, 1586, '', '', '', '0000-00-00', 14441, '', NULL), (14442, 1587, '', '', '', '0000-00-00', 14442, '', NULL), (14443, 1588, '', '', '', '0000-00-00', 14443, '', NULL), (14444, 1589, '', '', '', '0000-00-00', 14444, '', NULL), (14445, 1590, '', '', '', '0000-00-00', 14445, '', NULL), (14446, 1591, '', '', '', '0000-00-00', 14446, '', NULL), (14447, 1592, '', '', '', '0000-00-00', 14447, '', NULL), (14448, 1593, '', '', '', '0000-00-00', 14448, '', NULL), (14449, 1594, '', '', '', '0000-00-00', 14449, '', NULL), (14450, 1595, '', '', '', '0000-00-00', 14450, '', NULL), (14451, 1596, '', '', '', '0000-00-00', 14451, '', NULL), (14452, 1597, '', '', '', '0000-00-00', 14452, '', NULL), (14453, 1598, '', '', '', '0000-00-00', 14453, '', NULL), (14454, 1599, '', '', '', '0000-00-00', 14454, '', NULL), (14455, 1600, '', '', '', '0000-00-00', 14455, '', NULL), (14456, 1601, '', '', '', '0000-00-00', 14456, '', NULL), (14457, 1602, '', '', '', '0000-00-00', 14457, '', NULL), (14458, 1603, '', '', '', '0000-00-00', 14458, '', NULL), (14459, 1604, '', '', '', '0000-00-00', 14459, '', NULL), (14460, 1605, 'S/N 1077', 'Satec Model 50 UD Compression Machine (E-4)', '', '1998-07-08', 14460, '7/8/1998', NULL), (14461, 1606, '', '', '', '0000-00-00', 14461, '', NULL), (14462, 1607, '', '', '', '0000-00-00', 14462, '', NULL), (14463, 1608, '', '', '', '0000-00-00', 14463, '', NULL), (14464, 1609, '', '', '', '0000-00-00', 14464, '', NULL), (14465, 1610, '', '', '', '0000-00-00', 14465, '', NULL), (14466, 1611, '', '', '', '0000-00-00', 14466, '', NULL), (14467, 1612, '', '', '', '0000-00-00', 14467, '', NULL), (14468, 1613, '', '', '', '0000-00-00', 14468, '', NULL), (14469, 1614, '', '', '', '0000-00-00', 14469, '', NULL), (14470, 1615, '', '', '', '0000-00-00', 14470, '', NULL), (14471, 1616, '', '', '', '0000-00-00', 14471, '', NULL), (14472, 1617, '', '', '', '0000-00-00', 14472, '', NULL), (14473, 1618, '', '', '', '0000-00-00', 14473, '', NULL), (14474, 1619, '', '', '', '0000-00-00', 14474, '', NULL), (14475, 1620, '', '', '', '0000-00-00', 14475, '', NULL), (14476, 1621, '', '', '', '0000-00-00', 14476, '', NULL), (14477, 1622, '', '', '', '0000-00-00', 14477, '', NULL), (14478, 1623, '', '', '', '0000-00-00', 14478, '', NULL), (14479, 1624, '', '', '', '0000-00-00', 14479, '', NULL), (14480, 1625, '', '', '', '0000-00-00', 14480, '', NULL), (14481, 1626, 'S/N 1139-148146', 'Detroit Tester w/Sensotec Digital & Load Cell (E-4) (Out of SVC)', 'Range: 200 lbs. to 40,000 lbs.*SEE NOTE', '2005-06-08', 14481, '6/8/2005', NULL), (14482, 1627, '', '', '', '0000-00-00', 14482, '', NULL), (14483, 1628, '', '', '', '0000-00-00', 14483, '', NULL), (14484, 1629, '', '', '', '0000-00-00', 14484, '', NULL), (14485, 1630, 'S/N 3', 'Simms Prestress Jack (E-4 & PCI)', 'Range: 4K / 35K', '2006-06-08', 14485, '6/8/2006', NULL), (14486, 1631, '', '', '', '0000-00-00', 14486, '', NULL), (14487, 1632, 'S/N E-79654', 'Epsilon Extensometer Model 3542-0200-025 (BROKE) (E-83)', 'Range: .0001 Inches to 0.5 inches', '2004-06-30', 14487, '6/30/2004', NULL), (14488, 1633, '', '', '', '0000-00-00', 14488, '', NULL), (14489, 1634, '', 'Prestressed Systems, Inc., PO Box 517, 4955 Walker Road, ', '', '0000-00-00', 14489, '', NULL), (14490, 1635, '', '', '', '0000-00-00', 14490, '', NULL), (14491, 1636, '', '', '', '0000-00-00', 14491, '', NULL), (14492, 1637, '', '', '', '0000-00-00', 14492, '', NULL), (14493, 1638, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14493, '', NULL), (14494, 1639, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 14494, '', NULL), (14495, 1640, 'S/N 1464', 'Strassentest Mechanical Compactor Model 405', '', '1998-09-16', 14495, '9/16/1998', NULL), (14496, 1641, '', '', '', '0000-00-00', 14496, '', NULL), (14497, 1642, 'S/N 639593', 'Sensotec Load Cell 42/8378-02 (E-4)', 'Max Cap: 50,000 lbs', '2004-06-11', 14497, '6/11/2004', NULL), (14498, 1643, '', '', '', '0000-00-00', 14498, '', NULL), (14499, 1644, '', '', '', '0000-00-00', 14499, '', NULL), (14500, 1645, '', '', '', '0000-00-00', 14500, '', NULL), (14501, 1646, '', '', '', '0000-00-00', 14501, '', NULL), (14502, 1647, '', '', '', '0000-00-00', 14502, '', NULL), (14503, 1648, '', '', '', '0000-00-00', 14503, '', NULL), (14504, 1649, '', '', '', '0000-00-00', 14504, '', NULL), (14505, 1650, 'S/N 171 (Angle)', 'Troxler Model 4140 Gyratory Compactor (Man Specs)', 'Cap: 600KPA 114.28mm 30RPM ', '2013-06-13', 14505, '6/13/2013', NULL), (14506, 1651, '', '', '', '0000-00-00', 14506, '', NULL), (14507, 1652, 'S/N 1544 (Plant #18)', 'Pine Instrument Gyratory Compactor AFG1A(Man Specs & AASHTO)', 'Cap: 5KN/10.5KN 152.4mm 30RPM ', '2012-12-12', 14507, '12/12/2012', NULL), (14508, 1653, 'S/N 1735', 'Pine Instrument AFGC125X Single Proving Ring', 'Cap: 10K (E-4 & Man Specs)', '2013-06-14', 14508, '6/14/2013', NULL), (14509, 1654, '', '', '', '0000-00-00', 14509, '', NULL), (14510, 1655, 'S/N SLT0001PER', 'ELE Tri-Flex Panel (D-5720)', 'Range: 100 PSI', '2012-12-12', 14510, '12/12/2012', NULL), (14511, 1656, '', 'For Gyratory CAL: 1124.1 Lbf & 2360.5 Lbf (Load & Read Points)', '', '0000-00-00', 14511, '', NULL), (14512, 1657, '', '', '', '0000-00-00', 14512, '', NULL), (14513, 1658, '', '', '', '0000-00-00', 14513, '', NULL), (14514, 1659, '', '', '', '0000-00-00', 14514, '', NULL), (14515, 1660, '', '', '', '0000-00-00', 14515, '', NULL), (14516, 1661, 'S/N 1018', 'Pine Instrument AF-850-T Asphalt Tester w/Test Spring #737', 'Range: 25K / 5K / 10K Plant #19 (E-4)', '2013-06-17', 14516, '6/17/2013', NULL), (14517, 1662, 'S/N 83091129', 'Brainard Kilman C100 Compression Machine (E-4)', 'Range: 250K ', NULL, 14517, 'New', NULL), (14518, 1663, '', '', '', '0000-00-00', 14518, '', NULL), (14519, 1664, '', '', '', '0000-00-00', 14519, '', NULL), (14520, 1665, '', '', '', '0000-00-00', 14520, '', NULL), (14521, 1666, '', '', '', '0000-00-00', 14521, '', NULL), (14522, 1667, '', '', '', '0000-00-00', 14522, '', NULL), (14523, 1668, 'S/N GC#001', 'CDI Dial Gauge (E-4)', 'Range: 0.4 inches (Done In House )', '2010-12-06', 14523, '12/6/2010', NULL), (14524, 1669, '', '', '', '0000-00-00', 14524, '', NULL), (14525, 1670, 'S/N 0305X20569', 'Hightech Magnus Beam Machine (OOS) (E-4)', 'Range: 20Kn / 200 Kn', '2004-06-11', 14525, '6/11/2004', NULL), (14526, 1671, '', '', '', '0000-00-00', 14526, '', NULL), (14527, 1672, '', '', '', '0000-00-00', 14527, '', NULL), (14528, 1673, '', '', '', '0000-00-00', 14528, '', NULL), (14529, 1674, '', '', '', '0000-00-00', 14529, '', NULL), (14530, 1675, 'S/N 2101', 'Spare 2% Gauge w/ELE S/N 0204 (OUT OF SERVICE) ', 'Range: 250K', '2006-08-11', 14530, '8/11/2006', NULL), (14531, 1676, '', '', '', '0000-00-00', 14531, '', NULL), (14532, 1677, '', '', '', '0000-00-00', 14532, '', NULL), (14533, 1678, '', '', '', '0000-00-00', 14533, '', NULL), (14534, 1679, '', '', '', '0000-00-00', 14534, '', NULL), (14535, 1680, '', '', '', '0000-00-00', 14535, '', NULL), (14536, 1681, '', '', '', '0000-00-00', 14536, '', NULL), (14537, 1682, '', '', '', '0000-00-00', 14537, '', NULL), (14538, 1683, '', '', '', '0000-00-00', 14538, '', NULL), (14539, 1684, '', '', '', '0000-00-00', 14539, '', NULL), (14540, 1685, '', '', '', '0000-00-00', 14540, '', NULL), (14541, 1686, '', '', '', '0000-00-00', 14541, '', NULL), (14542, 1687, '', '', '', '0000-00-00', 14542, '', NULL), (14543, 1688, '', '', '', '0000-00-00', 14543, '', NULL), (14544, 1689, '', '', '', '0000-00-00', 14544, '', NULL), (14545, 1690, '', '', '', '0000-00-00', 14545, '', NULL), (14546, 1691, '', '', '', '0000-00-00', 14546, '', NULL), (14547, 1692, '', '', '', '0000-00-00', 14547, '', NULL), (14548, 1693, 'S/N 91271', 'Hercules Prestress Jack (SOLD)', 'Range Pre 1500 / Final to 35K', '2001-06-08', 14548, '6/8/2001', NULL), (14549, 1694, '', '', '', '0000-00-00', 14549, '', NULL), (14550, 1695, '', '', '', '0000-00-00', 14550, '', NULL), (14551, 1696, '', '', '', '0000-00-00', 14551, '', NULL), (14552, 1697, '', '', '', '0000-00-00', 14552, '', NULL), (14553, 1698, '', '', '', '0000-00-00', 14553, '', NULL), (14554, 1699, '', '', '', '0000-00-00', 14554, '', NULL), (14555, 1700, '', '', '', '0000-00-00', 14555, '', NULL), (14556, 1701, 'S/N AFG1A07', 'Pine Instrument Angle Sensor Jig (D-6027)', 'Range: 1 Inch', '2012-03-09', 14556, '3/9/2012', NULL), (14557, 1702, 'S/N 612903', 'Humboldt CBR HM2300-100 w/ S-Type Load Cell (E-4)', 'Range: 10K', '2013-03-14', 14557, '3/14/2013', NULL), (14558, 1703, 'S/N Unknown', 'AWS PN-2100B Scale (E-898)', 'Range: 2,100 grams', '2013-03-04', 14558, '3/4/2013', NULL), (14559, 1704, '', '', '', '0000-00-00', 14559, '', NULL), (14560, 1705, 'S/N M921137A807', ' w/LVDT Vertical Displacement ADU Channel 3 (D-6027)', 'Range: 10 mm', '2013-03-06', 14560, '3/6/2013', NULL), (14561, 1706, '', '', '', '0000-00-00', 14561, '', NULL), (14562, 1707, '', '', '', '0000-00-00', 14562, '', NULL), (14563, 1708, '', '', '', '0000-00-00', 14563, '', NULL), (14564, 1709, '', '', '', '0000-00-00', 14564, '', NULL), (14565, 1710, '', '', '', '0000-00-00', 14565, '', NULL), (14566, 1711, '', '', '', '0000-00-00', 14566, '', NULL), (14567, 1712, '', '', '', '0000-00-00', 14567, '', NULL), (14568, 1713, '', '', '', '0000-00-00', 14568, '', NULL), (14569, 1714, '', '', '', '0000-00-00', 14569, '', NULL), (14570, 1715, '', '', '', '0000-00-00', 14570, '', NULL), (14571, 1716, '', '', '', '0000-00-00', 14571, '', NULL), (14572, 1717, '', 'Best days to come: M, W, F ', '', '0000-00-00', 14572, '', NULL), (14573, 1718, '', '', '', '0000-00-00', 14573, '', NULL), (14574, 1719, 'S/N C5000', ' w/ Speed Control (Man Specs)', 'Range: 10 in/min', '2013-02-26', 14574, '2/26/2013', NULL), (14575, 1720, '', '', '', '0000-00-00', 14575, '', NULL), (14576, 1721, 'S/N 7205', 'Ohaus balance NCAT oven Model GT-800 Scale (E-898)', 'Cap: 3,000 Grams', '2013-03-27', 14576, '3/27/2013', NULL), (14577, 1722, 'S/N 3850-245', 'Carver Model 3850 Press R & D (E-4 & 2%)', 'Cap: 5K', '2013-03-26', 14577, '3/26/2013', NULL), (14578, 1723, '', '', '', '0000-00-00', 14578, '', NULL), (14579, 1724, '', '', '', '0000-00-00', 14579, '', NULL), (14580, 1725, '', '', '', '0000-00-00', 14580, '', NULL), (14581, 1726, '', '', '', '0000-00-00', 14581, '', NULL), (14582, 1727, 'S/N 129135', ' Load Cell #1 Red (SOLD) (E-4)', 'Range: 50K', '2006-05-24', 14582, '5/24/2006', NULL), (14583, 1728, '', '', '', '0000-00-00', 14583, '', NULL), (14584, 1729, '', '', '', '0000-00-00', 14584, '', NULL), (14585, 1730, '', '', '', '0000-00-00', 14585, '', NULL), (14586, 1731, '', '', '', '0000-00-00', 14586, '', NULL), (14587, 1732, 'S/N 91009', 'Wegener Utilitest Model 500 Tensiometer (MOVED) (E-4)', 'Range: 500 lbs', '2007-05-02', 14587, '5/2/2007', NULL), (14588, 1733, '', 'threads chased', '', '0000-00-00', 14588, '', NULL), (14589, 1734, '', '', '', '0000-00-00', 14589, '', NULL), (14590, 1735, '', '', '', '0000-00-00', 14590, '', NULL), (14591, 1736, '', '', '', '0000-00-00', 14591, '', NULL), (14592, 1737, '', '', '', '0000-00-00', 14592, '', NULL), (14593, 1738, '', '', '', '0000-00-00', 14593, '', NULL), (14594, 1739, '', '', '', '0000-00-00', 14594, '', NULL), (14595, 1740, '', '', '', '0000-00-00', 14595, '', NULL), (14596, 1741, '', '', '', '0000-00-00', 14596, '', NULL), (14597, 1742, '', '', '', '0000-00-00', 14597, '', NULL), (14598, 1743, '', '', '', '0000-00-00', 14598, '', NULL), (14599, 1744, 'S/N 270/946.67', ' with Range Card', 'Range: 25K ID#25-LC06RC02', '0000-00-00', 14599, '', NULL), (14600, 1745, '', '', '', '0000-00-00', 14600, '', NULL), (14601, 1746, '', '', '', '0000-00-00', 14601, '', NULL), (14602, 1747, '', '', '', '0000-00-00', 14602, '', NULL), (14603, 1748, '', '', '', '0000-00-00', 14603, '', NULL), (14604, 1749, '', '', '', '0000-00-00', 14604, '', NULL), (14605, 1750, '', '', '', '0000-00-00', 14605, '', NULL), (14606, 1751, '', '', '', '0000-00-00', 14606, '', NULL), (14607, 1752, '', '', '', '0000-00-00', 14607, '', NULL), (14608, 1753, 'S/N 1011', ' with 1 Speed Control with 3 speeds (E-4 & Man. Specs.)', 'Cap: .049 / .007 /.0705', '2002-04-17', 14608, '4/17/2002', NULL), (14609, 1754, '', '', '', '0000-00-00', 14609, '', NULL), (14610, 1755, '', '', '', '0000-00-00', 14610, '', NULL), (14611, 1756, '', '', '', '0000-00-00', 14611, '', NULL), (14612, 1757, '', '', '', '0000-00-00', 14612, '', NULL), (14613, 1758, '', '', '', '0000-00-00', 14613, '', NULL), (14614, 1759, '', '', '', '0000-00-00', 14614, '', NULL), (14615, 1760, '', '', '', '0000-00-00', 14615, '', NULL), (14616, 1761, '', '', '', '0000-00-00', 14616, '', NULL), (14617, 1762, '', '', '', '0000-00-00', 14617, '', NULL), (14618, 1763, '', '', '', '0000-00-00', 14618, '', NULL), (14619, 1764, '', '', '', '0000-00-00', 14619, '', NULL), (14620, 1765, '', '', '', '0000-00-00', 14620, '', NULL), (14621, 1766, '', '', '', '0000-00-00', 14621, '', NULL), (14622, 1767, '', '', '', '0000-00-00', 14622, '', NULL), (14623, 1768, '', '', '', '0000-00-00', 14623, '', NULL), (14624, 1769, '', '', '', '0000-00-00', 14624, '', NULL), (14625, 1770, '', '', '', '0000-00-00', 14625, '', NULL), (14626, 1771, '', '', '', '0000-00-00', 14626, '', NULL), (14627, 1772, '', '', '', '0000-00-00', 14627, '', NULL), (14628, 1773, '', '', '', '0000-00-00', 14628, '', NULL), (14629, 1774, '', '', '', '0000-00-00', 14629, '', NULL), (14630, 1775, '', '', '', '0000-00-00', 14630, '', NULL), (14631, 1776, '', '', '', '0000-00-00', 14631, '', NULL), (14632, 1777, '', '', '', '0000-00-00', 14632, '', NULL), (14633, 1778, '', '', '', '0000-00-00', 14633, '', NULL), (14634, 1779, '', '', '', '0000-00-00', 14634, '', NULL), (14635, 1780, '', '', '', '0000-00-00', 14635, '', NULL), (14636, 1781, '', '', '', '0000-00-00', 14636, '', NULL), (14637, 1782, '', '', '', '0000-00-00', 14637, '', NULL), (14638, 1783, '', '', '', '0000-00-00', 14638, '', NULL), (14639, 1784, 'S/N 8571358', 'Scale, Forney Platform', '', NULL, 14639, 'NEW', NULL), (14640, 1785, '', 'Scale, Ohaus Model DS20L', '', NULL, 14640, 'NEW', NULL), (14641, 1786, '', '', '', '0000-00-00', 14641, '', NULL), (14642, 1787, '', '', '', '0000-00-00', 14642, '', NULL), (14643, 1788, '', '', '', '0000-00-00', 14643, '', NULL), (14644, 1789, '', '', '', '0000-00-00', 14644, '', NULL), (14645, 1790, '', '', '', '0000-00-00', 14645, '', NULL), (14646, 1791, '', '', '', '0000-00-00', 14646, '', NULL), (14647, 1792, '', '', '', '0000-00-00', 14647, '', NULL), (14648, 1793, '', '', '', '0000-00-00', 14648, '', NULL), (14649, 1794, '', '', '', '0000-00-00', 14649, '', NULL), (14650, 1795, '', '', '', '0000-00-00', 14650, '', NULL), (14651, 1796, '', '', '', '0000-00-00', 14651, '', NULL), (14652, 1797, '', '', '', '0000-00-00', 14652, '', NULL), (14653, 1798, '', '', '', '0000-00-00', 14653, '', NULL), (14654, 1799, '', '', '', '0000-00-00', 14654, '', NULL), (14655, 1800, '', '', '', '0000-00-00', 14655, '', NULL), (14656, 1801, '', '', '', '0000-00-00', 14656, '', NULL), (14657, 1802, '', '', '', '0000-00-00', 14657, '', NULL), (14658, 1803, '', '', '', '0000-00-00', 14658, '', NULL), (14659, 1804, 'S/N', ' w/Displacment (E-2309)', 'Range: ', NULL, 14659, 'New', NULL), (14660, 1805, '', '', '', '0000-00-00', 14660, '', NULL), (14661, 1806, '', '', '', '0000-00-00', 14661, '', NULL), (14662, 1807, '', '', '', '0000-00-00', 14662, '', NULL), (14663, 1808, '', '', '', '0000-00-00', 14663, '', NULL), (14664, 1809, '', '', '', '0000-00-00', 14664, '', NULL), (14665, 1810, '', '', '', '0000-00-00', 14665, '', NULL), (14666, 1811, '', '', '', '0000-00-00', 14666, '', NULL), (14667, 1812, '', '', '', '0000-00-00', 14667, '', NULL), (14668, 1813, '', '', '', '0000-00-00', 14668, '', NULL), (14669, 1814, '', '', '', '0000-00-00', 14669, '', NULL), (14670, 1815, '', '', '', '0000-00-00', 14670, '', NULL), (14671, 1816, '', '', '', '0000-00-00', 14671, '', NULL), (14672, 1817, '', '', '', '0000-00-00', 14672, '', NULL), (14673, 1818, '', '', '', '0000-00-00', 14673, '', NULL), (14674, 1819, 'S/N PrR-3', 'Soiltest Single Proving Ring (OOS) (E-4 & Mans Spec)', '', '2007-03-20', 14674, '3/20/2007', NULL), (14675, 1820, 'S/N 5', 'Conbel Pressure Gauge (D-5720)', 'Cap: 15 psi', '2013-05-07', 14675, '5/7/2013', NULL), (14676, 1821, '', '', '', '0000-00-00', 14676, '', NULL), (14677, 1822, '', 'Send Certs to Billing Address', '', '0000-00-00', 14677, '', NULL), (14678, 1823, 'S/N 1106065', 'Humboldt HM-2000A Digital Masterloader Speed Control', 'Range: 0.5 in/min (E2658-11)', '2013-05-08', 14678, '5/8/2013', NULL), (14679, 1824, '', '', '', '0000-00-00', 14679, '', NULL), (14680, 1825, '', '', '', '0000-00-00', 14680, '', NULL), (14681, 1826, '', '', '', '0000-00-00', 14681, '', NULL), (14682, 1827, '', 'person ordering the services ', '', '0000-00-00', 14682, '', NULL), (14683, 1828, '', '', '', '0000-00-00', 14683, '', NULL), (14684, 1829, '', '', '', '0000-00-00', 14684, '', NULL), (14685, 1830, '', '', '', '0000-00-00', 14685, '', NULL), (14686, 1831, 'S/N 23964', 'ELE Unconfined Double Proving Ring (E-4 & ManSpec)', 'Cap: 500 lbs', '2013-05-15', 14686, '5/15/2013', NULL), (14687, 1832, '', '', '', '0000-00-00', 14687, '', NULL), (14688, 1833, '', '', '', '0000-00-00', 14688, '', NULL), (14689, 1834, '', '', '', '0000-00-00', 14689, '', NULL), (14690, 1835, '', '', '', '0000-00-00', 14690, '', NULL), (14691, 1836, '', '', '', '0000-00-00', 14691, '', NULL), (14692, 1837, '', '', '', '0000-00-00', 14692, '', NULL), (14693, 1838, 'S/N 972469237', 'ELE LC-3 Dial Indicator (D-6027)', 'Range: 0.4 inches ', '2012-05-22', 14693, '5/22/2012', NULL), (14694, 1839, 'S/N 900618', ' w/Strainsense SST3M Extensometer (E-83)', 'Range: 0.02 in/in (2\" GL)', '2013-05-21', 14694, '5/21/2013', NULL), (14695, 1840, 'S/N 941999882', ' w/Shear Displacement Dial indicator (D-6027)', 'Range: 0.1 Inch to 1 Inch ', '2013-05-21', 14695, '5/21/2013', NULL), (14696, 1841, 'S/N 24601', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs )', 'Cap: 1.5K', '2012-05-22', 14696, '5/22/2012', NULL), (14697, 1842, 'S/N 2193', 'GeoJace Load Frame 1 w/ Geotac Dial Indicator (D-6027)', 'Range: 0.2 in to 2 in IndicatorS/N LP-832', '2013-05-21', 14697, '5/21/2013', NULL), (14698, 1843, '', '', '', '0000-00-00', 14698, '', NULL), (14699, 1844, 'S/N LP119', 'Geotac LS3 LVDT (ID# 2 Channel #2) (D-6027)', 'Range: 2 Inches', '2013-05-21', 14699, '5/21/2013', NULL), (14700, 1845, '', '', '', '0000-00-00', 14700, '', NULL), (14701, 1846, '', '', '', '0000-00-00', 14701, '', NULL), (14702, 1847, '', '', '', '0000-00-00', 14702, '', NULL), (14703, 1848, '', '', '', '0000-00-00', 14703, '', NULL), (14704, 1849, '', '', '', '0000-00-00', 14704, '', NULL), (14705, 1850, '', '', '', '0000-00-00', 14705, '', NULL), (14706, 1851, '', '', '', '0000-00-00', 14706, '', NULL), (14707, 1852, '', '', '', '0000-00-00', 14707, '', NULL), (14708, 1853, '', '', '', '0000-00-00', 14708, '', NULL), (14709, 1854, '', '', '', '0000-00-00', 14709, '', NULL), (14710, 1855, '', '', '', '0000-00-00', 14710, '', NULL), (14711, 1856, '', '', '', '0000-00-00', 14711, '', NULL), (14712, 1857, '', '', '', '0000-00-00', 14712, '', NULL), (14713, 1858, '', '', '', '0000-00-00', 14713, '', NULL), (14714, 1859, '', '', '', '0000-00-00', 14714, '', NULL), (14715, 1860, '', '', '', '0000-00-00', 14715, '', NULL), (14716, 1861, '', '', '', '0000-00-00', 14716, '', NULL), (14717, 1862, '', '', '', '0000-00-00', 14717, '', NULL), (14718, 1863, '', '', '', '0000-00-00', 14718, '', NULL), (14719, 1864, '', '', '', '0000-00-00', 14719, '', NULL), (14720, 1865, '', '', '', '0000-00-00', 14720, '', NULL), (14721, 1866, '', '', '', '0000-00-00', 14721, '', NULL), (14722, 1867, 'S/N 6', 'Gauge', 'Range 3000 psi', '1996-05-08', 14722, '5/8/1996', NULL), (14723, 1868, '', '', '', '0000-00-00', 14723, '', NULL), (14724, 1869, 'S/N 0225298A', ' with Displacement Card', '2.5\" Displacement, ID#25-MTS3DC02', '1998-02-25', 14724, '2/25/1998', NULL), (14725, 1870, 'S/N 211', 'MTS II Displacement Card Model LVDT (Tag# 25-MTS2DC02)', 'Range .5\"', '1998-05-28', 14725, '5/28/1998', NULL), (14726, 1871, 'S/N 76068', 'MTS II Load Cell Model 661.20E.01 (Tag# 25-LC12)', 'Range 1K', '1998-05-27', 14726, '5/27/1998', NULL), (14727, 1872, '', '', '', '0000-00-00', 14727, '', NULL), (14728, 1873, '', '', '', '0000-00-00', 14728, '', NULL), (14729, 1874, '', '', '', '0000-00-00', 14729, '', NULL), (14730, 1875, '', '', '', '0000-00-00', 14730, '', NULL), (14731, 1876, '', '', '', '0000-00-00', 14731, '', NULL), (14732, 1877, '', '', '', '0000-00-00', 14732, '', NULL), (14733, 1878, '', '', '', '0000-00-00', 14733, '', NULL), (14734, 1879, '', '', '', '0000-00-00', 14734, '', NULL), (14735, 1880, '', '', '', '0000-00-00', 14735, '', NULL), (14736, 1881, '', '', '', '0000-00-00', 14736, '', NULL), (14737, 1882, '', '', '', '0000-00-00', 14737, '', NULL), (14738, 1883, '', '', '', '0000-00-00', 14738, '', NULL), (14739, 1884, '', '', '', '0000-00-00', 14739, '', NULL), (14740, 1885, '', '', '', '0000-00-00', 14740, '', NULL), (14741, 1886, '', '', '', '0000-00-00', 14741, '', NULL), (14742, 1887, '', 'out of the corporate cycle. A guy from their corporate office goes', '', '0000-00-00', 14742, '', NULL), (14743, 1888, '', '', '', '0000-00-00', 14743, '', NULL), (14744, 1889, '', '', '', '0000-00-00', 14744, '', NULL), (14745, 1890, '', '', '', '0000-00-00', 14745, '', NULL), (14746, 1891, 'S/N 27832', 'Brainard-Kilman Pressure Transducer (in house)', 'Range 200 psi', '1995-05-23', 14746, '5/23/1995', NULL), (14747, 1892, '', '', '', '0000-00-00', 14747, '', NULL), (14748, 1893, '', '', '', '0000-00-00', 14748, '', NULL), (14749, 1894, '', '', '', '0000-00-00', 14749, '', NULL), (14750, 1895, '', '', '', '0000-00-00', 14750, '', NULL), (14751, 1896, 'S/N 1038', 'Brainard-Kilman E-124 Pressure Transducer w/ E400 Dig. Readout', 'Cap: 150 psi E-124 w/E-400 (D-5720)', '2000-05-18', 14751, '5/18/2000', NULL), (14752, 1897, '', '', '', '0000-00-00', 14752, '', NULL), (14753, 1898, '', '', '', '0000-00-00', 14753, '', NULL), (14754, 1899, '', '', '', '0000-00-00', 14754, '', NULL), (14755, 1900, '', '', '', '0000-00-00', 14755, '', NULL), (14756, 1901, '', '', '', '0000-00-00', 14756, '', NULL), (14757, 1902, '', '', '', '0000-00-00', 14757, '', NULL), (14758, 1903, '', '', '', '0000-00-00', 14758, '', NULL), (14759, 1904, '', '', '', '0000-00-00', 14759, '', NULL), (14760, 1905, 'S/N 17124', 'Riehle Beam Machine (OOS) (E-4)', 'Range: 30K', '2006-05-31', 14760, '5/31/2006', NULL), (14761, 1906, '', ' Second Range (E-4', 'Range: 10,000 lbs to 50,000 lbs ', '2008-05-29', 14761, '5/29/2008', NULL), (14762, 1907, '', '', '', '0000-00-00', 14762, '', NULL), (14763, 1908, '', '', '', '0000-00-00', 14763, '', NULL), (14764, 1909, '', '', '', '0000-00-00', 14764, '', NULL), (14765, 1910, '', '', '', '0000-00-00', 14765, '', NULL), (14766, 1911, '', '', '', '0000-00-00', 14766, '', NULL), (14767, 1912, '', '', '', '0000-00-00', 14767, '', NULL), (14768, 1913, '', '', '', '0000-00-00', 14768, '', NULL), (14769, 1914, 'S/N 11840', 'Wykeham Farrance Mdl. 14170P Proving Ring (E-4 & Man Specs)', 'Cap: 2,250 lbs', '2006-08-01', 14769, '8/1/2006', NULL), (14770, 1915, '', '', '', '0000-00-00', 14770, '', NULL), (14771, 1916, '', '', '', '0000-00-00', 14771, '', NULL), (14772, 1917, '', '', '', '0000-00-00', 14772, '', NULL), (14773, 1918, '', '', '', '0000-00-00', 14773, '', NULL), (14774, 1919, '', '', '', '0000-00-00', 14774, '', NULL), (14775, 1920, '', '', '', '0000-00-00', 14775, '', NULL), (14776, 1921, '', '', '', '0000-00-00', 14776, '', NULL), (14777, 1922, '', '', '', '0000-00-00', 14777, '', NULL), (14778, 1923, '', '', '', '0000-00-00', 14778, '', NULL), (14779, 1924, '', 'e-mail Solitation Letter to sam.kimani@ebaengineering.com', '', '0000-00-00', 14779, '', NULL), (14780, 1925, '', '', '', '0000-00-00', 14780, '', NULL), (14781, 1926, '', '', '', '0000-00-00', 14781, '', NULL), (14782, 1927, '', '', '', '0000-00-00', 14782, '', NULL), (14783, 1928, '', '', '', '0000-00-00', 14783, '', NULL), (14784, 1929, '', '', '', '0000-00-00', 14784, '', NULL), (14785, 1930, '', '', '', '0000-00-00', 14785, '', NULL), (14786, 1931, 'S/N 9819', 'Concrete Compression Testing Machine SB-2262 OUT OF SERVICE', 'Range:', '0000-00-00', 14786, '', NULL), (14787, 1932, '', '', '', '0000-00-00', 14787, '', NULL), (14788, 1933, '', '', '', '0000-00-00', 14788, '', NULL), (14789, 1934, '', '', '', '0000-00-00', 14789, '', NULL), (14790, 1935, '', '', '', '0000-00-00', 14790, '', NULL), (14791, 1936, '', '', '', '0000-00-00', 14791, '', NULL), (14792, 1937, '', '', '', '0000-00-00', 14792, '', NULL), (14793, 1938, '', '', '', '0000-00-00', 14793, '', NULL), (14794, 1939, '', '', '', '0000-00-00', 14794, '', NULL), (14795, 1940, '', '', '', '0000-00-00', 14795, '', NULL), (14796, 1941, '', '', '', '0000-00-00', 14796, '', NULL), (14797, 1942, '', '', '', '0000-00-00', 14797, '', NULL), (14798, 1943, '', '', '', '0000-00-00', 14798, '', NULL), (14799, 1944, '', '', '', '0000-00-00', 14799, '', NULL), (14800, 1945, '', '', '', '0000-00-00', 14800, '', NULL), (14801, 1946, '', '', '', '0000-00-00', 14801, '', NULL), (14802, 1947, '', '', '', '0000-00-00', 14802, '', NULL), (14803, 1948, '', '', '', '0000-00-00', 14803, '', NULL), (14804, 1949, '', '', '', '0000-00-00', 14804, '', NULL), (14805, 1950, '', '', '', '0000-00-00', 14805, '', NULL), (14806, 1951, '', '', '', '0000-00-00', 14806, '', NULL), (14807, 1952, '', '', '', '0000-00-00', 14807, '', NULL), (14808, 1953, '', '', '', '0000-00-00', 14808, '', NULL), (14809, 1954, '', '', '', '0000-00-00', 14809, '', NULL), (14810, 1955, '', '', '', '0000-00-00', 14810, '', NULL), (14811, 1956, '', '', '', '0000-00-00', 14811, '', NULL), (14812, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 14812, 'New', NULL), (14813, 1958, 'S/N 101', 'Ashcroft Gauge', 'Range: 0-60psi', '2002-11-22', 14813, '11/22/2002', NULL), (14814, 1959, 'S/N', 'Forney Air Meter Gauge (D-5720)', 'Range: 15 PSI', '2009-11-02', 14814, '11/2/2009', NULL), (14815, 1960, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 14815, '', NULL), (14816, 1961, '', '', '', '0000-00-00', 14816, '', NULL), (14817, 1962, '', '', '', '0000-00-00', 14817, '', NULL), (14818, 1963, '', '', '', '0000-00-00', 14818, '', NULL), (14819, 1964, '', '', '', '0000-00-00', 14819, '', NULL), (14820, 1965, '', '', '', '0000-00-00', 14820, '', NULL), (14821, 1966, '', '', '', '0000-00-00', 14821, '', NULL), (14822, 1967, '', '', '', '0000-00-00', 14822, '', NULL), (14823, 1968, '', '', '', '0000-00-00', 14823, '', NULL), (14824, 1969, '', '', '', '0000-00-00', 14824, '', NULL), (14825, 1970, '', '', '', '0000-00-00', 14825, '', NULL), (14826, 1971, '', '', '', '0000-00-00', 14826, '', NULL), (14827, 1972, 'S/N 519', 'Pine Instruments Test Press Model 850', 'Range: 2.5k / 5K / 10K', '2002-11-19', 14827, '11/19/2002', NULL), (14828, 1973, '', '', '', '0000-00-00', 14828, '', NULL), (14829, 1974, '', '', '', '0000-00-00', 14829, '', NULL), (14830, 1975, '', '', '', '0000-00-00', 14830, '', NULL), (14831, 1976, '', '', '', '0000-00-00', 14831, '', NULL), (14832, 1977, '', '', '', '0000-00-00', 14832, '', NULL), (14833, 1978, '', '', '', '0000-00-00', 14833, '', NULL), (14834, 1979, '', '', '', '0000-00-00', 14834, '', NULL), (14835, 1980, '', '', '', '0000-00-00', 14835, '', NULL), (14836, 1981, '', '', '', '0000-00-00', 14836, '', NULL), (14837, 1982, '', '', '', '0000-00-00', 14837, '', NULL), (14838, 1983, '', '', '', '0000-00-00', 14838, '', NULL), (14839, 1984, '', '', '', '0000-00-00', 14839, '', NULL), (14840, 1985, '', '', '', '0000-00-00', 14840, '', NULL), (14841, 1986, '', '', '', '0000-00-00', 14841, '', NULL), (14842, 1987, 'S/N 98028', 'Forney F-400F-02 Compression Machine (MOVED) (E-4)', 'Range 50K/400K ', '2005-12-13', 14842, '12/13/2005', NULL), (14843, 1988, 'S/N 4', 'Power Team Post Tension Jack - Model C (E-4 & PCI)', 'Range: 6,500 psi', '2006-05-12', 14843, '5/12/2006', NULL), (14844, 1989, 'S/N 88096', 'Forney QC-400-D2 Compression Machine (E-4)', 'Range: 4K to 400K', NULL, 14844, 'New', NULL), (14845, 1990, '', '', '', '0000-00-00', 14845, '', NULL), (14846, 1991, '', '', '', '0000-00-00', 14846, '', NULL), (14847, 1992, '', '', '', '0000-00-00', 14847, '', NULL), (14848, 1993, '', '', '', '0000-00-00', 14848, '', NULL), (14849, 1994, '', '', '', '0000-00-00', 14849, '', NULL), (14850, 1995, '', '', '', '0000-00-00', 14850, '', NULL), (14851, 1996, '', '', '', '0000-00-00', 14851, '', NULL), (14852, 1997, '', '', '', '0000-00-00', 14852, '', NULL), (14853, 1998, '', '', '', '0000-00-00', 14853, '', NULL), (14854, 1999, '', '', '', '0000-00-00', 14854, '', NULL), (14855, 2000, '', '', '', '0000-00-00', 14855, '', NULL), (14856, 2001, '', '', '', '0000-00-00', 14856, '', NULL), (14857, 2002, '', '', '', '0000-00-00', 14857, '', NULL), (14858, 2003, '', '', '', '0000-00-00', 14858, '', NULL), (14859, 2004, '', '', '', '0000-00-00', 14859, '', NULL), (14860, 2005, '', '', '', '0000-00-00', 14860, '', NULL), (14861, 2006, '', '', '', '0000-00-00', 14861, '', NULL), (14862, 2007, '', 'ALL TECHNICAL & WORK NEEDS TO BE APPROVED BY ', '', '0000-00-00', 14862, '', NULL), (14863, 2008, 'S/N JAA424', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2009-10-20', 14863, '10/20/2009', NULL), (14864, 2009, 'S/N 8442', 'Soiltest Unconfined T & C Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs (Compression Only) ', '2011-10-18', 14864, '10/18/2011', NULL), (14865, 2010, '', '', '', '0000-00-00', 14865, '', NULL), (14866, 2011, '', '', '', '0000-00-00', 14866, '', NULL), (14867, 2012, '', '', '', '0000-00-00', 14867, '', NULL), (14868, 2013, '', '', '', '0000-00-00', 14868, '', NULL), (14869, 2014, '', '', '', '0000-00-00', 14869, '', NULL), (14870, 2015, '', '', '', '0000-00-00', 14870, '', NULL), (14871, 2016, '', '', '', '0000-00-00', 14871, '', NULL), (14872, 2017, '', '', '', '0000-00-00', 14872, '', NULL), (14873, 2018, '', '', '', '0000-00-00', 14873, '', NULL), (14874, 2019, '', '', '', '0000-00-00', 14874, '', NULL), (14875, 2020, '', '', '', '0000-00-00', 14875, '', NULL), (14876, 2021, '', '', '', '0000-00-00', 14876, '', NULL), (14877, 2022, '', '', '', '0000-00-00', 14877, '', NULL), (14878, 2023, '', '', '', '0000-00-00', 14878, '', NULL), (14879, 2024, '', '', '', '0000-00-00', 14879, '', NULL), (14880, 2025, '', '', '', '0000-00-00', 14880, '', NULL), (14881, 2026, '', '', '', '0000-00-00', 14881, '', NULL), (14882, 2027, '', '', '', '0000-00-00', 14882, '', NULL), (14883, 2028, '', '', '', '0000-00-00', 14883, '', NULL), (14884, 2029, '', '', '', '0000-00-00', 14884, '', NULL), (14885, 2030, '', '', '', '0000-00-00', 14885, '', NULL), (14886, 2031, '', '', '', '0000-00-00', 14886, '', NULL), (14887, 2032, '', '', '', '0000-00-00', 14887, '', NULL), (14888, 2033, '', '', '', '0000-00-00', 14888, '', NULL), (14889, 2034, '', '', '', '0000-00-00', 14889, '', NULL), (14890, 2035, '', '', '', '0000-00-00', 14890, '', NULL), (14891, 2036, '', '', '', '0000-00-00', 14891, '', NULL), (14892, 2037, '', '', '', '0000-00-00', 14892, '', NULL), (14893, 2038, '', '', '', '0000-00-00', 14893, '', NULL), (14894, 2039, '', '', '', '0000-00-00', 14894, '', NULL), (14895, 2040, '', '', '', '0000-00-00', 14895, '', NULL), (14896, 2041, '', '', '', '0000-00-00', 14896, '', NULL), (14897, 2042, '', '', '', '0000-00-00', 14897, '', NULL), (14898, 2043, '', '', '', '0000-00-00', 14898, '', NULL), (14899, 2044, '', '', '', '0000-00-00', 14899, '', NULL), (14900, 2045, '', '', '', '0000-00-00', 14900, '', NULL), (14901, 2046, '', '', '', '0000-00-00', 14901, '', NULL), (14902, 2047, '', '', '', '0000-00-00', 14902, '', NULL), (14903, 2048, '', '', '', '0000-00-00', 14903, '', NULL), (14904, 2049, '', '', '', '0000-00-00', 14904, '', NULL), (14905, 2050, '', '', '', '0000-00-00', 14905, '', NULL), (14906, 2051, '', '', '', '0000-00-00', 14906, '', NULL), (14907, 2052, '', '', '', '0000-00-00', 14907, '', NULL), (14908, 2053, 'S/N 101', 'Enerpac Load Cell Model TM-5 (E-4)', 'Range 10,000 lb.', '1998-11-10', 14908, '11/10/1998', NULL), (14909, 2054, '', '', '', '0000-00-00', 14909, '', NULL), (14910, 2055, '', '', '', '0000-00-00', 14910, '', NULL), (14911, 2056, '', '', '', '0000-00-00', 14911, '', NULL), (14912, 2057, '', '', '', '0000-00-00', 14912, '', NULL), (14913, 2058, '', ' w/Boart Longyear Pressure Transducer (D-5720)', 'Range: 100 PSI', '2007-10-24', 14913, '10/24/2007', NULL), (14914, 2059, '', '', '', '0000-00-00', 14914, '', NULL), (14915, 2060, '', '', '', '0000-00-00', 14915, '', NULL), (14916, 2061, '', '', '', '0000-00-00', 14916, '', NULL), (14917, 2062, '', '', '', '0000-00-00', 14917, '', NULL), (14918, 2063, '', '', '', '0000-00-00', 14918, '', NULL), (14919, 2064, '', '', '', '0000-00-00', 14919, '', NULL), (14920, 2065, '', '', '', '0000-00-00', 14920, '', NULL), (14921, 2066, 'S/N 171184', 'Tinius Olsen Series 1000 Universal Testing Machine (OOS) (E-4)', 'Range50/100/200/500/1000(tensileonly)', '2005-10-12', 14921, '10/12/2005', NULL), (14922, 2067, '', '', '', '0000-00-00', 14922, '', NULL), (14923, 2068, '', '', '', '0000-00-00', 14923, '', NULL), (14924, 2069, '', '', '', '0000-00-00', 14924, '', NULL), (14925, 2070, '', '', '', '0000-00-00', 14925, '', NULL), (14926, 2071, '', '', '', '0000-00-00', 14926, '', NULL), (14927, 2072, 'S/N 19712', 'RDP Electronics LVDT AXIAL 3 (D-6027)', 'Range: +/- 2.5 mm ', '2006-10-24', 14927, '10/24/2006', NULL), (14928, 2073, '', '', '', '0000-00-00', 14928, '', NULL), (14929, 2074, '', '', '', '0000-00-00', 14929, '', NULL), (14930, 2075, 'S/N Stress 3', 'Stress Con Prestress Jack (E-4 & PCI)', 'Range: 5K / 50K', '2007-10-04', 14930, '10/4/2007', NULL), (14931, 2076, '', '', '', '0000-00-00', 14931, '', NULL), (14932, 2077, '', '', '', '0000-00-00', 14932, '', NULL), (14933, 2078, '', '', '', '0000-00-00', 14933, '', NULL), (14934, 2079, 'S/N 22315', 'Soiltest PR-5 Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs ', '2012-10-23', 14934, '10/23/2012', NULL), (14935, 2080, 'S/N 043644564', 'Gilson Dial Indicator (D-6027)', 'Range: 1 inch', '2012-10-23', 14935, '10/23/2012', NULL), (14936, 2081, '', '', '', '0000-00-00', 14936, '', NULL), (14937, 2082, '', '', '', '0000-00-00', 14937, '', NULL), (14938, 2083, 'S/N TW4880', 'SPX Post Tension Jack w/Jack & Accessories PTJ Ram ', 'Range: 35K (E-4 & PCI)', '2008-05-13', 14938, '5/13/2008', NULL), (14939, 2084, '', '', '', '0000-00-00', 14939, '', NULL), (14940, 2085, '', '', '', '0000-00-00', 14940, '', NULL), (14941, 2086, 'S/N 88507A', ' w/ T & C Load Cell (E-4)', 'Range: 50K ', '2013-09-04', 14941, '9/4/2013', NULL), (14942, 2087, '', '', '', '0000-00-00', 14942, '', NULL), (14943, 2088, '', '', '', '0000-00-00', 14943, '', NULL), (14944, 2089, 'S/N 93582', 'Hayes Prestress Jack with Digital - Model 2 (E-4 & PCI)', 'Range: 4K / 45K', '2013-09-03', 14944, '9/3/2013', NULL), (14945, 2090, '', '', '', '0000-00-00', 14945, '', NULL), (14946, 2091, '', '', '', '0000-00-00', 14946, '', NULL), (14947, 2092, 'S/N B19813005C', 'Enerpac 244008PB-V Post Tension Jack (E-4 & PCI )', '', '2013-09-03', 14947, '9/3/2013', NULL), (14948, 2093, '', '', '', '0000-00-00', 14948, '', NULL), (14949, 2094, '', '', '', '0000-00-00', 14949, '', NULL), (14950, 2095, '', '', '', '0000-00-00', 14950, '', NULL), (14951, 2096, '', ' *E-mail Solicitation Letters to Sheila Sennet*', '', '0000-00-00', 14951, '', NULL), (14952, 2097, '', '', '', '0000-00-00', 14952, '', NULL), (14953, 2098, '', '', '', '0000-00-00', 14953, '', NULL), (14954, 2099, '', '', '', '0000-00-00', 14954, '', NULL), (14955, 2100, '', '', '', '0000-00-00', 14955, '', NULL), (14956, 2101, '', '', '', '0000-00-00', 14956, '', NULL), (14957, 2102, '', '', '', '0000-00-00', 14957, '', NULL), (14958, 2103, '', '', '', '0000-00-00', 14958, '', NULL), (14959, 2104, '', '', '', '0000-00-00', 14959, '', NULL), (14960, 2105, '', '', '', '0000-00-00', 14960, '', NULL), (14961, 2106, '', '', '', '0000-00-00', 14961, '', NULL), (14962, 2107, '', '', '', '0000-00-00', 14962, '', NULL), (14963, 2108, '', '', '', '0000-00-00', 14963, '', NULL), (14964, 2109, 'S/N 416', 'Instron Machine', 'Range 50 Kg', '0000-00-00', 14964, '', NULL), (14965, 2110, '', '', '', '0000-00-00', 14965, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (14966, 2111, '', '', '', '0000-00-00', 14966, '', NULL), (14967, 2112, '', '', '', '0000-00-00', 14967, '', NULL), (14968, 2113, '', '', '', '0000-00-00', 14968, '', NULL), (14969, 2114, '', '', '', '0000-00-00', 14969, '', NULL), (14970, 2115, '', '', '', '0000-00-00', 14970, '', NULL), (14971, 2116, '', '', '', '0000-00-00', 14971, '', NULL), (14972, 2117, '', '', '', '0000-00-00', 14972, '', NULL), (14973, 2118, '', '', '', '0000-00-00', 14973, '', NULL), (14974, 2119, '', '', '', '0000-00-00', 14974, '', NULL), (14975, 2120, '', '', '', '0000-00-00', 14975, '', NULL), (14976, 2121, '', '', '', '0000-00-00', 14976, '', NULL), (14977, 2122, '', '', '', '0000-00-00', 14977, '', NULL), (14978, 2123, '', '', '', '0000-00-00', 14978, '', NULL), (14979, 2124, '', '', '', '0000-00-00', 14979, '', NULL), (14980, 2125, '', '', '', '0000-00-00', 14980, '', NULL), (14981, 2126, '', '', '', '0000-00-00', 14981, '', NULL), (14982, 2127, '', '', '', '0000-00-00', 14982, '', NULL), (14983, 2128, '', '', '', '0000-00-00', 14983, '', NULL), (14984, 2129, '', '', '', '0000-00-00', 14984, '', NULL), (14985, 2130, '', '', '', '0000-00-00', 14985, '', NULL), (14986, 2131, '', '', '', '0000-00-00', 14986, '', NULL), (14987, 2132, '', '', '', '0000-00-00', 14987, '', NULL), (14988, 2133, '', '', '', '0000-00-00', 14988, '', NULL), (14989, 2134, '', '', '', '0000-00-00', 14989, '', NULL), (14990, 2135, '', '', '', '0000-00-00', 14990, '', NULL), (14991, 2136, '', '', '', '0000-00-00', 14991, '', NULL), (14992, 2137, 'S/N AN 57990', 'Dillon Dynamometer', '', '0000-00-00', 14992, '', NULL), (14993, 2138, '', '', '', '0000-00-00', 14993, '', NULL), (14994, 2139, '', '', '', '0000-00-00', 14994, '', NULL), (14995, 2140, '', '', '', '0000-00-00', 14995, '', NULL), (14996, 2141, '', '', '', '0000-00-00', 14996, '', NULL), (14997, 2142, '', '', '', '0000-00-00', 14997, '', NULL), (14998, 2143, 'S/N', 'Strainsense Extensometer (E-83)', 'Range: 2 Inch', NULL, 14998, 'New', NULL), (14999, 2144, '', '', '', '0000-00-00', 14999, '', NULL), (15000, 2145, '', '', '', '0000-00-00', 15000, '', NULL), (15001, 2146, '', '', '', '0000-00-00', 15001, '', NULL), (15002, 2147, 'S/N 952059', 'Sensotec 41/0573-01-03-CS-100-1S Load Cell (In House) (E-4)', 'Range: 500 lbs to 50K/Comp 0-10Volts', '2005-11-23', 15002, '11/23/2005', NULL), (15003, 2148, 'S/N 9344', 'Soiltest Single Proving Ring (Out of Service)', 'Range: 20,000 lbs', '2005-09-14', 15003, '9/14/2005', NULL), (15004, 2149, 'S/N 1155-9-18550', ' 28 Kn Proving Ring', 'L Cap: 6000#', '0000-00-00', 15004, '', NULL), (15005, 2150, 'S/N 803481', ' w/ Shear Displacement (D-6027)', 'Range: 0.1 inch to 1.0 inch', '2006-09-12', 15005, '9/12/2006', NULL), (15006, 2151, '', '', '', '0000-00-00', 15006, '', NULL), (15007, 2152, '', '', '', '0000-00-00', 15007, '', NULL), (15008, 2153, '', '', '', '0000-00-00', 15008, '', NULL), (15009, 2154, '', '', '', '0000-00-00', 15009, '', NULL), (15010, 2155, '', '', '', '0000-00-00', 15010, '', NULL), (15011, 2156, '', '', '', '0000-00-00', 15011, '', NULL), (15012, 2157, '', '', '', '0000-00-00', 15012, '', NULL), (15013, 2158, '', '', '', '0000-00-00', 15013, '', NULL), (15014, 2159, '', '', '', '0000-00-00', 15014, '', NULL), (15015, 2160, 'S/N H661', 'HCN Dial Indicator (Bad) (D-6027)', '', '2008-08-25', 15015, '8/25/2008', NULL), (15016, 2161, '', '', '', '0000-00-00', 15016, '', NULL), (15017, 2162, '', '', '', '0000-00-00', 15017, '', NULL), (15018, 2163, '', '', '', '0000-00-00', 15018, '', NULL), (15019, 2164, '', '', '', '0000-00-00', 15019, '', NULL), (15020, 2165, '', '', '', '0000-00-00', 15020, '', NULL), (15021, 2166, '', '', '', '0000-00-00', 15021, '', NULL), (15022, 2167, '', '', '', '0000-00-00', 15022, '', NULL), (15023, 2168, '', '', '', '0000-00-00', 15023, '', NULL), (15024, 2169, '', '', '', '0000-00-00', 15024, '', NULL), (15025, 2170, '', '', '', '0000-00-00', 15025, '', NULL), (15026, 2171, '', '', '', '0000-00-00', 15026, '', NULL), (15027, 2172, '', '', '', '0000-00-00', 15027, '', NULL), (15028, 2173, '', '', '', '0000-00-00', 15028, '', NULL), (15029, 2174, '', '', '', '0000-00-00', 15029, '', NULL), (15030, 2175, '', '', '', '0000-00-00', 15030, '', NULL), (15031, 2176, '', '', '', '0000-00-00', 15031, '', NULL), (15032, 2177, '', '', '', '0000-00-00', 15032, '', NULL), (15033, 2178, '', '', '', '0000-00-00', 15033, '', NULL), (15034, 2179, '', '', '', '0000-00-00', 15034, '', NULL), (15035, 2180, '', '', '', '0000-00-00', 15035, '', NULL), (15036, 2181, '', '', '', '0000-00-00', 15036, '', NULL), (15037, 2182, '', '', '', '0000-00-00', 15037, '', NULL), (15038, 2183, '', '', '', '0000-00-00', 15038, '', NULL), (15039, 2184, '', '', '', '0000-00-00', 15039, '', NULL), (15040, 2185, '', '', '', '0000-00-00', 15040, '', NULL), (15041, 2186, '', '', '', '0000-00-00', 15041, '', NULL), (15042, 2187, '', '', '', '0000-00-00', 15042, '', NULL), (15043, 2188, '', '', '', '0000-00-00', 15043, '', NULL), (15044, 2189, '', '', '', '0000-00-00', 15044, '', NULL), (15045, 2190, '', '', '', '0000-00-00', 15045, '', NULL), (15046, 2191, '', '', '', '0000-00-00', 15046, '', NULL), (15047, 2192, '', '', '', '0000-00-00', 15047, '', NULL), (15048, 2193, '', '', '', '0000-00-00', 15048, '', NULL), (15049, 2194, '', '', '', '0000-00-00', 15049, '', NULL), (15050, 2195, '', '', '', '0000-00-00', 15050, '', NULL), (15051, 2196, 'S/N 0518393/15', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 15051, '8/27/2013', NULL), (15052, 2197, 'S/N 6-2-00', 'Hogentogler Single Proving Ring (E-4 & ManSpec)', 'Range: 6K', '2008-02-18', 15052, '2/18/2008', NULL), (15053, 2198, '', '', '', '0000-00-00', 15053, '', NULL), (15054, 2199, '', '', '', '0000-00-00', 15054, '', NULL), (15055, 2200, '', '', '', '0000-00-00', 15055, '', NULL), (15056, 2201, '', '', '', '0000-00-00', 15056, '', NULL), (15057, 2202, 'S/N 1A0606', 'Geotest Type N Schmidt Hammer (C-805)', 'Range: 78 to 82', '2009-02-16', 15057, '2/16/2009', NULL), (15058, 2203, '', '', '', '0000-00-00', 15058, '', NULL), (15059, 2204, 'S/N', ' w/ Shear Force Load Cell (E-4)', 'Range: 10K', NULL, 15059, 'New', NULL), (15060, 2205, 'S/N #1', 'Boart Longyear LG 114 Shear Box w/Artech 20210-10K Load Cell', 'Range: 10K LC: S/N 408688 (E-4)', '2009-12-17', 15060, '12/17/2009', NULL), (15061, 2206, '', '', '', '0000-00-00', 15061, '', NULL), (15062, 2207, 'S/N 19916', 'Forney Triaxial Cell Pressure Transducer (D-5720)', 'Range: 690 kpa', '2005-02-21', 15062, '2/21/2005', NULL), (15063, 2208, 'S/N 16018', 'Wykeham-Farrance Proving Ring', 'Range: 50 KN', '2005-02-21', 15063, '2/21/2005', NULL), (15064, 2209, '', 'JACKS DONE - EVERY 6 MONTHS ( May & November )', ' ***Shut down on Mondays***', '0000-00-00', 15064, '', NULL), (15065, 2210, '', '', '', '0000-00-00', 15065, '', NULL), (15066, 2211, '', '', '', '0000-00-00', 15066, '', NULL), (15067, 2212, '', 'Putting in archived database.', '', '0000-00-00', 15067, '', NULL), (15068, 2213, '', '', '', '0000-00-00', 15068, '', NULL), (15069, 2214, '', '', '', '0000-00-00', 15069, '', NULL), (15070, 2215, '', '', '', '0000-00-00', 15070, '', NULL), (15071, 2216, '', '', '', '0000-00-00', 15071, '', NULL), (15072, 2217, '', '', '', '0000-00-00', 15072, '', NULL), (15073, 2218, '', '', '', '0000-00-00', 15073, '', NULL), (15074, 2219, '', '', '', '0000-00-00', 15074, '', NULL), (15075, 2220, '', ' ***Need 24 Hour notice to have check ready***', '', '0000-00-00', 15075, '', NULL), (15076, 2221, '', '', '', '0000-00-00', 15076, '', NULL), (15077, 2222, 'S/N 07035BALA02002', ' w/ Horizontal Mdl SBA-1KLBA-I Load Cell', 'Range: 1K', '2010-04-01', 15077, '4/1/2010', NULL), (15078, 2223, '', '', '', '0000-00-00', 15078, '', NULL), (15079, 2224, '', '', '', '0000-00-00', 15079, '', NULL), (15080, 2225, '', '', '', '0000-00-00', 15080, '', NULL), (15081, 2226, '', '', '', '0000-00-00', 15081, '', NULL), (15082, 2227, '', '', '', '0000-00-00', 15082, '', NULL), (15083, 2228, '', '', '', '0000-00-00', 15083, '', NULL), (15084, 2229, '', 'Putting in archived database.', '', '0000-00-00', 15084, '', NULL), (15085, 2230, '', '', '', '0000-00-00', 15085, '', NULL), (15086, 2231, '', '', '', '0000-00-00', 15086, '', NULL), (15087, 2232, '', '', '', '0000-00-00', 15087, '', NULL), (15088, 2233, '', '', '', '0000-00-00', 15088, '', NULL), (15089, 2234, '', 'Putting in archived database.', '', '0000-00-00', 15089, '', NULL), (15090, 2235, '', '', '', '0000-00-00', 15090, '', NULL), (15091, 2236, '', '', '', '0000-00-00', 15091, '', NULL), (15092, 2237, '', '', '', '0000-00-00', 15092, '', NULL), (15093, 2238, '', '', '', '0000-00-00', 15093, '', NULL), (15094, 2239, 'S/N ', 'Ashcroft 1279 Duragauge Pressure Gauge (D-5720)', 'Range: 200 PSI', NULL, 15094, 'New', NULL), (15095, 2240, '', 'Putting in archived database.', '', '0000-00-00', 15095, '', NULL), (15096, 2241, '', '', '', '0000-00-00', 15096, '', NULL), (15097, 2242, 'S/N 152875', 'Tinius Olsen Torsion (CSI Does not Calibrate this type of equipment)', 'Range: 500 lbs/1K/5K/10K inch/lbs', NULL, 15097, 'New', NULL), (15098, 2243, '', '', '', '0000-00-00', 15098, '', NULL), (15099, 2244, '', '', '', '0000-00-00', 15099, '', NULL), (15100, 2245, '', '', '', '0000-00-00', 15100, '', NULL), (15101, 2246, '', '', '', '0000-00-00', 15101, '', NULL), (15102, 2247, '', '', '', '0000-00-00', 15102, '', NULL), (15103, 2248, '', '', '', '0000-00-00', 15103, '', NULL), (15104, 2249, 'S/N 25164', ' Chatillon Pull Tester DDP-50 (E-4)', 'Range: 50 lb.', '1998-04-29', 15104, '4/29/1998', NULL), (15105, 2250, 'S/N 134975', 'Tinius Olsen Recorder Model 51 (E83-00)', '3 Ranges .15/.075/.0375', '2002-01-31', 15105, '1/31/2002', NULL), (15106, 2251, '', 'Putting in archived database.', '', '0000-00-00', 15106, '', NULL), (15107, 2252, '', '', '', '0000-00-00', 15107, '', NULL), (15108, 2253, '', '', '', '0000-00-00', 15108, '', NULL), (15109, 2254, '', '', '', '0000-00-00', 15109, '', NULL), (15110, 2255, '', 'Putting in archived database.', '', '0000-00-00', 15110, '', NULL), (15111, 2256, '', 'Putting in archived database.', '', '0000-00-00', 15111, '', NULL), (15112, 2257, 'S/N PrR-3', 'Soiltest Single Proving Ring (OOS) (E-4 & Mans Spec)', '', '2007-03-20', 15112, '3/20/2007', NULL), (15113, 2258, '', '', '', '0000-00-00', 15113, '', NULL), (15114, 2259, '', '', '', '0000-00-00', 15114, '', NULL), (15115, 2260, '', '', '', '0000-00-00', 15115, '', NULL), (15116, 2261, '', 'Putting in archived database.', '', '0000-00-00', 15116, '', NULL), (15117, 2262, '', '', '', '0000-00-00', 15117, '', NULL), (15118, 2263, '', '', '', '0000-00-00', 15118, '', NULL), (15119, 2264, '', '', '', '0000-00-00', 15119, '', NULL), (15120, 2265, '', 'Send Certs to Jobsite', '', '0000-00-00', 15120, '', NULL), (15121, 2266, 'S/N AFG1A07', 'Pine Instrument Angle Sensor Jig (D-6027)', 'Range: 1 Inch', '2015-03-03', 15121, '3/3/2015', NULL), (15122, 2267, '', '', '', '0000-00-00', 15122, '', NULL), (15123, 2268, '', 'Putting in archived database.', '', '0000-00-00', 15123, '', NULL), (15124, 2269, '', 'Putting in archived database.', '', '0000-00-00', 15124, '', NULL), (15125, 2270, '', 'Putting in archived database.', '', '0000-00-00', 15125, '', NULL), (15126, 2271, '', '', '', '0000-00-00', 15126, '', NULL), (15127, 2272, '', '', '', '0000-00-00', 15127, '', NULL), (15128, 2273, '', 'Putting in archived database.', '', '0000-00-00', 15128, '', NULL), (15129, 2274, '', '', '', '0000-00-00', 15129, '', NULL), (15130, 2275, '', '', '', '0000-00-00', 15130, '', NULL), (15131, 2276, '', '', '', '0000-00-00', 15131, '', NULL), (15132, 2277, '', '', '', '0000-00-00', 15132, '', NULL), (15133, 2278, '', 'RESPOND. MULTIPLES CAUSES DELAYS.', '', '0000-00-00', 15133, '', NULL), (15134, 2279, '', '', '', '0000-00-00', 15134, '', NULL), (15135, 2280, '', '', '', '0000-00-00', 15135, '', NULL), (15136, 2281, 'S/N 801', 'MTS Extensometer Model 632-25E-20 (E-83)', '2\"GL, ID#EXT02', '2005-03-29', 15136, '3/29/2005', NULL), (15137, 2282, 'S/N 889217', 'with Interlaken Extensometer Model 3542-0100-005 ST (E-83)', '1\" GL, Range 50%, ID#25-EXT05', '2005-03-30', 15137, '3/30/2005', NULL), (15138, 2283, '', '', '', '0000-00-00', 15138, '', NULL), (15139, 2284, 'S/N 270/946.67', ' with Range Card', 'Range: 25K ID#25-LC06RC02', '0000-00-00', 15139, '', NULL), (15140, 2285, 'S/N 06684', 'Hercules Mdl HJS Prestress Jack (E-4 & PCI)', 'Range: 3K / 35K ', '2009-07-20', 15140, '7/20/2009', NULL), (15141, 2286, '', '', '', '0000-00-00', 15141, '', NULL), (15142, 2287, '', '', '', '0000-00-00', 15142, '', NULL), (15143, 2288, '', '', '', '0000-00-00', 15143, '', NULL), (15144, 2289, '', '', '', '0000-00-00', 15144, '', NULL), (15145, 2290, '', '', '', '0000-00-00', 15145, '', NULL), (15146, 2291, '', 'Putting in archived database.', '', '0000-00-00', 15146, '', NULL), (15147, 2292, 'S/N PFS-03', 'TIF Electronic Mdl. 9010A Scale (Moved) (E-898)', 'Range: 110 lbs ', '2010-04-13', 15147, '4/13/2010', NULL), (15148, 2293, '', ' *** Implemented Electronic Card Payables Program***', '', '0000-00-00', 15148, '', NULL), (15149, 2294, '', '', '', '0000-00-00', 15149, '', NULL), (15150, 2295, '', '', '', '0000-00-00', 15150, '', NULL), (15151, 2296, '', '', '', '0000-00-00', 15151, '', NULL), (15152, 2297, '', '', '', '0000-00-00', 15152, '', NULL), (15153, 2298, '', '', '', '0000-00-00', 15153, '', NULL), (15154, 2299, '', 'Putting in archived database.', '', '0000-00-00', 15154, '', NULL), (15155, 2300, '', '', '', '0000-00-00', 15155, '', NULL), (15156, 2301, '', '', '', '0000-00-00', 15156, '', NULL), (15157, 2302, '', '', '', '0000-00-00', 15157, '', NULL), (15158, 2303, '', '', '', '0000-00-00', 15158, '', NULL), (15159, 2304, '', '', '', '0000-00-00', 15159, '', NULL), (15160, 2305, '', '', '', '0000-00-00', 15160, '', NULL), (15161, 2306, '', '', '', '0000-00-00', 15161, '', NULL), (15162, 2307, '', '', '', '0000-00-00', 15162, '', NULL), (15163, 2308, '', '', '', '0000-00-00', 15163, '', NULL), (15164, 2309, '', '', '', '0000-00-00', 15164, '', NULL), (15165, 2310, '', '', '', '0000-00-00', 15165, '', NULL), (15166, 2311, '', '', '', '0000-00-00', 15166, '', NULL), (15167, 2312, 'S/N 189092', 'Artech Load Cell w/ Master Logger 200 (OUT OF SERVICE) (E-4) ', 'Cap: 2,000 lbs ', '2005-06-14', 15167, '6/14/2005', NULL), (15168, 2313, 'S/N Unknown', 'Thermoline NCAT Asphalt Content Tester (E-898)', 'Range: 5,000 Grams ', '2011-03-29', 15168, '3/29/2011', NULL), (15169, 2314, 'S/N 050668323', 'Humboldt BG2110-0-16 Dial Indicator OOS (D-6027)', 'Range: 1 inch ', '2009-06-10', 15169, '6/10/2009', NULL), (15170, 2315, '', '***Mail Certs to Bill To Address c/o William Dunn***', '', '0000-00-00', 15170, '', NULL), (15171, 2316, '', '', '', '0000-00-00', 15171, '', NULL), (15172, 2317, 'S/N 3610', ' w/United EZ 2-2 Extensometer - Channel #2 ', 'Range: 0.02 in/in (2\" GL) (E-83)', '2013-01-21', 15172, '1/21/2013', NULL), (15173, 2318, '', '', '', '0000-00-00', 15173, '', NULL), (15174, 2319, '', '', '', '0000-00-00', 15174, '', NULL), (15175, 2320, '', '', '', '0000-00-00', 15175, '', NULL), (15176, 2321, 'S/N H-0242', 'Soiltest C-220 Consolidation Machine (E-4 & Man Specs)', 'Range: 1/8 TSF to 16 TSF', '2010-05-13', 15176, '5/13/2010', NULL), (15177, 2322, '', 'e-mail Solitation Letter to sam.kimani@ebaengineering.com', '', '0000-00-00', 15177, '', NULL), (15178, 2323, '', 'Putting in archived database; OOS machines since 2010.', '', '0000-00-00', 15178, '', NULL), (15179, 2324, 'S/N 1093 (SOLD)', ' w/ Extensometer (E-83)', 'Range: 0.016 in/in (GL 1.4 Inch)', '2015-09-16', 15179, '9/16/2015', NULL), (15180, 2325, '', 'person ordering the services ', '', '0000-00-00', 15180, '', NULL), (15181, 2326, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 15181, '', NULL), (15182, 2327, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 15182, '', NULL), (15183, 2328, '', ' w/ Spare Gauge (E-4)', 'Range: 30K', '2010-08-03', 15183, '8/3/2010', NULL), (15184, 2329, '', '', '', '0000-00-00', 15184, '', NULL), (15185, 2330, '', '', '', '0000-00-00', 15185, '', NULL), (15186, 2331, '', '', '', '0000-00-00', 15186, '', NULL), (15187, 2332, '', '', '', '0000-00-00', 15187, '', NULL), (15188, 2333, '', 'Putting in archived database.', '', '0000-00-00', 15188, '', NULL), (15189, 2334, '', 'DO NOT EXCEPT FAXED INVOICES MUST E-MAIL', '', '0000-00-00', 15189, '', NULL), (15190, 2335, '', '', '', '0000-00-00', 15190, '', NULL), (15191, 2336, '', '', '', '0000-00-00', 15191, '', NULL), (15192, 2337, '', '', '', '0000-00-00', 15192, '', NULL), (15193, 2338, 'S/N FET 5K (A)', 'VMC Mdl.VC-210 Load Cell (E-4) ', 'Range: 5K (Tension Only)', '2010-01-13', 15193, '1/13/2010', NULL), (15194, 2339, '', '', '', '0000-00-00', 15194, '', NULL), (15195, 2340, '', 'The Bureau for Weights and Measures for Scales', '', '0000-00-00', 15195, '', NULL), (15196, 2341, '', '', '', '0000-00-00', 15196, '', NULL), (15197, 2342, '', '', '', '0000-00-00', 15197, '', NULL), (15198, 2343, '', '', '', '0000-00-00', 15198, '', NULL), (15199, 2344, '', '', '', '0000-00-00', 15199, '', NULL), (15200, 2345, '', '', '', '0000-00-00', 15200, '', NULL), (15201, 2346, '', '', '', '0000-00-00', 15201, '', NULL), (15202, 2347, '', '', '', '0000-00-00', 15202, '', NULL), (15203, 2348, '', '', '', '0000-00-00', 15203, '', NULL), (15204, 2349, '', '', '', '0000-00-00', 15204, '', NULL), (15205, 2350, '', '', '', '0000-00-00', 15205, '', NULL), (15206, 2351, '', '', '', '0000-00-00', 15206, '', NULL), (15207, 2352, '', '', '', '0000-00-00', 15207, '', NULL), (15208, 2353, '', '', '', '0000-00-00', 15208, '', NULL), (15209, 2354, '', '', '', '0000-00-00', 15209, '', NULL), (15210, 2355, '', '', '', '0000-00-00', 15210, '', NULL), (15211, 2356, '', 'Putting in archived database.', '', '0000-00-00', 15211, '', NULL), (15212, 2357, '', '', '', '0000-00-00', 15212, '', NULL), (15213, 2358, '', '', '', '0000-00-00', 15213, '', NULL), (15214, 2359, '', '', '', '0000-00-00', 15214, '', NULL), (15215, 2360, '', '', '', '0000-00-00', 15215, '', NULL), (15216, 2361, 'S/N E-79654', 'Epsilon Extensometer Model 3542-0200-025 (BROKE) (E-83)', 'Range: .0001 Inches to 0.5 inches', '2004-06-30', 15216, '6/30/2004', NULL), (15217, 2362, '', '', '', '0000-00-00', 15217, '', NULL), (15218, 2363, '', '', '', '0000-00-00', 15218, '', NULL), (15219, 2364, '', '', '', '0000-00-00', 15219, '', NULL), (15220, 2365, '', 'Must have Project managers name and project number', '', '0000-00-00', 15220, '', NULL), (15221, 2366, '', '', '', '0000-00-00', 15221, '', NULL), (15222, 2367, '', '', '', '0000-00-00', 15222, '', NULL), (15223, 2368, '', '', '', '0000-00-00', 15223, '', NULL), (15224, 2369, '', '', '', '0000-00-00', 15224, '', NULL), (15225, 2370, '', ' e-mail invoice to SSCAP@lehighhanson.com', 'only e-mail invoice don\'t mail original', '0000-00-00', 15225, '', NULL), (15226, 2371, '', '', '', '0000-00-00', 15226, '', NULL), (15227, 2372, '', '', '', '0000-00-00', 15227, '', NULL), (15228, 2373, '', '', '', '0000-00-00', 15228, '', NULL), (15229, 2374, '', '', '', '0000-00-00', 15229, '', NULL), (15230, 2375, '', 'Putting in archived database.', '', '0000-00-00', 15230, '', NULL), (15231, 2376, '', '', '', '0000-00-00', 15231, '', NULL), (15232, 2377, '', '', '', '0000-00-00', 15232, '', NULL), (15233, 2378, '', '', '', '0000-00-00', 15233, '', NULL), (15234, 2379, '', '', '', '0000-00-00', 15234, '', NULL), (15235, 2380, '', '', '', '0000-00-00', 15235, '', NULL), (15236, 2381, '', '', '', '0000-00-00', 15236, '', NULL), (15237, 2382, '', '', '', '0000-00-00', 15237, '', NULL), (15238, 2383, '', '', '', '0000-00-00', 15238, '', NULL), (15239, 2384, '', 'Send Certs to Billing Address', '', '0000-00-00', 15239, '', NULL), (15240, 2385, '', '', '', '0000-00-00', 15240, '', NULL), (15241, 2386, '', '', '', '0000-00-00', 15241, '', NULL), (15242, 2387, '', 'Prestressed Systems, Inc., PO Box 517, 4955 Walker Road, ', '', '0000-00-00', 15242, '', NULL), (15243, 2388, '', '', '', '0000-00-00', 15243, '', NULL), (15244, 2389, '', '', '', '0000-00-00', 15244, '', NULL), (15245, 2390, '', '', '', '0000-00-00', 15245, '', NULL), (15246, 2391, '', '', '', '0000-00-00', 15246, '', NULL), (15247, 2392, '', '', '', '0000-00-00', 15247, '', NULL), (15248, 2393, 'Frame 1', 'Soiltest Consolidation Machine w/ 2 frames (E-4 & 2%)', 'Range: 1/4 TSF to 16 TSF', '2015-10-07', 15248, '10/7/2015', NULL), (15249, 2394, 'S/N 625 / 176', 'BK Pressure Transducer E-124 w/ Digital E-410 Channel #4', 'Range: 150 PSI (D-5720)', '2015-10-07', 15249, '10/7/2015', NULL), (15250, 2395, '', '', '', '0000-00-00', 15250, '', NULL), (15251, 2396, 'S/N 346 / 1768', 'Durham Geo S-500 Pressure Transducer E-116 w/ Micron Dig. ', 'Range: 300 PSI (D-5720)', '2015-10-07', 15251, '10/7/2015', NULL), (15252, 2397, '', '', '', '0000-00-00', 15252, '', NULL), (15253, 2398, '', '', '', '0000-00-00', 15253, '', NULL), (15254, 2399, '', '', '', '0000-00-00', 15254, '', NULL), (15255, 2400, '', 'Putting in archived database.', '', '0000-00-00', 15255, '', NULL), (15256, 2401, 'S/N 63191', 'Forney LT-900-Precise Digital Compression Machine (E-4)', 'Range: 400,000 lbs (ID# CME6012)', '2016-08-08', 15256, '8/8/2016', NULL), (15257, 2402, '', '', '', '0000-00-00', 15257, '', NULL), (15258, 2403, 'S/N 3144 (ID#004120)', ' w/ Satec Model APEX II EMF Position Channel (E-2309)', 'Range: 0.5 Inch to 5 Inch', '2012-01-03', 15258, '1/3/2012', NULL), (15259, 2404, '', 'Send Certifications to: Job Site Address', '', '0000-00-00', 15259, '', NULL), (15260, 2405, 'S/N E-84406', ' w/ Epsilon 3542-0100-050-ST Extensometer (E-83)', 'Range: 0.5 in/in (GL 1 inch)', '2008-10-28', 15260, '10/28/2008', NULL), (15261, 2406, '', '', '', '0000-00-00', 15261, '', NULL), (15262, 2407, '', '', '', '0000-00-00', 15262, '', NULL), (15263, 2408, 'S/N 11840', 'Wykeham Farrance Mdl. 14170P Proving Ring (E-4 & Man Specs)', 'Cap: 2,250 lbs', '2006-08-01', 15263, '8/1/2006', NULL), (15264, 2409, '', '', '', '0000-00-00', 15264, '', NULL), (15265, 2410, '', 'Putting in archived database.', '', '0000-00-00', 15265, '', NULL), (15266, 2411, '', '', '', '0000-00-00', 15266, '', NULL), (15267, 2412, '', '', '', '0000-00-00', 15267, '', NULL), (15268, 2413, 'S/N 2001290', 'ELE 35-1475 Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 15268, '2/16/2011', NULL), (15269, 2414, '', '', '', '0000-00-00', 15269, '', NULL), (15270, 2415, '', '', '', '0000-00-00', 15270, '', NULL), (15271, 2416, '', '', '', '0000-00-00', 15271, '', NULL), (15272, 2417, '', '', '', '0000-00-00', 15272, '', NULL), (15273, 2418, '', '', '', '0000-00-00', 15273, '', NULL), (15274, 2419, '', '', '', '0000-00-00', 15274, '', NULL), (15275, 2420, '', '', '', '0000-00-00', 15275, '', NULL), (15276, 2421, '', '', '', '0000-00-00', 15276, '', NULL), (15277, 2422, '', '', '', '0000-00-00', 15277, '', NULL), (15278, 2423, '', '', '', '0000-00-00', 15278, '', NULL), (15279, 2424, '', '', '', '0000-00-00', 15279, '', NULL), (15280, 2425, '', '', '', '0000-00-00', 15280, '', NULL), (15281, 2426, '', '', '', '0000-00-00', 15281, '', NULL), (15282, 2427, '', '', '', '0000-00-00', 15282, '', NULL), (15283, 2428, '', '', '', '0000-00-00', 15283, '', NULL), (15284, 2429, 'S/N Unknown ', 'Soiltest Direct Shear Machine (E-4)', 'Range: 2lbs to 200 lbs (1KG to 90 KG)', '2009-01-21', 15284, '1/21/2009', NULL), (15285, 2430, '', '', '', '0000-00-00', 15285, '', NULL), (15286, 2431, '', '', '', '0000-00-00', 15286, '', NULL), (15287, 2432, '', '', '', '0000-00-00', 15287, '', NULL), (15288, 2433, '', '', '', '0000-00-00', 15288, '', NULL), (15289, 2434, 'S/N 00120', 'Forney F-40F-DFM/1 Digital Compression Machine (E-4)', 'Range: 4K to 400K ', '2005-11-17', 15289, '11/17/2005', NULL), (15290, 2435, '', '**MUST ASK whoever makes the arrangements for the work to be', '', '0000-00-00', 15290, '', NULL), (15291, 2436, '', '', '', '0000-00-00', 15291, '', NULL), (15292, 2437, '', '', '', '0000-00-00', 15292, '', NULL), (15293, 2438, '', '', '', '0000-00-00', 15293, '', NULL), (15294, 2439, '', ' Send Certs to Jobsite', '', '0000-00-00', 15294, '', NULL), (15295, 2440, '', '', '', '0000-00-00', 15295, '', NULL), (15296, 2441, '', '', '', '0000-00-00', 15296, '', NULL), (15297, 2442, '', '', '', '0000-00-00', 15297, '', NULL), (15298, 2443, '', '', '', '0000-00-00', 15298, '', NULL), (15299, 2444, '', '', '', '0000-00-00', 15299, '', NULL), (15300, 2445, '', '', '', '0000-00-00', 15300, '', NULL), (15301, 2446, 'S/N Unknown', 'Tinius Olsen Beam Machine (E-4) (OUT OF SERVICE) (SOLD)', 'Range: 1K to 100K', '2004-08-30', 15301, '8/30/2004', NULL), (15302, 2447, '', '', '', '0000-00-00', 15302, '', NULL), (15303, 2448, '', 'threads chased', '', '0000-00-00', 15303, '', NULL), (15304, 2449, '', '', '', '0000-00-00', 15304, '', NULL), (15305, 2450, '', '', '', '0000-00-00', 15305, '', NULL), (15306, 2451, '', '', '', '0000-00-00', 15306, '', NULL), (15307, 2452, '', '', '', '0000-00-00', 15307, '', NULL), (15308, 2453, '', '', '', '0000-00-00', 15308, '', NULL), (15309, 2454, '', '', '', '0000-00-00', 15309, '', NULL), (15310, 2455, '', '', '', '0000-00-00', 15310, '', NULL), (15311, 2456, '', '', '', '0000-00-00', 15311, '', NULL), (15312, 2457, '', '', '', '0000-00-00', 15312, '', NULL), (15313, 2458, '', '', '', '0000-00-00', 15313, '', NULL), (15314, 2459, '', '', '', '0000-00-00', 15314, '', NULL), (15315, 2460, '', '', '', '0000-00-00', 15315, '', NULL), (15316, 2461, '', ' w/ Plus / Minus X Axis ', 'Range: -2.25 to +2.25', '2012-03-13', 15316, '3/13/2012', NULL), (15317, 2462, 'S/N 8580-112380', 'Instron Biaxial Inplane (E-4)', '', '2012-03-12', 15317, '3/12/2012', NULL), (15318, 2463, '', '', '', '0000-00-00', 15318, '', NULL), (15319, 2464, '', '', '', '0000-00-00', 15319, '', NULL), (15320, 2465, 'S/N Ram 5', ' w/ Simplex Ram ', 'Range: 10K (9,000 PSI)', '2011-06-29', 15320, '6/29/2011', NULL), (15321, 2466, '', '', 'Putting in archived database.', '0000-00-00', 15321, '', NULL), (15322, 2467, '', '', '', '0000-00-00', 15322, '', NULL), (15323, 2468, '', '', '', '0000-00-00', 15323, '', NULL), (15324, 2469, '', '', '', '0000-00-00', 15324, '', NULL), (15325, 2470, '', '', '', '0000-00-00', 15325, '', NULL), (15326, 2471, '', '', '', '0000-00-00', 15326, '', NULL), (15327, 2472, '', '', '', '0000-00-00', 15327, '', NULL), (15328, 2473, 'S/N JQN140', 'Mitutoya Mdl. 2416S Dial Indicator (D-6027)', 'Range: 1 inch ', '2008-07-11', 15328, '7/11/2008', NULL), (15329, 2474, 'S/N TM-0104-1', ' w/ Forney Swell LVDT (D-6027)', 'Range: 0.02 inches ', '2010-01-14', 15329, '1/14/2010', NULL), (15330, 2475, '', '', '', '0000-00-00', 15330, '', NULL), (15331, 2476, '', '', '', '0000-00-00', 15331, '', NULL), (15332, 2477, '', '', 'Putting in archived database.', '0000-00-00', 15332, '', NULL), (15333, 2478, '', '', '', '0000-00-00', 15333, '', NULL), (15334, 2479, '', '', '', '0000-00-00', 15334, '', NULL), (15335, 2480, 'S/N 8442', 'Soiltest Unconfined T & C Double Proving Ring (E-4 & Man Specs)', 'Range: 500 lbs (Compression Only) ', '2011-10-18', 15335, '10/18/2011', NULL), (15336, 2481, '', ' w/Boart Longyear Pressure Transducer (D-5720)', 'Range: 100 PSI', '2007-10-24', 15336, '10/24/2007', NULL), (15337, 2482, '', '', '', '0000-00-00', 15337, '', NULL), (15338, 2483, 'S/N 17124', 'Riehle Beam Machine (OOS) (E-4)', 'Range: 30K', '2006-05-31', 15338, '5/31/2006', NULL), (15339, 2484, 'S/N 17', 'Mercer Dial Indicator (OOS) (D-6027)', 'Range: 0.2 Inches', '2006-06-01', 15339, '6/1/2006', NULL), (15340, 2485, 'S/N 941959658', 'CDI Dial Indicator Model DPX1000 (D-6027)', 'Range: 2 inches (Done at HC Nut. Shop)', '2005-05-31', 15340, '5/31/2005', NULL), (15341, 2486, '', '', '', '0000-00-00', 15341, '', NULL), (15342, 2487, '', '', 'Putting in archived database.', '0000-00-00', 15342, '', NULL), (15343, 2488, '', '', '', '0000-00-00', 15343, '', NULL), (15344, 2489, '', '', '', '0000-00-00', 15344, '', NULL), (15345, 2490, '', '', '', '0000-00-00', 15345, '', NULL), (15346, 2491, 'S/N 578232', 'ELE Pressure Transducer--Channel# 13 (D-5720)', 'Range: 150 psi', '2008-11-18', 15346, '11/18/2008', NULL), (15347, 2492, 'S/N M848560-21', 'ELE LVDT-Channel 15 (D-6027)', 'Range: 1 inch', '2008-11-17', 15347, '11/17/2008', NULL), (15348, 2493, 'S/N 110172-3', 'Wykeham Farrance Mdl. 24251 Deflection Frame #1/Channel 17 ', 'Range: 1/4 TSF to 16 TSF ', '2009-01-21', 15348, '1/21/2009', NULL), (15349, 2494, '', '', '', '0000-00-00', 15349, '', NULL), (15350, 2495, '', '', '', '0000-00-00', 15350, '', NULL), (15351, 2496, '', '', '', '0000-00-00', 15351, '', NULL), (15352, 2497, '', '', '', '0000-00-00', 15352, '', NULL), (15353, 2498, '', '', '', '0000-00-00', 15353, '', NULL), (15354, 2499, '', '', '', '0000-00-00', 15354, '', NULL), (15355, 2500, '', '', '', '0000-00-00', 15355, '', NULL), (15356, 2501, '', '', '', '0000-00-00', 15356, '', NULL), (15357, 2502, '', '', '', '0000-00-00', 15357, '', NULL), (15358, 2503, '', '', '', '0000-00-00', 15358, '', NULL), (15359, 2504, '', '', '', '0000-00-00', 15359, '', NULL), (15360, 2505, '', '', '', '0000-00-00', 15360, '', NULL), (15361, 2506, 'S/N 38734', 'HCS Hydraulic Load Cell OOS (E-4 & 2%) (NC#10)', 'Range: 5K to 50K-Gauge #53,54', '2008-01-29', 15361, '1/29/2008', NULL), (15362, 2507, '', '', '', '0000-00-00', 15362, '', NULL), (15363, 2508, 'S/N 803481', ' w/ Shear Displacement (D-6027)', 'Range: 0.1 inch to 1.0 inch', '2006-09-12', 15363, '9/12/2006', NULL), (15364, 2509, 'S/N 1155-9-18550', ' 28 Kn Proving Ring', 'L Cap: 6000#', '0000-00-00', 15364, '', NULL), (15365, 2510, '', '', '', '0000-00-00', 15365, '', NULL), (15366, 2511, 'S/N 7951', 'Stressing Jack Hercules HSJ', 'Range: Pre. 5,000 lbs / Final 60,000 lbs', '2013-01-03', 15366, '1/3/2013', NULL), (15367, 2512, '', '', 'Putting in archived database.', '0000-00-00', 15367, '', NULL), (15368, 2513, '', '', '', '0000-00-00', 15368, '', NULL), (15369, 2514, '', '', '', '0000-00-00', 15369, '', NULL), (15370, 2515, '', '', '', '0000-00-00', 15370, '', NULL), (15371, 2516, '', '', '', '0000-00-00', 15371, '', NULL), (15372, 2517, '', '', '', '0000-00-00', 15372, '', NULL), (15373, 2518, '', '', '', '0000-00-00', 15373, '', NULL), (15374, 2519, 'S/N 80002019', 'Com-Ten Universal Testing Machine (E-4)', 'Range: 20 lbs. to 400 lbs.', '2005-11-08', 15374, '11/8/2005', NULL), (15375, 2520, '', '', '', '0000-00-00', 15375, '', NULL), (15376, 2521, '', '', '', '0000-00-00', 15376, '', NULL), (15377, 2522, '', '', '', '0000-00-00', 15377, '', NULL), (15378, 2523, '', '', '', '0000-00-00', 15378, '', NULL), (15379, 2524, '', '', '', '0000-00-00', 15379, '', NULL), (15380, 2525, '', '', '', '0000-00-00', 15380, '', NULL), (15381, 2526, '', '', '', '0000-00-00', 15381, '', NULL), (15382, 2527, '', '', '', '0000-00-00', 15382, '', NULL), (15383, 2528, '', '', '', '0000-00-00', 15383, '', NULL), (15384, 2529, '', '', '', '0000-00-00', 15384, '', NULL), (15385, 2530, '', '', '', '0000-00-00', 15385, '', NULL), (15386, 2531, '', '', '', '0000-00-00', 15386, '', NULL), (15387, 2532, '', '', '', '0000-00-00', 15387, '', NULL), (15388, 2533, '', '', '', '0000-00-00', 15388, '', NULL), (15389, 2534, '', '', '', '0000-00-00', 15389, '', NULL), (15390, 2535, '', '', '', '0000-00-00', 15390, '', NULL), (15391, 2536, '', '', '', '0000-00-00', 15391, '', NULL), (15392, 2537, 'S/N Unknown ', 'Ohaus 700 Series Triple Beam Balance Scale (E-898)', 'Range: 5 Grams to 2,610 Grams ', '2012-01-25', 15392, '1/25/2012', NULL), (15393, 2538, 'S/N AE40112706', 'Adam CPW Plus-75 Scale ID# Q2787', 'Range: 165 lbs', '2016-01-19', 15393, '1/19/2016', NULL), (15394, 2539, 'S/N G198', 'Fowler Caliper ID # RKEP-1201 (Man Specs)', 'Range :12\"', '2014-02-04', 15394, '2/4/2014', NULL), (15395, 2540, '', '', '', '0000-00-00', 15395, '', NULL), (15396, 2541, '', '**Hide credit card fee in calibration cost on invoice**', '', '0000-00-00', 15396, '', NULL), (15397, 2542, '', '', '', '0000-00-00', 15397, '', NULL), (15398, 2543, '', '', '', '0000-00-00', 15398, '', NULL), (15399, 2544, '', '', '', '0000-00-00', 15399, '', NULL), (15400, 2545, '', '', '', '0000-00-00', 15400, '', NULL), (15401, 2546, '', '', '', '0000-00-00', 15401, '', NULL), (15402, 2547, '', '', '', '0000-00-00', 15402, '', NULL), (15403, 2548, '', '', '', '0000-00-00', 15403, '', NULL), (15404, 2549, '', '', '', '0000-00-00', 15404, '', NULL), (15405, 2550, '', '', '', '0000-00-00', 15405, '', NULL), (15406, 2551, '', '', '', '0000-00-00', 15406, '', NULL), (15407, 2552, '', '', '', '0000-00-00', 15407, '', NULL), (15408, 2553, 'S/N 60BTE-1028', 'Satec BTE Compression Machine (E-4)', 'Range: 60K ', NULL, 15408, 'New', NULL), (15409, 2554, '', 'Send Certs to Billing', '', '0000-00-00', 15409, '', NULL), (15410, 2555, '', '', '', '0000-00-00', 15410, '', NULL), (15411, 2556, '', '', '', '0000-00-00', 15411, '', NULL), (15412, 2557, '', '', '', '0000-00-00', 15412, '', NULL), (15413, 2558, '', '', '', '0000-00-00', 15413, '', NULL), (15414, 2559, '', 'No power at machines - Need long ext.cords & their long ext. cord', '', '0000-00-00', 15414, '', NULL), (15415, 2560, '', '', '', '0000-00-00', 15415, '', NULL), (15416, 2561, '', '', '', '0000-00-00', 15416, '', NULL), (15417, 2562, '', '', '', '0000-00-00', 15417, '', NULL), (15418, 2563, '', '', '', '0000-00-00', 15418, '', NULL), (15419, 2564, 'S/N', 'ELE Tri-Flex Master Control Panel Pressure & Vacuum (Man Specs)', 'Range: ', NULL, 15419, 'New', NULL), (15420, 2565, '', '', '', '0000-00-00', 15420, '', NULL), (15421, 2566, '', '', '', '0000-00-00', 15421, '', NULL), (15422, 2567, '', '', '', '0000-00-00', 15422, '', NULL), (15423, 2568, '', '', '', '0000-00-00', 15423, '', NULL), (15424, 2569, 'S/N C', 'Soiltest Consolidation Machine (E-4 & Man Specs) (OOS) ', 'Range: 1/8 TSF to 16 TSF (ASSHTO)', '2015-04-28', 15424, '4/28/2015', NULL), (15425, 2570, '', '', '', '0000-00-00', 15425, '', NULL), (15426, 2571, '', '', '', '0000-00-00', 15426, '', NULL), (15427, 1, '', '', ' ', '0000-00-00', 15427, ' ', NULL), (15428, 2, '', '', '', '0000-00-00', 15428, '', NULL), (15429, 3, '', '', '', '0000-00-00', 15429, '', NULL), (15430, 4, '$0.00 ', '2/23/2012', ' w/ Displacement', NULL, 15430, 'Range: 2K ', NULL), (15431, 5, '$154.00 ', '1/5/2007', ' W/ E-400 Digital (E-4)', NULL, 15431, 'Range: 5K', NULL), (15432, 6, '', '', '', '0000-00-00', 15432, '', NULL), (15433, 7, '', '', '', '0000-00-00', 15433, '', NULL), (15434, 8, '$204.00 ', '5/8/2013', 'Enerpac RCH121H 12 Ton Ram w/ Wika 2,000 PSI Gauge', NULL, 15434, 'Range: 120K ', NULL), (15435, 9, '', '', '', '0000-00-00', 15435, '', NULL), (15436, 10, '$175.00 ', '11/19/2008', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp', NULL, 15436, 'Range: 20 Ton ', NULL), (15437, 11, '', '', '', '0000-00-00', 15437, '', NULL), (15438, 12, '', '', '', '0000-00-00', 15438, '', NULL), (15439, 13, '', '', '', '0000-00-00', 15439, '', NULL), (15440, 14, '', '', '', '0000-00-00', 15440, '', NULL), (15441, 15, '$144.00 ', '5/13/2013', ' w/ Humboldt Load Cell Cha', NULL, 15441, 'Range: 5K', NULL), (15442, 16, '', '', ' ***Facility not manned at', '0000-00-00', 15442, '', NULL), (15443, 17, '', '', '', '0000-00-00', 15443, '', NULL), (15444, 18, '', '', '', '0000-00-00', 15444, '', NULL), (15445, 19, '', '5/14/2007', 'Transducer Techniques Mdl. SSI Load Cell Model LBO', NULL, 15445, 'Used with above load cell', NULL), (15446, 20, '', '', '', '0000-00-00', 15446, '', NULL), (15447, 21, '', '', '', '0000-00-00', 15447, '', NULL), (15448, 22, '', '', 'Send Soliciation letter to Craig Mays 606-435-1022', '0000-00-00', 15448, '', NULL), (15449, 23, '', '', '', '0000-00-00', 15449, '', NULL), (15450, 24, '', '', '', '0000-00-00', 15450, '', NULL), (15451, 25, '', '', '', '0000-00-00', 15451, '', NULL), (15452, 26, '', '', ' *Send Certs to Billing Address**', '0000-00-00', 15452, '', NULL), (15453, 27, '', '', '', '0000-00-00', 15453, '', NULL), (15454, 28, '', '', '', '0000-00-00', 15454, '', NULL), (15455, 29, '', '', '', '0000-00-00', 15455, '', NULL), (15456, 30, '', '', '', '0000-00-00', 15456, '', NULL), (15457, 31, '', '', '', '0000-00-00', 15457, '', NULL), (15458, 32, '', '', '', '0000-00-00', 15458, '', NULL), (15459, 33, '', '', '', '0000-00-00', 15459, '', NULL), (15460, 34, '', '', '', '0000-00-00', 15460, '', NULL), (15461, 35, '', '', '', '0000-00-00', 15461, '', NULL), (15462, 36, '', '', '', '0000-00-00', 15462, '', NULL), (15463, 37, '', '', 'Required 1 hour safety training on site ', '0000-00-00', 15463, '', NULL), (15464, 38, '', '', 'ADMET Universal Testing Machine 0403301 ', '0000-00-00', 15464, '', NULL), (15465, 39, '', '', '', '0000-00-00', 15465, '', NULL), (15466, 40, '', '', '', '0000-00-00', 15466, '', NULL), (15467, 41, '', '', ' Send Certs to Job Site', '0000-00-00', 15467, '', NULL), (15468, 42, '', '', '', '0000-00-00', 15468, '', NULL), (15469, 43, '', '', '', '0000-00-00', 15469, '', NULL), (15470, 44, '', '', '', '0000-00-00', 15470, '', NULL), (15471, 45, '', '', '', '0000-00-00', 15471, '', NULL), (15472, 46, '', '', '', '0000-00-00', 15472, '', NULL), (15473, 47, '', '', '', '0000-00-00', 15473, '', NULL), (15474, 48, '', '', '', '0000-00-00', 15474, '', NULL), (15475, 49, '', '', '', '0000-00-00', 15475, '', NULL), (15476, 50, '', '', '', '0000-00-00', 15476, '', NULL), (15477, 51, '', '', '', '0000-00-00', 15477, '', NULL), (15478, 52, '', '', '', '0000-00-00', 15478, '', NULL), (15479, 53, '$124.00 ', '10/10/2006', '', NULL, 15479, 'Cap: 150 psi #1', NULL), (15480, 54, '', '', '', '0000-00-00', 15480, '', NULL), (15481, 55, '', '', ' ***ISO Re', '0000-00-00', 15481, '', NULL), (15482, 56, '$204.00 ', '6/10/2013', ' w/ 10,000 PSI Ga', NULL, 15482, 'Range: 1120 lbs (E-4 P', NULL), (15483, 57, '', '', '', '0000-00-00', 15483, '', NULL), (15484, 58, '', '', '', '0000-00-00', 15484, '', NULL), (15485, 59, '', '', 'Only need to do .5 to 16\" auto range next year', '0000-00-00', 15485, '', NULL), (15486, 60, '$144.00 ', '11/27/2012', 'CAS Mdl. SBA-10KLB-I Load Cell ', NULL, 15486, 'Range: 2 inches', NULL), (15487, 61, '$104.00 ', '11/27/2012', 'CDI LG2110 Dial Indicator ', NULL, 15487, 'Range: 1 Inch', NULL), (15488, 62, '$144.00 ', '11/29/2012', '', NULL, 15488, 'Range: 4.5 KN to 45 KN', NULL), (15489, 63, '', '', '', '0000-00-00', 15489, '', NULL), (15490, 64, '', '', '', '0000-00-00', 15490, '', NULL), (15491, 65, '', '', '', '0000-00-00', 15491, '', NULL), (15492, 66, '', '', '', '0000-00-00', 15492, '', NULL), (15493, 67, '', '', '', '0000-00-00', 15493, '', NULL), (15494, 68, '$35.00 ', '11/20/2008', 'Marshalltown Gauge ', NULL, 15494, 'Range: 35 in H20', NULL), (15495, 69, '', '', '', '0000-00-00', 15495, '', NULL), (15496, 70, '', '', '', '0000-00-00', 15496, '', NULL), (15497, 71, '', '', '', '0000-00-00', 15497, '', NULL), (15498, 72, '', '', '', '0000-00-00', 15498, '', NULL), (15499, 73, '', '', '', '0000-00-00', 15499, '', NULL), (15500, 74, '', '', '', '0000-00-00', 15500, '', NULL), (15501, 75, '', '', '', '0000-00-00', 15501, '', NULL), (15502, 76, '', '', '', '0000-00-00', 15502, '', NULL), (15503, 77, '', '', '', '0000-00-00', 15503, '', NULL), (15504, 78, '', '', '', '0000-00-00', 15504, '', NULL), (15505, 79, '', '', '', '0000-00-00', 15505, '', NULL), (15506, 80, '', '', '', '0000-00-00', 15506, '', NULL), (15507, 81, '', '', '', '0000-00-00', 15507, '', NULL), (15508, 82, '$85.00 ', '1/22/2013', '', NULL, 15508, 'Range: 1lb to 110 lbs', NULL), (15509, 83, '', '', '', '0000-00-00', 15509, '', NULL), (15510, 84, '', '', '', '0000-00-00', 15510, '', NULL), (15511, 85, '', '', '', '0000-00-00', 15511, '', NULL), (15512, 86, '', '', '', '0000-00-00', 15512, '', NULL), (15513, 87, '', '', '', '0000-00-00', 15513, '', NULL), (15514, 88, '', '', '', '0000-00-00', 15514, '', NULL), (15515, 89, '', '', '', '0000-00-00', 15515, '', NULL), (15516, 90, '', '', '', '0000-00-00', 15516, '', NULL), (15517, 91, '$124.00 ', '11/17/2008', 'ELE Pressure Transducer--Channel# 8 (D-', NULL, 15517, 'Range: 150 psi', NULL), (15518, 92, '$124.00 ', '11/17/2008', '', NULL, 15518, 'Range: 1 inch', NULL), (15519, 93, '', '', '', '0000-00-00', 15519, '', NULL), (15520, 94, '', '', '', '0000-00-00', 15520, '', NULL), (15521, 95, '', '', '', '0000-00-00', 15521, '', NULL), (15522, 96, '', '', '', '0000-00-00', 15522, '', NULL), (15523, 97, '', '', '', '0000-00-00', 15523, '', NULL), (15524, 98, '', '', '', '0000-00-00', 15524, '', NULL), (15525, 99, '', '', '', '0000-00-00', 15525, '', NULL), (15526, 100, '', '', 'Not there on Friday\'s ', '0000-00-00', 15526, '', NULL), (15527, 101, '', '', '', '0000-00-00', 15527, '', NULL), (15528, 102, '', '', '', '0000-00-00', 15528, '', NULL), (15529, 103, '', '', '', '0000-00-00', 15529, '', NULL), (15530, 104, '', '', '', '0000-00-00', 15530, '', NULL), (15531, 105, '', '', '', '0000-00-00', 15531, ' ', NULL), (15532, 106, '', '', 'is corroded. Need to put new connectors on and put', '0000-00-00', 15532, '', NULL), (15533, 107, '', '', '', '0000-00-00', 15533, '', NULL), (15534, 108, '$144.00 ', '3/21/2013', 'Humboldt H-4454 Single Proving Ring (E-4 &', NULL, 15534, 'Range: 2K', NULL), (15535, 109, '$104.00 ', '4/21/2009', 'Testmark Model CM4005-1G Digital Compression Mach', NULL, 15535, 'Range: 1 inch', NULL), (15536, 110, '', '', ' Certs sent to Job Site c/', '0000-00-00', 15536, '', NULL), (15537, 111, '', '', ' \"***ISO Requested*', '0000-00-00', 15537, '', NULL), (15538, 112, '', '', ' ***Safety instruction & form i', '0000-00-00', 15538, '', NULL), (15539, 113, '', '', '', '0000-00-00', 15539, '', NULL), (15540, 114, '', '', '', '0000-00-00', 15540, '', NULL), (15541, 115, '', '', '', '0000-00-00', 15541, '', NULL), (15542, 116, '', '', '***QA Manual Required*** ***Nuclear***', '0000-00-00', 15542, '', NULL), (15543, 117, '', '', '', '0000-00-00', 15543, '', NULL), (15544, 118, '', '', '', '0000-00-00', 15544, '', NULL), (15545, 119, '', '', '', '0000-00-00', 15545, '', NULL), (15546, 120, '', '', '', '0000-00-00', 15546, '', NULL), (15547, 121, '$154.00 ', '6/12/2006', 'Strainsert Digital with Load Cell Model PC-40 (105', NULL, 15547, 'Range: 28K/35K', NULL), (15548, 122, '', '', '', '0000-00-00', 15548, '', NULL), (15549, 123, '', '', '', '0000-00-00', 15549, '', NULL), (15550, 124, '', '', '', '0000-00-00', 15550, '', NULL), (15551, 125, '', '', 'All Invoices must have an ECS project number of th', '0000-00-00', 15551, '', NULL), (15552, 126, '', '', '', '0000-00-00', 15552, '', NULL), (15553, 127, '$175.00 ', 'New', 'Eilon Engineering RON 2501 S-30 Load Cell (Ma', NULL, 15553, 'Range: 30 Tons', NULL), (15554, 128, '', '', '', '0000-00-00', 15554, '', NULL), (15555, 129, '', '', '', '0000-00-00', 15555, '', NULL), (15556, 130, '$288.00 ', '', '', '0000-00-00', 15556, '', NULL), (15557, 131, '', '', '', '0000-00-00', 15557, '', NULL), (15558, 132, '', '', '', '0000-00-00', 15558, '', NULL), (15559, 133, '', '', 'Omega LC1100 (OOS)', '0000-00-00', 15559, '', NULL), (15560, 134, '', '', '', '0000-00-00', 15560, '', NULL), (15561, 135, '', '', '', '0000-00-00', 15561, '', NULL), (15562, 136, '', '', '', '0000-00-00', 15562, '', NULL), (15563, 137, '', '', '', '0000-00-00', 15563, '', NULL), (15564, 138, '', '', '', '0000-00-00', 15564, '', NULL), (15565, 139, '', '', '', '0000-00-00', 15565, '', NULL), (15566, 140, '', '', '', '0000-00-00', 15566, '', NULL), (15567, 141, '', '', '***Mail certs to billing address***', '0000-00-00', 15567, '', NULL), (15568, 142, '', '', '', '0000-00-00', 15568, '', NULL), (15569, 143, '', '', '', '0000-00-00', 15569, '', NULL), (15570, 144, '', '', '', '0000-00-00', 15570, '', NULL), (15571, 145, '', '', '', '0000-00-00', 15571, '', NULL), (15572, 146, '', '', '', '0000-00-00', 15572, '', NULL), (15573, 147, '', '', '', '0000-00-00', 15573, '', NULL), (15574, 148, '', '', ' *** 2 Year Cali', '0000-00-00', 15574, '', NULL), (15575, 149, '', '', '', '0000-00-00', 15575, '', NULL), (15576, 150, '', '', '', '0000-00-00', 15576, '', NULL), (15577, 151, '$144.00 ', '5/17/2004', 'Soiltest Mdl. MC221 Consolidation Machine (E-4 ', NULL, 15577, 'Cap: 1,500 lbs', NULL), (15578, 152, '', '', '', '0000-00-00', 15578, '', NULL), (15579, 153, '', '', '', '0000-00-00', 15579, '', NULL), (15580, 154, '', '', '', '0000-00-00', 15580, '', NULL), (15581, 155, '', '', '', '0000-00-00', 15581, '', NULL), (15582, 156, '', '', '', '0000-00-00', 15582, '', NULL), (15583, 157, '', '', '', '0000-00-00', 15583, '', NULL), (15584, 158, '', '', '', '0000-00-00', 15584, '', NULL), (15585, 159, '', '', '', '0000-00-00', 15585, '', NULL), (15586, 160, '$144.00 ', '6/10/2008', 'Geotac Pressure Transducer ', NULL, 15586, 'Range: 200 psi ', NULL), (15587, 161, '', '', '', NULL, 15587, '412-767-4861 Fax', NULL), (15588, 162, '', '', '***Client has test stands for Ametek & Chatillon F', NULL, 15588, ' ***Send ', NULL), (15589, 163, '', '', '', '0000-00-00', 15589, '', NULL), (15590, 164, '', '', '', '0000-00-00', 15590, '', NULL), (15591, 165, '$144.00 ', '7/19/2011', 'HCS Hydraulic Load Cell ', NULL, 15591, 'Range: 40K', NULL), (15592, 166, '$175.00 ', '7/18/2008', 'Eilon Engineering RON 2501 S-15 Load Cell (M', NULL, 15592, 'Range:50Metric Tons(AFOO ', NULL), (15593, 167, '', '', 'Springfield, NJ 07081 973-467-4645', '0000-00-00', 15593, '', NULL), (15594, 168, '', '', '', '0000-00-00', 15594, '', NULL), (15595, 169, '$104.00 ', '8/13/2008', 'Fowler Mdl. 52-520-210-0 Dial Indicator ', NULL, 15595, 'Range: 2 inch ', NULL), (15596, 170, '', '', '', '0000-00-00', 15596, '', NULL), (15597, 171, '$125.00 ', '7/23/2009', 'VSL Bond Tester (Corporate) ', NULL, 15597, 'Range: 300 lbs to 3,000 ', NULL), (15598, 172, '', '', '', '0000-00-00', 15598, '', NULL), (15599, 173, '', '', '', '0000-00-00', 15599, '', NULL), (15600, 174, '', '', ' Send Certs to Billing', '0000-00-00', 15600, '', NULL), (15601, 175, '$104.00 ', '8/21/2013', 'Humboldt H4460 Dial Indicator ', NULL, 15601, 'Range: 2 inch', NULL), (15602, 176, '', '', '', '0000-00-00', 15602, '', NULL), (15603, 177, '', '', '', '0000-00-00', 15603, '', NULL), (15604, 178, '', '', '', '0000-00-00', 15604, '', NULL), (15605, 179, '', '', '***Client is responsible for all duties, work perm', '0000-00-00', 15605, '', NULL), (15606, 180, '', 'New', '', NULL, 15606, 'Range: 60K', NULL), (15607, 181, '', '', '', '0000-00-00', 15607, '', NULL), (15608, 182, '', '', '', '0000-00-00', 15608, '', NULL), (15609, 183, '', '', '', '0000-00-00', 15609, '', NULL), (15610, 184, '', '', '', '0000-00-00', 15610, '', NULL), (15611, 185, '', '', '', '0000-00-00', 15611, '', NULL), (15612, 186, '', '', '', '0000-00-00', 15612, '', NULL), (15613, 187, '', '', '', '0000-00-00', 15613, '', NULL), (15614, 188, '', '', '', '0000-00-00', 15614, '', NULL), (15615, 189, '', '', '', '0000-00-00', 15615, '', NULL), (15616, 190, '', '', '', '0000-00-00', 15616, '', NULL), (15617, 191, '$144.00 ', '2/14/2012', ' w/ Humboldt Load Cell ', NULL, 15617, 'Range: 2 inches (50 mm)', NULL), (15618, 192, '', '', '', '0000-00-00', 15618, '', NULL), (15619, 193, '$144.00 ', '10/16/2012', '', NULL, 15619, 'Range: 0.5 inch', NULL), (15620, 194, '', '', '', '0000-00-00', 15620, '', NULL), (15621, 195, '', '', '', '0000-00-00', 15621, '', NULL), (15622, 196, '', '', '', '0000-00-00', 15622, '', NULL), (15623, 197, '', '', '', '0000-00-00', 15623, '', NULL), (15624, 198, '', '', '', '0000-00-00', 15624, '', NULL), (15625, 199, '', '', '', '0000-00-00', 15625, '', NULL), (15626, 200, '', '12/5/2007', 'Extra Load Cell PSP5000 (OOS) ', NULL, 15626, 'Range: 400 lbs', NULL), (15627, 201, '', '', '', '0000-00-00', 15627, '', NULL), (15628, 202, '', '', '', '0000-00-00', 15628, '', NULL), (15629, 203, '', '', '', '0000-00-00', 15629, '', NULL), (15630, 204, '', '', '', '0000-00-00', 15630, '', NULL), (15631, 205, '', '', '', '0000-00-00', 15631, '', NULL), (15632, 206, '', '', '', '0000-00-00', 15632, '', NULL), (15633, 207, '', '', '', '0000-00-00', 15633, '', NULL), (15634, 208, '', '', '', '0000-00-00', 15634, '', NULL), (15635, 209, '', '', '', '0000-00-00', 15635, '', NULL), (15636, 210, '', '', '', '0000-00-00', 15636, '', NULL), (15637, 211, '', '', '', '0000-00-00', 15637, '', NULL), (15638, 212, '', '', '', '0000-00-00', 15638, '', NULL), (15639, 213, '', '', '', '0000-00-00', 15639, '', NULL), (15640, 214, '', '', '', '0000-00-00', 15640, '', NULL), (15641, 215, '$149.00 ', '2/11/2004', 'Vega 3B Universal Testing Machine ', '0000-00-00', 15641, '', NULL), (15642, 216, '', '', '', '0000-00-00', 15642, '', NULL), (15643, 217, '', '', '', '0000-00-00', 15643, '', NULL), (15644, 218, '', '', '', '0000-00-00', 15644, '', NULL), (15645, 219, '', '', '', '0000-00-00', 15645, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (15646, 220, '$1,500.00 ', '4/5/2011', '', NULL, 15646, 'Range: 15K to 1.5 Millio', NULL), (15647, 221, '', '', '', '0000-00-00', 15647, '', NULL), (15648, 222, '', '', '', '0000-00-00', 15648, '', NULL), (15649, 223, '', '', '', '0000-00-00', 15649, '', NULL), (15650, 224, '$104.00 ', '1/29/2013', '', NULL, 15650, 'Range: 1 Inch', NULL), (15651, 225, '', '', '', '0000-00-00', 15651, '', NULL), (15652, 226, '', '', '', '0000-00-00', 15652, '', NULL), (15653, 227, '', '', '', '0000-00-00', 15653, '', NULL), (15654, 228, '', '', '', '0000-00-00', 15654, '', NULL), (15655, 229, '', '', '', '0000-00-00', 15655, '', NULL), (15656, 230, '', '', '', '0000-00-00', 15656, '', NULL), (15657, 231, '$35.00 ', '1/12/2010', 'Dixon GL 340 Service Gauge (D-5720)', NULL, 15657, 'Range: 300 PSI', NULL), (15658, 232, '$35.00 ', '5/29/2002', 'Marsh Gauge (D-57', NULL, 15658, 'Range: 300 PSI', NULL), (15659, 233, '', '', '', '0000-00-00', 15659, '', NULL), (15660, 234, '', '2/16/2010', '', NULL, 15660, 'Range: 45 Short Ton ', NULL), (15661, 235, '$35.00 ', '1/18/2010', 'Ashcroft Pressure Gauge ', NULL, 15661, 'Range: 35 in H2O', NULL), (15662, 236, '', '', '**E-Mail Certs and Invoice to paul.pridemore@basf.', '0000-00-00', 15662, '', NULL), (15663, 237, '', '', '', '0000-00-00', 15663, '', NULL), (15664, 238, '', 'New', ' w/ Shear Displacement ', NULL, 15664, 'Range: 1K', NULL), (15665, 239, '', '', '', '0000-00-00', 15665, '', NULL), (15666, 240, '$144.00 ', '1/5/2011', ' w/ MII 300 BTE Displacement ', NULL, 15666, 'Range: 0.4 inch (ID# LAB', NULL), (15667, 241, '', '', '', '0000-00-00', 15667, '', NULL), (15668, 242, '$149.00 ', '2/27/2013', '', NULL, 15668, 'Range: 0.02 in/in (GL 2)', NULL), (15669, 243, '$109.00 ', '9/16/2013', 'Satec B3M Extensometer ', NULL, 15669, 'Range: 0.016 in/in (GL 1', NULL), (15670, 244, '', '', '', '0000-00-00', 15670, '', NULL), (15671, 245, '', '', '', '0000-00-00', 15671, '', NULL), (15672, 246, '', '', '', '0000-00-00', 15672, '', NULL), (15673, 247, '', '', 'Forney F-25EX-DR Digital Compression Machine (MOVE', '0000-00-00', 15673, '', NULL), (15674, 248, '', '', '', '0000-00-00', 15674, '', NULL), (15675, 249, '', '', '', '0000-00-00', 15675, '', NULL), (15676, 250, '', '', '', '0000-00-00', 15676, '', NULL), (15677, 251, '', '', '', '0000-00-00', 15677, '', NULL), (15678, 252, '', '', '', '0000-00-00', 15678, '', NULL), (15679, 253, '', '', '', '0000-00-00', 15679, '', NULL), (15680, 254, '', '', '', '0000-00-00', 15680, '', NULL), (15681, 255, '', '', '', '0000-00-00', 15681, '', NULL), (15682, 256, '', '', '', '0000-00-00', 15682, '', NULL), (15683, 257, '', '', 'Forney QC-200-DR Compression Machine (OOS) ', '0000-00-00', 15683, '', NULL), (15684, 258, '', '', 'Send Certs to Billing Address ', '0000-00-00', 15684, '', NULL), (15685, 259, '', '', '', '0000-00-00', 15685, '', NULL), (15686, 260, '', '', '', '0000-00-00', 15686, '', NULL), (15687, 261, '$204.00 ', '3/28/2012', 'Enerpac RC59 Ram 2 ', NULL, 15687, 'Range: 5 Ton (10,10', NULL), (15688, 262, 'the above ', '4/1/2010', ' w/ Horizontal Mdl. SBA-1KLB-I Load', NULL, 15688, 'Range: 1K', NULL), (15689, 263, '', '', '', '0000-00-00', 15689, '', NULL), (15690, 264, '$144.00 ', '3/27/2013', '', NULL, 15690, 'Range: 100 lbs', NULL), (15691, 265, '', '', '', '0000-00-00', 15691, '', NULL), (15692, 266, '', '', '', '0000-00-00', 15692, '', NULL), (15693, 267, '', '', '', '0000-00-00', 15693, '', NULL), (15694, 268, '', '', '', '0000-00-00', 15694, '', NULL), (15695, 269, '', '', '', '0000-00-00', 15695, '', NULL), (15696, 270, '', '', '', '0000-00-00', 15696, '', NULL), (15697, 271, '', '', '', '0000-00-00', 15697, '', NULL), (15698, 272, '', '', '', '0000-00-00', 15698, '', NULL), (15699, 273, '', '', '', '0000-00-00', 15699, '', NULL), (15700, 274, '$85.00 ', '3/28/2011', 'Ohaus Champ Square CQ100L Scale ', NULL, 15700, 'Range: 150 lbs ', NULL), (15701, 275, '', '', '', '0000-00-00', 15701, '', NULL), (15702, 276, '', '', '', '0000-00-00', 15702, '', NULL), (15703, 277, '$409.00 ', '7/14/2010', 'Hercules-Tucker Prestress Jack ', NULL, 15703, 'Range: 4K to 400K (MOV', NULL), (15704, 278, '', '', '', '0000-00-00', 15704, '', NULL), (15705, 279, '', '', ' \"***Tim will hide key, call him to find out wh', '0000-00-00', 15705, '', NULL), (15706, 280, '', '', '', '0000-00-00', 15706, '', NULL), (15707, 281, '', '', '', '0000-00-00', 15707, '', NULL), (15708, 282, '', '', '', '0000-00-00', 15708, '', NULL), (15709, 283, '', '', '', '0000-00-00', 15709, '', NULL), (15710, 284, '$204.00 ', '6/14/2013', 'Imada Sprin Tester (E-4 & 2% Man Specs)', NULL, 15710, 'Range: 200 lbs to 2K LC ', NULL), (15711, 285, '', '', '', '0000-00-00', 15711, '', NULL), (15712, 286, '', '', ' ***2 Year Sche', '0000-00-00', 15712, '', NULL), (15713, 287, '', '', '', '0000-00-00', 15713, '', NULL), (15714, 288, '', '', '', '0000-00-00', 15714, '', NULL), (15715, 289, '', '', '', '0000-00-00', 15715, '', NULL), (15716, 290, '', '', '', '0000-00-00', 15716, '', NULL), (15717, 291, '', '', '', '0000-00-00', 15717, '', NULL), (15718, 292, '', '', '', '0000-00-00', 15718, '', NULL), (15719, 293, '', '', '', NULL, 15719, 'when turning on*', NULL), (15720, 294, '', '', '', '0000-00-00', 15720, '', NULL), (15721, 295, '', '', '', '0000-00-00', 15721, '', NULL), (15722, 296, '$144.00 ', '11/10/2009', 'Soiltest CBR Single Proving Ring ', NULL, 15722, 'Range: 500 lbs ', NULL), (15723, 297, '', '', '', '0000-00-00', 15723, '', NULL), (15724, 298, '$85.00 ', '5/15/2013', 'Adams ACB Plus-300 C Scale ', NULL, 15724, 'Range: 110 Grams', NULL), (15725, 299, '$144.00 ', '5/15/2013', '', NULL, 15725, 'Range: 500 lbs ', NULL), (15726, 300, '$85.00 ', '5/15/2013', 'Intell-Lab PG-3000 Scale ', NULL, 15726, 'Range: 150 lbs', NULL), (15727, 301, '', '', ' ***Site has interference problems, digital ', '0000-00-00', 15727, '', NULL), (15728, 302, '', '', '', '0000-00-00', 15728, '', NULL), (15729, 303, '$204.00 ', '5/25/2011', 'Sinco 51653000 Point Load Tester ', NULL, 15729, 'Range: 500 lbs ', NULL), (15730, 304, '', '', '', '0000-00-00', 15730, '', NULL), (15731, 305, '', '', '', '0000-00-00', 15731, '', NULL), (15732, 306, '', '', '', '0000-00-00', 15732, '', NULL), (15733, 307, '$409.00 ', '3/9/2004', 'Testmark CM-3000-SD Digital Compression Machine (M', NULL, 15733, 'Range: 20K to 300K', NULL), (15734, 308, '$144.00 ', '6/1/2006', 'Starrett Dial Indicator Model: 25-631 (Done in HC ', NULL, 15734, 'Range: 1 Inch', NULL), (15735, 309, '', '', '', '0000-00-00', 15735, '', NULL), (15736, 310, '', '', '', '0000-00-00', 15736, '', NULL), (15737, 311, '', '', '', '0000-00-00', 15737, '', NULL), (15738, 312, '', '', '', '0000-00-00', 15738, '', NULL), (15739, 313, '', '', '', '0000-00-00', 15739, '', NULL), (15740, 314, '', '', '', '0000-00-00', 15740, '', NULL), (15741, 315, '', '', '', '0000-00-00', 15741, '', NULL), (15742, 316, '', '', '', NULL, 15742, 'edge of tolerance ', NULL), (15743, 317, '', '', '', '0000-00-00', 15743, '', NULL), (15744, 318, '', '', '', '0000-00-00', 15744, '', NULL), (15745, 319, '', '', '', '0000-00-00', 15745, '', NULL), (15746, 320, '', '', 'Federal Dial Indicator (Out of Service) ', '0000-00-00', 15746, '', NULL), (15747, 321, '', '', '', '0000-00-00', 15747, '', NULL), (15748, 322, '', '', '***ISO Requested***', '0000-00-00', 15748, '', NULL), (15749, 323, '', '', '', '0000-00-00', 15749, '', NULL), (15750, 324, '', '', '', '0000-00-00', 15750, '', NULL), (15751, 325, '', '', '', '0000-00-00', 15751, '', NULL), (15752, 326, '', '', 'Send Certs to Job Site', '0000-00-00', 15752, '', NULL), (15753, 327, '', '', '', '0000-00-00', 15753, '', NULL), (15754, 328, '', '', '', '0000-00-00', 15754, '', NULL), (15755, 329, '$204.00 ', '6/26/2013', 'Dynalink MSI-7500 Tensile Load Cell ', NULL, 15755, 'Cap: 5 Ton / 10 Ton ', NULL), (15756, 330, '', '', '', '0000-00-00', 15756, '', NULL), (15757, 331, '', '', '', '0000-00-00', 15757, '', NULL), (15758, 332, '', '', 'Send Certs to Billing Address Attn: Mark Deradorff', '0000-00-00', 15758, '', NULL), (15759, 333, '', '', '', '0000-00-00', 15759, '', NULL), (15760, 334, '$204.00 ', '7/11/2006', 'Harrington Model HLT Hoist Tester (OOS) (E-4 and', NULL, 15760, 'Cap: 10K', NULL), (15761, 335, '', '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spri', '0000-00-00', 15761, '', NULL), (15762, 336, '', '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Sprin', '0000-00-00', 15762, '', NULL), (15763, 337, '', '', '', '0000-00-00', 15763, '', NULL), (15764, 338, '', '', ' ***Safety instruction & form in file***', '0000-00-00', 15764, '', NULL), (15765, 339, '', '', '', '0000-00-00', 15765, '', NULL), (15766, 340, '', '', '', '0000-00-00', 15766, '', NULL), (15767, 341, '$114.00 ', 'No Cal', 'Wika Gauge (IN HOUSE) ', NULL, 15767, 'Range: ', NULL), (15768, 342, '', '', '', '0000-00-00', 15768, '', NULL), (15769, 343, '', '', '', '0000-00-00', 15769, '', NULL), (15770, 344, '', '', '', '0000-00-00', 15770, '', NULL), (15771, 345, '', '', '', '0000-00-00', 15771, '', NULL), (15772, 346, '', '', '', '0000-00-00', 15772, '', NULL), (15773, 347, '', '', '', '0000-00-00', 15773, '', NULL), (15774, 348, '', '', '', '0000-00-00', 15774, '', NULL), (15775, 349, '', '', '', '0000-00-00', 15775, '', NULL), (15776, 350, '', '', '', '0000-00-00', 15776, '', NULL), (15777, 351, '', '', '', '0000-00-00', 15777, '', NULL), (15778, 352, '', '', '', '0000-00-00', 15778, '', NULL), (15779, 353, '', '', '', '0000-00-00', 15779, '', NULL), (15780, 354, '', '', '', '0000-00-00', 15780, '', NULL), (15781, 355, '', '', '', '0000-00-00', 15781, '', NULL), (15782, 356, '', '', '', '0000-00-00', 15782, '', NULL), (15783, 357, '', '', '', '0000-00-00', 15783, '', NULL), (15784, 358, '', '', '', '0000-00-00', 15784, '', NULL), (15785, 359, '', '', '', '0000-00-00', 15785, '', NULL), (15786, 360, '', '', '', '0000-00-00', 15786, '', NULL), (15787, 361, '', '', '', '0000-00-00', 15787, '', NULL), (15788, 362, '', '', '', '0000-00-00', 15788, '', NULL), (15789, 363, '', '', '', '0000-00-00', 15789, '', NULL), (15790, 364, '', '', 'Proving Ring (OOS) ', '0000-00-00', 15790, '', NULL), (15791, 365, '', '', '', '0000-00-00', 15791, '', NULL), (15792, 366, '', '', '', '0000-00-00', 15792, '', NULL), (15793, 367, '', '', '', '0000-00-00', 15793, '', NULL), (15794, 368, '', '', '', '0000-00-00', 15794, '', NULL), (15795, 369, '', '', '', NULL, 15795, 'THERE IS NO LODGING***', NULL), (15796, 370, '', '', '', '0000-00-00', 15796, '', NULL), (15797, 371, '', '', '', '0000-00-00', 15797, '', NULL), (15798, 372, '', '8/28/2012', 'would like to get to get head redone to Forney Sty', NULL, 15798, 'S/N 3343 Keeps breaking h', NULL), (15799, 373, '', '', '', '0000-00-00', 15799, '', NULL), (15800, 374, '', '', '', '0000-00-00', 15800, '', NULL), (15801, 375, '', '', '', '0000-00-00', 15801, '', NULL), (15802, 376, '', '', '', '0000-00-00', 15802, '', NULL), (15803, 377, '', '', '', '0000-00-00', 15803, '', NULL), (15804, 378, '', '', '', '0000-00-00', 15804, '', NULL), (15805, 379, '', '', '', '0000-00-00', 15805, '', NULL), (15806, 380, '', '', '', '0000-00-00', 15806, '', NULL), (15807, 381, '', '', '', '0000-00-00', 15807, '', NULL), (15808, 382, '', '', '', '0000-00-00', 15808, '', NULL), (15809, 383, '', '', '', '0000-00-00', 15809, '', NULL), (15810, 384, '', '', ' ***ISO Requested**', '0000-00-00', 15810, '', NULL), (15811, 385, '', '', 'Send Certs to Billing Address PO Box 277', '0000-00-00', 15811, '', NULL), (15812, 386, '', '', '', '0000-00-00', 15812, '', NULL), (15813, 387, '', '', '', '0000-00-00', 15813, '', NULL), (15814, 388, '', '', '', '0000-00-00', 15814, '', NULL), (15815, 389, '', '', '', '0000-00-00', 15815, '', NULL), (15816, 390, '', '', 'Wika Vaccum Gauge (OOS) ', '0000-00-00', 15816, ' ', NULL), (15817, 391, '', '', '', '0000-00-00', 15817, '', NULL), (15818, 392, '', '', '', '0000-00-00', 15818, '', NULL), (15819, 393, '', '', '', '0000-00-00', 15819, '', NULL), (15820, 394, '', '', ' ***Mail Certs to Billing ', '0000-00-00', 15820, '', NULL), (15821, 395, '', '', '', '0000-00-00', 15821, '', NULL), (15822, 396, '', '', '', '0000-00-00', 15822, '', NULL), (15823, 397, '', '', '', '0000-00-00', 15823, '', NULL), (15824, 398, '', '', '', '0000-00-00', 15824, '', NULL), (15825, 399, '', '', '', '0000-00-00', 15825, '', NULL), (15826, 400, '', '', ' ***Certs sent to Oldcastle job si', '0000-00-00', 15826, '', NULL), (15827, 401, '', '', '', '0000-00-00', 15827, '', NULL), (15828, 402, '', '', '', '0000-00-00', 15828, '', NULL), (15829, 403, '', '', '', '0000-00-00', 15829, '', NULL), (15830, 404, '', '', '', '0000-00-00', 15830, '', NULL), (15831, 405, '', '', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSp', '0000-00-00', 15831, '', NULL), (15832, 406, '', '', '', '0000-00-00', 15832, '', NULL), (15833, 407, '', '', '', '0000-00-00', 15833, '', NULL), (15834, 408, '', '', '', '0000-00-00', 15834, '', NULL), (15835, 409, '', '', '', '0000-00-00', 15835, '', NULL), (15836, 410, '', '', '', '0000-00-00', 15836, '', NULL), (15837, 411, '', '', '', '0000-00-00', 15837, '', NULL), (15838, 412, '', '', '', '0000-00-00', 15838, '', NULL), (15839, 413, '', '', '', '0000-00-00', 15839, '', NULL), (15840, 414, '$409.00 ', '12/16/1997', '', NULL, 15840, 'Range 30/250K', NULL), (15841, 415, '', '', '', '0000-00-00', 15841, '', NULL), (15842, 416, '', '', '', '0000-00-00', 15842, '', NULL), (15843, 417, '', '', '', '0000-00-00', 15843, '', NULL), (15844, 418, '$104.00 ', '11/6/2012', 'Ram Pack w/ Gauge #1 ', NULL, 15844, 'Range: 1 inch ', NULL), (15845, 419, '', '', '', '0000-00-00', 15845, '', NULL), (15846, 420, '', '', '', '0000-00-00', 15846, '', NULL), (15847, 421, '', '', '', '0000-00-00', 15847, '', NULL), (15848, 422, '$187.00 ', '1/8/2013', '', NULL, 15848, 'Range: 5K ', NULL), (15849, 423, '$144.00 ', '1/8/2013', '', NULL, 15849, 'Range: 2 inches', NULL), (15850, 424, '$104.00 ', '1/9/2012', ' w/ Pressure Panel 1 ', NULL, 15850, 'Range: 150 PSI ', NULL), (15851, 425, '$104.00 ', '1/8/2013', '', NULL, 15851, 'Range: 2 inches', NULL), (15852, 426, '', '', '', '0000-00-00', 15852, '', NULL), (15853, 427, 'Price', '1/9/2013', ' w/ Horizonital (D-6027)', NULL, 15853, 'Range: 0.5 inches', NULL), (15854, 428, '$144.00 ', '1/7/2013', 'GeoJace Direct Shear LVDT Horizonital (D-6027)', NULL, 15854, 'Range: 0.2 inches (CH ', NULL), (15855, 429, '', '', '', '0000-00-00', 15855, '', NULL), (15856, 430, '', '', '', '0000-00-00', 15856, '', NULL), (15857, 431, 'Incw/Above', '1/7/2013', ' w/ Displacement ', NULL, 15857, 'Range: 1K to 150K ', NULL), (15858, 432, '', '', '', '0000-00-00', 15858, '', NULL), (15859, 433, '', '', '', '0000-00-00', 15859, '', NULL), (15860, 434, '', '', '', '0000-00-00', 15860, '', NULL), (15861, 435, '', '', ' ***ISO Requested***', '0000-00-00', 15861, '', NULL), (15862, 436, '', '', '', '0000-00-00', 15862, '', NULL), (15863, 437, '$79.00 ', '1/28/2013', '', NULL, 15863, 'Range: 0.05 in/min ', NULL), (15864, 438, '', '', '', '0000-00-00', 15864, '', NULL), (15865, 439, '', '', '', '0000-00-00', 15865, '', NULL), (15866, 440, '', '', '', '0000-00-00', 15866, '', NULL), (15867, 441, '$359.00 ', '5/27/2008', '', NULL, 15867, 'Range: 250K', NULL), (15868, 442, '', '', '', '0000-00-00', 15868, '', NULL), (15869, 443, '', '', '', '0000-00-00', 15869, '', NULL), (15870, 444, '', '', '', '0000-00-00', 15870, '', NULL), (15871, 445, '$104.00 ', '2/13/2013', 'BC Ames Dial Indicator (D-6027) ', NULL, 15871, 'Range: 0.2 inch', NULL), (15872, 446, '$509.00 ', '12/3/1997', 'Soiltest AP-1015 Versa Tester (OOS) ', NULL, 15872, 'Range: 1.2K / 6K / 30K / ', NULL), (15873, 447, '', '', '', '0000-00-00', 15873, ' ', NULL), (15874, 448, '$85.00 ', '2/13/2013', 'Ohaus Scale (ID# TS-04) ', NULL, 15874, 'Range: 110 lbs ', NULL), (15875, 449, '$144.00 ', '5/2/2013', 'TIF Electronic Mdl. 9010A Scale (Mov', NULL, 15875, 'Range: 5K ', NULL), (15876, 450, '$209.00 ', '2/13/2013', 'TIF Mdl. 9010A Scale (E-898)', NULL, 15876, 'Range: 15,000 lbs', NULL), (15877, 451, '', '', '', '0000-00-00', 15877, '', NULL), (15878, 452, '', '', '', '0000-00-00', 15878, '', NULL), (15879, 453, '', '', '', '0000-00-00', 15879, '', NULL), (15880, 454, '', '', '', '0000-00-00', 15880, '', NULL), (15881, 455, '', '', '', '0000-00-00', 15881, '', NULL), (15882, 456, '', '', '', '0000-00-00', 15882, '', NULL), (15883, 457, '', '', '', '0000-00-00', 15883, '', NULL), (15884, 458, '', '', '', '0000-00-00', 15884, '', NULL), (15885, 459, '', '', '', '0000-00-00', 15885, '', NULL), (15886, 460, '', '', '', '0000-00-00', 15886, '', NULL), (15887, 461, '', '', '', '0000-00-00', 15887, '', NULL), (15888, 462, '', '', '', '0000-00-00', 15888, '', NULL), (15889, 463, '', '', '', '0000-00-00', 15889, '', NULL), (15890, 464, '', '', '***MUST HAVE WRITTEN AUTHORIZATION TO DO WORK***', '0000-00-00', 15890, '', NULL), (15891, 465, '', '', '', '0000-00-00', 15891, '', NULL), (15892, 466, '', '', ' w/ Load Cell ', '0000-00-00', 15892, '', NULL), (15893, 467, '', '', '', '0000-00-00', 15893, '', NULL), (15894, 468, '', '', '', '0000-00-00', 15894, '', NULL), (15895, 469, '', '', '', '0000-00-00', 15895, '', NULL), (15896, 470, '', '', '', NULL, 15896, 'Attn: Mark Moyer ', NULL), (15897, 471, '', '', '', '0000-00-00', 15897, '', NULL), (15898, 472, '', '', '', '0000-00-00', 15898, '', NULL), (15899, 473, '', '', '', '0000-00-00', 15899, '', NULL), (15900, 474, '', '', '', '0000-00-00', 15900, '', NULL), (15901, 475, '', '', '', '0000-00-00', 15901, '', NULL), (15902, 476, '$85.00 ', '4/10/2013', 'Adam CPW Plus-75 Scale ', NULL, 15902, 'Range: 8,100 Grams ', NULL), (15903, 477, '', '', '', '0000-00-00', 15903, '', NULL), (15904, 478, '$204.00 ', '4/11/2012', ' w/ HBM Load Cell ', NULL, 15904, 'Range: 400K ', NULL), (15905, 479, '', '', '', '0000-00-00', 15905, '', NULL), (15906, 480, '', '', '', '0000-00-00', 15906, '', NULL), (15907, 481, '', '', '', '0000-00-00', 15907, '', NULL), (15908, 482, '', '', '', '0000-00-00', 15908, '', NULL), (15909, 483, '', '', 'Mail Certs to Billing Address Attn: Matt Manning', '0000-00-00', 15909, '', NULL), (15910, 484, 'In', '4/23/2012', ' w/ Vertical LVDT ', NULL, 15910, 'Range: 20 to 500 lbs.', NULL), (15911, 485, '', '', '', '0000-00-00', 15911, '', NULL), (15912, 486, '', '', '', '0000-00-00', 15912, '', NULL), (15913, 487, '', '', '', '0000-00-00', 15913, '', NULL), (15914, 488, '$144.00 ', '5/1/2013', 'Humboldt H-4454 Single Proving Ring (E-4 &', NULL, 15914, 'Range: 150 PSI', NULL), (15915, 489, '', '', '', '0000-00-00', 15915, '', NULL), (15916, 490, '', '', ' ', '0000-00-00', 15916, '', NULL), (15917, 491, '', '', '', '0000-00-00', 15917, '', NULL), (15918, 492, '', '5/7/2008', 'Satec Deflectometer Mdl. PD1M (OOS) ', NULL, 15918, 'Range: 6K/24K/60K/120K', NULL), (15919, 493, '$204.00 ', '4/30/2013', 'Soiltest C252 Consolidation Frame ', NULL, 15919, 'Range: 2.7 lbs to 1771.3', NULL), (15920, 494, '$144.00 ', '4/30/2013', 'Humboldt DPX 1000 Dial Indicator ', NULL, 15920, 'Range: 0.6 Inches', NULL), (15921, 495, '$144.00 ', '4/30/2013', 'MA Test A125 Point Loader (', NULL, 15921, 'Range: 30 inHg ', NULL), (15922, 496, '$144.00 ', '5/6/2011', 'Goudsche Manchine Faabriek Cone Penetrometer (E-4 ', NULL, 15922, 'Range : 16 Kn/ 97 Kn', NULL), (15923, 497, '', '', 'On Certs put both Serial Numbers on and put Serial', '0000-00-00', 15923, '', NULL), (15924, 498, '', '', '', '0000-00-00', 15924, '', NULL), (15925, 499, '', '', '', '0000-00-00', 15925, '', NULL), (15926, 500, 'price', '4/30/2012', ' Vertical Force ', NULL, 15926, '40 lbs to 1500 lbs', NULL), (15927, 501, '', '', '', '0000-00-00', 15927, '', NULL), (15928, 502, '', '', '', '0000-00-00', 15928, '', NULL), (15929, 503, '', '', '', '0000-00-00', 15929, '', NULL), (15930, 504, '', '', '', '0000-00-00', 15930, '', NULL), (15931, 505, '', '', '', '0000-00-00', 15931, '', NULL), (15932, 506, '', '', '', '0000-00-00', 15932, '', NULL), (15933, 507, '', '', '', '0000-00-00', 15933, '', NULL), (15934, 508, '', '', '', '0000-00-00', 15934, '', NULL), (15935, 509, '', '', '', '0000-00-00', 15935, '', NULL), (15936, 510, '', '', '', '0000-00-00', 15936, '', NULL), (15937, 511, '', '', '', '0000-00-00', 15937, '', NULL), (15938, 512, '', '', '', '0000-00-00', 15938, '', NULL), (15939, 513, '', '', '', '0000-00-00', 15939, '', NULL), (15940, 514, '', '', '', '0000-00-00', 15940, '', NULL), (15941, 515, '', '', '', '0000-00-00', 15941, '', NULL), (15942, 516, '$144.00 ', '5/7/2013', 'Hogentogler CBR Single Proving Ring (E-', NULL, 15942, 'Cap: 2K ', NULL), (15943, 517, '', '', 'Need Certificates the same day to ship out equipme', '0000-00-00', 15943, '', NULL), (15944, 518, '', '', '', '0000-00-00', 15944, '', NULL), (15945, 519, '$144.00 ', 'New', 'Hyvac 91105 Vacuum Pump ', NULL, 15945, 'Range: ', NULL), (15946, 520, '', '', '', '0000-00-00', 15946, '', NULL), (15947, 521, '', '', '', '0000-00-00', 15947, '', NULL), (15948, 522, '', '', '***S/N 01303 Pot to adjust is behind cover, below ', '0000-00-00', 15948, '', NULL), (15949, 523, '', '', '', '0000-00-00', 15949, '', NULL), (15950, 524, '', '', '', '0000-00-00', 15950, '', NULL), (15951, 525, '', '', '', '0000-00-00', 15951, '', NULL), (15952, 526, '', '', '', '0000-00-00', 15952, '', NULL), (15953, 527, '', '', '', '0000-00-00', 15953, '', NULL), (15954, 528, '', '', '*** Paying with Credit Card ***', '0000-00-00', 15954, '', NULL), (15955, 529, '', '', '', '0000-00-00', 15955, '', NULL), (15956, 530, '', '', '', '0000-00-00', 15956, '', NULL), (15957, 531, '', '', '', '0000-00-00', 15957, '', NULL), (15958, 532, '', '', '', '0000-00-00', 15958, '', NULL), (15959, 533, '', '', '', '0000-00-00', 15959, '', NULL), (15960, 534, '', '', '', '0000-00-00', 15960, '', NULL), (15961, 535, '', '', '', '0000-00-00', 15961, '', NULL), (15962, 536, '', '', '', '0000-00-00', 15962, '', NULL), (15963, 537, '', '', '', '0000-00-00', 15963, '', NULL), (15964, 538, '', '', '', '0000-00-00', 15964, '', NULL), (15965, 539, '', '', '', '0000-00-00', 15965, '', NULL), (15966, 540, '', '', '', '0000-00-00', 15966, '', NULL), (15967, 541, '$85.00 ', '6/4/2013', 'AND FG-60K ', NULL, 15967, 'Range: 150 lbs', NULL), (15968, 542, '', '', '', '0000-00-00', 15968, '', NULL), (15969, 543, '', '', '', '0000-00-00', 15969, '', NULL), (15970, 544, '', '', '', '0000-00-00', 15970, '', NULL), (15971, 545, '$104.00 ', '6/16/2011', 'Pine Instrument AFG1A Gyratory Compactor (ManSpecs', NULL, 15971, 'Range: 0.050 in/min ', NULL), (15972, 546, '', '', '', '0000-00-00', 15972, '', NULL), (15973, 547, '', '', '', '0000-00-00', 15973, '', NULL), (15974, 548, '$204.00 ', '6/19/2013', 'Lan CT300-CS-100-1S Digital Compression Machine ', NULL, 15974, 'Range: 10K to 110K ', NULL), (15975, 549, '', '', '', '0000-00-00', 15975, '', NULL), (15976, 550, '', '', '', '0000-00-00', 15976, '', NULL), (15977, 551, '', '', '', '0000-00-00', 15977, '', NULL), (15978, 552, '$204.00 ', '6/29/2011', ' w/ Simplex Ram ', NULL, 15978, 'Range: 10K (9,100 PSI', NULL), (15979, 553, '$85.00 ', '6/25/2012', 'AND EK-2000i Scale ', NULL, 15979, 'Range: 250 lbs', NULL), (15980, 554, '', '', '', '0000-00-00', 15980, '', NULL), (15981, 555, '', '', '', '0000-00-00', 15981, '', NULL), (15982, 556, '', '', '', '0000-00-00', 15982, '', NULL), (15983, 557, '', '', '', '0000-00-00', 15983, '', NULL), (15984, 558, '', '', '', '0000-00-00', 15984, '', NULL), (15985, 559, '$70.00 ', '1/27/2012', '', NULL, 15985, 'Range: 10,000 PSI ', NULL), (15986, 560, '', '', '', '0000-00-00', 15986, '', NULL), (15987, 561, '', '', '', '0000-00-00', 15987, '', NULL), (15988, 562, '', '', '', '0000-00-00', 15988, '', NULL), (15989, 563, '', '', ' ****ISO Requested***', '0000-00-00', 15989, '', NULL), (15990, 564, '', '', '', '0000-00-00', 15990, '', NULL), (15991, 565, '', '', '', '0000-00-00', 15991, '', NULL), (15992, 566, '', '', 'Certs: NESL, 127 NESL Drive, Roaring Spring, PA ', '0000-00-00', 15992, '', NULL), (15993, 567, '', '', '', '0000-00-00', 15993, '', NULL), (15994, 568, '', '', '', '0000-00-00', 15994, '', NULL), (15995, 569, '', '', '', '0000-00-00', 15995, '', NULL), (15996, 570, '$85.00 ', '7/30/2013', 'Ohaus Model I5S Scale ', NULL, 15996, 'Range: 4,000 Grams ', NULL), (15997, 571, '', '', '', '0000-00-00', 15997, '', NULL), (15998, 572, '', '', '', '0000-00-00', 15998, '', NULL), (15999, 573, '', '', '', '0000-00-00', 15999, '', NULL), (16000, 574, '', '', '***ISO Requested***', '0000-00-00', 16000, '', NULL), (16001, 575, '', '7/30/2012', '', NULL, 16001, 'Dw Correction factor 0.99', NULL), (16002, 576, '', '', '', '0000-00-00', 16002, '', NULL), (16003, 577, '', '', '', '0000-00-00', 16003, '', NULL), (16004, 578, '', '', '', '0000-00-00', 16004, '', NULL), (16005, 579, '', '', '', '0000-00-00', 16005, '', NULL), (16006, 580, '', '', '', '0000-00-00', 16006, '', NULL), (16007, 581, '', '', '', '0000-00-00', 16007, '', NULL), (16008, 582, '', '', '', '0000-00-00', 16008, '', NULL), (16009, 583, '', '', '', '0000-00-00', 16009, '', NULL), (16010, 584, '', '', '', '0000-00-00', 16010, '', NULL), (16011, 585, '', '', ' ***Site Unmanned must call 2 hours be', '0000-00-00', 16011, '', NULL), (16012, 586, '$204.00 ', '8/8/2013', 'Bynum Prestress Jack ', NULL, 16012, 'Range: 3K / 37K', NULL), (16013, 587, '', '', '', '0000-00-00', 16013, ' ', NULL), (16014, 588, '', '', '', '0000-00-00', 16014, '', NULL), (16015, 589, '', '', '', '0000-00-00', 16015, '', NULL), (16016, 590, '', '', '', '0000-00-00', 16016, '', NULL), (16017, 591, '', '', '*10/13 Machine needs a new marshalltown gauge mech', '0000-00-00', 16017, '', NULL), (16018, 592, '', '', '', '0000-00-00', 16018, '', NULL), (16019, 593, '$144.00 ', 'New', 'Proving Ring ', NULL, 16019, 'Range: ', NULL), (16020, 594, '', '', '', '0000-00-00', 16020, '', NULL), (16021, 595, '', '', '', '0000-00-00', 16021, '', NULL), (16022, 596, '', '', '', '0000-00-00', 16022, '', NULL), (16023, 597, '', '', '', '0000-00-00', 16023, '', NULL), (16024, 598, '', '', '', '0000-00-00', 16024, '', NULL), (16025, 599, ' in', '9/5/2013', ' Vertica', NULL, 16025, 'Range: 0.6 inch', NULL), (16026, 600, '', '', '', '0000-00-00', 16026, '', NULL), (16027, 601, '', '', '', '0000-00-00', 16027, '', NULL), (16028, 602, '', '', '', '0000-00-00', 16028, '', NULL), (16029, 603, '', '', '', '0000-00-00', 16029, '', NULL), (16030, 604, '', '', '', '0000-00-00', 16030, '', NULL), (16031, 605, '$79.00 ', '9/4/2013', ' w/ Speed Control ', NULL, 16031, 'Range: 0.2 in/min ', NULL), (16032, 606, '', '', '', '0000-00-00', 16032, '', NULL), (16033, 607, '$79.00 ', '10/8/2013', 'Forney F-25-EX-F96 Digital Compression Machine ', NULL, 16033, 'Range: 25 K', NULL), (16034, 608, '', '', '', '0000-00-00', 16034, '', NULL), (16035, 609, '', '', '', '0000-00-00', 16035, '', NULL), (16036, 610, '', '', '', '0000-00-00', 16036, '', NULL), (16037, 611, '', '', '', '0000-00-00', 16037, '', NULL), (16038, 612, '', '', '', '0000-00-00', 16038, '', NULL), (16039, 613, '', '', 'Send Certs to Job Site Address.', '0000-00-00', 16039, '', NULL), (16040, 614, '', '', '', '0000-00-00', 16040, '', NULL), (16041, 615, '$70.00 ', 'New', 'Pressure Gauge Air Meter ', NULL, 16041, 'Range: 15 PSI', NULL), (16042, 616, '', '', '', '0000-00-00', 16042, '', NULL), (16043, 617, '', '', '', '0000-00-00', 16043, '', NULL), (16044, 618, '', '', '', '0000-00-00', 16044, '', NULL), (16045, 619, '', '', '***MUST HAVE: Hard Hat, Safety Glasses, Steel Toe', '0000-00-00', 16045, '', NULL), (16046, 620, '', '', '', '0000-00-00', 16046, '', NULL), (16047, 621, '', '', '', '0000-00-00', 16047, '', NULL), (16048, 622, '', '', '', '0000-00-00', 16048, '', NULL), (16049, 623, '', '', '', '0000-00-00', 16049, '', NULL), (16050, 624, '', '', '', '0000-00-00', 16050, '', NULL), (16051, 625, '', '', '', '0000-00-00', 16051, '', NULL), (16052, 626, '', '', '', '0000-00-00', 16052, '', NULL), (16053, 627, '', '', ' ***Must take proving ring press***', '0000-00-00', 16053, '', NULL), (16054, 628, '', '', '', '0000-00-00', 16054, '', NULL), (16055, 629, '', '', '', '0000-00-00', 16055, '', NULL), (16056, 630, '', '', '', '0000-00-00', 16056, '', NULL), (16057, 631, '', '', '', '0000-00-00', 16057, '', NULL), (16058, 632, '', '', '', '0000-00-00', 16058, '', NULL), (16059, 633, '', '', '', '0000-00-00', 16059, '', NULL), (16060, 634, '', '', '', '0000-00-00', 16060, '', NULL), (16061, 635, '', '', 'SPI Caliper (ManSpecs)', '0000-00-00', 16061, '', NULL), (16062, 636, '', '', '', '0000-00-00', 16062, '', NULL), (16063, 637, '', '', ' w/ GeoJac Load Cell ', '0000-00-00', 16063, '', NULL), (16064, 638, '$144.00 ', '11/13/2012', ' w/ GeoJac Pressure Transducer ', NULL, 16064, 'Range: 20 lbs to 2K ', NULL), (16065, 639, '', '', '', '0000-00-00', 16065, '', NULL), (16066, 640, '', '', ' ***Send cert to Bill t', '0000-00-00', 16066, '', NULL), (16067, 641, '', '', ' ***ISO Requested*', '0000-00-00', 16067, '', NULL), (16068, 642, '', '', '', '0000-00-00', 16068, '', NULL), (16069, 643, '$144.00 ', '11/28/2012', 'Forney F-502F-TPILOT Digital Compression Machine ', NULL, 16069, 'Range: 2 inches ', NULL), (16070, 644, '', '', ' ***Send Certs to Bill Site***', '0000-00-00', 16070, '', NULL), (16071, 645, '', '', '', '0000-00-00', 16071, '', NULL), (16072, 646, '', '', '', '0000-00-00', 16072, '', NULL), (16073, 647, '', '', '', '0000-00-00', 16073, '', NULL), (16074, 648, '', '', '', '0000-00-00', 16074, '', NULL), (16075, 649, '', '', '', '0000-00-00', 16075, '', NULL), (16076, 650, '', '', '', '0000-00-00', 16076, '', NULL), (16077, 651, '', '', '', '0000-00-00', 16077, '', NULL), (16078, 652, '', '', '', '0000-00-00', 16078, '', NULL), (16079, 653, '', '', '', '0000-00-00', 16079, '', NULL), (16080, 654, '', '', '', '0000-00-00', 16080, '', NULL), (16081, 655, '', '', '', '0000-00-00', 16081, '', NULL), (16082, 656, '', '', '', '0000-00-00', 16082, '', NULL), (16083, 657, '', '', '', '0000-00-00', 16083, '', NULL), (16084, 658, '', '', '', '0000-00-00', 16084, '', NULL), (16085, 659, '', '', '', '0000-00-00', 16085, '', NULL), (16086, 660, '$488.00 ', '3/26/2013', 'Epsilon Extensomer 3542-0100-020-ST (E-83)', NULL, 16086, 'Range: 20K T&C', NULL), (16087, 661, '', '', ' ***S/N 1388 if done in Tension needs brought back', '0000-00-00', 16087, '', NULL), (16088, 662, '', '', '', '0000-00-00', 16088, '', NULL), (16089, 663, '', '', '', '0000-00-00', 16089, '', NULL), (16090, 664, '', '', 'Forney LT-700-CS-100-2AG Digital Compression Machi', '0000-00-00', 16090, '', NULL), (16091, 665, '', '', '', '0000-00-00', 16091, '', NULL), (16092, 666, '', '', '', '0000-00-00', 16092, '', NULL), (16093, 667, '', '', '', '0000-00-00', 16093, '', NULL), (16094, 668, '', '', '', '0000-00-00', 16094, '', NULL), (16095, 669, '', '', ' ***Need fixture to calibrate Extens', '0000-00-00', 16095, '', NULL), (16096, 670, '', '', '', '0000-00-00', 16096, '', NULL), (16097, 671, '', '', '', '0000-00-00', 16097, '', NULL), (16098, 672, '$144.00 ', '1/26/2009', 'HCS LC-40 Hydraulic Load Cell ', NULL, 16098, 'Range: 40K ', NULL), (16099, 673, '', '', '', '0000-00-00', 16099, '', NULL), (16100, 674, '', '', 'Mail Certs to: Alfred State College, 10 Upper Col', '0000-00-00', 16100, '', NULL), (16101, 675, '$144.00 ', 'New', '', NULL, 16101, 'Range: 20K', NULL), (16102, 676, '', '', '', '0000-00-00', 16102, '', NULL), (16103, 677, '', '', '', '0000-00-00', 16103, '', NULL), (16104, 678, '', '', '', '0000-00-00', 16104, '', NULL), (16105, 679, '', '', '', '0000-00-00', 16105, '', NULL), (16106, 680, '', '', '', '0000-00-00', 16106, '', NULL), (16107, 681, '$125.00 ', '1/28/2013', 'Hilti Pull Tester Model 59604/02/00 (Chicag', NULL, 16107, 'Range: 300 lbs to 3,000 ', NULL), (16108, 682, '$134.00 ', '4/25/2012', 'HCS LC-40 Hydraulic Load Cell (ID# LC2502) (E-', NULL, 16108, 'Range: 50K ', NULL), (16109, 683, '', '', '', '0000-00-00', 16109, '', NULL), (16110, 684, '', '', '', '0000-00-00', 16110, '', NULL), (16111, 685, '', '', '', '0000-00-00', 16111, '', NULL), (16112, 686, '', '', '', '0000-00-00', 16112, '', NULL), (16113, 687, '', '', '', '0000-00-00', 16113, '', NULL), (16114, 688, '', '', '', '0000-00-00', 16114, '', NULL), (16115, 689, '', '', '', '0000-00-00', 16115, '', NULL), (16116, 690, '$125.00 ', '8/22/2013', 'Hilti Pull Tester Model 59604/02/00 (Baltimore) ', NULL, 16116, 'Range: 300 lbs to 3,000 ', NULL), (16117, 691, '', '', '', '0000-00-00', 16117, '', NULL), (16118, 692, '', '', '', '0000-00-00', 16118, '', NULL), (16119, 693, '$85.00 ', '3/26/2013', '', NULL, 16119, 'Range: 8100G', NULL), (16120, 694, '$144.00 ', '2/15/2007', 'Soiltest Unconfined Double Proving Ring ', NULL, 16120, 'Range: 250 lbs', NULL), (16121, 695, '$85.00 ', '2/6/2013', 'Acculab Scale ', NULL, 16121, 'Range: 70 lbs ', NULL), (16122, 696, '', '', '', '0000-00-00', 16122, '', NULL), (16123, 697, '', '', '', '0000-00-00', 16123, '', NULL), (16124, 698, '', '', '', '0000-00-00', 16124, '', NULL), (16125, 699, '', '', '', '0000-00-00', 16125, '', NULL), (16126, 700, '$409.00 ', '2/18/2013', ' ProRated price available to get all equipment in ', NULL, 16126, 'Range: 360K (1,900 PSI)', NULL), (16127, 701, '', '', '', '0000-00-00', 16127, '', NULL), (16128, 702, '', '', '', '0000-00-00', 16128, '', NULL), (16129, 703, '', '', '', '0000-00-00', 16129, '', NULL), (16130, 704, '', '', '', '0000-00-00', 16130, '', NULL), (16131, 705, '', '', '', '0000-00-00', 16131, '', NULL), (16132, 706, '', '', '', '0000-00-00', 16132, '', NULL), (16133, 707, '', '', '', '0000-00-00', 16133, '', NULL), (16134, 708, '', '', '', '0000-00-00', 16134, '', NULL), (16135, 709, '', '', ' ***Need to use 800 System***', '0000-00-00', 16135, '', NULL), (16136, 710, '', '', '', '0000-00-00', 16136, '', NULL), (16137, 711, '', '', '', '0000-00-00', 16137, '', NULL), (16138, 712, '', '', 'Enerpac Ram (Mo', '0000-00-00', 16138, '', NULL), (16139, 713, '', '', '', '0000-00-00', 16139, '', NULL), (16140, 714, '', '', '', '0000-00-00', 16140, '', NULL), (16141, 715, '', '3/12/2012', ' w/ Tovey Load Cell Plus ', NULL, 16141, 'Range: 10K ', NULL), (16142, 716, '', '3/20/2012', ' w/ Interface Digita', NULL, 16142, 'Range: 100K ', NULL), (16143, 717, '', '', '', '0000-00-00', 16143, '', NULL), (16144, 718, '', '', '', '0000-00-00', 16144, '', NULL), (16145, 719, '', '', '', '0000-00-00', 16145, '', NULL), (16146, 720, '', '', '', '0000-00-00', 16146, '', NULL), (16147, 721, '', '', '', '0000-00-00', 16147, '', NULL), (16148, 722, '', '', '', '0000-00-00', 16148, '', NULL), (16149, 723, '', '', '', '0000-00-00', 16149, '', NULL), (16150, 724, '', '', '', '0000-00-00', 16150, '', NULL), (16151, 725, '', '', '', '0000-00-00', 16151, '', NULL), (16152, 726, '', '', '', '0000-00-00', 16152, '', NULL), (16153, 727, '', '', '', '0000-00-00', 16153, '', NULL), (16154, 728, '', '', '', '0000-00-00', 16154, '', NULL), (16155, 729, '', '', '', '0000-00-00', 16155, '', NULL), (16156, 730, '', '', '', '0000-00-00', 16156, '', NULL), (16157, 731, '', '', '', '0000-00-00', 16157, '', NULL), (16158, 732, '$204.00 ', '10/8/2013', 'Stress Con Prestress Jack ', NULL, 16158, 'Range: 5K / 50K', NULL), (16159, 733, '', '', '', '0000-00-00', 16159, '', NULL), (16160, 734, 'Inc.', '9/30/2013', ' w/ LC-202-50 T & C Load Cell ', NULL, 16160, 'Range: 500 lbs ', NULL), (16161, 735, '', '', '', '0000-00-00', 16161, '', NULL), (16162, 736, '', '', 'As Per Beth All Cal Need to be done start at 5,00', '0000-00-00', 16162, '', NULL), (16163, 737, '', '', '', '0000-00-00', 16163, '', NULL), (16164, 738, '', '', '', '0000-00-00', 16164, '', NULL), (16165, 739, '', '', '', '0000-00-00', 16165, '', NULL), (16166, 740, '', '', ' ***6 Month Schedule (April & October)*', NULL, 16166, 'Mike Zavala 313-873-4711 ', NULL), (16167, 741, '', '', '', '0000-00-00', 16167, '', NULL), (16168, 742, '', '', '', '0000-00-00', 16168, '', NULL), (16169, 743, '$409.00 ', '4/24/2012', 'Instron TTD-CS-100-2LP Digital T&C Machine (E-4)', NULL, 16169, 'Range: 100 lbs to 2,500 l', NULL), (16170, 744, '', '', '', '0000-00-00', 16170, '', NULL), (16171, 745, '', '', '', '0000-00-00', 16171, '', NULL), (16172, 746, '', '', '', '0000-00-00', 16172, '', NULL), (16173, 747, '', '', '', '0000-00-00', 16173, '', NULL), (16174, 748, '', '', '', '0000-00-00', 16174, '', NULL), (16175, 749, '', '', '**Do not cal Extensomers in Compression only in T', '0000-00-00', 16175, '', NULL), (16176, 750, '', '', '', NULL, 16176, '**For Forney Only**', NULL), (16177, 751, '', '', '', '0000-00-00', 16177, '', NULL), (16178, 752, '', '', '', '0000-00-00', 16178, '', NULL), (16179, 753, '', '', '', '0000-00-00', 16179, '', NULL), (16180, 754, '', '', '', '0000-00-00', 16180, '', NULL), (16181, 755, '', '', '', '0000-00-00', 16181, '', NULL), (16182, 756, '', '', '', '0000-00-00', 16182, '', NULL), (16183, 757, '$104.00 ', '1/31/2011', 'Humboldt H-4454 Single Proving Ring (OOS) ', NULL, 16183, 'Range: 1 inch', NULL), (16184, 758, '', '', '', '0000-00-00', 16184, '', NULL), (16185, 759, '', '', '', '0000-00-00', 16185, '', NULL), (16186, 760, '', '', 'Forney FT-40 Digital Compression Machine w/ BR Dig', '0000-00-00', 16186, '', NULL), (16187, 761, '', '', 'Mike Zavala Cell # 313-873-4711', '0000-00-00', 16187, '', NULL), (16188, 762, '', '', '', '0000-00-00', 16188, '', NULL), (16189, 763, '', '', 'Put month, Day & Year on Stickers', '0000-00-00', 16189, '', NULL), (16190, 764, '', '', '', '0000-00-00', 16190, '', NULL), (16191, 765, '', '', '', '0000-00-00', 16191, '', NULL), (16192, 766, '$85.00 ', '8/2/2012', 'Setra S1-4100 Scale ', NULL, 16192, 'Range: 80 g to 80,000 g', NULL), (16193, 767, '', '', '', NULL, 16193, '( Go in May and Sept. )', NULL), (16194, 768, '$158.00 ', '11/28/2012', 'with Load Cell (E-4) 5% Range', NULL, 16194, 'Range: 50 lbs / 1 K', NULL), (16195, 769, '$79.00 ', '11/27/2012', ' with Speed Control (E-2658-11) Recorder Propo', NULL, 16195, 'Range: 5 in/min', NULL), (16196, 770, '', '', '', '0000-00-00', 16196, '', NULL), (16197, 771, '', '', '', '0000-00-00', 16197, '', NULL), (16198, 772, '', '', '', '0000-00-00', 16198, '', NULL), (16199, 773, '', '', '', '0000-00-00', 16199, '', NULL), (16200, 774, '', '', '', '0000-00-00', 16200, '', NULL), (16201, 775, '', '', '', '0000-00-00', 16201, '', NULL), (16202, 776, '', '', '****Send certs to job site address*****', '0000-00-00', 16202, '', NULL), (16203, 777, '', '', ' ', '0000-00-00', 16203, ' ', NULL), (16204, 778, '$79.00 ', '11/27/2012', ' with Speed Control Digital (E2658-11)', NULL, 16204, 'Range: 20 in/ min', NULL), (16205, 779, '$567.00 ', '11/28/2012', ' with Speed Control (E2658-11)', NULL, 16205, 'Range: 50 lbs/ 1,000 lbs/', NULL), (16206, 780, '', '', '', '0000-00-00', 16206, '', NULL), (16207, 781, '', '', '', '0000-00-00', 16207, '', NULL), (16208, 782, '$204.00 ', '10/29/2003', 'Soiltest CT-710 Compression Machine (SOLD) (E-4)', NULL, 16208, 'Range: 45K ', NULL), (16209, 783, '', '', '', '0000-00-00', 16209, '', NULL), (16210, 784, '', '', 'Need 1K cell for proving ring', '0000-00-00', 16210, '', NULL), (16211, 785, '', '', '', '0000-00-00', 16211, '', NULL), (16212, 786, '', '', '', '0000-00-00', 16212, '', NULL), (16213, 787, '', '', '', '0000-00-00', 16213, '', NULL), (16214, 788, '', '', '', '0000-00-00', 16214, '', NULL), (16215, 789, '', '', '', '0000-00-00', 16215, '', NULL), (16216, 790, '', '', '', '0000-00-00', 16216, '', NULL), (16217, 791, ' price', '6/4/2013', '', NULL, 16217, 'Range: 0.550 in/min', NULL), (16218, 792, '', '', '', '0000-00-00', 16218, '', NULL), (16219, 793, '', '', '', '0000-00-00', 16219, '', NULL), (16220, 794, '', '', '', '0000-00-00', 16220, '', NULL), (16221, 795, '', '1/4/2011', ' w/Extra Gauge ', NULL, 16221, 'Range: 3K to 350K (SO', NULL), (16222, 796, '', '', '', '0000-00-00', 16222, '', NULL), (16223, 797, '', '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spri', '0000-00-00', 16223, '', NULL), (16224, 798, '', '', '', '0000-00-00', 16224, '', NULL), (16225, 799, '', '', '', '0000-00-00', 16225, '', NULL), (16226, 800, '', '', '', '0000-00-00', 16226, '', NULL), (16227, 801, '', '', '', '0000-00-00', 16227, '', NULL), (16228, 802, '', '', '', '0000-00-00', 16228, '', NULL), (16229, 803, '', '', '', '0000-00-00', 16229, '', NULL), (16230, 804, '', '', '', '0000-00-00', 16230, '', NULL), (16231, 805, '', '', '', '0000-00-00', 16231, '', NULL), (16232, 806, '', '', '', '0000-00-00', 16232, '', NULL), (16233, 807, '', '', '', '0000-00-00', 16233, '', NULL), (16234, 808, '', '', '', '0000-00-00', 16234, '', NULL), (16235, 809, '', '', '', '0000-00-00', 16235, '', NULL), (16236, 810, '', '', '', '0000-00-00', 16236, '', NULL), (16237, 811, '', '', 'FORWARD THEM TO THE CONTROLLER FOR PAYMENT***', '0000-00-00', 16237, '', NULL), (16238, 812, '', '', '', '0000-00-00', 16238, '', NULL), (16239, 813, '', '', '', '0000-00-00', 16239, '', NULL), (16240, 814, '$237.00 ', '7/23/2013', ' w/ Displacement (ID# MVMTC 2) ', NULL, 16240, 'Range: 0.1 in/min / 0.5 i', NULL), (16241, 815, '$204.00 ', '7/31/2006', 'ATS Model 1101 UTM S/N 91-1256 w/ Interface Model ', NULL, 16241, 'Range: 2K', NULL), (16242, 816, '', '', '', '0000-00-00', 16242, '', NULL), (16243, 817, '', '', '', '0000-00-00', 16243, '', NULL), (16244, 818, '', '', ' Certs to Billi', '0000-00-00', 16244, '', NULL), (16245, 819, '', '', '', '0000-00-00', 16245, '', NULL), (16246, 820, '', '', '', '0000-00-00', 16246, '', NULL), (16247, 821, '', '', '', '0000-00-00', 16247, '', NULL), (16248, 822, '', '', '', '0000-00-00', 16248, '', NULL), (16249, 823, '', '', '', '0000-00-00', 16249, '', NULL), (16250, 824, '', '', '', '0000-00-00', 16250, '', NULL), (16251, 825, '', '', '', '0000-00-00', 16251, '', NULL), (16252, 826, '$175.00 ', '8/27/2013', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', NULL, 16252, 'Range: 5 Ton', NULL), (16253, 827, '', '', '', '0000-00-00', 16253, '', NULL), (16254, 828, '', '', '', '0000-00-00', 16254, '', NULL), (16255, 829, '$175.00 ', '4/19/2013', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1%', NULL, 16255, 'Range : 5 Ton', NULL), (16256, 830, '', '', '', '0000-00-00', 16256, '', NULL), (16257, 831, '$144.00 ', '1/13/2010', 'Wika Pressure Gauge ', NULL, 16257, 'Range: 5K (Tension Only', NULL), (16258, 832, '', '', '', '0000-00-00', 16258, '', NULL), (16259, 833, '', '', '**WHEN DOING HYRDO-D TAKE 100 KIP CELLS***', '0000-00-00', 16259, '', NULL), (16260, 834, '', '', '', '0000-00-00', 16260, '', NULL), (16261, 835, '', '', ' ', '0000-00-00', 16261, ' ', NULL), (16262, 836, '', '', ' ', '0000-00-00', 16262, '', NULL), (16263, 837, '', '', '', '0000-00-00', 16263, '', NULL), (16264, 838, '', '', '', '0000-00-00', 16264, '', NULL), (16265, 839, '', '', '', '0000-00-00', 16265, '', NULL), (16266, 840, '', '', '', '0000-00-00', 16266, '', NULL), (16267, 841, '', '', ' DO NOT SCHEDULE FOR TUESDAYS', '0000-00-00', 16267, '', NULL), (16268, 842, '$144.00 ', '8/28/2013', 'McDaniel Pressure Gauge ', NULL, 16268, 'Range: 10K ', NULL), (16269, 843, '', '', '', '0000-00-00', 16269, '', NULL), (16270, 844, '', '', '', '0000-00-00', 16270, '', NULL), (16271, 845, '', '', '', '0000-00-00', 16271, '', NULL), (16272, 846, '', '', '', '0000-00-00', 16272, '', NULL), (16273, 847, '', '', '', '0000-00-00', 16273, '', NULL), (16274, 848, '', '', '', '0000-00-00', 16274, '', NULL), (16275, 849, '', '', '', '0000-00-00', 16275, '', NULL), (16276, 850, '', '', '', '0000-00-00', 16276, '', NULL), (16277, 851, '', '', '', '0000-00-00', 16277, '', NULL), (16278, 852, '', '', '', '0000-00-00', 16278, '', NULL), (16279, 853, '', '', '', '0000-00-00', 16279, '', NULL), (16280, 854, '', '', ' ', '0000-00-00', 16280, ' ', NULL), (16281, 855, '', '', 'Powerteam Mdl. B RH-606 Hydraulic Ram (E-4 & ', '0000-00-00', 16281, '', NULL), (16282, 856, '', '', '', '0000-00-00', 16282, '', NULL), (16283, 857, '', '', '', '0000-00-00', 16283, '', NULL), (16284, 858, '', '', '', '0000-00-00', 16284, '', NULL), (16285, 859, '', '', ' *Page 2 of Custo', '0000-00-00', 16285, '', NULL), (16286, 860, '', '', '', '0000-00-00', 16286, '', NULL), (16287, 861, '', '', '', '0000-00-00', 16287, '', NULL), (16288, 862, '', '', '', '0000-00-00', 16288, '', NULL), (16289, 863, '', '', '', '0000-00-00', 16289, '', NULL), (16290, 864, '', '', '', '0000-00-00', 16290, '', NULL), (16291, 865, '', '', '', '0000-00-00', 16291, '', NULL), (16292, 866, '', '', '', '0000-00-00', 16292, '', NULL), (16293, 867, '', '', '', '0000-00-00', 16293, '', NULL), (16294, 868, '', '', '', '0000-00-00', 16294, '', NULL), (16295, 869, '', '', '', '0000-00-00', 16295, '', NULL), (16296, 870, '', '', '', '0000-00-00', 16296, '', NULL), (16297, 871, '', '', '***Get check for all 3 places Cadillac, Alpena & E', '0000-00-00', 16297, '', NULL), (16298, 872, '', '', '', '0000-00-00', 16298, '', NULL), (16299, 873, '$144.00 ', '10/2/2013', 'BK Pore Pressure System ', NULL, 16299, 'Range: 150 psi', NULL), (16300, 874, '', '', 'Send Certs to Job Site.', '0000-00-00', 16300, '', NULL), (16301, 875, '', '', '', '0000-00-00', 16301, '', NULL), (16302, 876, '', '', '', '0000-00-00', 16302, '', NULL), (16303, 877, '', '', '', '0000-00-00', 16303, '', NULL), (16304, 878, '', '', '', '0000-00-00', 16304, '', NULL), (16305, 879, '', '', '', '0000-00-00', 16305, '', NULL), (16306, 880, '', '', '', '0000-00-00', 16306, '', NULL), (16307, 881, '', '', '', '0000-00-00', 16307, '', NULL), (16308, 882, '', '', '', '0000-00-00', 16308, '', NULL), (16309, 883, '', '', '', '0000-00-00', 16309, '', NULL), (16310, 884, '', '', '', '0000-00-00', 16310, '', NULL), (16311, 885, '', '', '', '0000-00-00', 16311, '', NULL), (16312, 886, '', '', '', '0000-00-00', 16312, '', NULL), (16313, 887, '', '', '', '0000-00-00', 16313, '', NULL), (16314, 888, '', '', '', '0000-00-00', 16314, '', NULL), (16315, 889, '', '', ' \"*** SCHEDULE 3rd week of Jul', '0000-00-00', 16315, '', NULL), (16316, 890, '', '', ' *** Schedule ', '0000-00-00', 16316, '', NULL), (16317, 891, '', 'New', '', NULL, 16317, 'Range: 1 Ton ', NULL), (16318, 892, '$125.00 ', '10/25/2012', 'Hilti Pull Tester Model 59604 (E-4)', NULL, 16318, 'Range 3,000 lbs', NULL), (16319, 893, '', '', '', '0000-00-00', 16319, '', NULL), (16320, 894, '', '', '', NULL, 16320, 'pounds force lettering is', NULL), (16321, 895, '', '', '', '0000-00-00', 16321, '', NULL), (16322, 896, '$409.00 ', '2/25/2008', 'Forney FT-250F-02 Compression Machine ', NULL, 16322, 'Range: 30K / 250K ', NULL), (16323, 897, '', '', '', '0000-00-00', 16323, '', NULL), (16324, 898, '', '', 'have a PO#, ship to address & First & Last name of', '0000-00-00', 16324, '', NULL), (16325, 899, '', '', '', '0000-00-00', 16325, '', NULL), (16326, 900, '', '', '', '0000-00-00', 16326, '', NULL), (16327, 901, '', '', '', '0000-00-00', 16327, '', NULL), (16328, 902, '', '', '', '0000-00-00', 16328, '', NULL), (16329, 903, '', '', '', '0000-00-00', 16329, '', NULL), (16330, 904, '', '', '***Must have Calibration Factors & Offsets on Cert', '0000-00-00', 16330, '', NULL), (16331, 905, '$144.00 ', '10/6/2010', 'Tinius Olsen Series 1000 Tension & Compression Mac', NULL, 16331, 'Range: 1 inch (E-2309)', NULL), (16332, 906, '', '', '', '0000-00-00', 16332, '', NULL), (16333, 907, '$79.00 ', '9/17/2013', ' w/ Gauge ', NULL, 16333, 'Range: 60 Ton (9,050 P', NULL), (16334, 908, '', '', '', '0000-00-00', 16334, '', NULL), (16335, 909, '$250.00 ', '7/9/2012', '', NULL, 16335, 'Range: 80 Ton', NULL), (16336, 910, '', '', ' ***Send Certs to Job Site', '0000-00-00', 16336, '', NULL), (16337, 911, '', '', '', '0000-00-00', 16337, '', NULL), (16338, 912, '', '', '', '0000-00-00', 16338, '', NULL), (16339, 913, '', '', '', '0000-00-00', 16339, '', NULL), (16340, 914, '', '', '', '0000-00-00', 16340, '', NULL), (16341, 915, '', '', '', '0000-00-00', 16341, '', NULL), (16342, 916, '', '', '', '0000-00-00', 16342, '', NULL), (16343, 917, '', '', '', '0000-00-00', 16343, '', NULL), (16344, 918, '', '', '', '0000-00-00', 16344, '', NULL), (16345, 919, '$144.00 ', '12/19/2012', 'ELE Single Proving Ring (OOS) ', NULL, 16345, 'Range: 1.5K ', NULL), (16346, 920, '', '', ' ***Can only do Edit on Extensome', '0000-00-00', 16346, '', NULL), (16347, 921, '$144.00 ', '12/17/2012', 'ELE Dial Indicator ', NULL, 16347, 'Range: 150 PSI ', NULL), (16348, 922, '$104.00 ', '12/17/2012', 'Durham Geo Pressure Transducer w/ E-405 Digital ', NULL, 16348, 'Range: 1/4 TSF to 16 TSF', NULL), (16349, 923, '$144.00 ', '12/17/2012', '', NULL, 16349, 'Range: 300 PSI ', NULL), (16350, 924, '', '', '', '0000-00-00', 16350, '', NULL), (16351, 925, '', '', '', '0000-00-00', 16351, '', NULL), (16352, 926, '', '', '', '0000-00-00', 16352, '', NULL), (16353, 927, '', '', 'Send Certs Attn: Brain Corley PO Box 968 Clarksbur', '0000-00-00', 16353, '', NULL), (16354, 928, '', '', '', '0000-00-00', 16354, '', NULL), (16355, 929, '', '', '', '0000-00-00', 16355, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (16356, 930, '$144.00 ', '1/9/2013', ' w/ LVDT (D-6027)', NULL, 16356, 'Range: 2K', NULL), (16357, 931, '$104.00 ', '1/7/2013', 'LVDT (ID#G1440) (D-6027)', NULL, 16357, 'Range: 200 PSI', NULL), (16358, 932, '', '', ' ', '0000-00-00', 16358, ' ', NULL), (16359, 933, '', '', 'Geojac Consolidometer (E-4) ', '0000-00-00', 16359, '', NULL), (16360, 934, '', '', 'Forney F-30 EX-F-DR500 Digital Compression Machine', '0000-00-00', 16360, '', NULL), (16361, 935, '$144.00 ', '1/23/2013', 'CDI BG-1720 Dial Indicator ', NULL, 16361, 'Range: 200 lbs to 9K ', NULL), (16362, 936, '$104.00 ', '1/24/2013', '', NULL, 16362, 'Range: 1\"', NULL), (16363, 937, '', '', '', '0000-00-00', 16363, '', NULL), (16364, 938, '', '', '', '0000-00-00', 16364, '', NULL), (16365, 939, '', '', '', '0000-00-00', 16365, '', NULL), (16366, 940, '', '', '', '0000-00-00', 16366, '', NULL), (16367, 941, '', '', '', '0000-00-00', 16367, '', NULL), (16368, 942, '', '', '', '0000-00-00', 16368, '', NULL), (16369, 943, '', '', '', '0000-00-00', 16369, '', NULL), (16370, 944, '', '', '', '0000-00-00', 16370, '', NULL), (16371, 945, '', '', '', '0000-00-00', 16371, '', NULL), (16372, 946, '', '', ' ', '0000-00-00', 16372, '', NULL), (16373, 947, '', '', '', '0000-00-00', 16373, '', NULL), (16374, 948, '', '', '', '0000-00-00', 16374, '', NULL), (16375, 949, '', '', '', '0000-00-00', 16375, '', NULL), (16376, 950, '', '', '', '0000-00-00', 16376, '', NULL), (16377, 951, '$104.00 ', '2/26/2013', 'Soiltest Unconfined Single Proving Ring (E-', NULL, 16377, 'Range: 2 inch', NULL), (16378, 952, '', '', '', '0000-00-00', 16378, '', NULL), (16379, 953, '$144.00 ', '2/26/2013', 'LS Starrett Dial Indicator ', NULL, 16379, 'Range: 150 PSI', NULL), (16380, 954, '', '', ' ***ISO Requested***', '0000-00-00', 16380, '', NULL), (16381, 955, '', '', 'S/N 7125 Schedule every 6 months', '0000-00-00', 16381, '', NULL), (16382, 956, '', '', '', '0000-00-00', 16382, '', NULL), (16383, 957, '', '', '', '0000-00-00', 16383, '', NULL), (16384, 958, '', '', '', '0000-00-00', 16384, '', NULL), (16385, 959, '', '', '', '0000-00-00', 16385, '', NULL), (16386, 960, '', '', '', '0000-00-00', 16386, '', NULL), (16387, 961, '', '', '', '0000-00-00', 16387, '', NULL), (16388, 962, '', '', '', '0000-00-00', 16388, '', NULL), (16389, 963, '$144.00 ', '7/30/2013', 'Ashcroft Pressure Transducer ', NULL, 16389, 'Range: 200 psi', NULL), (16390, 964, '', '', '', '0000-00-00', 16390, '', NULL), (16391, 965, '', '', '', '0000-00-00', 16391, '', NULL), (16392, 966, '', '', '', '0000-00-00', 16392, '', NULL), (16393, 967, '$134.00 ', '10/19/2011', 'Hilti Pull Tester Model 59604/04/09 (West Florid', NULL, 16393, 'Range: 300 lbs to 3,000 ', NULL), (16394, 968, '', '', '', '0000-00-00', 16394, '', NULL), (16395, 969, '', '', '', '0000-00-00', 16395, '', NULL), (16396, 970, '', '', '', '0000-00-00', 16396, '', NULL), (16397, 971, '$104.00 ', '2/14/2012', 'Soiltest Dial Indicator (mov', NULL, 16397, 'Range: 1 inch', NULL), (16398, 972, '', '', '', '0000-00-00', 16398, '', NULL), (16399, 973, '', '', '', '0000-00-00', 16399, '', NULL), (16400, 974, '', '', '', '0000-00-00', 16400, '', NULL), (16401, 975, '', '', '', '0000-00-00', 16401, '', NULL), (16402, 976, '', '', '', '0000-00-00', 16402, '', NULL), (16403, 977, '', '', '', '0000-00-00', 16403, '', NULL), (16404, 978, '', '', '', '0000-00-00', 16404, '', NULL), (16405, 979, '', '', '', '0000-00-00', 16405, '', NULL), (16406, 980, '', '', '', '0000-00-00', 16406, '', NULL), (16407, 981, '', '', '', '0000-00-00', 16407, '', NULL), (16408, 982, '', '', '', '0000-00-00', 16408, '', NULL), (16409, 983, '', '', '', '0000-00-00', 16409, '', NULL), (16410, 984, '', '', '', '0000-00-00', 16410, '', NULL), (16411, 985, '', '', '', '0000-00-00', 16411, '', NULL), (16412, 986, '', '', '', '0000-00-00', 16412, '', NULL), (16413, 987, '', '', '', '0000-00-00', 16413, '', NULL), (16414, 988, '', '', '**** MAIL CERTS FOR THIS JOBSITE TO 1954 GREENSPRI', '0000-00-00', 16414, '', NULL), (16415, 989, '', '', '', '0000-00-00', 16415, '', NULL), (16416, 990, '', '', '', '0000-00-00', 16416, '', NULL), (16417, 991, '', '', '', '0000-00-00', 16417, '', NULL), (16418, 992, '$144.00 ', '3/13/2013', 'Micro Measurements Mdl H510 Linear Diplacement Sen', NULL, 16418, 'Range 100 mm ID # LabD41', NULL), (16419, 993, '$144.00 ', '3/14/2013', '', NULL, 16419, 'Range: 1 inches ', NULL), (16420, 994, '', '', '', '0000-00-00', 16420, '', NULL), (16421, 995, '', '', '', '0000-00-00', 16421, '', NULL), (16422, 996, '$144.00 ', '3/13/2013', 'Pine Instrument Mdl. AF850T Asphalt Press ', NULL, 16422, 'Range: 800 mm Hg', NULL), (16423, 997, '$144.00 ', '3/12/2013', '', NULL, 16423, 'Range: 800 mmHg', NULL), (16424, 998, '', '', ' ', '0000-00-00', 16424, ' ', NULL), (16425, 999, '', '', '', '0000-00-00', 16425, '', NULL), (16426, 1000, '', '', '', '0000-00-00', 16426, '', NULL), (16427, 1001, '', '', '', '0000-00-00', 16427, '', NULL), (16428, 1002, '', '', '', '0000-00-00', 16428, '', NULL), (16429, 1003, '', '', 'All Invoices must have an ECS project number of th', '0000-00-00', 16429, '', NULL), (16430, 1004, '$144.00 ', '4/30/2008', 'Brainard Kilman CBR Tester Mdl. S-610 w/Speed Cont', NULL, 16430, 'Range: 0.6 inches ', NULL), (16431, 1005, '', '', '', '0000-00-00', 16431, '', NULL), (16432, 1006, '', '', '', '0000-00-00', 16432, '', NULL), (16433, 1007, '', '', '', '0000-00-00', 16433, '', NULL), (16434, 1008, '', '', '****Needs Calibrated every six months per Chrysler', '0000-00-00', 16434, '', NULL), (16435, 1009, '', '', '', '0000-00-00', 16435, '', NULL), (16436, 1010, '', '', 'Testmark CM-2500-DIR Digital Compression Machine ', '0000-00-00', 16436, '', NULL), (16437, 1011, '$204.00 ', '3/21/2011', 'Simplex Stressing - Portable ', NULL, 16437, 'Range: 4K / 50K ', NULL), (16438, 1012, '$204.00 ', '7/10/2013', 'Simplex Ram RC123 Ram (E-4 & PCI ManSpecs)', NULL, 16438, 'Range: 12 Ton (10,000 psi', NULL), (16439, 1013, '', '', 'E-Mail Certs and Invoice to paul.pridemore@basf.co', '0000-00-00', 16439, '', NULL), (16440, 1014, 'included', '7/15/2013', ' w/ Extra Gauge- Final Jack #6 ', NULL, 16440, 'Range: 4K ', NULL), (16441, 1015, '$144.00 ', '1/15/2013', 'HCS Hydrallic Loadcell', NULL, 16441, 'Range 50K', NULL), (16442, 1016, '', '', 'Controls Digital Compression Machine w/Gauge Buste', '0000-00-00', 16442, '', NULL), (16443, 1017, '', '', ' ***ISO Requested*', '0000-00-00', 16443, '', NULL), (16444, 1018, '', '', 'S/N 386191-1027 on 6 month schedule- Government Jo', '0000-00-00', 16444, '', NULL), (16445, 1019, '', '', '**Equipment on 6 month schedule February / August*', '0000-00-00', 16445, '', NULL), (16446, 1020, '', '', '', '0000-00-00', 16446, '', NULL), (16447, 1021, '', '', '', '0000-00-00', 16447, '', NULL), (16448, 1022, '', '', 'Send Certs to:', '0000-00-00', 16448, '', NULL), (16449, 1023, '$409.00 ', '8/28/2012', ' w/Load Cell (Attached to Mach', NULL, 16449, 'Range: 250 lbs to 25K (T', NULL), (16450, 1024, '', '', '', '0000-00-00', 16450, '', NULL), (16451, 1025, '', '', 'Copy of invoice needs mailed Attn: Fred Hommel to ', '0000-00-00', 16451, '', NULL), (16452, 1026, '$204.00 ', '10/2/2007', 'Stress Con Prestress Jack (MOSVED) ', NULL, 16452, 'Range: 5K / 50K', NULL), (16453, 1027, '', '', 'Get a PO# w/ a Specific Billing Address', '0000-00-00', 16453, '', NULL), (16454, 1028, '', '', '', '0000-00-00', 16454, '', NULL), (16455, 1029, '', '', '', '0000-00-00', 16455, '', NULL), (16456, 1030, '$204.00 ', '1/3/2013', 'Stressing Jack Hercules HSJ', NULL, 16456, 'Range: Pre. 5,000 lbs / F', NULL), (16457, 1031, '', '', '', '0000-00-00', 16457, '', NULL), (16458, 1032, '', '', '', '0000-00-00', 16458, '', NULL), (16459, 1033, '', '', '', '0000-00-00', 16459, '', NULL), (16460, 1034, '', '', '', '0000-00-00', 16460, '', NULL), (16461, 1035, '', '', '', '0000-00-00', 16461, '', NULL), (16462, 1036, '$144.00 ', '4/3/2013', ' w/ Humboldt E-312 LVDT Data Logger Ch.#2 ', NULL, 16462, 'Range: 2,000 lbs ', NULL), (16463, 1037, '$144.00 ', '4/4/2012', 'Brainard Kilman Triaxial LVDT ', NULL, 16463, 'Range: 500 lbs ADU Ch', NULL), (16464, 1038, '$144.00 ', '4/4/2012', 'Automatic Volume Change Transducer ', NULL, 16464, 'Range: 150 PSI ADU Chan', NULL), (16465, 1039, '$204.00 ', '4/1/2013', 'Brainard-Kilman Mdl. E-310 LVDT ', NULL, 16465, 'Cap: 1200 lbs (16 TSF) (', NULL), (16466, 1040, '', '', '', '0000-00-00', 16466, '', NULL), (16467, 1041, '', '', '', '0000-00-00', 16467, ' ', NULL), (16468, 1042, '$144.00 ', '4/2/2013', 'Brainard Kilman Model S-610 CBR Speed Control (M', NULL, 16468, 'Range: 0.7 Inch', NULL), (16469, 1043, 'Inc.', '4/4/2012', 'Brainard Kilman CBR E-400 LVDT ', '0000-00-00', 16469, '', NULL), (16470, 1044, 'Inc. ', '4/2/2013', 'Brainard Kilman BK-5000-2 Pressure Transducer ', NULL, 16470, 'Range: 0.125 in/in 8\"GL ', NULL), (16471, 1045, '', '', '', '0000-00-00', 16471, '', NULL), (16472, 1046, '', '', '', '0000-00-00', 16472, '', NULL), (16473, 1047, '', '', '', '0000-00-00', 16473, '', NULL), (16474, 1048, '$409.00 ', '4/10/2012', 'Total Comp S-Type Load Cell (Do n', NULL, 16474, 'Range: 5000 lbs to 250000', NULL), (16475, 1049, '', '', '', '0000-00-00', 16475, '', NULL), (16476, 1050, '', '', '', '0000-00-00', 16476, '', NULL), (16477, 1051, '', '', '', '0000-00-00', 16477, '', NULL), (16478, 1052, '', '', '', '0000-00-00', 16478, '', NULL), (16479, 1053, '', '', '', '0000-00-00', 16479, '', NULL), (16480, 1054, '$144.00 ', '5/2/2013', 'HMA Lab Supply Mdl. 9210 Digital Manometer (D', NULL, 16480, 'Range: 50K ', NULL), (16481, 1055, '', '', '', '0000-00-00', 16481, '', NULL), (16482, 1056, '', '', '', '0000-00-00', 16482, '', NULL), (16483, 1057, '', '', '', '0000-00-00', 16483, '', NULL), (16484, 1058, '', '', '', '0000-00-00', 16484, '', NULL), (16485, 1059, '', '', '', '0000-00-00', 16485, '', NULL), (16486, 1060, '$144.00 ', '4/27/2013', '', NULL, 16486, 'Range: 600 psi', NULL), (16487, 1061, '', '', '***ISO REQUESTED*** ***ISO 9000***', '0000-00-00', 16487, '', NULL), (16488, 1062, '', '', '', '0000-00-00', 16488, '', NULL), (16489, 1063, '', '', '', '0000-00-00', 16489, '', NULL), (16490, 1064, '', '', '', '0000-00-00', 16490, '', NULL), (16491, 1065, '', '', '', '0000-00-00', 16491, '', NULL), (16492, 1066, '', '', '', '0000-00-00', 16492, '', NULL), (16493, 1067, '', '', '', '0000-00-00', 16493, '', NULL), (16494, 1068, '', '', '', '0000-00-00', 16494, '', NULL), (16495, 1069, '', '', '', '0000-00-00', 16495, '', NULL), (16496, 1070, '', '', '', '0000-00-00', 16496, '', NULL), (16497, 1071, '', '', '', '0000-00-00', 16497, '', NULL), (16498, 1072, '', '', '', '0000-00-00', 16498, '', NULL), (16499, 1073, '', '', '', '0000-00-00', 16499, '', NULL), (16500, 1074, '', '', '', '0000-00-00', 16500, '', NULL), (16501, 1075, '', '', '', '0000-00-00', 16501, '', NULL), (16502, 1076, '$300.00 ', '4/29/1998', 'Chatillon Force Gauge Digital DFI 500 T&C ', NULL, 16502, 'Range: 100 lb.', NULL), (16503, 1077, '$300.00 ', '4/29/1998', 'Chatillon Force Gauge DFGRS-50 Digital T & C ', NULL, 16503, 'Range: 5 to 50 lb.', NULL), (16504, 1078, '', '', '', '0000-00-00', 16504, '', NULL), (16505, 1079, '', '', '', '0000-00-00', 16505, '', NULL), (16506, 1080, '', '', '', '0000-00-00', 16506, '', NULL), (16507, 1081, '', '', '', '0000-00-00', 16507, '', NULL), (16508, 1082, '', '', '', '0000-00-00', 16508, '', NULL), (16509, 1083, '', '', '', '0000-00-00', 16509, '', NULL), (16510, 1084, '', '', '', '0000-00-00', 16510, '', NULL), (16511, 1085, '', '', '', '0000-00-00', 16511, '', NULL), (16512, 1086, '', '', '', '0000-00-00', 16512, '', NULL), (16513, 1087, '', '', '', '0000-00-00', 16513, '', NULL), (16514, 1088, '', '', '', '0000-00-00', 16514, '', NULL), (16515, 1089, '', '', '', '0000-00-00', 16515, '', NULL), (16516, 1090, '', '', '', '0000-00-00', 16516, '', NULL), (16517, 1091, '', '', '', '0000-00-00', 16517, '', NULL), (16518, 1092, '', '', '', '0000-00-00', 16518, '', NULL), (16519, 1093, '', '', '', '0000-00-00', 16519, '', NULL), (16520, 1094, '', '', '', '0000-00-00', 16520, '', NULL), (16521, 1095, '', '', '', '0000-00-00', 16521, '', NULL), (16522, 1096, '', '', '', '0000-00-00', 16522, '', NULL), (16523, 1097, '', '', '', '0000-00-00', 16523, '', NULL), (16524, 1098, '', '', '', '0000-00-00', 16524, '', NULL), (16525, 1099, '', '', '', '0000-00-00', 16525, '', NULL), (16526, 1100, '', '', '', '0000-00-00', 16526, '', NULL), (16527, 1101, '', '', '', '0000-00-00', 16527, '', NULL), (16528, 1102, '', '', '', '0000-00-00', 16528, '', NULL), (16529, 1103, '', '', '', '0000-00-00', 16529, '', NULL), (16530, 1104, '', '', '', '0000-00-00', 16530, '', NULL), (16531, 1105, '', '', '', '0000-00-00', 16531, '', NULL), (16532, 1106, '', '', '', '0000-00-00', 16532, '', NULL), (16533, 1107, '', '', '', '0000-00-00', 16533, '', NULL), (16534, 1108, '', '', '', '0000-00-00', 16534, '', NULL), (16535, 1109, '', '', '', '0000-00-00', 16535, '', NULL), (16536, 1110, '', '', '', '0000-00-00', 16536, '', NULL), (16537, 1111, '', '', '', '0000-00-00', 16537, '', NULL), (16538, 1112, '', '', '', '0000-00-00', 16538, '', NULL), (16539, 1113, '', '', '', '0000-00-00', 16539, '', NULL), (16540, 1114, '', '', '', '0000-00-00', 16540, '', NULL), (16541, 1115, '', '', '', '0000-00-00', 16541, '', NULL), (16542, 1116, '', '', '', '0000-00-00', 16542, '', NULL), (16543, 1117, '', '', 'Artech CBR Load Cell (Channel #25) (OOS) ', '0000-00-00', 16543, '', NULL), (16544, 1118, '', '', '', '0000-00-00', 16544, '', NULL), (16545, 1119, '', '', '', '0000-00-00', 16545, '', NULL), (16546, 1120, '', '', '', '0000-00-00', 16546, '', NULL), (16547, 1121, '', '', '', '0000-00-00', 16547, '', NULL), (16548, 1122, '', '', '', '0000-00-00', 16548, '', NULL), (16549, 1123, '', '', '', '0000-00-00', 16549, '', NULL), (16550, 1124, '', 'New', 'Durham Geo 1 Channel Pressure Transducer', NULL, 16550, 'Range: ', NULL), (16551, 1125, '', '', '', '0000-00-00', 16551, '', NULL), (16552, 1126, '', '4/3/2006', '', NULL, 16552, 'Range:', NULL), (16553, 1127, '', '', '', '0000-00-00', 16553, '', NULL), (16554, 1128, '', '', '', '0000-00-00', 16554, '', NULL), (16555, 1129, '', '', '', '0000-00-00', 16555, '', NULL), (16556, 1130, '', '', '', '0000-00-00', 16556, '', NULL), (16557, 1131, '', '', '', '0000-00-00', 16557, '', NULL), (16558, 1132, '', '', '', '0000-00-00', 16558, '', NULL), (16559, 1133, '', '', '', '0000-00-00', 16559, '', NULL), (16560, 1134, '', '', '', '0000-00-00', 16560, '', NULL), (16561, 1135, '', '', '', '0000-00-00', 16561, '', NULL), (16562, 1136, '', '', '', '0000-00-00', 16562, '', NULL), (16563, 1137, '', '', '', '0000-00-00', 16563, '', NULL), (16564, 1138, '', '', '', '0000-00-00', 16564, '', NULL), (16565, 1139, '', '', '', '0000-00-00', 16565, '', NULL), (16566, 1140, '', '', 'Wegener Utilitest Model 500 Tensiometer (MOVED)', '0000-00-00', 16566, '', NULL), (16567, 1141, '', '', '', '0000-00-00', 16567, '', NULL), (16568, 1142, '$144.00 ', '8/6/2013', 'Karol Warner Unconfined Single Proving Ring (E-4', NULL, 16568, 'Range: 15 PSI to 150 PSI', NULL), (16569, 1143, '', '', '', '0000-00-00', 16569, '', NULL), (16570, 1144, '', '', '', '0000-00-00', 16570, '', NULL), (16571, 1145, '', '', '', '0000-00-00', 16571, '', NULL), (16572, 1146, '', '', '', '0000-00-00', 16572, '', NULL), (16573, 1147, 'above price ', '8/6/2013', 'Karol Warner Conbel Model 356-CS-100-5/Consolidome', NULL, 16573, 'Range: 15 lbs to 1,500 l', NULL), (16574, 1148, '', '', '', '0000-00-00', 16574, '', NULL), (16575, 1149, '', '', '', '0000-00-00', 16575, '', NULL), (16576, 1150, '', '', '***ISO Requested***', '0000-00-00', 16576, '', NULL), (16577, 1151, '', '', '', '0000-00-00', 16577, '', NULL), (16578, 1152, '', '', '', '0000-00-00', 16578, '', NULL), (16579, 1153, '', '', '', '0000-00-00', 16579, '', NULL), (16580, 1154, '', '', '', '0000-00-00', 16580, '', NULL), (16581, 1155, '', '', '', '0000-00-00', 16581, '', NULL), (16582, 1156, '', '', '', '0000-00-00', 16582, '', NULL), (16583, 1157, '', '', '', '0000-00-00', 16583, '', NULL), (16584, 1158, '$104.00 ', '8/21/2013', 'Soiltest Unconfined Single Proving Ring (E-4 &', NULL, 16584, 'Range: 2 inch', NULL), (16585, 1159, '', '', '', '0000-00-00', 16585, '', NULL), (16586, 1160, '', '', '', '0000-00-00', 16586, '', NULL), (16587, 1161, '', '', 'Soiltest Versa Tester-Model CT-745 (OOS) ', '0000-00-00', 16587, '', NULL), (16588, 1162, '', '', '', '0000-00-00', 16588, '', NULL), (16589, 1163, '', '', '', '0000-00-00', 16589, '', NULL), (16590, 1164, '', '', '', '0000-00-00', 16590, '', NULL), (16591, 1165, '', '', '', '0000-00-00', 16591, '', NULL), (16592, 1166, '', '', '', '0000-00-00', 16592, '', NULL), (16593, 1167, '', '', '', '0000-00-00', 16593, '', NULL), (16594, 1168, '', '', '', '0000-00-00', 16594, '', NULL), (16595, 1169, '', '', '', '0000-00-00', 16595, '', NULL), (16596, 1170, '', '', '', '0000-00-00', 16596, '', NULL), (16597, 1171, '', '', '', '0000-00-00', 16597, '', NULL), (16598, 1172, '', '', '', '0000-00-00', 16598, '', NULL), (16599, 1173, '', '', '', '0000-00-00', 16599, '', NULL), (16600, 1174, '', '', '', '0000-00-00', 16600, '', NULL), (16601, 1175, '', '', '', '0000-00-00', 16601, '', NULL), (16602, 1176, '', '', '', '0000-00-00', 16602, '', NULL), (16603, 1177, '', '', '', '0000-00-00', 16603, '', NULL), (16604, 1178, '', '', '', '0000-00-00', 16604, '', NULL), (16605, 1179, '', '', '', '0000-00-00', 16605, '', NULL), (16606, 1180, '', '', '', '0000-00-00', 16606, '', NULL), (16607, 1181, '', '', '', '0000-00-00', 16607, '', NULL), (16608, 1182, '', '', '', '0000-00-00', 16608, '', NULL), (16609, 1183, '', '', '', '0000-00-00', 16609, '', NULL), (16610, 1184, '', '', '', '0000-00-00', 16610, '', NULL), (16611, 1185, '', '', '', '0000-00-00', 16611, '', NULL), (16612, 1186, '', '', '', '0000-00-00', 16612, '', NULL), (16613, 1187, '', '', '', '0000-00-00', 16613, '', NULL), (16614, 1188, '', '', '', '0000-00-00', 16614, '', NULL), (16615, 1189, '', '', '', '0000-00-00', 16615, '', NULL), (16616, 1190, '', '', '', '0000-00-00', 16616, '', NULL), (16617, 1191, '$139.00 ', '8/26/2002', 'LSC Transducer Linear Strain Conversion Transducer', NULL, 16617, 'Cap: 150 psi ', NULL), (16618, 1192, '', '', '', '0000-00-00', 16618, '', NULL), (16619, 1193, '', '', '', '0000-00-00', 16619, '', NULL), (16620, 1194, '', '', '', '0000-00-00', 16620, '', NULL), (16621, 1195, '', '', '', '0000-00-00', 16621, '', NULL), (16622, 1196, '', '', '', '0000-00-00', 16622, '', NULL), (16623, 1197, '', '', '', '0000-00-00', 16623, '', NULL), (16624, 1198, '', '', '', '0000-00-00', 16624, '', NULL), (16625, 1199, '', '', '', '0000-00-00', 16625, '', NULL), (16626, 1200, '', '', '', '0000-00-00', 16626, '', NULL), (16627, 1201, '', '', '', '0000-00-00', 16627, '', NULL), (16628, 1202, '', '', '', '0000-00-00', 16628, '', NULL), (16629, 1203, '', '', '', '0000-00-00', 16629, '', NULL), (16630, 1204, '', '', '', '0000-00-00', 16630, '', NULL), (16631, 1205, '', '', '', '0000-00-00', 16631, '', NULL), (16632, 1206, '', '', '', '0000-00-00', 16632, '', NULL), (16633, 1207, '', '', '', '0000-00-00', 16633, '', NULL), (16634, 1208, '$144.00 ', '8/29/2006', 'Humboldt Digital Dial Indicator (OOS) ', NULL, 16634, 'Cap: 250 lbs', NULL), (16635, 1209, '', '', '', '0000-00-00', 16635, '', NULL), (16636, 1210, '', '', '', '0000-00-00', 16636, '', NULL), (16637, 1211, '', '', '', '0000-00-00', 16637, '', NULL), (16638, 1212, '', '', 'Includes Air Fare, Calibration, Lodging, Parts, an', '0000-00-00', 16638, '', NULL), (16639, 1213, '', '', 'Includes Air Fare, Calibration, Lodging, Parts, an', '0000-00-00', 16639, '', NULL), (16640, 1214, '$144.00 ', '12/12/2012', 'Weksler W-DG42P Pressure Transducer ', NULL, 16640, 'Range: 150 PSI ', NULL), (16641, 1215, '', '', '', '0000-00-00', 16641, '', NULL), (16642, 1216, '', '', '', '0000-00-00', 16642, '', NULL), (16643, 1217, '', '', '', '0000-00-00', 16643, '', NULL), (16644, 1218, '', '', '', '0000-00-00', 16644, '', NULL), (16645, 1219, '', '', '', '0000-00-00', 16645, '', NULL), (16646, 1220, '', '', '', '0000-00-00', 16646, '', NULL), (16647, 1221, '', '', '', '0000-00-00', 16647, '', NULL), (16648, 1222, '', '', '', '0000-00-00', 16648, '', NULL), (16649, 1223, '', '', '', '0000-00-00', 16649, '', NULL), (16650, 1224, '', '', '', '0000-00-00', 16650, '', NULL), (16651, 1225, '', '', '', '0000-00-00', 16651, '', NULL), (16652, 1226, '', '', '', '0000-00-00', 16652, '', NULL), (16653, 1227, '', '', '', '0000-00-00', 16653, '', NULL), (16654, 1228, '', '', '', '0000-00-00', 16654, '', NULL), (16655, 1229, '', '', '', '0000-00-00', 16655, '', NULL), (16656, 1230, '', '', '', '0000-00-00', 16656, '', NULL), (16657, 1231, '', '', '', '0000-00-00', 16657, '', NULL), (16658, 1232, '', '', '', '0000-00-00', 16658, '', NULL), (16659, 1233, '', '', '', '0000-00-00', 16659, '', NULL), (16660, 1234, '', '', '', '0000-00-00', 16660, '', NULL), (16661, 1235, '', '', '', '0000-00-00', 16661, '', NULL), (16662, 1236, '', '', '', '0000-00-00', 16662, '', NULL), (16663, 1237, '', '', '', '0000-00-00', 16663, '', NULL), (16664, 1238, '', '', '', '0000-00-00', 16664, '', NULL), (16665, 1239, '', '', '', '0000-00-00', 16665, '', NULL), (16666, 1240, '', '', '', '0000-00-00', 16666, '', NULL), (16667, 1241, '', '', '', '0000-00-00', 16667, '', NULL), (16668, 1242, '', '', '', '0000-00-00', 16668, '', NULL), (16669, 1243, '', '', '', '0000-00-00', 16669, '', NULL), (16670, 1244, '', '', '', '0000-00-00', 16670, '', NULL), (16671, 1245, '', '', ' ***ISO Requested***', '0000-00-00', 16671, '', NULL), (16672, 1246, '', '', '', '0000-00-00', 16672, '', NULL), (16673, 1247, '', '', '', '0000-00-00', 16673, '', NULL), (16674, 1248, '', '', '', '0000-00-00', 16674, '', NULL), (16675, 1249, '', '', '', '0000-00-00', 16675, '', NULL), (16676, 1250, '', '', '', '0000-00-00', 16676, '', NULL), (16677, 1251, '', '', '', '0000-00-00', 16677, '', NULL), (16678, 1252, '', '', '', '0000-00-00', 16678, '', NULL), (16679, 1253, '', '', ' ', '0000-00-00', 16679, '', NULL), (16680, 1254, '', '', '', '0000-00-00', 16680, '', NULL), (16681, 1255, '', '', '', '0000-00-00', 16681, '', NULL), (16682, 1256, '', '', '', '0000-00-00', 16682, '', NULL), (16683, 1257, '', '', '', '0000-00-00', 16683, '', NULL), (16684, 1258, '', '', '', '0000-00-00', 16684, '', NULL), (16685, 1259, '', '', '', '0000-00-00', 16685, '', NULL), (16686, 1260, '', '', '', '0000-00-00', 16686, '', NULL), (16687, 1261, '', '', '', '0000-00-00', 16687, '', NULL), (16688, 1262, '', '', '', '0000-00-00', 16688, '', NULL), (16689, 1263, '', '', '*** ISO REQUESTED ***', '0000-00-00', 16689, '', NULL), (16690, 1264, '', '', '', '0000-00-00', 16690, '', NULL), (16691, 1265, '', '', '', '0000-00-00', 16691, '', NULL), (16692, 1266, '', '', '', '0000-00-00', 16692, '', NULL), (16693, 1267, '', '', '', '0000-00-00', 16693, '', NULL), (16694, 1268, '', '', '', '0000-00-00', 16694, '', NULL), (16695, 1269, '', '', '', '0000-00-00', 16695, '', NULL), (16696, 1270, '', '', '', '0000-00-00', 16696, '', NULL), (16697, 1271, '', '', '', '0000-00-00', 16697, '', NULL), (16698, 1272, '', '', '', '0000-00-00', 16698, '', NULL), (16699, 1273, '', '', 'MUST TAKE ALL PROVING RINGS TO 1 LOCATION TO GET', '0000-00-00', 16699, '', NULL), (16700, 1274, '', '', '', '0000-00-00', 16700, '', NULL), (16701, 1275, '', '', '', '0000-00-00', 16701, '', NULL), (16702, 1276, '$144.00 ', '2/6/2013', 'Humboldt H-4454 Proving Ring (E-4 & ManSpec)', NULL, 16702, 'Range: 60 PSI ', NULL), (16703, 1277, '', '', '', '0000-00-00', 16703, '', NULL), (16704, 1278, '$144.00 ', '2/5/2013', 'Durham Geo Pressure Transducer ', NULL, 16704, 'Range: 1/8 TSF to 22 TS', NULL), (16705, 1279, '$204.00 ', '2/7/2013', 'Powerteam PE554 Post Tension Jack ', NULL, 16705, 'Range: 4K (560 psi) / 35K', NULL), (16706, 1280, '', '', '', '0000-00-00', 16706, '', NULL), (16707, 1281, '', '', '', '0000-00-00', 16707, '', NULL), (16708, 1282, '', '', '', '0000-00-00', 16708, '', NULL), (16709, 1283, '', '', '', '0000-00-00', 16709, '', NULL), (16710, 1284, '', '', 'Rainhart Series 416 Beambreaker (MOVED', '0000-00-00', 16710, '', NULL), (16711, 1285, '', '', '', '0000-00-00', 16711, '', NULL), (16712, 1286, '', '', '', '0000-00-00', 16712, '', NULL), (16713, 1287, '', '', '', '0000-00-00', 16713, '', NULL), (16714, 1288, '$454.00 ', '', ' w/Humboldt H-4454 Single Proving Ring (', '0000-00-00', 16714, '', NULL), (16715, 1289, '$144.00 ', '2/8/2013', 'ELE Tri-Flex 2 Panel ', NULL, 16715, 'Range: 0.4 Inches', NULL), (16716, 1290, '', '', '', '0000-00-00', 16716, '', NULL), (16717, 1291, '', '', '', '0000-00-00', 16717, '', NULL), (16718, 1292, '', '', '', '0000-00-00', 16718, '', NULL), (16719, 1293, '', '', '', '0000-00-00', 16719, '', NULL), (16720, 1294, '$144.00 ', '2/12/2013', 'ELE 1155B0900 Single Proving Ring ', NULL, 16720, 'Range: 60 psi ', NULL), (16721, 1295, '', '', '', '0000-00-00', 16721, '', NULL), (16722, 1296, '', '', '', '0000-00-00', 16722, '', NULL), (16723, 1297, '', '', '', '0000-00-00', 16723, '', NULL), (16724, 1298, '', '', '', '0000-00-00', 16724, '', NULL), (16725, 1299, '', '', ' ** Send Certs to PO Box 957**', '0000-00-00', 16725, '', NULL), (16726, 1300, '', '', '', '0000-00-00', 16726, '', NULL), (16727, 1301, '', '', 'Send Certs to PO Box 1602, Elkins WV 26241', '0000-00-00', 16727, '', NULL), (16728, 1302, '', '', 'Send Certs to PO Box 1602, Elkins WV 26241', '0000-00-00', 16728, '', NULL), (16729, 1303, '', '', '', '0000-00-00', 16729, '', NULL), (16730, 1304, '', '', '', '0000-00-00', 16730, '', NULL), (16731, 1305, '', '', '', '0000-00-00', 16731, '', NULL), (16732, 1306, '', '', '', '0000-00-00', 16732, '', NULL), (16733, 1307, '', '', '', '0000-00-00', 16733, '', NULL), (16734, 1308, '', '', '', '0000-00-00', 16734, '', NULL), (16735, 1309, '', '', '', '0000-00-00', 16735, '', NULL), (16736, 1310, '', '', '', '0000-00-00', 16736, '', NULL), (16737, 1311, '', '', '', '0000-00-00', 16737, '', NULL), (16738, 1312, '', '', '', '0000-00-00', 16738, '', NULL), (16739, 1313, '', '', '', '0000-00-00', 16739, '', NULL), (16740, 1314, '', '', '', '0000-00-00', 16740, '', NULL), (16741, 1315, '$99.00 ', '2/16/2010', 'ELE 35-1475 Type N Hammer ', NULL, 16741, 'Range: 78 to 82', NULL), (16742, 1316, '', '', '', '0000-00-00', 16742, '', NULL), (16743, 1317, '', '', '', '0000-00-00', 16743, '', NULL), (16744, 1318, '', '', '', '0000-00-00', 16744, '', NULL), (16745, 1319, '', '', '', '0000-00-00', 16745, '', NULL), (16746, 1320, '', '', '', '0000-00-00', 16746, '', NULL), (16747, 1321, '', '', '', '0000-00-00', 16747, '', NULL), (16748, 1322, '', '', '', '0000-00-00', 16748, '', NULL), (16749, 1323, '', '', '', '0000-00-00', 16749, '', NULL), (16750, 1324, '', '', '', '0000-00-00', 16750, '', NULL), (16751, 1325, '$89.00 ', '3/30/2005', ' with TO Extensometer Model S-1000-2 ', NULL, 16751, '.5\" GL, Range 5%, ID#25-E', NULL), (16752, 1326, '', '', '', '0000-00-00', 16752, '', NULL), (16753, 1327, '', '', '', '0000-00-00', 16753, '', NULL), (16754, 1328, '', '', '', '0000-00-00', 16754, '', NULL), (16755, 1329, '', '', '', '0000-00-00', 16755, '', NULL), (16756, 1330, '', '', '', '0000-00-00', 16756, '', NULL), (16757, 1331, '', '', '', '0000-00-00', 16757, '', NULL), (16758, 1332, '', '', '', '0000-00-00', 16758, '', NULL), (16759, 1333, '', '', '', '0000-00-00', 16759, '', NULL), (16760, 1334, '', '', '', '0000-00-00', 16760, '', NULL), (16761, 1335, '', '', '', '0000-00-00', 16761, '', NULL), (16762, 1336, '', '', '', '0000-00-00', 16762, '', NULL), (16763, 1337, '', '', '', '0000-00-00', 16763, '', NULL), (16764, 1338, '', '', '', '0000-00-00', 16764, '', NULL), (16765, 1339, '', '', '', '0000-00-00', 16765, '', NULL), (16766, 1340, '', '', '', '0000-00-00', 16766, '', NULL), (16767, 1341, '', '', '', '0000-00-00', 16767, '', NULL), (16768, 1342, '', '', '', '0000-00-00', 16768, '', NULL), (16769, 1343, '', '', '', '0000-00-00', 16769, '', NULL), (16770, 1344, '', '', '', '0000-00-00', 16770, '', NULL), (16771, 1345, '', '', '', '0000-00-00', 16771, '', NULL), (16772, 1346, '', '', '', '0000-00-00', 16772, '', NULL), (16773, 1347, '', '', '', '0000-00-00', 16773, '', NULL), (16774, 1348, '', '', '', '0000-00-00', 16774, '', NULL), (16775, 1349, '', '', '', '0000-00-00', 16775, '', NULL), (16776, 1350, '', '', '', '0000-00-00', 16776, '', NULL), (16777, 1351, '', '', '', '0000-00-00', 16777, '', NULL), (16778, 1352, '', '', '', '0000-00-00', 16778, '', NULL), (16779, 1353, '', '', '', '0000-00-00', 16779, '', NULL), (16780, 1354, '', '', '', '0000-00-00', 16780, '', NULL), (16781, 1355, '', '', '', '0000-00-00', 16781, '', NULL), (16782, 1356, '', '', '', '0000-00-00', 16782, '', NULL), (16783, 1357, '', '', '', '0000-00-00', 16783, '', NULL), (16784, 1358, '', '', '', '0000-00-00', 16784, '', NULL), (16785, 1359, '', '', '', '0000-00-00', 16785, '', NULL), (16786, 1360, '', '', '', '0000-00-00', 16786, '', NULL), (16787, 1361, '', '', '', '0000-00-00', 16787, '', NULL), (16788, 1362, '', '', '', '0000-00-00', 16788, '', NULL), (16789, 1363, '', '', '', '0000-00-00', 16789, '', NULL), (16790, 1364, '', '', '', '0000-00-00', 16790, '', NULL), (16791, 1365, '', '', '', '0000-00-00', 16791, '', NULL), (16792, 1366, '$149.00 ', 'New', ' w/ Extensometer ', NULL, 16792, 'Range: ', NULL), (16793, 1367, '', '', '', '0000-00-00', 16793, '', NULL), (16794, 1368, '', '', '', '0000-00-00', 16794, '', NULL), (16795, 1369, '', '', '', '0000-00-00', 16795, '', NULL), (16796, 1370, '', '', '', '0000-00-00', 16796, '', NULL), (16797, 1371, '', '', '', '0000-00-00', 16797, '', NULL), (16798, 1372, '', '', '', '0000-00-00', 16798, '', NULL), (16799, 1373, '', '', '*** Paying with Credit Card ***', '0000-00-00', 16799, '', NULL), (16800, 1374, '', '', '', '0000-00-00', 16800, '', NULL), (16801, 1375, '', '', '', '0000-00-00', 16801, '', NULL), (16802, 1376, '', '', '', '0000-00-00', 16802, '', NULL), (16803, 1377, '$144.00 ', '2/23/2007', '', NULL, 16803, 'Range: 10K', NULL), (16804, 1378, '', '', '', '0000-00-00', 16804, '', NULL), (16805, 1379, '', '', '', '0000-00-00', 16805, '', NULL), (16806, 1380, '', '', '', '0000-00-00', 16806, '', NULL), (16807, 1381, '', '', '', '0000-00-00', 16807, '', NULL), (16808, 1382, '', '', '', '0000-00-00', 16808, '', NULL), (16809, 1383, '', '', '', '0000-00-00', 16809, '', NULL), (16810, 1384, '', '', '', '0000-00-00', 16810, '', NULL), (16811, 1385, '', '', '', '0000-00-00', 16811, '', NULL), (16812, 1386, '$175.00 ', '7/27/2005', 'Eilon Engineering RON 2125 S-0025 Load Cell (Ma', NULL, 16812, 'Cap: 50 Tons', NULL), (16813, 1387, '$175.00 ', '5/9/2005', 'Eilon Engineering RON 2501 S-50 Load Cell (', NULL, 16813, 'Range: 50K', NULL), (16814, 1388, '', '', '', '0000-00-00', 16814, '', NULL), (16815, 1389, '', '', '', '0000-00-00', 16815, '', NULL), (16816, 1390, '$149.00 ', '1/21/2009', 'Wykeham Farrance Mdl. 24251 Deflection Frame #3/Ch', NULL, 16816, 'Range: 1/4 TSF to 16 TSF', NULL), (16817, 1391, '', '', '', '0000-00-00', 16817, '', NULL), (16818, 1392, '$144.00 ', '1/15/2013', 'HCS Model LC-40 Hydraulic Load Cell ', NULL, 16818, 'Range: 50K w/ Gauge #52', NULL), (16819, 1393, '$144.00 ', '1/8/2013', 'Brainard-Kilman Model E-214 Load Cell w/ E-400 Dig', NULL, 16819, 'Range: 10K ', NULL), (16820, 1394, '', '', '', '0000-00-00', 16820, '', NULL), (16821, 1395, '', '', '', '0000-00-00', 16821, '', NULL), (16822, 1396, '', '', '', '0000-00-00', 16822, '', NULL), (16823, 1397, '', '', '*** ISO Requested***', '0000-00-00', 16823, '', NULL), (16824, 1398, '', '', '*** ISO Requested ***', '0000-00-00', 16824, '', NULL), (16825, 1399, '', '', '', '0000-00-00', 16825, '', NULL), (16826, 1400, '', '', '', '0000-00-00', 16826, '', NULL), (16827, 1401, '$144.00 ', '1/16/2013', 'HCS Hydraulic Load Cell ', NULL, 16827, 'Range: 40K Gauge #52', NULL), (16828, 1402, '', '', '', '0000-00-00', 16828, '', NULL), (16829, 1403, '$109.00 ', '1/21/2013', ' w/United EZ 2-2 Extensom', NULL, 16829, 'Range: 0.02 in/in (1\" G', NULL), (16830, 1404, '$85.00 ', '1/21/2013', 'Adam CBK70a Equipment Scale (ID# Q-3245) ', NULL, 16830, 'Range: 3,100 Grams', NULL), (16831, 1405, '$85.00 ', '1/22/2013', 'Adam ADK-20 Scale (ID# Q-2470) ', NULL, 16831, 'Range: 20 Gram to 2610 G', NULL), (16832, 1406, '', '', '', '0000-00-00', 16832, '', NULL), (16833, 1407, '', '', '', '0000-00-00', 16833, '', NULL), (16834, 1408, '$175.00 ', '10/2/2006', 'Eilon Engineering Ron 2501 S-50 Load Cell (', NULL, 16834, 'Range: 5,000 Kg to 50,00', NULL), (16835, 1409, '', '', '', '0000-00-00', 16835, '', NULL), (16836, 1410, '', '', '', '0000-00-00', 16836, '', NULL), (16837, 1411, '', '', '', '0000-00-00', 16837, '', NULL), (16838, 1412, '', '', '', '0000-00-00', 16838, '', NULL), (16839, 1413, '', '', '', '0000-00-00', 16839, '', NULL), (16840, 1414, '', '', '', '0000-00-00', 16840, '', NULL), (16841, 1415, '', '', '', '0000-00-00', 16841, '', NULL), (16842, 1416, '', '', '', '0000-00-00', 16842, '', NULL), (16843, 1417, '', '', '', '0000-00-00', 16843, '', NULL), (16844, 1418, '', '', '', '0000-00-00', 16844, '', NULL), (16845, 1419, '', '', '', '0000-00-00', 16845, '', NULL), (16846, 1420, '', '', '', '0000-00-00', 16846, '', NULL), (16847, 1421, '', '', '', '0000-00-00', 16847, '', NULL), (16848, 1422, '', '', '', '0000-00-00', 16848, '', NULL), (16849, 1423, '', '', '', '0000-00-00', 16849, '', NULL), (16850, 1424, '', '', '', '0000-00-00', 16850, '', NULL), (16851, 1425, '', '', '', '0000-00-00', 16851, '', NULL), (16852, 1426, '', '', '', '0000-00-00', 16852, '', NULL), (16853, 1427, '', '', '', '0000-00-00', 16853, '', NULL), (16854, 1428, '', '', '', '0000-00-00', 16854, '', NULL), (16855, 1429, '', '', '', '0000-00-00', 16855, '', NULL), (16856, 1430, '', '', '', '0000-00-00', 16856, '', NULL), (16857, 1431, '', '', '', '0000-00-00', 16857, '', NULL), (16858, 1432, '', '', '', '0000-00-00', 16858, '', NULL), (16859, 1433, '$139.00 ', '2/10/2005', 'Simms P-3000 Prestress Jack -Jack #2 ', NULL, 16859, 'Cap: 40K', NULL), (16860, 1434, '$105.00 ', '2/6/2003', 'Strainsense-Model-Conamp 20B Load Cell OUT OF SE', NULL, 16860, 'Range: 50K (', NULL), (16861, 1435, '', '', '', '0000-00-00', 16861, '', NULL), (16862, 1436, '', '', '', '0000-00-00', 16862, '', NULL), (16863, 1437, '', '', '', '0000-00-00', 16863, '', NULL), (16864, 1438, '', '', '', '0000-00-00', 16864, '', NULL), (16865, 1439, '', '', '', '0000-00-00', 16865, '', NULL), (16866, 1440, '', '', '', '0000-00-00', 16866, '', NULL), (16867, 1441, '', '', '', '0000-00-00', 16867, '', NULL), (16868, 1442, '', '', '', '0000-00-00', 16868, '', NULL), (16869, 1443, '', '', '', '0000-00-00', 16869, '', NULL), (16870, 1444, '', '1/18/2000', 'Brainard-Kilman Pressure Transducer Model E-124 (C', NULL, 16870, 'Range: 200 PSI ', NULL), (16871, 1445, '', '', '', '0000-00-00', 16871, '', NULL), (16872, 1446, '$144.00 ', '2/21/2005', 'PSI Pressure Gauge (D-5720)', NULL, 16872, 'Range: 690 kpa', NULL), (16873, 1447, '$144.00 ', '1/21/2009', 'ELE Triflex 2 Pressure Transducer ', NULL, 16873, 'Range: 2 Inches', NULL), (16874, 1448, '', '', '', '0000-00-00', 16874, '', NULL), (16875, 1449, '', '', '', '0000-00-00', 16875, '', NULL), (16876, 1450, '', '', '', '0000-00-00', 16876, '', NULL), (16877, 1451, '', '', '', '0000-00-00', 16877, '', NULL), (16878, 1452, '', '', '', '0000-00-00', 16878, '', NULL), (16879, 1453, '', '', '', '0000-00-00', 16879, '', NULL), (16880, 1454, '', '', 'Com-Ten Toploader Model USB2A2 95 Series ', '0000-00-00', 16880, '', NULL), (16881, 1455, '$144.00 ', '1/29/2008', 'Elgood Mayo Prestress Jack (OOS) ', NULL, 16881, 'Range: 10K', NULL), (16882, 1456, '', '', '', '0000-00-00', 16882, '', NULL), (16883, 1457, '', '', '', '0000-00-00', 16883, '', NULL), (16884, 1458, '', '', '', '0000-00-00', 16884, '', NULL), (16885, 1459, '', '', '', '0000-00-00', 16885, '', NULL), (16886, 1460, '', '', '', '0000-00-00', 16886, '', NULL), (16887, 1461, '$449.00 ', '2/21/2005', ' with Forney LVDT Vertical (D-6027)', '0000-00-00', 16887, '', NULL), (16888, 1462, '', '', '', '0000-00-00', 16888, '', NULL), (16889, 1463, '', '', '', '0000-00-00', 16889, '', NULL), (16890, 1464, '', '', '', '0000-00-00', 16890, '', NULL), (16891, 1465, '', '', '', '0000-00-00', 16891, '', NULL), (16892, 1466, '', '', '', '0000-00-00', 16892, '', NULL), (16893, 1467, '', '', '', '0000-00-00', 16893, '', NULL), (16894, 1468, '', '', '', '0000-00-00', 16894, '', NULL), (16895, 1469, '', '', '', '0000-00-00', 16895, '', NULL), (16896, 1470, '', '', '', '0000-00-00', 16896, '', NULL), (16897, 1471, '', '', '', '0000-00-00', 16897, '', NULL), (16898, 1472, '', '', '', '0000-00-00', 16898, '', NULL), (16899, 1473, '$70.00 ', '7/24/2007', '', NULL, 16899, 'Range: 60 PSI', NULL), (16900, 1474, '', '', '', '0000-00-00', 16900, '', NULL), (16901, 1475, '', '', '', '0000-00-00', 16901, '', NULL), (16902, 1476, '', '', '', '0000-00-00', 16902, '', NULL), (16903, 1477, '', '', '', '0000-00-00', 16903, '', NULL), (16904, 1478, '', '', '', '0000-00-00', 16904, '', NULL), (16905, 1479, '', '', '', '0000-00-00', 16905, '', NULL), (16906, 1480, '', '', '', '0000-00-00', 16906, '', NULL), (16907, 1481, '', '', '', '0000-00-00', 16907, '', NULL), (16908, 1482, '', '', '', '0000-00-00', 16908, '', NULL), (16909, 1483, '', '', '', '0000-00-00', 16909, '', NULL), (16910, 1484, '', '', '', '0000-00-00', 16910, '', NULL), (16911, 1485, '', '', '', '0000-00-00', 16911, '', NULL), (16912, 1486, '$139.00 ', '12/19/2005', 'Soiltest Single Proving Ring ', NULL, 16912, 'Range: 500 lbs', NULL), (16913, 1487, '', '', '', '0000-00-00', 16913, '', NULL), (16914, 1488, '', '', '', '0000-00-00', 16914, '', NULL), (16915, 1489, '', '', '', '0000-00-00', 16915, '', NULL), (16916, 1490, '', '', '', '0000-00-00', 16916, '', NULL), (16917, 1491, '', '', '', '0000-00-00', 16917, '', NULL), (16918, 1492, '', '', '', '0000-00-00', 16918, '', NULL), (16919, 1493, '', '', '', '0000-00-00', 16919, '', NULL), (16920, 1494, '', '', '', '0000-00-00', 16920, '', NULL), (16921, 1495, '', '', '', '0000-00-00', 16921, '', NULL), (16922, 1496, '', '', '', '0000-00-00', 16922, '', NULL), (16923, 1497, '', '', '', '0000-00-00', 16923, '', NULL), (16924, 1498, '', '', '', '0000-00-00', 16924, '', NULL), (16925, 1499, '', '', '', '0000-00-00', 16925, '', NULL), (16926, 1500, '', '', '', '0000-00-00', 16926, '', NULL), (16927, 1501, '', '', '', '0000-00-00', 16927, '', NULL), (16928, 1502, '', '', '', '0000-00-00', 16928, '', NULL), (16929, 1503, '', '', '', '0000-00-00', 16929, '', NULL), (16930, 1504, '', '', '***SPECIAL SET-UP NEEDED, REFER TO FILE FOR FUTURE', NULL, 16930, 'TO FUTURE WORK ORDERS****', NULL), (16931, 1505, '', '', '', '0000-00-00', 16931, '', NULL), (16932, 1506, '', '', '', '0000-00-00', 16932, '', NULL), (16933, 1507, '', '', '', '0000-00-00', 16933, '', NULL), (16934, 1508, '', '', '', '0000-00-00', 16934, '', NULL), (16935, 1509, '', '', '', '0000-00-00', 16935, '', NULL), (16936, 1510, '', '', '', '0000-00-00', 16936, '', NULL), (16937, 1511, '', '', '', '0000-00-00', 16937, '', NULL), (16938, 1512, '', '', '', '0000-00-00', 16938, '', NULL), (16939, 1513, '', '', '', '0000-00-00', 16939, '', NULL), (16940, 1514, '', '', 'Must be a Check Drawn on a US Bank in US Dollars', '0000-00-00', 16940, '', NULL), (16941, 1515, '', '', '***Make arrangements to have keys for St. Croix le', '0000-00-00', 16941, '', NULL), (16942, 1516, '', '', 'the Seaplane Shuttle at St. Thomas to be picked up', '0000-00-00', 16942, '', NULL), (16943, 1517, '', '', 'Must be a Check Drawn on a US Bank in US Dollars', '0000-00-00', 16943, '', NULL), (16944, 1518, '', '', '', NULL, 16944, '(Looking for Recondition ', NULL), (16945, 1519, '', '', '', '0000-00-00', 16945, '', NULL), (16946, 1520, '', '', '', '0000-00-00', 16946, '', NULL), (16947, 1521, '', '', '', '0000-00-00', 16947, '', NULL), (16948, 1522, '', '', '407-251-1150 Fax ', '0000-00-00', 16948, '', NULL), (16949, 1523, '', '', ' ***Need Work Permit to get on Islan', '0000-00-00', 16949, '', NULL), (16950, 1524, '', '', ' ***Need to take Ferry***', '0000-00-00', 16950, '', NULL), (16951, 1525, '', '', '', '0000-00-00', 16951, '', NULL), (16952, 1526, '', '', '', '0000-00-00', 16952, '', NULL), (16953, 1527, '', '', '', '0000-00-00', 16953, '', NULL), (16954, 1528, '', '', '', '0000-00-00', 16954, '', NULL), (16955, 1529, '', '', '', '0000-00-00', 16955, '', NULL), (16956, 1530, '', '', '', '0000-00-00', 16956, '', NULL), (16957, 1531, '', '', '', '0000-00-00', 16957, '', NULL), (16958, 1532, '', '', 'Geotest Mdl. 5840 Multi Loader w/ S-Type Load Cell', '0000-00-00', 16958, '', NULL), (16959, 1533, '', '', '', '0000-00-00', 16959, '', NULL), (16960, 1534, '$144.00 ', '6/5/2013', 'Geotac Pressure Transducer ', NULL, 16960, 'Range: 1/8 TSF to 7 TSF', NULL), (16961, 1535, '$144.00 ', '6/9/2010', 'Loadstar Sensors Model iLoad-U Load Cell ', NULL, 16961, 'Range: 500 lbs ', NULL), (16962, 1536, '$104.00 ', '6/8/2010', 'Humboldt BG2110-0-16 Dial Indicator ', NULL, 16962, 'Range: 1 inches', NULL), (16963, 1537, '', '', '', '0000-00-00', 16963, '', NULL), (16964, 1538, '', '', '', '0000-00-00', 16964, '', NULL), (16965, 1539, '', '', '', '0000-00-00', 16965, '', NULL), (16966, 1540, '$85.00 ', '6/4/2013', 'Acculab VIC-10Kg Scale ', NULL, 16966, 'Range: 50 lbs ', NULL), (16967, 1541, '$85.00 ', '6/4/2013', '', NULL, 16967, 'Range: 150 lbs', NULL), (16968, 1542, '', '', '', '0000-00-00', 16968, '', NULL), (16969, 1543, '', '', '', '0000-00-00', 16969, '', NULL), (16970, 1544, '', '', '', '0000-00-00', 16970, '', NULL), (16971, 1545, '', '', '', '0000-00-00', 16971, '', NULL), (16972, 1546, '', '', '', '0000-00-00', 16972, '', NULL), (16973, 1547, '$359.00 ', '6/13/2012', 'AND FG-150K Scale ', NULL, 16973, 'Range: 250K (Selling)', NULL), (16974, 1548, '', '', 'Send Certs to Job Site Address', '0000-00-00', 16974, '', NULL), (16975, 1549, '', '', '', '0000-00-00', 16975, '', NULL), (16976, 1550, '', '', 'Send copy of invoice to ap.invoice@hccorp.com', '0000-00-00', 16976, '', NULL), (16977, 1551, '', '', '', '0000-00-00', 16977, '', NULL), (16978, 1552, '', '', '', '0000-00-00', 16978, '', NULL), (16979, 1553, '', '', '', '0000-00-00', 16979, '', NULL), (16980, 1554, '', '', '***Certification needs Recalibration Date, Letter ', '0000-00-00', 16980, '', NULL), (16981, 1555, '', '', '', '0000-00-00', 16981, '', NULL), (16982, 1556, '', '', 'Tinius Olsen Super L CS-100-3 Digital Compression ', '0000-00-00', 16982, '', NULL), (16983, 1557, '', '', '', '0000-00-00', 16983, '', NULL), (16984, 1558, '', '', '', '0000-00-00', 16984, '', NULL), (16985, 1559, '', '', '', '0000-00-00', 16985, '', NULL), (16986, 1560, '', '', '', '0000-00-00', 16986, '', NULL), (16987, 1561, '$204.00 ', '6/19/2013', 'Brainard Killman Mdl. S-500 Triaxial Panel w/ Dig.', NULL, 16987, 'Range: 15 psi', NULL), (16988, 1562, '$209.00 ', '6/19/2013', 'Braiard Kilman E-114 w/ Dig. S/N E-400-756 Pressur', NULL, 16988, 'Range: 15K', NULL), (16989, 1563, '', '', '', '0000-00-00', 16989, '', NULL), (16990, 1564, '', '', '', '0000-00-00', 16990, '', NULL), (16991, 1565, '', '', '', '0000-00-00', 16991, '', NULL), (16992, 1566, '', '', '', '0000-00-00', 16992, '', NULL), (16993, 1567, '', '', '', '0000-00-00', 16993, '', NULL), (16994, 1568, '', '', '', '0000-00-00', 16994, '', NULL), (16995, 1569, '', '', '', '0000-00-00', 16995, '', NULL), (16996, 1570, '', '', '', '0000-00-00', 16996, '', NULL), (16997, 1571, '', '', '', '0000-00-00', 16997, '', NULL), (16998, 1572, '', '', '', '0000-00-00', 16998, '', NULL), (16999, 1573, '', '', '', '0000-00-00', 16999, '', NULL), (17000, 1574, '', '', '', '0000-00-00', 17000, '', NULL), (17001, 1575, '', '', '', '0000-00-00', 17001, '', NULL), (17002, 1576, '', '', '', '0000-00-00', 17002, '', NULL), (17003, 1577, '', '', '', '0000-00-00', 17003, '', NULL), (17004, 1578, '', '', '', '0000-00-00', 17004, '', NULL), (17005, 1579, '', '', '', '0000-00-00', 17005, '', NULL), (17006, 1580, '', '', '', '0000-00-00', 17006, '', NULL), (17007, 1581, '', '', '', '0000-00-00', 17007, '', NULL), (17008, 1582, '', '', '', '0000-00-00', 17008, '', NULL), (17009, 1583, '', '', '', '0000-00-00', 17009, '', NULL), (17010, 1584, '', '', '', '0000-00-00', 17010, '', NULL), (17011, 1585, '', '', '', '0000-00-00', 17011, '', NULL), (17012, 1586, '', '', '', '0000-00-00', 17012, '', NULL), (17013, 1587, '', '', '', '0000-00-00', 17013, '', NULL), (17014, 1588, '', '', '', '0000-00-00', 17014, '', NULL), (17015, 1589, '', '', '', '0000-00-00', 17015, '', NULL), (17016, 1590, '', '', '', '0000-00-00', 17016, '', NULL), (17017, 1591, '', '', '', '0000-00-00', 17017, '', NULL), (17018, 1592, '', '', '', '0000-00-00', 17018, '', NULL), (17019, 1593, '', '', '', '0000-00-00', 17019, '', NULL), (17020, 1594, '', '', '', '0000-00-00', 17020, '', NULL), (17021, 1595, '', '', '', '0000-00-00', 17021, '', NULL), (17022, 1596, '', '', '', '0000-00-00', 17022, '', NULL), (17023, 1597, '', '', '', '0000-00-00', 17023, '', NULL), (17024, 1598, '', '', '', '0000-00-00', 17024, '', NULL), (17025, 1599, '', '', '', '0000-00-00', 17025, '', NULL), (17026, 1600, '', '', '', '0000-00-00', 17026, '', NULL), (17027, 1601, '', '', '', '0000-00-00', 17027, '', NULL), (17028, 1602, '', '', '', '0000-00-00', 17028, '', NULL), (17029, 1603, '', '', '', '0000-00-00', 17029, '', NULL), (17030, 1604, '', '', '', '0000-00-00', 17030, '', NULL), (17031, 1605, '', '', ' with 2,000 lb. cell (T & C)', NULL, 17031, 'Range 150 lb. to 50K', NULL), (17032, 1606, '', '', '', '0000-00-00', 17032, '', NULL), (17033, 1607, '', '', '', '0000-00-00', 17033, '', NULL), (17034, 1608, '', '', '', '0000-00-00', 17034, '', NULL), (17035, 1609, '', '', '', '0000-00-00', 17035, '', NULL), (17036, 1610, '', '', '', '0000-00-00', 17036, '', NULL), (17037, 1611, '', '', '', '0000-00-00', 17037, '', NULL), (17038, 1612, '', '', '', '0000-00-00', 17038, '', NULL), (17039, 1613, '', '', '', '0000-00-00', 17039, '', NULL), (17040, 1614, '', '', '', '0000-00-00', 17040, '', NULL), (17041, 1615, '', '', '', '0000-00-00', 17041, '', NULL), (17042, 1616, '', '', '', '0000-00-00', 17042, '', NULL), (17043, 1617, '', '', 'Enerpac Load Cell TS-5 ', '0000-00-00', 17043, '', NULL), (17044, 1618, '', '', '', '0000-00-00', 17044, '', NULL), (17045, 1619, '', '', '***ISO Requested***', '0000-00-00', 17045, '', NULL), (17046, 1620, '', '', '', '0000-00-00', 17046, '', NULL), (17047, 1621, '', '', '', '0000-00-00', 17047, '', NULL), (17048, 1622, '', '', '', '0000-00-00', 17048, '', NULL), (17049, 1623, '', '', '', '0000-00-00', 17049, '', NULL), (17050, 1624, '', '', '', '0000-00-00', 17050, '', NULL), (17051, 1625, '', '', '', '0000-00-00', 17051, '', NULL), (17052, 1626, '', '', '', '0000-00-00', 17052, '', NULL), (17053, 1627, '', '', '', '0000-00-00', 17053, '', NULL), (17054, 1628, '', '', '', '0000-00-00', 17054, '', NULL), (17055, 1629, '', '', '', '0000-00-00', 17055, '', NULL), (17056, 1630, '', '', '', '0000-00-00', 17056, '', NULL), (17057, 1631, '', '', '', '0000-00-00', 17057, '', NULL), (17058, 1632, '', '', '', '0000-00-00', 17058, '', NULL), (17059, 1633, '', '', '', '0000-00-00', 17059, '', NULL), (17060, 1634, '', '', '', '0000-00-00', 17060, '', NULL), (17061, 1635, '', '', '', '0000-00-00', 17061, '', NULL), (17062, 1636, '', '', '', '0000-00-00', 17062, '', NULL), (17063, 1637, '', '', '', '0000-00-00', 17063, '', NULL), (17064, 1638, '', '', '', '0000-00-00', 17064, '', NULL), (17065, 1639, '', '', '', '0000-00-00', 17065, '', NULL), (17066, 1640, '', 'No cal*', ' *graph not working-could not calibrate', NULL, 17066, 'Range 1/2/5/10K', NULL), (17067, 1641, '', '', '', '0000-00-00', 17067, '', NULL), (17068, 1642, '$225.35 ', '6/11/2004', 'ELE/Soiltest Proving Ring PR-20 ', NULL, 17068, 'Max Cap: 50,000 lbs', NULL), (17069, 1643, '', '', '', '0000-00-00', 17069, '', NULL), (17070, 1644, '', '', '', '0000-00-00', 17070, '', NULL), (17071, 1645, '', '', '', '0000-00-00', 17071, '', NULL), (17072, 1646, '', '', '', '0000-00-00', 17072, '', NULL), (17073, 1647, '', '', '', '0000-00-00', 17073, '', NULL), (17074, 1648, '', '', '', '0000-00-00', 17074, '', NULL), (17075, 1649, '', '', '', '0000-00-00', 17075, '', NULL), (17076, 1650, '$915.00 ', '5/31/2011', 'Pine Instruments Single Proving Ring (', NULL, 17076, 'Cap: 600KPA 114.28mm 30RP', NULL), (17077, 1651, '', '', '', '0000-00-00', 17077, '', NULL), (17078, 1652, '$915.00 ', '12/10/2012', 'Humboldt Marshall Single Proving Ring ', NULL, 17078, 'Cap: 5KN/10.5KN 152.4mm 3', NULL), (17079, 1653, '$225.35 ', '6/14/2013', 'ELE Marshall Single Proving Ring ', NULL, 17079, 'Cap: 10K Plant #21 (E', NULL), (17080, 1654, '', '', '', '0000-00-00', 17080, '', NULL), (17081, 1655, '$302.75 ', '12/12/2012', 'Soiltest Consolidation Double Proving Ring (', NULL, 17081, 'Range: 100 PSI', NULL), (17082, 1656, '', '', '1.16 degrees', '0000-00-00', 17082, '', NULL), (17083, 1657, '', '', 'Soiltest Unconfined Single Proving Ring OOS ', '0000-00-00', 17083, '', NULL), (17084, 1658, '', '', '', '0000-00-00', 17084, '', NULL), (17085, 1659, '', '', '', '0000-00-00', 17085, '', NULL), (17086, 1660, '', '', '', '0000-00-00', 17086, '', NULL), (17087, 1661, '$225.35 ', '5/9/2013', '', NULL, 17087, 'Cap: 6K Plant #2 ', NULL), (17088, 1662, '$225.35 ', '1/5/2006', 'ELE Soiltest Unconfined Double Proving Ring (E-4 ', NULL, 17088, 'Range: 1 Inch', NULL), (17089, 1663, '', '', '', '0000-00-00', 17089, '', NULL), (17090, 1664, '', '', '', '0000-00-00', 17090, '', NULL), (17091, 1665, '', '', '', '0000-00-00', 17091, '', NULL), (17092, 1666, '', '', '', '0000-00-00', 17092, '', NULL), (17093, 1667, '', '', '', '0000-00-00', 17093, '', NULL), (17094, 1668, '$232.39 ', '12/6/2010', 'Artech S type Load Cell Model 20210-5K w/ E-400 di', NULL, 17094, 'Range: 0.4 inches (Do', NULL), (17095, 1669, '', '', '', '0000-00-00', 17095, '', NULL), (17096, 1670, '$225.35 ', '6/11/2004', 'ELE Single Proving Ring (OOS) ', NULL, 17096, 'Capacity: 10K', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (17097, 1671, '', '', ' ***ISO Request', '0000-00-00', 17097, '', NULL), (17098, 1672, '', '', '', '0000-00-00', 17098, '', NULL), (17099, 1673, '', '', '', '0000-00-00', 17099, '', NULL), (17100, 1674, '', '', '', '0000-00-00', 17100, '', NULL), (17101, 1675, '$225.35 ', '120/09/04', 'Spare 2% Gauge w/ELE S/N 0204 (OUT OF', NULL, 17101, 'Range: 250K', NULL), (17102, 1676, '', '', '', '0000-00-00', 17102, '', NULL), (17103, 1677, '', '', '', '0000-00-00', 17103, '', NULL), (17104, 1678, '', '', '', '0000-00-00', 17104, '', NULL), (17105, 1679, '', '', '', '0000-00-00', 17105, '', NULL), (17106, 1680, '', '', '', '0000-00-00', 17106, '', NULL), (17107, 1681, '', '', '', '0000-00-00', 17107, '', NULL), (17108, 1682, '', '', '', '0000-00-00', 17108, '', NULL), (17109, 1683, '', '', '', '0000-00-00', 17109, '', NULL), (17110, 1684, '', '', '', '0000-00-00', 17110, '', NULL), (17111, 1685, '', '', '', '0000-00-00', 17111, '', NULL), (17112, 1686, '', '', '', '0000-00-00', 17112, '', NULL), (17113, 1687, '', '', '', '0000-00-00', 17113, '', NULL), (17114, 1688, '', '', '', '0000-00-00', 17114, '', NULL), (17115, 1689, '', '', '', '0000-00-00', 17115, '', NULL), (17116, 1690, '', '', '', '0000-00-00', 17116, '', NULL), (17117, 1691, '', '', '', '0000-00-00', 17117, '', NULL), (17118, 1692, '', '', '', '0000-00-00', 17118, '', NULL), (17119, 1693, '', '', '', '0000-00-00', 17119, '', NULL), (17120, 1694, '', '', '', '0000-00-00', 17120, '', NULL), (17121, 1695, '', '', '', '0000-00-00', 17121, '', NULL), (17122, 1696, '', '', '', '0000-00-00', 17122, '', NULL), (17123, 1697, '', '', '', '0000-00-00', 17123, '', NULL), (17124, 1698, '', '', '', '0000-00-00', 17124, '', NULL), (17125, 1699, '', '', '', '0000-00-00', 17125, '', NULL), (17126, 1700, '', '', '', '0000-00-00', 17126, '', NULL), (17127, 1701, '', '', '', '0000-00-00', 17127, '', NULL), (17128, 1702, '$144.00 ', '3/14/2013', 'Rainhart Beam Breaker ', NULL, 17128, 'Range: 1 inch', NULL), (17129, 1703, '', '', '*** High RF Producing Facility next to this place,', '0000-00-00', 17129, '', NULL), (17130, 1704, '', '', '', NULL, 17130, 'person ordering the servi', NULL), (17131, 1705, '$249.00 ', '3/6/2013', 'Karol Warner Conbel Vertical Displacement LVDT (D', NULL, 17131, 'Range:1/8TSF to 22TSF (Sm', NULL), (17132, 1706, '', '', '', '0000-00-00', 17132, '', NULL), (17133, 1707, '', '', '', '0000-00-00', 17133, '', NULL), (17134, 1708, '', '', 'and you are close to applying force', '0000-00-00', 17134, '', NULL), (17135, 1709, '', '', '', '0000-00-00', 17135, '', NULL), (17136, 1710, '', '', ' LoTes Model LT-10 Digital Compression Machine (M', '0000-00-00', 17136, '', NULL), (17137, 1711, '', '', '', '0000-00-00', 17137, '', NULL), (17138, 1712, '', '', 'Call Rob when coming 717-349-2412', '0000-00-00', 17138, '', NULL), (17139, 1713, '', '', '', '0000-00-00', 17139, '', NULL), (17140, 1714, '', '', '', '0000-00-00', 17140, '', NULL), (17141, 1715, '', '', '', '0000-00-00', 17141, '', NULL), (17142, 1716, '', '', '', '0000-00-00', 17142, '', NULL), (17143, 1717, '', '', '', '0000-00-00', 17143, '', NULL), (17144, 1718, '', '', ' ***ISO ', '0000-00-00', 17144, '', NULL), (17145, 1719, '$609.00 ', '2/26/2013', 'MUST RECEIVE WRITTEN REQUISITION PRIOR TO DATE OF ', NULL, 17145, 'Range: 600 KPA (AASHTO & ', NULL), (17146, 1720, '', '', '', '0000-00-00', 17146, '', NULL), (17147, 1721, '$85.00 ', '3/27/2013', 'Detecto Electronic Model EF-218-S6S Scale (E-898) ', NULL, 17147, 'Cap: 202 lbs. X 0.01 lb.', NULL), (17148, 1722, '', '', '', '0000-00-00', 17148, '', NULL), (17149, 1723, '', '', '', '0000-00-00', 17149, '', NULL), (17150, 1724, '', '', '', '0000-00-00', 17150, '', NULL), (17151, 1725, '', '', ' ***ISO Requested**', '0000-00-00', 17151, '', NULL), (17152, 1726, '', '', '', '0000-00-00', 17152, '', NULL), (17153, 1727, '$159.00 ', '5/24/2006', ' Load C', NULL, 17153, 'Range: 50K', NULL), (17154, 1728, '', '', '', '0000-00-00', 17154, '', NULL), (17155, 1729, '', '', '', '0000-00-00', 17155, '', NULL), (17156, 1730, '', '', '', '0000-00-00', 17156, '', NULL), (17157, 1731, '', '', '', '0000-00-00', 17157, '', NULL), (17158, 1732, '', '5/5/2005', 'Not done/bad motor control/customer declines repai', NULL, 17158, 'Range: 500 lbs', NULL), (17159, 1733, '', '', '', '0000-00-00', 17159, '', NULL), (17160, 1734, '', '', '', '0000-00-00', 17160, '', NULL), (17161, 1735, '', '', '', '0000-00-00', 17161, '', NULL), (17162, 1736, '', '', '', '0000-00-00', 17162, '', NULL), (17163, 1737, '', '', '', '0000-00-00', 17163, '', NULL), (17164, 1738, '', '', '', '0000-00-00', 17164, '', NULL), (17165, 1739, '', '', '', '0000-00-00', 17165, '', NULL), (17166, 1740, '', '', '', '0000-00-00', 17166, '', NULL), (17167, 1741, '', '', '', '0000-00-00', 17167, '', NULL), (17168, 1742, '', '', '', '0000-00-00', 17168, '', NULL), (17169, 1743, '', '', '', '0000-00-00', 17169, '', NULL), (17170, 1744, '', '', 'MTS 1 Machine--Model 810 (E4-01) ', NULL, 17170, 'Range: 50K ID#25-LC06RC0', NULL), (17171, 1745, '', '', '', '0000-00-00', 17171, '', NULL), (17172, 1746, '', '', '', '0000-00-00', 17172, '', NULL), (17173, 1747, '', '', '', '0000-00-00', 17173, '', NULL), (17174, 1748, '', '', '', '0000-00-00', 17174, '', NULL), (17175, 1749, '', '', '', '0000-00-00', 17175, '', NULL), (17176, 1750, '', '', '', '0000-00-00', 17176, '', NULL), (17177, 1751, '', '', '', '0000-00-00', 17177, '', NULL), (17178, 1752, '', '', '', '0000-00-00', 17178, '', NULL), (17179, 1753, '$139.00 ', '4/17/2002', 'Geo-Test Pore Pressure Gauge (w/ Digital & Extra G', NULL, 17179, 'Cap. 150 psi', NULL), (17180, 1754, '', '', '', '0000-00-00', 17180, '', NULL), (17181, 1755, '', '', '', '0000-00-00', 17181, '', NULL), (17182, 1756, '', '', '', '0000-00-00', 17182, '', NULL), (17183, 1757, '', '', '', '0000-00-00', 17183, '', NULL), (17184, 1758, '', '', '', '0000-00-00', 17184, '', NULL), (17185, 1759, '', '', '', '0000-00-00', 17185, '', NULL), (17186, 1760, '', '', '', '0000-00-00', 17186, '', NULL), (17187, 1761, '', '', '', '0000-00-00', 17187, '', NULL), (17188, 1762, '', '', 'Send Certs to PO Box 1602, Elkins WV 26241', '0000-00-00', 17188, '', NULL), (17189, 1763, '', '', '', '0000-00-00', 17189, '', NULL), (17190, 1764, '', '', '', '0000-00-00', 17190, '', NULL), (17191, 1765, '', '', '', '0000-00-00', 17191, '', NULL), (17192, 1766, '', '', '', '0000-00-00', 17192, '', NULL), (17193, 1767, '', '', '', '0000-00-00', 17193, '', NULL), (17194, 1768, '', '', '', '0000-00-00', 17194, '', NULL), (17195, 1769, '', '', '', '0000-00-00', 17195, '', NULL), (17196, 1770, '', '', '', '0000-00-00', 17196, '', NULL), (17197, 1771, '', '', '', '0000-00-00', 17197, '', NULL), (17198, 1772, '', '', '', '0000-00-00', 17198, '', NULL), (17199, 1773, '', '', '', '0000-00-00', 17199, '', NULL), (17200, 1774, '', '', '', '0000-00-00', 17200, '', NULL), (17201, 1775, '', '', '', '0000-00-00', 17201, '', NULL), (17202, 1776, '', '', '', '0000-00-00', 17202, '', NULL), (17203, 1777, '', '', '', '0000-00-00', 17203, '', NULL), (17204, 1778, '', '', '', '0000-00-00', 17204, '', NULL), (17205, 1779, '', '', '', '0000-00-00', 17205, '', NULL), (17206, 1780, '', '', '', '0000-00-00', 17206, '', NULL), (17207, 1781, '', '', '', '0000-00-00', 17207, '', NULL), (17208, 1782, '', '', '', '0000-00-00', 17208, '', NULL), (17209, 1783, '', '', '', '0000-00-00', 17209, '', NULL), (17210, 1784, '', 'NEW', '', '0000-00-00', 17210, '', NULL), (17211, 1785, '', '', '', '0000-00-00', 17211, '', NULL), (17212, 1786, '', '', '', '0000-00-00', 17212, '', NULL), (17213, 1787, '', '', '', '0000-00-00', 17213, '', NULL), (17214, 1788, '', '', '', '0000-00-00', 17214, '', NULL), (17215, 1789, '', '', '', '0000-00-00', 17215, '', NULL), (17216, 1790, '', '', '', '0000-00-00', 17216, '', NULL), (17217, 1791, '', '', '', '0000-00-00', 17217, '', NULL), (17218, 1792, '', '', '', '0000-00-00', 17218, '', NULL), (17219, 1793, '', '', '', '0000-00-00', 17219, '', NULL), (17220, 1794, '', '', '', '0000-00-00', 17220, '', NULL), (17221, 1795, '', '', '', '0000-00-00', 17221, '', NULL), (17222, 1796, '', '', '', '0000-00-00', 17222, '', NULL), (17223, 1797, '', '', '', '0000-00-00', 17223, '', NULL), (17224, 1798, '', '', '', '0000-00-00', 17224, '', NULL), (17225, 1799, '', '', '', '0000-00-00', 17225, '', NULL), (17226, 1800, '', '', '', '0000-00-00', 17226, '', NULL), (17227, 1801, '', '', '', '0000-00-00', 17227, '', NULL), (17228, 1802, '', '', '', '0000-00-00', 17228, '', NULL), (17229, 1803, '', '', '', '0000-00-00', 17229, '', NULL), (17230, 1804, '', '', '', '0000-00-00', 17230, '', NULL), (17231, 1805, '', '', '', '0000-00-00', 17231, '', NULL), (17232, 1806, '', '', '', '0000-00-00', 17232, '', NULL), (17233, 1807, '', '', '', '0000-00-00', 17233, '', NULL), (17234, 1808, '', '', '', '0000-00-00', 17234, '', NULL), (17235, 1809, '', '', '', '0000-00-00', 17235, '', NULL), (17236, 1810, '', '', '', '0000-00-00', 17236, '', NULL), (17237, 1811, '', '', '', '0000-00-00', 17237, '', NULL), (17238, 1812, '', '', '', '0000-00-00', 17238, '', NULL), (17239, 1813, '', '', '', '0000-00-00', 17239, '', NULL), (17240, 1814, '', '', '', '0000-00-00', 17240, '', NULL), (17241, 1815, '', '', '', '0000-00-00', 17241, '', NULL), (17242, 1816, '', '', '', '0000-00-00', 17242, '', NULL), (17243, 1817, '', '', '', '0000-00-00', 17243, '', NULL), (17244, 1818, '', '', '', '0000-00-00', 17244, '', NULL), (17245, 1819, '', '', '', '0000-00-00', 17245, '', NULL), (17246, 1820, '$144.00 ', '5/7/2013', 'Conbel Pressure Gauge ', NULL, 17246, 'Cap: 30 psi', NULL), (17247, 1821, '', '', 'Send Certs to Billing Address', '0000-00-00', 17247, '', NULL), (17248, 1822, '', '', '', '0000-00-00', 17248, '', NULL), (17249, 1823, '$85.00 ', '5/8/2013', 'Ohaus Adventurer SL AS3102 Scale (ID #29) ', NULL, 17249, 'Range: 41,000 Grams', NULL), (17250, 1824, '', '', '', '0000-00-00', 17250, '', NULL), (17251, 1825, '', '', '', '0000-00-00', 17251, '', NULL), (17252, 1826, '', '', '', '0000-00-00', 17252, '', NULL), (17253, 1827, '', '', 'Briefcase BCS-80 Scale ', '0000-00-00', 17253, '', NULL), (17254, 1828, '', '', '', '0000-00-00', 17254, '', NULL), (17255, 1829, '', '', '', '0000-00-00', 17255, '', NULL), (17256, 1830, '', '', '', '0000-00-00', 17256, '', NULL), (17257, 1831, '$144.00 ', '5/15/2013', 'Soiltest Unconfined Single Proving Ring ', NULL, 17257, 'Cap: 1K', NULL), (17258, 1832, '', '', '', '0000-00-00', 17258, '', NULL), (17259, 1833, '', '', '', '0000-00-00', 17259, '', NULL), (17260, 1834, '', '', '', '0000-00-00', 17260, '', NULL), (17261, 1835, '', '', 'Mail Certs To:', '0000-00-00', 17261, '', NULL), (17262, 1836, '', '', '', '0000-00-00', 17262, '', NULL), (17263, 1837, '', '', '', '0000-00-00', 17263, '', NULL), (17264, 1838, '$144.00 ', '7/31/2013', 'Humboldt HM-2325A Mini Logger w/ Pressure Transduc', NULL, 17264, 'Range: 100 psi', NULL), (17265, 1839, '$149.00 ', '5/23/2012', '', NULL, 17265, 'Range: 0.125 in/in (2\"', NULL), (17266, 1840, 'above', '5/21/2013', '', NULL, 17266, 'Range: 0.1 Inch to 1 Inch', NULL), (17267, 1841, '', '', '', '0000-00-00', 17267, '', NULL), (17268, 1842, '', '', '', '0000-00-00', 17268, '', NULL), (17269, 1843, '', '', '', '0000-00-00', 17269, '', NULL), (17270, 1844, '$144.00 ', '5/21/2013', 'Dail Indicator w/ GeoJac Load Frame ', NULL, 17270, 'Range: 20 lbs to 2K Load ', NULL), (17271, 1845, '', '', '', '0000-00-00', 17271, '', NULL), (17272, 1846, '', '', '', '0000-00-00', 17272, '', NULL), (17273, 1847, '', '', '*MUST CALL PRIOR TO LET THEM KNOW DAY & WHAT NEEDS', '0000-00-00', 17273, '', NULL), (17274, 1848, '', '', '', '0000-00-00', 17274, '', NULL), (17275, 1849, '', '', '', '0000-00-00', 17275, '', NULL), (17276, 1850, '', '', '', '0000-00-00', 17276, '', NULL), (17277, 1851, '', '', '', '0000-00-00', 17277, '', NULL), (17278, 1852, '', '', '', '0000-00-00', 17278, '', NULL), (17279, 1853, '', '', '', '0000-00-00', 17279, '', NULL), (17280, 1854, '', '', '', '0000-00-00', 17280, '', NULL), (17281, 1855, '', '', '', '0000-00-00', 17281, '', NULL), (17282, 1856, '', '', '', '0000-00-00', 17282, '', NULL), (17283, 1857, '', '', '', '0000-00-00', 17283, '', NULL), (17284, 1858, '', '', '', '0000-00-00', 17284, '', NULL), (17285, 1859, '', '', '', '0000-00-00', 17285, '', NULL), (17286, 1860, '', '', '', '0000-00-00', 17286, '', NULL), (17287, 1861, '', '', '', '0000-00-00', 17287, '', NULL), (17288, 1862, '', '', '', '0000-00-00', 17288, '', NULL), (17289, 1863, '', '', '', '0000-00-00', 17289, '', NULL), (17290, 1864, '', '', '', '0000-00-00', 17290, '', NULL), (17291, 1865, '', '', '', '0000-00-00', 17291, '', NULL), (17292, 1866, '', '', '', '0000-00-00', 17292, '', NULL), (17293, 1867, '', '', '', '0000-00-00', 17293, '', NULL), (17294, 1868, '', '', '', '0000-00-00', 17294, '', NULL), (17295, 1869, '', '', '', '0000-00-00', 17295, '', NULL), (17296, 1870, '', '5/28/1998', '', NULL, 17296, 'Range 1\"', NULL), (17297, 1871, '', '5/27/1998', 'Range Card #2 (Tag# 25-LC12RC02)', NULL, 17297, 'Range 1K', NULL), (17298, 1872, '', '', '', '0000-00-00', 17298, '', NULL), (17299, 1873, '', '', '', '0000-00-00', 17299, '', NULL), (17300, 1874, '', '', '', '0000-00-00', 17300, '', NULL), (17301, 1875, '', '', '', '0000-00-00', 17301, '', NULL), (17302, 1876, '', '', '', '0000-00-00', 17302, '', NULL), (17303, 1877, '', '', '', '0000-00-00', 17303, '', NULL), (17304, 1878, '', '', '', '0000-00-00', 17304, '', NULL), (17305, 1879, '', '', '', '0000-00-00', 17305, '', NULL), (17306, 1880, '', '', '', '0000-00-00', 17306, '', NULL), (17307, 1881, '', '', '', '0000-00-00', 17307, '', NULL), (17308, 1882, '', '', '', '0000-00-00', 17308, '', NULL), (17309, 1883, '', '', '', '0000-00-00', 17309, '', NULL), (17310, 1884, '', '', '', '0000-00-00', 17310, '', NULL), (17311, 1885, '', '', 'Send Certs to PO Box 1602, Elkins WV 26241', '0000-00-00', 17311, '', NULL), (17312, 1886, '', '', '', '0000-00-00', 17312, '', NULL), (17313, 1887, '', '', '', '0000-00-00', 17313, '', NULL), (17314, 1888, '', '', '', '0000-00-00', 17314, '', NULL), (17315, 1889, '', '', '', '0000-00-00', 17315, '', NULL), (17316, 1890, '', '', '', '0000-00-00', 17316, '', NULL), (17317, 1891, '', '', '', '0000-00-00', 17317, '', NULL), (17318, 1892, '', '', '', '0000-00-00', 17318, '', NULL), (17319, 1893, '', '', '', '0000-00-00', 17319, '', NULL), (17320, 1894, '', '', '', '0000-00-00', 17320, '', NULL), (17321, 1895, '', '', '', '0000-00-00', 17321, '', NULL), (17322, 1896, '', '', '', '0000-00-00', 17322, '', NULL), (17323, 1897, '', '', '', '0000-00-00', 17323, '', NULL), (17324, 1898, '', '', '', '0000-00-00', 17324, '', NULL), (17325, 1899, '', '', '', '0000-00-00', 17325, '', NULL), (17326, 1900, '', '', '', '0000-00-00', 17326, '', NULL), (17327, 1901, '', '', '', '0000-00-00', 17327, '', NULL), (17328, 1902, '', '', '', '0000-00-00', 17328, '', NULL), (17329, 1903, '', '', '', '0000-00-00', 17329, '', NULL), (17330, 1904, '', '', '', '0000-00-00', 17330, '', NULL), (17331, 1905, '$560.00 ', '5/31/2005', 'Trautwein Model MVFS Pressure Transducer (OOS) ', NULL, 17331, 'Range: 50/100/200/500/1,0', NULL), (17332, 1906, '', '', '', '0000-00-00', 17332, '', NULL), (17333, 1907, '', '', '', '0000-00-00', 17333, '', NULL), (17334, 1908, '', '', '', '0000-00-00', 17334, '', NULL), (17335, 1909, '', '', '', '0000-00-00', 17335, '', NULL), (17336, 1910, '', '', '', '0000-00-00', 17336, '', NULL), (17337, 1911, '', '', '', '0000-00-00', 17337, '', NULL), (17338, 1912, '', '', '', '0000-00-00', 17338, '', NULL), (17339, 1913, '', '', '', '0000-00-00', 17339, '', NULL), (17340, 1914, '', '8/1/2006', '', NULL, 17340, 'Cap: 10,000 lbs', NULL), (17341, 1915, '', '', '', '0000-00-00', 17341, '', NULL), (17342, 1916, '', '', 'Soiltest CT 800 Digital Compression Machine(OUT OF', '0000-00-00', 17342, '', NULL), (17343, 1917, '', '', '', '0000-00-00', 17343, '', NULL), (17344, 1918, '', '', '', '0000-00-00', 17344, '', NULL), (17345, 1919, '', '', '', '0000-00-00', 17345, '', NULL), (17346, 1920, '', '', '', '0000-00-00', 17346, '', NULL), (17347, 1921, '', '', '', '0000-00-00', 17347, '', NULL), (17348, 1922, '', '', 'Call Bobby Collins for scheduling ', '0000-00-00', 17348, '', NULL), (17349, 1923, '', '', '', '0000-00-00', 17349, '', NULL), (17350, 1924, '', '', 'Hogentogler Dial Indicator (OOS) ', '0000-00-00', 17350, '', NULL), (17351, 1925, '', '', '', '0000-00-00', 17351, '', NULL), (17352, 1926, '', '', '', '0000-00-00', 17352, '', NULL), (17353, 1927, '', '', '', '0000-00-00', 17353, '', NULL), (17354, 1928, '', '', '', '0000-00-00', 17354, '', NULL), (17355, 1929, '', '', '', '0000-00-00', 17355, '', NULL), (17356, 1930, '', '', '', '0000-00-00', 17356, '', NULL), (17357, 1931, '', '', 'Soiltest Model 36-0657 Spare Gauge # 2 OUT OF', NULL, 17357, 'Range:', NULL), (17358, 1932, '', '', '', '0000-00-00', 17358, '', NULL), (17359, 1933, '', '', '', '0000-00-00', 17359, '', NULL), (17360, 1934, '', '', '', '0000-00-00', 17360, '', NULL), (17361, 1935, '', '', ' with Soiltest Microhead Digital 2000 (OUT OF ', '0000-00-00', 17361, '', NULL), (17362, 1936, '', '', '', '0000-00-00', 17362, '', NULL), (17363, 1937, '', '', '', '0000-00-00', 17363, '', NULL), (17364, 1938, '', '', '', '0000-00-00', 17364, '', NULL), (17365, 1939, '', '', '', '0000-00-00', 17365, '', NULL), (17366, 1940, '', '', '***ISO REQUESTED***', '0000-00-00', 17366, '', NULL), (17367, 1941, '', '', '', '0000-00-00', 17367, '', NULL), (17368, 1942, '', '', '', '0000-00-00', 17368, '', NULL), (17369, 1943, '', '', '', '0000-00-00', 17369, '', NULL), (17370, 1944, '', '', '', '0000-00-00', 17370, '', NULL), (17371, 1945, '', '', '', '0000-00-00', 17371, '', NULL), (17372, 1946, '', '', '', NULL, 17372, 'the Technician leaves the', NULL), (17373, 1947, '', '', '', '0000-00-00', 17373, '', NULL), (17374, 1948, '', '', '', '0000-00-00', 17374, '', NULL), (17375, 1949, '', '', '', '0000-00-00', 17375, '', NULL), (17376, 1950, '', '', '', '0000-00-00', 17376, '', NULL), (17377, 1951, '', '', '', '0000-00-00', 17377, '', NULL), (17378, 1952, '', '', '', '0000-00-00', 17378, '', NULL), (17379, 1953, '', '', '', '0000-00-00', 17379, '', NULL), (17380, 1954, '', '', '', '0000-00-00', 17380, '', NULL), (17381, 1955, '', '', '', '0000-00-00', 17381, '', NULL), (17382, 1956, '', '', '', '0000-00-00', 17382, '', NULL), (17383, 1957, '$70.00 ', 'New', 'Concrete Air Indicator Gauge', NULL, 17383, 'Range: ', NULL), (17384, 1958, '$60.00 ', '11/22/2002', 'Ashcroft Gauge', NULL, 17384, 'Range: 0-60psi', NULL), (17385, 1959, '$114.00 ', '11/2/2009', 'TMI Air Meter Gauge ', NULL, 17385, 'Range: 15 PSI', NULL), (17386, 1960, '', '', '', '0000-00-00', 17386, '', NULL), (17387, 1961, '', '', '', '0000-00-00', 17387, '', NULL), (17388, 1962, '', '', '', '0000-00-00', 17388, '', NULL), (17389, 1963, '', '', '', '0000-00-00', 17389, '', NULL), (17390, 1964, '', '', '', '0000-00-00', 17390, '', NULL), (17391, 1965, '', '', '', '0000-00-00', 17391, '', NULL), (17392, 1966, '', '', '', '0000-00-00', 17392, '', NULL), (17393, 1967, '', '', '', '0000-00-00', 17393, '', NULL), (17394, 1968, '', '', '', '0000-00-00', 17394, '', NULL), (17395, 1969, '', '', '', '0000-00-00', 17395, '', NULL), (17396, 1970, '', '', '', '0000-00-00', 17396, '', NULL), (17397, 1971, '', '', '', '0000-00-00', 17397, '', NULL), (17398, 1972, '', '', '', '0000-00-00', 17398, '', NULL), (17399, 1973, '', '', '', '0000-00-00', 17399, '', NULL), (17400, 1974, '', '', '', '0000-00-00', 17400, '', NULL), (17401, 1975, '', '', '', '0000-00-00', 17401, '', NULL), (17402, 1976, '', '', '', '0000-00-00', 17402, '', NULL), (17403, 1977, '', '', '', '0000-00-00', 17403, '', NULL), (17404, 1978, '', '', '', '0000-00-00', 17404, '', NULL), (17405, 1979, '', '', '', '0000-00-00', 17405, '', NULL), (17406, 1980, '', '', '', '0000-00-00', 17406, '', NULL), (17407, 1981, '', '', '', '0000-00-00', 17407, '', NULL), (17408, 1982, '', '', '', '0000-00-00', 17408, '', NULL), (17409, 1983, '', '', '', '0000-00-00', 17409, '', NULL), (17410, 1984, '', '', '', '0000-00-00', 17410, '', NULL), (17411, 1985, '', '', '', '0000-00-00', 17411, '', NULL), (17412, 1986, '', '', '', '0000-00-00', 17412, '', NULL), (17413, 1987, '', '12/9/2004', '', NULL, 17413, 'Range 200K ', NULL), (17414, 1988, '$619.72 ', '5/12/2006', 'Soiltest CT-7251 Digital Compression Machine ', NULL, 17414, 'Range: 400K', NULL), (17415, 1989, '', '', '', '0000-00-00', 17415, '', NULL), (17416, 1990, '', '', '', '0000-00-00', 17416, '', NULL), (17417, 1991, '', '', '', '0000-00-00', 17417, '', NULL), (17418, 1992, '', '', 'Soiltest CT-711 Compression Machine (MOVED) ', '0000-00-00', 17418, '', NULL), (17419, 1993, '', '', '', '0000-00-00', 17419, '', NULL), (17420, 1994, '', '', '', '0000-00-00', 17420, '', NULL), (17421, 1995, '', '', '', '0000-00-00', 17421, '', NULL), (17422, 1996, '', '', '', '0000-00-00', 17422, '', NULL), (17423, 1997, '', '', '', '0000-00-00', 17423, '', NULL), (17424, 1998, '', '', '', '0000-00-00', 17424, '', NULL), (17425, 1999, '', '', '', '0000-00-00', 17425, '', NULL), (17426, 2000, '', '', '***Get check for all 3 places Cadillac, Alpena & E', '0000-00-00', 17426, '', NULL), (17427, 2001, '', '', '', '0000-00-00', 17427, '', NULL), (17428, 2002, '', '', '', '0000-00-00', 17428, '', NULL), (17429, 2003, '', '', '', '0000-00-00', 17429, '', NULL), (17430, 2004, '', '', '', '0000-00-00', 17430, '', NULL), (17431, 2005, '', '', '**All invoices must go to aerojet.east.ap@aerojet.', '0000-00-00', 17431, '', NULL), (17432, 2006, '', '', 'person ordering the services ', '0000-00-00', 17432, '', NULL), (17433, 2007, '', '', '***NO TECHNICAL SUPPORT, UNLESS PAID***', '0000-00-00', 17433, '', NULL), (17434, 2008, '$144.00 ', '11/3/2008', 'Norco 911027A Ram ', NULL, 17434, 'Range: 0.5 inch', NULL), (17435, 2009, '', '', '', '0000-00-00', 17435, '', NULL), (17436, 2010, '', '', '', '0000-00-00', 17436, '', NULL), (17437, 2011, '', '', '', '0000-00-00', 17437, '', NULL), (17438, 2012, '', '', '', '0000-00-00', 17438, '', NULL), (17439, 2013, '', '', '', '0000-00-00', 17439, '', NULL), (17440, 2014, '', '', '', '0000-00-00', 17440, '', NULL), (17441, 2015, '', '', '', '0000-00-00', 17441, '', NULL), (17442, 2016, '', '', '', '0000-00-00', 17442, '', NULL), (17443, 2017, '', '', '', '0000-00-00', 17443, '', NULL), (17444, 2018, '', '', '', '0000-00-00', 17444, '', NULL), (17445, 2019, '', '', '', '0000-00-00', 17445, '', NULL), (17446, 2020, '', '', '', '0000-00-00', 17446, '', NULL), (17447, 2021, '', '', '', '0000-00-00', 17447, '', NULL), (17448, 2022, '', '', '', '0000-00-00', 17448, '', NULL), (17449, 2023, '', '', '', '0000-00-00', 17449, '', NULL), (17450, 2024, '', '', '', '0000-00-00', 17450, '', NULL), (17451, 2025, '', '', '', '0000-00-00', 17451, '', NULL), (17452, 2026, '', '', '', '0000-00-00', 17452, '', NULL), (17453, 2027, '', '', '', '0000-00-00', 17453, '', NULL), (17454, 2028, '', '', '', '0000-00-00', 17454, '', NULL), (17455, 2029, '', '', '', '0000-00-00', 17455, '', NULL), (17456, 2030, '', '', '', '0000-00-00', 17456, '', NULL), (17457, 2031, '', '', '', '0000-00-00', 17457, '', NULL), (17458, 2032, '', '', '', '0000-00-00', 17458, '', NULL), (17459, 2033, '', '', '', '0000-00-00', 17459, '', NULL), (17460, 2034, '', '', '', '0000-00-00', 17460, '', NULL), (17461, 2035, '', '', '', '0000-00-00', 17461, '', NULL), (17462, 2036, '', '', '', '0000-00-00', 17462, '', NULL), (17463, 2037, '', '', '', '0000-00-00', 17463, '', NULL), (17464, 2038, '', '', '', '0000-00-00', 17464, '', NULL), (17465, 2039, '', '', '', '0000-00-00', 17465, '', NULL), (17466, 2040, '', '', '', '0000-00-00', 17466, '', NULL), (17467, 2041, '', '', '', '0000-00-00', 17467, '', NULL), (17468, 2042, '', '', '', '0000-00-00', 17468, '', NULL), (17469, 2043, '', '', '', '0000-00-00', 17469, '', NULL), (17470, 2044, '', '', '', '0000-00-00', 17470, '', NULL), (17471, 2045, '', '', '', '0000-00-00', 17471, '', NULL), (17472, 2046, '', '', '', '0000-00-00', 17472, '', NULL), (17473, 2047, '', '', '', '0000-00-00', 17473, '', NULL), (17474, 2048, '', '', '', '0000-00-00', 17474, '', NULL), (17475, 2049, '', '', '', '0000-00-00', 17475, '', NULL), (17476, 2050, '', '', '', '0000-00-00', 17476, '', NULL), (17477, 2051, '', '', '', '0000-00-00', 17477, '', NULL), (17478, 2052, '', '', '', '0000-00-00', 17478, '', NULL), (17479, 2053, '', '', 'MAY HAVE 1 ADDITIONAL BOLT TESTER', '0000-00-00', 17479, '', NULL), (17480, 2054, '', '', '', '0000-00-00', 17480, '', NULL), (17481, 2055, '', '', '', '0000-00-00', 17481, '', NULL), (17482, 2056, '', '', '', '0000-00-00', 17482, '', NULL), (17483, 2057, '', '', '', '0000-00-00', 17483, '', NULL), (17484, 2058, '', '', '', '0000-00-00', 17484, '', NULL), (17485, 2059, '', '', '', '0000-00-00', 17485, '', NULL), (17486, 2060, '', '', '', '0000-00-00', 17486, '', NULL), (17487, 2061, '', '', '', '0000-00-00', 17487, '', NULL), (17488, 2062, '', '', '', '0000-00-00', 17488, '', NULL), (17489, 2063, '', '', '', '0000-00-00', 17489, '', NULL), (17490, 2064, '', '', '', '0000-00-00', 17490, '', NULL), (17491, 2065, '', '', '', '0000-00-00', 17491, '', NULL), (17492, 2066, '', '', 'Tinius Olsen Series 1000 Univeral Testing Machine ', '0000-00-00', 17492, '', NULL), (17493, 2067, '', '', '', '0000-00-00', 17493, '', NULL), (17494, 2068, '', '', '', '0000-00-00', 17494, '', NULL), (17495, 2069, '', '', '', '0000-00-00', 17495, '', NULL), (17496, 2070, '', '', '', '0000-00-00', 17496, '', NULL), (17497, 2071, '', '', '', '0000-00-00', 17497, '', NULL), (17498, 2072, '$144.00 ', '10/24/2006', '', NULL, 17498, 'Range: +/- 2.5 mm ', NULL), (17499, 2073, '', '', '', '0000-00-00', 17499, '', NULL), (17500, 2074, '', '', '', '0000-00-00', 17500, '', NULL), (17501, 2075, '$204.00 ', '10/4/2007', 'Stress Con Prestress Jack ', NULL, 17501, 'Range: 5K / 50K', NULL), (17502, 2076, '', '', '', '0000-00-00', 17502, '', NULL), (17503, 2077, '', '', '', '0000-00-00', 17503, '', NULL), (17504, 2078, '', '', '', '0000-00-00', 17504, '', NULL), (17505, 2079, '$144.00 ', '10/23/2012', 'Soiltest Marshall Single Proving Ring ', NULL, 17505, 'Range: 6K', NULL), (17506, 2080, '$409.00 ', '10/23/2012', '', NULL, 17506, 'Range: Digital 400 K Gaug', NULL), (17507, 2081, '', '', '', '0000-00-00', 17507, '', NULL), (17508, 2082, '', '', '', '0000-00-00', 17508, '', NULL), (17509, 2083, '$359.00 ', '5/13/2008', '', NULL, 17509, 'Range: 35 K ', NULL), (17510, 2084, '', '', ' Extra Gauge Jack B - Gauge #2 ', '0000-00-00', 17510, '', NULL), (17511, 2085, '', '', 'of forms - Work Rules and Safety Procedure', '0000-00-00', 17511, '', NULL), (17512, 2086, '$149.00 ', '9/4/2013', ' w/Satec T1M Extensometer', NULL, 17512, 'Range: 2 inches (Asc', NULL), (17513, 2087, '', '', '', '0000-00-00', 17513, '', NULL), (17514, 2088, '', '', '', '0000-00-00', 17514, '', NULL), (17515, 2089, '$204.00 ', '9/4/2013', ' w/Extra Gauge', NULL, 17515, 'Range: 35K', NULL), (17516, 2090, '', '', '', '0000-00-00', 17516, '', NULL), (17517, 2091, '', '', ' Send Certs to Billing ', '0000-00-00', 17517, '', NULL), (17518, 2092, '$158.00 ', '9/8/2011', ' w/ Extra Gauge ', NULL, 17518, 'Range: Gauge 4K / Gauge', NULL), (17519, 2093, '', '', '', '0000-00-00', 17519, '', NULL), (17520, 2094, '', '', ' Send Certs to Job Site', '0000-00-00', 17520, ' ', NULL), (17521, 2095, '', '', '', '0000-00-00', 17521, '', NULL), (17522, 2096, '', '', 'Certs and Invoice goes to billing address Attn: Sh', '0000-00-00', 17522, '', NULL), (17523, 2097, '', '', '', '0000-00-00', 17523, '', NULL), (17524, 2098, '', '', '', '0000-00-00', 17524, '', NULL), (17525, 2099, '', '', '', '0000-00-00', 17525, '', NULL), (17526, 2100, '', '', '', '0000-00-00', 17526, '', NULL), (17527, 2101, '', '', '', '0000-00-00', 17527, '', NULL), (17528, 2102, '', '', '', '0000-00-00', 17528, '', NULL), (17529, 2103, '', '', '', '0000-00-00', 17529, '', NULL), (17530, 2104, '', '', '', '0000-00-00', 17530, '', NULL), (17531, 2105, '', '', '', '0000-00-00', 17531, '', NULL), (17532, 2106, '', '', '', '0000-00-00', 17532, '', NULL), (17533, 2107, '', '', '', '0000-00-00', 17533, '', NULL), (17534, 2108, '', '', '', '0000-00-00', 17534, '', NULL), (17535, 2109, '', '', '', '0000-00-00', 17535, '', NULL), (17536, 2110, '', '', '', '0000-00-00', 17536, '', NULL), (17537, 2111, '', '', '', '0000-00-00', 17537, '', NULL), (17538, 2112, '', '', '', '0000-00-00', 17538, '', NULL), (17539, 2113, '', '', '', '0000-00-00', 17539, '', NULL), (17540, 2114, '', '', '', '0000-00-00', 17540, '', NULL), (17541, 2115, '', '', '', '0000-00-00', 17541, '', NULL), (17542, 2116, '', '', '', '0000-00-00', 17542, '', NULL), (17543, 2117, '', '', '', '0000-00-00', 17543, '', NULL), (17544, 2118, '', '', '', '0000-00-00', 17544, '', NULL), (17545, 2119, '', '', '', '0000-00-00', 17545, '', NULL), (17546, 2120, '', '', '', '0000-00-00', 17546, '', NULL), (17547, 2121, '', '', '', '0000-00-00', 17547, '', NULL), (17548, 2122, '', '', '', '0000-00-00', 17548, '', NULL), (17549, 2123, '', '', '', '0000-00-00', 17549, '', NULL), (17550, 2124, '', '', '', '0000-00-00', 17550, '', NULL), (17551, 2125, '', '', '', '0000-00-00', 17551, '', NULL), (17552, 2126, '', '', '', '0000-00-00', 17552, '', NULL), (17553, 2127, '', '', '', '0000-00-00', 17553, '', NULL), (17554, 2128, '', '', '', '0000-00-00', 17554, '', NULL), (17555, 2129, '', '', '', '0000-00-00', 17555, '', NULL), (17556, 2130, '', '', '', '0000-00-00', 17556, '', NULL), (17557, 2131, '', '', '', '0000-00-00', 17557, '', NULL), (17558, 2132, '', '', '', '0000-00-00', 17558, '', NULL), (17559, 2133, '', '', '', '0000-00-00', 17559, '', NULL), (17560, 2134, '', '', '', '0000-00-00', 17560, '', NULL), (17561, 2135, '', '', '', '0000-00-00', 17561, '', NULL), (17562, 2136, '', '', '', '0000-00-00', 17562, '', NULL), (17563, 2137, '$139.00 ', '', 'Dillon Dynamometer', '0000-00-00', 17563, '', NULL), (17564, 2138, '', '', '', '0000-00-00', 17564, '', NULL), (17565, 2139, '', '', '', '0000-00-00', 17565, '', NULL), (17566, 2140, '', '', '', '0000-00-00', 17566, '', NULL), (17567, 2141, '', '', '', '0000-00-00', 17567, '', NULL), (17568, 2142, '', '', '', '0000-00-00', 17568, '', NULL), (17569, 2143, '$174.00 ', 'New', 'Displacement Encoder ', NULL, 17569, 'Range: ', NULL), (17570, 2144, '', '', ' \"***ISO Requested', '0000-00-00', 17570, '', NULL), (17571, 2145, '', '', '', '0000-00-00', 17571, '', NULL), (17572, 2146, '', '', '', '0000-00-00', 17572, '', NULL), (17573, 2147, '$275.00 ', '9/15/2006', 'Sensotec 41/0573-01-03-CS-100-1S Load Cell (In Ho', NULL, 17573, 'Range: 500 lbs to 50K/Ten', NULL), (17574, 2148, '', '', '', '0000-00-00', 17574, '', NULL), (17575, 2149, '$144.00 ', '', 'Interface Load Cell, Model: 1210 AJ-500-B ', NULL, 17575, 'L Cap: 5500#', NULL), (17576, 2150, '$144.00 ', '9/12/2006', 'Karol Warner S-Type Load Cell LVDT ', NULL, 17576, 'Range: 2,000 lb. cap', NULL), (17577, 2151, '', '', '', '0000-00-00', 17577, '', NULL), (17578, 2152, '', '', '', '0000-00-00', 17578, '', NULL), (17579, 2153, '', '', '', '0000-00-00', 17579, '', NULL), (17580, 2154, '', '', '', '0000-00-00', 17580, '', NULL), (17581, 2155, '', '', '', '0000-00-00', 17581, '', NULL), (17582, 2156, '$124.00 ', '11/2/2000', 'Com Ten Model SGC-100 (E-4) ', NULL, 17582, 'Range: 100 lbs. to 1,000 ', NULL), (17583, 2157, '', '', 'Mail certs to job site location, check comes from ', '0000-00-00', 17583, '', NULL), (17584, 2158, '', '', '', '0000-00-00', 17584, '', NULL), (17585, 2159, '', '', '', '0000-00-00', 17585, '', NULL), (17586, 2160, '', '8/23/2010', 'HCN Dial Indicator (OOS) ', NULL, 17586, 'Range: 2 inch', NULL), (17587, 2161, '', '', '', '0000-00-00', 17587, '', NULL), (17588, 2162, '', '', '', '0000-00-00', 17588, '', NULL), (17589, 2163, '', '', '', '0000-00-00', 17589, '', NULL), (17590, 2164, '', '', '', '0000-00-00', 17590, '', NULL), (17591, 2165, '', '', '', '0000-00-00', 17591, '', NULL), (17592, 2166, '', '', '', '0000-00-00', 17592, '', NULL), (17593, 2167, '', '', '', '0000-00-00', 17593, '', NULL), (17594, 2168, '', '', '', '0000-00-00', 17594, '', NULL), (17595, 2169, '', '', '', '0000-00-00', 17595, '', NULL), (17596, 2170, '', '', '', '0000-00-00', 17596, '', NULL), (17597, 2171, '', '', '', '0000-00-00', 17597, '', NULL), (17598, 2172, '', '', '', '0000-00-00', 17598, '', NULL), (17599, 2173, '', '', '', '0000-00-00', 17599, '', NULL), (17600, 2174, '', '', '', '0000-00-00', 17600, '', NULL), (17601, 2175, '', '', '', '0000-00-00', 17601, '', NULL), (17602, 2176, '', '', '', '0000-00-00', 17602, '', NULL), (17603, 2177, '', '', '', '0000-00-00', 17603, '', NULL), (17604, 2178, '', '', '', '0000-00-00', 17604, '', NULL), (17605, 2179, '', '', '', '0000-00-00', 17605, '', NULL), (17606, 2180, '', '', '', '0000-00-00', 17606, '', NULL), (17607, 2181, '', '', '', '0000-00-00', 17607, '', NULL), (17608, 2182, '', '', '', '0000-00-00', 17608, '', NULL), (17609, 2183, '', '', '', '0000-00-00', 17609, '', NULL), (17610, 2184, '', '', '', '0000-00-00', 17610, '', NULL), (17611, 2185, '', '', '', '0000-00-00', 17611, '', NULL), (17612, 2186, '', '', '', '0000-00-00', 17612, '', NULL), (17613, 2187, '', '', '', '0000-00-00', 17613, '', NULL), (17614, 2188, '', '', '', '0000-00-00', 17614, '', NULL), (17615, 2189, '', '', '', '0000-00-00', 17615, '', NULL), (17616, 2190, '', '', '', '0000-00-00', 17616, '', NULL), (17617, 2191, '', '', '', '0000-00-00', 17617, '', NULL), (17618, 2192, '', '', '', '0000-00-00', 17618, '', NULL), (17619, 2193, '', '', 'Send Certs to Billing Address Attn: Harry Maghee', '0000-00-00', 17619, '', NULL), (17620, 2194, '', '', '', '0000-00-00', 17620, '', NULL), (17621, 2195, '', '', '', '0000-00-00', 17621, '', NULL), (17622, 2196, '$175.00 ', '8/27/2013', '', NULL, 17622, 'Range: 5 Ton', NULL), (17623, 2197, '$144.00 ', '2/23/2007', '', NULL, 17623, 'Range: 10K', NULL), (17624, 2198, '', '', '', '0000-00-00', 17624, '', NULL), (17625, 2199, '', '', '', '0000-00-00', 17625, '', NULL), (17626, 2200, '', '', '', '0000-00-00', 17626, '', NULL), (17627, 2201, '', '', '', '0000-00-00', 17627, '', NULL), (17628, 2202, '', '', '', '0000-00-00', 17628, '', NULL), (17629, 2203, '', '', '', '0000-00-00', 17629, '', NULL), (17630, 2204, '', 'New', ' w/ Shear Displacement ', NULL, 17630, 'Range: 1K', NULL), (17631, 2205, '', '', '', '0000-00-00', 17631, '', NULL), (17632, 2206, '', '', 'Not there on Friday\'s ', '0000-00-00', 17632, '', NULL), (17633, 2207, '$144.00 ', '2/21/2005', 'PSI Pressure Gauge (D-5720)', NULL, 17633, 'Range: 690 kpa', NULL), (17634, 2208, '$449.00 ', '2/21/2005', ' with Forney LVDT Vertical (D-6027)', '0000-00-00', 17634, '', NULL), (17635, 2209, '', '', 'Putting in archived database.', '0000-00-00', 17635, '', NULL), (17636, 2210, '', '', 'Putting in archived database.', '0000-00-00', 17636, '', NULL), (17637, 2211, '', '', '', '0000-00-00', 17637, '', NULL), (17638, 2212, '', '', '', '0000-00-00', 17638, '', NULL), (17639, 2213, '', '', '', '0000-00-00', 17639, '', NULL), (17640, 2214, '', '', '', '0000-00-00', 17640, '', NULL), (17641, 2215, '', '', '', '0000-00-00', 17641, '', NULL), (17642, 2216, '', '', '', '0000-00-00', 17642, '', NULL), (17643, 2217, '', '', '', '0000-00-00', 17643, '', NULL), (17644, 2218, '', '', '', '0000-00-00', 17644, '', NULL), (17645, 2219, '', '', '', '0000-00-00', 17645, '', NULL), (17646, 2220, '', '', 'ADMET Universal Testing Machine 0403301 ', '0000-00-00', 17646, '', NULL), (17647, 2221, '', '', '', '0000-00-00', 17647, '', NULL), (17648, 2222, '$149.00 ', '4/1/2010', '', NULL, 17648, 'Range: 100 lbs', NULL), (17649, 2223, '', '', '', '0000-00-00', 17649, '', NULL), (17650, 2224, '', '', '', '0000-00-00', 17650, '', NULL), (17651, 2225, '', '', '', '0000-00-00', 17651, '', NULL), (17652, 2226, '', '', '', '0000-00-00', 17652, '', NULL), (17653, 2227, '', '', '', '0000-00-00', 17653, '', NULL), (17654, 2228, '', '', '', '0000-00-00', 17654, '', NULL), (17655, 2229, '', '', '', '0000-00-00', 17655, '', NULL), (17656, 2230, '', '', '', '0000-00-00', 17656, '', NULL), (17657, 2231, '', '', '', '0000-00-00', 17657, '', NULL), (17658, 2232, '', '', '', '0000-00-00', 17658, '', NULL), (17659, 2233, '', '', '', '0000-00-00', 17659, '', NULL), (17660, 2234, '', '', '', '0000-00-00', 17660, '', NULL), (17661, 2235, '', '', 'Call Bobby Collins for scheduling ', '0000-00-00', 17661, '', NULL), (17662, 2236, '', '', '', '0000-00-00', 17662, '', NULL), (17663, 2237, '', '', '', '0000-00-00', 17663, '', NULL), (17664, 2238, '', '', '', '0000-00-00', 17664, '', NULL), (17665, 2239, '', '', 'Putting in archived database.', '0000-00-00', 17665, '', NULL), (17666, 2240, '', '', '', '0000-00-00', 17666, '', NULL), (17667, 2241, '', '', '', '0000-00-00', 17667, '', NULL), (17668, 2242, '', '', '', '0000-00-00', 17668, '', NULL), (17669, 2243, '', '', '', '0000-00-00', 17669, '', NULL), (17670, 2244, '', '', '', '0000-00-00', 17670, '', NULL), (17671, 2245, '', '', '', '0000-00-00', 17671, '', NULL), (17672, 2246, '', '', '', '0000-00-00', 17672, '', NULL), (17673, 2247, '', '', '', '0000-00-00', 17673, '', NULL), (17674, 2248, '', '', '', '0000-00-00', 17674, '', NULL), (17675, 2249, '$300.00 ', '4/29/1998', 'Chatillon Force Gauge Digital DFI 500 T&C ', NULL, 17675, 'Range: 100 lb.', NULL), (17676, 2250, '', '', ' T.O. Due in Aug. Possible ProRate for LT-1000 in ', '0000-00-00', 17676, '', NULL), (17677, 2251, '', '', '', '0000-00-00', 17677, '', NULL), (17678, 2252, '', '', '', '0000-00-00', 17678, '', NULL), (17679, 2253, '', '', 'Send Certs to Billing Address Attn: Bill Robertson', '0000-00-00', 17679, '', NULL), (17680, 2254, '', '', '', '0000-00-00', 17680, '', NULL), (17681, 2255, '', '', '', '0000-00-00', 17681, '', NULL), (17682, 2256, '', '', '', '0000-00-00', 17682, '', NULL), (17683, 2257, '$229.00 ', '3/11/2009', 'Soiltest LC-9 Dial Indicator ', NULL, 17683, 'Range: 0.4 inch', NULL), (17684, 2258, '', '', 'E-mail Invoice to joyce.fortna@lrkimball.com', '0000-00-00', 17684, '', NULL), (17685, 2259, '', '', '', '0000-00-00', 17685, '', NULL), (17686, 2260, '', '', '', '0000-00-00', 17686, '', NULL), (17687, 2261, '', '', '', '0000-00-00', 17687, '', NULL), (17688, 2262, '', '', '', '0000-00-00', 17688, '', NULL), (17689, 2263, '', '', '', '0000-00-00', 17689, '', NULL), (17690, 2264, '', '', '', '0000-00-00', 17690, '', NULL), (17691, 2265, '', '', 'Putting in archived database.', '0000-00-00', 17691, '', NULL), (17692, 2266, '', '', '', '0000-00-00', 17692, '', NULL), (17693, 2267, '', '', '', '0000-00-00', 17693, '', NULL), (17694, 2268, '', '', '', '0000-00-00', 17694, '', NULL), (17695, 2269, '', '', '', '0000-00-00', 17695, '', NULL), (17696, 2270, '', '', '', '0000-00-00', 17696, '', NULL), (17697, 2271, '', '', '', '0000-00-00', 17697, '', NULL), (17698, 2272, '', '', '', '0000-00-00', 17698, '', NULL), (17699, 2273, '', '', '', '0000-00-00', 17699, '', NULL), (17700, 2274, '', '', '', '0000-00-00', 17700, '', NULL), (17701, 2275, '', '', ' \"***ISO Requested', '0000-00-00', 17701, '', NULL), (17702, 2276, '', '', '', '0000-00-00', 17702, '', NULL), (17703, 2277, '', '', '', '0000-00-00', 17703, '', NULL), (17704, 2278, '', '', 'Make sure to call Ms. Grubbs the day before you ar', '0000-00-00', 17704, '', NULL), (17705, 2279, '', '', '', '0000-00-00', 17705, '', NULL), (17706, 2280, '', '', '', '0000-00-00', 17706, '', NULL), (17707, 2281, '', '', '', '0000-00-00', 17707, '', NULL), (17708, 2282, '$89.00 ', '3/30/2005', ' with TO Extensometer Model S-1000-2 ', NULL, 17708, '.5\" GL, Range 5%, ID#25-E', NULL), (17709, 2283, '', '', '', '0000-00-00', 17709, '', NULL), (17710, 2284, '', '', 'MTS 1 Machine--Model 810 (E4-01) ', NULL, 17710, 'Range: 50K ID#25-LC06RC0', NULL), (17711, 2285, '', '', 'Putting in archived database.', '0000-00-00', 17711, '', NULL), (17712, 2286, '', '', '', '0000-00-00', 17712, '', NULL), (17713, 2287, '', '', '', '0000-00-00', 17713, '', NULL), (17714, 2288, '', '', '', '0000-00-00', 17714, '', NULL), (17715, 2289, '', '', '', '0000-00-00', 17715, '', NULL), (17716, 2290, '', '', ' ***Site Unmanned must call 2 hours be', '0000-00-00', 17716, '', NULL), (17717, 2291, '', '', '', '0000-00-00', 17717, '', NULL), (17718, 2292, '$104.00 ', '2/14/2012', 'Soiltest Dial Indicator (mov', NULL, 17718, 'Range: 1 inch', NULL), (17719, 2293, '', '', '', '0000-00-00', 17719, '', NULL), (17720, 2294, '', '', 'Fax copy of Cert to Job Site Mail Original to Bill', '0000-00-00', 17720, '', NULL), (17721, 2295, '', '', '', '0000-00-00', 17721, '', NULL), (17722, 2296, '', '', ' ***2 Year Sche', '0000-00-00', 17722, '', NULL), (17723, 2297, '', '', '', '0000-00-00', 17723, '', NULL), (17724, 2298, '', '', '', '0000-00-00', 17724, '', NULL), (17725, 2299, '', '', '', '0000-00-00', 17725, '', NULL), (17726, 2300, '', '', '', '0000-00-00', 17726, '', NULL), (17727, 2301, '', '', '', '0000-00-00', 17727, '', NULL), (17728, 2302, '', '', '', '0000-00-00', 17728, '', NULL), (17729, 2303, '', '', '', '0000-00-00', 17729, '', NULL), (17730, 2304, '', '', '', '0000-00-00', 17730, '', NULL), (17731, 2305, '', '', '', '0000-00-00', 17731, '', NULL), (17732, 2306, '', '', '', '0000-00-00', 17732, '', NULL), (17733, 2307, '', '', '', '0000-00-00', 17733, '', NULL), (17734, 2308, '', '', '', '0000-00-00', 17734, '', NULL), (17735, 2309, '', '', '', '0000-00-00', 17735, '', NULL), (17736, 2310, '', '', '', '0000-00-00', 17736, '', NULL), (17737, 2311, '', '', ' ***ISO Requested***', '0000-00-00', 17737, '', NULL), (17738, 2312, '$144.00 ', '6/10/2008', 'Geotac Pressure Transducer ', NULL, 17738, 'Range: 200 psi ', NULL), (17739, 2313, '', '', 'Putting in archived database, machines moved to di', '0000-00-00', 17739, '', NULL), (17740, 2314, '', '', '', NULL, 17740, 'Range: 0.4 inch', NULL), (17741, 2315, '', '', '***QA Manual Required*** ***Nuclear***', '0000-00-00', 17741, '', NULL), (17742, 2316, '', '', 'Certs to billing as per dave', '0000-00-00', 17742, '', NULL), (17743, 2317, '$109.00 ', '1/21/2013', ' w/United EZ 2-2 Extensom', NULL, 17743, 'Range: 0.02 in/in (1\" G', NULL), (17744, 2318, '', '', 'As per customer, no longer uses this equipment. Pu', '0000-00-00', 17744, '', NULL), (17745, 2319, '', '', '', '0000-00-00', 17745, '', NULL), (17746, 2320, '', '', '', '0000-00-00', 17746, '', NULL), (17747, 2321, '$144.00 ', '11/10/2009', 'Soiltest CBR Single Proving Ring ', NULL, 17747, 'Range: 500 lbs ', NULL), (17748, 2322, '', '', 'Hogentogler Dial Indicator (OOS) ', '0000-00-00', 17748, '', NULL), (17749, 2323, '', '', '', '0000-00-00', 17749, '', NULL), (17750, 2324, '$154.00 ', '9/16/2015', 'Satec MK3-300-HVL Speed Control ', NULL, 17750, 'Range: 0.02 in/in (GL 1 ', NULL), (17751, 2325, '', '', '', '0000-00-00', 17751, '', NULL), (17752, 2326, '', '', '', '0000-00-00', 17752, '', NULL), (17753, 2327, '', '', '', '0000-00-00', 17753, '', NULL), (17754, 2328, '', '', 'Putting in archived database; no longer uses our c', '0000-00-00', 17754, '', NULL), (17755, 2329, '', '', '', '0000-00-00', 17755, '', NULL), (17756, 2330, '', '', '', '0000-00-00', 17756, '', NULL), (17757, 2331, '', '', '', '0000-00-00', 17757, '', NULL), (17758, 2332, '', '', '', '0000-00-00', 17758, '', NULL), (17759, 2333, '', '', '', '0000-00-00', 17759, '', NULL), (17760, 2334, '', '', '', '0000-00-00', 17760, '', NULL), (17761, 2335, '', '', '', '0000-00-00', 17761, '', NULL), (17762, 2336, '', '', '****Send certs to job site address*****', '0000-00-00', 17762, '', NULL), (17763, 2337, '', '', '', '0000-00-00', 17763, '', NULL), (17764, 2338, '$144.00 ', '1/13/2010', 'Wika Pressure Gauge ', NULL, 17764, 'Range: 5K (Tension Only', NULL), (17765, 2339, '', '', '', '0000-00-00', 17765, '', NULL), (17766, 2340, '', '', '***S/N 01303 Pot to adjust is behind cover, below ', '0000-00-00', 17766, '', NULL), (17767, 2341, '', '', '', '0000-00-00', 17767, '', NULL), (17768, 2342, '', '', '', '0000-00-00', 17768, '', NULL), (17769, 2343, '', '', '', '0000-00-00', 17769, '', NULL), (17770, 2344, '', '', '', '0000-00-00', 17770, '', NULL), (17771, 2345, '', '', '', '0000-00-00', 17771, '', NULL), (17772, 2346, '', '', '', '0000-00-00', 17772, '', NULL), (17773, 2347, '', '', '', '0000-00-00', 17773, '', NULL), (17774, 2348, '', '', '', '0000-00-00', 17774, '', NULL), (17775, 2349, '', '', '', '0000-00-00', 17775, '', NULL), (17776, 2350, '', '', '', '0000-00-00', 17776, '', NULL), (17777, 2351, '', '', ' DO NOT SCHEDULE FOR TUESDAYS', '0000-00-00', 17777, '', NULL), (17778, 2352, '', '', '', '0000-00-00', 17778, '', NULL), (17779, 2353, '', '', '', '0000-00-00', 17779, '', NULL), (17780, 2354, '', '', '', '0000-00-00', 17780, '', NULL), (17781, 2355, '', '', '', '0000-00-00', 17781, '', NULL), (17782, 2356, '', '', '', '0000-00-00', 17782, '', NULL), (17783, 2357, '', '', '', '0000-00-00', 17783, '', NULL), (17784, 2358, '', '', '', '0000-00-00', 17784, '', NULL), (17785, 2359, '', '', '', '0000-00-00', 17785, '', NULL), (17786, 2360, '', '', '', '0000-00-00', 17786, '', NULL), (17787, 2361, '', '', 'Putting in archived database.', '0000-00-00', 17787, '', NULL), (17788, 2362, '', '', '', '0000-00-00', 17788, '', NULL), (17789, 2363, '', '', '', '0000-00-00', 17789, '', NULL), (17790, 2364, '', '', 'Putting in archived database', '0000-00-00', 17790, '', NULL), (17791, 2365, '', '', 'Email invoice to bstvendor@gtaeng.com in PDF form ', '0000-00-00', 17791, '', NULL), (17792, 2366, '', '', 'Must have Project managers name and project number', '0000-00-00', 17792, '', NULL), (17793, 2367, '', '', '', '0000-00-00', 17793, '', NULL), (17794, 2368, '', '', '', '0000-00-00', 17794, '', NULL), (17795, 2369, '', '', 'Putting in archived database.', NULL, 17795, 'pounds force lettering is', NULL), (17796, 2370, '', '', 'have a PO#, ship to address & First & Last name of', '0000-00-00', 17796, '', NULL), (17797, 2371, '', '', '', '0000-00-00', 17797, '', NULL), (17798, 2372, '', '', '', '0000-00-00', 17798, '', NULL), (17799, 2373, '', '', '', '0000-00-00', 17799, '', NULL), (17800, 2374, '', '', '', '0000-00-00', 17800, '', NULL), (17801, 2375, '', '', '', '0000-00-00', 17801, '', NULL), (17802, 2376, '', '', '', '0000-00-00', 17802, '', NULL), (17803, 2377, '', '', '', '0000-00-00', 17803, '', NULL), (17804, 2378, '', '', '*** Paying with Credit Card ***', '0000-00-00', 17804, '', NULL), (17805, 2379, '', '', '*** Paying with Credit Card ***', '0000-00-00', 17805, '', NULL), (17806, 2380, '', '', '', '0000-00-00', 17806, '', NULL), (17807, 2381, '', '', '', '0000-00-00', 17807, '', NULL), (17808, 2382, '', '', '', '0000-00-00', 17808, '', NULL), (17809, 2383, '', '', '', '0000-00-00', 17809, '', NULL), (17810, 2384, '', '', '', '0000-00-00', 17810, '', NULL), (17811, 2385, '', '', '', '0000-00-00', 17811, '', NULL), (17812, 2386, '', '', '', '0000-00-00', 17812, '', NULL), (17813, 2387, '', '', 'Putting in archived database.', '0000-00-00', 17813, '', NULL), (17814, 2388, '', '', '', '0000-00-00', 17814, '', NULL), (17815, 2389, '', '', '', '0000-00-00', 17815, '', NULL), (17816, 2390, '', '', '', '0000-00-00', 17816, '', NULL), (17817, 2391, '', '', ' Any invoice over $5000 would need a PO#', '0000-00-00', 17817, '', NULL), (17818, 2392, '', '', '', '0000-00-00', 17818, '', NULL), (17819, 2393, '$229.00 ', '10/7/2015', 'Durham Geo Pressure Transducer w/ E-405 Digital ', NULL, 17819, 'Range: 1/4 TSF to 16 TSF', NULL), (17820, 2394, '$149.00 ', '10/7/2015', '***ISO Requested*** ***continued on next page **', NULL, 17820, 'Range: 55 KN (E-', NULL), (17821, 2395, '', '', '', '0000-00-00', 17821, '', NULL), (17822, 2396, '', '', 'continued on next page......', NULL, 17822, '***ISO Requested***', NULL), (17823, 2397, '', '', '', '0000-00-00', 17823, '', NULL), (17824, 2398, '', '', '', '0000-00-00', 17824, '', NULL), (17825, 2399, '', '', '', '0000-00-00', 17825, '', NULL), (17826, 2400, '', '', '', '0000-00-00', 17826, '', NULL), (17827, 2401, '$154.00 ', '5/12/2015', ' w/ Micro Measurement HS-10 LVDT ', NULL, 17827, 'Range: 0.25 in/in', NULL), (17828, 2402, '', '', '', '0000-00-00', 17828, '', NULL), (17829, 2403, '', '', 'Putting in archived database.', '0000-00-00', 17829, '', NULL), (17830, 2404, '', '', 'Tetsmark CM-2500-LD Digital Compression Machine ', '0000-00-00', 17830, '', NULL), (17831, 2405, '', '', 'Putting in archived database.', '0000-00-00', 17831, '', NULL), (17832, 2406, '', '', '', '0000-00-00', 17832, '', NULL), (17833, 2407, '', '', '', '0000-00-00', 17833, '', NULL), (17834, 2408, '', '8/1/2006', '', NULL, 17834, 'Cap: 10,000 lbs', NULL), (17835, 2409, '', '', '', '0000-00-00', 17835, '', NULL), (17836, 2410, '', '', '', '0000-00-00', 17836, '', NULL), (17837, 2411, '', '', '', NULL, 17837, '412-767-4861 Fax ', NULL), (17838, 2412, '', '', '', '0000-00-00', 17838, '', NULL), (17839, 2413, '$99.00 ', '2/16/2010', 'ELE 35-1475 Type N Hammer ', NULL, 17839, 'Range: 78 to 82', NULL), (17840, 2414, '', '', '', '0000-00-00', 17840, '', NULL), (17841, 2415, '', '', '', '0000-00-00', 17841, '', NULL), (17842, 2416, '', '', '', '0000-00-00', 17842, '', NULL), (17843, 2417, '', '', '', '0000-00-00', 17843, '', NULL), (17844, 2418, '', '', '', '0000-00-00', 17844, '', NULL), (17845, 2419, '', '', '', '0000-00-00', 17845, '', NULL), (17846, 2420, '', '', '', '0000-00-00', 17846, '', NULL), (17847, 2421, '', '', '', '0000-00-00', 17847, '', NULL), (17848, 2422, '', '', '', '0000-00-00', 17848, '', NULL), (17849, 2423, '', '', '', '0000-00-00', 17849, '', NULL), (17850, 2424, '', '', '', '0000-00-00', 17850, '', NULL), (17851, 2425, '', '', '', '0000-00-00', 17851, '', NULL), (17852, 2426, '', '', '', '0000-00-00', 17852, '', NULL), (17853, 2427, '', '', '', '0000-00-00', 17853, '', NULL), (17854, 2428, '', '', '', '0000-00-00', 17854, '', NULL), (17855, 2429, '$144.00 ', '1/21/2009', 'ELE Triflex 2 Pressure Transducer ', NULL, 17855, 'Range: 2 Inches', NULL), (17856, 2430, '', '', '', '0000-00-00', 17856, '', NULL), (17857, 2431, '', '', '', '0000-00-00', 17857, '', NULL), (17858, 2432, '', '', '', '0000-00-00', 17858, '', NULL), (17859, 2433, '', '', '', '0000-00-00', 17859, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (17860, 2434, '$409.00 ', '12/16/1997', '', NULL, 17860, 'Range 30/250K', NULL), (17861, 2435, '', '', '', '0000-00-00', 17861, '', NULL), (17862, 2436, '', '', '', '0000-00-00', 17862, '', NULL), (17863, 2437, '', '', '', '0000-00-00', 17863, '', NULL), (17864, 2438, '', '', '', '0000-00-00', 17864, '', NULL), (17865, 2439, '', '', '', '0000-00-00', 17865, '', NULL), (17866, 2440, '', '', '', '0000-00-00', 17866, '', NULL), (17867, 2441, '', '', '', '0000-00-00', 17867, '', NULL), (17868, 2442, '', '', '', '0000-00-00', 17868, '', NULL), (17869, 2443, '', '', '', '0000-00-00', 17869, '', NULL), (17870, 2444, '', '', '', '0000-00-00', 17870, '', NULL), (17871, 2445, '', '', '', '0000-00-00', 17871, '', NULL), (17872, 2446, '$139.00 ', '12/19/2005', 'Soiltest Single Proving Ring ', NULL, 17872, 'Range: 500 lbs', NULL), (17873, 2447, '', '', '', '0000-00-00', 17873, '', NULL), (17874, 2448, '', '', '', '0000-00-00', 17874, '', NULL), (17875, 2449, '', '', '', '0000-00-00', 17875, '', NULL), (17876, 2450, '', '', '', '0000-00-00', 17876, '', NULL), (17877, 2451, '', '', '', '0000-00-00', 17877, '', NULL), (17878, 2452, '', '', '', '0000-00-00', 17878, '', NULL), (17879, 2453, '', '', '', '0000-00-00', 17879, '', NULL), (17880, 2454, '', '', '', '0000-00-00', 17880, '', NULL), (17881, 2455, '', '', '', '0000-00-00', 17881, '', NULL), (17882, 2456, '', '', '', '0000-00-00', 17882, '', NULL), (17883, 2457, '', '', '', '0000-00-00', 17883, '', NULL), (17884, 2458, '', '', '', '0000-00-00', 17884, '', NULL), (17885, 2459, '', '', '', '0000-00-00', 17885, '', NULL), (17886, 2460, '', '', 'jason.hardy@naes.com', '0000-00-00', 17886, '', NULL), (17887, 2461, '', '3/20/2012', ' w/ Interface Digita', NULL, 17887, 'Range: 100K ', NULL), (17888, 2462, '', '3/12/2012', ' w/ Tovey Load Cell Plus ', NULL, 17888, 'Range: 10K ', NULL), (17889, 2463, '', '', '', '0000-00-00', 17889, '', NULL), (17890, 2464, '', '', '', '0000-00-00', 17890, '', NULL), (17891, 2465, '$204.00 ', '6/29/2011', ' w/ Simplex Ram ', NULL, 17891, 'Range: 10K (9,100 PSI', NULL), (17892, 2466, '', '', '', '0000-00-00', 17892, '', NULL), (17893, 2467, '', '', '', '0000-00-00', 17893, '', NULL), (17894, 2468, '', '', '', '0000-00-00', 17894, '', NULL), (17895, 2469, '', '', 'Put month, Day & Year on Stickers', '0000-00-00', 17895, '', NULL), (17896, 2470, '', '', '', '0000-00-00', 17896, '', NULL), (17897, 2471, '', '', 'Certs to billing attn: Mark Moyer', '0000-00-00', 17897, '', NULL), (17898, 2472, '', '', '', '0000-00-00', 17898, '', NULL), (17899, 2473, '$104.00 ', '8/13/2008', 'Fowler Mdl. 52-520-210-0 Dial Indicator ', NULL, 17899, 'Range: 2 inch ', NULL), (17900, 2474, '', '', '', '0000-00-00', 17900, '', NULL), (17901, 2475, '', '', '', '0000-00-00', 17901, '', NULL), (17902, 2476, '', '', 'Send Certs to Job Site.', '0000-00-00', 17902, '', NULL), (17903, 2477, '', '', '', '0000-00-00', 17903, ' ', NULL), (17904, 2478, '', '', '', '0000-00-00', 17904, '', NULL), (17905, 2479, '', '', '', '0000-00-00', 17905, '', NULL), (17906, 2480, '', '', '', NULL, 17906, 'Putting in archived datab', NULL), (17907, 2481, '', '', '', NULL, 17907, 'Putting in archived datab', NULL), (17908, 2482, '', '', '', '0000-00-00', 17908, '', NULL), (17909, 2483, '$560.00 ', '5/31/2005', 'Trautwein Model MVFS Pressure Transducer (OOS) ', NULL, 17909, 'Range: 50/100/200/500/1,0', NULL), (17910, 2484, '$144.00 ', '6/1/2006', 'Starrett Dial Indicator Model: 25-631 (Done in HC ', NULL, 17910, 'Range: 1 Inch', NULL), (17911, 2485, '', '', '', NULL, 17911, 'Putting in archived datab', NULL), (17912, 2486, '', '', '', '0000-00-00', 17912, '', NULL), (17913, 2487, '', '', 'Soiltest CT 800 Digital Compression Machine(OUT OF', '0000-00-00', 17913, '', NULL), (17914, 2488, '', '', '', '0000-00-00', 17914, '', NULL), (17915, 2489, '', '', '', '0000-00-00', 17915, '', NULL), (17916, 2490, '', '', '', '0000-00-00', 17916, '', NULL), (17917, 2491, '$124.00 ', '11/17/2008', 'ELE Pressure Transducer--Channel# 8 (D-', NULL, 17917, 'Range: 150 psi', NULL), (17918, 2492, '$124.00 ', '11/17/2008', '', NULL, 17918, 'Range: 1 inch', NULL), (17919, 2493, '$149.00 ', '1/21/2009', 'Wykeham Farrance Mdl. 24251 Deflection Frame #3/Ch', NULL, 17919, 'Range: 1/4 TSF to 16 TSF', NULL), (17920, 2494, '', '', ' ***Certs sent to Oldcastle job si', '0000-00-00', 17920, '', NULL), (17921, 2495, '', '', '', '0000-00-00', 17921, '', NULL), (17922, 2496, '', '', '', '0000-00-00', 17922, '', NULL), (17923, 2497, '', '', '', '0000-00-00', 17923, '', NULL), (17924, 2498, '', '', '', '0000-00-00', 17924, '', NULL), (17925, 2499, '', '', '', '0000-00-00', 17925, '', NULL), (17926, 2500, '', '', '', '0000-00-00', 17926, '', NULL), (17927, 2501, '', '', '', '0000-00-00', 17927, '', NULL), (17928, 2502, '', '', '', '0000-00-00', 17928, '', NULL), (17929, 2503, '', '', '', '0000-00-00', 17929, '', NULL), (17930, 2504, '', '', '', '0000-00-00', 17930, '', NULL), (17931, 2505, '', '', 'email invoices to mikzinvoices@mackconcrete.com', '0000-00-00', 17931, '', NULL), (17932, 2506, '$149.00 ', '1/29/2008', 'CSI Model LC-40 Hydraulic Load Cell OOS (E-4 & ', NULL, 17932, 'Range: 50K OO', NULL), (17933, 2507, '', '', '', '0000-00-00', 17933, '', NULL), (17934, 2508, '$144.00 ', '9/12/2006', 'Karol Warner S-Type Load Cell LVDT ', NULL, 17934, 'Range: 2,000 lb. cap', NULL), (17935, 2509, '$144.00 ', '', 'Interface Load Cell, Model: 1210 AJ-500-B ', NULL, 17935, 'L Cap: 5500#', NULL), (17936, 2510, '', '', '', '0000-00-00', 17936, '', NULL), (17937, 2511, '$204.00 ', '1/3/2013', 'Stressing Jack Hercules HSJ', NULL, 17937, 'Range: Pre. 5,000 lbs / F', NULL), (17938, 2512, '', '', '', '0000-00-00', 17938, '', NULL), (17939, 2513, '', '', '', '0000-00-00', 17939, '', NULL), (17940, 2514, '', '', '', '0000-00-00', 17940, '', NULL), (17941, 2515, '', '', '', '0000-00-00', 17941, '', NULL), (17942, 2516, '', '', '', '0000-00-00', 17942, '', NULL), (17943, 2517, '', '', '', '0000-00-00', 17943, '', NULL), (17944, 2518, '', '', '', '0000-00-00', 17944, '', NULL), (17945, 2519, '', '', 'Com-Ten Toploader Model USB2A2 95 Series ', '0000-00-00', 17945, '', NULL), (17946, 2520, '', '', '', '0000-00-00', 17946, '', NULL), (17947, 2521, '', '', '', '0000-00-00', 17947, '', NULL), (17948, 2522, '', '', '', '0000-00-00', 17948, '', NULL), (17949, 2523, '', '', '', '0000-00-00', 17949, '', NULL), (17950, 2524, '', '', '', '0000-00-00', 17950, '', NULL), (17951, 2525, '', '', '', '0000-00-00', 17951, '', NULL), (17952, 2526, '', '', '', '0000-00-00', 17952, '', NULL), (17953, 2527, '', '', '', '0000-00-00', 17953, '', NULL), (17954, 2528, '', '', '', '0000-00-00', 17954, '', NULL), (17955, 2529, '', '', '', '0000-00-00', 17955, '', NULL), (17956, 2530, '', '', '', '0000-00-00', 17956, '', NULL), (17957, 2531, '', '', '', '0000-00-00', 17957, '', NULL), (17958, 2532, '', '', '', '0000-00-00', 17958, '', NULL), (17959, 2533, '', '', 'Billin to Applus, Certs in Quality Inspections Nam', '0000-00-00', 17959, '', NULL), (17960, 2534, '', '', '', '0000-00-00', 17960, '', NULL), (17961, 2535, '', '', 'Billing to Applus Certs in Quality Inspections Nam', '0000-00-00', 17961, '', NULL), (17962, 2536, '', '', 'Billing to Applus Certs in Quality Inspections Nam', '0000-00-00', 17962, '', NULL), (17963, 2537, '$89.00 ', '1/22/2013', 'Adam ADK-20 Scale (ID# Q-2470) ', NULL, 17963, 'Range: 20 Gram to 2610 G', NULL), (17964, 2538, '$89.00 ', '1/19/2016', '', NULL, 17964, 'Range: 1 lbs to 110 lbs ', NULL), (17965, 2539, '$89.00 ', '2/4/2014', '', NULL, 17965, 'Range: 8100G', NULL), (17966, 2540, '', '', '', '0000-00-00', 17966, '', NULL), (17967, 2541, '', '', 'Copy of invoice needs E-mailed to card.payables@re', NULL, 17967, ' Add Fee', NULL), (17968, 2542, '', '', '', '0000-00-00', 17968, '', NULL), (17969, 2543, '', '', '', '0000-00-00', 17969, '', NULL), (17970, 2544, '', '', '', '0000-00-00', 17970, '', NULL), (17971, 2545, '', '', '', '0000-00-00', 17971, '', NULL), (17972, 2546, '', '', '', '0000-00-00', 17972, '', NULL), (17973, 2547, '', '', '***SPECIAL SET-UP NEEDED, REFER TO FILE FOR FUTURE', NULL, 17973, 'TO FUTURE WORK ORDERS****', NULL), (17974, 2548, '', '', '', '0000-00-00', 17974, '', NULL), (17975, 2549, '', '', '', '0000-00-00', 17975, '', NULL), (17976, 2550, '', '', '', '0000-00-00', 17976, '', NULL), (17977, 2551, '', '', '', '0000-00-00', 17977, '', NULL), (17978, 2552, '', '', '', '0000-00-00', 17978, '', NULL), (17979, 2553, '$149.00 ', 'New', ' w/ Extensometer ', NULL, 17979, 'Range: ', NULL), (17980, 2554, '', '', '', '0000-00-00', 17980, '', NULL), (17981, 2555, '', '', '', '0000-00-00', 17981, '', NULL), (17982, 2556, '', '', '', '0000-00-00', 17982, '', NULL), (17983, 2557, '', '', '', '0000-00-00', 17983, '', NULL), (17984, 2558, '', '', '', '0000-00-00', 17984, '', NULL), (17985, 2559, '', '', 'Forney PT-75-P Pipe Tester with 2 gauges ', '0000-00-00', 17985, '', NULL), (17986, 2560, '', '', 'Controls Digital Compression Machine w/Gauge Buste', '0000-00-00', 17986, '', NULL), (17987, 2561, '', '', '', '0000-00-00', 17987, '', NULL), (17988, 2562, '', '', '', '0000-00-00', 17988, '', NULL), (17989, 2563, '', '', ' ***ISO Requested**', '0000-00-00', 17989, '', NULL), (17990, 2564, '$144.00 ', 'New', 'Proving Ring ', NULL, 17990, 'Range: ', NULL), (17991, 2565, '', '', '', '0000-00-00', 17991, '', NULL), (17992, 2566, '', '', '', '0000-00-00', 17992, '', NULL), (17993, 2567, '', '', '', '0000-00-00', 17993, '', NULL), (17994, 2568, '', '', '', '0000-00-00', 17994, '', NULL), (17995, 2569, '$209.00 ', '5/6/2011', 'RST Instruments Mdl. C-106 Pressure Transducer (D', NULL, 17995, 'Range : 16 KN/ 97 KN', NULL), (17996, 2570, '', '', '', NULL, 17996, 'Certs to billing and emai', NULL), (17997, 2571, '', '', '', '0000-00-00', 17997, '', NULL), (17998, 1, ' ', ' ', ' ', '0000-00-00', 17998, '', NULL), (17999, 2, '', '', '', '0000-00-00', 17999, '', NULL), (18000, 3, '', '', '', '0000-00-00', 18000, '', NULL), (18001, 4, 'S/N 2122', ' w/ Displacement (ID# 1-1003) (E-2309)', 'Range: 5 Inch ', '2012-02-23', 18001, '2/23/2012', NULL), (18002, 5, 'S/N 1656', ' W/ E-400 Digital (E-4)', 'Range: 5K', '2007-01-05', 18002, '1/5/2007', NULL), (18003, 6, '', '', '', '0000-00-00', 18003, '', NULL), (18004, 7, '', '', '', '0000-00-00', 18004, '', NULL), (18005, 8, 'S/N D1711C', 'Enerpac RCH121H 12 Ton Ram w/ Wika 2,000 PSI Gauge', 'Range: 5K (1,730 PSI) (E-4 & ManSpecs)', '2013-05-08', 18005, '5/8/2013', NULL), (18006, 9, '', '', '', '0000-00-00', 18006, '', NULL), (18007, 10, 'S/N 02075926', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', '2008-11-25', 18007, '11/25/2008', NULL), (18008, 11, '', '', '', '0000-00-00', 18008, '', NULL), (18009, 12, '', '', '', '0000-00-00', 18009, '', NULL), (18010, 13, '', '', '', '0000-00-00', 18010, '', NULL), (18011, 14, '', '', '', '0000-00-00', 18011, '', NULL), (18012, 15, 'S/N 105445', ' w/ Humboldt Load Cell Channel #1 (E-4)', 'Range: 10K', '2013-05-13', 18012, '5/13/2013', NULL), (18013, 16, '', ' ***Facility not manned at all times***', '', '0000-00-00', 18013, '', NULL), (18014, 17, '', '', '', '0000-00-00', 18014, '', NULL), (18015, 18, '', '', '', '0000-00-00', 18015, '', NULL), (18016, 19, 'S/N 221202', 'Transducer Techniques Mdl. SSI Load Cell Model LBO-5K-OPT-HT', 'Range: 5K (E-4)', '2008-07-21', 18016, '7/21/2008', NULL), (18017, 20, '', '', '', '0000-00-00', 18017, '', NULL), (18018, 21, '', '', '', '0000-00-00', 18018, '', NULL), (18019, 22, '', 'Send Soliciation letter to Craig Mays 606-435-1022 Fax', 'Certs to cmays@cbceng.com', '0000-00-00', 18019, '', NULL), (18020, 23, '', '', '', '0000-00-00', 18020, '', NULL), (18021, 24, '', '', '', '0000-00-00', 18021, '', NULL), (18022, 25, '', '', '', '0000-00-00', 18022, '', NULL), (18023, 26, '', ' *Send Certs to Billing Address**', '', '0000-00-00', 18023, '', NULL), (18024, 27, '', '', '', '0000-00-00', 18024, '', NULL), (18025, 28, '', '', '', '0000-00-00', 18025, '', NULL), (18026, 29, '', '', '', '0000-00-00', 18026, '', NULL), (18027, 30, '', '', '', '0000-00-00', 18027, '', NULL), (18028, 31, '', '', '', '0000-00-00', 18028, '', NULL), (18029, 32, '', '', '', '0000-00-00', 18029, '', NULL), (18030, 33, '', '', '', '0000-00-00', 18030, '', NULL), (18031, 34, '', '', '', '0000-00-00', 18031, '', NULL), (18032, 35, '', '', '', '0000-00-00', 18032, '', NULL), (18033, 36, '', '', '', '0000-00-00', 18033, '', NULL), (18034, 37, '', 'Required 1 hour safety training on site ', '', '0000-00-00', 18034, '', NULL), (18035, 38, 'UTM0403301', 'ADMET Universal Testing Machine 0403301 (E-4)', '', '0000-00-00', 18035, '', NULL), (18036, 39, '', '', '', '0000-00-00', 18036, '', NULL), (18037, 40, '', '', '', '0000-00-00', 18037, '', NULL), (18038, 41, '', ' Send Certs to Job Site', '', '0000-00-00', 18038, '', NULL), (18039, 42, '', '', '', '0000-00-00', 18039, '', NULL), (18040, 43, '', '', '', '0000-00-00', 18040, '', NULL), (18041, 44, '', '', '', '0000-00-00', 18041, '', NULL), (18042, 45, '', '', '', '0000-00-00', 18042, '', NULL), (18043, 46, '', '', '', '0000-00-00', 18043, '', NULL), (18044, 47, '', '', '', '0000-00-00', 18044, '', NULL), (18045, 48, '', '', '', '0000-00-00', 18045, '', NULL), (18046, 49, '', '', '', '0000-00-00', 18046, '', NULL), (18047, 50, '', '', '', '0000-00-00', 18047, '', NULL), (18048, 51, '', '', '', '0000-00-00', 18048, '', NULL), (18049, 52, '', '', '', '0000-00-00', 18049, '', NULL), (18050, 53, '', '', '', '0000-00-00', 18050, '', NULL), (18051, 54, '', '', '', '0000-00-00', 18051, '', NULL), (18052, 55, '', ' ***ISO Requested***', '', '0000-00-00', 18052, '', NULL), (18053, 56, 'S/N A1508BY', ' w/ 10,000 PSI Gauge (E-4 & ManSpecs )', 'Range: 40K (8,300 PSI) ', '2013-06-10', 18053, '6/10/2013', NULL), (18054, 57, '', '', '', '0000-00-00', 18054, '', NULL), (18055, 58, '', '', '', '0000-00-00', 18055, '', NULL), (18056, 59, '', 'Only need to do .5 to 16\" auto range next year', '', '0000-00-00', 18056, '', NULL), (18057, 60, 'S/N 0802SBALH01008', 'CAS Mdl. SBA-10KLB-I Load Cell (E-4)', 'Range: 10K (Channel #1)', '2012-11-27', 18057, '11/27/2012', NULL), (18058, 61, 'S/N 061091801', 'CDI LG2110 Dial Indicator (D-6027)', 'Range: 1 Inch ', '2012-11-27', 18058, '11/27/2012', NULL), (18059, 62, '', '', '', '0000-00-00', 18059, '', NULL), (18060, 63, '', '', '', '0000-00-00', 18060, '', NULL), (18061, 64, '', '', '', '0000-00-00', 18061, '', NULL), (18062, 65, '', '', '', '0000-00-00', 18062, '', NULL), (18063, 66, '', '', '', '0000-00-00', 18063, '', NULL), (18064, 67, '', '', '', '0000-00-00', 18064, '', NULL), (18065, 68, 'S/N 70128', 'Marshalltown Gauge (ASME Grade B)', 'Range: 35 in H20', '2008-11-20', 18065, '11/20/2008', NULL), (18066, 69, '', '', '', '0000-00-00', 18066, '', NULL), (18067, 70, '', '', '', '0000-00-00', 18067, '', NULL), (18068, 71, '', '', '', '0000-00-00', 18068, '', NULL), (18069, 72, '', '', '', '0000-00-00', 18069, '', NULL), (18070, 73, '', '', '', '0000-00-00', 18070, '', NULL), (18071, 74, '', '', '', '0000-00-00', 18071, '', NULL), (18072, 75, '', '', '', '0000-00-00', 18072, '', NULL), (18073, 76, '', '', '', '0000-00-00', 18073, '', NULL), (18074, 77, '', '', '', '0000-00-00', 18074, '', NULL), (18075, 78, '', '', '', '0000-00-00', 18075, '', NULL), (18076, 79, '', '', '', '0000-00-00', 18076, '', NULL), (18077, 80, '', '', '', '0000-00-00', 18077, '', NULL), (18078, 81, '', '', '', '0000-00-00', 18078, '', NULL), (18079, 82, '', '', '', '0000-00-00', 18079, '', NULL), (18080, 83, '', '', '', '0000-00-00', 18080, '', NULL), (18081, 84, '', '', '', '0000-00-00', 18081, '', NULL), (18082, 85, '', '', '', '0000-00-00', 18082, '', NULL), (18083, 86, '', '', '', '0000-00-00', 18083, '', NULL), (18084, 87, '', '', '', '0000-00-00', 18084, '', NULL), (18085, 88, '', '', '', '0000-00-00', 18085, '', NULL), (18086, 89, '', '', '', '0000-00-00', 18086, '', NULL), (18087, 90, '', '', '', '0000-00-00', 18087, '', NULL), (18088, 91, 'S/N 595168', 'ELE Pressure Transducer--Channel# 8 (D-5720)', 'Range: 150 psi', '2008-11-17', 18088, '11/17/2008', NULL), (18089, 92, '', '', '', '0000-00-00', 18089, '', NULL), (18090, 93, '', '', '', '0000-00-00', 18090, '', NULL), (18091, 94, '', '', '', '0000-00-00', 18091, '', NULL), (18092, 95, '', '', '', '0000-00-00', 18092, '', NULL), (18093, 96, '', '', '', '0000-00-00', 18093, '', NULL), (18094, 97, '', '', '', '0000-00-00', 18094, '', NULL), (18095, 98, '', '', '', '0000-00-00', 18095, '', NULL), (18096, 99, '', '', '', '0000-00-00', 18096, '', NULL), (18097, 100, '', 'Not there on Friday\'s ', '', '0000-00-00', 18097, '', NULL), (18098, 101, '', '', '', '0000-00-00', 18098, '', NULL), (18099, 102, '', '', '', '0000-00-00', 18099, '', NULL), (18100, 103, '', '', '', '0000-00-00', 18100, '', NULL), (18101, 104, '', '', '', '0000-00-00', 18101, '', NULL), (18102, 105, '', '', '', '0000-00-00', 18102, '', NULL), (18103, 106, '', 'is corroded. Need to put new connectors on and put dialectric ', '', '0000-00-00', 18103, '', NULL), (18104, 107, '', '', '', '0000-00-00', 18104, '', NULL), (18105, 108, 'S/N 1584', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-03-21', 18105, '3/21/2013', NULL), (18106, 109, 'S/N 11492', 'Testmark Model CM4005-1G Digital Compression Machine (E-4)', 'Range: 2.5K to 400K ', '2009-03-23', 18106, '3/23/2009', NULL), (18107, 110, '', ' Certs sent to Job Site c/o Joe Ware', '', '0000-00-00', 18107, '', NULL), (18108, 111, '', ' \"***ISO Requested***', '', '0000-00-00', 18108, '', NULL), (18109, 112, '', ' ***Safety instruction & form in file***', '', '0000-00-00', 18109, '', NULL), (18110, 113, '', '', '', '0000-00-00', 18110, '', NULL), (18111, 114, '', '', '', '0000-00-00', 18111, '', NULL), (18112, 115, '', '', '', '0000-00-00', 18112, '', NULL), (18113, 116, '', '***QA Manual Required*** ***Nuclear***', '', '0000-00-00', 18113, '', NULL), (18114, 117, '', '', '', '0000-00-00', 18114, '', NULL), (18115, 118, '', '', '', '0000-00-00', 18115, '', NULL), (18116, 119, '', '', '', '0000-00-00', 18116, '', NULL), (18117, 120, '', '', '', '0000-00-00', 18117, '', NULL), (18118, 121, 'S/N 0652', 'Strainsert Digital with Load Cell Model PC-40 (10518-1) (E-4)', 'Range: 40K', '2007-03-08', 18118, '3/8/2007', NULL), (18119, 122, '', '', '', '0000-00-00', 18119, '', NULL), (18120, 123, '', '', '', '0000-00-00', 18120, '', NULL), (18121, 124, '', '', '', '0000-00-00', 18121, '', NULL), (18122, 125, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 18122, '', NULL), (18123, 126, '', '', '', '0000-00-00', 18123, '', NULL), (18124, 127, 'S/N 3022103/8', 'Eilon Engineering RON 2501 S-30 Load Cell (ManSp & 0.1% FS)', 'Range: 30 Tons', '2006-10-09', 18124, '10/9/2006', NULL), (18125, 128, '', '', '', '0000-00-00', 18125, '', NULL), (18126, 129, '', '', '', '0000-00-00', 18126, '', NULL), (18127, 130, '', '', '', '0000-00-00', 18127, '', NULL), (18128, 131, '', '', '', '0000-00-00', 18128, '', NULL), (18129, 132, '', '', '', '0000-00-00', 18129, '', NULL), (18130, 133, 'S/N 100027', 'Omega LC1100 (OOS)', 'Range: 50K', '0000-00-00', 18130, '', NULL), (18131, 134, '', '', '', '0000-00-00', 18131, '', NULL), (18132, 135, '', '', '', '0000-00-00', 18132, '', NULL), (18133, 136, '', '', '', '0000-00-00', 18133, '', NULL), (18134, 137, '', '', '', '0000-00-00', 18134, '', NULL), (18135, 138, '', '', '', '0000-00-00', 18135, '', NULL), (18136, 139, '', '', '', '0000-00-00', 18136, '', NULL), (18137, 140, '', '', '', '0000-00-00', 18137, '', NULL), (18138, 141, '', '***Mail certs to billing address***', '', '0000-00-00', 18138, '', NULL), (18139, 142, '', '', '', '0000-00-00', 18139, '', NULL), (18140, 143, '', '', '', '0000-00-00', 18140, '', NULL), (18141, 144, '', '', '', '0000-00-00', 18141, '', NULL), (18142, 145, '', '', '', '0000-00-00', 18142, '', NULL), (18143, 146, '', '', '', '0000-00-00', 18143, '', NULL), (18144, 147, '', '', '', '0000-00-00', 18144, '', NULL), (18145, 148, '', ' *** 2 Year Calibration***', '', '0000-00-00', 18145, '', NULL), (18146, 149, '', '', '', '0000-00-00', 18146, '', NULL), (18147, 150, '', '', '', '0000-00-00', 18147, '', NULL), (18148, 151, 'S/N AM-0166', 'Soiltest Mdl. MC221 Consolidation Machine (E-4 & Man Specs) ', 'Range: 1/8 TSF to 22 TSF (OOS)', '2008-05-06', 18148, '5/6/2008', NULL), (18149, 152, '', '', '', '0000-00-00', 18149, '', NULL), (18150, 153, '', '', '', '0000-00-00', 18150, '', NULL), (18151, 154, '', '', '', '0000-00-00', 18151, '', NULL), (18152, 155, '', '', '', '0000-00-00', 18152, '', NULL), (18153, 156, '', '', '', '0000-00-00', 18153, '', NULL), (18154, 157, '', '', '', '0000-00-00', 18154, '', NULL), (18155, 158, '', '', '', '0000-00-00', 18155, '', NULL), (18156, 159, '', '', '', '0000-00-00', 18156, '', NULL), (18157, 160, 'S/N PS-2437', 'Geotac Pressure Transducer (D-5720)', 'Range: 200 psi ', '2008-06-10', 18157, '6/10/2008', NULL), (18158, 161, '', '', '', '0000-00-00', 18158, '', NULL), (18159, 162, '', '***Client has test stands for Ametek & Chatillon Force Gauges***', '', '0000-00-00', 18159, '', NULL), (18160, 163, '', '', '', '0000-00-00', 18160, '', NULL), (18161, 164, '', '', '', '0000-00-00', 18161, '', NULL), (18162, 165, 'S/N 79833 / NC#2', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2013-07-15', 18162, '7/15/2013', NULL), (18163, 166, 'S/N 02074543/9', 'Eilon Engineering RON 2501 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 30K', '2008-08-28', 18163, '8/28/2008', NULL), (18164, 167, '', 'Springfield, NJ 07081 973-467-4645', '', '0000-00-00', 18164, '', NULL), (18165, 168, '', '', '', '0000-00-00', 18165, '', NULL), (18166, 169, 'S/N 102 ', 'Fowler Mdl. 52-520-210-0 Dial Indicator (D-6027)', 'Range: 2 inch ', '2008-08-13', 18166, '8/13/2008', NULL), (18167, 170, '', '', '', '0000-00-00', 18167, '', NULL), (18168, 171, 'S/N 0059', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-27', 18168, '7/27/2009', NULL), (18169, 172, '', '', '', '0000-00-00', 18169, '', NULL), (18170, 173, '', '', '', '0000-00-00', 18170, '', NULL), (18171, 174, '', ' Send Certs to Billing address.', '', '0000-00-00', 18171, '', NULL), (18172, 175, 'S/N 101662933', 'Humboldt H4460 Dial Indicator (D-6027) ', 'Range: 2 inch', '2013-08-21', 18172, '8/21/2013', NULL), (18173, 176, '', '', '', '0000-00-00', 18173, '', NULL), (18174, 177, '', '', '', '0000-00-00', 18174, '', NULL), (18175, 178, '', '', '', '0000-00-00', 18175, '', NULL), (18176, 179, '', '***Client is responsible for all duties, work permits, & taxes***', '', '0000-00-00', 18176, '', NULL), (18177, 180, '', '', '', '0000-00-00', 18177, '', NULL), (18178, 181, '', '', '', '0000-00-00', 18178, '', NULL), (18179, 182, '', '', '', '0000-00-00', 18179, '', NULL), (18180, 183, '', '', '', '0000-00-00', 18180, '', NULL), (18181, 184, '', '', '', '0000-00-00', 18181, '', NULL), (18182, 185, '', '', '', '0000-00-00', 18182, '', NULL), (18183, 186, '', '', '', '0000-00-00', 18183, '', NULL), (18184, 187, '', '', '', '0000-00-00', 18184, '', NULL), (18185, 188, '', '', '', '0000-00-00', 18185, '', NULL), (18186, 189, '', '', '', '0000-00-00', 18186, '', NULL), (18187, 190, '', '', '', '0000-00-00', 18187, '', NULL), (18188, 191, 'S/N', ' w/ Humboldt Load Cell (E-4)', 'Range: 1K ', NULL, 18188, 'New', NULL), (18189, 192, '', '', '', '0000-00-00', 18189, '', NULL), (18190, 193, '', '', '', '0000-00-00', 18190, '', NULL), (18191, 194, '', '', '', '0000-00-00', 18191, '', NULL), (18192, 195, '', '', '', '0000-00-00', 18192, '', NULL), (18193, 196, '', '', '', '0000-00-00', 18193, '', NULL), (18194, 197, '', '', '', '0000-00-00', 18194, '', NULL), (18195, 198, '', '', '', '0000-00-00', 18195, '', NULL), (18196, 199, '', '', '', '0000-00-00', 18196, '', NULL), (18197, 200, 'S/N 20007005', 'Extra Load Cell PSP5000 (OOS) (E-4)', 'Range: 5K', '2005-09-20', 18197, '9/20/2005', NULL), (18198, 201, '', '', '', '0000-00-00', 18198, '', NULL), (18199, 202, '', '', '', '0000-00-00', 18199, '', NULL), (18200, 203, '', '', '', '0000-00-00', 18200, '', NULL), (18201, 204, '', '', '', '0000-00-00', 18201, '', NULL), (18202, 205, '', '', '', '0000-00-00', 18202, '', NULL), (18203, 206, '', '', '', '0000-00-00', 18203, '', NULL), (18204, 207, '', '', '', '0000-00-00', 18204, '', NULL), (18205, 208, '', '', '', '0000-00-00', 18205, '', NULL), (18206, 209, '', '', '', '0000-00-00', 18206, '', NULL), (18207, 210, '', '', '', '0000-00-00', 18207, '', NULL), (18208, 211, '', '', '', '0000-00-00', 18208, '', NULL), (18209, 212, '', '', '', '0000-00-00', 18209, '', NULL), (18210, 213, '', '', '', '0000-00-00', 18210, '', NULL), (18211, 214, '', '', '', '0000-00-00', 18211, '', NULL), (18212, 215, 'S/N 1300', 'Vega 3B Universal Testing Machine (E-4)', 'Range: ', NULL, 18212, 'New', NULL), (18213, 216, '', '', '', '0000-00-00', 18213, '', NULL), (18214, 217, '', '', '', '0000-00-00', 18214, '', NULL), (18215, 218, '', '', '', '0000-00-00', 18215, '', NULL), (18216, 219, '', '', '', '0000-00-00', 18216, '', NULL), (18217, 220, '', '', '', '0000-00-00', 18217, '', NULL), (18218, 221, '', '', '', '0000-00-00', 18218, '', NULL), (18219, 222, '', '', '', '0000-00-00', 18219, '', NULL), (18220, 223, '', '', '', '0000-00-00', 18220, '', NULL), (18221, 224, '', '', '', '0000-00-00', 18221, '', NULL), (18222, 225, '', '', '', '0000-00-00', 18222, '', NULL), (18223, 226, '', '', '', '0000-00-00', 18223, '', NULL), (18224, 227, '', '', '', '0000-00-00', 18224, '', NULL), (18225, 228, '', '', '', '0000-00-00', 18225, '', NULL), (18226, 229, '', '', '', '0000-00-00', 18226, '', NULL), (18227, 230, '', '', '', '0000-00-00', 18227, '', NULL), (18228, 231, 'S/N 45199', 'Dixon GL 340 Service Gauge (D-5720)', 'Range: 200 PSI', '2007-03-09', 18228, '3/9/2007', NULL), (18229, 232, 'S/N 105', 'Marsh Gauge (D-5720)', 'Range: 600 PSI', '2004-01-28', 18229, '1/28/2004', NULL), (18230, 233, '', '', '', '0000-00-00', 18230, '', NULL), (18231, 234, '', '', '', '0000-00-00', 18231, '', NULL), (18232, 235, 'S/N 1VA-82252-016-1', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 35 in H2O', '2010-01-18', 18232, '1/18/2010', NULL), (18233, 236, '', '**E-Mail Certs and Invoice to paul.pridemore@basf.com**', '', '0000-00-00', 18233, '', NULL), (18234, 237, '', '', '', '0000-00-00', 18234, '', NULL), (18235, 238, 'S/N', ' w/ Shear Displacement LDT (D-6027)', 'Range: ', NULL, 18235, 'New', NULL), (18236, 239, '', '', '', '0000-00-00', 18236, '', NULL), (18237, 240, 'S/N 48580 (ID#LABN1)', ' w/ MII 300 BTE Displacement (E-2309)', 'Range: 0.1 inches to 5 inches ', '2011-01-05', 18237, '1/5/2011', NULL), (18238, 241, '', '', '', '0000-00-00', 18238, '', NULL), (18239, 242, '', '', '', '0000-00-00', 18239, '', NULL), (18240, 243, 'S/N 1464/1051', 'Satec B3M Extensometer (E-83)', 'Range: 0.02 in/in (GL 1 Inch)', '2013-09-16', 18240, '9/16/2013', NULL), (18241, 244, '', '', '', '0000-00-00', 18241, '', NULL), (18242, 245, '', '', '', '0000-00-00', 18242, '', NULL), (18243, 246, '', '', '', '0000-00-00', 18243, '', NULL), (18244, 247, 'S/N 02085', 'Forney F-25EX-DR Digital Compression Machine (MOVED) (E-4)', 'Range: 2.5K to 250K ', NULL, 18244, 'New', NULL), (18245, 248, '', '', '', '0000-00-00', 18245, '', NULL), (18246, 249, '', '', '', '0000-00-00', 18246, '', NULL), (18247, 250, '', '', '', '0000-00-00', 18247, '', NULL), (18248, 251, '', '', '', '0000-00-00', 18248, '', NULL), (18249, 252, '', '', '', '0000-00-00', 18249, '', NULL), (18250, 253, '', '', '', '0000-00-00', 18250, '', NULL), (18251, 254, '', '', '', '0000-00-00', 18251, '', NULL), (18252, 255, '', '', '', '0000-00-00', 18252, '', NULL), (18253, 256, '', '', '', '0000-00-00', 18253, '', NULL), (18254, 257, 'S/N 64073', 'Forney QC-200-DR Compression Machine (OOS) (E-4)', 'Range: 27K to 400K', '2004-02-19', 18254, '2/19/2004', NULL), (18255, 258, '', 'Send Certs to Billing Address ', '', '0000-00-00', 18255, '', NULL), (18256, 259, '', '', '', '0000-00-00', 18256, '', NULL), (18257, 260, '', '', '', '0000-00-00', 18257, '', NULL), (18258, 261, 'S/N A3302C (ATG# 221)', 'Enerpac RC59 Ram 2 (E-4)', 'Range: 5 Ton (10,000 PSI)', '2013-03-27', 18258, '3/27/2013', NULL), (18259, 262, 'S/N 07035BAL A02002', ' w/ Horizontal Mdl. SBA-1KLB-I Load Cell (E-4)', 'Range: 1K', '2010-04-01', 18259, '4/1/2010', NULL), (18260, 263, '', '', '', '0000-00-00', 18260, '', NULL), (18261, 264, '', '', '', '0000-00-00', 18261, '', NULL), (18262, 265, '', '', '', '0000-00-00', 18262, '', NULL), (18263, 266, '', '', '', '0000-00-00', 18263, '', NULL), (18264, 267, '', '', '', '0000-00-00', 18264, '', NULL), (18265, 268, '', '', '', '0000-00-00', 18265, '', NULL), (18266, 269, '', '', '', '0000-00-00', 18266, '', NULL), (18267, 270, '', '', '', '0000-00-00', 18267, '', NULL), (18268, 271, '', '', '', '0000-00-00', 18268, '', NULL), (18269, 272, '', '', '', '0000-00-00', 18269, '', NULL), (18270, 273, '', '', '', '0000-00-00', 18270, '', NULL), (18271, 274, 'S/N 0633982-6GK', 'Ohaus Champ Square CQ100L Scale (E-898)', 'Range: 250 lbs (MOVED)', '2011-03-28', 18271, '3/28/2011', NULL), (18272, 275, '', '', '', '0000-00-00', 18272, '', NULL), (18273, 276, '', '', '', '0000-00-00', 18273, '', NULL), (18274, 277, 'S/N 8191', 'Hercules-Tucker Prestress Jack (E-4 & PCI)', 'Range: 4K / 40K (MOVED)', '2010-07-14', 18274, '7/14/2010', NULL), (18275, 278, '', '', '', '0000-00-00', 18275, '', NULL), (18276, 279, '', ' \"***Tim will hide key, call him to find out where it is*** ', '', '0000-00-00', 18276, '', NULL), (18277, 280, '', '', '', '0000-00-00', 18277, '', NULL), (18278, 281, '', '', '', '0000-00-00', 18278, '', NULL), (18279, 282, '', '', '', '0000-00-00', 18279, '', NULL), (18280, 283, '', '', '', '0000-00-00', 18280, '', NULL), (18281, 284, 'S/N TEN023', 'Imada Sprin Tester (E-4 & 2% Man Specs)', 'Range: 5 lbs to 50 lbs', '2013-04-23', 18281, '4/23/2013', NULL), (18282, 285, '', '', '', '0000-00-00', 18282, '', NULL), (18283, 286, '', ' ***2 Year Schedule***', '', '0000-00-00', 18283, '', NULL), (18284, 287, '', '', '', '0000-00-00', 18284, '', NULL), (18285, 288, '', '', '', '0000-00-00', 18285, '', NULL), (18286, 289, '', '', '', '0000-00-00', 18286, '', NULL), (18287, 290, '', '', '', '0000-00-00', 18287, '', NULL), (18288, 291, '', '', '', '0000-00-00', 18288, '', NULL), (18289, 292, '', '', '', '0000-00-00', 18289, '', NULL), (18290, 293, '', '', '', '0000-00-00', 18290, '', NULL), (18291, 294, '', '', '', '0000-00-00', 18291, '', NULL), (18292, 295, '', '', '', '0000-00-00', 18292, '', NULL), (18293, 296, 'S/N 81325-17', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 5K', '2009-05-13', 18293, '5/13/2009', NULL), (18294, 297, '', '', '', '0000-00-00', 18294, '', NULL), (18295, 298, 'S/N AE326F00997', 'Adams ACB Plus-300 C Scale (E-898)', 'Range: 300 Grams', '2013-05-15', 18295, '5/15/2013', NULL), (18296, 299, '', '', '', '0000-00-00', 18296, '', NULL), (18297, 300, 'S/N 121710A', 'Intell-Lab PG-3000 Scale (E-898)', 'Range: 3,000 Grams ', '2013-05-15', 18297, '5/15/2013', NULL), (18298, 301, '', ' ***Site has interference problems, digital floats around***', '', '0000-00-00', 18298, '', NULL), (18299, 302, '', '', '', '0000-00-00', 18299, '', NULL), (18300, 303, 'S/N 3414', 'Sinco 51653000 Point Load Tester (E-4)', 'Range: 3K (650 PSI)', '2012-06-15', 18300, '6/15/2012', NULL), (18301, 304, '', '', '', '0000-00-00', 18301, '', NULL), (18302, 305, '', '', '', '0000-00-00', 18302, '', NULL), (18303, 306, '', '', '', '0000-00-00', 18303, '', NULL), (18304, 307, 'S/N 19004', 'Testmark CM-3000-SD Digital Compression Machine (MOVED)', 'Frame#1: 20K Frame #2: 300K (E-4)', '2006-09-05', 18304, '9/5/2006', NULL), (18305, 308, 'S/N 13', 'Starrett Dial Indicator Model: 25-631 (Done in HC Nut. Shop)(D-6027)', 'Range: 1 Inch', '2006-06-01', 18305, '6/1/2006', NULL), (18306, 309, '', '', '', '0000-00-00', 18306, '', NULL), (18307, 310, '', '', '', '0000-00-00', 18307, '', NULL), (18308, 311, '', '', '', '0000-00-00', 18308, '', NULL), (18309, 312, '', '', '', '0000-00-00', 18309, '', NULL), (18310, 313, '', '', '', '0000-00-00', 18310, '', NULL), (18311, 314, '', '', '', '0000-00-00', 18311, '', NULL), (18312, 315, '', '', '', '0000-00-00', 18312, '', NULL), (18313, 316, '', '', '', '0000-00-00', 18313, '', NULL), (18314, 317, '', '', '', '0000-00-00', 18314, '', NULL), (18315, 318, '', '', '', '0000-00-00', 18315, '', NULL), (18316, 319, '', '', '', '0000-00-00', 18316, '', NULL), (18317, 320, 'S/N 0010', 'Federal Dial Indicator (Out of Service) (E-83)', 'Range: 2 inches', '2004-06-22', 18317, '6/22/2004', NULL), (18318, 321, '', '', '', '0000-00-00', 18318, '', NULL), (18319, 322, '', '***ISO Requested***', '', '0000-00-00', 18319, '', NULL), (18320, 323, '', '', '', '0000-00-00', 18320, '', NULL), (18321, 324, '', '', '', '0000-00-00', 18321, '', NULL), (18322, 325, '', '', '', '0000-00-00', 18322, '', NULL), (18323, 326, '', 'Send Certs to Job Site', '', '0000-00-00', 18323, '', NULL), (18324, 327, '', '', '', '0000-00-00', 18324, '', NULL), (18325, 328, '', '', '', '0000-00-00', 18325, '', NULL), (18326, 329, 'S/N 61617', 'Dynalink MSI-7500 Tensile Load Cell (E-4)', 'Range: 2.5K to 25K', '2013-06-26', 18326, '6/26/2013', NULL), (18327, 330, '', '', '', '0000-00-00', 18327, '', NULL), (18328, 331, '', '', '', '0000-00-00', 18328, '', NULL), (18329, 332, '', 'Send Certs to Billing Address Attn: Mark Deradorff', '', '0000-00-00', 18329, '', NULL), (18330, 333, '', '', '', '0000-00-00', 18330, '', NULL), (18331, 334, 'S/N HLT-69091', 'Harrington Model HLT Hoist Tester (OOS) (E-4 and Man Specs)', 'Range: 10K/20K', '2006-07-11', 18331, '7/11/2006', NULL), (18332, 335, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673 ', 'Attn: Mark Moyer', '0000-00-00', 18332, '', NULL), (18333, 336, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673 ', 'Attn: Mark Moyer', '0000-00-00', 18333, '', NULL), (18334, 337, '', '', '', '0000-00-00', 18334, '', NULL), (18335, 338, '', ' ***Safety instruction & form in file***', '', '0000-00-00', 18335, '', NULL), (18336, 339, '', '', '', '0000-00-00', 18336, '', NULL), (18337, 340, '', '', '', '0000-00-00', 18337, '', NULL), (18338, 341, 'S/N 1056', 'Wika Gauge (IN HOUSE) (D-5720)', 'Range: ', NULL, 18338, 'No Cal ', NULL), (18339, 342, '', '', '', '0000-00-00', 18339, '', NULL), (18340, 343, '', '', '', '0000-00-00', 18340, '', NULL), (18341, 344, '', '', '', '0000-00-00', 18341, '', NULL), (18342, 345, '', '', '', '0000-00-00', 18342, '', NULL), (18343, 346, '', '', '', '0000-00-00', 18343, '', NULL), (18344, 347, '', '', '', '0000-00-00', 18344, '', NULL), (18345, 348, '', '', '', '0000-00-00', 18345, '', NULL), (18346, 349, '', '', '', '0000-00-00', 18346, '', NULL), (18347, 350, '', '', '', '0000-00-00', 18347, '', NULL), (18348, 351, '', '', '', '0000-00-00', 18348, '', NULL), (18349, 352, '', '', '', '0000-00-00', 18349, '', NULL), (18350, 353, '', '', '', '0000-00-00', 18350, '', NULL), (18351, 354, '', '', '', '0000-00-00', 18351, '', NULL), (18352, 355, '', '', '', '0000-00-00', 18352, '', NULL), (18353, 356, '', '', '', '0000-00-00', 18353, '', NULL), (18354, 357, '', '', '', '0000-00-00', 18354, '', NULL), (18355, 358, '', '', '', '0000-00-00', 18355, '', NULL), (18356, 359, '', '', '', '0000-00-00', 18356, '', NULL), (18357, 360, '', '', '', '0000-00-00', 18357, '', NULL), (18358, 361, '', '', '', '0000-00-00', 18358, '', NULL), (18359, 362, '', '', '', '0000-00-00', 18359, '', NULL), (18360, 363, '', '', '', '0000-00-00', 18360, '', NULL), (18361, 364, 'S/N', 'Proving Ring (OOS) (E-4 & Man Specs)', 'Range: ', NULL, 18361, 'New', NULL), (18362, 365, '', '', '', '0000-00-00', 18362, '', NULL), (18363, 366, '', '', '', '0000-00-00', 18363, '', NULL), (18364, 367, '', '', '', '0000-00-00', 18364, '', NULL), (18365, 368, '', '', '', '0000-00-00', 18365, '', NULL), (18366, 369, '', '', '', '0000-00-00', 18366, '', NULL), (18367, 370, '', '', '', '0000-00-00', 18367, '', NULL), (18368, 371, '', '', '', '0000-00-00', 18368, '', NULL), (18369, 372, '', 'would like to get to get head redone to Forney Style.', '', '0000-00-00', 18369, '', NULL), (18370, 373, '', '', '', '0000-00-00', 18370, '', NULL), (18371, 374, '', '', '', '0000-00-00', 18371, '', NULL), (18372, 375, '', '', '', '0000-00-00', 18372, '', NULL), (18373, 376, '', '', '', '0000-00-00', 18373, '', NULL), (18374, 377, '', '', '', '0000-00-00', 18374, '', NULL), (18375, 378, '', '', '', '0000-00-00', 18375, '', NULL), (18376, 379, '', '', '', '0000-00-00', 18376, '', NULL), (18377, 380, '', '', '', '0000-00-00', 18377, '', NULL), (18378, 381, '', '', '', '0000-00-00', 18378, '', NULL), (18379, 382, '', '', '', '0000-00-00', 18379, '', NULL), (18380, 383, '', '', '', '0000-00-00', 18380, '', NULL), (18381, 384, '', ' ***ISO Requested***', '', '0000-00-00', 18381, '', NULL), (18382, 385, '', 'Send Certs to Billing Address PO Box 277', '', '0000-00-00', 18382, '', NULL), (18383, 386, '', '', '', '0000-00-00', 18383, '', NULL), (18384, 387, '', '', '', '0000-00-00', 18384, '', NULL), (18385, 388, '', '', '', '0000-00-00', 18385, '', NULL), (18386, 389, '', '', '', '0000-00-00', 18386, '', NULL), (18387, 390, 'S/N VAC 002', 'Wika Vaccum Gauge (OOS) (Man Specs & 2%)', 'Range: 30 in Hg', '2011-10-08', 18387, '10/8/2011', NULL), (18388, 391, '', '', '', '0000-00-00', 18388, '', NULL), (18389, 392, '', '', '', '0000-00-00', 18389, '', NULL), (18390, 393, '', '', '', '0000-00-00', 18390, '', NULL), (18391, 394, '', ' ***Mail Certs to Billing Address***', '', '0000-00-00', 18391, '', NULL), (18392, 395, '', '', '', '0000-00-00', 18392, '', NULL), (18393, 396, '', '', '', '0000-00-00', 18393, '', NULL), (18394, 397, '', '', '', '0000-00-00', 18394, '', NULL), (18395, 398, '', '', '', '0000-00-00', 18395, '', NULL), (18396, 399, '', '', '', '0000-00-00', 18396, '', NULL), (18397, 400, '', ' ***Certs sent to Oldcastle job site*** ', '', '0000-00-00', 18397, '', NULL), (18398, 401, '', '', '', '0000-00-00', 18398, '', NULL), (18399, 402, '', '', '', '0000-00-00', 18399, '', NULL), (18400, 403, '', '', '', '0000-00-00', 18400, '', NULL), (18401, 404, '', '', '', '0000-00-00', 18401, '', NULL), (18402, 405, 'S/N 012565138/1', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSpec & 0.1%FS)', 'Range: 125 Ton (MOVED)', '2010-10-04', 18402, '10/4/2010', NULL), (18403, 406, '', '', '', '0000-00-00', 18403, '', NULL), (18404, 407, '', '', '', '0000-00-00', 18404, '', NULL), (18405, 408, '', '', '', '0000-00-00', 18405, '', NULL), (18406, 409, '', '', '', '0000-00-00', 18406, '', NULL), (18407, 410, '', '', '', '0000-00-00', 18407, '', NULL), (18408, 411, '', '', '', '0000-00-00', 18408, '', NULL), (18409, 412, '', '', '', '0000-00-00', 18409, '', NULL), (18410, 413, '', '', '', '0000-00-00', 18410, '', NULL), (18411, 414, '', '', '', '0000-00-00', 18411, '', NULL), (18412, 415, '', '', '', '0000-00-00', 18412, '', NULL), (18413, 416, '', '', '', '0000-00-00', 18413, '', NULL), (18414, 417, '', '', '', '0000-00-00', 18414, '', NULL), (18415, 418, 'S/N', 'Ram Pack w/ Gauge #1 (E-4) ', 'Range: ', NULL, 18415, 'New', NULL), (18416, 419, '', '', '', '0000-00-00', 18416, '', NULL), (18417, 420, '', '', '', '0000-00-00', 18417, '', NULL), (18418, 421, '', '', '', '0000-00-00', 18418, '', NULL), (18419, 422, '', '', '', '0000-00-00', 18419, '', NULL), (18420, 423, '', '', '', '0000-00-00', 18420, '', NULL), (18421, 424, 'S/N ', ' w/ Pressure Panel 1 (D-5720)', '', '0000-00-00', 18421, '', NULL), (18422, 425, '', '', '', '0000-00-00', 18422, '', NULL), (18423, 426, '', '', '', '0000-00-00', 18423, '', NULL), (18424, 427, 'S/N ID #G1080', ' w/ Horizonital (D-6027)', 'Range: 2 inches ', '2013-01-09', 18424, '1/9/2013', NULL), (18425, 428, 'S/N G1284A', 'GeoJace Direct Shear LVDT Horizonital (D-6027)', 'Range: 3 inches', '2013-01-09', 18425, '1/9/2013', NULL), (18426, 429, '', '', '', '0000-00-00', 18426, '', NULL), (18427, 430, '', '', '', '0000-00-00', 18427, '', NULL), (18428, 431, 'S/N 78950 (ID# M-105)', ' w/ Displacement (E-2309)', 'Range: 20 inches ', '2013-01-07', 18428, '1/7/2013', NULL), (18429, 432, '', '', '', '0000-00-00', 18429, '', NULL), (18430, 433, '', '', '', '0000-00-00', 18430, '', NULL), (18431, 434, '', '', '', '0000-00-00', 18431, '', NULL), (18432, 435, '', ' ***ISO Requested***', '', '0000-00-00', 18432, '', NULL), (18433, 436, '', '', '', '0000-00-00', 18433, '', NULL), (18434, 437, '', '', '', '0000-00-00', 18434, '', NULL), (18435, 438, '', '', '', '0000-00-00', 18435, '', NULL), (18436, 439, '', '', '', '0000-00-00', 18436, '', NULL), (18437, 440, '', '', '', '0000-00-00', 18437, '', NULL), (18438, 441, '', '', '', '0000-00-00', 18438, '', NULL), (18439, 442, '', '', '', '0000-00-00', 18439, '', NULL), (18440, 443, '', '', '', '0000-00-00', 18440, '', NULL), (18441, 444, '', '', '', '0000-00-00', 18441, '', NULL), (18442, 445, 'S/N 212.5 ', 'BC Ames Dial Indicator (D-6027) (Moved)', 'Range: 0.25 inch', '2012-02-14', 18442, '2/14/2012', NULL), (18443, 446, 'S/N VT-1109', 'Soiltest AP-1015 Versa Tester (OOS) (E-4)', 'Range: 12K / 60K', '1997-12-03', 18443, '12/3/1997', NULL), (18444, 447, '', '', '', '0000-00-00', 18444, '', NULL), (18445, 448, 'S/N 2114266653', 'Ohaus Scale (ID# TS-04) (E-898)', 'Range: 10,000 grams', '2013-02-13', 18445, '2/13/2013', NULL), (18446, 449, 'S/N PFS-09 ', 'TIF Electronic Mdl. 9010A Scale (Moved) (E-898)', 'Range: 110 lbs ', '2012-02-14', 18446, '2/14/2012', NULL), (18447, 450, 'S/N PFS-13', 'TIF Mdl. 9010A Scale (E-898)', 'Range: 110 lbs', '2013-02-13', 18447, '2/13/2013', NULL), (18448, 451, '', '', '', '0000-00-00', 18448, '', NULL), (18449, 452, '', '', '', '0000-00-00', 18449, '', NULL), (18450, 453, '', '', '', '0000-00-00', 18450, '', NULL), (18451, 454, '', '', '', '0000-00-00', 18451, '', NULL), (18452, 455, '', '', '', '0000-00-00', 18452, '', NULL), (18453, 456, '', '', '', '0000-00-00', 18453, '', NULL), (18454, 457, '', '', '', '0000-00-00', 18454, '', NULL), (18455, 458, '', '', '', '0000-00-00', 18455, '', NULL), (18456, 459, '', '', '', '0000-00-00', 18456, '', NULL), (18457, 460, '', '', '', '0000-00-00', 18457, '', NULL), (18458, 461, '', '', '', '0000-00-00', 18458, '', NULL), (18459, 462, '', '', '', '0000-00-00', 18459, '', NULL), (18460, 463, '', '', '', '0000-00-00', 18460, '', NULL), (18461, 464, '', '***MUST HAVE WRITTEN AUTHORIZATION TO DO WORK***', '', '0000-00-00', 18461, '', NULL), (18462, 465, '', '', '', '0000-00-00', 18462, '', NULL), (18463, 466, 'S/N 0708SBALD01012', ' w/ Load Cell (E-4 & 2%)', 'Range: 1,500 Lbs', '2013-03-20', 18463, '3/20/2013', NULL), (18464, 467, '', '', '', '0000-00-00', 18464, '', NULL), (18465, 468, '', '', '', '0000-00-00', 18465, '', NULL), (18466, 469, '', '', '', '0000-00-00', 18466, '', NULL), (18467, 470, '', '', '', '0000-00-00', 18467, '', NULL), (18468, 471, '', '', '', '0000-00-00', 18468, '', NULL), (18469, 472, '', '', '', '0000-00-00', 18469, '', NULL), (18470, 473, '', '', '', '0000-00-00', 18470, '', NULL), (18471, 474, '', '', '', '0000-00-00', 18471, '', NULL), (18472, 475, '', '', '', '0000-00-00', 18472, '', NULL), (18473, 476, 'S/N AE0114719', 'Adam CPW Plus-75 Scale (E-898)', 'Range : 165 lbs', '2013-04-10', 18473, '4/10/2013', NULL), (18474, 477, '', '', '', '0000-00-00', 18474, '', NULL), (18475, 478, 'S/N H52128', ' w/ HBM Load Cell (Off Site) (E-4)', 'Range: 400K ', '2012-04-11', 18475, '4/11/2012', NULL), (18476, 479, '', '', '', '0000-00-00', 18476, '', NULL), (18477, 480, '', '', '', '0000-00-00', 18477, '', NULL), (18478, 481, '', '', '', '0000-00-00', 18478, '', NULL), (18479, 482, '', '', '', '0000-00-00', 18479, '', NULL), (18480, 483, '', 'Mail Certs to Billing Address Attn: Matt Manning', '', '0000-00-00', 18480, '', NULL), (18481, 484, 'S/N LP-543', ' w/ Vertical LVDT (D-6027)', 'Range: 2.0\"', '2012-04-23', 18481, '4/23/2012', NULL), (18482, 485, '', '', '', '0000-00-00', 18482, '', NULL), (18483, 486, '', '', '', '0000-00-00', 18483, '', NULL), (18484, 487, '', '', '', '0000-00-00', 18484, '', NULL), (18485, 488, 'S/N 0742', 'Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 10K', '2013-05-01', 18485, '5/1/2013', NULL), (18486, 489, '', '', '', '0000-00-00', 18486, '', NULL), (18487, 490, '', ' ', '', '0000-00-00', 18487, '', NULL), (18488, 491, '', '', '', '0000-00-00', 18488, '', NULL), (18489, 492, 'S/N 1410', 'Satec Deflectometer Mdl. PD1M (OOS) (E-83)', 'Range: 2 inches', '2007-03-20', 18489, '3/20/2007', NULL), (18490, 493, 'S/N 721296', 'Soiltest C252 Consolidation Frame (E-4)', 'Range: 2.7 lbs to 1771.3 lbs ', '2013-04-30', 18490, '4/30/2013', NULL), (18491, 494, 'S/N 950867356', 'Humboldt DPX 1000 Dial Indicator (D-6027)', 'Range: 0.5 Inches', '2013-04-29', 18491, '4/29/2013', NULL), (18492, 495, 'S/N A125/AB/0035', 'MA Test A125 Point Loader (E-4 & ManSpecs)', 'Range: 55 KN', '2013-04-30', 18492, '4/30/2013', NULL), (18493, 496, 'S/N 1004/1003', 'Goudsche Manchine Faabriek Cone Penetrometer (E-4 &ManSpecs)', 'Range: 16 Kn / 120 Kn', '2013-05-09', 18493, '5/9/2013', NULL), (18494, 497, '', 'On Certs put both Serial Numbers on and put Serial Number for ', '', '0000-00-00', 18494, '', NULL), (18495, 498, '', '', '', '0000-00-00', 18495, '', NULL), (18496, 499, '', '', '', '0000-00-00', 18496, '', NULL), (18497, 500, 'S/N 9026', ' Vertical Force ', '20 lbs to 500 lbs', '2012-04-30', 18497, '4/30/2012', NULL), (18498, 501, '', '', '', '0000-00-00', 18498, '', NULL), (18499, 502, '', '', '', '0000-00-00', 18499, '', NULL), (18500, 503, '', '', '', '0000-00-00', 18500, '', NULL), (18501, 504, '', '', '', '0000-00-00', 18501, '', NULL), (18502, 505, '', '', '', '0000-00-00', 18502, '', NULL), (18503, 506, '', '', '', '0000-00-00', 18503, '', NULL), (18504, 507, '', '', '', '0000-00-00', 18504, '', NULL), (18505, 508, '', '', '', '0000-00-00', 18505, '', NULL), (18506, 509, '', '', '', '0000-00-00', 18506, '', NULL), (18507, 510, '', '', '', '0000-00-00', 18507, '', NULL), (18508, 511, '', '', '', '0000-00-00', 18508, '', NULL), (18509, 512, '', '', '', '0000-00-00', 18509, '', NULL), (18510, 513, '', '', '', '0000-00-00', 18510, '', NULL), (18511, 514, '', '', '', '0000-00-00', 18511, '', NULL), (18512, 515, '', '', '', '0000-00-00', 18512, '', NULL), (18513, 516, 'S/N 6-11-80', 'Hogentogler CBR Single Proving Ring (E-4 & Man Specs)', 'Cap: 5K', '2013-05-07', 18513, '5/7/2013', NULL), (18514, 517, '', 'Need Certificates the same day to ship out equipment to job sites ', '', '0000-00-00', 18514, '', NULL), (18515, 518, '', '', '', '0000-00-00', 18515, '', NULL), (18516, 519, 'S/N 60398', 'Hyvac 91105 Vacuum Pump (Man Specs) ', 'Range: ', NULL, 18516, 'New', NULL), (18517, 520, '', '', '', '0000-00-00', 18517, '', NULL), (18518, 521, '', '', '', '0000-00-00', 18518, '', NULL), (18519, 522, '', '***S/N 01303 Pot to adjust is behind cover, below display. Center ', 'Pot Cal right Pot Zero***', '0000-00-00', 18519, '', NULL), (18520, 523, '', '', '', '0000-00-00', 18520, '', NULL), (18521, 524, '', '', '', '0000-00-00', 18521, '', NULL), (18522, 525, '', '', '', '0000-00-00', 18522, '', NULL), (18523, 526, '', '', '', '0000-00-00', 18523, '', NULL), (18524, 527, '', '', '', '0000-00-00', 18524, '', NULL), (18525, 528, '', '*** Paying with Credit Card ***', '', '0000-00-00', 18525, '', NULL), (18526, 529, '', '', '', '0000-00-00', 18526, '', NULL), (18527, 530, '', '', '', '0000-00-00', 18527, '', NULL), (18528, 531, '', '', '', '0000-00-00', 18528, '', NULL), (18529, 532, '', '', '', '0000-00-00', 18529, '', NULL), (18530, 533, '', '', '', '0000-00-00', 18530, '', NULL), (18531, 534, '', '', '', '0000-00-00', 18531, '', NULL), (18532, 535, '', '', '', '0000-00-00', 18532, '', NULL), (18533, 536, '', '', '', '0000-00-00', 18533, '', NULL), (18534, 537, '', '', '', '0000-00-00', 18534, '', NULL), (18535, 538, '', '', '', '0000-00-00', 18535, '', NULL), (18536, 539, '', '', '', '0000-00-00', 18536, '', NULL), (18537, 540, '', '', '', '0000-00-00', 18537, '', NULL), (18538, 541, 'S/N H3804355', 'AND FG-60K (E-898)', 'Range: 150 lbs', '2013-06-04', 18538, '6/4/2013', NULL), (18539, 542, '', '', '', '0000-00-00', 18539, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (18540, 543, '', '', '', '0000-00-00', 18540, '', NULL), (18541, 544, '', '', '', '0000-00-00', 18541, '', NULL), (18542, 545, 'S/N', 'Pine Instrument AFG1A Gyratory Compactor (ManSpecs&AASHTO)', 'Range: ', NULL, 18542, 'New', NULL), (18543, 546, '', '', '', '0000-00-00', 18543, '', NULL), (18544, 547, '', '', '', '0000-00-00', 18544, '', NULL), (18545, 548, 'S/N 051912R', 'Lan CT300-CS-100-1S Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-06-11', 18545, '6/11/2012', NULL), (18546, 549, '', '', '', '0000-00-00', 18546, '', NULL), (18547, 550, '', '', '', '0000-00-00', 18547, '', NULL), (18548, 551, '', '', '', '0000-00-00', 18548, '', NULL), (18549, 552, 'S/N Ram 7', ' w/ Simplex Ram ', 'Range: 10K (9,000 PSI)', '2011-06-29', 18549, '6/29/2011', NULL), (18550, 553, 'S/N P1874952', 'AND EK-2000i Scale (E-898)STORAGE', 'Range: 2,000 Grams', '2011-08-01', 18550, '8/1/2011', NULL), (18551, 554, '', '', '', '0000-00-00', 18551, '', NULL), (18552, 555, '', '', '', '0000-00-00', 18552, '', NULL), (18553, 556, '', '', '', '0000-00-00', 18553, '', NULL), (18554, 557, '', '', '', '0000-00-00', 18554, '', NULL), (18555, 558, '', '', '', '0000-00-00', 18555, '', NULL), (18556, 559, '', '', '', '0000-00-00', 18556, '', NULL), (18557, 560, '', '', '', '0000-00-00', 18557, '', NULL), (18558, 561, '', '', '', '0000-00-00', 18558, '', NULL), (18559, 562, '', '', '', '0000-00-00', 18559, '', NULL), (18560, 563, '', ' ****ISO Requested***', '', '0000-00-00', 18560, '', NULL), (18561, 564, '', '', '', '0000-00-00', 18561, '', NULL), (18562, 565, '', '', '', '0000-00-00', 18562, '', NULL), (18563, 566, '', 'Certs: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer ', '0000-00-00', 18563, '', NULL), (18564, 567, '', '', '', '0000-00-00', 18564, '', NULL), (18565, 568, '', '', '', '0000-00-00', 18565, '', NULL), (18566, 569, '', '', '', '0000-00-00', 18566, '', NULL), (18567, 570, 'S/N 11905', 'Ohaus Model I5S Scale (E-898)', 'Range: 50 lbs ', '2013-07-30', 18567, '7/30/2013', NULL), (18568, 571, '', '', '', '0000-00-00', 18568, '', NULL), (18569, 572, '', '', '', '0000-00-00', 18569, '', NULL), (18570, 573, '', '', '', '0000-00-00', 18570, '', NULL), (18571, 574, '', '***ISO Requested***', '', '0000-00-00', 18571, '', NULL), (18572, 575, '', '', '', '0000-00-00', 18572, '', NULL), (18573, 576, '', '', '', '0000-00-00', 18573, '', NULL), (18574, 577, '', '', '', '0000-00-00', 18574, '', NULL), (18575, 578, '', '', '', '0000-00-00', 18575, '', NULL), (18576, 579, '', '', '', '0000-00-00', 18576, '', NULL), (18577, 580, '', '', '', '0000-00-00', 18577, '', NULL), (18578, 581, '', '', '', '0000-00-00', 18578, '', NULL), (18579, 582, '', '', '', '0000-00-00', 18579, '', NULL), (18580, 583, '', '', '', '0000-00-00', 18580, '', NULL), (18581, 584, '', '', '', '0000-00-00', 18581, '', NULL), (18582, 585, '', ' ***Site Unmanned must call 2 hours before coming***', '', '0000-00-00', 18582, '', NULL), (18583, 586, 'S/N 1335', 'Bynum Prestress Jack (E-4 & PCI)', 'Range: 3K / 37K', '2013-08-08', 18583, '8/8/2013', NULL), (18584, 587, '', '', '', '0000-00-00', 18584, '', NULL), (18585, 588, '', '', '', '0000-00-00', 18585, '', NULL), (18586, 589, '', '', '', '0000-00-00', 18586, '', NULL), (18587, 590, '', '', '', '0000-00-00', 18587, '', NULL), (18588, 591, '', '*10/13 Machine needs a new marshalltown gauge mechanism ', '', '0000-00-00', 18588, '', NULL), (18589, 592, '', '', '', '0000-00-00', 18589, '', NULL), (18590, 593, 'S/N', 'Proving Ring (E-4 & Man Specs)', 'Range: ', NULL, 18590, 'New', NULL), (18591, 594, '', '', '', '0000-00-00', 18591, '', NULL), (18592, 595, '', '', '', '0000-00-00', 18592, '', NULL), (18593, 596, '', '', '', '0000-00-00', 18593, '', NULL), (18594, 597, '', '', '', '0000-00-00', 18594, '', NULL), (18595, 598, '', '', '', '0000-00-00', 18595, '', NULL), (18596, 599, 'S/N 010333957', ' Vertical displacement (D-6027)', 'Range: 1 inch', '2012-09-06', 18596, '9/6/2012', NULL), (18597, 600, '', '', '', '0000-00-00', 18597, '', NULL), (18598, 601, '', '', '', '0000-00-00', 18598, '', NULL), (18599, 602, '', '', '', '0000-00-00', 18599, '', NULL), (18600, 603, '', '', '', '0000-00-00', 18600, '', NULL), (18601, 604, '', '', '', '0000-00-00', 18601, '', NULL), (18602, 605, 'S/N R2711 ', ' w/ Speed Control (E2658-11)', 'Range: 0.05 in/min ', '2013-09-04', 18602, '9/4/2013', NULL), (18603, 606, '', '', '', '0000-00-00', 18603, '', NULL), (18604, 607, 'S/N 02020 (ID# E-059)', 'Forney F-25-EX-F96 Digital Compression Machine (E-4)', 'Range: 500 lbs to 90 K', '2013-10-08', 18604, '10/8/2013', NULL), (18605, 608, '', '', '', '0000-00-00', 18605, '', NULL), (18606, 609, '', '', '', '0000-00-00', 18606, '', NULL), (18607, 610, '', '', '', '0000-00-00', 18607, '', NULL), (18608, 611, '', '', '', '0000-00-00', 18608, '', NULL), (18609, 612, '', '', '', '0000-00-00', 18609, '', NULL), (18610, 613, '', 'Send Certs to Job Site Address.', '', '0000-00-00', 18610, '', NULL), (18611, 614, '', '', '', '0000-00-00', 18611, '', NULL), (18612, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 18612, 'New', NULL), (18613, 616, '', '', '', '0000-00-00', 18613, '', NULL), (18614, 617, '', '', '', '0000-00-00', 18614, '', NULL), (18615, 618, '', '', '', '0000-00-00', 18615, '', NULL), (18616, 619, '', '***MUST HAVE: Hard Hat, Safety Glasses, Steel Toe Boots,', '', '0000-00-00', 18616, '', NULL), (18617, 620, '', '', '', '0000-00-00', 18617, '', NULL), (18618, 621, '', '', '', '0000-00-00', 18618, '', NULL), (18619, 622, '', '', '', '0000-00-00', 18619, '', NULL), (18620, 623, '', '', '', '0000-00-00', 18620, '', NULL), (18621, 624, '', '', '', '0000-00-00', 18621, '', NULL), (18622, 625, '', '', '', '0000-00-00', 18622, '', NULL), (18623, 626, '', '', '', '0000-00-00', 18623, '', NULL), (18624, 627, '', ' ***Must take proving ring press***', '', '0000-00-00', 18624, '', NULL), (18625, 628, '', '', '', '0000-00-00', 18625, '', NULL), (18626, 629, '', '', '', '0000-00-00', 18626, '', NULL), (18627, 630, '', '', '', '0000-00-00', 18627, '', NULL), (18628, 631, '', '', '', '0000-00-00', 18628, '', NULL), (18629, 632, '', '', '', '0000-00-00', 18629, '', NULL), (18630, 633, '', '', '', '0000-00-00', 18630, '', NULL), (18631, 634, '', '', '', '0000-00-00', 18631, '', NULL), (18632, 635, 'S/N E1232486', 'SPI Caliper (ManSpecs)', 'Range: 0mm - 200mm', '2013-06-05', 18632, '6/5/2013', NULL), (18633, 636, '', '', '', '0000-00-00', 18633, '', NULL), (18634, 637, 'S/N 410748', ' w/ GeoJac Load Cell (E-4)', 'Range: 20 lbs to 2K', '2012-11-13', 18634, '11/13/2012', NULL), (18635, 638, 'S/N PS-2958', ' w/ GeoJac Pressure Transducer (D-5720)', 'Range: 200 psi ', '2012-11-13', 18635, '11/13/2012', NULL), (18636, 639, '', '', '', '0000-00-00', 18636, '', NULL), (18637, 640, '', ' ***Send cert to Bill to site*** ', 'Also E-mail Certs to J. Dunn', '0000-00-00', 18637, '', NULL), (18638, 641, '', ' ***ISO Requested***', '', '0000-00-00', 18638, '', NULL), (18639, 642, '', '', '', '0000-00-00', 18639, '', NULL), (18640, 643, 'S/N 08196', 'Forney F-502F-TPILOT Digital Compression Machine (E-4)', 'Range: 5K to 500K ', '2012-11-28', 18640, '11/28/2012', NULL), (18641, 644, '', ' ***Send Certs to Bill Site***', '', '0000-00-00', 18641, '', NULL), (18642, 645, '', '', '', '0000-00-00', 18642, '', NULL), (18643, 646, '', '', '', '0000-00-00', 18643, '', NULL), (18644, 647, '', '', '', '0000-00-00', 18644, '', NULL), (18645, 648, '', '', '', '0000-00-00', 18645, '', NULL), (18646, 649, '', '', '', '0000-00-00', 18646, '', NULL), (18647, 650, '', '', '', '0000-00-00', 18647, '', NULL), (18648, 651, '', '', '', '0000-00-00', 18648, '', NULL), (18649, 652, '', '', '', '0000-00-00', 18649, '', NULL), (18650, 653, '', '', '', '0000-00-00', 18650, '', NULL), (18651, 654, '', '', '', '0000-00-00', 18651, '', NULL), (18652, 655, '', '', '', '0000-00-00', 18652, '', NULL), (18653, 656, '', '', '', '0000-00-00', 18653, '', NULL), (18654, 657, '', '', '', '0000-00-00', 18654, '', NULL), (18655, 658, '', '', '', '0000-00-00', 18655, '', NULL), (18656, 659, '', '', '', '0000-00-00', 18656, '', NULL), (18657, 660, 'S/N E91837', 'Epsilon Extensomer 3542-0100-020-ST (E-83)', 'Range: 0.2 in/in 1\' G.L. 20% Range', '2013-03-26', 18657, '3/26/2013', NULL), (18658, 661, '', ' ***S/N 1388 if done in Tension needs brought back to CSI***', '', '0000-00-00', 18658, '', NULL), (18659, 662, '', '', '', '0000-00-00', 18659, '', NULL), (18660, 663, '', '', '', '0000-00-00', 18660, '', NULL), (18661, 664, 'S/N 61007-0806122', 'Forney LT-700-CS-100-2AG Digital Compression Machine (E-4)', 'Range: 3.5K to 350K (OOS/SOLD)', '2011-07-25', 18661, '7/25/2011', NULL), (18662, 665, '', '', '', '0000-00-00', 18662, '', NULL), (18663, 666, '', '', '', '0000-00-00', 18663, '', NULL), (18664, 667, '', '', '', '0000-00-00', 18664, '', NULL), (18665, 668, '', '', '', '0000-00-00', 18665, '', NULL), (18666, 669, '', ' ***Need fixture to calibrate Extensometer***', '', '0000-00-00', 18666, '', NULL), (18667, 670, '', '', '', '0000-00-00', 18667, '', NULL), (18668, 671, '', '', '', '0000-00-00', 18668, '', NULL), (18669, 672, 'S/N 89967 / NC#14', 'HCS LC-40 Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K ', '2009-01-26', 18669, '1/26/2009', NULL), (18670, 673, '', '', '', '0000-00-00', 18670, '', NULL), (18671, 674, '', 'Mail Certs to: Alfred State College, 10 Upper College Drive, ', '', '0000-00-00', 18671, '', NULL), (18672, 675, '', '', '', '0000-00-00', 18672, '', NULL), (18673, 676, '', '', '', '0000-00-00', 18673, '', NULL), (18674, 677, '', '', '', '0000-00-00', 18674, '', NULL), (18675, 678, '', '', '', '0000-00-00', 18675, '', NULL), (18676, 679, '', '', '', '0000-00-00', 18676, '', NULL), (18677, 680, '', '', '', '0000-00-00', 18677, '', NULL), (18678, 681, 'S/N 004401', 'Hilti Pull Tester Model 59604/02/00 (Chicago) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs ', '2013-01-28', 18678, '1/28/2013', NULL), (18679, 682, 'S/N 05011 / NC#5', 'HCS LC-40 Hydraulic Load Cell (ID# LC2502) (E-4)', 'Range: 40K', '2010-08-18', 18679, '8/18/2010', NULL), (18680, 683, '', '', '', '0000-00-00', 18680, '', NULL), (18681, 684, '', '', '', '0000-00-00', 18681, '', NULL), (18682, 685, '', '', '', '0000-00-00', 18682, '', NULL), (18683, 686, '', '', '', '0000-00-00', 18683, '', NULL), (18684, 687, '', '', '', '0000-00-00', 18684, '', NULL), (18685, 688, '', '', '', '0000-00-00', 18685, '', NULL), (18686, 689, '', '', '', '0000-00-00', 18686, '', NULL), (18687, 690, 'S/N 004401', 'Hilti Pull Tester Model 59604/02/00 (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2009-12-04', 18687, '12/4/2009', NULL), (18688, 691, '', '', '', '0000-00-00', 18688, '', NULL), (18689, 692, '', '', '', '0000-00-00', 18689, '', NULL), (18690, 693, '', '', '', '0000-00-00', 18690, '', NULL), (18691, 694, 'S/N 21402', 'Soiltest Unconfined Double Proving Ring (E-4 & ManSpec)', 'Range: 500 lbs', '2008-02-18', 18691, '2/18/2008', NULL), (18692, 695, 'S/N 22954866', 'Acculab Scale (E-898)', 'Range: 5,100 Grams ', '2013-02-06', 18692, '2/6/2013', NULL), (18693, 696, '', '', '', '0000-00-00', 18693, '', NULL), (18694, 697, '', '', '', '0000-00-00', 18694, '', NULL), (18695, 698, '', '', '', '0000-00-00', 18695, '', NULL), (18696, 699, '', '', '', '0000-00-00', 18696, '', NULL), (18697, 700, '', ' ProRated price available to get all equipment in same tour for Feb.', '', '0000-00-00', 18697, '', NULL), (18698, 701, '', '', '', '0000-00-00', 18698, '', NULL), (18699, 702, '', '', '', '0000-00-00', 18699, '', NULL), (18700, 703, '', '', '', '0000-00-00', 18700, '', NULL), (18701, 704, '', '', '', '0000-00-00', 18701, '', NULL), (18702, 705, '', '', '', '0000-00-00', 18702, '', NULL), (18703, 706, '', '', '', '0000-00-00', 18703, '', NULL), (18704, 707, '', '', '', '0000-00-00', 18704, '', NULL), (18705, 708, '', '', '', '0000-00-00', 18705, '', NULL), (18706, 709, '', ' ***Need to use 800 System*** ', '', '0000-00-00', 18706, '', NULL), (18707, 710, '', '', '', '0000-00-00', 18707, '', NULL), (18708, 711, '', '', '', '0000-00-00', 18708, '', NULL), (18709, 712, 'S/N 7125 ', 'Enerpac Ram (Moved) (E-4 & PCI) ', 'Range: 40K (8,200 PSI)', '2012-03-05', 18709, '3/5/2012', NULL), (18710, 713, '', '', '', '0000-00-00', 18710, '', NULL), (18711, 714, '', '', '', '0000-00-00', 18711, '', NULL), (18712, 715, 'S/N 100752A', ' w/ Tovey Load Cell Plus Y Axis - T & C', 'Range: 10K ', '2012-03-12', 18712, '3/12/2012', NULL), (18713, 716, 'S/N A13178', ' w/ Interface Digital UMC-600-1-A', '', '2012-03-20', 18713, '3/20/2012', NULL), (18714, 717, '', '', '', '0000-00-00', 18714, '', NULL), (18715, 718, '', '', '', '0000-00-00', 18715, '', NULL), (18716, 719, '', '', '', '0000-00-00', 18716, '', NULL), (18717, 720, '', '', '', '0000-00-00', 18717, '', NULL), (18718, 721, '', '', '', '0000-00-00', 18718, '', NULL), (18719, 722, '', '', '', '0000-00-00', 18719, '', NULL), (18720, 723, '', '', '', '0000-00-00', 18720, '', NULL), (18721, 724, '', '', '', '0000-00-00', 18721, '', NULL), (18722, 725, '', '', '', '0000-00-00', 18722, '', NULL), (18723, 726, '', '', '', '0000-00-00', 18723, '', NULL), (18724, 727, '', '', '', '0000-00-00', 18724, '', NULL), (18725, 728, '', '', '', '0000-00-00', 18725, '', NULL), (18726, 729, '', '', '', '0000-00-00', 18726, '', NULL), (18727, 730, '', '', '', '0000-00-00', 18727, '', NULL), (18728, 731, '', '', '', '0000-00-00', 18728, '', NULL), (18729, 732, 'S/N Stress 8 Diesel', 'Stress Con Prestress Jack (E-4 & PCI & 2%)', 'Range: 5K / 50K ', '2013-04-09', 18729, '4/9/2013', NULL), (18730, 733, '', '', '', '0000-00-00', 18730, '', NULL), (18731, 734, 'S/N 239399', ' w/ LC-202-50 T & C Load Cell (E-4)', 'Range: 50 lbs ', '2011-12-06', 18731, '12/6/2011', NULL), (18732, 735, '', '', '', '0000-00-00', 18732, '', NULL), (18733, 736, '', 'As Per Beth All Cal Need to be done start at 5,000 to 3K', '', '0000-00-00', 18733, '', NULL), (18734, 737, '', '', '', '0000-00-00', 18734, '', NULL), (18735, 738, '', '', '', '0000-00-00', 18735, '', NULL), (18736, 739, '', '', '', '0000-00-00', 18736, '', NULL), (18737, 740, '', ' ***6 Month Schedule (April & October)***', '', '0000-00-00', 18737, '', NULL), (18738, 741, '', '', '', '0000-00-00', 18738, '', NULL), (18739, 742, '', '', '', '0000-00-00', 18739, '', NULL), (18740, 743, 'S/N TEN002', 'Instron TTD-CS-100-2LP Digital T&C Machine (E-4)', 'Range: Tn 20K Ch. 0 / Cp 20K Ch. 1', '2012-04-24', 18740, '4/24/2012', NULL), (18741, 744, '', '', '', '0000-00-00', 18741, '', NULL), (18742, 745, '', '', '', '0000-00-00', 18742, '', NULL), (18743, 746, '', '', '', '0000-00-00', 18743, '', NULL), (18744, 747, '', '', '', '0000-00-00', 18744, '', NULL), (18745, 748, '', '', '', '0000-00-00', 18745, '', NULL), (18746, 749, '', '**Do not cal Extensomers in Compression only in Tension**', '', '0000-00-00', 18746, '', NULL), (18747, 750, '', '', '', '0000-00-00', 18747, '', NULL), (18748, 751, '', '', '', '0000-00-00', 18748, '', NULL), (18749, 752, '', '', '', '0000-00-00', 18749, '', NULL), (18750, 753, '', '', '', '0000-00-00', 18750, '', NULL), (18751, 754, '', '', '', '0000-00-00', 18751, '', NULL), (18752, 755, '', '', '', '0000-00-00', 18752, '', NULL), (18753, 756, '', '', '', '0000-00-00', 18753, '', NULL), (18754, 757, 'S/N 1569', 'Humboldt H-4454 Single Proving Ring (OOS) (E-4 & Man Specs)', 'Range: 5K', '2011-01-31', 18754, '1/31/2011', NULL), (18755, 758, '', '', '', '0000-00-00', 18755, '', NULL), (18756, 759, '', '', '', '0000-00-00', 18756, '', NULL), (18757, 760, 'S/N 68254', 'Forney FT-40 Digital Compression Machine w/ BR Digital (E-4)', 'Range: 2.5K to 250K (OOS)', '2007-06-18', 18757, '6/18/2007', NULL), (18758, 761, '', 'Mike Zavala Cell # 313-873-4711', '', '0000-00-00', 18758, '', NULL), (18759, 762, '', '', '', '0000-00-00', 18759, '', NULL), (18760, 763, '', 'Put month, Day & Year on Stickers', '', '0000-00-00', 18760, '', NULL), (18761, 764, '', '', '', '0000-00-00', 18761, '', NULL), (18762, 765, '', '', '', '0000-00-00', 18762, '', NULL), (18763, 766, 'S/N 4010943', 'Setra S1-4100 Scale (E898)', 'Range: 50 g to 5,000 g', '2013-07-16', 18763, '7/16/2013', NULL), (18764, 767, '', '', '', '0000-00-00', 18764, '', NULL), (18765, 768, 'S/N R-3998', 'with Load Cell (E-4) 5% Range', 'Range: 0.5 lbs to 5 lbs', '2012-11-28', 18765, '11/28/2012', NULL), (18766, 769, 'S/N C-455', ' with Speed Control (E-2658-11) Recorder Proportional', 'Range: 10 in/ min', '2012-11-27', 18766, '11/27/2012', NULL), (18767, 770, '', '', '', '0000-00-00', 18767, '', NULL), (18768, 771, '', '', '', '0000-00-00', 18768, '', NULL), (18769, 772, '', '', '', '0000-00-00', 18769, '', NULL), (18770, 773, '', '', '', '0000-00-00', 18770, '', NULL), (18771, 774, '', '', '', '0000-00-00', 18771, '', NULL), (18772, 775, '', '', '', '0000-00-00', 18772, '', NULL), (18773, 776, '', '****Send certs to job site address*****', '', '0000-00-00', 18773, '', NULL), (18774, 777, ' ', ' ', ' ', '0000-00-00', 18774, '', NULL), (18775, 778, 'S/N C-455', ' with Speed Control Digital (E2658-11)', 'Range: 0.5 in/min', '2012-11-27', 18775, '11/27/2012', NULL), (18776, 779, 'S/N MR-4298', ' with Speed Control (E2658-11)', 'Range: 2 in/min', '2012-11-28', 18776, '11/28/2012', NULL), (18777, 780, '', '', '', '0000-00-00', 18777, '', NULL), (18778, 781, '', '', '', '0000-00-00', 18778, '', NULL), (18779, 782, 'S/N 5179', 'Soiltest CT-710 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2005-01-06', 18779, '1/6/2005', NULL), (18780, 783, '', '', '', '0000-00-00', 18780, '', NULL), (18781, 784, '', 'Need 1K cell for proving ring', '', '0000-00-00', 18781, '', NULL), (18782, 785, '', '', '', '0000-00-00', 18782, '', NULL), (18783, 786, '', '', '', '0000-00-00', 18783, '', NULL), (18784, 787, '', '', '', '0000-00-00', 18784, '', NULL), (18785, 788, '', '', '', '0000-00-00', 18785, '', NULL), (18786, 789, '', '', '', '0000-00-00', 18786, '', NULL), (18787, 790, '', '', '', '0000-00-00', 18787, '', NULL), (18788, 791, '', '', '', '0000-00-00', 18788, '', NULL), (18789, 792, '', '', '', '0000-00-00', 18789, '', NULL), (18790, 793, '', '', '', '0000-00-00', 18790, '', NULL), (18791, 794, '', '', '', '0000-00-00', 18791, '', NULL), (18792, 795, '', ' w/Extra Gauge (OOS)', 'Range: 35K to 350K (SOLD)', '2008-05-06', 18792, '5/6/2008', NULL), (18793, 796, '', '', '', '0000-00-00', 18793, '', NULL), (18794, 797, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer', '0000-00-00', 18794, '', NULL), (18795, 798, '', '', '', '0000-00-00', 18795, '', NULL), (18796, 799, '', '', '', '0000-00-00', 18796, '', NULL), (18797, 800, '', '', '', '0000-00-00', 18797, '', NULL), (18798, 801, '', '', '', '0000-00-00', 18798, '', NULL), (18799, 802, '', '', '', '0000-00-00', 18799, '', NULL), (18800, 803, '', '', '', '0000-00-00', 18800, '', NULL), (18801, 804, '', '', '', '0000-00-00', 18801, '', NULL), (18802, 805, '', '', '', '0000-00-00', 18802, '', NULL), (18803, 806, '', '', '', '0000-00-00', 18803, '', NULL), (18804, 807, '', '', '', '0000-00-00', 18804, '', NULL), (18805, 808, '', '', '', '0000-00-00', 18805, '', NULL), (18806, 809, '', '', '', '0000-00-00', 18806, '', NULL), (18807, 810, '', '', '', '0000-00-00', 18807, '', NULL), (18808, 811, '', 'FORWARD THEM TO THE CONTROLLER FOR PAYMENT***', '', '0000-00-00', 18808, '', NULL), (18809, 812, '', '', '', '0000-00-00', 18809, '', NULL), (18810, 813, '', '', '', '0000-00-00', 18810, '', NULL), (18811, 814, 'S/N Q5796', ' w/ Displacement (ID# MVMTC 2) (E-2309)', 'Range: 20 inches ', '2013-07-23', 18811, '7/23/2013', NULL), (18812, 815, 'S/N 55714', 'ATS Model 1101 UTM S/N 91-1256 w/ Interface Model 1210AF (E-4)', 'Range: 1K (4 Ranges-Tension Only)', '2006-07-31', 18812, '7/31/2006', NULL), (18813, 816, '', '', '', '0000-00-00', 18813, '', NULL), (18814, 817, '', '', '', '0000-00-00', 18814, '', NULL), (18815, 818, '', ' Certs to Billing Address.', '', '0000-00-00', 18815, '', NULL), (18816, 819, '', '', '', '0000-00-00', 18816, '', NULL), (18817, 820, '', '', '', '0000-00-00', 18817, '', NULL), (18818, 821, '', '', '', '0000-00-00', 18818, '', NULL), (18819, 822, '', '', '', '0000-00-00', 18819, '', NULL), (18820, 823, '', '', '', '0000-00-00', 18820, '', NULL), (18821, 824, '', '', '', '0000-00-00', 18821, '', NULL), (18822, 825, '', '', '', '0000-00-00', 18822, '', NULL), (18823, 826, 'S/N 0507235/12', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 18823, '8/27/2013', NULL), (18824, 827, '', '', '', '0000-00-00', 18824, '', NULL), (18825, 828, '', '', '', '0000-00-00', 18825, '', NULL), (18826, 829, 'S/N 0518086/2', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1% FS) ', 'Range : 5 Ton', '2013-04-19', 18826, '4/19/2013', NULL), (18827, 830, '', '', '', '0000-00-00', 18827, '', NULL), (18828, 831, 'S/N PG10 ', 'Wika Pressure Gauge (D-5720)', 'Range: 60 PSI', '2009-02-27', 18828, '2/27/2009', NULL), (18829, 832, '', '', '', '0000-00-00', 18829, '', NULL), (18830, 833, '', '**WHEN DOING HYRDO-D TAKE 100 KIP CELLS***', '', '0000-00-00', 18830, '', NULL), (18831, 834, '', '', '', '0000-00-00', 18831, '', NULL), (18832, 835, ' ', ' ', ' ', '0000-00-00', 18832, '', NULL), (18833, 836, ' ', ' ', ' ', '0000-00-00', 18833, '', NULL), (18834, 837, '', '', '', '0000-00-00', 18834, '', NULL), (18835, 838, '', '', '', '0000-00-00', 18835, '', NULL), (18836, 839, '', '', '', '0000-00-00', 18836, '', NULL), (18837, 840, '', '', '', '0000-00-00', 18837, '', NULL), (18838, 841, '', ' DO NOT SCHEDULE FOR TUESDAYS', '', '0000-00-00', 18838, '', NULL), (18839, 842, 'S/N 100', 'McDaniel Pressure Gauge (D-5720)', 'Range: 10K ', '2009-08-04', 18839, '8/4/2009', NULL), (18840, 843, 'S/N Pilot Plant ', '', ' *** continued***', '0000-00-00', 18840, '', NULL), (18841, 844, '', '', '', '0000-00-00', 18841, '', NULL), (18842, 845, '', '', '', '0000-00-00', 18842, '', NULL), (18843, 846, '', '', '', '0000-00-00', 18843, '', NULL), (18844, 847, '', '', '', '0000-00-00', 18844, '', NULL), (18845, 848, '', '', '', '0000-00-00', 18845, '', NULL), (18846, 849, '', '', '', '0000-00-00', 18846, '', NULL), (18847, 850, '', '', '', '0000-00-00', 18847, '', NULL), (18848, 851, '', '', '', '0000-00-00', 18848, '', NULL), (18849, 852, '', '', '', '0000-00-00', 18849, '', NULL), (18850, 853, '', '', '', '0000-00-00', 18850, '', NULL), (18851, 854, ' ', ' ', ' ', '0000-00-00', 18851, '', NULL), (18852, 855, 'S/N 07AP', 'Powerteam Mdl. B RH-606 Hydraulic Ram (E-4 & Man Specs)', 'Range: (MOVED TO SOILNAIL2)', '2012-06-29', 18852, '6/29/2012', NULL), (18853, 856, '', '', '', '0000-00-00', 18853, '', NULL), (18854, 857, '', '', '', '0000-00-00', 18854, '', NULL), (18855, 858, '', '', '', '0000-00-00', 18855, '', NULL), (18856, 859, '', ' *Page 2 of Customer #GCNT*', '', '0000-00-00', 18856, '', NULL), (18857, 860, '', '', '', '0000-00-00', 18857, '', NULL), (18858, 861, '', '', '', '0000-00-00', 18858, '', NULL), (18859, 862, '', '', '', '0000-00-00', 18859, '', NULL), (18860, 863, '', '', '', '0000-00-00', 18860, '', NULL), (18861, 864, '', '', '', '0000-00-00', 18861, '', NULL), (18862, 865, '', '', '', '0000-00-00', 18862, '', NULL), (18863, 866, '', '', '', '0000-00-00', 18863, '', NULL), (18864, 867, '', '', '', '0000-00-00', 18864, '', NULL), (18865, 868, '', '', '', '0000-00-00', 18865, '', NULL), (18866, 869, '', '', '', '0000-00-00', 18866, '', NULL), (18867, 870, '', '', '', '0000-00-00', 18867, '', NULL), (18868, 871, '', '***Get check for all 3 places Cadillac, Alpena & Escanaba from ', '', '0000-00-00', 18868, '', NULL), (18869, 872, '', '', '', '0000-00-00', 18869, '', NULL), (18870, 873, 'S/N 1A', 'BK Pore Pressure System (D-5720)', 'Range: 200 psi', '2013-10-01', 18870, '10/1/2013', NULL), (18871, 874, '', 'Send Certs to Job Site.', '', '0000-00-00', 18871, '', NULL), (18872, 875, '', '', '', '0000-00-00', 18872, '', NULL), (18873, 876, '', '', '', '0000-00-00', 18873, '', NULL), (18874, 877, '', '', '', '0000-00-00', 18874, '', NULL), (18875, 878, '', '', '', '0000-00-00', 18875, '', NULL), (18876, 879, '', '', '', '0000-00-00', 18876, '', NULL), (18877, 880, '', '', '', '0000-00-00', 18877, '', NULL), (18878, 881, '', '', '', '0000-00-00', 18878, '', NULL), (18879, 882, '', '', '', '0000-00-00', 18879, '', NULL), (18880, 883, '', '', '', '0000-00-00', 18880, '', NULL), (18881, 884, '', '', '', '0000-00-00', 18881, '', NULL), (18882, 885, '', '', '', '0000-00-00', 18882, '', NULL), (18883, 886, '', '', '', '0000-00-00', 18883, '', NULL), (18884, 887, '', '', '', '0000-00-00', 18884, '', NULL), (18885, 888, '', '', '', '0000-00-00', 18885, '', NULL), (18886, 889, '', ' \"*** SCHEDULE 3rd week of July ***', '', '0000-00-00', 18886, '', NULL), (18887, 890, '', ' *** Schedule w/ SAL***', '', '0000-00-00', 18887, '', NULL), (18888, 891, '', '', '', '0000-00-00', 18888, '', NULL), (18889, 892, 'S/N 005925', 'Hilti Pull Tester Model 59604 (E-4)', 'Range 3,000 lbs', '2012-10-25', 18889, '10/25/2012', NULL), (18890, 893, '', '', '', '0000-00-00', 18890, '', NULL), (18891, 894, '', '', '', '0000-00-00', 18891, '', NULL), (18892, 895, '', '', '', '0000-00-00', 18892, '', NULL), (18893, 896, 'S/N 90060', 'Forney FT-250F-02 Compression Machine (E-4)', 'Range: 30K / 250K (OOS)', NULL, 18893, 'New', NULL), (18894, 897, '', '', '', '0000-00-00', 18894, '', NULL), (18895, 898, '', 'have a PO#, ship to address & First & Last name of Essroc employee', '', '0000-00-00', 18895, '', NULL), (18896, 899, '', '', '', '0000-00-00', 18896, '', NULL), (18897, 900, '', '', '', '0000-00-00', 18897, '', NULL), (18898, 901, '', '', '', '0000-00-00', 18898, '', NULL), (18899, 902, '', '', '', '0000-00-00', 18899, '', NULL), (18900, 903, '', '', '', '0000-00-00', 18900, '', NULL), (18901, 904, '', '***Must have Calibration Factors & Offsets on Certification***', '***continued***', '0000-00-00', 18901, '', NULL), (18902, 905, 'S/N 1571', 'Tinius Olsen Series 1000 Tension & Compression Machine (E-4)', 'Range:50/100/200/500/1000(Tensileonly)', '2011-10-05', 18902, '10/5/2011', NULL), (18903, 906, '', '', '', '0000-00-00', 18903, '', NULL), (18904, 907, 'S/N 007', ' w/ Gauge ', 'Range: 30 Ton (4,600 PSI)', '2013-09-17', 18904, '9/17/2013', NULL), (18905, 908, '', '', '', '0000-00-00', 18905, '', NULL), (18906, 909, '', '', '', '0000-00-00', 18906, '', NULL), (18907, 910, '', ' ***Send Certs to Job Site*** ', '', '0000-00-00', 18907, '', NULL), (18908, 911, '', '', '', '0000-00-00', 18908, '', NULL), (18909, 912, '', '', '', '0000-00-00', 18909, '', NULL), (18910, 913, '', '', '', '0000-00-00', 18910, '', NULL), (18911, 914, '', '', '', '0000-00-00', 18911, '', NULL), (18912, 915, '', '', '', '0000-00-00', 18912, '', NULL), (18913, 916, '', '', '', '0000-00-00', 18913, '', NULL), (18914, 917, '', '', '', '0000-00-00', 18914, '', NULL), (18915, 918, '', '', '', '0000-00-00', 18915, '', NULL), (18916, 919, 'S/N 1155-13-17137', 'ELE Single Proving Ring (OOS) (E-4 & Man Specs)', 'Range: 4.5K ', '2012-12-19', 18916, '12/19/2012', NULL), (18917, 920, '', ' ***Can only do Edit on Extensometer***', '', '0000-00-00', 18917, '', NULL), (18918, 921, 'S/N 992234627', 'ELE Dial Indicator (D-6027)', 'Range: 1 Inch ', '2012-01-04', 18918, '1/4/2012', NULL), (18919, 922, 'S/N 794', 'Durham Geo Pressure Transducer w/ E-405 Digital (D-5720)', 'Range: 150 PSI ', '2012-12-17', 18919, '12/17/2012', NULL), (18920, 923, '', '', '', '0000-00-00', 18920, '', NULL), (18921, 924, '', '', '', '0000-00-00', 18921, '', NULL), (18922, 925, '', '', '', '0000-00-00', 18922, '', NULL), (18923, 926, '', '', '', '0000-00-00', 18923, '', NULL), (18924, 927, '', 'Send Certs Attn: Brain Corley PO Box 968 Clarksburgh WV 26302', '(as per Kelly-other add. cert was returned)', '0000-00-00', 18924, '', NULL), (18925, 928, '', '', '', '0000-00-00', 18925, '', NULL), (18926, 929, '', '', '', '0000-00-00', 18926, '', NULL), (18927, 930, 'S/N LP-890', ' w/ LVDT (D-6027)', 'Range: 3 inches', '2013-01-09', 18927, '1/9/2013', NULL), (18928, 931, 'S/N LP920', 'LVDT (ID#G1440) (D-6027)', 'Range: 2 inches', '2013-01-07', 18928, '1/7/2013', NULL), (18929, 932, ' ', ' ', ' ', '0000-00-00', 18929, '', NULL), (18930, 933, 'S/N 2257', 'Geojac Consolidometer (E-4) (MOVED)', '(ID# R409)', '0000-00-00', 18930, '', NULL), (18931, 934, 'S/N 05234', 'Forney F-30 EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 3K to 300K (SOLD)', '2011-01-04', 18931, '1/4/2011', NULL), (18932, 935, 'S/N 050456865', 'CDI BG-1720 Dial Indicator (D-6027)', 'Range: 2 inches ', '2013-01-23', 18932, '1/23/2013', NULL), (18933, 936, '', '', '', '0000-00-00', 18933, '', NULL), (18934, 937, '', '', '', '0000-00-00', 18934, '', NULL), (18935, 938, '', '', '', '0000-00-00', 18935, '', NULL), (18936, 939, '', '', '', '0000-00-00', 18936, '', NULL), (18937, 940, '', '', '', '0000-00-00', 18937, '', NULL), (18938, 941, '', '', '', '0000-00-00', 18938, '', NULL), (18939, 942, '', '', '', '0000-00-00', 18939, '', NULL), (18940, 943, '', '', '', '0000-00-00', 18940, '', NULL), (18941, 944, '', '', '', '0000-00-00', 18941, '', NULL), (18942, 945, '', '', '', '0000-00-00', 18942, '', NULL), (18943, 946, '', ' ', '', '0000-00-00', 18943, '', NULL), (18944, 947, '', '', '', '0000-00-00', 18944, '', NULL), (18945, 948, '', '', '', '0000-00-00', 18945, '', NULL), (18946, 949, '', '', '', '0000-00-00', 18946, '', NULL), (18947, 950, '', '', '', '0000-00-00', 18947, '', NULL), (18948, 951, 'S/N 23897', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)', 'Range: 2K ', '2010-03-10', 18948, '3/10/2010', NULL), (18949, 952, '', '', '', '0000-00-00', 18949, '', NULL), (18950, 953, 'S/N 7632', 'LS Starrett Dial Indicator (D-6027)', 'Range: 2 Inches', '2013-02-26', 18950, '2/26/2013', NULL), (18951, 954, '', ' ***ISO Requested***', '', '0000-00-00', 18951, '', NULL), (18952, 955, '', 'S/N 7125 Schedule every 6 months', '', '0000-00-00', 18952, '', NULL), (18953, 956, '', '', '', '0000-00-00', 18953, '', NULL), (18954, 957, '', '', '', '0000-00-00', 18954, '', NULL), (18955, 958, '', '', '', '0000-00-00', 18955, '', NULL), (18956, 959, '', '', '', '0000-00-00', 18956, '', NULL), (18957, 960, '', '', '', '0000-00-00', 18957, '', NULL), (18958, 961, '', '', '*Main Office*', '0000-00-00', 18958, '', NULL), (18959, 962, '', '', '', '0000-00-00', 18959, '', NULL), (18960, 963, 'S/N 079021', 'Ashcroft Pressure Transducer (D-5720)', 'Range: 300 psi', '2013-07-30', 18960, '7/30/2013', NULL), (18961, 964, '', '', '', '0000-00-00', 18961, '', NULL), (18962, 965, '', '', '', '0000-00-00', 18962, '', NULL), (18963, 966, '', '', '', '0000-00-00', 18963, '', NULL), (18964, 967, 'S/N 005621', 'Hilti Pull Tester Model 59604/04/09 (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2011-06-30', 18964, '6/30/2011', NULL), (18965, 968, '', '', '', '0000-00-00', 18965, '', NULL), (18966, 969, '', '', '', '0000-00-00', 18966, '', NULL), (18967, 970, '', '', '', '0000-00-00', 18967, '', NULL), (18968, 971, 'S/N CBR1', 'Soiltest Dial Indicator (moved) (D-6027)', 'Range: 1 inch', '2012-02-14', 18968, '2/14/2012', NULL), (18969, 972, '', '', '', '0000-00-00', 18969, '', NULL), (18970, 973, '', '', '', '0000-00-00', 18970, '', NULL), (18971, 974, '', '', '', '0000-00-00', 18971, '', NULL), (18972, 975, '', '', '', '0000-00-00', 18972, '', NULL), (18973, 976, '', '', '', '0000-00-00', 18973, '', NULL), (18974, 977, '', '', '', '0000-00-00', 18974, '', NULL), (18975, 978, '', '', '', '0000-00-00', 18975, '', NULL), (18976, 979, '', '', '', '0000-00-00', 18976, '', NULL), (18977, 980, '', '', '', '0000-00-00', 18977, '', NULL), (18978, 981, '', '', '', '0000-00-00', 18978, '', NULL), (18979, 982, '', '', '', '0000-00-00', 18979, '', NULL), (18980, 983, '', '', '', '0000-00-00', 18980, '', NULL), (18981, 984, '', '', '', '0000-00-00', 18981, '', NULL), (18982, 985, '', '', '', '0000-00-00', 18982, '', NULL), (18983, 986, '', '', '', '0000-00-00', 18983, '', NULL), (18984, 987, '', '', '', '0000-00-00', 18984, '', NULL), (18985, 988, '', '**** MAIL CERTS FOR THIS JOBSITE TO 1954 GREENSPRING DR', 'SUITE 250, TIMONIUM, MD 21093*****', '0000-00-00', 18985, '', NULL), (18986, 989, '', '', '', '0000-00-00', 18986, '', NULL), (18987, 990, '', '', '', '0000-00-00', 18987, '', NULL), (18988, 991, '', '', '', '0000-00-00', 18988, '', NULL), (18989, 992, 'S/N 50614874', 'Micro Measurements Mdl H510 Linear Diplacement Sensor', 'Range 100 mm ID #LabD40 (4\")', '2013-03-13', 18989, '3/13/2013', NULL), (18990, 993, '', '', '', '0000-00-00', 18990, '', NULL), (18991, 994, '', '', '', '0000-00-00', 18991, '', NULL), (18992, 995, '', '', '', '0000-00-00', 18992, '', NULL), (18993, 996, 'S/N 376', 'Pine Instrument Mdl. AF850T Asphalt Press (E-4) ', 'Range: 2.5K / 5K / 10K', '2013-03-13', 18993, '3/13/2013', NULL), (18994, 997, '', '', '', '0000-00-00', 18994, '', NULL), (18995, 998, ' ', ' ', ' ', '0000-00-00', 18995, '', NULL), (18996, 999, '', '', '', '0000-00-00', 18996, '', NULL), (18997, 1000, '', '', '', '0000-00-00', 18997, '', NULL), (18998, 1001, '', '', '', '0000-00-00', 18998, '', NULL), (18999, 1002, '', '', '', '0000-00-00', 18999, '', NULL), (19000, 1003, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 19000, '', NULL), (19001, 1004, 'S/N 1129', 'Brainard Kilman CBR Tester Mdl. S-610 w/Speed Control(Man Specs)', 'Speed Setting: 0.05 in/min', '2008-04-30', 19001, '4/30/2008', NULL), (19002, 1005, '', '', '', '0000-00-00', 19002, '', NULL), (19003, 1006, '', '', '', '0000-00-00', 19003, '', NULL), (19004, 1007, '', '', '', '0000-00-00', 19004, '', NULL), (19005, 1008, '', '****Needs Calibrated every six months per Chrysler****', '', '0000-00-00', 19005, '', NULL), (19006, 1009, '', '', '', '0000-00-00', 19006, '', NULL), (19007, 1010, 'S/N 14705H', 'Testmark CM-2500-DIR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED) ', '2009-06-16', 19007, '6/16/2009', NULL), (19008, 1011, 'S/N STR-E1', 'Simplex Stressing - Portable (E-4 & PCI)', 'Range: 3,4K/35K', '2005-07-14', 19008, '7/14/2005', NULL), (19009, 1012, 'S/N C1010', 'Simplex Ram RC123 Ram (E-4 & PCI ManSpecs)', 'Range: 12 Ton (10,000 psi)', '2013-07-10', 19009, '7/10/2013', NULL), (19010, 1013, '', 'E-Mail Certs and Invoice to paul.pridemore@basf.com', '', '0000-00-00', 19010, '', NULL), (19011, 1014, 'S/N 40', ' w/ Extra Gauge- Final Jack #6 (E-4 & PCI)', 'Range: 40K', '2013-01-14', 19011, '1/14/2013', NULL), (19012, 1015, 'S/N 93447/NC#23', 'HCS Hydrallic Loadcell', 'Range 50K', '2012-03-21', 19012, '3/21/2012', NULL), (19013, 1016, 'S/N GB0209031', 'Controls Digital Compression Machine w/Gauge Buster(Moved) (E-4)', 'Range: 2.5K to 250K', '2007-12-05', 19013, '12/5/2007', NULL), (19014, 1017, '', ' ***ISO Requested***', '', '0000-00-00', 19014, '', NULL), (19015, 1018, '', 'S/N 386191-1027 on 6 month schedule- Government Job', ' (August & January)', '0000-00-00', 19015, '', NULL), (19016, 1019, '', '**Equipment on 6 month schedule February / August**', '', '0000-00-00', 19016, '', NULL), (19017, 1020, '', '', '', '0000-00-00', 19017, '', NULL), (19018, 1021, '', '', '', '0000-00-00', 19018, '', NULL), (19019, 1022, '', 'Send Certs to:', '', '0000-00-00', 19019, '', NULL), (19020, 1023, 'S/N 95-103', ' w/Load Cell (Attached to Machine) ', '', '2011-08-29', 19020, '8/29/2011', NULL), (19021, 1024, '', '', '', '0000-00-00', 19021, '', NULL), (19022, 1025, '', 'Copy of invoice needs mailed Attn: Fred Hommel to jobsite.', 'Then call him w/ total 231-237-1367', '0000-00-00', 19022, '', NULL), (19023, 1026, 'S/N Stress 8 Diesel', 'Stress Con Prestress Jack (MOSVED) (E-4 & PCI)', 'Range: 4K / 50K', '2012-10-02', 19023, '10/2/2012', NULL), (19024, 1027, '', 'Get a PO# w/ a Specific Billing Address', '', '0000-00-00', 19024, '', NULL), (19025, 1028, '', '', '', '0000-00-00', 19025, '', NULL), (19026, 1029, '', '', '', '0000-00-00', 19026, '', NULL), (19027, 1030, 'S/N 99-594', 'Stressing Jack Hercules HSJ', 'Range: Pre. 5,000 lbs / Final 60,000 lbs', '2013-01-03', 19027, '1/3/2013', NULL), (19028, 1031, '', '', '', '0000-00-00', 19028, '', NULL), (19029, 1032, '', '', '', '0000-00-00', 19029, '', NULL), (19030, 1033, '', '', '', '0000-00-00', 19030, '', NULL), (19031, 1034, '', '', '', '0000-00-00', 19031, '', NULL), (19032, 1035, '', '', '', '0000-00-00', 19032, '', NULL), (19033, 1036, 'S/N 254', ' w/ Humboldt E-312 LVDT Data Logger Ch.#2 (D-6027)', 'Range: 2 inch', '2013-04-03', 19033, '4/3/2013', NULL), (19034, 1037, 'S/N 4103 ', 'Brainard Kilman Triaxial LVDT (D-6027)', 'Range: 1 Inch ADU Channel 26', '2012-04-04', 19034, '4/4/2012', NULL), (19035, 1038, 'S/N 111240-9', 'Automatic Volume Change Transducer ', 'Range: 100 +/- 0.05 ml ', NULL, 19035, 'New ', NULL), (19036, 1039, 'S/N 238/109', 'Brainard-Kilman Mdl. E-310 LVDT (Channel #20)', 'Range: 0.4 Inches (D-6027l)', '2012-04-04', 19036, '4/4/2012', NULL), (19037, 1040, '', '', '', '0000-00-00', 19037, '', NULL), (19038, 1041, '', '', '', '0000-00-00', 19038, '', NULL), (19039, 1042, 'S/N 1155', 'Brainard Kilman Model S-610 CBR Speed Control (Man Specs)', 'Speed Setting: 0.050 in/min', '2008-04-22', 19039, '4/22/2008', NULL), (19040, 1043, 'S/N 4102', 'Brainard Kilman CBR E-400 LVDT (D-6027)', 'Range: 0.7 inches ', '2013-04-01', 19040, '4/1/2013', NULL), (19041, 1044, 'S/N 159 / 154 ', 'Brainard Kilman BK-5000-2 Pressure Transducer (D-5720) ', 'Range: 150 PSI ', '2013-04-01', 19041, '4/1/2013', NULL), (19042, 1045, '', '', '', '0000-00-00', 19042, '', NULL), (19043, 1046, '', '', '', '0000-00-00', 19043, '', NULL), (19044, 1047, '', '', '', '0000-00-00', 19044, '', NULL), (19045, 1048, 'S/N 98540', 'Total Comp S-Type Load Cell (Do not Use) (E-4)', 'Range: 5K', NULL, 19045, 'New', NULL), (19046, 1049, '', '', '', '0000-00-00', 19046, '', NULL), (19047, 1050, '', '', '', '0000-00-00', 19047, '', NULL), (19048, 1051, '', '', '', '0000-00-00', 19048, '', NULL), (19049, 1052, '', '', '', '0000-00-00', 19049, '', NULL), (19050, 1053, '', '', '', '0000-00-00', 19050, '', NULL), (19051, 1054, 'S/N 1086', 'HMA Lab Supply Mdl. 9210 Digital Manometer (D-5720 & 2%) ', 'Range: 800 mmHg', '2013-04-11', 19051, '4/11/2013', NULL), (19052, 1055, '', '', '', '0000-00-00', 19052, '', NULL), (19053, 1056, '', '', '', '0000-00-00', 19053, '', NULL), (19054, 1057, '', '', '', '0000-00-00', 19054, '', NULL), (19055, 1058, '', '', '', '0000-00-00', 19055, '', NULL), (19056, 1059, '', '', '', '0000-00-00', 19056, '', NULL), (19057, 1060, '', '', '', '0000-00-00', 19057, '', NULL), (19058, 1061, '', '***ISO REQUESTED*** ***ISO 9000***', '', '0000-00-00', 19058, '', NULL), (19059, 1062, '', '', '', '0000-00-00', 19059, '', NULL), (19060, 1063, '', '', '', '0000-00-00', 19060, '', NULL), (19061, 1064, '', '', '', '0000-00-00', 19061, '', NULL), (19062, 1065, '', '', '', '0000-00-00', 19062, '', NULL), (19063, 1066, '', '', '', '0000-00-00', 19063, '', NULL), (19064, 1067, '', '', '', '0000-00-00', 19064, '', NULL), (19065, 1068, '', '', '', '0000-00-00', 19065, '', NULL), (19066, 1069, '', '', '', '0000-00-00', 19066, '', NULL), (19067, 1070, '', '', '', '0000-00-00', 19067, '', NULL), (19068, 1071, '', '', '', '0000-00-00', 19068, '', NULL), (19069, 1072, '', '', '', '0000-00-00', 19069, '', NULL), (19070, 1073, '', '', '', '0000-00-00', 19070, '', NULL), (19071, 1074, '', '', '', '0000-00-00', 19071, '', NULL), (19072, 1075, '', '', '', '0000-00-00', 19072, '', NULL), (19073, 1076, 'S/N 17246', 'Chatillon Force Gauge Digital DFI 500 T&C (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 19073, '4/28/1998', NULL), (19074, 1077, 'S/N 400', 'Chatillon Force Gauge DFGRS-50 Digital T & C (E-4)', 'Range: 5 to 50 lb.', '1998-04-29', 19074, '4/29/1998', NULL), (19075, 1078, '', '', '', '0000-00-00', 19075, '', NULL), (19076, 1079, '', '', '', '0000-00-00', 19076, '', NULL), (19077, 1080, '', '', '', '0000-00-00', 19077, '', NULL), (19078, 1081, '', '', '', '0000-00-00', 19078, '', NULL), (19079, 1082, '', '', '', '0000-00-00', 19079, '', NULL), (19080, 1083, '', '', '', '0000-00-00', 19080, '', NULL), (19081, 1084, '', '', '', '0000-00-00', 19081, '', NULL), (19082, 1085, '', '', '', '0000-00-00', 19082, '', NULL), (19083, 1086, '', '', '', '0000-00-00', 19083, '', NULL), (19084, 1087, '', '', '', '0000-00-00', 19084, '', NULL), (19085, 1088, '', '', '', '0000-00-00', 19085, '', NULL), (19086, 1089, '', '', '', '0000-00-00', 19086, '', NULL), (19087, 1090, '', '', '', '0000-00-00', 19087, '', NULL), (19088, 1091, '', '', '', '0000-00-00', 19088, '', NULL), (19089, 1092, '', '', '', '0000-00-00', 19089, '', NULL), (19090, 1093, '', '', '', '0000-00-00', 19090, '', NULL), (19091, 1094, '', '', '', '0000-00-00', 19091, '', NULL), (19092, 1095, '', '', '', '0000-00-00', 19092, '', NULL), (19093, 1096, '', '', '', '0000-00-00', 19093, '', NULL), (19094, 1097, '', '', '', '0000-00-00', 19094, '', NULL), (19095, 1098, '', '', '', '0000-00-00', 19095, '', NULL), (19096, 1099, '', '', '', '0000-00-00', 19096, '', NULL), (19097, 1100, '', '', '', '0000-00-00', 19097, '', NULL), (19098, 1101, '', '', '', '0000-00-00', 19098, '', NULL), (19099, 1102, '', '', '', '0000-00-00', 19099, '', NULL), (19100, 1103, '', '', '', '0000-00-00', 19100, '', NULL), (19101, 1104, '', '', '', '0000-00-00', 19101, '', NULL), (19102, 1105, '', '', '', '0000-00-00', 19102, '', NULL), (19103, 1106, '', '', '', '0000-00-00', 19103, '', NULL), (19104, 1107, '', '', '', '0000-00-00', 19104, '', NULL), (19105, 1108, '', '', '', '0000-00-00', 19105, '', NULL), (19106, 1109, '', '', '', '0000-00-00', 19106, '', NULL), (19107, 1110, '', '', '', '0000-00-00', 19107, '', NULL), (19108, 1111, '', '', '', '0000-00-00', 19108, '', NULL), (19109, 1112, '', '', '', '0000-00-00', 19109, '', NULL), (19110, 1113, '', '', '', '0000-00-00', 19110, '', NULL), (19111, 1114, '', '', '', '0000-00-00', 19111, '', NULL), (19112, 1115, '', '', '', '0000-00-00', 19112, '', NULL), (19113, 1116, '', '', '', '0000-00-00', 19113, '', NULL), (19114, 1117, 'S/N 160285', 'Artech CBR Load Cell (Channel #25) (OOS) (E-4)', 'Range: 500 lbs', '2000-01-18', 19114, '1/18/2000', NULL), (19115, 1118, '', '', '', '0000-00-00', 19115, '', NULL), (19116, 1119, '', '', '', '0000-00-00', 19116, '', NULL), (19117, 1120, '', '', '', '0000-00-00', 19117, '', NULL), (19118, 1121, '', '', '', '0000-00-00', 19118, '', NULL), (19119, 1122, '', '', '', '0000-00-00', 19119, '', NULL), (19120, 1123, '', '', '', '0000-00-00', 19120, '', NULL), (19121, 1124, 'S/N 915', 'Durham Geo 1 Channel Pressure Transducer', 'Range: ', NULL, 19121, 'New', NULL), (19122, 1125, '', '', '', '0000-00-00', 19122, '', NULL), (19123, 1126, '', '', '', '0000-00-00', 19123, '', NULL), (19124, 1127, '', '', '', '0000-00-00', 19124, '', NULL), (19125, 1128, '', '', '', '0000-00-00', 19125, '', NULL), (19126, 1129, '', '', '', '0000-00-00', 19126, '', NULL), (19127, 1130, '', '', '', '0000-00-00', 19127, '', NULL), (19128, 1131, '', '', '', '0000-00-00', 19128, '', NULL), (19129, 1132, '', '', '', '0000-00-00', 19129, '', NULL), (19130, 1133, '', '', '', '0000-00-00', 19130, '', NULL), (19131, 1134, '', '', '', '0000-00-00', 19131, '', NULL), (19132, 1135, '', '', '', '0000-00-00', 19132, '', NULL), (19133, 1136, '', '', '', '0000-00-00', 19133, '', NULL), (19134, 1137, '', '', '', '0000-00-00', 19134, '', NULL), (19135, 1138, '', '', '', '0000-00-00', 19135, '', NULL), (19136, 1139, '', '', '', '0000-00-00', 19136, '', NULL), (19137, 1140, 'S/N 91009', 'Wegener Utilitest Model 500 Tensiometer (MOVED) (E-4)', 'Range: 500 lbs', '2006-05-03', 19137, '5/3/2006', NULL), (19138, 1141, '', '', '', '0000-00-00', 19138, '', NULL), (19139, 1142, 'S/N 127', 'Karol Warner Unconfined Single Proving Ring (E-4 & Man Specs)', 'Cap: 2K', '2013-08-06', 19139, '8/6/2013', NULL), (19140, 1143, '', '', '', '0000-00-00', 19140, '', NULL), (19141, 1144, '', '', '', '0000-00-00', 19141, '', NULL), (19142, 1145, '', '', '', '0000-00-00', 19142, '', NULL), (19143, 1146, '', '', '', '0000-00-00', 19143, '', NULL), (19144, 1147, 'S/N 871548', 'Karol Warner Conbel Model 356-CS-100-5/Consolidometer Load Cell ', 'Range:1 1/2TSFSm/30TSFLg(E-4&ManS)', '2013-08-06', 19144, '8/6/2013', NULL), (19145, 1148, '', '', '', '0000-00-00', 19145, '', NULL), (19146, 1149, '', '', '', '0000-00-00', 19146, '', NULL), (19147, 1150, '', '***ISO Requested***', '', '0000-00-00', 19147, '', NULL), (19148, 1151, '', '', '', '0000-00-00', 19148, '', NULL), (19149, 1152, '', '', '', '0000-00-00', 19149, '', NULL), (19150, 1153, '', '', '', '0000-00-00', 19150, '', NULL), (19151, 1154, '', '', '', '0000-00-00', 19151, '', NULL), (19152, 1155, '', '', '', '0000-00-00', 19152, '', NULL), (19153, 1156, '', '', '', '0000-00-00', 19153, '', NULL), (19154, 1157, '', '', '', '0000-00-00', 19154, '', NULL), (19155, 1158, 'S/N 21753', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs) (OOS)', 'Range: 2K', '2012-08-21', 19155, '8/21/2012', NULL), (19156, 1159, '', '', '', '0000-00-00', 19156, '', NULL), (19157, 1160, '', '', '', '0000-00-00', 19157, '', NULL), (19158, 1161, 'S/N VT-1158', 'Soiltest Versa Tester-Model CT-745 (OOS) (E-4)', 'Range: 12K/60K', '2003-09-02', 19158, '9/2/2003', NULL), (19159, 1162, '', '', '', '0000-00-00', 19159, '', NULL), (19160, 1163, '', '', '', '0000-00-00', 19160, '', NULL), (19161, 1164, '', '', '', '0000-00-00', 19161, '', NULL), (19162, 1165, '', '', '', '0000-00-00', 19162, '', NULL), (19163, 1166, '', '', '', '0000-00-00', 19163, '', NULL), (19164, 1167, '', '', '', '0000-00-00', 19164, '', NULL), (19165, 1168, '', '', '', '0000-00-00', 19165, '', NULL), (19166, 1169, '', '', '', '0000-00-00', 19166, '', NULL), (19167, 1170, '', '', '', '0000-00-00', 19167, '', NULL), (19168, 1171, '', '', '', '0000-00-00', 19168, '', NULL), (19169, 1172, '', '', '', '0000-00-00', 19169, '', NULL), (19170, 1173, '', '', '', '0000-00-00', 19170, '', NULL), (19171, 1174, '', '', '', '0000-00-00', 19171, '', NULL), (19172, 1175, '', '', '', '0000-00-00', 19172, '', NULL), (19173, 1176, '', '', '', '0000-00-00', 19173, '', NULL), (19174, 1177, '', '', '', '0000-00-00', 19174, '', NULL), (19175, 1178, '', '', '', '0000-00-00', 19175, '', NULL), (19176, 1179, '', '', '', '0000-00-00', 19176, '', NULL), (19177, 1180, '', '', '', '0000-00-00', 19177, '', NULL), (19178, 1181, '', '', '', '0000-00-00', 19178, '', NULL), (19179, 1182, '', '', '', '0000-00-00', 19179, '', NULL), (19180, 1183, '', '', '', '0000-00-00', 19180, '', NULL), (19181, 1184, '', '', '', '0000-00-00', 19181, '', NULL), (19182, 1185, '', '', '', '0000-00-00', 19182, '', NULL), (19183, 1186, '', '', '', '0000-00-00', 19183, '', NULL), (19184, 1187, '', '', '', '0000-00-00', 19184, '', NULL), (19185, 1188, '', '', '', '0000-00-00', 19185, '', NULL), (19186, 1189, '', '', '', '0000-00-00', 19186, '', NULL), (19187, 1190, '', '', '', '0000-00-00', 19187, '', NULL), (19188, 1191, 'S/N H550/9820', 'LSC Transducer Linear Strain Conversion Transducer', 'Cap:', NULL, 19188, 'New', NULL), (19189, 1192, '', '', '', '0000-00-00', 19189, '', NULL), (19190, 1193, '', '', '', '0000-00-00', 19190, '', NULL), (19191, 1194, '', '', '', '0000-00-00', 19191, '', NULL), (19192, 1195, '', '', '', '0000-00-00', 19192, '', NULL), (19193, 1196, '', '', '', '0000-00-00', 19193, '', NULL), (19194, 1197, '', '', '', '0000-00-00', 19194, '', NULL), (19195, 1198, '', '', '', '0000-00-00', 19195, '', NULL), (19196, 1199, '', '', '', '0000-00-00', 19196, '', NULL), (19197, 1200, '', '', '', '0000-00-00', 19197, '', NULL), (19198, 1201, '', '', '', '0000-00-00', 19198, '', NULL), (19199, 1202, '', '', '', '0000-00-00', 19199, '', NULL), (19200, 1203, '', '', '', '0000-00-00', 19200, '', NULL), (19201, 1204, '', '', '', '0000-00-00', 19201, '', NULL), (19202, 1205, '', '', '', '0000-00-00', 19202, '', NULL), (19203, 1206, '', '', '', '0000-00-00', 19203, '', NULL), (19204, 1207, '', '', '', '0000-00-00', 19204, '', NULL), (19205, 1208, 'S/N 032126193', 'Humboldt Digital Dial Indicator (OOS) (D-6027)', 'Range: 0.6 inch ', '2007-08-29', 19205, '8/29/2007', NULL), (19206, 1209, '', '', '', '0000-00-00', 19206, '', NULL), (19207, 1210, '', '', '', '0000-00-00', 19207, '', NULL), (19208, 1211, '', '', '', '0000-00-00', 19208, '', NULL), (19209, 1212, '', 'Includes Air Fare, Calibration, Lodging, Parts, and Labor', '', '0000-00-00', 19209, '', NULL), (19210, 1213, '', 'Includes Air Fare, Calibration, Lodging, Parts, and Labor', '', '0000-00-00', 19210, '', NULL), (19211, 1214, 'S/N 1070349', 'Weksler W-DG42P Pressure Transducer (D-5720)', 'Range: 150 PSI ', '2012-12-12', 19211, '12/12/2012', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (19212, 1215, '', '', '', '0000-00-00', 19212, '', NULL), (19213, 1216, '', '', '', '0000-00-00', 19213, '', NULL), (19214, 1217, '', '', '', '0000-00-00', 19214, '', NULL), (19215, 1218, '', '', '', '0000-00-00', 19215, '', NULL), (19216, 1219, '', '', '', '0000-00-00', 19216, '', NULL), (19217, 1220, '', '', '', '0000-00-00', 19217, '', NULL), (19218, 1221, '', '', '', '0000-00-00', 19218, '', NULL), (19219, 1222, '', '', '', '0000-00-00', 19219, '', NULL), (19220, 1223, '', '', '', '0000-00-00', 19220, '', NULL), (19221, 1224, '', '', '', '0000-00-00', 19221, '', NULL), (19222, 1225, '', '', '', '0000-00-00', 19222, '', NULL), (19223, 1226, '', '', '', '0000-00-00', 19223, '', NULL), (19224, 1227, '', '', '', '0000-00-00', 19224, '', NULL), (19225, 1228, '', '', '', '0000-00-00', 19225, '', NULL), (19226, 1229, '', '', '', '0000-00-00', 19226, '', NULL), (19227, 1230, '', '', '', '0000-00-00', 19227, '', NULL), (19228, 1231, '', '', '', '0000-00-00', 19228, '', NULL), (19229, 1232, '', '', '', '0000-00-00', 19229, '', NULL), (19230, 1233, '', '', '', '0000-00-00', 19230, '', NULL), (19231, 1234, '', '', '', '0000-00-00', 19231, '', NULL), (19232, 1235, '', '', '', '0000-00-00', 19232, '', NULL), (19233, 1236, '', '', '', '0000-00-00', 19233, '', NULL), (19234, 1237, '', '', '', '0000-00-00', 19234, '', NULL), (19235, 1238, '', '', '', '0000-00-00', 19235, '', NULL), (19236, 1239, '', '', '', '0000-00-00', 19236, '', NULL), (19237, 1240, '', '', '', '0000-00-00', 19237, '', NULL), (19238, 1241, '', '', '', '0000-00-00', 19238, '', NULL), (19239, 1242, '', '', '', '0000-00-00', 19239, '', NULL), (19240, 1243, '', '', '', '0000-00-00', 19240, '', NULL), (19241, 1244, '', '', '', '0000-00-00', 19241, '', NULL), (19242, 1245, '', ' ***ISO Requested***', '', '0000-00-00', 19242, '', NULL), (19243, 1246, '', '', '', '0000-00-00', 19243, '', NULL), (19244, 1247, '', '', '', '0000-00-00', 19244, '', NULL), (19245, 1248, '', '', '', '0000-00-00', 19245, '', NULL), (19246, 1249, '', '', '', '0000-00-00', 19246, '', NULL), (19247, 1250, '', '', '', '0000-00-00', 19247, '', NULL), (19248, 1251, '', '', '', '0000-00-00', 19248, '', NULL), (19249, 1252, '', '', '', '0000-00-00', 19249, '', NULL), (19250, 1253, '', ' ', '', '0000-00-00', 19250, '', NULL), (19251, 1254, '', '', '', '0000-00-00', 19251, '', NULL), (19252, 1255, '', '', '', '0000-00-00', 19252, '', NULL), (19253, 1256, '', '', '', '0000-00-00', 19253, '', NULL), (19254, 1257, '', '', '', '0000-00-00', 19254, '', NULL), (19255, 1258, '', '', '', '0000-00-00', 19255, '', NULL), (19256, 1259, '', '', '', '0000-00-00', 19256, '', NULL), (19257, 1260, '', '', '', '0000-00-00', 19257, '', NULL), (19258, 1261, '', '', '', '0000-00-00', 19258, '', NULL), (19259, 1262, '', '', '', '0000-00-00', 19259, '', NULL), (19260, 1263, '', '*** ISO REQUESTED ***', '', '0000-00-00', 19260, '', NULL), (19261, 1264, '', '', '', '0000-00-00', 19261, '', NULL), (19262, 1265, '', '', '', '0000-00-00', 19262, '', NULL), (19263, 1266, '', '', '', '0000-00-00', 19263, '', NULL), (19264, 1267, '', '', '', '0000-00-00', 19264, '', NULL), (19265, 1268, '', '', '', '0000-00-00', 19265, '', NULL), (19266, 1269, '', '', '', '0000-00-00', 19266, '', NULL), (19267, 1270, '', '', '', '0000-00-00', 19267, '', NULL), (19268, 1271, '', '', '', '0000-00-00', 19268, '', NULL), (19269, 1272, '', '', '', '0000-00-00', 19269, '', NULL), (19270, 1273, '', 'MUST TAKE ALL PROVING RINGS TO 1 LOCATION TO GET', 'BETTER PRICE', '0000-00-00', 19270, '', NULL), (19271, 1274, '', '', '', '0000-00-00', 19271, '', NULL), (19272, 1275, '', '', '', '0000-00-00', 19272, '', NULL), (19273, 1276, 'S/N 1000826', 'Humboldt H-4454 Proving Ring (E-4 & ManSpec)', 'Range: 10K', '2013-02-06', 19273, '2/6/2013', NULL), (19274, 1277, '', '', '', '0000-00-00', 19274, '', NULL), (19275, 1278, 'S/N 802', 'Durham Geo Pressure Transducer (D-5720)', 'Range: 150 psi', '2013-02-05', 19275, '2/5/2013', NULL), (19276, 1279, 'S/N 393945', 'Powerteam PE554 Post Tension Jack (E-4 & PCI)', 'Range: 35K (7,850 psi) (MOVED)', '2012-02-08', 19276, '2/8/2012', NULL), (19277, 1280, '', '', '', '0000-00-00', 19277, '', NULL), (19278, 1281, '', '', '', '0000-00-00', 19278, '', NULL), (19279, 1282, '', '', '', '0000-00-00', 19279, '', NULL), (19280, 1283, '', '', '', '0000-00-00', 19280, '', NULL), (19281, 1284, 'S/N 1400', 'Rainhart Series 416 Beambreaker (MOVED) (E-4)', 'Range: 10K', '2009-02-09', 19281, '2/9/2009', NULL), (19282, 1285, '', '', '', '0000-00-00', 19282, '', NULL), (19283, 1286, '', '', '', '0000-00-00', 19283, '', NULL), (19284, 1287, '', '', '', '0000-00-00', 19284, '', NULL), (19285, 1288, 'S/N 1968', ' w/Humboldt H-4454 Single Proving Ring (E-4 & Man Specs)', 'Range: 1,100 lbs ( T&C - 2 Sep. Cal\'s)', '2013-02-21', 19285, '2/21/2013', NULL), (19286, 1289, 'S/N 020401', 'ELE Tri-Flex 2 Panel (D-5720)', 'Range: 150 psi', '2013-02-12', 19286, '2/12/2013', NULL), (19287, 1290, '', '', '', '0000-00-00', 19287, '', NULL), (19288, 1291, '', '', '', '0000-00-00', 19288, '', NULL), (19289, 1292, '', '', '', '0000-00-00', 19289, '', NULL), (19290, 1293, '', '', '', '0000-00-00', 19290, '', NULL), (19291, 1294, 'S/N 1155-12-13322', 'ELE 1155B0900 Single Proving Ring (E-4 & Man Specs)', 'Range: 1K (4.5 KN) (ID# 0281)', '2013-02-12', 19291, '2/12/2013', NULL), (19292, 1295, '', '', '', '0000-00-00', 19292, '', NULL), (19293, 1296, '', '', '', '0000-00-00', 19293, '', NULL), (19294, 1297, '', '', '', '0000-00-00', 19294, '', NULL), (19295, 1298, '', '', '', '0000-00-00', 19295, '', NULL), (19296, 1299, '', ' ** Send Certs to PO Box 957**', '', '0000-00-00', 19296, '', NULL), (19297, 1300, '', '', '', '0000-00-00', 19297, '', NULL), (19298, 1301, '', 'Send Certs to PO Box 1602, Elkins WV 26241', '', '0000-00-00', 19298, '', NULL), (19299, 1302, '', 'Send Certs to PO Box 1602, Elkins WV 26241', '', '0000-00-00', 19299, '', NULL), (19300, 1303, '', '', '', '0000-00-00', 19300, '', NULL), (19301, 1304, '', '', '', '0000-00-00', 19301, '', NULL), (19302, 1305, '', '', '', '0000-00-00', 19302, '', NULL), (19303, 1306, '', '', '', '0000-00-00', 19303, '', NULL), (19304, 1307, '', '', '', '0000-00-00', 19304, '', NULL), (19305, 1308, '', '', '', '0000-00-00', 19305, '', NULL), (19306, 1309, '', '', '', '0000-00-00', 19306, '', NULL), (19307, 1310, '', '', '', '0000-00-00', 19307, '', NULL), (19308, 1311, '', '', '', '0000-00-00', 19308, '', NULL), (19309, 1312, '', '', '', '0000-00-00', 19309, '', NULL), (19310, 1313, '', '', '', '0000-00-00', 19310, '', NULL), (19311, 1314, '', '', '', '0000-00-00', 19311, '', NULL), (19312, 1315, 'S/N 2001295', 'ELE 35-1475 Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 19312, '2/16/2011', NULL), (19313, 1316, '', '', '', '0000-00-00', 19313, '', NULL), (19314, 1317, '', '', '', '0000-00-00', 19314, '', NULL), (19315, 1318, '', '', '', '0000-00-00', 19315, '', NULL), (19316, 1319, '', '', '', '0000-00-00', 19316, '', NULL), (19317, 1320, '', '', '', '0000-00-00', 19317, '', NULL), (19318, 1321, '', '', '', '0000-00-00', 19318, '', NULL), (19319, 1322, '', '', '', '0000-00-00', 19319, '', NULL), (19320, 1323, '', '', '', '0000-00-00', 19320, '', NULL), (19321, 1324, '', '', '', '0000-00-00', 19321, '', NULL), (19322, 1325, 'S/N 159819', ' with TO Extensometer Model S-1000-2 (E-83)', '2\" GL, Range 10/25/50/100%, ID#25-EXT12', '2005-03-30', 19322, '3/30/2005', NULL), (19323, 1326, '', '', '', '0000-00-00', 19323, '', NULL), (19324, 1327, '', '', '', '0000-00-00', 19324, '', NULL), (19325, 1328, '', '', '', '0000-00-00', 19325, '', NULL), (19326, 1329, '', '', '', '0000-00-00', 19326, '', NULL), (19327, 1330, '', '', '', '0000-00-00', 19327, '', NULL), (19328, 1331, '', '', '', '0000-00-00', 19328, '', NULL), (19329, 1332, '', '', '', '0000-00-00', 19329, '', NULL), (19330, 1333, '', '', '', '0000-00-00', 19330, '', NULL), (19331, 1334, '', '', '', '0000-00-00', 19331, '', NULL), (19332, 1335, '', '', '', '0000-00-00', 19332, '', NULL), (19333, 1336, '', '', '', '0000-00-00', 19333, '', NULL), (19334, 1337, '', '', '', '0000-00-00', 19334, '', NULL), (19335, 1338, '', '', '', '0000-00-00', 19335, '', NULL), (19336, 1339, '', '', '', '0000-00-00', 19336, '', NULL), (19337, 1340, '', '', '', '0000-00-00', 19337, '', NULL), (19338, 1341, '', '', '', '0000-00-00', 19338, '', NULL), (19339, 1342, '', '', '', '0000-00-00', 19339, '', NULL), (19340, 1343, '', '', '', '0000-00-00', 19340, '', NULL), (19341, 1344, '', '', '', '0000-00-00', 19341, '', NULL), (19342, 1345, '', '', '', '0000-00-00', 19342, '', NULL), (19343, 1346, '', '', '', '0000-00-00', 19343, '', NULL), (19344, 1347, '', '', '', '0000-00-00', 19344, '', NULL), (19345, 1348, '', '', '', '0000-00-00', 19345, '', NULL), (19346, 1349, '', '', '', '0000-00-00', 19346, '', NULL), (19347, 1350, '', '', '', '0000-00-00', 19347, '', NULL), (19348, 1351, '', '', '', '0000-00-00', 19348, '', NULL), (19349, 1352, '', '', '', '0000-00-00', 19349, '', NULL), (19350, 1353, '', '', '', '0000-00-00', 19350, '', NULL), (19351, 1354, '', '', '', '0000-00-00', 19351, '', NULL), (19352, 1355, '', '', '', '0000-00-00', 19352, '', NULL), (19353, 1356, '', '', '', '0000-00-00', 19353, '', NULL), (19354, 1357, '', '', '', '0000-00-00', 19354, '', NULL), (19355, 1358, '', '', '', '0000-00-00', 19355, '', NULL), (19356, 1359, '', '', '', '0000-00-00', 19356, '', NULL), (19357, 1360, '', '', '', '0000-00-00', 19357, '', NULL), (19358, 1361, '', '', '', '0000-00-00', 19358, '', NULL), (19359, 1362, '', '', '', '0000-00-00', 19359, '', NULL), (19360, 1363, '', '', '', '0000-00-00', 19360, '', NULL), (19361, 1364, '', '', '', '0000-00-00', 19361, '', NULL), (19362, 1365, '', '', '', '0000-00-00', 19362, '', NULL), (19363, 1366, 'S/N ', ' w/ Extensometer (E-83)', 'Range: ', NULL, 19363, 'New', NULL), (19364, 1367, '', '', '', '0000-00-00', 19364, '', NULL), (19365, 1368, '', '', '', '0000-00-00', 19365, '', NULL), (19366, 1369, '', '', '', '0000-00-00', 19366, '', NULL), (19367, 1370, '', '', '', '0000-00-00', 19367, '', NULL), (19368, 1371, '', '', '', '0000-00-00', 19368, '', NULL), (19369, 1372, '', '', '', '0000-00-00', 19369, '', NULL), (19370, 1373, '', '*** Paying with Credit Card ***', '', '0000-00-00', 19370, '', NULL), (19371, 1374, '', '', '', '0000-00-00', 19371, '', NULL), (19372, 1375, '', '', '', '0000-00-00', 19372, '', NULL), (19373, 1376, '', '', '', '0000-00-00', 19373, '', NULL), (19374, 1377, '', '', '', '0000-00-00', 19374, '', NULL), (19375, 1378, '', '', '', '0000-00-00', 19375, '', NULL), (19376, 1379, '', '', '', '0000-00-00', 19376, '', NULL), (19377, 1380, '', '', '', '0000-00-00', 19377, '', NULL), (19378, 1381, '', '', '', '0000-00-00', 19378, '', NULL), (19379, 1382, '', '', '', '0000-00-00', 19379, '', NULL), (19380, 1383, '', '', '', '0000-00-00', 19380, '', NULL), (19381, 1384, '', '', '', '0000-00-00', 19381, '', NULL), (19382, 1385, '', '', '', '0000-00-00', 19382, '', NULL), (19383, 1386, 'S/N 00552392', 'Eilon Engineering RON 2125 S-0025 Load Cell (ManSp & 0.1% FS)', 'Cap: 1/4 Tons', NULL, 19383, 'New', NULL), (19384, 1387, 'S/N 5023579/20', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Tons (50,000 kg)', '2005-05-09', 19384, '5/9/2005', NULL), (19385, 1388, '', '', '', '0000-00-00', 19385, '', NULL), (19386, 1389, '', '', '', '0000-00-00', 19386, '', NULL), (19387, 1390, 'S/N 110172-6', 'Wykeham Farrance Mdl. 24251 Deflection Frame #3/Channel 19 ', 'Range: 1/4 TSF to 16 TSF ', '2009-01-21', 19387, '1/21/2009', NULL), (19388, 1391, '', '', '', '0000-00-00', 19388, '', NULL), (19389, 1392, 'S/N 38733/ NC#9', 'HCS Model LC-40 Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2009-01-26', 19389, '1/26/2009', NULL), (19390, 1393, 'S/N 389/1920', 'Brainard-Kilman Model E-214 Load Cell w/ E-400 Digital (E-4)', 'Range: 200 lbs to 6K', '2013-01-08', 19390, '1/8/2013', NULL), (19391, 1394, '', '', '', '0000-00-00', 19391, '', NULL), (19392, 1395, '', '', '', '0000-00-00', 19392, '', NULL), (19393, 1396, '', '', '', '0000-00-00', 19393, '', NULL), (19394, 1397, '', '*** ISO Requested***', '', '0000-00-00', 19394, '', NULL), (19395, 1398, '', '*** ISO Requested ***', '', '0000-00-00', 19395, '', NULL), (19396, 1399, '', '', '', '0000-00-00', 19396, '', NULL), (19397, 1400, '', '', '', '0000-00-00', 19397, '', NULL), (19398, 1401, 'S/N 93447 / NC#23', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K ', '2012-01-18', 19398, '1/18/2012', NULL), (19399, 1402, '', '', '', '0000-00-00', 19399, '', NULL), (19400, 1403, 'S/N 3609', ' w/United EZ 2-2 Extensometer - Channel #0 ', 'Range: 0.02 in/in (2\" GL) (E-83)', '2013-01-21', 19400, '1/21/2013', NULL), (19401, 1404, 'S/N AE608478', 'Adam CBK70a Equipment Scale (ID# Q-3245) (C-898)', 'Range: 70 lbs', '2013-01-21', 19401, '1/21/2013', NULL), (19402, 1405, 'S/N AEY4027', 'Adam ADK-20 Scale (ID# Q-2470) (E-898) ', 'Range: 0.2 Kg to 20 Kg', '2009-01-28', 19402, '1/28/2009', NULL), (19403, 1406, '', '', '', '0000-00-00', 19403, '', NULL), (19404, 1407, '', '', '', '0000-00-00', 19404, '', NULL), (19405, 1408, 'S/N 05054277/10', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2006-05-05', 19405, '5/5/2006', NULL), (19406, 1409, '', '', '', '0000-00-00', 19406, '', NULL), (19407, 1410, '', '', '', '0000-00-00', 19407, '', NULL), (19408, 1411, '', '', '', '0000-00-00', 19408, '', NULL), (19409, 1412, '', '', '', '0000-00-00', 19409, '', NULL), (19410, 1413, '', '', '', '0000-00-00', 19410, '', NULL), (19411, 1414, '', '', '', '0000-00-00', 19411, '', NULL), (19412, 1415, '', '', '', '0000-00-00', 19412, '', NULL), (19413, 1416, '', '', '', '0000-00-00', 19413, '', NULL), (19414, 1417, '', '', '', '0000-00-00', 19414, '', NULL), (19415, 1418, '', '', '', '0000-00-00', 19415, '', NULL), (19416, 1419, '', '', '', '0000-00-00', 19416, '', NULL), (19417, 1420, '', '', '', '0000-00-00', 19417, '', NULL), (19418, 1421, '', '', '', '0000-00-00', 19418, '', NULL), (19419, 1422, '', '', '', '0000-00-00', 19419, '', NULL), (19420, 1423, '', '', '', '0000-00-00', 19420, '', NULL), (19421, 1424, '', '', '', '0000-00-00', 19421, '', NULL), (19422, 1425, '', '', '', '0000-00-00', 19422, '', NULL), (19423, 1426, '', '', '', '0000-00-00', 19423, '', NULL), (19424, 1427, '', '', '', '0000-00-00', 19424, '', NULL), (19425, 1428, '', '', '', '0000-00-00', 19425, '', NULL), (19426, 1429, '', '', '', '0000-00-00', 19426, '', NULL), (19427, 1430, '', '', '', '0000-00-00', 19427, '', NULL), (19428, 1431, '', '', '', '0000-00-00', 19428, '', NULL), (19429, 1432, '', '', '', '0000-00-00', 19429, '', NULL), (19430, 1433, 'S/N 09130', 'Simms P-3000 Prestress Jack -Jack #2 (DAMAGED)', 'Range: 4K (E-4 & PCI)', '2006-02-01', 19430, '2/1/2006', NULL), (19431, 1434, 'S/N 010307', 'Strainsense-Model-Conamp 20B Load Cell OUT OF SERVICE ', 'Range: 50K', '2004-05-21', 19431, '5/21/2004', NULL), (19432, 1435, '', '', '', '0000-00-00', 19432, '', NULL), (19433, 1436, '', '', '', '0000-00-00', 19433, '', NULL), (19434, 1437, '', '', '', '0000-00-00', 19434, '', NULL), (19435, 1438, '', '', '', '0000-00-00', 19435, '', NULL), (19436, 1439, '', '', '', '0000-00-00', 19436, '', NULL), (19437, 1440, '', '', '', '0000-00-00', 19437, '', NULL), (19438, 1441, '', '', '', '0000-00-00', 19438, '', NULL), (19439, 1442, '', '', '', '0000-00-00', 19439, '', NULL), (19440, 1443, '', '', '', '0000-00-00', 19440, '', NULL), (19441, 1444, 'S/N 944', 'Brainard-Kilman Pressure Transducer Model E-124 (Channel #28)', 'Range: 100 PSI (D5720-95) ', '2000-01-18', 19441, '1/18/2000', NULL), (19442, 1445, '', '', '', '0000-00-00', 19442, '', NULL), (19443, 1446, 'S/N 001', 'PSI Pressure Gauge (D-5720)', 'Range: 150 psi', '2005-02-21', 19443, '2/21/2005', NULL), (19444, 1447, 'S/N G6520', 'ELE Triflex 2 Pressure Transducer (D-6027)', 'Range: 150 PSI', '2009-01-22', 19444, '1/22/2009', NULL), (19445, 1448, '', '', '', '0000-00-00', 19445, '', NULL), (19446, 1449, '', '', '', '0000-00-00', 19446, '', NULL), (19447, 1450, '', '', '', '0000-00-00', 19447, '', NULL), (19448, 1451, '', '', '', '0000-00-00', 19448, '', NULL), (19449, 1452, '', '', '', '0000-00-00', 19449, '', NULL), (19450, 1453, '', '', '', '0000-00-00', 19450, '', NULL), (19451, 1454, 'S/N 20410051', 'Com-Ten Toploader Model USB2A2 95 Series (E-4)', 'Range:', NULL, 19451, 'New', NULL), (19452, 1455, 'S/N 1,2,3,4', 'Elgood Mayo Prestress Jack (OOS) (E-4 & PCI)', 'Range: 8,000 PSI/400K Each', '2008-01-29', 19452, '1/29/2008', NULL), (19453, 1456, '', '', '', '0000-00-00', 19453, '', NULL), (19454, 1457, '', '', '', '0000-00-00', 19454, '', NULL), (19455, 1458, '', '', '', '0000-00-00', 19455, '', NULL), (19456, 1459, '', '', '', '0000-00-00', 19456, '', NULL), (19457, 1460, '', '', '', '0000-00-00', 19457, '', NULL), (19458, 1461, 'S/N MG4199', ' with Forney LVDT Vertical (D-6027)', 'Range: 10mm', '2005-02-21', 19458, '2/21/2005', NULL), (19459, 1462, '', '', '', '0000-00-00', 19459, '', NULL), (19460, 1463, '', '', '', '0000-00-00', 19460, '', NULL), (19461, 1464, '', '', '', '0000-00-00', 19461, '', NULL), (19462, 1465, '', '', '', '0000-00-00', 19462, '', NULL), (19463, 1466, '', '', '', '0000-00-00', 19463, '', NULL), (19464, 1467, '', '', '', '0000-00-00', 19464, '', NULL), (19465, 1468, '', '', '', '0000-00-00', 19465, '', NULL), (19466, 1469, '', '', '', '0000-00-00', 19466, '', NULL), (19467, 1470, '', '', '', '0000-00-00', 19467, '', NULL), (19468, 1471, '', '', '', '0000-00-00', 19468, '', NULL), (19469, 1472, '', '', '', '0000-00-00', 19469, '', NULL), (19470, 1473, '', '', '', '0000-00-00', 19470, '', NULL), (19471, 1474, '', '', '', '0000-00-00', 19471, '', NULL), (19472, 1475, '', '', '', '0000-00-00', 19472, '', NULL), (19473, 1476, '', '', '', '0000-00-00', 19473, '', NULL), (19474, 1477, '', '', '', '0000-00-00', 19474, '', NULL), (19475, 1478, '', '', '', '0000-00-00', 19475, '', NULL), (19476, 1479, '', '', '', '0000-00-00', 19476, '', NULL), (19477, 1480, '', '', '', '0000-00-00', 19477, '', NULL), (19478, 1481, '', '', '', '0000-00-00', 19478, '', NULL), (19479, 1482, '', '', '', '0000-00-00', 19479, '', NULL), (19480, 1483, '', '', '', '0000-00-00', 19480, '', NULL), (19481, 1484, '', '', '', '0000-00-00', 19481, '', NULL), (19482, 1485, '', '', '', '0000-00-00', 19482, '', NULL), (19483, 1486, 'S/N 5996', 'Soiltest Single Proving Ring (E4-03) (SOLD)', 'Range: 2,000 lbs', '2005-12-19', 19483, '12/19/2005', NULL), (19484, 1487, '', '', '', '0000-00-00', 19484, '', NULL), (19485, 1488, '', '', '', '0000-00-00', 19485, '', NULL), (19486, 1489, '', '', '', '0000-00-00', 19486, '', NULL), (19487, 1490, '', '', '', '0000-00-00', 19487, '', NULL), (19488, 1491, '', '', '', '0000-00-00', 19488, '', NULL), (19489, 1492, '', '', '', '0000-00-00', 19489, '', NULL), (19490, 1493, '', '', '', '0000-00-00', 19490, '', NULL), (19491, 1494, '', '', '', '0000-00-00', 19491, '', NULL), (19492, 1495, '', '', '', '0000-00-00', 19492, '', NULL), (19493, 1496, '', '', '', '0000-00-00', 19493, '', NULL), (19494, 1497, '', '', '', '0000-00-00', 19494, '', NULL), (19495, 1498, '', '', '', '0000-00-00', 19495, '', NULL), (19496, 1499, '', '', '', '0000-00-00', 19496, '', NULL), (19497, 1500, '', '', '', '0000-00-00', 19497, '', NULL), (19498, 1501, '', '', '', '0000-00-00', 19498, '', NULL), (19499, 1502, '', '', '', '0000-00-00', 19499, '', NULL), (19500, 1503, '', '', '', '0000-00-00', 19500, '', NULL), (19501, 1504, '', '***SPECIAL SET-UP NEEDED, REFER TO FILE FOR FUTURE', 'REFERENCE S/N 111405***', '0000-00-00', 19501, '', NULL), (19502, 1505, '', '', '', '0000-00-00', 19502, '', NULL), (19503, 1506, '', '', '', '0000-00-00', 19503, '', NULL), (19504, 1507, '', '', '', '0000-00-00', 19504, '', NULL), (19505, 1508, '', '', '', '0000-00-00', 19505, '', NULL), (19506, 1509, '', '', '', '0000-00-00', 19506, '', NULL), (19507, 1510, '', '', '', '0000-00-00', 19507, '', NULL), (19508, 1511, '', '', '', '0000-00-00', 19508, '', NULL), (19509, 1512, '', '', '', '0000-00-00', 19509, '', NULL), (19510, 1513, '', '', '', '0000-00-00', 19510, '', NULL), (19511, 1514, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 19511, '', NULL), (19512, 1515, '', '***Make arrangements to have keys for St. Croix left at ', '', '0000-00-00', 19512, '', NULL), (19513, 1516, '', 'the Seaplane Shuttle at St. Thomas to be picked up***', '', '0000-00-00', 19513, '', NULL), (19514, 1517, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 19514, '', NULL), (19515, 1518, '', '', '', '0000-00-00', 19515, '', NULL), (19516, 1519, '', '', '', '0000-00-00', 19516, '', NULL), (19517, 1520, '', '', '', '0000-00-00', 19517, '', NULL), (19518, 1521, '', '', '', '0000-00-00', 19518, '', NULL), (19519, 1522, '', '407-251-1150 Fax ', '', '0000-00-00', 19519, '', NULL), (19520, 1523, '', ' ***Need Work Permit to get on Island***', '', '0000-00-00', 19520, '', NULL), (19521, 1524, '', ' ***Need to take Ferry***', '', '0000-00-00', 19521, '', NULL), (19522, 1525, '', '', '', '0000-00-00', 19522, '', NULL), (19523, 1526, '', '', '', '0000-00-00', 19523, '', NULL), (19524, 1527, '', '', '', '0000-00-00', 19524, '', NULL), (19525, 1528, '', '', '', '0000-00-00', 19525, '', NULL), (19526, 1529, '', '', '', '0000-00-00', 19526, '', NULL), (19527, 1530, '', '', '', '0000-00-00', 19527, '', NULL), (19528, 1531, '', '', '', '0000-00-00', 19528, '', NULL), (19529, 1532, 'S/N 107093', 'Geotest Mdl. 5840 Multi Loader w/ S-Type Load Cell (E-4)', 'Range: 5K (moved)', '2012-06-11', 19529, '6/11/2012', NULL), (19530, 1533, '', '', '', '0000-00-00', 19530, '', NULL), (19531, 1534, 'S/N PS-2187', 'Geotac Pressure Transducer (D-5720)', 'Range: 150 PSI', '2013-06-04', 19531, '6/4/2013', NULL), (19532, 1535, 'S/N M080300545', 'Loadstar Sensors Model iLoad-U Load Cell (E-4)', 'Range: 2.5K ', '2010-06-09', 19532, '6/9/2010', NULL), (19533, 1536, 'S/N 083169973', 'Humboldt BG2110-0-16 Dial Indicator (D-6027)', 'Range: 1 inches', '2010-06-08', 19533, '6/8/2010', NULL), (19534, 1537, '', '', '', '0000-00-00', 19534, '', NULL), (19535, 1538, '', '', '', '0000-00-00', 19535, '', NULL), (19536, 1539, '', '', '', '0000-00-00', 19536, '', NULL), (19537, 1540, 'S/N 41260595', 'Acculab VIC-10Kg Scale (E-898)', 'Range: 10,000 Grams ', '2013-06-04', 19537, '6/4/2013', NULL), (19538, 1541, '', '', '', '0000-00-00', 19538, '', NULL), (19539, 1542, '', '', '', '0000-00-00', 19539, '', NULL), (19540, 1543, '', '', '', '0000-00-00', 19540, '', NULL), (19541, 1544, '', '', '', '0000-00-00', 19541, '', NULL), (19542, 1545, '', '', '', '0000-00-00', 19542, '', NULL), (19543, 1546, '', '', '', '0000-00-00', 19543, '', NULL), (19544, 1547, 'S/N', 'AND FG-150K Scale (E-898)', 'Range: 300 lbs ', NULL, 19544, 'New', NULL), (19545, 1548, '', 'Send Certs to Job Site Address', '', '0000-00-00', 19545, '', NULL), (19546, 1549, '', '', '', '0000-00-00', 19546, '', NULL), (19547, 1550, '', 'Send copy of invoice to ap.invoice@hccorp.com', '', '0000-00-00', 19547, '', NULL), (19548, 1551, '', '', '', '0000-00-00', 19548, '', NULL), (19549, 1552, '', '', '', '0000-00-00', 19549, '', NULL), (19550, 1553, '', '', '', '0000-00-00', 19550, '', NULL), (19551, 1554, '', '***Certification needs Recalibration Date, Letter requested this', '', '0000-00-00', 19551, '', NULL), (19552, 1555, '', '', '', '0000-00-00', 19552, '', NULL), (19553, 1556, 'S/N 99220-96001', 'Tinius Olsen Super L CS-100-3 Digital Compression Machine', 'Range: 3K to 400K (OOS) (E-4)', '2007-06-19', 19553, '6/19/2007', NULL), (19554, 1557, '', '', '', '0000-00-00', 19554, '', NULL), (19555, 1558, '', '', '', '0000-00-00', 19555, '', NULL), (19556, 1559, '', '', '', '0000-00-00', 19556, '', NULL), (19557, 1560, '', '', '', '0000-00-00', 19557, '', NULL), (19558, 1561, 'S/N 1641', 'Brainard Killman Mdl. S-500 Triaxial Panel w/ Dig. S/N 1615 ', 'Range: 150 psi (D-5027)', '2013-06-19', 19558, '6/19/2013', NULL), (19559, 1562, 'S/N 476', 'Braiard Kilman E-114 w/ Dig. S/N E-400-756 Pressure Panel ', 'Range: 150 psi ', '2013-06-19', 19559, '6/19/2013', NULL), (19560, 1563, '', '', '', '0000-00-00', 19560, '', NULL), (19561, 1564, '', '', '', '0000-00-00', 19561, '', NULL), (19562, 1565, '', '', '', '0000-00-00', 19562, '', NULL), (19563, 1566, '', '', '', '0000-00-00', 19563, '', NULL), (19564, 1567, '', '', '', '0000-00-00', 19564, '', NULL), (19565, 1568, '', '', '', '0000-00-00', 19565, '', NULL), (19566, 1569, '', '', '', '0000-00-00', 19566, '', NULL), (19567, 1570, '', '', '', '0000-00-00', 19567, '', NULL), (19568, 1571, '', '', '', '0000-00-00', 19568, '', NULL), (19569, 1572, '', '', '', '0000-00-00', 19569, '', NULL), (19570, 1573, '', '', '', '0000-00-00', 19570, '', NULL), (19571, 1574, '', '', '', '0000-00-00', 19571, '', NULL), (19572, 1575, '', '', '', '0000-00-00', 19572, '', NULL), (19573, 1576, '', '', '', '0000-00-00', 19573, '', NULL), (19574, 1577, '', '', '', '0000-00-00', 19574, '', NULL), (19575, 1578, '', '', '', '0000-00-00', 19575, '', NULL), (19576, 1579, '', '', '', '0000-00-00', 19576, '', NULL), (19577, 1580, '', '', '', '0000-00-00', 19577, '', NULL), (19578, 1581, '', '', '', '0000-00-00', 19578, '', NULL), (19579, 1582, '', '', '', '0000-00-00', 19579, '', NULL), (19580, 1583, '', '', '', '0000-00-00', 19580, '', NULL), (19581, 1584, '', '', '', '0000-00-00', 19581, '', NULL), (19582, 1585, '', '', '', '0000-00-00', 19582, '', NULL), (19583, 1586, '', '', '', '0000-00-00', 19583, '', NULL), (19584, 1587, '', '', '', '0000-00-00', 19584, '', NULL), (19585, 1588, '', '', '', '0000-00-00', 19585, '', NULL), (19586, 1589, '', '', '', '0000-00-00', 19586, '', NULL), (19587, 1590, '', '', '', '0000-00-00', 19587, '', NULL), (19588, 1591, '', '', '', '0000-00-00', 19588, '', NULL), (19589, 1592, '', '', '', '0000-00-00', 19589, '', NULL), (19590, 1593, '', '', '', '0000-00-00', 19590, '', NULL), (19591, 1594, '', '', '', '0000-00-00', 19591, '', NULL), (19592, 1595, '', '', '', '0000-00-00', 19592, '', NULL), (19593, 1596, '', '', '', '0000-00-00', 19593, '', NULL), (19594, 1597, '', '', '', '0000-00-00', 19594, '', NULL), (19595, 1598, '', '', '', '0000-00-00', 19595, '', NULL), (19596, 1599, '', '', '', '0000-00-00', 19596, '', NULL), (19597, 1600, '', '', '', '0000-00-00', 19597, '', NULL), (19598, 1601, '', '', '', '0000-00-00', 19598, '', NULL), (19599, 1602, '', '', '', '0000-00-00', 19599, '', NULL), (19600, 1603, '', '', '', '0000-00-00', 19600, '', NULL), (19601, 1604, '', '', '', '0000-00-00', 19601, '', NULL), (19602, 1605, 'S/N 88752A', ' with 2,000 lb. cell (T & C)', 'Range 10 lb. to 2,000 lb.', '0000-00-00', 19602, '', NULL), (19603, 1606, '', '', '', '0000-00-00', 19603, '', NULL), (19604, 1607, '', '', '', '0000-00-00', 19604, '', NULL), (19605, 1608, '', '', '', '0000-00-00', 19605, '', NULL), (19606, 1609, '', '', '', '0000-00-00', 19606, '', NULL), (19607, 1610, '', '', '', '0000-00-00', 19607, '', NULL), (19608, 1611, '', '', '', '0000-00-00', 19608, '', NULL), (19609, 1612, '', '', '', '0000-00-00', 19609, '', NULL), (19610, 1613, '', '', '', '0000-00-00', 19610, '', NULL), (19611, 1614, '', '', '', '0000-00-00', 19611, '', NULL), (19612, 1615, '', '', '', '0000-00-00', 19612, '', NULL), (19613, 1616, '', '', '', '0000-00-00', 19613, '', NULL), (19614, 1617, 'S/N A2396C', 'Enerpac Load Cell TS-5 (Out of Service) ', 'Cap: 600 psi', '1996-10-31', 19614, '10/31/1996', NULL), (19615, 1618, '', '', '', '0000-00-00', 19615, '', NULL), (19616, 1619, '', '***ISO Requested***', '', '0000-00-00', 19616, '', NULL), (19617, 1620, '', '', '', '0000-00-00', 19617, '', NULL), (19618, 1621, '', '', '', '0000-00-00', 19618, '', NULL), (19619, 1622, '', '', '', '0000-00-00', 19619, '', NULL), (19620, 1623, '', '', '', '0000-00-00', 19620, '', NULL), (19621, 1624, '', '', '', '0000-00-00', 19621, '', NULL), (19622, 1625, '', '', '', '0000-00-00', 19622, '', NULL), (19623, 1626, '', '', '', '0000-00-00', 19623, '', NULL), (19624, 1627, '', '', '', '0000-00-00', 19624, '', NULL), (19625, 1628, '', '', '', '0000-00-00', 19625, '', NULL), (19626, 1629, '', '', '', '0000-00-00', 19626, '', NULL), (19627, 1630, '', '', '', '0000-00-00', 19627, '', NULL), (19628, 1631, '', '', '', '0000-00-00', 19628, '', NULL), (19629, 1632, '', '', '', '0000-00-00', 19629, '', NULL), (19630, 1633, '', '', '', '0000-00-00', 19630, '', NULL), (19631, 1634, '', '', '', '0000-00-00', 19631, '', NULL), (19632, 1635, '', '', '', '0000-00-00', 19632, '', NULL), (19633, 1636, '', '', '', '0000-00-00', 19633, '', NULL), (19634, 1637, '', '', '', '0000-00-00', 19634, '', NULL), (19635, 1638, '', '', '', '0000-00-00', 19635, '', NULL), (19636, 1639, '', '', '', '0000-00-00', 19636, '', NULL), (19637, 1640, '', ' *graph not working-could not calibrate', '', '0000-00-00', 19637, '', NULL), (19638, 1641, '', '', '', '0000-00-00', 19638, '', NULL), (19639, 1642, 'S/N 25198', 'ELE/Soiltest Proving Ring PR-20 (E-4)', 'Range: 2,000 lbs', '2004-06-11', 19639, '6/11/2004', NULL), (19640, 1643, '', '', '', '0000-00-00', 19640, '', NULL), (19641, 1644, '', '', '', '0000-00-00', 19641, '', NULL), (19642, 1645, '', '', '', '0000-00-00', 19642, '', NULL), (19643, 1646, '', '', '', '0000-00-00', 19643, '', NULL), (19644, 1647, '', '', '', '0000-00-00', 19644, '', NULL), (19645, 1648, '', '', '', '0000-00-00', 19645, '', NULL), (19646, 1649, '', '', '', '0000-00-00', 19646, '', NULL), (19647, 1650, 'S/N 1898', 'Pine Instruments Single Proving Ring (E-4 & Man Specs)', 'Cap: 5K ', '2007-12-03', 19647, '12/3/2007', NULL), (19648, 1651, '', '', '', '0000-00-00', 19648, '', NULL), (19649, 1652, 'S/N 1079', 'Humboldt Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 10K Plant #5', '2013-06-14', 19649, '6/14/2013', NULL), (19650, 1653, 'S/N 0212', 'ELE Marshall Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K Plant #1', '2012-06-15', 19650, '6/15/2012', NULL), (19651, 1654, '', '', '', '0000-00-00', 19651, '', NULL), (19652, 1655, 'S/N 25257', 'Soiltest Consolidation Double Proving Ring (E-4 & Man Specs)', 'Range: 1K', '2009-12-16', 19652, '12/16/2009', NULL), (19653, 1656, '', '1.16 degrees', '', '0000-00-00', 19653, '', NULL), (19654, 1657, 'S/N 12061', 'Soiltest Unconfined Single Proving Ring OOS (E-4 & Man Specs)', 'Range: 2K', '2011-05-23', 19654, '5/23/2011', NULL), (19655, 1658, '', '', '', '0000-00-00', 19655, '', NULL), (19656, 1659, '', '', '', '0000-00-00', 19656, '', NULL), (19657, 1660, '', '', '', '0000-00-00', 19657, '', NULL), (19658, 1661, '', '', '', '0000-00-00', 19658, '', NULL), (19659, 1662, 'S/N 0046', 'ELE Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K (OOS) ', '2005-12-15', 19659, '12/15/2005', NULL), (19660, 1663, '', '', '', '0000-00-00', 19660, '', NULL), (19661, 1664, '', '', '', '0000-00-00', 19661, '', NULL), (19662, 1665, '', '', '', '0000-00-00', 19662, '', NULL), (19663, 1666, '', '', '', '0000-00-00', 19663, '', NULL), (19664, 1667, '', '', '', '0000-00-00', 19664, '', NULL), (19665, 1668, 'S/N 03310 (S/N 2177)', 'Artech S type Load Cell Model 20210-5K w/ E-400 digital (E-4)', 'Range: 5K (OOS)', '2006-12-08', 19665, '12/8/2006', NULL), (19666, 1669, '', '', '', '0000-00-00', 19666, '', NULL), (19667, 1670, 'S/N 1155-13-13569', 'ELE Single Proving Ring (OOS) (E-4)', 'Capacity: 1K', '2004-06-11', 19667, '6/11/2004', NULL), (19668, 1671, '', ' ***ISO Requested***', '', '0000-00-00', 19668, '', NULL), (19669, 1672, '', '', '', '0000-00-00', 19669, '', NULL), (19670, 1673, '', '', '', '0000-00-00', 19670, '', NULL), (19671, 1674, '', '', '', '0000-00-00', 19671, '', NULL), (19672, 1675, 'S/N 2109', 'Spare 2% Gauge w/ELE S/N 0204 (OUT OF SERVICE) ', 'Range: 250K', '2006-08-11', 19672, '8/11/2006', NULL), (19673, 1676, '', '', '', '0000-00-00', 19673, '', NULL), (19674, 1677, '', '', '', '0000-00-00', 19674, '', NULL), (19675, 1678, '', '', '', '0000-00-00', 19675, '', NULL), (19676, 1679, '', '', '', '0000-00-00', 19676, '', NULL), (19677, 1680, '', '', '', '0000-00-00', 19677, '', NULL), (19678, 1681, '', '', '', '0000-00-00', 19678, '', NULL), (19679, 1682, '', '', '', '0000-00-00', 19679, '', NULL), (19680, 1683, '', '', '', '0000-00-00', 19680, '', NULL), (19681, 1684, '', '', '', '0000-00-00', 19681, '', NULL), (19682, 1685, '', '', '', '0000-00-00', 19682, '', NULL), (19683, 1686, '', '', '', '0000-00-00', 19683, '', NULL), (19684, 1687, '', '', '', '0000-00-00', 19684, '', NULL), (19685, 1688, '', '', '', '0000-00-00', 19685, '', NULL), (19686, 1689, '', '', '', '0000-00-00', 19686, '', NULL), (19687, 1690, '', '', '', '0000-00-00', 19687, '', NULL), (19688, 1691, '', '', '', '0000-00-00', 19688, '', NULL), (19689, 1692, '', '', '', '0000-00-00', 19689, '', NULL), (19690, 1693, '', '', '', '0000-00-00', 19690, '', NULL), (19691, 1694, '', '', '', '0000-00-00', 19691, '', NULL), (19692, 1695, '', '', '', '0000-00-00', 19692, '', NULL), (19693, 1696, '', '', '', '0000-00-00', 19693, '', NULL), (19694, 1697, '', '', '', '0000-00-00', 19694, '', NULL), (19695, 1698, '', '', '', '0000-00-00', 19695, '', NULL), (19696, 1699, '', '', '', '0000-00-00', 19696, '', NULL), (19697, 1700, '', '', '', '0000-00-00', 19697, '', NULL), (19698, 1701, '', '', '', '0000-00-00', 19698, '', NULL), (19699, 1702, 'S/N 900', 'Rainhart Beam Breaker (E-4 & Man Specs)', 'Range: 12K ', '2013-03-14', 19699, '3/14/2013', NULL), (19700, 1703, '', '*** High RF Producing Facility next to this place, could have', 'interference probelms***', '0000-00-00', 19700, '', NULL), (19701, 1704, '', '', '', '0000-00-00', 19701, '', NULL), (19702, 1705, 'S/N 1-1510', 'Karol Warner Conbel Vertical Displacement LVDT (D-6027)', 'Range: 0.4 inch', '2013-03-06', 19702, '3/6/2013', NULL), (19703, 1706, '', '', '', '0000-00-00', 19703, '', NULL), (19704, 1707, '', '', '', '0000-00-00', 19704, '', NULL), (19705, 1708, '', 'and you are close to applying force', '', '0000-00-00', 19705, '', NULL), (19706, 1709, '', '', '', '0000-00-00', 19706, '', NULL), (19707, 1710, 'S/N 2336X60', ' LoTes Model LT-10 Digital Compression Machine (MOVED) (E-4)', 'Cap: 200 lbs. to 10,000 lbs.', '2007-04-02', 19707, '4/2/2007', NULL), (19708, 1711, '', '', '', '0000-00-00', 19708, '', NULL), (19709, 1712, '', 'Call Rob when coming 717-349-2412', '', '0000-00-00', 19709, '', NULL), (19710, 1713, '', '', '', '0000-00-00', 19710, '', NULL), (19711, 1714, '', '', '', '0000-00-00', 19711, '', NULL), (19712, 1715, '', '', '', '0000-00-00', 19712, '', NULL), (19713, 1716, '', '', '', '0000-00-00', 19713, '', NULL), (19714, 1717, '', '', '', '0000-00-00', 19714, '', NULL), (19715, 1718, '', ' ***ISO Requested***', '', '0000-00-00', 19715, '', NULL), (19716, 1719, '', 'MUST RECEIVE WRITTEN REQUISITION PRIOR TO DATE OF ', 'SERVICE ***ISO REQUESTED***', '0000-00-00', 19716, '', NULL), (19717, 1720, '', '', '', '0000-00-00', 19717, '', NULL), (19718, 1721, 'S/N 9110-26E', 'Detecto Electronic Model EF-218-S6S Scale (E-898) (OOS)', 'Cap: 200 lbs', '2012-03-27', 19718, '3/27/2012', NULL), (19719, 1722, '', '', '', '0000-00-00', 19719, '', NULL), (19720, 1723, '', '', '', '0000-00-00', 19720, '', NULL), (19721, 1724, '', '', '', '0000-00-00', 19721, '', NULL), (19722, 1725, '', ' ***ISO Requested***', '', '0000-00-00', 19722, '', NULL), (19723, 1726, '', '', '', '0000-00-00', 19723, '', NULL), (19724, 1727, 'S/N 129121', ' Load Cell #3 Blue (SOLD) (E-4)', 'Range: 50K', '2006-05-24', 19724, '5/24/2006', NULL), (19725, 1728, '', '', '', '0000-00-00', 19725, '', NULL), (19726, 1729, '', '', '', '0000-00-00', 19726, '', NULL), (19727, 1730, '', '', '', '0000-00-00', 19727, '', NULL), (19728, 1731, '', '', '', '0000-00-00', 19728, '', NULL), (19729, 1732, '', 'Not done/bad motor control/customer declines repairs', '', '0000-00-00', 19729, '', NULL), (19730, 1733, '', '', '', '0000-00-00', 19730, '', NULL), (19731, 1734, '', '', '', '0000-00-00', 19731, '', NULL), (19732, 1735, '', '', '', '0000-00-00', 19732, '', NULL), (19733, 1736, '', '', '', '0000-00-00', 19733, '', NULL), (19734, 1737, '', '', '', '0000-00-00', 19734, '', NULL), (19735, 1738, '', '', '', '0000-00-00', 19735, '', NULL), (19736, 1739, '', '', '', '0000-00-00', 19736, '', NULL), (19737, 1740, '', '', '', '0000-00-00', 19737, '', NULL), (19738, 1741, '', '', '', '0000-00-00', 19738, '', NULL), (19739, 1742, '', '', '', '0000-00-00', 19739, '', NULL), (19740, 1743, '', '', '', '0000-00-00', 19740, '', NULL), (19741, 1744, 'S/N 270/78094', 'MTS 1 Machine--Model 810 (E4-01) ', '5.5 Load Cell Cell Model 661.20E-01', '2004-03-24', 19741, '3/24/2004', NULL), (19742, 1745, '', '', '', '0000-00-00', 19742, '', NULL), (19743, 1746, '', '', '', '0000-00-00', 19743, '', NULL), (19744, 1747, '', '', '', '0000-00-00', 19744, '', NULL), (19745, 1748, '', '', '', '0000-00-00', 19745, '', NULL), (19746, 1749, '', '', '', '0000-00-00', 19746, '', NULL), (19747, 1750, '', '', '', '0000-00-00', 19747, '', NULL), (19748, 1751, '', '', '', '0000-00-00', 19748, '', NULL), (19749, 1752, '', '', '', '0000-00-00', 19749, '', NULL), (19750, 1753, 'S/N GF-14273', 'Geo-Test Pore Pressure Gauge (w/ Digital & Extra Gauge) (D5720-95)', 'Digital: 150 psi Extra Gauge: 160 psi', '2002-04-17', 19750, '4/17/2002', NULL), (19751, 1754, '', '', '', '0000-00-00', 19751, '', NULL), (19752, 1755, '', '', '', '0000-00-00', 19752, '', NULL), (19753, 1756, '', '', '', '0000-00-00', 19753, '', NULL), (19754, 1757, '', '', '', '0000-00-00', 19754, '', NULL), (19755, 1758, '', '', '', '0000-00-00', 19755, '', NULL), (19756, 1759, '', '', '', '0000-00-00', 19756, '', NULL), (19757, 1760, '', '', '', '0000-00-00', 19757, '', NULL), (19758, 1761, '', '', '', '0000-00-00', 19758, '', NULL), (19759, 1762, '', 'Send Certs to PO Box 1602, Elkins WV 26241', '', '0000-00-00', 19759, '', NULL), (19760, 1763, '', '', '', '0000-00-00', 19760, '', NULL), (19761, 1764, '', '', '', '0000-00-00', 19761, '', NULL), (19762, 1765, '', '', '', '0000-00-00', 19762, '', NULL), (19763, 1766, '', '', '', '0000-00-00', 19763, '', NULL), (19764, 1767, '', '', '', '0000-00-00', 19764, '', NULL), (19765, 1768, '', '', '', '0000-00-00', 19765, '', NULL), (19766, 1769, '', '', '', '0000-00-00', 19766, '', NULL), (19767, 1770, '', '', '', '0000-00-00', 19767, '', NULL), (19768, 1771, '', '', '', '0000-00-00', 19768, '', NULL), (19769, 1772, '', '', '', '0000-00-00', 19769, '', NULL), (19770, 1773, '', '', '', '0000-00-00', 19770, '', NULL), (19771, 1774, '', '', '', '0000-00-00', 19771, '', NULL), (19772, 1775, '', '', '', '0000-00-00', 19772, '', NULL), (19773, 1776, '', '', '', '0000-00-00', 19773, '', NULL), (19774, 1777, '', '', '', '0000-00-00', 19774, '', NULL), (19775, 1778, '', '', '', '0000-00-00', 19775, '', NULL), (19776, 1779, '', '', '', '0000-00-00', 19776, '', NULL), (19777, 1780, '', '', '', '0000-00-00', 19777, '', NULL), (19778, 1781, '', '', '', '0000-00-00', 19778, '', NULL), (19779, 1782, '', '', '', '0000-00-00', 19779, '', NULL), (19780, 1783, '', '', '', '0000-00-00', 19780, '', NULL), (19781, 1784, '', '', '', '0000-00-00', 19781, '', NULL), (19782, 1785, '', '', '', '0000-00-00', 19782, '', NULL), (19783, 1786, '', '', '', '0000-00-00', 19783, '', NULL), (19784, 1787, '', '', '', '0000-00-00', 19784, '', NULL), (19785, 1788, '', '', '', '0000-00-00', 19785, '', NULL), (19786, 1789, '', '', '', '0000-00-00', 19786, '', NULL), (19787, 1790, '', '', '', '0000-00-00', 19787, '', NULL), (19788, 1791, '', '', '', '0000-00-00', 19788, '', NULL), (19789, 1792, '', '', '', '0000-00-00', 19789, '', NULL), (19790, 1793, '', '', '', '0000-00-00', 19790, '', NULL), (19791, 1794, '', '', '', '0000-00-00', 19791, '', NULL), (19792, 1795, '', '', '', '0000-00-00', 19792, '', NULL), (19793, 1796, '', '', '', '0000-00-00', 19793, '', NULL), (19794, 1797, '', '', '', '0000-00-00', 19794, '', NULL), (19795, 1798, '', '', '', '0000-00-00', 19795, '', NULL), (19796, 1799, '', '', '', '0000-00-00', 19796, '', NULL), (19797, 1800, '', '', '', '0000-00-00', 19797, '', NULL), (19798, 1801, '', '', '', '0000-00-00', 19798, '', NULL), (19799, 1802, '', '', '', '0000-00-00', 19799, '', NULL), (19800, 1803, '', '', '', '0000-00-00', 19800, '', NULL), (19801, 1804, '', '', '', '0000-00-00', 19801, '', NULL), (19802, 1805, '', '', '', '0000-00-00', 19802, '', NULL), (19803, 1806, '', '', '', '0000-00-00', 19803, '', NULL), (19804, 1807, '', '', '', '0000-00-00', 19804, '', NULL), (19805, 1808, '', '', '', '0000-00-00', 19805, '', NULL), (19806, 1809, '', '', '', '0000-00-00', 19806, '', NULL), (19807, 1810, '', '', '', '0000-00-00', 19807, '', NULL), (19808, 1811, '', '', '', '0000-00-00', 19808, '', NULL), (19809, 1812, '', '', '', '0000-00-00', 19809, '', NULL), (19810, 1813, '', '', '', '0000-00-00', 19810, '', NULL), (19811, 1814, '', '', '', '0000-00-00', 19811, '', NULL), (19812, 1815, '', '', '', '0000-00-00', 19812, '', NULL), (19813, 1816, '', '', '', '0000-00-00', 19813, '', NULL), (19814, 1817, '', '', '', '0000-00-00', 19814, '', NULL), (19815, 1818, '', '', '', '0000-00-00', 19815, '', NULL), (19816, 1819, '', '', '', '0000-00-00', 19816, '', NULL), (19817, 1820, 'S/N 3', 'Conbel Pressure Gauge (D-5720)', 'Cap: 60 psi', '2013-05-07', 19817, '5/7/2013', NULL), (19818, 1821, '', 'Send Certs to Billing Address', '', '0000-00-00', 19818, '', NULL), (19819, 1822, '', '', '', '0000-00-00', 19819, '', NULL), (19820, 1823, 'S/N 8027411204', 'Ohaus Adventurer SL AS3102 Scale (ID #29) (E-898)', 'Range: 3,100 Grams ', '2013-05-08', 19820, '5/8/2013', NULL), (19821, 1824, '', '', '', '0000-00-00', 19821, '', NULL), (19822, 1825, '', '', '', '0000-00-00', 19822, '', NULL), (19823, 1826, '', '', '', '0000-00-00', 19823, '', NULL), (19824, 1827, 'S/N ID #10', 'Briefcase BCS-80 Scale (E-898) OOS', 'Range: 176 lbs ', '2011-05-10', 19824, '5/10/2011', NULL), (19825, 1828, '', '', '', '0000-00-00', 19825, '', NULL), (19826, 1829, '', '', '', '0000-00-00', 19826, '', NULL), (19827, 1830, '', '', '', '0000-00-00', 19827, '', NULL), (19828, 1831, 'S/N 24565', 'Soiltest Unconfined Single Proving Ring (E-4 & ManSpec)', 'Cap: 2K', '2013-05-15', 19828, '5/15/2013', NULL), (19829, 1832, '', '', '', '0000-00-00', 19829, '', NULL), (19830, 1833, '', '', '', '0000-00-00', 19830, '', NULL), (19831, 1834, '', '', '', '0000-00-00', 19831, '', NULL), (19832, 1835, '', 'Mail Certs To:', '', '0000-00-00', 19832, '', NULL), (19833, 1836, '', '', '', '0000-00-00', 19833, '', NULL), (19834, 1837, '', '', '', '0000-00-00', 19834, '', NULL), (19835, 1838, 'S/N 1004326 (Pres. 7)', 'Humboldt HM-2325A Mini Logger w/ Pressure Transducer HM-4170', 'Range: 100 PSI (PT S/N 136283)(D-5720)', '2013-07-31', 19835, '7/31/2013', NULL), (19836, 1839, '', '', '', '0000-00-00', 19836, '', NULL), (19837, 1840, '', '', '', '0000-00-00', 19837, '', NULL), (19838, 1841, '', '', '', '0000-00-00', 19838, '', NULL), (19839, 1842, '', '', '', '0000-00-00', 19839, '', NULL), (19840, 1843, '', '', '', '0000-00-00', 19840, '', NULL), (19841, 1844, 'S/N 2192', 'Dail Indicator w/ GeoJac Load Frame (D-6027)', 'Range: 0.2 in to 2 in S/N LP-830', '2013-05-22', 19841, '5/22/2013', NULL), (19842, 1845, '', '', '', '0000-00-00', 19842, '', NULL), (19843, 1846, '', '', '', '0000-00-00', 19843, '', NULL), (19844, 1847, '', '*MUST CALL PRIOR TO LET THEM KNOW DAY & WHAT NEEDS', 'DONE PRIOR TO OUR ARRIVAL', '0000-00-00', 19844, '', NULL), (19845, 1848, '', '', '', '0000-00-00', 19845, '', NULL), (19846, 1849, '', '', '', '0000-00-00', 19846, '', NULL), (19847, 1850, '', '', '', '0000-00-00', 19847, '', NULL), (19848, 1851, '', '', '', '0000-00-00', 19848, '', NULL), (19849, 1852, '', '', '', '0000-00-00', 19849, '', NULL), (19850, 1853, '', '', '', '0000-00-00', 19850, '', NULL), (19851, 1854, '', '', '', '0000-00-00', 19851, '', NULL), (19852, 1855, '', '', '', '0000-00-00', 19852, '', NULL), (19853, 1856, '', '', '', '0000-00-00', 19853, '', NULL), (19854, 1857, '', '', '', '0000-00-00', 19854, '', NULL), (19855, 1858, '', '', '', '0000-00-00', 19855, '', NULL), (19856, 1859, '', '', '', '0000-00-00', 19856, '', NULL), (19857, 1860, '', '', '', '0000-00-00', 19857, '', NULL), (19858, 1861, '', '', '', '0000-00-00', 19858, '', NULL), (19859, 1862, '', '', '', '0000-00-00', 19859, '', NULL), (19860, 1863, '', '', '', '0000-00-00', 19860, '', NULL), (19861, 1864, '', '', '', '0000-00-00', 19861, '', NULL), (19862, 1865, '', '', '', '0000-00-00', 19862, '', NULL), (19863, 1866, '', '', '', '0000-00-00', 19863, '', NULL), (19864, 1867, '', '', '', '0000-00-00', 19864, '', NULL), (19865, 1868, '', '', '', '0000-00-00', 19865, '', NULL), (19866, 1869, '', '', '', '0000-00-00', 19866, '', NULL), (19867, 1870, '', '', '', '0000-00-00', 19867, '', NULL), (19868, 1871, 'S/N 76068', 'Range Card #2 (Tag# 25-LC12RC02)', 'Range .5K', '1998-05-27', 19868, '5/27/1998', NULL), (19869, 1872, '', '', '', '0000-00-00', 19869, '', NULL), (19870, 1873, '', '', '', '0000-00-00', 19870, '', NULL), (19871, 1874, '', '', '', '0000-00-00', 19871, '', NULL), (19872, 1875, '', '', '', '0000-00-00', 19872, '', NULL), (19873, 1876, '', '', '', '0000-00-00', 19873, '', NULL), (19874, 1877, '', '', '', '0000-00-00', 19874, '', NULL), (19875, 1878, '', '', '', '0000-00-00', 19875, '', NULL), (19876, 1879, '', '', '', '0000-00-00', 19876, '', NULL), (19877, 1880, '', '', '', '0000-00-00', 19877, '', NULL), (19878, 1881, '', '', '', '0000-00-00', 19878, '', NULL), (19879, 1882, '', '', '', '0000-00-00', 19879, '', NULL), (19880, 1883, '', '', '', '0000-00-00', 19880, '', NULL), (19881, 1884, '', '', '', '0000-00-00', 19881, '', NULL), (19882, 1885, '', 'Send Certs to PO Box 1602, Elkins WV 26241', '', '0000-00-00', 19882, '', NULL), (19883, 1886, '', '', '', '0000-00-00', 19883, '', NULL), (19884, 1887, '', '', '', '0000-00-00', 19884, '', NULL), (19885, 1888, '', '', '', '0000-00-00', 19885, '', NULL), (19886, 1889, '', '', '', '0000-00-00', 19886, '', NULL), (19887, 1890, '', '', '', '0000-00-00', 19887, '', NULL), (19888, 1891, '', '', '', '0000-00-00', 19888, '', NULL), (19889, 1892, '', '', '', '0000-00-00', 19889, '', NULL), (19890, 1893, '', '', '', '0000-00-00', 19890, '', NULL), (19891, 1894, '', '', '', '0000-00-00', 19891, '', NULL), (19892, 1895, '', '', '', '0000-00-00', 19892, '', NULL), (19893, 1896, '', '', '', '0000-00-00', 19893, '', NULL), (19894, 1897, '', '', '', '0000-00-00', 19894, '', NULL), (19895, 1898, '', '', '', '0000-00-00', 19895, '', NULL), (19896, 1899, '', '', '', '0000-00-00', 19896, '', NULL), (19897, 1900, '', '', '', '0000-00-00', 19897, '', NULL), (19898, 1901, '', '', '', '0000-00-00', 19898, '', NULL), (19899, 1902, '', '', '', '0000-00-00', 19899, '', NULL), (19900, 1903, '', '', '', '0000-00-00', 19900, '', NULL), (19901, 1904, '', '', '', '0000-00-00', 19901, '', NULL), (19902, 1905, 'SN 101', 'Trautwein Model MVFS Pressure Transducer (OOS) (D-5720)', 'Range: 150 PSI', '2005-05-31', 19902, '5/31/2005', NULL), (19903, 1906, '', '', '', '0000-00-00', 19903, '', NULL), (19904, 1907, '', '', '', '0000-00-00', 19904, '', NULL), (19905, 1908, '', '', '', '0000-00-00', 19905, '', NULL), (19906, 1909, '', '', '', '0000-00-00', 19906, '', NULL), (19907, 1910, '', '', '', '0000-00-00', 19907, '', NULL), (19908, 1911, '', '', '', '0000-00-00', 19908, '', NULL), (19909, 1912, '', '', '', '0000-00-00', 19909, '', NULL), (19910, 1913, '', '', '', '0000-00-00', 19910, '', NULL), (19911, 1914, '', '', '', '0000-00-00', 19911, '', NULL), (19912, 1915, '', '', '', '0000-00-00', 19912, '', NULL), (19913, 1916, 'S/N 6324-9207', 'Soiltest CT 800 Digital Compression Machine(OUT OF SVC) (E-4)', 'Range: 200K', '2005-06-02', 19913, '6/2/2005', NULL), (19914, 1917, '', '', '', '0000-00-00', 19914, '', NULL), (19915, 1918, '', '', '', '0000-00-00', 19915, '', NULL), (19916, 1919, '', '', '', '0000-00-00', 19916, '', NULL), (19917, 1920, '', '', '', '0000-00-00', 19917, '', NULL), (19918, 1921, '', '', '', '0000-00-00', 19918, '', NULL), (19919, 1922, '', 'Call Bobby Collins for scheduling ', '', '0000-00-00', 19919, '', NULL), (19920, 1923, '', '', '', '0000-00-00', 19920, '', NULL), (19921, 1924, 'S/N 1005', 'Hogentogler Dial Indicator (OOS) (D-6027)', 'Range: 1 Inch', '2007-05-22', 19921, '5/22/2007', NULL), (19922, 1925, '', '', '', '0000-00-00', 19922, '', NULL), (19923, 1926, '', '', '', '0000-00-00', 19923, '', NULL), (19924, 1927, '', '', '', '0000-00-00', 19924, '', NULL), (19925, 1928, '', '', '', '0000-00-00', 19925, '', NULL), (19926, 1929, '', '', '', '0000-00-00', 19926, '', NULL), (19927, 1930, '', '', '', '0000-00-00', 19927, '', NULL), (19928, 1931, 'S/N 2054', 'Soiltest Model 36-0657 Spare Gauge # 2 OUT OF SERVICE', 'Range: 250K', '2004-12-13', 19928, '12/13/2004', NULL), (19929, 1932, '', '', '', '0000-00-00', 19929, '', NULL), (19930, 1933, '', '', '', '0000-00-00', 19930, '', NULL), (19931, 1934, '', '', '', '0000-00-00', 19931, '', NULL), (19932, 1935, 'S/N 9002', ' with Soiltest Microhead Digital 2000 (OUT OF SERVICE)', 'Range 4/400K', '2003-06-03', 19932, '6/3/2003', NULL), (19933, 1936, '', '', '', '0000-00-00', 19933, '', NULL), (19934, 1937, '', '', '', '0000-00-00', 19934, '', NULL), (19935, 1938, '', '', '', '0000-00-00', 19935, '', NULL), (19936, 1939, '', '', '', '0000-00-00', 19936, '', NULL), (19937, 1940, '', '***ISO REQUESTED***', '', '0000-00-00', 19937, '', NULL), (19938, 1941, '', '', '', '0000-00-00', 19938, '', NULL), (19939, 1942, '', '', '', '0000-00-00', 19939, '', NULL), (19940, 1943, '', '', '', '0000-00-00', 19940, '', NULL), (19941, 1944, '', '', '', '0000-00-00', 19941, '', NULL), (19942, 1945, '', '', '', '0000-00-00', 19942, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (19943, 1946, '', '', '', '0000-00-00', 19943, '', NULL), (19944, 1947, '', '', '', '0000-00-00', 19944, '', NULL), (19945, 1948, '', '', '', '0000-00-00', 19945, '', NULL), (19946, 1949, '', '', '', '0000-00-00', 19946, '', NULL), (19947, 1950, '', '', '', '0000-00-00', 19947, '', NULL), (19948, 1951, '', '', '', '0000-00-00', 19948, '', NULL), (19949, 1952, '', '', '', '0000-00-00', 19949, '', NULL), (19950, 1953, '', '', '', '0000-00-00', 19950, '', NULL), (19951, 1954, '', '', '', '0000-00-00', 19951, '', NULL), (19952, 1955, '', '', '', '0000-00-00', 19952, '', NULL), (19953, 1956, '', '', '', '0000-00-00', 19953, '', NULL), (19954, 1957, 'S/N', 'Concrete Air Indicator Gauge', 'Range: ', NULL, 19954, 'New', NULL), (19955, 1958, 'S/N 103', 'Ashcroft Gauge', 'Range: 0-60psi', '2002-11-22', 19955, '11/22/2002', NULL), (19956, 1959, 'S/N', 'TMI Air Meter Gauge (D-5720)', 'Range: 15 PSI', '2009-11-02', 19956, '11/2/2009', NULL), (19957, 1960, '', '', '', '0000-00-00', 19957, '', NULL), (19958, 1961, '', '', '', '0000-00-00', 19958, '', NULL), (19959, 1962, '', '', '', '0000-00-00', 19959, '', NULL), (19960, 1963, '', '', '', '0000-00-00', 19960, '', NULL), (19961, 1964, '', '', '', '0000-00-00', 19961, '', NULL), (19962, 1965, '', '', '', '0000-00-00', 19962, '', NULL), (19963, 1966, '', '', '', '0000-00-00', 19963, '', NULL), (19964, 1967, '', '', '', '0000-00-00', 19964, '', NULL), (19965, 1968, '', '', '', '0000-00-00', 19965, '', NULL), (19966, 1969, '', '', '', '0000-00-00', 19966, '', NULL), (19967, 1970, '', '', '', '0000-00-00', 19967, '', NULL), (19968, 1971, '', '', '', '0000-00-00', 19968, '', NULL), (19969, 1972, '', '', '', '0000-00-00', 19969, '', NULL), (19970, 1973, '', '', '', '0000-00-00', 19970, '', NULL), (19971, 1974, '', '', '', '0000-00-00', 19971, '', NULL), (19972, 1975, '', '', '', '0000-00-00', 19972, '', NULL), (19973, 1976, '', '', '', '0000-00-00', 19973, '', NULL), (19974, 1977, '', '', '', '0000-00-00', 19974, '', NULL), (19975, 1978, '', '', '', '0000-00-00', 19975, '', NULL), (19976, 1979, '', '', '', '0000-00-00', 19976, '', NULL), (19977, 1980, '', '', '', '0000-00-00', 19977, '', NULL), (19978, 1981, '', '', '', '0000-00-00', 19978, '', NULL), (19979, 1982, '', '', '', '0000-00-00', 19979, '', NULL), (19980, 1983, '', '', '', '0000-00-00', 19980, '', NULL), (19981, 1984, '', '', '', '0000-00-00', 19981, '', NULL), (19982, 1985, '', '', '', '0000-00-00', 19982, '', NULL), (19983, 1986, '', '', '', '0000-00-00', 19983, '', NULL), (19984, 1987, '', '', '', '0000-00-00', 19984, '', NULL), (19985, 1988, 'S/N 9518-1854', 'Soiltest CT-7251 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K', '2005-05-19', 19985, '5/19/2005', NULL), (19986, 1989, '', '', '', '0000-00-00', 19986, '', NULL), (19987, 1990, '', '', '', '0000-00-00', 19987, '', NULL), (19988, 1991, '', '', '', '0000-00-00', 19988, '', NULL), (19989, 1992, 'S/N E7840', 'Soiltest CT-711 Compression Machine (MOVED) (E-4)', 'Range: 200K ', '2004-12-09', 19989, '12/9/2004', NULL), (19990, 1993, '', '', '', '0000-00-00', 19990, '', NULL), (19991, 1994, '', '', '', '0000-00-00', 19991, '', NULL), (19992, 1995, '', '', '', '0000-00-00', 19992, '', NULL), (19993, 1996, '', '', '', '0000-00-00', 19993, '', NULL), (19994, 1997, '', '', '', '0000-00-00', 19994, '', NULL), (19995, 1998, '', '', '', '0000-00-00', 19995, '', NULL), (19996, 1999, '', '', '', '0000-00-00', 19996, '', NULL), (19997, 2000, '', '***Get check for all 3 places Cadillac, Alpena & Escanaba from ', '', '0000-00-00', 19997, '', NULL), (19998, 2001, '', '', '', '0000-00-00', 19998, '', NULL), (19999, 2002, '', '', '', '0000-00-00', 19999, '', NULL), (20000, 2003, '', '', '', '0000-00-00', 20000, '', NULL), (20001, 2004, '', '', '', '0000-00-00', 20001, '', NULL), (20002, 2005, '', '**All invoices must go to aerojet.east.ap@aerojet.com*', '', '0000-00-00', 20002, '', NULL), (20003, 2006, '', 'person ordering the services ', '', '0000-00-00', 20003, '', NULL), (20004, 2007, '', '***NO TECHNICAL SUPPORT, UNLESS PAID***', '', '0000-00-00', 20004, '', NULL), (20005, 2008, 'S/N E3308C', 'Norco 911027A Ram (E-4 & Man Specs)', 'Range: 20K (8,800 PSI)', '2012-10-16', 20005, '10/16/2012', NULL), (20006, 2009, '', '', '', '0000-00-00', 20006, '', NULL), (20007, 2010, '', '', '', '0000-00-00', 20007, '', NULL), (20008, 2011, '', '', '', '0000-00-00', 20008, '', NULL), (20009, 2012, '', '', '', '0000-00-00', 20009, '', NULL), (20010, 2013, '', '', '', '0000-00-00', 20010, '', NULL), (20011, 2014, '', '', '', '0000-00-00', 20011, '', NULL), (20012, 2015, '', '', '', '0000-00-00', 20012, '', NULL), (20013, 2016, '', '', '', '0000-00-00', 20013, '', NULL), (20014, 2017, '', '', '', '0000-00-00', 20014, '', NULL), (20015, 2018, '', '', '', '0000-00-00', 20015, '', NULL), (20016, 2019, '', '', '', '0000-00-00', 20016, '', NULL), (20017, 2020, '', '', '', '0000-00-00', 20017, '', NULL), (20018, 2021, '', '', '', '0000-00-00', 20018, '', NULL), (20019, 2022, '', '', '', '0000-00-00', 20019, '', NULL), (20020, 2023, '', '', '', '0000-00-00', 20020, '', NULL), (20021, 2024, '', '', '', '0000-00-00', 20021, '', NULL), (20022, 2025, '', '', '', '0000-00-00', 20022, '', NULL), (20023, 2026, '', '', '', '0000-00-00', 20023, '', NULL), (20024, 2027, '', '', '', '0000-00-00', 20024, '', NULL), (20025, 2028, '', '', '', '0000-00-00', 20025, '', NULL), (20026, 2029, '', '', '', '0000-00-00', 20026, '', NULL), (20027, 2030, '', '', '', '0000-00-00', 20027, '', NULL), (20028, 2031, '', '', '', '0000-00-00', 20028, '', NULL), (20029, 2032, '', '', '', '0000-00-00', 20029, '', NULL), (20030, 2033, '', '', '', '0000-00-00', 20030, '', NULL), (20031, 2034, '', '', '', '0000-00-00', 20031, '', NULL), (20032, 2035, '', '', '', '0000-00-00', 20032, '', NULL), (20033, 2036, '', '', '', '0000-00-00', 20033, '', NULL), (20034, 2037, '', '', '', '0000-00-00', 20034, '', NULL), (20035, 2038, '', '', '', '0000-00-00', 20035, '', NULL), (20036, 2039, '', '', '', '0000-00-00', 20036, '', NULL), (20037, 2040, '', '', '', '0000-00-00', 20037, '', NULL), (20038, 2041, '', '', '', '0000-00-00', 20038, '', NULL), (20039, 2042, '', '', '', '0000-00-00', 20039, '', NULL), (20040, 2043, '', '', '', '0000-00-00', 20040, '', NULL), (20041, 2044, '', '', '', '0000-00-00', 20041, '', NULL), (20042, 2045, '', '', '', '0000-00-00', 20042, '', NULL), (20043, 2046, '', '', '', '0000-00-00', 20043, '', NULL), (20044, 2047, '', '', '', '0000-00-00', 20044, '', NULL), (20045, 2048, '', '', '', '0000-00-00', 20045, '', NULL), (20046, 2049, '', '', '', '0000-00-00', 20046, '', NULL), (20047, 2050, '', '', '', '0000-00-00', 20047, '', NULL), (20048, 2051, '', '', '', '0000-00-00', 20048, '', NULL), (20049, 2052, '', '', '', '0000-00-00', 20049, '', NULL), (20050, 2053, 'S/N', 'MAY HAVE 1 ADDITIONAL BOLT TESTER', '', '0000-00-00', 20050, '', NULL), (20051, 2054, '', '', '', '0000-00-00', 20051, '', NULL), (20052, 2055, '', '', '', '0000-00-00', 20052, '', NULL), (20053, 2056, '', '', '', '0000-00-00', 20053, '', NULL), (20054, 2057, '', '', '', '0000-00-00', 20054, '', NULL), (20055, 2058, '', '', '', '0000-00-00', 20055, '', NULL), (20056, 2059, '', '', '', '0000-00-00', 20056, '', NULL), (20057, 2060, '', '', '', '0000-00-00', 20057, '', NULL), (20058, 2061, '', '', '', '0000-00-00', 20058, '', NULL), (20059, 2062, '', '', '', '0000-00-00', 20059, '', NULL), (20060, 2063, '', '', '', '0000-00-00', 20060, '', NULL), (20061, 2064, '', '', '', '0000-00-00', 20061, '', NULL), (20062, 2065, '', '', '', '0000-00-00', 20062, '', NULL), (20063, 2066, 'S/N 172433', 'Tinius Olsen Series 1000 Univeral Testing Machine (MOVED)', '', '1996-03-06', 20063, '3/6/1996', NULL), (20064, 2067, '', '', '', '0000-00-00', 20064, '', NULL), (20065, 2068, '', '', '', '0000-00-00', 20065, '', NULL), (20066, 2069, '', '', '', '0000-00-00', 20066, '', NULL), (20067, 2070, '', '', '', '0000-00-00', 20067, '', NULL), (20068, 2071, '', '', '', '0000-00-00', 20068, '', NULL), (20069, 2072, '', '', '', '0000-00-00', 20069, '', NULL), (20070, 2073, '', '', '', '0000-00-00', 20070, '', NULL), (20071, 2074, '', '', '', '0000-00-00', 20071, '', NULL), (20072, 2075, 'S/N Stress 5', 'Stress Con Prestress Jack (E-4 & PCI)', 'Range: 5K / 50K', '2007-10-04', 20072, '10/4/2007', NULL), (20073, 2076, '', '', '', '0000-00-00', 20073, '', NULL), (20074, 2077, '', '', '', '0000-00-00', 20074, '', NULL), (20075, 2078, '', '', '', '0000-00-00', 20075, '', NULL), (20076, 2079, 'S/N 22964', 'Soiltest Marshall Single Proving Ring (E-4 & Man Specs)', 'Range: 6K', '2012-10-23', 20076, '10/23/2012', NULL), (20077, 2080, '', '', '', '0000-00-00', 20077, '', NULL), (20078, 2081, '', '', '', '0000-00-00', 20078, '', NULL), (20079, 2082, '', '', '', '0000-00-00', 20079, '', NULL), (20080, 2083, '', '', '', '0000-00-00', 20080, '', NULL), (20081, 2084, 'S/N', ' Extra Gauge Jack B - Gauge #2 (OOS)', 'Range: 40K', '2008-07-29', 20081, '7/29/2008', NULL), (20082, 2085, '', 'of forms - Work Rules and Safety Procedure', '', '0000-00-00', 20082, '', NULL), (20083, 2086, 'S/N 2422 (ID# Y002I5)', ' w/Satec T1M Extensometer (E-83)', 'Range: 0.002 in/in (GL 2\")', '2013-09-04', 20083, '9/4/2013', NULL), (20084, 2087, '', '', '', '0000-00-00', 20084, '', NULL), (20085, 2088, '', '', '', '0000-00-00', 20085, '', NULL), (20086, 2089, 'S/N 101', ' w/Extra Gauge ', 'Range: 35K', '2013-09-04', 20086, '9/4/2013', NULL), (20087, 2090, '', '', '', '0000-00-00', 20087, '', NULL), (20088, 2091, '', ' Send Certs to Billing Address', '', '0000-00-00', 20088, '', NULL), (20089, 2092, '', ' w/ Extra Gauge (OOS)', 'Range: Gauge 2K / Gauge #5 4K', '2011-09-08', 20089, '9/8/2011', NULL), (20090, 2093, '', '', '', '0000-00-00', 20090, '', NULL), (20091, 2094, '', ' Send Certs to Job Site', '', '0000-00-00', 20091, '', NULL), (20092, 2095, '', '', '', '0000-00-00', 20092, '', NULL), (20093, 2096, '', 'Certs and Invoice goes to billing address Attn: Sheila Sennet', '', '0000-00-00', 20093, '', NULL), (20094, 2097, '', '', '', '0000-00-00', 20094, '', NULL), (20095, 2098, '', '', '', '0000-00-00', 20095, '', NULL), (20096, 2099, '', '', '', '0000-00-00', 20096, '', NULL), (20097, 2100, '', '', '', '0000-00-00', 20097, '', NULL), (20098, 2101, '', '', '', '0000-00-00', 20098, '', NULL), (20099, 2102, '', '', '', '0000-00-00', 20099, '', NULL), (20100, 2103, '', '', '', '0000-00-00', 20100, '', NULL), (20101, 2104, '', '', '', '0000-00-00', 20101, '', NULL), (20102, 2105, '', '', '', '0000-00-00', 20102, '', NULL), (20103, 2106, '', '', '', '0000-00-00', 20103, '', NULL), (20104, 2107, '', '', '', '0000-00-00', 20104, '', NULL), (20105, 2108, '', '', '', '0000-00-00', 20105, '', NULL), (20106, 2109, '', '', '', '0000-00-00', 20106, '', NULL), (20107, 2110, '', '', '', '0000-00-00', 20107, '', NULL), (20108, 2111, '', '', '', '0000-00-00', 20108, '', NULL), (20109, 2112, '', '', '', '0000-00-00', 20109, '', NULL), (20110, 2113, '', '', '', '0000-00-00', 20110, '', NULL), (20111, 2114, '', '', '', '0000-00-00', 20111, '', NULL), (20112, 2115, '', '', '', '0000-00-00', 20112, '', NULL), (20113, 2116, '', '', '', '0000-00-00', 20113, '', NULL), (20114, 2117, '', '', '', '0000-00-00', 20114, '', NULL), (20115, 2118, '', '', '', '0000-00-00', 20115, '', NULL), (20116, 2119, '', '', '', '0000-00-00', 20116, '', NULL), (20117, 2120, '', '', '', '0000-00-00', 20117, '', NULL), (20118, 2121, '', '', '', '0000-00-00', 20118, '', NULL), (20119, 2122, '', '', '', '0000-00-00', 20119, '', NULL), (20120, 2123, '', '', '', '0000-00-00', 20120, '', NULL), (20121, 2124, '', '', '', '0000-00-00', 20121, '', NULL), (20122, 2125, '', '', '', '0000-00-00', 20122, '', NULL), (20123, 2126, '', '', '', '0000-00-00', 20123, '', NULL), (20124, 2127, '', '', '', '0000-00-00', 20124, '', NULL), (20125, 2128, '', '', '', '0000-00-00', 20125, '', NULL), (20126, 2129, '', '', '', '0000-00-00', 20126, '', NULL), (20127, 2130, '', '', '', '0000-00-00', 20127, '', NULL), (20128, 2131, '', '', '', '0000-00-00', 20128, '', NULL), (20129, 2132, '', '', '', '0000-00-00', 20129, '', NULL), (20130, 2133, '', '', '', '0000-00-00', 20130, '', NULL), (20131, 2134, '', '', '', '0000-00-00', 20131, '', NULL), (20132, 2135, '', '', '', '0000-00-00', 20132, '', NULL), (20133, 2136, '', '', '', '0000-00-00', 20133, '', NULL), (20134, 2137, 'S/N AP 27070', 'Dillon Dynamometer', '', '0000-00-00', 20134, '', NULL), (20135, 2138, '', '', '', '0000-00-00', 20135, '', NULL), (20136, 2139, '', '', '', '0000-00-00', 20136, '', NULL), (20137, 2140, '', '', '', '0000-00-00', 20137, '', NULL), (20138, 2141, '', '', '', '0000-00-00', 20138, '', NULL), (20139, 2142, '', '', '', '0000-00-00', 20139, '', NULL), (20140, 2143, 'S/N', 'Displacement Encoder (D-6027)', 'Range: ', NULL, 20140, 'New', NULL), (20141, 2144, '', ' \"***ISO Requested***', '', '0000-00-00', 20141, '', NULL), (20142, 2145, '', '', '', '0000-00-00', 20142, '', NULL), (20143, 2146, '', '', '', '0000-00-00', 20143, '', NULL), (20144, 2147, 'S/N 1018555', 'Sensotec 41/0573-01-03-CS-100-1S Load Cell (In House) (E-4)', 'Range: 500 lbs to 50K/Comp 0-10Volts', '2006-09-15', 20144, '9/15/2006', NULL), (20145, 2148, '', '', '', '0000-00-00', 20145, '', NULL), (20146, 2149, 'S/N 116434A', 'Interface Load Cell, Model: 1210 AJ-500-B (OOS) (E-4) ', 'Range: 500 lbs ', '2005-10-05', 20146, '10/5/2005', NULL), (20147, 2150, 'S/N ', 'Karol Warner S-Type Load Cell LVDT (D-6027)', 'Range: 10K', NULL, 20147, 'New', NULL), (20148, 2151, '', '', '', '0000-00-00', 20148, '', NULL), (20149, 2152, '', '', '', '0000-00-00', 20149, '', NULL), (20150, 2153, '', '', '', '0000-00-00', 20150, '', NULL), (20151, 2154, '', '', '', '0000-00-00', 20151, '', NULL), (20152, 2155, '', '', '', '0000-00-00', 20152, '', NULL), (20153, 2156, 'S/N 51016', 'Com Ten Model SGC-100 (E-4) (NOT USING)', 'Range: 1,000 lbs. to 10,000 lbs.', '2000-11-02', 20153, '11/2/2000', NULL), (20154, 2157, '', 'Mail certs to job site location, check comes from Canada', '', '0000-00-00', 20154, '', NULL), (20155, 2158, '', '', '', '0000-00-00', 20155, '', NULL), (20156, 2159, '', '', '', '0000-00-00', 20156, '', NULL), (20157, 2160, 'S/N 009', 'HCN Dial Indicator (OOS) (D-6027)', 'Range: 2 inch', '2011-08-24', 20157, '8/24/2011', NULL), (20158, 2161, '', '', '', '0000-00-00', 20158, '', NULL), (20159, 2162, '', '', '', '0000-00-00', 20159, '', NULL), (20160, 2163, '', '', '', '0000-00-00', 20160, '', NULL), (20161, 2164, '', '', '', '0000-00-00', 20161, '', NULL), (20162, 2165, '', '', '', '0000-00-00', 20162, '', NULL), (20163, 2166, '', '', '', '0000-00-00', 20163, '', NULL), (20164, 2167, '', '', '', '0000-00-00', 20164, '', NULL), (20165, 2168, '', '', '', '0000-00-00', 20165, '', NULL), (20166, 2169, '', '', '', '0000-00-00', 20166, '', NULL), (20167, 2170, '', '', '', '0000-00-00', 20167, '', NULL), (20168, 2171, '', '', '', '0000-00-00', 20168, '', NULL), (20169, 2172, '', '', '', '0000-00-00', 20169, '', NULL), (20170, 2173, '', '', '', '0000-00-00', 20170, '', NULL), (20171, 2174, '', '', '', '0000-00-00', 20171, '', NULL), (20172, 2175, '', '', '', '0000-00-00', 20172, '', NULL), (20173, 2176, '', '', '', '0000-00-00', 20173, '', NULL), (20174, 2177, '', '', '', '0000-00-00', 20174, '', NULL), (20175, 2178, '', '', '', '0000-00-00', 20175, '', NULL), (20176, 2179, '', '', '', '0000-00-00', 20176, '', NULL), (20177, 2180, '', '', '', '0000-00-00', 20177, '', NULL), (20178, 2181, '', '', '', '0000-00-00', 20178, '', NULL), (20179, 2182, '', '', '', '0000-00-00', 20179, '', NULL), (20180, 2183, '', '', '', '0000-00-00', 20180, '', NULL), (20181, 2184, '', '', '', '0000-00-00', 20181, '', NULL), (20182, 2185, '', '', '', '0000-00-00', 20182, '', NULL), (20183, 2186, '', '', '', '0000-00-00', 20183, '', NULL), (20184, 2187, '', '', '', '0000-00-00', 20184, '', NULL), (20185, 2188, '', '', '', '0000-00-00', 20185, '', NULL), (20186, 2189, '', '', '', '0000-00-00', 20186, '', NULL), (20187, 2190, '', '', '', '0000-00-00', 20187, '', NULL), (20188, 2191, '', '', '', '0000-00-00', 20188, '', NULL), (20189, 2192, '', '', '', '0000-00-00', 20189, '', NULL), (20190, 2193, '', 'Send Certs to Billing Address Attn: Harry Maghee', '', '0000-00-00', 20190, '', NULL), (20191, 2194, '', '', '', '0000-00-00', 20191, '', NULL), (20192, 2195, '', '', '', '0000-00-00', 20192, '', NULL), (20193, 2196, '', '', '', '0000-00-00', 20193, '', NULL), (20194, 2197, '', '', '', '0000-00-00', 20194, '', NULL), (20195, 2198, '', '', '', '0000-00-00', 20195, '', NULL), (20196, 2199, '', '', '', '0000-00-00', 20196, '', NULL), (20197, 2200, '', '', '', '0000-00-00', 20197, '', NULL), (20198, 2201, '', '', '', '0000-00-00', 20198, '', NULL), (20199, 2202, '', '', '', '0000-00-00', 20199, '', NULL), (20200, 2203, '', '', '', '0000-00-00', 20200, '', NULL), (20201, 2204, 'S/N', ' w/ Shear Displacement LDT (D-6027)', 'Range: ', NULL, 20201, 'New', NULL), (20202, 2205, '', '', '', '0000-00-00', 20202, '', NULL), (20203, 2206, '', 'Not there on Friday\'s ', '', '0000-00-00', 20203, '', NULL), (20204, 2207, 'S/N 001', 'PSI Pressure Gauge (D-5720)', 'Range: 150 psi', '2005-02-21', 20204, '2/21/2005', NULL), (20205, 2208, 'S/N MG4199', ' with Forney LVDT Vertical (D-6027)', 'Range: 10mm', '2005-02-21', 20205, '2/21/2005', NULL), (20206, 2209, '', 'Putting in archived database.', '', '0000-00-00', 20206, '', NULL), (20207, 2210, '', 'Putting in archived database.', '', '0000-00-00', 20207, '', NULL), (20208, 2211, '', '', '', '0000-00-00', 20208, '', NULL), (20209, 2212, '', '', '', '0000-00-00', 20209, '', NULL), (20210, 2213, '', '', '', '0000-00-00', 20210, '', NULL), (20211, 2214, '', '', '', '0000-00-00', 20211, '', NULL), (20212, 2215, '', '', '', '0000-00-00', 20212, '', NULL), (20213, 2216, '', '', '', '0000-00-00', 20213, '', NULL), (20214, 2217, '', '', '', '0000-00-00', 20214, '', NULL), (20215, 2218, '', '', '', '0000-00-00', 20215, '', NULL), (20216, 2219, '', '', '', '0000-00-00', 20216, '', NULL), (20217, 2220, 'UTM0403301', 'ADMET Universal Testing Machine 0403301 (E-4)', '', '0000-00-00', 20217, '', NULL), (20218, 2221, '', '', '', '0000-00-00', 20218, '', NULL), (20219, 2222, '', '', '', '0000-00-00', 20219, '', NULL), (20220, 2223, '', '', '', '0000-00-00', 20220, '', NULL), (20221, 2224, '', '', '', '0000-00-00', 20221, '', NULL), (20222, 2225, '', '', '', '0000-00-00', 20222, '', NULL), (20223, 2226, '', '', '', '0000-00-00', 20223, '', NULL), (20224, 2227, '', '', '', '0000-00-00', 20224, '', NULL), (20225, 2228, '', '', '', '0000-00-00', 20225, '', NULL), (20226, 2229, '', '', '', '0000-00-00', 20226, '', NULL), (20227, 2230, '', '', '', '0000-00-00', 20227, '', NULL), (20228, 2231, '', '', '', '0000-00-00', 20228, '', NULL), (20229, 2232, '', '', '', '0000-00-00', 20229, '', NULL), (20230, 2233, '', '', '', '0000-00-00', 20230, '', NULL), (20231, 2234, '', '', '', '0000-00-00', 20231, '', NULL), (20232, 2235, '', 'Call Bobby Collins for scheduling ', '', '0000-00-00', 20232, '', NULL), (20233, 2236, '', '', '', '0000-00-00', 20233, '', NULL), (20234, 2237, '', '', '', '0000-00-00', 20234, '', NULL), (20235, 2238, '', '', '', '0000-00-00', 20235, '', NULL), (20236, 2239, '', 'Putting in archived database.', '', '0000-00-00', 20236, '', NULL), (20237, 2240, '', '', '', '0000-00-00', 20237, '', NULL), (20238, 2241, '', '', '', '0000-00-00', 20238, '', NULL), (20239, 2242, '', '', '', '0000-00-00', 20239, '', NULL), (20240, 2243, '', '', '', '0000-00-00', 20240, '', NULL), (20241, 2244, '', '', '', '0000-00-00', 20241, '', NULL), (20242, 2245, '', '', '', '0000-00-00', 20242, '', NULL), (20243, 2246, '', '', '', '0000-00-00', 20243, '', NULL), (20244, 2247, '', '', '', '0000-00-00', 20244, '', NULL), (20245, 2248, '', '', '', '0000-00-00', 20245, '', NULL), (20246, 2249, 'S/N 17246', 'Chatillon Force Gauge Digital DFI 500 T&C (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 20246, '4/28/1998', NULL), (20247, 2250, '', ' T.O. Due in Aug. Possible ProRate for LT-1000 in Aug.', '', '0000-00-00', 20247, '', NULL), (20248, 2251, '', '', '', '0000-00-00', 20248, '', NULL), (20249, 2252, '', '', '', '0000-00-00', 20249, '', NULL), (20250, 2253, '', 'Send Certs to Billing Address Attn: Bill Robertson', '', '0000-00-00', 20250, '', NULL), (20251, 2254, '', '', '', '0000-00-00', 20251, '', NULL), (20252, 2255, '', '', '', '0000-00-00', 20252, '', NULL), (20253, 2256, '', '', '', '0000-00-00', 20253, '', NULL), (20254, 2257, 'S/N 01', 'Soiltest LC-9 Dial Indicator (D-6027) OOS', 'Range: 1 Inch ', '2009-03-11', 20254, '3/11/2009', NULL), (20255, 2258, '', 'E-mail Invoice to joyce.fortna@lrkimball.com', '', '0000-00-00', 20255, '', NULL), (20256, 2259, '', '', '', '0000-00-00', 20256, '', NULL), (20257, 2260, '', '', '', '0000-00-00', 20257, '', NULL), (20258, 2261, '', '', '', '0000-00-00', 20258, '', NULL), (20259, 2262, '', '', '', '0000-00-00', 20259, '', NULL), (20260, 2263, '', '', '', '0000-00-00', 20260, '', NULL), (20261, 2264, '', '', '', '0000-00-00', 20261, '', NULL), (20262, 2265, '', 'Putting in archived database.', '', '0000-00-00', 20262, '', NULL), (20263, 2266, '', '', '', '0000-00-00', 20263, '', NULL), (20264, 2267, '', '', '', '0000-00-00', 20264, '', NULL), (20265, 2268, '', '', '', '0000-00-00', 20265, '', NULL), (20266, 2269, '', '', '', '0000-00-00', 20266, '', NULL), (20267, 2270, '', '', '', '0000-00-00', 20267, '', NULL), (20268, 2271, '', '', '', '0000-00-00', 20268, '', NULL), (20269, 2272, '', '', '', '0000-00-00', 20269, '', NULL), (20270, 2273, '', '', '', '0000-00-00', 20270, '', NULL), (20271, 2274, '', '', '', '0000-00-00', 20271, '', NULL), (20272, 2275, '', ' \"***ISO Requested***', '', '0000-00-00', 20272, '', NULL), (20273, 2276, '', '', '', '0000-00-00', 20273, '', NULL), (20274, 2277, '', '', '', '0000-00-00', 20274, '', NULL), (20275, 2278, '', 'Make sure to call Ms. Grubbs the day before you arrive to double', 'check there is no class', '0000-00-00', 20275, '', NULL), (20276, 2279, '', '', '', '0000-00-00', 20276, '', NULL), (20277, 2280, '', '', '', '0000-00-00', 20277, '', NULL), (20278, 2281, '', '', '', '0000-00-00', 20278, '', NULL), (20279, 2282, 'S/N 159819', ' with TO Extensometer Model S-1000-2 (E-83)', '2\" GL, Range 10/25/50/100%, ID#25-EXT12', '2005-03-30', 20279, '3/30/2005', NULL), (20280, 2283, '', '', '', '0000-00-00', 20280, '', NULL), (20281, 2284, 'S/N 270/78094', 'MTS 1 Machine--Model 810 (E4-01) ', '5.5 Load Cell Cell Model 661.20E-01', '2004-03-24', 20281, '3/24/2004', NULL), (20282, 2285, '', 'Putting in archived database.', '', '0000-00-00', 20282, '', NULL), (20283, 2286, '', '', '', '0000-00-00', 20283, '', NULL), (20284, 2287, '', '', '', '0000-00-00', 20284, '', NULL), (20285, 2288, '', '', '', '0000-00-00', 20285, '', NULL), (20286, 2289, '', '', '', '0000-00-00', 20286, '', NULL), (20287, 2290, '', ' ***Site Unmanned must call 2 hours before coming***', '', '0000-00-00', 20287, '', NULL), (20288, 2291, '', '', '', '0000-00-00', 20288, '', NULL), (20289, 2292, 'S/N CBR1', 'Soiltest Dial Indicator (moved) (D-6027)', 'Range: 1 inch', '2012-02-14', 20289, '2/14/2012', NULL), (20290, 2293, '', '', 'Invoices to: ap@ctleng.com', '0000-00-00', 20290, '', NULL), (20291, 2294, '', 'Fax copy of Cert to Job Site Mail Original to Billing address.', '', '0000-00-00', 20291, '', NULL), (20292, 2295, '', '', '', '0000-00-00', 20292, '', NULL), (20293, 2296, '', ' ***2 Year Schedule***', '', '0000-00-00', 20293, '', NULL), (20294, 2297, '', '', '', '0000-00-00', 20294, '', NULL), (20295, 2298, '', '', '', '0000-00-00', 20295, '', NULL), (20296, 2299, '', '', '', '0000-00-00', 20296, '', NULL), (20297, 2300, '', '', '', '0000-00-00', 20297, '', NULL), (20298, 2301, '', '', '', '0000-00-00', 20298, '', NULL), (20299, 2302, '', '', '', '0000-00-00', 20299, '', NULL), (20300, 2303, '', '', '', '0000-00-00', 20300, '', NULL), (20301, 2304, '', '', '', '0000-00-00', 20301, '', NULL), (20302, 2305, '', '', '', '0000-00-00', 20302, '', NULL), (20303, 2306, '', '', '', '0000-00-00', 20303, '', NULL), (20304, 2307, '', '', '', '0000-00-00', 20304, '', NULL), (20305, 2308, '', '', '', '0000-00-00', 20305, '', NULL), (20306, 2309, '', '', '', '0000-00-00', 20306, '', NULL), (20307, 2310, '', '', '', '0000-00-00', 20307, '', NULL), (20308, 2311, '', ' ***ISO Requested***', '', '0000-00-00', 20308, '', NULL), (20309, 2312, 'S/N PS-2437', 'Geotac Pressure Transducer (D-5720)', 'Range: 200 psi ', '2008-06-10', 20309, '6/10/2008', NULL), (20310, 2313, '', 'Putting in archived database, machines moved to diff. locations.', '', '0000-00-00', 20310, '', NULL), (20311, 2314, '', '', '', '0000-00-00', 20311, '', NULL), (20312, 2315, '', '***QA Manual Required*** ***Nuclear***', '', '0000-00-00', 20312, '', NULL), (20313, 2316, '', 'Certs to billing as per dave', '', '0000-00-00', 20313, '', NULL), (20314, 2317, 'S/N 3609', ' w/United EZ 2-2 Extensometer - Channel #0 ', 'Range: 0.02 in/in (2\" GL) (E-83)', '2013-01-21', 20314, '1/21/2013', NULL), (20315, 2318, '', 'As per customer, no longer uses this equipment. Putting in ', 'archived database.', '0000-00-00', 20315, '', NULL), (20316, 2319, '', '', '', '0000-00-00', 20316, '', NULL), (20317, 2320, '', '', '', '0000-00-00', 20317, '', NULL), (20318, 2321, 'S/N 81325-17', 'Soiltest CBR Single Proving Ring (E-4 & Man Specs)', 'Range: 5K', '2009-05-13', 20318, '5/13/2009', NULL), (20319, 2322, 'S/N 1005', 'Hogentogler Dial Indicator (OOS) (D-6027)', 'Range: 1 Inch', '2007-05-22', 20319, '5/22/2007', NULL), (20320, 2323, '', '', '', '0000-00-00', 20320, '', NULL), (20321, 2324, 'S/N 1051 (SOLD)', 'Satec MK3-300-HVL Speed Control (Man Specs) ', 'Range: 0.125\" per min / 1\" per min ', '2014-09-16', 20321, '9/16/2014', NULL), (20322, 2325, '', '', '', '0000-00-00', 20322, '', NULL), (20323, 2326, '', '', '', '0000-00-00', 20323, '', NULL), (20324, 2327, '', '', '', '0000-00-00', 20324, '', NULL), (20325, 2328, '', 'Putting in archived database; no longer uses our company.', '', '0000-00-00', 20325, '', NULL), (20326, 2329, '', '', '', '0000-00-00', 20326, '', NULL), (20327, 2330, '', '', '', '0000-00-00', 20327, '', NULL), (20328, 2331, '', '', '', '0000-00-00', 20328, '', NULL), (20329, 2332, '', '', '', '0000-00-00', 20329, '', NULL), (20330, 2333, '', '', '', '0000-00-00', 20330, '', NULL), (20331, 2334, '', '', '', '0000-00-00', 20331, '', NULL), (20332, 2335, '', '', '', '0000-00-00', 20332, '', NULL), (20333, 2336, '', '****Send certs to job site address*****', '', '0000-00-00', 20333, '', NULL), (20334, 2337, '', '', '', '0000-00-00', 20334, '', NULL), (20335, 2338, 'S/N PG10 ', 'Wika Pressure Gauge (D-5720)', 'Range: 60 PSI', '2009-02-27', 20335, '2/27/2009', NULL), (20336, 2339, '', '', '', '0000-00-00', 20336, '', NULL), (20337, 2340, '', '***S/N 01303 Pot to adjust is behind cover, below display. Center ', 'Pot Cal right Pot Zero***', '0000-00-00', 20337, '', NULL), (20338, 2341, '', '', '', '0000-00-00', 20338, '', NULL), (20339, 2342, '', '', '', '0000-00-00', 20339, '', NULL), (20340, 2343, '', '', '', '0000-00-00', 20340, '', NULL), (20341, 2344, '', '', '', '0000-00-00', 20341, '', NULL), (20342, 2345, '', '', '', '0000-00-00', 20342, '', NULL), (20343, 2346, '', '', '', '0000-00-00', 20343, '', NULL), (20344, 2347, '', '', '', '0000-00-00', 20344, '', NULL), (20345, 2348, '', '', '', '0000-00-00', 20345, '', NULL), (20346, 2349, '', '', '', '0000-00-00', 20346, '', NULL), (20347, 2350, '', '', '', '0000-00-00', 20347, '', NULL), (20348, 2351, ' ***ISO Requested***', ' DO NOT SCHEDULE FOR TUESDAYS', ' Comp. Password P@SSW0RD', '0000-00-00', 20348, '', NULL), (20349, 2352, '', '', '', '0000-00-00', 20349, '', NULL), (20350, 2353, '', '', '', '0000-00-00', 20350, '', NULL), (20351, 2354, '', '', '', '0000-00-00', 20351, '', NULL), (20352, 2355, '', '', '', '0000-00-00', 20352, '', NULL), (20353, 2356, '', '', '', '0000-00-00', 20353, '', NULL), (20354, 2357, '', '', '', '0000-00-00', 20354, '', NULL), (20355, 2358, '', '', '', '0000-00-00', 20355, '', NULL), (20356, 2359, '', '', '', '0000-00-00', 20356, '', NULL), (20357, 2360, '', '', '', '0000-00-00', 20357, '', NULL), (20358, 2361, '', 'Putting in archived database.', '', '0000-00-00', 20358, '', NULL), (20359, 2362, '', '', '', '0000-00-00', 20359, '', NULL), (20360, 2363, '', '', '', '0000-00-00', 20360, '', NULL), (20361, 2364, '', 'Putting in archived database', '', '0000-00-00', 20361, '', NULL), (20362, 2365, '', 'Email invoice to bstvendor@gtaeng.com in PDF form DONT MAIL', '', '0000-00-00', 20362, '', NULL), (20363, 2366, '', 'Must have Project managers name and project number', '', '0000-00-00', 20363, '', NULL), (20364, 2367, '', '', '', '0000-00-00', 20364, '', NULL), (20365, 2368, '', '', '', '0000-00-00', 20365, '', NULL), (20366, 2369, '', 'Putting in archived database.', '', '0000-00-00', 20366, '', NULL), (20367, 2370, '', 'have a PO#, ship to address & First & Last name of Essroc employee', '', '0000-00-00', 20367, '', NULL), (20368, 2371, '', '', '', '0000-00-00', 20368, '', NULL), (20369, 2372, '', '', '', '0000-00-00', 20369, '', NULL), (20370, 2373, '', '', '', '0000-00-00', 20370, '', NULL), (20371, 2374, '', '', '', '0000-00-00', 20371, '', NULL), (20372, 2375, '', '', '', '0000-00-00', 20372, '', NULL), (20373, 2376, '', '', '', '0000-00-00', 20373, '', NULL), (20374, 2377, '', '', '', '0000-00-00', 20374, '', NULL), (20375, 2378, '', '*** Paying with Credit Card ***', '', '0000-00-00', 20375, '', NULL), (20376, 2379, '', '*** Paying with Credit Card ***', '', '0000-00-00', 20376, '', NULL), (20377, 2380, '', '', '', '0000-00-00', 20377, '', NULL), (20378, 2381, '', '', '', '0000-00-00', 20378, '', NULL), (20379, 2382, '', '', '', '0000-00-00', 20379, '', NULL), (20380, 2383, '', '', '', '0000-00-00', 20380, '', NULL), (20381, 2384, '', '', '', '0000-00-00', 20381, '', NULL), (20382, 2385, '', '', '', '0000-00-00', 20382, '', NULL), (20383, 2386, '', '', '', '0000-00-00', 20383, '', NULL), (20384, 2387, '', 'Putting in archived database.', '', '0000-00-00', 20384, '', NULL), (20385, 2388, '', '', '', '0000-00-00', 20385, '', NULL), (20386, 2389, '', '', '', '0000-00-00', 20386, '', NULL), (20387, 2390, '', '', '', '0000-00-00', 20387, '', NULL), (20388, 2391, '', ' Any invoice over $5000 would need a PO#', '', '0000-00-00', 20388, '', NULL), (20389, 2392, '', '', '', '0000-00-00', 20389, '', NULL), (20390, 2393, 'S/N 794', 'Durham Geo Pressure Transducer w/ E-405 Digital (D-5720)', 'Range: 150 PSI ', '2015-10-07', 20390, '10/7/2015', NULL), (20391, 2394, '', '***ISO Requested*** ***continued on next page ***', '', '0000-00-00', 20391, '', NULL), (20392, 2395, '', '', '', '0000-00-00', 20392, '', NULL), (20393, 2396, '', 'continued on next page......', '', '0000-00-00', 20393, '', NULL), (20394, 2397, '', '', '', '0000-00-00', 20394, '', NULL), (20395, 2398, '', '', '', '0000-00-00', 20395, '', NULL), (20396, 2399, '', '', '', '0000-00-00', 20396, '', NULL), (20397, 2400, '', '', '', '0000-00-00', 20397, '', NULL), (20398, 2401, 'S/N 50819894', ' w/ Micro Measurement HS-10 LVDT (D-6027) ', 'Range: 0.4 inch', '2015-05-12', 20398, '5/12/2015', NULL), (20399, 2402, '', '', '', '0000-00-00', 20399, '', NULL), (20400, 2403, '', 'Putting in archived database.', '', '0000-00-00', 20400, '', NULL), (20401, 2404, 'S/N 15089', 'Tetsmark CM-2500-LD Digital Compression Machine (E-4) OOS', 'Range: 2.5K to 250K', '2012-12-06', 20401, '12/6/2012', NULL), (20402, 2405, '', 'Putting in archived database.', '', '0000-00-00', 20402, '', NULL), (20403, 2406, '', '', '', '0000-00-00', 20403, '', NULL), (20404, 2407, '', '', '', '0000-00-00', 20404, '', NULL), (20405, 2408, '', '', '', '0000-00-00', 20405, '', NULL), (20406, 2409, '', '', '', '0000-00-00', 20406, '', NULL), (20407, 2410, '', '', '', '0000-00-00', 20407, '', NULL), (20408, 2411, '', '', '', '0000-00-00', 20408, '', NULL), (20409, 2412, '', '', '', '0000-00-00', 20409, '', NULL), (20410, 2413, 'S/N 2001295', 'ELE 35-1475 Type N Hammer (C-805)', 'Range: 78 to 82', '2011-02-16', 20410, '2/16/2011', NULL), (20411, 2414, '', '', '', '0000-00-00', 20411, '', NULL), (20412, 2415, '', '', '', '0000-00-00', 20412, '', NULL), (20413, 2416, '', '', '', '0000-00-00', 20413, '', NULL), (20414, 2417, '', '', '', '0000-00-00', 20414, '', NULL), (20415, 2418, '', '', '', '0000-00-00', 20415, '', NULL), (20416, 2419, '', '', '', '0000-00-00', 20416, '', NULL), (20417, 2420, '', '', '', '0000-00-00', 20417, '', NULL), (20418, 2421, '', '', '', '0000-00-00', 20418, '', NULL), (20419, 2422, '', '', '', '0000-00-00', 20419, '', NULL), (20420, 2423, '', '', '', '0000-00-00', 20420, '', NULL), (20421, 2424, '', '', '', '0000-00-00', 20421, '', NULL), (20422, 2425, '', '', '', '0000-00-00', 20422, '', NULL), (20423, 2426, '', '', '', '0000-00-00', 20423, '', NULL), (20424, 2427, '', '', '', '0000-00-00', 20424, '', NULL), (20425, 2428, '', '', '', '0000-00-00', 20425, '', NULL), (20426, 2429, 'S/N G6520', 'ELE Triflex 2 Pressure Transducer (D-6027)', 'Range: 150 PSI', '2009-01-22', 20426, '1/22/2009', NULL), (20427, 2430, '', '', '', '0000-00-00', 20427, '', NULL), (20428, 2431, '', '', '', '0000-00-00', 20428, '', NULL), (20429, 2432, '', '', '', '0000-00-00', 20429, '', NULL), (20430, 2433, '', '', '', '0000-00-00', 20430, '', NULL), (20431, 2434, '', '', 'Putting in archived database.', '0000-00-00', 20431, '', NULL), (20432, 2435, '', '', '', '0000-00-00', 20432, '', NULL), (20433, 2436, '', '', '', '0000-00-00', 20433, '', NULL), (20434, 2437, '', '', '', '0000-00-00', 20434, '', NULL), (20435, 2438, '', '', '', '0000-00-00', 20435, '', NULL), (20436, 2439, '', '', '', '0000-00-00', 20436, '', NULL), (20437, 2440, '', '', '', '0000-00-00', 20437, '', NULL), (20438, 2441, '', '', '', '0000-00-00', 20438, '', NULL), (20439, 2442, '', '', '', '0000-00-00', 20439, '', NULL), (20440, 2443, '', '', '', '0000-00-00', 20440, '', NULL), (20441, 2444, '', '', '', '0000-00-00', 20441, '', NULL), (20442, 2445, '', '', '', '0000-00-00', 20442, '', NULL), (20443, 2446, 'S/N 5996', 'Soiltest Single Proving Ring (E4-03) (SOLD)', 'Range: 2,000 lbs', '2005-12-19', 20443, '12/19/2005', NULL), (20444, 2447, '', '', '', '0000-00-00', 20444, '', NULL), (20445, 2448, '', '', '', '0000-00-00', 20445, '', NULL), (20446, 2449, '', '', '', '0000-00-00', 20446, '', NULL), (20447, 2450, '', '', '', '0000-00-00', 20447, '', NULL), (20448, 2451, '', '', '', '0000-00-00', 20448, '', NULL), (20449, 2452, '', '', '', '0000-00-00', 20449, '', NULL), (20450, 2453, '', '', '', '0000-00-00', 20450, '', NULL), (20451, 2454, '', '', '', '0000-00-00', 20451, '', NULL), (20452, 2455, '', '', '', '0000-00-00', 20452, '', NULL), (20453, 2456, '', '', '', '0000-00-00', 20453, '', NULL), (20454, 2457, '', '', '', '0000-00-00', 20454, '', NULL), (20455, 2458, '', '', '', '0000-00-00', 20455, '', NULL), (20456, 2459, '', '', '', '0000-00-00', 20456, '', NULL), (20457, 2460, '', 'jason.hardy@naes.com', '', '0000-00-00', 20457, '', NULL), (20458, 2461, 'S/N A13178', ' w/ Interface Digital UMC-600-1-A', '', '2012-03-20', 20458, '3/20/2012', NULL), (20459, 2462, 'S/N 100752A', ' w/ Tovey Load Cell Plus Y Axis - T & C', 'Range: 10K ', '2012-03-12', 20459, '3/12/2012', NULL), (20460, 2463, '', '', '', '0000-00-00', 20460, '', NULL), (20461, 2464, '', '', '', '0000-00-00', 20461, '', NULL), (20462, 2465, 'S/N Ram 7', ' w/ Simplex Ram ', 'Range: 10K (9,000 PSI)', '2011-06-29', 20462, '6/29/2011', NULL), (20463, 2466, '', '', '', '0000-00-00', 20463, '', NULL), (20464, 2467, '', '', '', '0000-00-00', 20464, '', NULL), (20465, 2468, '', '', '', '0000-00-00', 20465, '', NULL), (20466, 2469, '', 'Put month, Day & Year on Stickers', '', '0000-00-00', 20466, '', NULL), (20467, 2470, '', '', '', '0000-00-00', 20467, '', NULL), (20468, 2471, '', 'Certs to billing attn: Mark Moyer', '', '0000-00-00', 20468, '', NULL), (20469, 2472, '', '', '', '0000-00-00', 20469, '', NULL), (20470, 2473, 'S/N 102 ', 'Fowler Mdl. 52-520-210-0 Dial Indicator (D-6027)', 'Range: 2 inch ', '2008-08-13', 20470, '8/13/2008', NULL), (20471, 2474, '', '', '', '0000-00-00', 20471, '', NULL), (20472, 2475, '', '', '', '0000-00-00', 20472, '', NULL), (20473, 2476, '', 'Send Certs to Job Site.', '', '0000-00-00', 20473, '', NULL), (20474, 2477, '', '', ' *ISO Requested*', '0000-00-00', 20474, '', NULL), (20475, 2478, '', '', '', '0000-00-00', 20475, '', NULL), (20476, 2479, '', '', '', '0000-00-00', 20476, '', NULL), (20477, 2480, '', '', '', '0000-00-00', 20477, '', NULL), (20478, 2481, '', '', '', '0000-00-00', 20478, '', NULL), (20479, 2482, '', '', '', '0000-00-00', 20479, '', NULL), (20480, 2483, 'SN 101', 'Trautwein Model MVFS Pressure Transducer (OOS) (D-5720)', 'Range: 150 PSI', '2005-05-31', 20480, '5/31/2005', NULL), (20481, 2484, 'S/N 13', 'Starrett Dial Indicator Model: 25-631 (Done in HC Nut. Shop)(D-6027)', 'Range: 1 Inch', '2006-06-01', 20481, '6/1/2006', NULL), (20482, 2485, '', '', '', '0000-00-00', 20482, '', NULL), (20483, 2486, '', '', '', '0000-00-00', 20483, '', NULL), (20484, 2487, 'S/N 6324-9207', 'Soiltest CT 800 Digital Compression Machine(OUT OF SVC) (E-4)', 'Range: 200K', '2005-06-02', 20484, '6/2/2005', NULL), (20485, 2488, '', '', '', '0000-00-00', 20485, '', NULL), (20486, 2489, '', '', '', '0000-00-00', 20486, '', NULL), (20487, 2490, '', '', '', '0000-00-00', 20487, '', NULL), (20488, 2491, 'S/N 595168', 'ELE Pressure Transducer--Channel# 8 (D-5720)', 'Range: 150 psi', '2008-11-17', 20488, '11/17/2008', NULL), (20489, 2492, '', '', 'Putting in archived database.', '0000-00-00', 20489, '', NULL), (20490, 2493, 'S/N 110172-6', 'Wykeham Farrance Mdl. 24251 Deflection Frame #3/Channel 19 ', 'Range: 1/4 TSF to 16 TSF ', '2009-01-21', 20490, '1/21/2009', NULL), (20491, 2494, '', ' ***Certs sent to Oldcastle job site*** ', '', '0000-00-00', 20491, '', NULL), (20492, 2495, '', '', '', '0000-00-00', 20492, '', NULL), (20493, 2496, '', '', '', '0000-00-00', 20493, '', NULL), (20494, 2497, '', '', '', '0000-00-00', 20494, '', NULL), (20495, 2498, '', '', '', '0000-00-00', 20495, '', NULL), (20496, 2499, '', '', '', '0000-00-00', 20496, '', NULL), (20497, 2500, '', '', '', '0000-00-00', 20497, '', NULL), (20498, 2501, '', '', '', '0000-00-00', 20498, '', NULL), (20499, 2502, '', '', '', '0000-00-00', 20499, '', NULL), (20500, 2503, '', '', '', '0000-00-00', 20500, '', NULL), (20501, 2504, '', '', '', '0000-00-00', 20501, '', NULL), (20502, 2505, '', 'email invoices to mikzinvoices@mackconcrete.com', '', '0000-00-00', 20502, '', NULL), (20503, 2506, 'S/N 05010 ', 'CSI Model LC-40 Hydraulic Load Cell OOS (E-4 & 2%)(NC#2)', 'Range: 40K', '2009-01-26', 20503, '1/26/2009', NULL), (20504, 2507, '', '', '', '0000-00-00', 20504, '', NULL), (20505, 2508, 'S/N ', 'Karol Warner S-Type Load Cell LVDT (D-6027)', 'Range: 10K', NULL, 20505, 'New', NULL), (20506, 2509, 'S/N 116434A', 'Interface Load Cell, Model: 1210 AJ-500-B (OOS) (E-4) ', 'Range: 500 lbs ', '2005-10-05', 20506, '10/5/2005', NULL), (20507, 2510, '', '', '', '0000-00-00', 20507, '', NULL), (20508, 2511, 'S/N 99-594', 'Stressing Jack Hercules HSJ', 'Range: Pre. 5,000 lbs / Final 60,000 lbs', '2013-01-03', 20508, '1/3/2013', NULL), (20509, 2512, '', '', '', '0000-00-00', 20509, '', NULL), (20510, 2513, '', '', '', '0000-00-00', 20510, '', NULL), (20511, 2514, '', '', '', '0000-00-00', 20511, '', NULL), (20512, 2515, '', '', '', '0000-00-00', 20512, '', NULL), (20513, 2516, '', '', '', '0000-00-00', 20513, '', NULL), (20514, 2517, '', '', '', '0000-00-00', 20514, '', NULL), (20515, 2518, '', '', '', '0000-00-00', 20515, '', NULL), (20516, 2519, 'S/N 20410051', 'Com-Ten Toploader Model USB2A2 95 Series (E-4)', 'Range:', NULL, 20516, 'New', NULL), (20517, 2520, '', '', '', '0000-00-00', 20517, '', NULL), (20518, 2521, '', '', '', '0000-00-00', 20518, '', NULL), (20519, 2522, '', '', '', '0000-00-00', 20519, '', NULL), (20520, 2523, '', '', '', '0000-00-00', 20520, '', NULL), (20521, 2524, '', '', '', '0000-00-00', 20521, '', NULL), (20522, 2525, '', '', '', '0000-00-00', 20522, '', NULL), (20523, 2526, '', '', '', '0000-00-00', 20523, '', NULL), (20524, 2527, '', '', '', '0000-00-00', 20524, '', NULL), (20525, 2528, '', '', '', '0000-00-00', 20525, '', NULL), (20526, 2529, '', '', '', '0000-00-00', 20526, '', NULL), (20527, 2530, '', '', '', '0000-00-00', 20527, '', NULL), (20528, 2531, '', '', '', '0000-00-00', 20528, '', NULL), (20529, 2532, '', '', '', '0000-00-00', 20529, '', NULL), (20530, 2533, '', 'Billin to Applus, Certs in Quality Inspections Name', '', '0000-00-00', 20530, '', NULL), (20531, 2534, '', '', '', '0000-00-00', 20531, '', NULL), (20532, 2535, '', 'Billing to Applus Certs in Quality Inspections Name', '', '0000-00-00', 20532, '', NULL), (20533, 2536, '', 'Billing to Applus Certs in Quality Inspections Name', '', '0000-00-00', 20533, '', NULL), (20534, 2537, 'S/N AEY4027', 'Adam ADK-20 Scale (ID# Q-2470) (E-898) ', 'Range: 0.2 Kg to 20 Kg', '2009-01-28', 20534, '1/28/2009', NULL), (20535, 2538, '', '', 'Putting in archived database.', '0000-00-00', 20535, '', NULL), (20536, 2539, '', '', 'Putting in archived database.', '0000-00-00', 20536, '', NULL), (20537, 2540, '', '', '', '0000-00-00', 20537, '', NULL), (20538, 2541, '', 'Copy of invoice needs E-mailed to card.payables@rescoproducts.com', ' (VCN master card Account)', '0000-00-00', 20538, '', NULL), (20539, 2542, '', '', '', '0000-00-00', 20539, '', NULL), (20540, 2543, '', '', '', '0000-00-00', 20540, '', NULL), (20541, 2544, '', '', '', '0000-00-00', 20541, '', NULL), (20542, 2545, '', '', '', '0000-00-00', 20542, '', NULL), (20543, 2546, '', '', '', '0000-00-00', 20543, '', NULL), (20544, 2547, '', '***SPECIAL SET-UP NEEDED, REFER TO FILE FOR FUTURE', 'REFERENCE S/N 111405***', '0000-00-00', 20544, '', NULL), (20545, 2548, '', '', '', '0000-00-00', 20545, '', NULL), (20546, 2549, '', '', '', '0000-00-00', 20546, '', NULL), (20547, 2550, '', '', '', '0000-00-00', 20547, '', NULL), (20548, 2551, '', '', '', '0000-00-00', 20548, '', NULL), (20549, 2552, '', '', '', '0000-00-00', 20549, '', NULL), (20550, 2553, 'S/N ', ' w/ Extensometer (E-83)', 'Range: ', NULL, 20550, 'New', NULL), (20551, 2554, '', '', '', '0000-00-00', 20551, '', NULL), (20552, 2555, '', '', '', '0000-00-00', 20552, '', NULL), (20553, 2556, '', '', '', '0000-00-00', 20553, '', NULL), (20554, 2557, '', '', '', '0000-00-00', 20554, '', NULL), (20555, 2558, '', '', '', '0000-00-00', 20555, '', NULL), (20556, 2559, 'S/N 1994A', 'Forney PT-75-P Pipe Tester with 2 gauges (E-4 & C-497)', 'Range 30K / 150K', '2013-05-21', 20556, '5/21/2013', NULL), (20557, 2560, 'S/N GB0209031', 'Controls Digital Compression Machine w/Gauge Buster(Moved) (E-4)', 'Range: 2.5K to 250K', '2007-12-05', 20557, '12/5/2007', NULL), (20558, 2561, '', '', '', '0000-00-00', 20558, '', NULL), (20559, 2562, '', '', '', '0000-00-00', 20559, '', NULL), (20560, 2563, '', ' ***ISO Requested***', '', '0000-00-00', 20560, '', NULL), (20561, 2564, 'S/N', 'Proving Ring (E-4 & Man Specs)', 'Range: ', NULL, 20561, 'New', NULL), (20562, 2565, '', '', '', '0000-00-00', 20562, '', NULL), (20563, 2566, '', '', '', '0000-00-00', 20563, '', NULL), (20564, 2567, '', '', '', '0000-00-00', 20564, '', NULL), (20565, 2568, '', '', '', '0000-00-00', 20565, '', NULL), (20566, 2569, 'S/N 0042', 'RST Instruments Mdl. C-106 Pressure Transducer (D-5720) (OOS)', 'Range 200 PSI', '2012-05-02', 20566, '5/2/2012', NULL), (20567, 2570, '', '', '', '0000-00-00', 20567, '', NULL), (20568, 2571, '', '', '', '0000-00-00', 20568, '', NULL), (20569, 1, ' ', ' ', ' ', '0000-00-00', 20569, '', NULL), (20570, 2, '', ' *** 2 Year Interval***', '', '0000-00-00', 20570, '', NULL), (20571, 3, '', '', '', '0000-00-00', 20571, '', NULL), (20572, 4, 'S/N 02-035', 'Teco QL3 LVDT (D6027)', 'Range: 1 inch ', '2010-05-18', 20572, '5/18/2010', NULL), (20573, 5, '', '', '', '0000-00-00', 20573, '', NULL), (20574, 6, '', '', '', '0000-00-00', 20574, '', NULL), (20575, 7, '', '', '', '0000-00-00', 20575, '', NULL), (20576, 8, '', '', '', '0000-00-00', 20576, '', NULL), (20577, 9, '', '', '', '0000-00-00', 20577, '', NULL), (20578, 10, 'S/N 02075188', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 40K', '2008-11-25', 20578, '11/25/2008', NULL), (20579, 11, '', '', '', '0000-00-00', 20579, '', NULL), (20580, 12, '', '', '', '0000-00-00', 20580, '', NULL), (20581, 13, '', '', '', '0000-00-00', 20581, '', NULL), (20582, 14, '', '', '', '0000-00-00', 20582, '', NULL), (20583, 15, 'S/N 13527', ' w/ LVDT (D-6027)', 'Range: 1 inch', '2013-05-13', 20583, '5/13/2013', NULL), (20584, 16, '', '', '', '0000-00-00', 20584, '', NULL), (20585, 17, '', '', '', '0000-00-00', 20585, '', NULL), (20586, 18, '', ' ***Instron 32K Max per cutomer***', '', '0000-00-00', 20586, '', NULL), (20587, 19, '', '', '', '0000-00-00', 20587, '', NULL), (20588, 20, '', '', '', '0000-00-00', 20588, '', NULL), (20589, 21, '', '', '', '0000-00-00', 20589, '', NULL), (20590, 22, '', ' *Send Certs to Job Site*', '', '0000-00-00', 20590, '', NULL), (20591, 23, '', '', '', '0000-00-00', 20591, '', NULL), (20592, 24, '', '', '', '0000-00-00', 20592, '', NULL), (20593, 25, '', '', '', '0000-00-00', 20593, '', NULL), (20594, 26, '', ' \"***ISO Requested***', '', '0000-00-00', 20594, '', NULL), (20595, 27, '', '', '', '0000-00-00', 20595, '', NULL), (20596, 28, '', '', '', '0000-00-00', 20596, '', NULL), (20597, 29, '', '** Send Certs to PO Box 488 (Billing Address)**', '', '0000-00-00', 20597, '', NULL), (20598, 30, '', '', '', '0000-00-00', 20598, '', NULL), (20599, 31, '', ' *Send Certs to Billing Address**', '', '0000-00-00', 20599, '', NULL), (20600, 32, '', '', '', '0000-00-00', 20600, '', NULL), (20601, 33, '', '', '', '0000-00-00', 20601, '', NULL), (20602, 34, '', '', '', '0000-00-00', 20602, '', NULL), (20603, 35, '', '', '', '0000-00-00', 20603, '', NULL), (20604, 36, '', ' ***High RF, their digital or ours goes crazy intermitanley***', '', '0000-00-00', 20604, '', NULL), (20605, 37, '', ' *** ISO Requested* **', '', '0000-00-00', 20605, '', NULL), (20606, 38, 'S/N 648', ' w/ Tension Load Cell (E-4)', 'Range: 10K', '2006-08-22', 20606, '8/22/2006', NULL), (20607, 39, '', '', '', '0000-00-00', 20607, '', NULL), (20608, 40, '', '', '', '0000-00-00', 20608, '', NULL), (20609, 41, '', ' \"***ISO Requested***', '', '0000-00-00', 20609, '', NULL), (20610, 42, '', ' ***ISO Requested***', '', '0000-00-00', 20610, '', NULL), (20611, 43, '', '', '', '0000-00-00', 20611, '', NULL), (20612, 44, '', '', '', '0000-00-00', 20612, '', NULL), (20613, 45, '', '', '', '0000-00-00', 20613, '', NULL), (20614, 46, '', '', '', '0000-00-00', 20614, '', NULL), (20615, 47, '', '', '', '0000-00-00', 20615, '', NULL), (20616, 48, '', '', '', '0000-00-00', 20616, '', NULL), (20617, 49, 'S/N 523725', 'Satec Emery Mdl. UVI/V Universal Testing Machine (Recorder) (E-4)', 'Range: 4.8K/24K/48K/120K (OOS)', '2008-10-21', 20617, '10/21/2008', NULL), (20618, 50, '', ' ** Do Every 3 Years**', '', '0000-00-00', 20618, '', NULL), (20619, 51, '', '', '', '0000-00-00', 20619, '', NULL), (20620, 52, '', '', '', '0000-00-00', 20620, '', NULL), (20621, 53, '', '***Must have Calibration Factors & Offsets on Certification***', '', '0000-00-00', 20621, '', NULL), (20622, 54, '', '', '', '0000-00-00', 20622, '', NULL), (20623, 55, '', '', '', '0000-00-00', 20623, '', NULL), (20624, 56, 'S/N 398 ', 'Pine Instrument Mdl. 850 Asphalt Tester (E-4 & 2%) (OOS)', 'Range: 2.5K/5K/10K', '2010-11-08', 20624, '11/8/2010', NULL), (20625, 57, '', '', '', '0000-00-00', 20625, '', NULL), (20626, 58, '', ' ***ISO Requested***', '', '0000-00-00', 20626, '', NULL), (20627, 59, '', '*** Schedule for Aug & Nov. try to ProRate next Aug.***', '', '0000-00-00', 20627, '', NULL), (20628, 60, 'S/N 1059', ' w / Diamond Load Cell (E-4)', 'Range: 1K (Channel #3)', '2012-11-27', 20628, '11/27/2012', NULL), (20629, 61, 'S/N 980863903', 'Humboldt BG2600-0-16001 Dial Indicator (D-6027)', 'Range: 0.6 inches ', '2012-11-27', 20629, '11/27/2012', NULL), (20630, 62, 'S/N 97021', 'Forney F-250F-CS-100-1S Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Moved) ', '2012-11-29', 20630, '11/29/2012', NULL), (20631, 63, '', '', '', '0000-00-00', 20631, '', NULL), (20632, 64, '', '', '', '0000-00-00', 20632, '', NULL), (20633, 65, '', ' ***ISO Requested***', '', '0000-00-00', 20633, '', NULL), (20634, 66, '', '', '', '0000-00-00', 20634, '', NULL), (20635, 67, '', '', '', '0000-00-00', 20635, '', NULL), (20636, 68, '', '', '', '0000-00-00', 20636, '', NULL), (20637, 69, '', '', '', '0000-00-00', 20637, '', NULL), (20638, 70, '', '', '', '0000-00-00', 20638, '', NULL), (20639, 71, '', '', '', '0000-00-00', 20639, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (20640, 72, '', '', '', '0000-00-00', 20640, '', NULL), (20641, 73, '', '', '', '0000-00-00', 20641, '', NULL), (20642, 74, '', 'Send Certifications to: Job Site Address, Attn: Craig Pasternak', '', '0000-00-00', 20642, '', NULL), (20643, 75, '', '', '', '0000-00-00', 20643, '', NULL), (20644, 76, '', '', '', '0000-00-00', 20644, '', NULL), (20645, 77, '', '', '', '0000-00-00', 20645, '', NULL), (20646, 78, '', '', '', '0000-00-00', 20646, '', NULL), (20647, 79, '', ' ***ISO Requested***', '', '0000-00-00', 20647, '', NULL), (20648, 80, '', ' \"***Must have U of A Requisition to be paid***', '(Only if Using PO as per Dave)', '0000-00-00', 20648, '', NULL), (20649, 81, '', '', '', '0000-00-00', 20649, '', NULL), (20650, 82, 'S/N 29871', 'Ohaus DS 20L Scale (OOS) (E-989)', 'Range: ', NULL, 20650, 'New', NULL), (20651, 83, '', '', '', '0000-00-00', 20651, '', NULL), (20652, 84, '', '', '', '0000-00-00', 20652, '', NULL), (20653, 85, '', '', '', '0000-00-00', 20653, '', NULL), (20654, 86, '', '', '', '0000-00-00', 20654, '', NULL), (20655, 87, '', '', '', '0000-00-00', 20655, '', NULL), (20656, 88, 'S/N 65116-041006', 'Forney FT-31-CS-100-1S Dig.Comp. Machine (SOLD) ', 'Range: 2.5K to 250K', '2006-04-12', 20656, '4/12/2006', NULL), (20657, 89, 'S/N 68247', 'Forney FT-40-DR Compression Machine (SOLD)', 'Range: 30/250K', '2006-02-08', 20657, '2/8/2006', NULL), (20658, 90, '', 'Must get PO number before calibrating from Main Office or work ', '', '0000-00-00', 20658, '', NULL), (20659, 91, 'S/N 595158', 'ELE Pressure Transducer--Channel# 11 (OOS) (D-5720)', 'Range: 150 psi', '2006-11-28', 20659, '11/28/2006', NULL), (20660, 92, '', '', '', '0000-00-00', 20660, '', NULL), (20661, 93, '', '', '', '0000-00-00', 20661, '', NULL), (20662, 94, '', '', '', '0000-00-00', 20662, '', NULL), (20663, 95, '', '', '', '0000-00-00', 20663, '', NULL), (20664, 96, '', '', '', '0000-00-00', 20664, '', NULL), (20665, 97, '', '', '', '0000-00-00', 20665, '', NULL), (20666, 98, '', '', '', '0000-00-00', 20666, '', NULL), (20667, 99, '', '', '', '0000-00-00', 20667, '', NULL), (20668, 100, '', ' ****Put ID#\'s on Cert & Labels****', '', '0000-00-00', 20668, '', NULL), (20669, 101, '', '', '', '0000-00-00', 20669, '', NULL), (20670, 102, '', '', '', '0000-00-00', 20670, '', NULL), (20671, 103, '', '', '', '0000-00-00', 20671, '', NULL), (20672, 104, '', '', '', '0000-00-00', 20672, '', NULL), (20673, 105, '', '', '', '0000-00-00', 20673, '', NULL), (20674, 106, '', 'grease on connectors or wire switch direct to 110V cord and', '', '0000-00-00', 20674, '', NULL), (20675, 107, '', '', '', '0000-00-00', 20675, '', NULL), (20676, 108, 'S/N 0701TR75-14', 'Novotechnik TR-75 LVDT (D-6027)', 'Range: 2 Inch ', '2013-03-21', 20676, '3/21/2013', NULL), (20677, 109, ' 06105BALH01003', 'CAS Mdl. SBA-10KLB-I Load Cell w/ Digital 6572 (E-4)', 'Range: 100K', '2009-04-22', 20677, '4/22/2009', NULL), (20678, 110, '', '', '', '0000-00-00', 20678, '', NULL), (20679, 111, '', '', '', '0000-00-00', 20679, '', NULL), (20680, 112, '', ' ***ISO Requested***', '', '0000-00-00', 20680, '', NULL), (20681, 113, '', '', '', '0000-00-00', 20681, '', NULL), (20682, 114, '', '', '', '0000-00-00', 20682, '', NULL), (20683, 115, '', '', '', '0000-00-00', 20683, '', NULL), (20684, 116, '', 'AS FOUND READINGS REQUIRED', '', '0000-00-00', 20684, '', NULL), (20685, 117, '', '', '', '0000-00-00', 20685, '', NULL), (20686, 118, '', '', '', '0000-00-00', 20686, '', NULL), (20687, 119, '', '', '', '0000-00-00', 20687, '', NULL), (20688, 120, '', '', '', '0000-00-00', 20688, '', NULL), (20689, 121, 'S/N 186930', 'Omega Load Cell LC 901 w/ Digital DP-41S (E-4 & PCI)', 'Range: 28K/35K', '2006-06-12', 20689, '6/12/2006', NULL), (20690, 122, '', '', '', '0000-00-00', 20690, '', NULL), (20691, 123, '', '', '', '0000-00-00', 20691, '', NULL), (20692, 124, '', '', '', '0000-00-00', 20692, '', NULL), (20693, 125, '', 'person ordering the services ', '', '0000-00-00', 20693, '', NULL), (20694, 126, '', '', '', '0000-00-00', 20694, '', NULL), (20695, 127, 'S/N 08074257/5', 'Eilon Engineering RON 2501 S-80 Load Cell (ManSp & 0.1% FS)', 'Range: 80 Metric Tons', '2008-04-23', 20695, '4/23/2008', NULL), (20696, 128, '', '', '', '0000-00-00', 20696, '', NULL), (20697, 129, '', '', '', '0000-00-00', 20697, '', NULL), (20698, 130, '', '', '', '0000-00-00', 20698, '', NULL), (20699, 131, '', '', '', '0000-00-00', 20699, '', NULL), (20700, 132, '', '', '', '0000-00-00', 20700, '', NULL), (20701, 133, 'S/N 100026', 'Omega LC1100 (OOS)', '', '0000-00-00', 20701, '', NULL), (20702, 134, '', '', '', '0000-00-00', 20702, '', NULL), (20703, 135, '', '***See if Billing is right or would go to AMEC in Alpharetta, GA***', '', '0000-00-00', 20703, '', NULL), (20704, 136, 'S/N 122', 'Brainard Kilman CM-215 Compression Machine (E-4)', 'Range: 25K / 250K (SOLD)', '2011-05-18', 20704, '5/18/2011', NULL), (20705, 137, 'S/N 87059-98102', 'M & L MLM 450-CS-100-3 Digital Compression Machine (E-4)', 'Range: 4K to 450K (Sold to CSI) ', '2008-11-12', 20705, '11/12/2008', NULL), (20706, 138, '', '', '', '0000-00-00', 20706, '', NULL), (20707, 139, '', '', '', '0000-00-00', 20707, '', NULL), (20708, 140, '', '', '', '0000-00-00', 20708, '', NULL), (20709, 141, '', '', '', '0000-00-00', 20709, '', NULL), (20710, 142, '', '', '', '0000-00-00', 20710, '', NULL), (20711, 143, '', 'Certs: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer', '0000-00-00', 20711, '', NULL), (20712, 144, '', '', '', '0000-00-00', 20712, '', NULL), (20713, 145, '', '', '', '0000-00-00', 20713, '', NULL), (20714, 146, '', '** Must use Lebow System**', '', '0000-00-00', 20714, '', NULL), (20715, 147, '', '', '', '0000-00-00', 20715, '', NULL), (20716, 148, '', '', '', '0000-00-00', 20716, '', NULL), (20717, 149, '', '', '', '0000-00-00', 20717, '', NULL), (20718, 150, '', '', '', '0000-00-00', 20718, '', NULL), (20719, 151, 'S/N BH-0292', 'Soiltest Mdl. MC220 Consolidation Machine(OOS) (E-4 & Man Specs)', 'Range: 1/8 TSF to 22 TSF (AASHTO)', '2008-05-06', 20719, '5/6/2008', NULL), (20720, 152, '', '', '', '0000-00-00', 20720, '', NULL), (20721, 153, '', '', '', '0000-00-00', 20721, '', NULL), (20722, 154, '', '', '', '0000-00-00', 20722, '', NULL), (20723, 155, '', '', '', '0000-00-00', 20723, '', NULL), (20724, 156, '', '', '', '0000-00-00', 20724, '', NULL), (20725, 157, 'S/N E82251', 'Epsilon Model 3542-0050-050-ST Extensometer (E-83) (NOT USING)', 'Range:.001to .25 inches/Gauge Len. 0.5 in', '2004-02-04', 20725, '2/4/2004', NULL), (20726, 158, '', '', '', '0000-00-00', 20726, '', NULL), (20727, 159, '', '', '', '0000-00-00', 20727, '', NULL), (20728, 160, 'S/N 294', 'Durham Geo Linear LVDT (OOS) (D-6027)', 'Range: ', NULL, 20728, 'New', NULL), (20729, 161, '', '', '', '0000-00-00', 20729, '', NULL), (20730, 162, '', ' ***ISO Requested***', '', '0000-00-00', 20730, '', NULL), (20731, 163, '', ' ***Send Cert to Billing Address and E-mail***', 'to matt.manning@jjkennedyinc.com', '0000-00-00', 20731, '', NULL), (20732, 164, '', '', '', '0000-00-00', 20732, '', NULL), (20733, 165, 'S/N 96519 / NC#19', 'HCS HYdraulic Load Cell (E-4)', 'Range: 60K', '2013-07-15', 20733, '7/15/2013', NULL), (20734, 166, 'S/N 03075597/10', 'Eilon Engineering RON 2501 S-25 Load Cell (ManSp & 0.1% FS) ', 'Range: 50K (Arvelor Mittal Steel)', '2008-09-17', 20734, '9/17/2008', NULL), (20735, 167, '', 'Attn: Mr. Mike Pasquale', '', '0000-00-00', 20735, '', NULL), (20736, 168, '', '', '', '0000-00-00', 20736, '', NULL), (20737, 169, '', '', '', '0000-00-00', 20737, '', NULL), (20738, 170, '', '', '', '0000-00-00', 20738, '', NULL), (20739, 171, 'S/N 0061', 'VSL Bond Tester (Corporate) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2009-07-29', 20739, '7/29/2009', NULL), (20740, 172, '', '', '', '0000-00-00', 20740, '', NULL), (20741, 173, '', '', '', '0000-00-00', 20741, '', NULL), (20742, 174, '', '', '', '0000-00-00', 20742, '', NULL), (20743, 175, '', '', '', '0000-00-00', 20743, '', NULL), (20744, 176, '', '', '', '0000-00-00', 20744, '', NULL), (20745, 177, '', '', '', '0000-00-00', 20745, '', NULL), (20746, 178, '', '', '', '0000-00-00', 20746, '', NULL), (20747, 179, '', ' ***Need Customs Waiver*** ', '', '0000-00-00', 20747, '', NULL), (20748, 180, '', '6 Month Schedule Prestress Jacks - ( February & August) ', '', '0000-00-00', 20748, '', NULL), (20749, 181, '', '', '', '0000-00-00', 20749, '', NULL), (20750, 182, '', '', '', '0000-00-00', 20750, '', NULL), (20751, 183, '', '', '', '0000-00-00', 20751, '', NULL), (20752, 184, '', '', '', '0000-00-00', 20752, '', NULL), (20753, 185, '', '', '', '0000-00-00', 20753, '', NULL), (20754, 186, '', '', '', '0000-00-00', 20754, '', NULL), (20755, 187, '', '', '', '0000-00-00', 20755, '', NULL), (20756, 188, '', '', '', '0000-00-00', 20756, '', NULL), (20757, 189, '', '', '', '0000-00-00', 20757, '', NULL), (20758, 190, '', '', '', '0000-00-00', 20758, '', NULL), (20759, 191, 'S/N', ' w/ Hunboldt Speed Control (E2658-11)', 'Range: ', NULL, 20759, 'New', NULL), (20760, 192, '', '', '', '0000-00-00', 20760, '', NULL), (20761, 193, '', '', '', '0000-00-00', 20761, '', NULL), (20762, 194, 'S/N 06223', 'Forney FX 250 F-T Pilot Digital Compression Machine (MOBILE)(E-4)', 'Range: 300K ', '2006-12-06', 20762, '12/6/2006', NULL), (20763, 195, '', '', '', '0000-00-00', 20763, '', NULL), (20764, 196, '', 'Visitor\'s parking lot off Lee Road, side of building, Southwest corner', '', '0000-00-00', 20764, '', NULL), (20765, 197, '', '', '', '0000-00-00', 20765, '', NULL), (20766, 198, '', '', '', '0000-00-00', 20766, '', NULL), (20767, 199, '', ' ***ISO Requested***', '', '0000-00-00', 20767, '', NULL), (20768, 200, 'S/N 20011013', 'Extra Load Cell PSP0040 (OOS) (E-4)', 'Range: 40 lbs', '2005-09-20', 20768, '9/20/2005', NULL), (20769, 201, '', '', '', '0000-00-00', 20769, '', NULL), (20770, 202, '', '', '', '0000-00-00', 20770, '', NULL), (20771, 203, '', '**MUST ASK whoever makes the arrangements for the work to be', '', '0000-00-00', 20771, '', NULL), (20772, 204, '', '', '', '0000-00-00', 20772, '', NULL), (20773, 205, '', '', '', '0000-00-00', 20773, '', NULL), (20774, 206, '', '', '', '0000-00-00', 20774, '', NULL), (20775, 207, '', '', '', '0000-00-00', 20775, '', NULL), (20776, 208, '', '', '', '0000-00-00', 20776, '', NULL), (20777, 209, '', '', '', '0000-00-00', 20777, '', NULL), (20778, 210, '', '', '', '0000-00-00', 20778, '', NULL), (20779, 211, '', '', '', '0000-00-00', 20779, '', NULL), (20780, 212, '', '', '', '0000-00-00', 20780, '', NULL), (20781, 213, '', '', '', '0000-00-00', 20781, '', NULL), (20782, 214, 'S/N T39', 'Simplex RC202 Post Tension Jack w/P22 Pump (OOS)', 'Range: 50K (E-4 & PCI)', '2004-02-16', 20782, '2/16/2004', NULL), (20783, 215, 'S/N', 'Instron 5867 Tensile Machine (E-4)', 'Range: 30 Kn ', NULL, 20783, 'New', NULL), (20784, 216, '', ' Send Certs to Billing Address', '', '0000-00-00', 20784, '', NULL), (20785, 217, '', '', '', '0000-00-00', 20785, '', NULL), (20786, 218, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 20786, '', NULL), (20787, 219, '', '', '', '0000-00-00', 20787, '', NULL), (20788, 220, '', '', '', '0000-00-00', 20788, '', NULL), (20789, 221, '', '', '', '0000-00-00', 20789, '', NULL), (20790, 222, '', '', '', '0000-00-00', 20790, '', NULL), (20791, 223, '', '***ISO Requested***', '', '0000-00-00', 20791, '', NULL), (20792, 224, '', '', '', '0000-00-00', 20792, '', NULL), (20793, 225, '', '', '', '0000-00-00', 20793, '', NULL), (20794, 226, '', '', '', '0000-00-00', 20794, '', NULL), (20795, 227, '', '', '', '0000-00-00', 20795, '', NULL), (20796, 228, 'S/N 21950', 'Soiltest Single Proving Ring', 'Cap: 10K (OOS)', '2000-09-06', 20796, '9/6/2000', NULL), (20797, 229, '', '', '', '0000-00-00', 20797, '', NULL), (20798, 230, '', '', '', '0000-00-00', 20798, '', NULL), (20799, 231, 'S/N 45109', 'Marsh Service Gauge (D-5720)', 'Range: 100 PSI', '2007-03-09', 20799, '3/9/2007', NULL), (20800, 232, 'S/N 45194', 'Dixon Gauge MDL GL330 (D-5720)', 'Range: 100 PSI', '2006-02-09', 20800, '2/9/2006', NULL), (20801, 233, '', '', '', '0000-00-00', 20801, '', NULL), (20802, 234, '', '', '', '0000-00-00', 20802, '', NULL), (20803, 235, 'S/N 0906', 'Ashcroft Pressure Gauge (D-5720)', 'Range: 600 lbs ', '2010-01-21', 20803, '1/21/2010', NULL), (20804, 236, '', 'Certificate has to have PO# on it.', '', '0000-00-00', 20804, '', NULL), (20805, 237, '', '', '', '0000-00-00', 20805, '', NULL), (20806, 238, 'S/N', ' w/ Vertical Displacement LDT (D-6027)', 'Range: ', NULL, 20806, 'New', NULL), (20807, 239, 'S/N 10036 (ID# Q-2958)', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Storage)', '2010-04-07', 20807, '4/7/2010', NULL), (20808, 240, 'S/N 50542688', ' w/ Vishay HS-100 LVDT Axial Strain Channel (D-6027)', 'Range: 2 inch (ID# LABD35)', '2011-01-05', 20808, '1/5/2011', NULL), (20809, 241, '', '', '', '0000-00-00', 20809, '', NULL), (20810, 242, '', ' ***Send Certs to Bill To Site***', '', '0000-00-00', 20810, '', NULL), (20811, 243, '', '', '', '0000-00-00', 20811, '', NULL), (20812, 244, '', '', '', '0000-00-00', 20812, '', NULL), (20813, 245, '', '*Call Sheila then Site*', '', '0000-00-00', 20813, '', NULL), (20814, 246, '', '', '', '0000-00-00', 20814, '', NULL), (20815, 247, 'S/N 354 (ID# 2)', 'Humboldt Beam Breaker (MOVED) (E-4 & 2%)', 'Range: 15K ', NULL, 20815, 'New', NULL), (20816, 248, '', ' ***ISO Requested***', '', '0000-00-00', 20816, '', NULL), (20817, 249, 'S/N', 'Forney FT-21 Hand Pump machine 8\" Gauge (SOLD) (E-4)', 'Range: 250K', NULL, 20817, 'New', NULL), (20818, 250, '', '', '', '0000-00-00', 20818, '', NULL), (20819, 251, '', '', '', '0000-00-00', 20819, '', NULL), (20820, 252, '', '', '', '0000-00-00', 20820, '', NULL), (20821, 253, '', '', '', '0000-00-00', 20821, '', NULL), (20822, 254, '', '', '', '0000-00-00', 20822, '', NULL), (20823, 255, '', '', '', '0000-00-00', 20823, '', NULL), (20824, 256, '', '', '', '0000-00-00', 20824, '', NULL), (20825, 257, 'S/N 402281', 'Baldwin Tate Emery BTE 200 Universal Machine (Gone) (E-4)', 'Range: 10K / 50K / 200K', '2005-03-02', 20825, '3/2/2005', NULL), (20826, 258, '', '', '', '0000-00-00', 20826, '', NULL), (20827, 259, '', '**Fax all Invoices to Joy before sending to Corp. Fax 717-848-5565**', '', '0000-00-00', 20827, '', NULL), (20828, 260, '', '', '', '0000-00-00', 20828, '', NULL), (20829, 261, 'S/N RCH1003(ATG#931)', 'Enerpac RCH 1003 Ram (ATG# 760) (E-4)', 'Range: 100 Ton (9,773 PSI)', '2013-03-27', 20829, '3/27/2013', NULL), (20830, 262, 'S/N F32747 (ATG# 225)', ' w/ Load Cell (OOS) (E-4)', 'Range: 10 lbs ', '2011-03-31', 20830, '3/31/2011', NULL), (20831, 263, '', '', '', '0000-00-00', 20831, '', NULL), (20832, 264, '', '', '', '0000-00-00', 20832, '', NULL), (20833, 265, '', '', '', '0000-00-00', 20833, '', NULL), (20834, 266, '', '', '', '0000-00-00', 20834, '', NULL), (20835, 267, '', '', '', '0000-00-00', 20835, '', NULL), (20836, 268, '', '', '', '0000-00-00', 20836, '', NULL), (20837, 269, '', '', '', '0000-00-00', 20837, '', NULL), (20838, 270, '', '', '', '0000-00-00', 20838, '', NULL), (20839, 271, '', '', '', '0000-00-00', 20839, '', NULL), (20840, 272, '', '', '', '0000-00-00', 20840, '', NULL), (20841, 273, '', '', '', '0000-00-00', 20841, '', NULL), (20842, 274, 'S/N RCH1003', 'Pull Tester ENERPAC P80w/Gauge D1990C (E-4 & Man Specs)', 'Range: 50K (MOVED)', '2007-06-25', 20842, '6/25/2007', NULL), (20843, 275, '', '', '', '0000-00-00', 20843, '', NULL), (20844, 276, '', '', '', '0000-00-00', 20844, '', NULL), (20845, 277, 'S/N 204853', 'Colliflower Prestress Jack (DO NOT CAL) (E-4 & PCI)', 'Range: 4K / 40K', '2007-07-17', 20845, '7/17/2007', NULL), (20846, 278, '', '', '', '0000-00-00', 20846, '', NULL), (20847, 279, 'S/N', 'Pressure Transducer (Main Panel) (Moved) (D-5720)', 'Range: 200 PSI', NULL, 20847, 'New', NULL), (20848, 280, '', '', '', '0000-00-00', 20848, '', NULL), (20849, 281, '', '', '', '0000-00-00', 20849, '', NULL), (20850, 282, '', '', '', '0000-00-00', 20850, '', NULL), (20851, 283, '', '', '', '0000-00-00', 20851, '', NULL), (20852, 284, 'S/N TEN024', 'Load Cell Central w/ AHM Digital Load Cell S/N 16949679 (E-4)', 'Range: 5 lbs to 250 lbs', '2013-08-26', 20852, '8/26/2013', NULL), (20853, 285, '', '', '', '0000-00-00', 20853, '', NULL), (20854, 286, '', '', '', '0000-00-00', 20854, '', NULL), (20855, 287, '', '', '', '0000-00-00', 20855, '', NULL), (20856, 288, '', '', '', '0000-00-00', 20856, '', NULL), (20857, 289, '', '', '', '0000-00-00', 20857, '', NULL), (20858, 290, '', '', '', '0000-00-00', 20858, '', NULL), (20859, 291, '', '***ISO Requested***', '', '0000-00-00', 20859, '', NULL), (20860, 292, '', '', '', '0000-00-00', 20860, '', NULL), (20861, 293, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673 ', 'Attn: Mark Moyer ', '0000-00-00', 20861, '', NULL), (20862, 294, '', '', '', '0000-00-00', 20862, '', NULL), (20863, 295, 'S/N 3516', 'Hilti Pull Tester Model 59604/00/06 (Houston) Moved (E-4)', 'Range: 300 lbs to 3,000 lbs ', '2007-09-11', 20863, '9/11/2007', NULL), (20864, 296, 'S/N Unknown', 'WIKA Vacuum Gauge on Fisher Vacuum Pump (D-5720)', 'Range: 30 inHg', '2013-05-06', 20864, '5/6/2013', NULL), (20865, 297, '', '', '', '0000-00-00', 20865, '', NULL), (20866, 298, 'S/N H3911480', 'AND FG-150K Scale (E-898)', 'Range: 300 lbs ', '2013-05-15', 20866, '5/15/2013', NULL), (20867, 299, '', '*SEND CERTS TO BILLING ADDRESS ATTN:PATRICK QUINLAN*', '', '0000-00-00', 20867, '', NULL), (20868, 300, 'S/N PC100310A', 'Intell-lab PC 150001 Scale (E-898)', 'Range: 15KG', '2013-05-15', 20868, '5/15/2013', NULL), (20869, 301, '', '', '', '0000-00-00', 20869, '', NULL), (20870, 302, '', '', '', '0000-00-00', 20870, '', NULL), (20871, 303, 'S/N B553860/317947', 'Omega LC-101-20K T&C Load Cell w/ DP-415-12V digital (E-4)', 'Range: 20 K (Tension Only)', '2013-08-13', 20871, '8/13/2013', NULL), (20872, 304, '', '', '', '0000-00-00', 20872, '', NULL), (20873, 305, '', '', '', '0000-00-00', 20873, '', NULL), (20874, 306, '', '', '', '0000-00-00', 20874, '', NULL), (20875, 307, '', ' w/ Beam Breaker s/n 19104', '', '0000-00-00', 20875, '', NULL), (20876, 308, 'S/N 930211853', 'Soiltest Dial Indicator (Done in HC Nut. Shop) (D-6027)', 'Range: 2 Inches', '2006-06-01', 20876, '6/1/2006', NULL), (20877, 309, '', '', '', '0000-00-00', 20877, '', NULL), (20878, 310, '', '', '', '0000-00-00', 20878, '', NULL), (20879, 311, '', '', '', '0000-00-00', 20879, '', NULL), (20880, 312, '', ' ***Send Certs to Hilliard, OH office address***', '', '0000-00-00', 20880, '', NULL), (20881, 313, '', '', '', '0000-00-00', 20881, '', NULL), (20882, 314, '', '', '', '0000-00-00', 20882, '', NULL), (20883, 315, '', ' ***ISO Requested***', '', '0000-00-00', 20883, '', NULL), (20884, 316, 'S/N 3684', 'Soiltest CT-769E Compression Machine (Gauge CT-769E) (E-4)', 'Range: 250K (GONE)', '2006-06-27', 20884, '6/27/2006', NULL), (20885, 317, '', '', '', '0000-00-00', 20885, '', NULL), (20886, 318, '', '', '', '0000-00-00', 20886, '', NULL), (20887, 319, '', '', '', '0000-00-00', 20887, '', NULL), (20888, 320, '', '', '', '0000-00-00', 20888, '', NULL), (20889, 321, '', '', '', '0000-00-00', 20889, '', NULL), (20890, 322, 'S/N 81155-03107', 'Forney FT-40-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2K to 250K (Storage) ', '2008-10-07', 20890, '10/7/2008', NULL), (20891, 323, 'S/N 60185-0411013', 'Forney FT-40-CS-100-1BR Dig. Comp. Machine (SOLD) (E-4)', 'Range: 3K to 250K', '2005-10-31', 20891, '10/31/2005', NULL), (20892, 324, '', '', '', '0000-00-00', 20892, '', NULL), (20893, 325, '', ' ***ISO Requested***', '', '0000-00-00', 20893, '', NULL), (20894, 326, '', '', '', '0000-00-00', 20894, '', NULL), (20895, 327, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 20895, '', NULL), (20896, 328, 'S/N', 'Forney QC-400-1 Compression Machine (OOS) (E-4)', 'Range: ', NULL, 20896, 'New', NULL), (20897, 329, '', ' ***ISO Requested***', '***continued***', '0000-00-00', 20897, '', NULL), (20898, 330, '', '', '', '0000-00-00', 20898, '', NULL), (20899, 331, 'S/N C0702C', 'Enerpac RCH 202 (MOVED) (E-4 & Man Spec)', 'Range: 40K (8400 psi)', '2005-04-05', 20899, '4/5/2005', NULL), (20900, 332, '', '', '', '0000-00-00', 20900, '', NULL), (20901, 333, '', '', '', '0000-00-00', 20901, '', NULL), (20902, 334, 'S/N HLT-69107', 'Harrington Model HLTI Hoist Tester (OOS) (E-4 and Man Specs)', 'Range: 10K / 20K', '2006-07-11', 20902, '7/11/2006', NULL), (20903, 335, '', '', '', '0000-00-00', 20903, '', NULL), (20904, 336, '', '', '', '0000-00-00', 20904, '', NULL), (20905, 337, '', '', '', '0000-00-00', 20905, '', NULL), (20906, 338, '', '', '', '0000-00-00', 20906, '', NULL), (20907, 339, '', '', '', '0000-00-00', 20907, '', NULL), (20908, 340, '', 'Need a Pre-approved PO before putting on credit card ', '', '0000-00-00', 20908, '', NULL), (20909, 341, '', '', '', '0000-00-00', 20909, '', NULL), (20910, 342, '', '', '', '0000-00-00', 20910, '', NULL), (20911, 343, '', '', '', '0000-00-00', 20911, '', NULL), (20912, 344, '', '', '', '0000-00-00', 20912, '', NULL), (20913, 345, '', '**NEED 400 SYSTEM FOR PROVING RING**', '', '0000-00-00', 20913, '', NULL), (20914, 346, 'S/N 18767', 'Total Comp TC-33 Load Cell (OOS) (E-4)', 'Range: ', NULL, 20914, 'New', NULL), (20915, 347, '', '', '', '0000-00-00', 20915, '', NULL), (20916, 348, 'S/N 15297', 'Testmark CM-2500-LD Digital Compression Machine (E-4)', 'Range: 5K to 250K (OOS)', '2003-10-30', 20916, '10/30/2003', NULL), (20917, 349, '', '', '', '0000-00-00', 20917, '', NULL), (20918, 350, '', '', '', '0000-00-00', 20918, '', NULL), (20919, 351, '', '**Chasity Brady from Braselton, GA 706-654-0901 x 199339', '', '0000-00-00', 20919, '', NULL), (20920, 352, '', '', '', '0000-00-00', 20920, '', NULL), (20921, 353, '', '', '', '0000-00-00', 20921, '', NULL), (20922, 354, '', '', '', '0000-00-00', 20922, '', NULL), (20923, 355, '', ' e-mail copy of invoice to jstemple@triadeng.com', '', '0000-00-00', 20923, '', NULL), (20924, 356, '', '', '', '0000-00-00', 20924, '', NULL), (20925, 357, '', '', '', '0000-00-00', 20925, '', NULL), (20926, 358, '', '', '', '0000-00-00', 20926, '', NULL), (20927, 359, '', '', '', '0000-00-00', 20927, '', NULL), (20928, 360, '', 'Mail Certs to Billing Address', '', '0000-00-00', 20928, '', NULL), (20929, 361, '', '', '', '0000-00-00', 20929, '', NULL), (20930, 362, '', '', '', '0000-00-00', 20930, '', NULL), (20931, 363, '', '', '', '0000-00-00', 20931, '', NULL), (20932, 364, 'S/N 89041', 'Forney FT-250F-02 Analog Compression Machine (E-4)', 'Range: 250K (OOS)', '2005-08-22', 20932, '8/22/2005', NULL), (20933, 365, '', '', '', '0000-00-00', 20933, '', NULL), (20934, 366, '', ' ***ISO Requested***', '', '0000-00-00', 20934, '', NULL), (20935, 367, '', '', '', '0000-00-00', 20935, '', NULL), (20936, 368, '', '', '', '0000-00-00', 20936, '', NULL), (20937, 369, '', '', '', '0000-00-00', 20937, '', NULL), (20938, 370, '', '', '', '0000-00-00', 20938, '', NULL), (20939, 371, '', 'Certs go to Job Site', '***ISO Requested***', '0000-00-00', 20939, '', NULL), (20940, 372, 'S/N K520.020', '50K Ram Pack (OOS) (E-4) ', 'Range: 50K', '2008-05-29', 20940, '5/29/2008', NULL), (20941, 373, '', '', '', '0000-00-00', 20941, '', NULL), (20942, 374, '', '', '', '0000-00-00', 20942, '', NULL), (20943, 375, '', '', '', '0000-00-00', 20943, '', NULL), (20944, 376, '', '', '', '0000-00-00', 20944, '', NULL), (20945, 377, '', '', '', '0000-00-00', 20945, '', NULL), (20946, 378, '', '', '', '0000-00-00', 20946, '', NULL), (20947, 379, '', '', '', '0000-00-00', 20947, '', NULL), (20948, 380, '', '***When entering building ask receptionist to page Dick', '', '0000-00-00', 20948, '', NULL), (20949, 381, '', '', '', '0000-00-00', 20949, '', NULL), (20950, 382, '', '', '', '0000-00-00', 20950, '', NULL), (20951, 383, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 20951, '', NULL), (20952, 384, '', '', '', '0000-00-00', 20952, '', NULL), (20953, 385, '', '', '', '0000-00-00', 20953, '', NULL), (20954, 386, '', '', '', '0000-00-00', 20954, '', NULL), (20955, 387, '', '', '', '0000-00-00', 20955, '', NULL), (20956, 388, '', '', '', '0000-00-00', 20956, '', NULL), (20957, 389, '', '', '', '0000-00-00', 20957, '', NULL), (20958, 390, 'S/N 202', 'Wika Vaccum Gauge (OOS) (Man Specs & 2%)', 'Range: 30 in Hg', '2010-06-03', 20958, '6/3/2010', NULL), (20959, 391, '', ' ***ISO Requested***', '', '0000-00-00', 20959, '', NULL), (20960, 392, '', '', '', '0000-00-00', 20960, '', NULL), (20961, 393, '', '', '', '0000-00-00', 20961, '', NULL), (20962, 394, '', ' ***Certs in Precast Systems Name & Address***', '', '0000-00-00', 20962, '', NULL), (20963, 395, '', ' ***ISO Requested***', '', '0000-00-00', 20963, '', NULL), (20964, 396, '', '', '', '0000-00-00', 20964, '', NULL), (20965, 397, '', '', '', '0000-00-00', 20965, '', NULL), (20966, 398, '', 'Office Address: 21 Wilton Street, Nassau, Bahamas', '', '0000-00-00', 20966, '', NULL), (20967, 399, '', '', '', '0000-00-00', 20967, '', NULL), (20968, 400, '', '', '', '0000-00-00', 20968, '', NULL), (20969, 401, '', '', '', '0000-00-00', 20969, '', NULL), (20970, 402, '', '', '', '0000-00-00', 20970, '', NULL), (20971, 403, '', '', '', '0000-00-00', 20971, '', NULL), (20972, 404, '', '', '', '0000-00-00', 20972, '', NULL), (20973, 405, 'S/N 012564597/2', 'Eilon Engineering RON 2501 S-125 Load Cell (ManSpec & 0.1%FS)', 'Range: 125 Ton (MOVED)', NULL, 20973, 'New', NULL), (20974, 406, '', '', '', '0000-00-00', 20974, '', NULL), (20975, 407, '', '', '', '0000-00-00', 20975, '', NULL), (20976, 408, 'S/N D27299 ', 'Dillon Mdl. AP Dynamometer (E-4)', 'Range: 20K (Owned by TVA)', '2009-10-01', 20976, '10/1/2009', NULL), (20977, 409, '', '', '', '0000-00-00', 20977, '', NULL), (20978, 410, '', '', '', '0000-00-00', 20978, '', NULL), (20979, 411, '', '', '', '0000-00-00', 20979, '', NULL), (20980, 412, '', '', '', '0000-00-00', 20980, '', NULL), (20981, 413, '', '', '', '0000-00-00', 20981, '', NULL), (20982, 414, '', '**MUST ASK whoever makes the arrangements for the work to be', '', '0000-00-00', 20982, '', NULL), (20983, 415, '', 'Cert: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Dave Chilcote Sr.', '0000-00-00', 20983, '', NULL), (20984, 416, '', ' \"**** SCHEDULE w/ SAL****', '2 Year schedule', '0000-00-00', 20984, '', NULL), (20985, 417, '', '', '', '0000-00-00', 20985, '', NULL), (20986, 418, 'S/N ', ' w/ Extra Gauge #2 (E-4)', 'Range: ', NULL, 20986, 'New', NULL), (20987, 419, '', '', '', '0000-00-00', 20987, '', NULL), (20988, 420, '', '', '', '0000-00-00', 20988, '', NULL), (20989, 421, '', '', '', '0000-00-00', 20989, '', NULL), (20990, 422, '', '', '', '0000-00-00', 20990, '', NULL), (20991, 423, '', '', '', '0000-00-00', 20991, '', NULL), (20992, 424, 'S/N G132', 'Durham Geo E-124 Pore Pressure Transducer (ID# G132) (D-5720)', 'Range: 150 PSI ', '2013-01-09', 20992, '1/9/2013', NULL), (20993, 425, '', '', '', '0000-00-00', 20993, '', NULL), (20994, 426, '', '', '', '0000-00-00', 20994, '', NULL), (20995, 427, 'S/N G1184', 'Geojac Consolidometer (E-4)', '', '0000-00-00', 20995, '', NULL), (20996, 428, 'S/N G1184A', 'GeoJace Direct Shear LVDT Veritical (D-6027)', 'Range: 3 inches', '2013-01-09', 20996, '1/9/2013', NULL), (20997, 429, '', '', '', '0000-00-00', 20997, '', NULL), (20998, 430, '', 'Send Certs and Invoice to PO Box 102 Mt. Braddock PA 15456', '', '0000-00-00', 20998, '', NULL), (20999, 431, '', '...............................CONTINUED...........................................', '', '0000-00-00', 20999, '', NULL), (21000, 432, '', '', '', '0000-00-00', 21000, '', NULL), (21001, 433, '', '', '', '0000-00-00', 21001, '', NULL), (21002, 434, '', '', '', '0000-00-00', 21002, '', NULL), (21003, 435, '', '', '', '0000-00-00', 21003, '', NULL), (21004, 436, '', '', '', '0000-00-00', 21004, '', NULL), (21005, 437, '', '', '', '0000-00-00', 21005, '', NULL), (21006, 438, '', '', '', '0000-00-00', 21006, '', NULL), (21007, 439, '', '6 MONTH SCHEDULE ON JACK (Jan. & July)', '', '0000-00-00', 21007, '', NULL), (21008, 440, '', ' ***Send Cert to Job Site Address***', '', '0000-00-00', 21008, '', NULL), (21009, 441, '', '**All machines need big & small service labels**', '', '0000-00-00', 21009, '', NULL), (21010, 442, '', '', '', '0000-00-00', 21010, '', NULL), (21011, 443, '', ' ***Site not always manned***', '', '0000-00-00', 21011, '', NULL), (21012, 444, '', '', '', '0000-00-00', 21012, '', NULL), (21013, 445, 'S/N 12473 ', 'Ohaus Brainweight B5000 Scale (E-898) (Moved)', 'Range: 5,000 Grams', '2012-02-13', 21013, '2/13/2012', NULL), (21014, 446, 'S/N 35495', 'Baldwin Universal Testing Machine 60 BTE (SOLD) (E-4)', 'Range: 0.6K / 6K / 60K', '2000-03-29', 21014, '3/29/2000', NULL), (21015, 447, '', '', '', '0000-00-00', 21015, '', NULL), (21016, 448, '', '', '', '0000-00-00', 21016, '', NULL), (21017, 449, 'S/N 2114266653', 'Ohaus 1P15KS Scale (MOVED) (E-898)', 'Range: 10,000 Grams', '2012-02-14', 21017, '2/14/2012', NULL), (21018, 450, 'S/N PFS-14', 'TIF Mdl. 9010A Scale (E-898)', 'Range: 110 lbs', '2013-02-13', 21018, '2/13/2013', NULL), (21019, 451, '', ' ***Send Certs to Billing Site***', '', '0000-00-00', 21019, '', NULL), (21020, 452, '', '', '', '0000-00-00', 21020, '', NULL), (21021, 453, '', '', '', '0000-00-00', 21021, '', NULL), (21022, 454, '', '***Must sign & return a copy of the Purchase Order prior to ', '', '0000-00-00', 21022, '', NULL), (21023, 455, '', '', '', '0000-00-00', 21023, '', NULL), (21024, 456, '', '', '', '0000-00-00', 21024, '', NULL), (21025, 457, ' ', ' ', ' ', '0000-00-00', 21025, '', NULL), (21026, 458, 'S/N 26422', 'ELE Single Proving Ring Model N-970 (OUT OF SERVICE) (E-4)', 'Range: 250 lbs', '2004-02-24', 21026, '2/24/2004', NULL), (21027, 459, '', '', '', '0000-00-00', 21027, '', NULL), (21028, 460, '', '', '', '0000-00-00', 21028, '', NULL), (21029, 461, '', '***No Block Carrier-Use Lebow System on the Machine***', '', '0000-00-00', 21029, '', NULL), (21030, 462, '', '', '', '0000-00-00', 21030, '', NULL), (21031, 463, '', '', '', '0000-00-00', 21031, '', NULL), (21032, 464, '', '***ISO Requested***', '', '0000-00-00', 21032, '', NULL), (21033, 465, '', '', '', '0000-00-00', 21033, '', NULL), (21034, 466, 'S/N 0708TR50-10', ' w/ LVDT (D-6027)', 'Range: 1 Inches ', '2013-03-20', 21034, '3/20/2013', NULL), (21035, 467, '', '', '', '0000-00-00', 21035, '', NULL), (21036, 468, '', '', '', '0000-00-00', 21036, '', NULL), (21037, 469, '', '', '', '0000-00-00', 21037, '', NULL), (21038, 470, '', '', '', '0000-00-00', 21038, '', NULL), (21039, 471, '', '', '', '0000-00-00', 21039, '', NULL), (21040, 472, '', '', '', '0000-00-00', 21040, '', NULL), (21041, 473, '', '', '', '0000-00-00', 21041, '', NULL), (21042, 474, '', '', '', '0000-00-00', 21042, '', NULL), (21043, 475, '', '', '', '0000-00-00', 21043, '', NULL), (21044, 476, 'S/N AE40113106', 'Adam CPW Plus-75 Scale (E-898)', 'Range: 165 lbs', '2013-04-10', 21044, '4/10/2013', NULL), (21045, 477, '', '', '', '0000-00-00', 21045, '', NULL), (21046, 478, 'S/N 00285UD0', 'HMB Model C18 Load Cell (Off Site/In House) (E-4)', 'Range: 400K lbs', '2013-10-11', 21046, '10/11/2013', NULL), (21047, 479, '', '', '', '0000-00-00', 21047, '', NULL), (21048, 480, '', ' \"***ISO Requested***', '', '0000-00-00', 21048, '', NULL), (21049, 481, '', '', '', '0000-00-00', 21049, '', NULL), (21050, 482, '', '', '', '0000-00-00', 21050, '', NULL), (21051, 483, '', ' ', '', '0000-00-00', 21051, '', NULL), (21052, 484, 'S/N 1970', ' w/ Horizontal Internal Actuator (D-6027)', 'Range: 1.0\"', '2012-04-23', 21052, '4/23/2012', NULL), (21053, 485, '', '', '', '0000-00-00', 21053, '', NULL), (21054, 486, '', '', '', '0000-00-00', 21054, '', NULL), (21055, 487, '', '*** ISO Requested ***', '', '0000-00-00', 21055, '', NULL), (21056, 488, 'S/N 613043', 'Humboldt HM2300 Load Cell (on recorder) (E-4)', 'Range: 10K ', '2013-05-01', 21056, '5/1/2013', NULL), (21057, 489, '', '', '', '0000-00-00', 21057, '', NULL), (21058, 490, '', '', '', '0000-00-00', 21058, '', NULL), (21059, 491, '', '', '', '0000-00-00', 21059, '', NULL), (21060, 492, 'S/N 89087', 'Forney FT-250-F-01 Compression Machine (MOVING) (E-4)', 'Range: 250K', '2007-03-20', 21060, '3/20/2007', NULL), (21061, 493, 'S/N 1557', 'Sondeer Toestel - Barentsen Load Cell (E-4 & Man Specs)', 'Range: 1 Kg to 16 Kg / CM 2 (386 lbs)', '2011-05-03', 21061, '5/3/2011', NULL), (21062, 494, 'S/N 236PC150GW', 'Humboldt Flex Panel II (D-5720)', 'Cap: 200 PSI', '2013-04-30', 21062, '4/30/2013', NULL), (21063, 495, 'S/N 6461', 'Soiltest Uncontived Double Proving Ring (E-4 & ManSpecs)', 'Range: 1,500 lbs', '2004-05-17', 21063, '5/17/2004', NULL), (21064, 496, '', '', '', '0000-00-00', 21064, '', NULL), (21065, 497, '', 'the 40lb and 400 lb Load Cells in box on Certifications 2nd page ', '', '0000-00-00', 21065, '', NULL), (21066, 498, '', '', '', '0000-00-00', 21066, '', NULL), (21067, 499, '', '', '', '0000-00-00', 21067, '', NULL), (21068, 500, 'S/N 004541', ' Shear Display', '0.1 \" to 1.0 \"', '2012-04-30', 21068, '4/30/2012', NULL), (21069, 501, '', '', '', '0000-00-00', 21069, '', NULL), (21070, 502, '', '', '', '0000-00-00', 21070, '', NULL), (21071, 503, '', ' ', '', '0000-00-00', 21071, '', NULL), (21072, 504, '', '', '', '0000-00-00', 21072, '', NULL), (21073, 505, '', '', '', '0000-00-00', 21073, '', NULL), (21074, 506, '', '', '', '0000-00-00', 21074, '', NULL), (21075, 507, '', '', '', '0000-00-00', 21075, '', NULL), (21076, 508, '', '', '', '0000-00-00', 21076, '', NULL), (21077, 509, '', '', '', '0000-00-00', 21077, '', NULL), (21078, 510, '', ' ***MUST HAVE VEST & HARD HAT***', '', '0000-00-00', 21078, '', NULL), (21079, 511, '', '', '', '0000-00-00', 21079, '', NULL), (21080, 512, '', '', '', '0000-00-00', 21080, '', NULL), (21081, 513, '', '', '', '0000-00-00', 21081, '', NULL), (21082, 514, '', '', '', '0000-00-00', 21082, '', NULL), (21083, 515, '', '', '', '0000-00-00', 21083, '', NULL), (21084, 516, 'S/N 4', 'Conbel Pressure Gauge (D-5720)', 'Cap: 100 psi', '2013-05-07', 21084, '5/7/2013', NULL), (21085, 517, '', ' ***Make sure proper insert is in when you calibrate - Ask John*** ', 'calibrate to .6 (S/N TW6444 & TW6741)', '0000-00-00', 21085, '', NULL), (21086, 518, '', 'Need Certificates the same day to ship out equipment to job sites ', ' ***continued***', '0000-00-00', 21086, '', NULL), (21087, 519, 'S/N 3352', 'Karol Warner 9210 Manometer (Man Specs)', 'Range: 1000 mmHg', '2013-05-06', 21087, '5/6/2013', NULL), (21088, 520, '', 'Need Certificates the same day to ship out equipment to job sites ', ' ***continued***', '0000-00-00', 21088, '', NULL), (21089, 521, '', '', '', '0000-00-00', 21089, '', NULL), (21090, 522, '', '', '', '0000-00-00', 21090, '', NULL), (21091, 523, '', '', '', '0000-00-00', 21091, '', NULL), (21092, 524, '', '', '', '0000-00-00', 21092, '', NULL), (21093, 525, '', '', '', '0000-00-00', 21093, '', NULL), (21094, 526, '', '', '', '0000-00-00', 21094, '', NULL), (21095, 527, '', '', '', '0000-00-00', 21095, '', NULL), (21096, 528, '', '', '', '0000-00-00', 21096, '', NULL), (21097, 529, '', '', '', '0000-00-00', 21097, '', NULL), (21098, 530, '', '', '', '0000-00-00', 21098, '', NULL), (21099, 531, '', '', '', '0000-00-00', 21099, '', NULL), (21100, 532, '', '', '', '0000-00-00', 21100, '', NULL), (21101, 533, '', '', '', '0000-00-00', 21101, '', NULL), (21102, 534, '', '', '', '0000-00-00', 21102, '', NULL), (21103, 535, '', '', '', '0000-00-00', 21103, '', NULL), (21104, 536, '', '', '', '0000-00-00', 21104, '', NULL), (21105, 537, '', '', '', '0000-00-00', 21105, '', NULL), (21106, 538, '', ' ***ISO Requested***', '', '0000-00-00', 21106, '', NULL), (21107, 539, '', '', '', '0000-00-00', 21107, '', NULL), (21108, 540, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 21108, '', NULL), (21109, 541, 'S/N H3804500', 'AND FG-60K Scale (E-898)', 'Range: 150lbs', '2013-06-04', 21109, '6/4/2013', NULL), (21110, 542, '', '', '', '0000-00-00', 21110, '', NULL), (21111, 543, '', '', '', '0000-00-00', 21111, '', NULL), (21112, 544, '', '', '', '0000-00-00', 21112, '', NULL), (21113, 545, 'S/N', 'Pine Instrument Calibration Kit (Man Specs & AASHTO)', 'Range: ', NULL, 21113, 'New', NULL), (21114, 546, '', '', '', '0000-00-00', 21114, '', NULL), (21115, 547, '', '', '', '0000-00-00', 21115, '', NULL), (21116, 548, 'S/N 20103034', 'ComTen FGC-2000 Pull Tester (E-4 2% & ManSpecs)', 'Range: 2K', '2013-06-21', 21116, '6/21/2013', NULL), (21117, 549, '', '', '', '0000-00-00', 21117, '', NULL), (21118, 550, '', '', '', '0000-00-00', 21118, '', NULL), (21119, 551, '', '', '', '0000-00-00', 21119, '', NULL), (21120, 552, 'S/N Ram 8', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 21120, '6/29/2011', NULL), (21121, 553, 'S/N Q2002695', 'AND FG-60KBM Scale (E-898)STORAGE', 'Range: 150 lbs ', '2012-06-25', 21121, '6/25/2012', NULL), (21122, 554, '', '', '', '0000-00-00', 21122, '', NULL), (21123, 555, '', '', '', '0000-00-00', 21123, '', NULL), (21124, 556, '', '', '', '0000-00-00', 21124, '', NULL), (21125, 557, '', '', '', '0000-00-00', 21125, '', NULL), (21126, 558, '', '', '', '0000-00-00', 21126, '', NULL), (21127, 559, '', '', '', '0000-00-00', 21127, '', NULL), (21128, 560, '', '', '', '0000-00-00', 21128, '', NULL), (21129, 561, '', '', '', '0000-00-00', 21129, '', NULL), (21130, 562, '', '', '', '0000-00-00', 21130, '', NULL), (21131, 563, '', '***Make sure they have Compression Frame on site to be Cal\'d***', '', '0000-00-00', 21131, '', NULL), (21132, 564, '', '', '', '0000-00-00', 21132, '', NULL), (21133, 565, '', '', '', '0000-00-00', 21133, '', NULL), (21134, 566, '', '', '', '0000-00-00', 21134, '', NULL), (21135, 567, '', '', '', '0000-00-00', 21135, '', NULL), (21136, 568, '', '', '', '0000-00-00', 21136, '', NULL), (21137, 569, '', ' ***Send Certs to Bill to site***', '', '0000-00-00', 21137, '', NULL), (21138, 570, 'S/N JA13375', 'Ohaus Model B50S Scale (E-898)', 'Range: 100 lbs ', '2013-07-30', 21138, '7/30/2013', NULL), (21139, 571, '', '', '', '0000-00-00', 21139, '', NULL), (21140, 572, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 21140, '', NULL), (21141, 573, '', '***ISO Requested***', '', '0000-00-00', 21141, '', NULL), (21142, 574, '', 'Month / Year on label Only ', '', '0000-00-00', 21142, '', NULL), (21143, 575, 'S/N 13296-0507071', 'Testmark CM 2500-CS-100-2 Dig Comp mach ( SOLD) ', 'Range: 2.5K to 250K (E-4)', '2005-12-08', 21143, '12/8/2005', NULL), (21144, 576, '', 'TAKE QA BOOK!!!! -Nuclear plant', '', '0000-00-00', 21144, '', NULL), (21145, 577, '', '', '', '0000-00-00', 21145, '', NULL), (21146, 578, '', ' ***Send Certs to Job Site*** ', '', '0000-00-00', 21146, '', NULL), (21147, 579, '', '', '', '0000-00-00', 21147, '', NULL), (21148, 580, '', '', '', '0000-00-00', 21148, '', NULL), (21149, 581, '', '', '', '0000-00-00', 21149, '', NULL), (21150, 582, '', '', '', '0000-00-00', 21150, '', NULL), (21151, 583, '', '', '', '0000-00-00', 21151, '', NULL), (21152, 584, '', '', '', '0000-00-00', 21152, '', NULL), (21153, 585, '', ' 2 YEAR INTERVAL', 'Send Cert\'s to Office address', '0000-00-00', 21153, '', NULL), (21154, 586, 'S/N 1094', 'Schmidt NA-1 Hammer (C-805)', 'Range: 78 to 82', '2010-11-10', 21154, '11/10/2010', NULL), (21155, 587, '', '', '', '0000-00-00', 21155, '', NULL), (21156, 588, '', '', '', '0000-00-00', 21156, '', NULL), (21157, 589, '', '', '', '0000-00-00', 21157, '', NULL), (21158, 590, '', '', '', '0000-00-00', 21158, '', NULL), (21159, 591, '', 'next time for high range only*', '', '0000-00-00', 21159, '', NULL), (21160, 592, '', '', '', '0000-00-00', 21160, '', NULL), (21161, 593, 'S/N 060321-1355', 'Structural Stress Analyzer Model 1000 (E-4 & 2%)', 'Range: 1K', '2010-10-25', 21161, '10/25/2010', NULL), (21162, 594, '', '', '', '0000-00-00', 21162, '', NULL), (21163, 595, '', '', '', '0000-00-00', 21163, '', NULL), (21164, 596, '', '', '', '0000-00-00', 21164, '', NULL), (21165, 597, '', '', '', '0000-00-00', 21165, '', NULL), (21166, 598, 'S/N 106666-9-0512021', 'Tinius Olsen LOCAP-CS-100-2 Digital Compression Machine (E-4)', 'Range: 20 lbs to 6,000 lbs ', '2005-12-08', 21166, '12/8/2005', NULL), (21167, 599, '', '', '2014 Calibration will have a credit-$279', '0000-00-00', 21167, '', NULL), (21168, 600, '', '', '', '0000-00-00', 21168, '', NULL), (21169, 601, '', ' Send Certs to job site.', '', '0000-00-00', 21169, '', NULL), (21170, 602, '', '', '', '0000-00-00', 21170, '', NULL), (21171, 603, '', '', '2014 Calibration will have a credit-$279', '0000-00-00', 21171, '', NULL), (21172, 604, '', '', '', '0000-00-00', 21172, '', NULL), (21173, 605, 'S/N R2711 ', ' w/ Speed Control (E2658-11)', 'Range: 12 in/min ', '2013-09-04', 21173, '9/4/2013', NULL), (21174, 606, '', '', '', '0000-00-00', 21174, '', NULL), (21175, 607, '', '**Pricing does not include any additional labor or parts if needed.**', ' ', '0000-00-00', 21175, '', NULL), (21176, 608, '', '', '', '0000-00-00', 21176, '', NULL), (21177, 609, '', ' ***Send Certs to Bill Site***', '', '0000-00-00', 21177, '', NULL), (21178, 610, '', '', '', '0000-00-00', 21178, '', NULL), (21179, 611, '', ' \"***Send Certs to Billing Site Attn: Freeport Job***', '', '0000-00-00', 21179, '', NULL), (21180, 612, 'S/N 88085', 'Forney FT-40 Compression Machine (SOLD) (E-4)', 'Range: 250K', '2009-04-20', 21180, '4/20/2009', NULL), (21181, 613, '', '', '', '0000-00-00', 21181, '', NULL), (21182, 614, '', ' Send Certs to Billing Site', '', '0000-00-00', 21182, '', NULL), (21183, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 21183, 'New', NULL), (21184, 616, '', '', '', '0000-00-00', 21184, '', NULL), (21185, 617, 'S/N Unknown', 'Hogentogler Dutch Cone Penetrometer (E-4)', 'Range: 16Kn / 120Kn (OOS)', '2008-08-18', 21185, '8/18/2008', NULL), (21186, 618, '', '', '', '0000-00-00', 21186, '', NULL), (21187, 619, '', 'cannot smoke on premises or have an open flame***', '', '0000-00-00', 21187, '', NULL), (21188, 620, '', ' Contact Mark for PO', '', '0000-00-00', 21188, '', NULL), (21189, 621, '', '', '', '0000-00-00', 21189, '', NULL), (21190, 622, '', ' \"***ISO Requested***', '', '0000-00-00', 21190, '', NULL), (21191, 623, '', '', '', '0000-00-00', 21191, '', NULL), (21192, 624, '', ' ', '', '0000-00-00', 21192, '', NULL), (21193, 625, '', '', '', '0000-00-00', 21193, '', NULL), (21194, 626, '', ' \"***ISO Requested***', '', '0000-00-00', 21194, '', NULL), (21195, 627, '', '', '', '0000-00-00', 21195, '', NULL), (21196, 628, 'S/N 419007100405', 'Soiltest U-160-A Digital Compression Machine (OOS) (E-4)', 'Range: lK', '2006-05-29', 21196, '5/29/2006', NULL), (21197, 629, '', '', '', '0000-00-00', 21197, '', NULL), (21198, 630, '', '', '', '0000-00-00', 21198, '', NULL), (21199, 631, '', '', '', '0000-00-00', 21199, '', NULL), (21200, 632, '', '', '', '0000-00-00', 21200, '', NULL), (21201, 633, '', '', '', '0000-00-00', 21201, '', NULL), (21202, 634, '', '', '', '0000-00-00', 21202, '', NULL), (21203, 635, 'S/N 08371018', 'Starrett 797B-6/150 Caliper (ManSpecs)', 'Range: 0in to 6in', '2013-06-05', 21203, '6/5/2013', NULL), (21204, 636, '', '', '', '0000-00-00', 21204, '', NULL), (21205, 637, 'S/N LP-832', ' w/ GeoJac LVDT (D-6027)', 'Range: 3 inches ', '2011-11-14', 21205, '11/14/2011', NULL), (21206, 638, 'S/N PS-2961', ' w/ GeoJac Pressure Transducer (D-5720)', 'Range: 200 psi ', '2012-11-13', 21206, '11/13/2012', NULL), (21207, 639, '', '', '', '0000-00-00', 21207, '', NULL), (21208, 640, '', '', '', '0000-00-00', 21208, '', NULL), (21209, 641, 'S/N 1', 'Digital Load Cell Central Model Truss Test (E-4)', 'Range: 5K (OOS)', '2000-05-12', 21209, '5/12/2000', NULL), (21210, 642, 'S/N 944', 'Soiltest CT-710 Compression Machine (OUT OF SERVICE) (E-4)', 'Range 250K', '2002-09-11', 21210, '9/11/2002', NULL), (21211, 643, 'S/N 25-511', 'Starrett Dial Indicator (D-6027)', 'Range: 0.2 inches ', '2012-11-28', 21211, '11/28/2012', NULL), (21212, 644, 'S/N 080216', 'Testmark CM-3000-LXI Digital Compression Machine (E-4)', 'Range: 3K to 300K High LC 0 (Moved)', '2011-09-01', 21212, '9/1/2011', NULL), (21213, 645, '', ' *Be sure to check PO is COD*', '', '0000-00-00', 21213, '', NULL), (21214, 646, '', '', '', '0000-00-00', 21214, '', NULL), (21215, 647, '', '', '', '0000-00-00', 21215, '', NULL), (21216, 648, '', '', '', '0000-00-00', 21216, '', NULL), (21217, 649, '', '', '', '0000-00-00', 21217, '', NULL), (21218, 650, '', '', '', '0000-00-00', 21218, '', NULL), (21219, 651, '', '', '', '0000-00-00', 21219, '', NULL), (21220, 652, '', '', '', '0000-00-00', 21220, '', NULL), (21221, 653, '', '', '', '0000-00-00', 21221, '', NULL), (21222, 654, '', '2 YEAR INTERVAL', '', '0000-00-00', 21222, '', NULL), (21223, 655, '', '', '', '0000-00-00', 21223, '', NULL), (21224, 656, '', '', '', '0000-00-00', 21224, '', NULL), (21225, 657, '', '', '', '0000-00-00', 21225, '', NULL), (21226, 658, '', '', '', '0000-00-00', 21226, '', NULL), (21227, 659, '', '', '', '0000-00-00', 21227, '', NULL), (21228, 660, '', '', '', '0000-00-00', 21228, '', NULL), (21229, 661, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 21229, '', NULL), (21230, 662, '', '', '', '0000-00-00', 21230, '', NULL), (21231, 663, 'S/N 1001133-6FL', 'Ohaus Valor 5000 Scale (E-898)', 'Range: 3 Kg (Do not have)', '2010-09-14', 21231, '9/14/2010', NULL), (21232, 664, '', ' w/ Gauge ( ', 'Range: 350K (OOS)', '2010-08-19', 21232, '8/19/2010', NULL), (21233, 665, '', ' ***Equipment is Calibrated Yearly***', '', '0000-00-00', 21233, '', NULL), (21234, 666, '', '', '', '0000-00-00', 21234, '', NULL), (21235, 667, '', '', '', '0000-00-00', 21235, '', NULL), (21236, 668, '', '', '', '0000-00-00', 21236, '', NULL), (21237, 669, '', ' ***ISO Requested***', '', '0000-00-00', 21237, '', NULL), (21238, 670, '', '', '', '0000-00-00', 21238, '', NULL), (21239, 671, '', '', '', '0000-00-00', 21239, '', NULL), (21240, 672, 'S/N 38734 /NC #10', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 5K to 50K-Gauge #53,54', '2008-01-29', 21240, '1/29/2008', NULL), (21241, 673, '', '', '', '0000-00-00', 21241, '', NULL), (21242, 674, '', 'Alfred, NY 14802, Attn: Nicole Parise ', '', '0000-00-00', 21242, '', NULL), (21243, 675, '', ' ***ISO Requested***', '', '0000-00-00', 21243, '', NULL), (21244, 676, '', '', '', '0000-00-00', 21244, '', NULL), (21245, 677, '', '', '', '0000-00-00', 21245, '', NULL), (21246, 678, '', '', '', '0000-00-00', 21246, '', NULL), (21247, 679, '', '', '', '0000-00-00', 21247, '', NULL), (21248, 680, '', '', '', '0000-00-00', 21248, '', NULL), (21249, 681, 'S/N 005365', 'Hilti Pull Tester Model 59604/03/07 (Chicago) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs ', '2012-10-18', 21249, '10/18/2012', NULL), (21250, 682, 'S/N 05013 /NC #7', 'CSI Model LC-40 Hydraulic Load Cell (E-4)', 'Range: 40K', '2011-03-02', 21250, '3/2/2011', NULL), (21251, 683, '', '', '', '0000-00-00', 21251, '', NULL), (21252, 684, '', '', '', '0000-00-00', 21252, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (21253, 685, '', '', '', '0000-00-00', 21253, '', NULL), (21254, 686, '', '', '', '0000-00-00', 21254, '', NULL), (21255, 687, '', '', '', '0000-00-00', 21255, '', NULL), (21256, 688, '', '', '', '0000-00-00', 21256, '', NULL), (21257, 689, '', '', '', '0000-00-00', 21257, '', NULL), (21258, 690, 'S/N 005283', 'Hilti Pull Tester Model 59604/03/06 (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2008-02-07', 21258, '2/7/2008', NULL), (21259, 691, '', '', '', '0000-00-00', 21259, '', NULL), (21260, 692, '', '', '', '0000-00-00', 21260, '', NULL), (21261, 693, '', ' *Send Certs to Billing Address*', '', '0000-00-00', 21261, '', NULL), (21262, 694, ' ', ' ', ' ', '0000-00-00', 21262, '', NULL), (21263, 695, 'S/N BJ469825', 'Ohaus Scout II Scale (E-898)', 'Range: 600 Grams ', '2013-02-06', 21263, '2/6/2013', NULL), (21264, 696, '', '', '', '0000-00-00', 21264, '', NULL), (21265, 697, '', '', '', '0000-00-00', 21265, '', NULL), (21266, 698, '', '', '', '0000-00-00', 21266, '', NULL), (21267, 699, '', '', '', '0000-00-00', 21267, '', NULL), (21268, 700, '', '***Mail Cert to Billing Address***', '', '0000-00-00', 21268, '', NULL), (21269, 701, '', '', '', '0000-00-00', 21269, '', NULL), (21270, 702, '', '', '', '0000-00-00', 21270, '', NULL), (21271, 703, '', ' ** MASTER SHEET IN FILE **', '', '0000-00-00', 21271, '', NULL), (21272, 704, '', '', '', '0000-00-00', 21272, '', NULL), (21273, 705, '', '', '', '0000-00-00', 21273, '', NULL), (21274, 706, '', '', '', '0000-00-00', 21274, '', NULL), (21275, 707, '', '', '', '0000-00-00', 21275, '', NULL), (21276, 708, '', '', '', '0000-00-00', 21276, '', NULL), (21277, 709, '', '', '', '0000-00-00', 21277, '', NULL), (21278, 710, '', '', '', '0000-00-00', 21278, '', NULL), (21279, 711, '', '', '', '0000-00-00', 21279, '', NULL), (21280, 712, 'S/N 15564 ', 'Skidmore Wilhelm Mdl.M Bolt Tester (Moved) (E-4 & 2%)', 'Range: 100K', '2012-03-05', 21280, '3/5/2012', NULL), (21281, 713, '', '', '', '0000-00-00', 21281, '', NULL), (21282, 714, '', '', '', '0000-00-00', 21282, '', NULL), (21283, 715, 'S/N 100754A', ' w/ Tovey Load Cell Minus X Axis - T & C ', 'Range: 10K ', '2012-03-12', 21283, '3/12/2012', NULL), (21284, 716, '', '', '', '0000-00-00', 21284, '', NULL), (21285, 717, '', 'E-Mail Certs and Invoice to paul.pridemore@basf.com', '', '0000-00-00', 21285, '', NULL), (21286, 718, '', '', '', '0000-00-00', 21286, '', NULL), (21287, 719, '', '', '', '0000-00-00', 21287, '', NULL), (21288, 720, '', ' ', '', '0000-00-00', 21288, '', NULL), (21289, 721, '', '', '', '0000-00-00', 21289, '', NULL), (21290, 722, '', '', '', '0000-00-00', 21290, '', NULL), (21291, 723, '', '', '', '0000-00-00', 21291, '', NULL), (21292, 724, '', '', '', '0000-00-00', 21292, '', NULL), (21293, 725, '', '', '', '0000-00-00', 21293, '', NULL), (21294, 726, '', '', '', '0000-00-00', 21294, '', NULL), (21295, 727, '', '', '', '0000-00-00', 21295, '', NULL), (21296, 728, '', '', '', '0000-00-00', 21296, '', NULL), (21297, 729, '', '', '', '0000-00-00', 21297, '', NULL), (21298, 730, '', '', '', '0000-00-00', 21298, '', NULL), (21299, 731, '', '', '', '0000-00-00', 21299, '', NULL), (21300, 732, 'S/N Ram A', 'Stresscon Prestress Jack (E-4 & PCI & 2%)', 'Range: 5K / 50K', '2013-04-09', 21300, '4/9/2013', NULL), (21301, 733, '', '', '', '0000-00-00', 21301, '', NULL), (21302, 734, 'S/N E96129', ' w/ Epsilon Extensometer 3542-0100-050-ST (E-83)', 'Range: 0.5 in/in', '2013-09-30', 21302, '9/30/2013', NULL), (21303, 735, 'S/N 81145-00119', 'Forney FT-40-CS-100-2 Digital Compression Machine(MOVED)(E-4)', 'Range: 2.5K to 250K (MDOT# 89856)', '2010-04-14', 21303, '4/14/2010', NULL), (21304, 736, 'S/N 57112', 'Forney QC-150 Compression Machine (Moved) (E-4)', 'Range: 300K', '2012-05-17', 21304, '5/17/2012', NULL), (21305, 737, '', ' \"***ISO Requested***', '', '0000-00-00', 21305, '', NULL), (21306, 738, '', '', '', '0000-00-00', 21306, '', NULL), (21307, 739, '', '', '', '0000-00-00', 21307, '', NULL), (21308, 740, '', '***MUST CALL FOR PO BEFORE COMING TO FACILITY***', '', '0000-00-00', 21308, '', NULL), (21309, 741, '', ' ', '', '0000-00-00', 21309, '', NULL), (21310, 742, '', '', '', '0000-00-00', 21310, '', NULL), (21311, 743, 'S/N TEN003', 'Instron TDD-CS-100-2LP Displacement Transducer (E-2309)', 'Range: 20 Inches', '2012-04-24', 21311, '4/24/2012', NULL), (21312, 744, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 21312, '', NULL), (21313, 745, '', '', '', '0000-00-00', 21313, '', NULL), (21314, 746, '', '', '', '0000-00-00', 21314, '', NULL), (21315, 747, '', '', '', '0000-00-00', 21315, '', NULL), (21316, 748, '', '', '', '0000-00-00', 21316, '', NULL), (21317, 749, '', '', '', '0000-00-00', 21317, '', NULL), (21318, 750, 'S/N 93100-121605', 'Soiltest CT-710 CS-100-1S Digital Compression Machine (E-4)', 'Range: 3K to 250K (Out of Spec)', '2006-11-15', 21318, '11/15/2006', NULL), (21319, 751, '', '', '', '0000-00-00', 21319, '', NULL), (21320, 752, '', '', '', '0000-00-00', 21320, '', NULL), (21321, 753, '', '18 Month Schedule Begining of November and End of April', '', '0000-00-00', 21321, '', NULL), (21322, 754, '', '', '', '0000-00-00', 21322, '', NULL), (21323, 755, '', ' ', '', '0000-00-00', 21323, '', NULL), (21324, 756, '', '', '', '0000-00-00', 21324, '', NULL), (21325, 757, '', 'All Invoices must have an ECS project number of the name of the ', 'person ordering the services ', '0000-00-00', 21325, '', NULL), (21326, 758, '', '', '', '0000-00-00', 21326, '', NULL), (21327, 759, '', '', '', '0000-00-00', 21327, '', NULL), (21328, 760, 'S/N BSR-019', 'VSL Stressing Jack w/ Gauge A & Master Gauge (E-4 & Man Specs)', 'Range: 200K / 200K (Gone)', '2008-04-08', 21328, '4/8/2008', NULL), (21329, 761, '', '***MUST CALL FOR PO BEFORE COMING TO FACILITY***', '', '0000-00-00', 21329, '', NULL), (21330, 762, '', '', '', '0000-00-00', 21330, '', NULL), (21331, 763, '', '', '', '0000-00-00', 21331, '', NULL), (21332, 764, '', '', '', '0000-00-00', 21332, '', NULL), (21333, 765, 'S/N 77119', 'Forney QC-50 Compression Machine (OOS) (E-4)', 'Range: 400K (every 5 years)', NULL, 21333, '\'1994', NULL), (21334, 766, 'S/N 319879', 'Artech 20210 Load Cell w/ ELE ADU (E898)', 'Range: 100 lbs to 10,000 lbs', '2012-08-02', 21334, '8/2/2012', NULL), (21335, 767, '', ' Send Certs to Billing Address', '', '0000-00-00', 21335, '', NULL), (21336, 768, 'S/N R-3998', 'with Load Cell (E-4) 100%', 'Range: 1 lb to 100 lbs', '2012-11-28', 21336, '11/28/2012', NULL), (21337, 769, 'S/N C-455', ' with Speed Control (E-2658-11) Recorder Proportional', 'Range: 20 in /min', '2012-11-27', 21337, '11/27/2012', NULL), (21338, 770, '', '', '', '0000-00-00', 21338, '', NULL), (21339, 771, '', '', '', '0000-00-00', 21339, '', NULL), (21340, 772, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 21340, '', NULL), (21341, 773, '', '', '', '0000-00-00', 21341, '', NULL), (21342, 774, '', '', '', '0000-00-00', 21342, '', NULL), (21343, 775, '', '', '', '0000-00-00', 21343, '', NULL), (21344, 776, '', '', '', '0000-00-00', 21344, '', NULL), (21345, 777, ' ', ' ', ' ', '0000-00-00', 21345, '', NULL), (21346, 778, 'S/N C-455', ' with Speed Control Digital (E2658-11)', 'Range: 1 in/min', '2012-11-27', 21346, '11/27/2012', NULL), (21347, 779, ' ', ' ', ' ', '0000-00-00', 21347, '', NULL), (21348, 780, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 21348, '', NULL), (21349, 781, '', '', '', '0000-00-00', 21349, '', NULL), (21350, 782, '', '', '', '0000-00-00', 21350, '', NULL), (21351, 783, '', '', '', '0000-00-00', 21351, '', NULL), (21352, 784, '', 'Tech to call when close to job', '', '0000-00-00', 21352, '', NULL), (21353, 785, '', '', '', '0000-00-00', 21353, '', NULL), (21354, 786, '', '', '', '0000-00-00', 21354, '', NULL), (21355, 787, '', '', '', '0000-00-00', 21355, '', NULL), (21356, 788, '', '', '', '0000-00-00', 21356, '', NULL), (21357, 789, '', '', '', '0000-00-00', 21357, '', NULL), (21358, 790, '', '', '', '0000-00-00', 21358, '', NULL), (21359, 791, '', '', '', '0000-00-00', 21359, '', NULL), (21360, 792, '', '', '', '0000-00-00', 21360, '', NULL), (21361, 793, '', '', '', '0000-00-00', 21361, '', NULL), (21362, 794, '', '', '', '0000-00-00', 21362, '', NULL), (21363, 795, '', ' w/Extra Gauge (OOS)', 'Range: 3K to 30K (SOLD)', '2005-12-21', 21363, '12/21/2005', NULL), (21364, 796, '', '', '', '0000-00-00', 21364, '', NULL), (21365, 797, '', '', '', '0000-00-00', 21365, '', NULL), (21366, 798, '', ' \"***6 Month Schedule (June & December)***', '', '0000-00-00', 21366, '', NULL), (21367, 799, '', '*S/N 95129-02018 Calibrate every 6 months (June & December)', '', '0000-00-00', 21367, '', NULL), (21368, 800, '', '', '', '0000-00-00', 21368, '', NULL), (21369, 801, '', '', '', '0000-00-00', 21369, '', NULL), (21370, 802, '', '', '****ISO Requested****', '0000-00-00', 21370, '', NULL), (21371, 803, '', '', '', '0000-00-00', 21371, '', NULL), (21372, 804, '', '', '', '0000-00-00', 21372, '', NULL), (21373, 805, '', '', '', '0000-00-00', 21373, '', NULL), (21374, 806, '', '', '', '0000-00-00', 21374, '', NULL), (21375, 807, '', '', '', '0000-00-00', 21375, '', NULL), (21376, 808, '', '', '', '0000-00-00', 21376, '', NULL), (21377, 809, '', '', '', '0000-00-00', 21377, '', NULL), (21378, 810, '', '', '', '0000-00-00', 21378, '', NULL), (21379, 811, '', ' ***MUST HAVE PO# BEFORE DOING ANY WORK***', '', '0000-00-00', 21379, '', NULL), (21380, 812, '', '', '', '0000-00-00', 21380, '', NULL), (21381, 813, '', '', '', '0000-00-00', 21381, '', NULL), (21382, 814, 'S/N E-89849', ' w/ Epsilon 3542-0200-010-ST Extensometer(ID#MVMTC86) ( E-83', 'Range: 0.08 in/in (GL 2\") (10%)', '2013-07-23', 21382, '7/23/2013', NULL), (21383, 815, 'S/N 829393', 'Total Comp Load Cell TS-500 w/ Testnet GP Data Acq (E-4)', 'Range: 500 lbs', '2006-07-31', 21383, '7/31/2006', NULL), (21384, 816, '', '', '', '0000-00-00', 21384, '', NULL), (21385, 817, '', '', '', '0000-00-00', 21385, '', NULL), (21386, 818, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 21386, '', NULL), (21387, 819, '', '', '', '0000-00-00', 21387, '', NULL), (21388, 820, '', '', '', '0000-00-00', 21388, '', NULL), (21389, 821, '', '', '', '0000-00-00', 21389, '', NULL), (21390, 822, '', ' ***ISO Requested***', '', '0000-00-00', 21390, '', NULL), (21391, 823, '', '', '', '0000-00-00', 21391, '', NULL), (21392, 824, '', '', '', '0000-00-00', 21392, '', NULL), (21393, 825, '', '', '', '0000-00-00', 21393, '', NULL), (21394, 826, 'S/N 0518113/16', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 M.Ton', '2013-08-27', 21394, '8/27/2013', NULL), (21395, 827, '', '', '', '0000-00-00', 21395, '', NULL), (21396, 828, '', '', '', '0000-00-00', 21396, '', NULL), (21397, 829, 'S/N 0507265/5', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1% FS) ', 'Range : 5 Ton', '2013-04-19', 21397, '4/19/2013', NULL), (21398, 830, '', '', '', '0000-00-00', 21398, '', NULL), (21399, 831, 'S/N PG8', 'Pressure Gauge (D-5720)', 'Range: 60 PSI', '2009-02-27', 21399, '2/27/2009', NULL), (21400, 832, '', ' ***ISO Requested***', '', '0000-00-00', 21400, '', NULL), (21401, 833, '', '', '', '0000-00-00', 21401, '', NULL), (21402, 834, '', '', '', '0000-00-00', 21402, '', NULL), (21403, 835, ' ', ' ', ' ', '0000-00-00', 21403, '', NULL), (21404, 836, '', '', '', '0000-00-00', 21404, '', NULL), (21405, 837, '', ' ***ISO Requested***', '', '0000-00-00', 21405, '', NULL), (21406, 838, '', '', '', '0000-00-00', 21406, '', NULL), (21407, 839, '', '', '', '0000-00-00', 21407, '', NULL), (21408, 840, '', '', ' **ISO Requested** ', '0000-00-00', 21408, '', NULL), (21409, 841, 'S/N 5862', 'Forney PT-150-2 Pipe Tester (E-4 & C-497) (OOS)', 'Range: 200K', '2010-08-09', 21409, '8/9/2010', NULL), (21410, 842, 'S/N 102', 'Enerpac Pressure Gauge (D-5720)', 'Range: 10K ', '2009-08-04', 21410, '8/4/2009', NULL), (21411, 843, 'S/N 80140', 'Koppers Tie Jack Bed (Used for Training Purposes only) (E-4 & PCI) ', 'Range: 276K (3650 PSI)', '2007-12-11', 21411, '12/11/2007', NULL), (21412, 844, '', '', '', '0000-00-00', 21412, '', NULL), (21413, 845, '', '', '', '0000-00-00', 21413, '', NULL), (21414, 846, '', '', '', '0000-00-00', 21414, '', NULL), (21415, 847, '', '', '', '0000-00-00', 21415, '', NULL), (21416, 848, '', '', '', '0000-00-00', 21416, '', NULL), (21417, 849, '', '', '', '0000-00-00', 21417, '', NULL), (21418, 850, '', ' Certs to Billing Address', '', '0000-00-00', 21418, '', NULL), (21419, 851, '', '', '', '0000-00-00', 21419, '', NULL), (21420, 852, '', '', '', '0000-00-00', 21420, '', NULL), (21421, 853, '', '', '', '0000-00-00', 21421, '', NULL), (21422, 854, '', '', '', '0000-00-00', 21422, '', NULL), (21423, 855, 'S/N 301', ' w/ Gauge (MOVED TO SOILNAIL2)', 'Range: 5,000 PSI (60,000 lbs)', '2012-06-29', 21423, '6/29/2012', NULL), (21424, 856, '', '', '', '0000-00-00', 21424, '', NULL), (21425, 857, '', '', '', '0000-00-00', 21425, '', NULL), (21426, 858, '', '', '', '0000-00-00', 21426, '', NULL), (21427, 859, '', '', '2014 Calibration will have a credit-$279', '0000-00-00', 21427, '', NULL), (21428, 860, '', '', '', '0000-00-00', 21428, '', NULL), (21429, 861, '', '2014 Will need adjusted GOOD TRAINING OPPORTUNITY', '', '0000-00-00', 21429, '', NULL), (21430, 862, '', ' Send Certs to Billing Address', '', '0000-00-00', 21430, '', NULL), (21431, 863, '', '', '', '0000-00-00', 21431, '', NULL), (21432, 864, '', '', '', '0000-00-00', 21432, '', NULL), (21433, 865, '', ' ***Machine not stable from year to year***', '', '0000-00-00', 21433, '', NULL), (21434, 866, '', '', '', '0000-00-00', 21434, '', NULL), (21435, 867, '', '', '', '0000-00-00', 21435, '', NULL), (21436, 868, '', '', '', '0000-00-00', 21436, '', NULL), (21437, 869, '', '', '', '0000-00-00', 21437, '', NULL), (21438, 870, '', '', '', '0000-00-00', 21438, '', NULL), (21439, 871, '', 'Josh Gotschall at the Cadillac Site***', '', '0000-00-00', 21439, '', NULL), (21440, 872, '', '', '', '0000-00-00', 21440, '', NULL), (21441, 873, 'S/N 1KN', 'MTest Point Loader w/ AEP Smart Indicator (E-4 2% ManSpecs)', 'Range: 55 KN', '2013-10-02', 21441, '10/2/2013', NULL), (21442, 874, '', '', '', '0000-00-00', 21442, '', NULL), (21443, 875, '', '*********ISO Requested********', '', '0000-00-00', 21443, '', NULL), (21444, 876, '', '', '', '0000-00-00', 21444, '', NULL), (21445, 877, 'S/N 71114-99107', 'Forney LT-1000-2-CS-100-3 Universal Testing Machine (SOLD)', 'Range: 5K to 600K (E-4)', '2006-06-28', 21445, '6/28/2006', NULL), (21446, 878, '', '', '', '0000-00-00', 21446, '', NULL), (21447, 879, '', '', '', '0000-00-00', 21447, '', NULL), (21448, 880, '', '', '', '0000-00-00', 21448, '', NULL), (21449, 881, '', '', '', '0000-00-00', 21449, '', NULL), (21450, 882, '', '', '', '0000-00-00', 21450, '', NULL), (21451, 883, '', ' *On Invoice put person ordering services & their telephone number*', '', '0000-00-00', 21451, '', NULL), (21452, 884, 'S/N 03096', 'Forney F-30-EXE-FR500 Digital Compression Machine (E-4)', 'Range: 300K (Moved)', '2006-05-03', 21452, '5/3/2006', NULL), (21453, 885, '', '*10/22/12 Certs sent to: 202 N. Railroad St. Anniville, PA 17003', 'as per Terry', '0000-00-00', 21453, '', NULL), (21454, 886, '', 'Email Cert. Then mail Original to Woodstown NJ', '', '0000-00-00', 21454, '', NULL), (21455, 887, '', '', '', '0000-00-00', 21455, '', NULL), (21456, 888, '', '', '', '0000-00-00', 21456, '', NULL), (21457, 889, '', '', '', '0000-00-00', 21457, '', NULL), (21458, 890, '', '', '', '0000-00-00', 21458, '', NULL), (21459, 891, '', '', '', '0000-00-00', 21459, '', NULL), (21460, 892, 'S/N 005927', 'Hilti Pull Tester Model 59604 (E-4)', 'Range 3,000 lbs', '2012-10-25', 21460, '10/25/2012', NULL), (21461, 893, '', '', '', '0000-00-00', 21461, '', NULL), (21462, 894, 'S/N SR323502', 'CC1 Model SR-3000 Prestress Jack (E-4 & PCI)', 'Range: 3K / 45K (OOS)', '2008-04-15', 21462, '4/15/2008', NULL), (21463, 895, '', ' ***ISO Requested***', '', '0000-00-00', 21463, '', NULL), (21464, 896, '', '', '', '0000-00-00', 21464, '', NULL), (21465, 897, '', '', '', '0000-00-00', 21465, '', NULL), (21466, 898, '', '', '', '0000-00-00', 21466, '', NULL), (21467, 899, '', '', '', '0000-00-00', 21467, '', NULL), (21468, 900, 'S/N 5774', 'Forney QC-100-2 Compression Machine (SPARE - STORAGE) (E-4)', 'Range: 30K / 200K', '2008-01-16', 21468, '1/16/2008', NULL), (21469, 901, '', '', '', '0000-00-00', 21469, '', NULL), (21470, 902, '', ' ***ISO Requested***', '', '0000-00-00', 21470, '', NULL), (21471, 903, '', '', '', '0000-00-00', 21471, '', NULL), (21472, 904, 'S/N 53118-1', 'ELE Beam Breaker (E-4 & 2%)', 'Range: 11K (MOVED)', '2011-10-05', 21472, '10/5/2011', NULL), (21473, 905, 'S/N 405180', ' w/1K Load Cell', '', '2011-10-05', 21473, '10/5/2011', NULL), (21474, 906, '', '', '', '0000-00-00', 21474, '', NULL), (21475, 907, 'S/N 1512AG83506', 'SPX Powerteam Mdl. B Post Tension Jack (E-4 & PCI ManSpecs)', 'Range: 60 Ton', '2013-04-24', 21475, '4/24/2013', NULL), (21476, 908, '', '', '', '0000-00-00', 21476, '', NULL), (21477, 909, '', '', '', '0000-00-00', 21477, '', NULL), (21478, 910, '', '', '', '0000-00-00', 21478, '', NULL), (21479, 911, '', '', '', '0000-00-00', 21479, '', NULL), (21480, 912, '', '', '', '0000-00-00', 21480, '', NULL), (21481, 913, 'S/N 70095', 'Forney FT-40-DR Compression Machine (E-4)', 'Range: 30K / 250K (MOVED)', '2011-02-01', 21481, '2/1/2011', NULL), (21482, 914, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer', '0000-00-00', 21482, '', NULL), (21483, 915, '', '', '', '0000-00-00', 21483, '', NULL), (21484, 916, '', '', '', '0000-00-00', 21484, '', NULL), (21485, 917, '', '', '', '0000-00-00', 21485, '', NULL), (21486, 918, '', '', '', '0000-00-00', 21486, '', NULL), (21487, 919, 'S/N 1155-9-11272', 'ELE Triaxial Single Proving Ring (OOS) (E-4 & Man Specs)', 'Range: 450 lbs', '2009-01-07', 21487, '1/7/2009', NULL), (21488, 920, '', 'For Detroit: Use 400 Strainsense System & Prestress insert on ', '50 Kip Cell', '0000-00-00', 21488, '', NULL), (21489, 921, '', '', '', '0000-00-00', 21489, '', NULL), (21490, 922, 'S/N 1768/346', 'Durham GEO Digital Pressure Transducer Model S-500 (MOVED)', 'Range: 300 PSI', '2005-12-14', 21490, '12/14/2005', NULL), (21491, 923, 'S/N 05123022-46-T', 'BK E-400 Digital Read Out Mdl. 2811A00FGP-23985 (E-4)', 'Range: (OOS)', NULL, 21491, 'New', NULL), (21492, 924, '', '', '', '0000-00-00', 21492, '', NULL), (21493, 925, '', '', '', '0000-00-00', 21493, '', NULL), (21494, 926, '', '', '', '0000-00-00', 21494, '', NULL), (21495, 927, '', '', '', '0000-00-00', 21495, '', NULL), (21496, 928, '', '', '', '0000-00-00', 21496, '', NULL), (21497, 929, '', '', '', '0000-00-00', 21497, '', NULL), (21498, 930, 'S/N ', 'Brainard Kilman E212 Load Cell ', '', '0000-00-00', 21498, '', NULL), (21499, 931, '', '', '', '0000-00-00', 21499, '', NULL), (21500, 932, ' ', ' ', ' ', '0000-00-00', 21500, '', NULL), (21501, 933, 'S/N 685494', ' w/ Load Cell Moved (E-4) (ID# R410)', 'Range: 2K', '2013-01-09', 21501, '1/9/2013', NULL), (21502, 934, 'S/N 73199', 'Forney QC-200-DR Compression Machine (GONE) (E-4)', 'Range: 30K / 400K', '2005-05-06', 21502, '5/6/2005', NULL), (21503, 935, 'S/N 081852173', 'Geotest BG1720-0-36 Dial Indicator (D-6027)', 'Range: 2 inches ', '2013-01-23', 21503, '1/23/2013', NULL), (21504, 936, '', '', '', '0000-00-00', 21504, '', NULL), (21505, 937, '', '', '', '0000-00-00', 21505, '', NULL), (21506, 938, '', '', '', '0000-00-00', 21506, '', NULL), (21507, 939, '', 'Send Certs to: Pete Douglass, 1106 SR 4007, East Brady, PA 16028', '', '0000-00-00', 21507, '', NULL), (21508, 940, '', 'E-Mail Certs and Invoice to paul.pridemore@basf.com', '', '0000-00-00', 21508, '', NULL), (21509, 941, '', '', '', '0000-00-00', 21509, '', NULL), (21510, 942, '', '', '', '0000-00-00', 21510, '', NULL), (21511, 943, '', '', '', '0000-00-00', 21511, '', NULL), (21512, 944, '', '', '', '0000-00-00', 21512, '', NULL), (21513, 945, '', '', '', '0000-00-00', 21513, '', NULL), (21514, 946, '', '', '', '0000-00-00', 21514, '', NULL), (21515, 947, '', '', '', '0000-00-00', 21515, '', NULL), (21516, 948, '', '', '', '0000-00-00', 21516, '', NULL), (21517, 949, '', '', '', '0000-00-00', 21517, '', NULL), (21518, 950, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer ', '0000-00-00', 21518, '', NULL), (21519, 951, 'S/N Unknown', 'Pore Pressure Gauge (D-5720)', 'Range: 100 PSI', '2013-02-26', 21519, '2/26/2013', NULL), (21520, 952, '', ' ***Cert sent to Bill Address***', '', '0000-00-00', 21520, '', NULL), (21521, 953, 'S/N 513', 'Soiltest D-110-B Direct Shear ( 8:1 Ratio) (E-4 & 2%)', 'Range: 1/2 TSF to 4 TSF', '2013-02-26', 21521, '2/26/2013', NULL), (21522, 954, '', '', '', '0000-00-00', 21522, '', NULL), (21523, 955, '', '', '', '0000-00-00', 21523, '', NULL), (21524, 956, '', '', '', '0000-00-00', 21524, '', NULL), (21525, 957, '', '', '', '0000-00-00', 21525, '', NULL), (21526, 958, '', '', '', '0000-00-00', 21526, '', NULL), (21527, 959, '', '', '', '0000-00-00', 21527, '', NULL), (21528, 960, '', '', '', '0000-00-00', 21528, '', NULL), (21529, 961, '', 'Send Certs To: Superior Materials, 30701 W 10 Mile Road, Suite 500,', '', '0000-00-00', 21529, '', NULL), (21530, 962, '', '', '', '0000-00-00', 21530, '', NULL), (21531, 963, 'S/N 303', 'BK Dial Indicator (OOS) (D-6027)', 'Range: 0.4 inch', '2001-01-09', 21531, '1/9/2001', NULL), (21532, 964, '', '', '', '0000-00-00', 21532, '', NULL), (21533, 965, '', '', '', '0000-00-00', 21533, '', NULL), (21534, 966, '', '', '', '0000-00-00', 21534, '', NULL), (21535, 967, 'S/N 005620', 'Hilti Pull Tester Model 59604/04/09 (West Florida) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2013-02-21', 21535, '2/21/2013', NULL), (21536, 968, '', '', '', '0000-00-00', 21536, '', NULL), (21537, 969, '', '', '', '0000-00-00', 21537, '', NULL), (21538, 970, '', '', '', '0000-00-00', 21538, '', NULL), (21539, 971, '', '', '', '0000-00-00', 21539, '', NULL), (21540, 972, '', '', '', '0000-00-00', 21540, '', NULL), (21541, 973, '', '', '', '0000-00-00', 21541, '', NULL), (21542, 974, '', '', '', '0000-00-00', 21542, '', NULL), (21543, 975, '', '', '', '0000-00-00', 21543, '', NULL), (21544, 976, '', '', '', '0000-00-00', 21544, '', NULL), (21545, 977, '', '', '', '0000-00-00', 21545, '', NULL), (21546, 978, '', '', '', '0000-00-00', 21546, '', NULL), (21547, 979, '', '', '', '0000-00-00', 21547, '', NULL), (21548, 980, '', '', '', '0000-00-00', 21548, '', NULL), (21549, 981, '', '', '', '0000-00-00', 21549, '', NULL), (21550, 982, '', '', '', '0000-00-00', 21550, '', NULL), (21551, 983, '', '', '', '0000-00-00', 21551, '', NULL), (21552, 984, '', '', '', '0000-00-00', 21552, '', NULL), (21553, 985, '', '', '', '0000-00-00', 21553, '', NULL), (21554, 986, '', '', '', '0000-00-00', 21554, '', NULL), (21555, 987, '', '', '', '0000-00-00', 21555, '', NULL), (21556, 988, '', '', '', '0000-00-00', 21556, '', NULL), (21557, 989, '', '', '', '0000-00-00', 21557, '', NULL), (21558, 990, '', '', '', '0000-00-00', 21558, '', NULL), (21559, 991, '', 'Mail Certs to Billing Address', '', '0000-00-00', 21559, '', NULL), (21560, 992, '', 'E-Mail Certs and Invoice to paul.pridemore@basf.com', 'Certificate has to have PO# on it.', '0000-00-00', 21560, '', NULL), (21561, 993, 'S/N H525-9789', ' w/ LVDT (D-6', 'Range: 1 Inch (Duplicate)', '2010-04-20', 21561, '4/20/2010', NULL), (21562, 994, '', '', '', '0000-00-00', 21562, '', NULL), (21563, 995, '', '', '* E-mail copy of invoice to ', '0000-00-00', 21563, '', NULL), (21564, 996, '', '', '', '0000-00-00', 21564, '', NULL), (21565, 997, '', '', '', '0000-00-00', 21565, '', NULL), (21566, 998, ' ', ' ', ' ', '0000-00-00', 21566, '', NULL), (21567, 999, '', '', '', '0000-00-00', 21567, '', NULL), (21568, 1000, '', 'Mail Cert To: 200 Popular Street, Etna, PA 15223', '', '0000-00-00', 21568, '', NULL), (21569, 1001, '', '', '', '0000-00-00', 21569, '', NULL), (21570, 1002, '', '', '', '0000-00-00', 21570, '', NULL), (21571, 1003, '', 'person ordering the services ', '', '0000-00-00', 21571, '', NULL), (21572, 1004, 'S/N 268', 'Durham Geo Mdl. CBR E-214 Load Cell (E-4)', 'Range: 5K', '2008-04-30', 21572, '4/30/2008', NULL), (21573, 1005, '', '', '', '0000-00-00', 21573, '', NULL), (21574, 1006, ' ', ' ', '', '0000-00-00', 21574, '', NULL), (21575, 1007, '', '', '', '0000-00-00', 21575, '', NULL), (21576, 1008, 'S/N', ' w/ Displacement OOS (E-2309)', 'Range: ', NULL, 21576, 'New', NULL), (21577, 1009, '', '', '', '0000-00-00', 21577, '', NULL), (21578, 1010, '', '', '', '0000-00-00', 21578, '', NULL), (21579, 1011, 'S/N STR-E2', 'Bymun Prestress Jack (Gas) (E-4 & PCI)', 'Range: 3,4K/47K', '2005-07-14', 21579, '7/14/2005', NULL), (21580, 1012, '', 'Schedule for Jan. & July (Every 6 months) all equipment.', '', '0000-00-00', 21580, '', NULL), (21581, 1013, '', 'Certificate has to have PO# on it.', '', '0000-00-00', 21581, '', NULL), (21582, 1014, 'S/N 200', ' w/ Extra Gauge- Prepull Jack #6 (E-4 & PCI)', 'Range: 4K ', '2013-07-15', 21582, '7/15/2013', NULL), (21583, 1015, '', '', '', '0000-00-00', 21583, '', NULL), (21584, 1016, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 21584, '', NULL), (21585, 1017, '', '*Must send a letter if machine is Out of Tolerance for Nuclear work *', '', '0000-00-00', 21585, '', NULL), (21586, 1018, '', ' \"*** ISO Requested ***', '', '0000-00-00', 21586, '', NULL), (21587, 1019, '', '***ISO Requested***', '', '0000-00-00', 21587, '', NULL), (21588, 1020, '', '', '', '0000-00-00', 21588, '', NULL), (21589, 1021, '', ' \"***Jack 6 Month Schedule August & February*** ', '**Use Special Procedure on Simplex***', '0000-00-00', 21589, '', NULL), (21590, 1022, '', 'Oldcastle Precast, Inc., PO Box 13399, Sissonville, WV 25360', '', '0000-00-00', 21590, '', NULL), (21591, 1023, 'S/N 805 (ID# 02-101)', ' w/MTS Mdl. 632.25E-20 Extensometer Channel #0 (E-83)', 'Range: 0.125 in/in (GL 2 Inch)', '2012-08-29', 21591, '8/29/2012', NULL), (21592, 1024, '', '', '', '0000-00-00', 21592, '', NULL), (21593, 1025, '', ' ***ISO Requested***', '', '0000-00-00', 21593, '', NULL), (21594, 1026, 'S/N Unknown', 'PowerTeam Post Tension Jack (OOS) (E-4 & PCI)', 'Range: 500 lbs to 30K ', '2010-10-05', 21594, '10/5/2010', NULL), (21595, 1027, '', ' ', '', '0000-00-00', 21595, '', NULL), (21596, 1028, '', 'All Invoices must have an ECS project number of the name of the ', '', '0000-00-00', 21596, '', NULL), (21597, 1029, '', '', '', '0000-00-00', 21597, '', NULL), (21598, 1030, '', '', '', '0000-00-00', 21598, '', NULL), (21599, 1031, '', '', '', '0000-00-00', 21599, '', NULL), (21600, 1032, '', '*Certs go to 850 Poplar Street Pittsburgh PA*', '', '0000-00-00', 21600, '', NULL), (21601, 1033, '', '', '', '0000-00-00', 21601, '', NULL), (21602, 1034, '', '', '', '0000-00-00', 21602, '', NULL), (21603, 1035, '', '', '', '0000-00-00', 21603, '', NULL), (21604, 1036, 'S/N 002744', 'Brainard Kilman S610 Speed Control (E-2658)', 'Range: 0.050 in/min', '2013-04-03', 21604, '4/3/2013', NULL), (21605, 1037, 'S/N 145 ', 'Brainard Kilman Perm Board Pressure Transducer (D-5720)', 'Range: 200 PSI', '2013-04-01', 21605, '4/1/2013', NULL), (21606, 1038, '', '', '', '0000-00-00', 21606, '', NULL), (21607, 1039, 'S/N 236', 'Brainard-Kilman Terraload Consolidation Unit Console 5', 'Cap: 1200 lbs (16 TSF) (E-4& Man Specs)', '2013-04-01', 21607, '4/1/2013', NULL), (21608, 1040, '', '', '', '0000-00-00', 21608, '', NULL), (21609, 1041, '', '', '', '0000-00-00', 21609, '', NULL), (21610, 1042, 'S/N 194', 'Brainard Kilman S-610 Speed Control ID# 001266 (E-2658)', 'Range: 0.05 in/min', '2013-04-02', 21610, '4/2/2013', NULL), (21611, 1043, '', '', '', '0000-00-00', 21611, '', NULL), (21612, 1044, '', '', '', '0000-00-00', 21612, '', NULL), (21613, 1045, '', '***Certs: VDOT, Attn: John Russell, 4975 Alliance Drive, ', 'Fairfax, VA 22030***', '0000-00-00', 21613, '', NULL), (21614, 1046, 'S/N Unknown', 'Soiltest Mdl. AP-100-2 Versa Tester (OOS) (E-4)', 'Range: 6K / 12K', '1999-04-27', 21614, '4/27/1999', NULL), (21615, 1047, 'S/N LA-0488-E4', 'Electronic Compressometer (Can\'t Find) (D-6027)', 'Range: 0.145 inches', '2007-04-25', 21615, '4/25/2007', NULL), (21616, 1048, 'S/N 96057', 'Forney F-250F-01 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2012-06-20', 21616, '6/20/2012', NULL), (21617, 1049, '', ' *** ISO Requested ***', '', '0000-00-00', 21617, '', NULL), (21618, 1050, '', '', '', '0000-00-00', 21618, '', NULL), (21619, 1051, '', '***Digital, Machine & Fan on 30\' Ext. cord, curing tanks on 50\' ', '', '0000-00-00', 21619, '', NULL), (21620, 1052, '', ' *** 2 Year Interval***', '', '0000-00-00', 21620, '', NULL), (21621, 1053, '', ' ***ISO Requested***', '', '0000-00-00', 21621, '', NULL), (21622, 1054, '', '', '', '0000-00-00', 21622, '', NULL), (21623, 1055, '', '', '', '0000-00-00', 21623, '', NULL), (21624, 1056, '', '', '', '0000-00-00', 21624, '', NULL), (21625, 1057, '', '', '', '0000-00-00', 21625, '', NULL), (21626, 1058, '', '***Need Hard Hat, Safety Glasses, Safety Vest, Hearing ', 'Protection & Steel Toe Boots***', '0000-00-00', 21626, '', NULL), (21627, 1059, '', '', '', '0000-00-00', 21627, '', NULL), (21628, 1060, ' ', ' ***Cert sent to Bill Site/Office***', ' ', '0000-00-00', 21628, '', NULL), (21629, 1061, '', '**Serial Numbers must be written as shown above on labels & certs!!', '***continued***', '0000-00-00', 21629, '', NULL), (21630, 1062, '', '', '', '0000-00-00', 21630, '', NULL), (21631, 1063, '', '', '', '0000-00-00', 21631, '', NULL), (21632, 1064, '', '', '', '0000-00-00', 21632, '', NULL), (21633, 1065, '', '', '', '0000-00-00', 21633, '', NULL), (21634, 1066, '', '', '', '0000-00-00', 21634, '', NULL), (21635, 1067, '', '', '', '0000-00-00', 21635, '', NULL), (21636, 1068, '', '', '', '0000-00-00', 21636, '', NULL), (21637, 1069, '', '', '', '0000-00-00', 21637, '', NULL), (21638, 1070, '', '', '', '0000-00-00', 21638, '', NULL), (21639, 1071, '', '', '', '0000-00-00', 21639, '', NULL), (21640, 1072, '', '', '', '0000-00-00', 21640, '', NULL), (21641, 1073, '', '', '', '0000-00-00', 21641, '', NULL), (21642, 1074, '', '', '', '0000-00-00', 21642, '', NULL), (21643, 1075, '', '', '', '0000-00-00', 21643, '', NULL), (21644, 1076, 'S/N 20912', 'Chatillon Force Gauge Digital DFI 500 T&C (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 21644, '4/28/1998', NULL), (21645, 1077, 'S/N 10403', 'Chatillon Force Gauge DFGHS-50 Digital T &C (E-4)', 'Range: 5 to 50 lb.', '1998-04-29', 21645, '4/29/1998', NULL), (21646, 1078, '', '', '', '0000-00-00', 21646, '', NULL), (21647, 1079, '', '', '', '0000-00-00', 21647, '', NULL), (21648, 1080, '', '', '', '0000-00-00', 21648, '', NULL), (21649, 1081, '', '', '', '0000-00-00', 21649, '', NULL), (21650, 1082, '', '', '', '0000-00-00', 21650, '', NULL), (21651, 1083, '', '', '', '0000-00-00', 21651, '', NULL), (21652, 1084, '', '', '', '0000-00-00', 21652, '', NULL), (21653, 1085, '', '', '', '0000-00-00', 21653, '', NULL), (21654, 1086, '', '', '', '0000-00-00', 21654, '', NULL), (21655, 1087, '', '', '', '0000-00-00', 21655, '', NULL), (21656, 1088, '', '', '', '0000-00-00', 21656, '', NULL), (21657, 1089, '', '', '', '0000-00-00', 21657, '', NULL), (21658, 1090, '', '', '', '0000-00-00', 21658, '', NULL), (21659, 1091, '', '', '', '0000-00-00', 21659, '', NULL), (21660, 1092, '', '', '', '0000-00-00', 21660, '', NULL), (21661, 1093, '', '', '', '0000-00-00', 21661, '', NULL), (21662, 1094, '', '', '', '0000-00-00', 21662, '', NULL), (21663, 1095, '', '', '', '0000-00-00', 21663, '', NULL), (21664, 1096, '', '', '', '0000-00-00', 21664, '', NULL), (21665, 1097, '', '', '', '0000-00-00', 21665, '', NULL), (21666, 1098, '', '', '', '0000-00-00', 21666, '', NULL), (21667, 1099, '', '', '', '0000-00-00', 21667, '', NULL), (21668, 1100, '', '', '', '0000-00-00', 21668, '', NULL), (21669, 1101, '', '', '', '0000-00-00', 21669, '', NULL), (21670, 1102, '', '', '', '0000-00-00', 21670, '', NULL), (21671, 1103, '', '', '', '0000-00-00', 21671, '', NULL), (21672, 1104, '', '', '', '0000-00-00', 21672, '', NULL), (21673, 1105, '', '', '', '0000-00-00', 21673, '', NULL), (21674, 1106, '', '', '', '0000-00-00', 21674, '', NULL), (21675, 1107, '', '', '', '0000-00-00', 21675, '', NULL), (21676, 1108, '', '', '', '0000-00-00', 21676, '', NULL), (21677, 1109, '', '', '', '0000-00-00', 21677, '', NULL), (21678, 1110, '', '', '', '0000-00-00', 21678, '', NULL), (21679, 1111, '', '', '', '0000-00-00', 21679, '', NULL), (21680, 1112, '', '', '', '0000-00-00', 21680, '', NULL), (21681, 1113, '', '', '', '0000-00-00', 21681, '', NULL), (21682, 1114, '', '', '', '0000-00-00', 21682, '', NULL), (21683, 1115, '', '', '', '0000-00-00', 21683, '', NULL), (21684, 1116, '', '', '', '0000-00-00', 21684, '', NULL), (21685, 1117, 'S/N 344', 'Artech CBR Load Cell (Channel #23) (OOS) (E-4)', 'Range: 5000 lbs', '2000-01-18', 21685, '1/18/2000', NULL), (21686, 1118, '', '', '', '0000-00-00', 21686, '', NULL), (21687, 1119, '', '', '', '0000-00-00', 21687, '', NULL), (21688, 1120, '', '', '', '0000-00-00', 21688, '', NULL), (21689, 1121, 'S/N LVDT Spare # 1', 'Macrosensor Extensometer Frame 875 (ISO-9513) ', 'Range: 1 inches (BROKEN)', '2006-01-10', 21689, '1/10/2006', NULL), (21690, 1122, 'S/N 90007036', 'Digital Com-Ten System Model 951KVC2000 (E-4)', 'Range: 5lbs. to 100 lbs.', '2000-08-10', 21690, '8/10/2000', NULL), (21691, 1123, '', '', '', '0000-00-00', 21691, '', NULL), (21692, 1124, 'S/N 263', 'Durham Geo LVDT ', 'Range: ', NULL, 21692, 'New', NULL), (21693, 1125, '', '', '', '0000-00-00', 21693, '', NULL), (21694, 1126, '', '', '', '0000-00-00', 21694, '', NULL), (21695, 1127, '', '', '', '0000-00-00', 21695, '', NULL), (21696, 1128, '', '', '', '0000-00-00', 21696, '', NULL), (21697, 1129, '', '', '', '0000-00-00', 21697, '', NULL), (21698, 1130, '', '***ISO Requested***', '', '0000-00-00', 21698, '', NULL), (21699, 1131, '', '***ISO Requested***', '', '0000-00-00', 21699, '', NULL), (21700, 1132, '', '***ISO Requested***', '', '0000-00-00', 21700, '', NULL), (21701, 1133, '', '', '', '0000-00-00', 21701, '', NULL), (21702, 1134, '', '', '', '0000-00-00', 21702, '', NULL), (21703, 1135, '', '', '', '0000-00-00', 21703, '', NULL), (21704, 1136, '', '', '', '0000-00-00', 21704, '', NULL), (21705, 1137, '', '', '', '0000-00-00', 21705, '', NULL), (21706, 1138, '', '', '', '0000-00-00', 21706, '', NULL), (21707, 1139, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer ', '0000-00-00', 21707, '', NULL), (21708, 1140, '', '', '', '0000-00-00', 21708, '', NULL), (21709, 1141, '', '', '', '0000-00-00', 21709, '', NULL), (21710, 1142, 'S/N 6638-0610162', 'Soiltest CT-7250-CS-100-2 Digital Compression Machine (E-4)', 'Range: 2.5 K to 250K (MOVED)', '2012-03-28', 21710, '3/28/2012', NULL), (21711, 1143, '', '', '', '0000-00-00', 21711, '', NULL), (21712, 1144, '', '', '', '0000-00-00', 21712, '', NULL), (21713, 1145, '', 'PO in file 2/20/13', '', '0000-00-00', 21713, '', NULL), (21714, 1146, '', '', '', '0000-00-00', 21714, '', NULL), (21715, 1147, 'S/N 871548', 'Karol Warner Conbel w/ Digital/Consolidometer Pressure Transducer ', 'Range: 15 psi to 150 psi (D-5720)', '2013-08-06', 21715, '8/6/2013', NULL), (21716, 1148, '', '', '', '0000-00-00', 21716, '', NULL), (21717, 1149, '', '', '', '0000-00-00', 21717, '', NULL), (21718, 1150, '', ' **Procedure in File**', '', '0000-00-00', 21718, '', NULL), (21719, 1151, '', '', '', '0000-00-00', 21719, '', NULL), (21720, 1152, '', '', '', '0000-00-00', 21720, '', NULL), (21721, 1153, '', '***ISO Requested***', '', '0000-00-00', 21721, '', NULL), (21722, 1154, '', ' ***Send Cert to Job Site address***', '', '0000-00-00', 21722, '', NULL), (21723, 1155, 'S/N Unknown', 'Soiltest CT-710 Compression Machine (Out of Service) (E-4)', 'Range: 250K', '2007-08-27', 21723, '8/27/2007', NULL), (21724, 1156, '', ' ***ISO Requested***', '', '0000-00-00', 21724, '', NULL), (21725, 1157, '', 'Send Certs to Job Site', '', '0000-00-00', 21725, '', NULL), (21726, 1158, 'S/N 75234-05062', 'Brainard Kilman CBR Machine w/ Newport Dig. & BK Load Cell ', 'Range: 20 lbs to 2K (E-4) (OOS)', '2012-08-21', 21726, '8/21/2012', NULL), (21727, 1159, '', '', '', '0000-00-00', 21727, '', NULL), (21728, 1160, '', ' ***ISO Requested***', '', '0000-00-00', 21728, '', NULL), (21729, 1161, 'S/N 26187', 'Soiltest Versa loader (OOS) (E-4)', 'Range: 2,000 lbs', '2003-09-02', 21729, '9/2/2003', NULL), (21730, 1162, '', ' Send Certs to Job Site Address', '', '0000-00-00', 21730, '', NULL), (21731, 1163, '', '', '', '0000-00-00', 21731, '', NULL), (21732, 1164, '', '', '', '0000-00-00', 21732, '', NULL), (21733, 1165, '', '', '', '0000-00-00', 21733, '', NULL), (21734, 1166, '', '', '', '0000-00-00', 21734, '', NULL), (21735, 1167, '', '', '', '0000-00-00', 21735, '', NULL), (21736, 1168, '', '', '', '0000-00-00', 21736, '', NULL), (21737, 1169, '', '', '', '0000-00-00', 21737, '', NULL), (21738, 1170, '', '', '', '0000-00-00', 21738, '', NULL), (21739, 1171, '', '', '', '0000-00-00', 21739, '', NULL), (21740, 1172, '', '', '', '0000-00-00', 21740, '', NULL), (21741, 1173, '', '', '', '0000-00-00', 21741, '', NULL), (21742, 1174, '', '', '', '0000-00-00', 21742, '', NULL), (21743, 1175, '', '', '', '0000-00-00', 21743, '', NULL), (21744, 1176, '', '', '', '0000-00-00', 21744, '', NULL), (21745, 1177, '', '', '', '0000-00-00', 21745, '', NULL), (21746, 1178, '', '', '', '0000-00-00', 21746, '', NULL), (21747, 1179, '', '', '', '0000-00-00', 21747, '', NULL), (21748, 1180, '', '', '', '0000-00-00', 21748, '', NULL), (21749, 1181, '', '', '', '0000-00-00', 21749, '', NULL), (21750, 1182, '', '', '', '0000-00-00', 21750, '', NULL), (21751, 1183, '', '', '', '0000-00-00', 21751, '', NULL), (21752, 1184, '', '', '', '0000-00-00', 21752, '', NULL), (21753, 1185, '', '', '', '0000-00-00', 21753, '', NULL), (21754, 1186, '', '', '', '0000-00-00', 21754, '', NULL), (21755, 1187, '', '', '', '0000-00-00', 21755, '', NULL), (21756, 1188, '', '', '', '0000-00-00', 21756, '', NULL), (21757, 1189, '', '', '', '0000-00-00', 21757, '', NULL), (21758, 1190, '', '', '', '0000-00-00', 21758, '', NULL), (21759, 1191, 'S/N H1700M', 'Enerpac P39 Post Tension Jack (E-4 & PCI)', '3,000 psi', '2001-08-29', 21759, '8/29/2001', NULL), (21760, 1192, '', '', '', '0000-00-00', 21760, '', NULL), (21761, 1193, '', '', '', '0000-00-00', 21761, '', NULL), (21762, 1194, '', '', '', '0000-00-00', 21762, '', NULL), (21763, 1195, '', '', '', '0000-00-00', 21763, '', NULL), (21764, 1196, '', '', '', '0000-00-00', 21764, '', NULL), (21765, 1197, '', '', '', '0000-00-00', 21765, '', NULL), (21766, 1198, '', '', '', '0000-00-00', 21766, '', NULL), (21767, 1199, '', 'If mailing Invoice, must have valid PO# & ship to address, or if do not ', '', '0000-00-00', 21767, '', NULL), (21768, 1200, '', '', '', '0000-00-00', 21768, '', NULL), (21769, 1201, '', '', '', '0000-00-00', 21769, '', NULL), (21770, 1202, '', '', '', '0000-00-00', 21770, '', NULL), (21771, 1203, '', '', '', '0000-00-00', 21771, '', NULL), (21772, 1204, '', '', '', '0000-00-00', 21772, '', NULL), (21773, 1205, '', '', '', '0000-00-00', 21773, '', NULL), (21774, 1206, '', '', '', '0000-00-00', 21774, '', NULL), (21775, 1207, '', '', '', '0000-00-00', 21775, '', NULL), (21776, 1208, 'S/N F0950', 'ELE Mdl. K-755 Pressure Tranducer (OOS) (D-5720)', 'Range: 150 psi', '2008-08-25', 21776, '8/25/2008', NULL), (21777, 1209, '', '', '', '0000-00-00', 21777, '', NULL), (21778, 1210, '', '***ISO Requested***', '', '0000-00-00', 21778, '', NULL), (21779, 1211, '', '', '', '0000-00-00', 21779, '', NULL), (21780, 1212, '', 'Client is responsible for all Duties, Work Permits, and Taxes. ', '', '0000-00-00', 21780, '', NULL), (21781, 1213, '', 'Client is responsible for all Duties, Work Permits, and Taxes. ', '', '0000-00-00', 21781, '', NULL), (21782, 1214, 'S/N 6-7-04', 'Karol Warner 580 Direct Shear-Vertical Force (E-4 & Man Specs)', 'Range: 1/8 TSF to 11 TSF', '2012-12-12', 21782, '12/12/2012', NULL), (21783, 1215, '', '', '', '0000-00-00', 21783, '', NULL), (21784, 1216, '', '', '', '0000-00-00', 21784, '', NULL), (21785, 1217, '', '', '', '0000-00-00', 21785, '', NULL), (21786, 1218, '', '', '', '0000-00-00', 21786, '', NULL), (21787, 1219, '', '', '', '0000-00-00', 21787, '', NULL), (21788, 1220, '', '', '', '0000-00-00', 21788, '', NULL), (21789, 1221, '', '', '', '0000-00-00', 21789, '', NULL), (21790, 1222, '', '', '', '0000-00-00', 21790, '', NULL), (21791, 1223, '', '', '', '0000-00-00', 21791, '', NULL), (21792, 1224, '', '', '', '0000-00-00', 21792, '', NULL), (21793, 1225, '', '', '', '0000-00-00', 21793, '', NULL), (21794, 1226, '', '', '', '0000-00-00', 21794, '', NULL), (21795, 1227, '', '', '', '0000-00-00', 21795, '', NULL), (21796, 1228, '', '', '', '0000-00-00', 21796, '', NULL), (21797, 1229, '', '', '', '0000-00-00', 21797, '', NULL), (21798, 1230, '', '', '', '0000-00-00', 21798, '', NULL), (21799, 1231, '', '', '', '0000-00-00', 21799, '', NULL), (21800, 1232, '', '', '', '0000-00-00', 21800, '', NULL), (21801, 1233, '', 'Must Call with day, time & Tech\'s name', '', '0000-00-00', 21801, '', NULL), (21802, 1234, '', '', '', '0000-00-00', 21802, '', NULL), (21803, 1235, '', '', '', '0000-00-00', 21803, '', NULL), (21804, 1236, '', '', '', '0000-00-00', 21804, '', NULL), (21805, 1237, '', '', '', '0000-00-00', 21805, '', NULL), (21806, 1238, '', '', '', '0000-00-00', 21806, '', NULL), (21807, 1239, '', '', '', '0000-00-00', 21807, '', NULL), (21808, 1240, '', '', '', '0000-00-00', 21808, '', NULL), (21809, 1241, '', '', '', '0000-00-00', 21809, '', NULL), (21810, 1242, '', '', '', '0000-00-00', 21810, '', NULL), (21811, 1243, '', 'Gyratory Compactors on 6 month schedule (May & December) ', '', '0000-00-00', 21811, '', NULL), (21812, 1244, '', '', '', '0000-00-00', 21812, '', NULL), (21813, 1245, 'S/N 86117', 'Forney QC-410-D-CPILOT Digital Compression Machine (E-4)', 'Range: 4K to 400K (OOS)', '2000-06-08', 21813, '6/8/2000', NULL), (21814, 1246, '', '', '', '0000-00-00', 21814, '', NULL), (21815, 1247, '', '', '', '0000-00-00', 21815, '', NULL), (21816, 1248, '', '', '', '0000-00-00', 21816, '', NULL), (21817, 1249, '', '', '', '0000-00-00', 21817, '', NULL), (21818, 1250, '', '', '', '0000-00-00', 21818, '', NULL), (21819, 1251, 'S/N 16636', 'Soiltest Proving Ring (OOS) (E-4 & Man Specs)', 'Cap: 500 lbs', '2001-01-12', 21819, '1/12/2001', NULL), (21820, 1252, '', ' ***Hard Hat & Safety Glasses Required*** ', '', '0000-00-00', 21820, '', NULL), (21821, 1253, '', '', '', '0000-00-00', 21821, '', NULL), (21822, 1254, '', 'Must have 1Kip Cell Pressure System & Epislon', '', '0000-00-00', 21822, '', NULL), (21823, 1255, '', '', '', '0000-00-00', 21823, '', NULL), (21824, 1256, '', '', '', '0000-00-00', 21824, '', NULL), (21825, 1257, 'S/N 31490', 'Baldwin Southwark Emery Comp. Machine (OUT OF SERVICE) (E-4)', 'Range: 90K ', '2004-12-09', 21825, '12/9/2004', NULL), (21826, 1258, '', '', '', '0000-00-00', 21826, '', NULL), (21827, 1259, '', '', '', '0000-00-00', 21827, '', NULL), (21828, 1260, '', '', '', '0000-00-00', 21828, '', NULL), (21829, 1261, '', '', '', '0000-00-00', 21829, '', NULL), (21830, 1262, '', '', '', '0000-00-00', 21830, '', NULL), (21831, 1263, '', '', '', '0000-00-00', 21831, '', NULL), (21832, 1264, '', '', '', '0000-00-00', 21832, '', NULL), (21833, 1265, '', '', '', '0000-00-00', 21833, '', NULL), (21834, 1266, '', '', '', '0000-00-00', 21834, '', NULL), (21835, 1267, '', '', '', '0000-00-00', 21835, '', NULL), (21836, 1268, '', '', '', '0000-00-00', 21836, '', NULL), (21837, 1269, '', '', '', '0000-00-00', 21837, '', NULL), (21838, 1270, '', '', '', '0000-00-00', 21838, '', NULL), (21839, 1271, '', '', '', '0000-00-00', 21839, '', NULL), (21840, 1272, '', '', '', '0000-00-00', 21840, '', NULL), (21841, 1273, '', '', '', '0000-00-00', 21841, '', NULL), (21842, 1274, '', '', '', '0000-00-00', 21842, '', NULL), (21843, 1275, '', '', '', '0000-00-00', 21843, '', NULL), (21844, 1276, ' ', ' ', ' ', '0000-00-00', 21844, '', NULL), (21845, 1277, '', '', '', '0000-00-00', 21845, '', NULL), (21846, 1278, '', '', ' ***ISO Requested***', '0000-00-00', 21846, '', NULL), (21847, 1279, 'S/N C', 'Enerpac Prestress Jack (OUT OF SERVICE) (E-4 & PCI)', 'Range: 400 to 600 psi', '2002-05-07', 21847, '5/7/2002', NULL), (21848, 1280, '', '', '', '0000-00-00', 21848, '', NULL), (21849, 1281, '', '', '', '0000-00-00', 21849, '', NULL), (21850, 1282, '', '', '', '0000-00-00', 21850, '', NULL), (21851, 1283, '', ' ***Site not manned***', '', '0000-00-00', 21851, '', NULL), (21852, 1284, 'S/N 76087', 'Forney QC-200-DR Compression Machine (OOS) (E-4)', 'Range: 20K / 400K', '2007-08-08', 21852, '8/8/2007', NULL), (21853, 1285, '', '', '', '0000-00-00', 21853, '', NULL), (21854, 1286, '', 'Certs send to: Superior Materials, Attn: Marty Ball, PO Box 2900, ', '', '0000-00-00', 21854, '', NULL), (21855, 1287, '', '', '', '0000-00-00', 21855, '', NULL), (21856, 1288, 'S/N Unknown', ' w/ Vertical Force (E-4 & 2%)', 'Range: 10 Kg to 320 Kg', '2013-02-12', 21856, '2/12/2013', NULL), (21857, 1289, 'S/N H6255', 'ELE Tri-Flex 2 Panel (D-5720)', 'Range: 150 psi', '2013-02-12', 21857, '2/12/2013', NULL), (21858, 1290, '', '', '', '0000-00-00', 21858, '', NULL), (21859, 1291, '', '', '', '0000-00-00', 21859, '', NULL), (21860, 1292, '', '', '', '0000-00-00', 21860, '', NULL), (21861, 1293, '', '', '', '0000-00-00', 21861, '', NULL), (21862, 1294, 'S/N 1155-16-20108C ', 'ELE 1155B0900 Single Proving Ring (E-4 & Man Specs)', 'Range: 11K (50 KN) (ID# 0411)', '2013-02-12', 21862, '2/12/2013', NULL), (21863, 1295, '', ' ***ISO Requested***', '', '0000-00-00', 21863, '', NULL), (21864, 1296, '', '', '', '0000-00-00', 21864, '', NULL), (21865, 1297, '', '', '', '0000-00-00', 21865, '', NULL), (21866, 1298, '', '', '', '0000-00-00', 21866, '', NULL), (21867, 1299, '', ' \"***ISO Requested***', '', '0000-00-00', 21867, '', NULL), (21868, 1300, '', '', '', '0000-00-00', 21868, '', NULL), (21869, 1301, '', ' \"***ISO Requested***', '', '0000-00-00', 21869, '', NULL), (21870, 1302, '', '', '', '0000-00-00', 21870, '', NULL), (21871, 1303, '', '', '', '0000-00-00', 21871, '', NULL), (21872, 1304, '', ' ***ISO Requested***', '', '0000-00-00', 21872, '', NULL), (21873, 1305, '', '', '', '0000-00-00', 21873, '', NULL), (21874, 1306, '', '', '', '0000-00-00', 21874, '', NULL), (21875, 1307, 'S/N 90060', 'Forney FT-250F-02 Compression Machine (MOVED) (E-4)', 'Range: 30K / 250K ', '2008-02-26', 21875, '2/26/2008', NULL), (21876, 1308, '', '', '', '0000-00-00', 21876, '', NULL), (21877, 1309, '', '', '', '0000-00-00', 21877, '', NULL), (21878, 1310, '', '', '', '0000-00-00', 21878, '', NULL), (21879, 1311, '', '', '', '0000-00-00', 21879, '', NULL), (21880, 1312, '', '', '', '0000-00-00', 21880, '', NULL), (21881, 1313, '', '', '', '0000-00-00', 21881, '', NULL), (21882, 1314, '', '', '', '0000-00-00', 21882, '', NULL), (21883, 1315, '', '', '', '0000-00-00', 21883, '', NULL), (21884, 1316, '', '', '', '0000-00-00', 21884, '', NULL), (21885, 1317, '', '', '', '0000-00-00', 21885, '', NULL), (21886, 1318, '', '', '', '0000-00-00', 21886, '', NULL), (21887, 1319, '', '', '', '0000-00-00', 21887, '', NULL), (21888, 1320, '', '', '', '0000-00-00', 21888, '', NULL), (21889, 1321, '', '', '', '0000-00-00', 21889, '', NULL), (21890, 1322, '', '', '', '0000-00-00', 21890, '', NULL), (21891, 1323, '', '', '', '0000-00-00', 21891, '', NULL), (21892, 1324, '', '', '', '0000-00-00', 21892, '', NULL), (21893, 1325, 'S/N 159815', 'Four (4) Displacement Channels onTinius Olsen Super L w/', 'Model 290 Display (D-6027)', '2005-03-30', 21893, '3/30/2005', NULL), (21894, 1326, '', '', '', '0000-00-00', 21894, '', NULL), (21895, 1327, '', '', '', '0000-00-00', 21895, '', NULL), (21896, 1328, '', '', '', '0000-00-00', 21896, '', NULL), (21897, 1329, '', '', '', '0000-00-00', 21897, '', NULL), (21898, 1330, '', '', '', '0000-00-00', 21898, '', NULL), (21899, 1331, '', '', '', '0000-00-00', 21899, '', NULL), (21900, 1332, '', '', '', '0000-00-00', 21900, '', NULL), (21901, 1333, '', '', '', '0000-00-00', 21901, '', NULL), (21902, 1334, '', '', '', '0000-00-00', 21902, '', NULL), (21903, 1335, '', '', '', '0000-00-00', 21903, '', NULL), (21904, 1336, '', '', '', '0000-00-00', 21904, '', NULL), (21905, 1337, '', '', '', '0000-00-00', 21905, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (21906, 1338, '', '', '', '0000-00-00', 21906, '', NULL), (21907, 1339, '', '', '', '0000-00-00', 21907, '', NULL), (21908, 1340, '', '', '', '0000-00-00', 21908, '', NULL), (21909, 1341, '', '', '', '0000-00-00', 21909, '', NULL), (21910, 1342, '', '', '', '0000-00-00', 21910, '', NULL), (21911, 1343, '', '', '', '0000-00-00', 21911, '', NULL), (21912, 1344, '', '', '', '0000-00-00', 21912, '', NULL), (21913, 1345, '', '', '', '0000-00-00', 21913, '', NULL), (21914, 1346, '', '', '', '0000-00-00', 21914, '', NULL), (21915, 1347, '', '', '', '0000-00-00', 21915, '', NULL), (21916, 1348, '', '', '', '0000-00-00', 21916, '', NULL), (21917, 1349, '', '', '', '0000-00-00', 21917, '', NULL), (21918, 1350, '', '', '', '0000-00-00', 21918, '', NULL), (21919, 1351, '', '', '', '0000-00-00', 21919, '', NULL), (21920, 1352, '', '', '', '0000-00-00', 21920, '', NULL), (21921, 1353, '', '', '', '0000-00-00', 21921, '', NULL), (21922, 1354, '', '', '', '0000-00-00', 21922, '', NULL), (21923, 1355, '', '', '', '0000-00-00', 21923, '', NULL), (21924, 1356, '', '', '', '0000-00-00', 21924, '', NULL), (21925, 1357, '', '', '', '0000-00-00', 21925, '', NULL), (21926, 1358, '', '', '', '0000-00-00', 21926, '', NULL), (21927, 1359, '', '', '', '0000-00-00', 21927, '', NULL), (21928, 1360, '', '', '', '0000-00-00', 21928, '', NULL), (21929, 1361, '', '', '', '0000-00-00', 21929, '', NULL), (21930, 1362, '', '', '', '0000-00-00', 21930, '', NULL), (21931, 1363, '', '', '', '0000-00-00', 21931, '', NULL), (21932, 1364, '', '', '', '0000-00-00', 21932, '', NULL), (21933, 1365, '', '', '', '0000-00-00', 21933, '', NULL), (21934, 1366, 'S/N 58835', 'Instron 5500R Compression Machine (E-4)', 'Range: ', NULL, 21934, 'New', NULL), (21935, 1367, '', '', '', '0000-00-00', 21935, '', NULL), (21936, 1368, 'S/N 86030', 'Forney FT-40 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2006-04-11', 21936, '4/11/2006', NULL), (21937, 1369, '', '', '', '0000-00-00', 21937, '', NULL), (21938, 1370, '', '', '', '0000-00-00', 21938, '', NULL), (21939, 1371, '', '', '', '0000-00-00', 21939, '', NULL), (21940, 1372, '', '', '', '0000-00-00', 21940, '', NULL), (21941, 1373, '', '', '', '0000-00-00', 21941, '', NULL), (21942, 1374, '', '', '', '0000-00-00', 21942, '', NULL), (21943, 1375, '', '', '', '0000-00-00', 21943, '', NULL), (21944, 1376, '', '', '', '0000-00-00', 21944, '', NULL), (21945, 1377, '', '', '', '0000-00-00', 21945, '', NULL), (21946, 1378, '', '', '', '0000-00-00', 21946, '', NULL), (21947, 1379, '', '', '', '0000-00-00', 21947, '', NULL), (21948, 1380, '', 'Sakrete Inc. (A & T Development)', '', '0000-00-00', 21948, '', NULL), (21949, 1381, '', '', '', '0000-00-00', 21949, '', NULL), (21950, 1382, '', '', '', '0000-00-00', 21950, '', NULL), (21951, 1383, '', '', '', '0000-00-00', 21951, '', NULL), (21952, 1384, '', '', '', '0000-00-00', 21952, '', NULL), (21953, 1385, '', '', '', '0000-00-00', 21953, '', NULL), (21954, 1386, 'S/N 1571522', 'Eilon Engineering RON 2100 S-15 Load Cell (ManSp & 0.1% FS)', 'Range: 15 Tons', '2005-06-09', 21954, '6/9/2005', NULL), (21955, 1387, 'S/N 05054026/8', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 100,000 lbs', '2005-05-13', 21955, '5/13/2005', NULL), (21956, 1388, '', '', '', '0000-00-00', 21956, '', NULL), (21957, 1389, '', '', '', '0000-00-00', 21957, '', NULL), (21958, 1390, 'S/N 110172-17', 'Wykeham Farrance Mdl. 24251 Deflection Frame #4/Channel 20 ', 'Range: 1/4 TSF to 16 TSF ', '2009-01-21', 21958, '1/21/2009', NULL), (21959, 1391, '', '', '', '0000-00-00', 21959, '', NULL), (21960, 1392, 'S/N 05012 / NC #4', 'CSI Model LC-40 Hydraulic Load Cell (E-4 & 2%)', 'Range: 40K', '2013-07-26', 21960, '7/26/2013', NULL), (21961, 1393, 'S/N A125*3*06', 'Geotest Mdl. CE1080 Point Loader (E-4) (Man Specs w/ Graph)', 'Range: 4.5 KG (9920.7 lbs)', '2013-01-08', 21961, '1/8/2013', NULL), (21962, 1394, '', '', '', '0000-00-00', 21962, '', NULL), (21963, 1395, '', '', '', '0000-00-00', 21963, '', NULL), (21964, 1396, '', '', '', '0000-00-00', 21964, '', NULL), (21965, 1397, '', 'Schedule both plants together. ', '', '0000-00-00', 21965, '', NULL), (21966, 1398, '', 'Schedule both plants togehter ', '', '0000-00-00', 21966, '', NULL), (21967, 1399, '', '', '', '0000-00-00', 21967, '', NULL), (21968, 1400, '', '', '', '0000-00-00', 21968, '', NULL), (21969, 1401, 'S/N 96517', 'HCS Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K ', '2010-04-30', 21969, '4/30/2010', NULL), (21970, 1402, '', '', '', '0000-00-00', 21970, '', NULL), (21971, 1403, 'S/N 4672', 'United Extensometer EZ 2-1 CH1 (OUT OF SERVICE)', 'Range: 1 Inch (E-83)', '2005-02-03', 21971, '2/3/2005', NULL), (21972, 1404, 'S/N L58709 ', 'Mettler PM6100 Scale (E-898) (OOS)', 'Range: 6,100 Gram (ID# Q-0822)', '2009-01-28', 21972, '1/28/2009', NULL), (21973, 1405, 'S/N 8292 (ID# Q-0158)', 'Ohaus TP2KS Scale (E-898)', 'Range: 1 Gram to 2,000 Gram', '2008-01-28', 21973, '1/28/2008', NULL), (21974, 1406, '', '', '', '0000-00-00', 21974, '', NULL), (21975, 1407, '', '', '', '0000-00-00', 21975, '', NULL), (21976, 1408, 'S/N 5002706/01', 'Eilon Engineering Ron 2501 S-40 Load Cell (ManSp & 0.1% FS)', 'Range: 36 Metric Tons', '2006-01-27', 21976, '1/27/2006', NULL), (21977, 1409, '', '***Certification in name of Transcat***', '', '0000-00-00', 21977, '', NULL), (21978, 1410, '', '', '', '0000-00-00', 21978, '', NULL), (21979, 1411, '', '', '', '0000-00-00', 21979, '', NULL), (21980, 1412, '', '', '', '0000-00-00', 21980, '', NULL), (21981, 1413, '', '', '', '0000-00-00', 21981, '', NULL), (21982, 1414, '', '', '', '0000-00-00', 21982, '', NULL), (21983, 1415, '', '', '', '0000-00-00', 21983, '', NULL), (21984, 1416, '', '', '', '0000-00-00', 21984, '', NULL), (21985, 1417, '', '', '', '0000-00-00', 21985, '', NULL), (21986, 1418, '', '', '', '0000-00-00', 21986, '', NULL), (21987, 1419, '', ' ***A subsidiary of Structural Group, Inc.***', '', '0000-00-00', 21987, '', NULL), (21988, 1420, '', '', '', '0000-00-00', 21988, '', NULL), (21989, 1421, '', '', '', '0000-00-00', 21989, '', NULL), (21990, 1422, '', '', '', '0000-00-00', 21990, '', NULL), (21991, 1423, '', '', '', '0000-00-00', 21991, '', NULL), (21992, 1424, '', '', '', '0000-00-00', 21992, '', NULL), (21993, 1425, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 21993, '', NULL), (21994, 1426, '', '', '', '0000-00-00', 21994, '', NULL), (21995, 1427, '', '', '', '0000-00-00', 21995, '', NULL), (21996, 1428, '', '', '', '0000-00-00', 21996, '', NULL), (21997, 1429, '', '', '', '0000-00-00', 21997, '', NULL), (21998, 1430, '', '', '', '0000-00-00', 21998, '', NULL), (21999, 1431, '', '', '', '0000-00-00', 21999, '', NULL), (22000, 1432, '', '', '', '0000-00-00', 22000, '', NULL), (22001, 1433, 'S/N 43', 'Extra Gauge-Jack #2 (E-4 & PCI) (DAMAGED)', 'Range: 4K ', '2006-02-01', 22001, '2/1/2006', NULL), (22002, 1434, 'S/N 010306A', 'Strainsense ConAmp 20B Load Cell (E4 & PCI) OUT OF SERVICE', 'Range: 50K', '2004-02-13', 22002, '2/13/2004', NULL), (22003, 1435, '', '', '', '0000-00-00', 22003, '', NULL), (22004, 1436, '', '', '', '0000-00-00', 22004, '', NULL), (22005, 1437, '', '', '', '0000-00-00', 22005, '', NULL), (22006, 1438, '', '', '', '0000-00-00', 22006, '', NULL), (22007, 1439, '', '* Send Certs to Billing Address Attn: Eric Michener *', '', '0000-00-00', 22007, '', NULL), (22008, 1440, '', '', '', '0000-00-00', 22008, '', NULL), (22009, 1441, '', '', '', '0000-00-00', 22009, '', NULL), (22010, 1442, '', '', '', '0000-00-00', 22010, '', NULL), (22011, 1443, '', '', '', '0000-00-00', 22011, '', NULL), (22012, 1444, 'S/N 910', 'Brainard-Kilman Pressure Transducer Model E-124 (Channel #27)', 'Range: 100 PSI (D5720-95)', '2000-01-18', 22012, '1/18/2000', NULL), (22013, 1445, '', '', '', '0000-00-00', 22013, '', NULL), (22014, 1446, 'S/N Unknown', 'ELE Triaxial Flexwall (D-5720)', 'Range: 150 psi', '2005-02-21', 22014, '2/21/2005', NULL), (22015, 1447, 'S/N 5095', 'Pine Instrument Single Proving Ring-PMT (NOT IN USE)', 'Range 10K (E-4)', '2000-03-16', 22015, '3/16/2000', NULL), (22016, 1448, '', '', '', '0000-00-00', 22016, '', NULL), (22017, 1449, '', '', '', '0000-00-00', 22017, '', NULL), (22018, 1450, '', '', '', '0000-00-00', 22018, '', NULL), (22019, 1451, '', '', '', '0000-00-00', 22019, '', NULL), (22020, 1452, '', '', '', '0000-00-00', 22020, '', NULL), (22021, 1453, '', '', '', '0000-00-00', 22021, '', NULL), (22022, 1454, '', '', '', '0000-00-00', 22022, '', NULL), (22023, 1455, 'S/N Jack C', 'SPX Powerteam Prestress - Jack C (OOS) (E-4 & PCI)', 'Range: 4.5K / 40K', NULL, 22023, 'New', NULL), (22024, 1456, '', '', '', '0000-00-00', 22024, '', NULL), (22025, 1457, '', '', '', '0000-00-00', 22025, '', NULL), (22026, 1458, '', '', '', '0000-00-00', 22026, '', NULL), (22027, 1459, '', '', '', '0000-00-00', 22027, '', NULL), (22028, 1460, '', '', '', '0000-00-00', 22028, '', NULL), (22029, 1461, 'S/N MG4060', ' with Forney LVDT Horizontal (D-6027)', 'Range: 10mm', '2005-02-21', 22029, '2/21/2005', NULL), (22030, 1462, '', '', '', '0000-00-00', 22030, '', NULL), (22031, 1463, 'S/N 359', 'Soiltest Hammer Type N (C-805)', 'Range: 78 to 81 (OOS)', '2009-07-14', 22031, '7/14/2009', NULL), (22032, 1464, '', '', '', '0000-00-00', 22032, '', NULL), (22033, 1465, '', 'CUSTOMER WANTS 5 YEAR CALIBRATION SCHEDULE', '', '0000-00-00', 22033, '', NULL), (22034, 1466, '', '', '', '0000-00-00', 22034, '', NULL), (22035, 1467, '', '', '', '0000-00-00', 22035, '', NULL), (22036, 1468, '', ' ***ISO Requested***', '', '0000-00-00', 22036, '', NULL), (22037, 1469, '', '', '', '0000-00-00', 22037, '', NULL), (22038, 1470, '', '', '', '0000-00-00', 22038, '', NULL), (22039, 1471, '', '', '', '0000-00-00', 22039, '', NULL), (22040, 1472, '', '', '', '0000-00-00', 22040, '', NULL), (22041, 1473, '', '', '', '0000-00-00', 22041, '', NULL), (22042, 1474, '', '', '', '0000-00-00', 22042, '', NULL), (22043, 1475, '', '', '', '0000-00-00', 22043, '', NULL), (22044, 1476, '', '', '', '0000-00-00', 22044, '', NULL), (22045, 1477, '', '', '', '0000-00-00', 22045, '', NULL), (22046, 1478, '', '', '', '0000-00-00', 22046, '', NULL), (22047, 1479, '', '', '', '0000-00-00', 22047, '', NULL), (22048, 1480, '', '', '', '0000-00-00', 22048, '', NULL), (22049, 1481, '', '', '', '0000-00-00', 22049, '', NULL), (22050, 1482, '', '', '', '0000-00-00', 22050, '', NULL), (22051, 1483, '', '', '', '0000-00-00', 22051, '', NULL), (22052, 1484, '', '', '', '0000-00-00', 22052, '', NULL), (22053, 1485, '', '', '', '0000-00-00', 22053, '', NULL), (22054, 1486, 'S/N 66125', 'Forney LT-705-2 Compression Machine (E-4) (SOLD)', 'Range: 200K / 500K', '2005-07-12', 22054, '7/12/2005', NULL), (22055, 1487, '', '', '', '0000-00-00', 22055, '', NULL), (22056, 1488, '', '', '', '0000-00-00', 22056, '', NULL), (22057, 1489, '', '', '', '0000-00-00', 22057, '', NULL), (22058, 1490, '', '', '', '0000-00-00', 22058, '', NULL), (22059, 1491, '', '', '', '0000-00-00', 22059, '', NULL), (22060, 1492, '', '', '', '0000-00-00', 22060, '', NULL), (22061, 1493, '', '', '', '0000-00-00', 22061, '', NULL), (22062, 1494, '', '', '', '0000-00-00', 22062, '', NULL), (22063, 1495, '', '', '', '0000-00-00', 22063, '', NULL), (22064, 1496, '', '', '', '0000-00-00', 22064, '', NULL), (22065, 1497, '', '', '', '0000-00-00', 22065, '', NULL), (22066, 1498, '', '', '', '0000-00-00', 22066, '', NULL), (22067, 1499, '', '', '', '0000-00-00', 22067, '', NULL), (22068, 1500, '', '', '', '0000-00-00', 22068, '', NULL), (22069, 1501, 'S/N 84140', 'Hercules Model HSJ Prestress Jack (Out of Service) (E-4 & PCI)', 'Range: 3K to 35K', '2006-07-27', 22069, '7/27/2006', NULL), (22070, 1502, '', '***Safety Requirements booklet in file***', '', '0000-00-00', 22070, '', NULL), (22071, 1503, '', '', '', '0000-00-00', 22071, '', NULL), (22072, 1504, '', '', '', '0000-00-00', 22072, '', NULL), (22073, 1505, '', '', '', '0000-00-00', 22073, '', NULL), (22074, 1506, '', '', '', '0000-00-00', 22074, '', NULL), (22075, 1507, '', '', '', '0000-00-00', 22075, '', NULL), (22076, 1508, '', '', '', '0000-00-00', 22076, '', NULL), (22077, 1509, '', '', '', '0000-00-00', 22077, '', NULL), (22078, 1510, '', '', '', '0000-00-00', 22078, '', NULL), (22079, 1511, '', '', '', '0000-00-00', 22079, '', NULL), (22080, 1512, '', '', '', '0000-00-00', 22080, '', NULL), (22081, 1513, '', '', '', '0000-00-00', 22081, '', NULL), (22082, 1514, '', '', '', '0000-00-00', 22082, '', NULL), (22083, 1515, '', 'the Seaplane Shuttle to be picked up***', '', '0000-00-00', 22083, '', NULL), (22084, 1516, '', 'Need pass to get into Hovensa & plane ticket (Cape Air)', '', '0000-00-00', 22084, '', NULL), (22085, 1517, '', ' ***Need Work Permit to get on Island***', '', '0000-00-00', 22085, '', NULL), (22086, 1518, '', '', '', '0000-00-00', 22086, '', NULL), (22087, 1519, '', '', '', '0000-00-00', 22087, '', NULL), (22088, 1520, '', '', '', '0000-00-00', 22088, '', NULL), (22089, 1521, '', '', '', '0000-00-00', 22089, '', NULL), (22090, 1522, '', '', '', '0000-00-00', 22090, '', NULL), (22091, 1523, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 22091, '', NULL), (22092, 1524, '', ' ***Need Work Permit - Nester 284-495-5672/284-495-5674 Fax*** ', '', '0000-00-00', 22092, '', NULL), (22093, 1525, '', '', '', '0000-00-00', 22093, '', NULL), (22094, 1526, '', '', '', '0000-00-00', 22094, '', NULL), (22095, 1527, '', '', '', '0000-00-00', 22095, '', NULL), (22096, 1528, '', '', '', '0000-00-00', 22096, '', NULL), (22097, 1529, '', '', '', '0000-00-00', 22097, '', NULL), (22098, 1530, '', '', '', '0000-00-00', 22098, '', NULL), (22099, 1531, '', '', '', '0000-00-00', 22099, '', NULL), (22100, 1532, 'S/N 75047', 'Forney QC-200-DR Compression Machine (NOT USING) (E-4)', 'Range: 30K / 400K (High Range Only) ', '2010-06-07', 22100, '6/7/2010', NULL), (22101, 1533, '', ' ***Will alternate machine calibrations from year to year***', '', '0000-00-00', 22101, '', NULL), (22102, 1534, 'S/N 050668359', 'Humboldt BG2110-0-16 Dial Indicator (D-6027)', 'Range: 1 inch ', '2010-06-08', 22102, '6/8/2010', NULL), (22103, 1535, 'S/N 022639522', 'CDI BG2110 Dial Indicator (D-6027)', 'Range: 1 inch ', '2010-06-08', 22103, '6/8/2010', NULL), (22104, 1536, 'S/N 022639523', 'CDI BG2110 Dial Indicator (D-6027)', 'Range: 1 inches ', '2010-06-08', 22104, '6/8/2010', NULL), (22105, 1537, '', '', '', '0000-00-00', 22105, '', NULL), (22106, 1538, '', ' ***ISO Requested***', '', '0000-00-00', 22106, '', NULL), (22107, 1539, '', ' ***ISO Requested***', '', '0000-00-00', 22107, '', NULL), (22108, 1540, 'S/N 27755023', 'Sartorius AY Scale (E-898)', 'Range: 10,000 Grams ', '2013-06-04', 22108, '6/4/2013', NULL), (22109, 1541, 'S/N H3804824', 'AND FG 60K Scale ( moved ) (E-898)', 'Range: 150 lbs', '2012-06-07', 22109, '6/7/2012', NULL), (22110, 1542, '', ' \"***Must have U of A Requisition to be paid***', '', '0000-00-00', 22110, '', NULL), (22111, 1543, '', '', '', '0000-00-00', 22111, '', NULL), (22112, 1544, 'S/N', 'Pine Instrument Gyratory Compactor (Man Specs ) ', 'Range: ', NULL, 22112, 'New', NULL), (22113, 1545, '', ' **ISO Requested***', '', '0000-00-00', 22113, '', NULL), (22114, 1546, '', '', '', '0000-00-00', 22114, '', NULL), (22115, 1547, 'S/N', 'AND GF-6000 Scale (E-898)', 'Range: 6,100 Grams', NULL, 22115, 'New', NULL), (22116, 1548, '', '', '', '0000-00-00', 22116, '', NULL), (22117, 1549, '', ' ***ISO Requested***', '', '0000-00-00', 22117, '', NULL), (22118, 1550, '', ' \"***ISO Requested**', '', '0000-00-00', 22118, '', NULL), (22119, 1551, '', '', '', '0000-00-00', 22119, '', NULL), (22120, 1552, '', '', '', '0000-00-00', 22120, '', NULL), (22121, 1553, '', '', '', '0000-00-00', 22121, '', NULL), (22122, 1554, '', 'is in file***', '', '0000-00-00', 22122, '', NULL), (22123, 1555, '', '', '', '0000-00-00', 22123, '', NULL), (22124, 1556, 'S/N 88096', 'Forney QC-400C-01 Digital Compression Machine (E-4)', 'Range: 40K to 400K (OOS)', '2003-06-25', 22124, '6/25/2003', NULL), (22125, 1557, '', ' ', '', '0000-00-00', 22125, '', NULL), (22126, 1558, '', '', '', '0000-00-00', 22126, '', NULL), (22127, 1559, '', '', '', '0000-00-00', 22127, '', NULL), (22128, 1560, 'S/N', 'Forney Pipe Tester (OOS) (E-4 & C-497)', 'Range: ', NULL, 22128, 'New', NULL), (22129, 1561, '***continued***', '***S/N 76115-041101 need 16\" Heise New style work hand***', ' \"***ISO Requested***', '0000-00-00', 22129, '', NULL), (22130, 1562, 'S/N 1002', ' w/Dial Indicator Vertical Displacement (D-6027)', 'Range: 0.5 inches (Broke w/ S/N 092302)', '2009-06-23', 22130, '6/23/2009', NULL), (22131, 1563, '', '', '', '0000-00-00', 22131, '', NULL), (22132, 1564, '', '', '', '0000-00-00', 22132, '', NULL), (22133, 1565, '', ' ', '', '0000-00-00', 22133, '', NULL), (22134, 1566, '', '', '', '0000-00-00', 22134, '', NULL), (22135, 1567, '', '', '', '0000-00-00', 22135, '', NULL), (22136, 1568, '', '', '', '0000-00-00', 22136, '', NULL), (22137, 1569, '', '', '', '0000-00-00', 22137, '', NULL), (22138, 1570, '', '', '', '0000-00-00', 22138, '', NULL), (22139, 1571, '', '', '', '0000-00-00', 22139, '', NULL), (22140, 1572, '', '', '', '0000-00-00', 22140, '', NULL), (22141, 1573, '', '', '', '0000-00-00', 22141, '', NULL), (22142, 1574, '', '', '', '0000-00-00', 22142, '', NULL), (22143, 1575, '', '', '', '0000-00-00', 22143, '', NULL), (22144, 1576, '', '', '', '0000-00-00', 22144, '', NULL), (22145, 1577, '', '', '', '0000-00-00', 22145, '', NULL), (22146, 1578, '', '', '', '0000-00-00', 22146, '', NULL), (22147, 1579, '', '', '', '0000-00-00', 22147, '', NULL), (22148, 1580, '', '', '', '0000-00-00', 22148, '', NULL), (22149, 1581, '', '', '', '0000-00-00', 22149, '', NULL), (22150, 1582, '', '', '', '0000-00-00', 22150, '', NULL), (22151, 1583, '', '', '', '0000-00-00', 22151, '', NULL), (22152, 1584, '', '', '', '0000-00-00', 22152, '', NULL), (22153, 1585, '', '', '', '0000-00-00', 22153, '', NULL), (22154, 1586, '', '', '', '0000-00-00', 22154, '', NULL), (22155, 1587, '', '', '', '0000-00-00', 22155, '', NULL), (22156, 1588, '', '', '', '0000-00-00', 22156, '', NULL), (22157, 1589, '', '', '', '0000-00-00', 22157, '', NULL), (22158, 1590, '', '', '', '0000-00-00', 22158, '', NULL), (22159, 1591, '', '', '', '0000-00-00', 22159, '', NULL), (22160, 1592, '', '', '', '0000-00-00', 22160, '', NULL), (22161, 1593, '', '', '', '0000-00-00', 22161, '', NULL), (22162, 1594, '', '', '', '0000-00-00', 22162, '', NULL), (22163, 1595, '', '', '', '0000-00-00', 22163, '', NULL), (22164, 1596, '', '', '', '0000-00-00', 22164, '', NULL), (22165, 1597, '', '', '', '0000-00-00', 22165, '', NULL), (22166, 1598, '', '', '', '0000-00-00', 22166, '', NULL), (22167, 1599, '', '', '', '0000-00-00', 22167, '', NULL), (22168, 1600, '', '', '', '0000-00-00', 22168, '', NULL), (22169, 1601, '', '', '', '0000-00-00', 22169, '', NULL), (22170, 1602, '', '', '', '0000-00-00', 22170, '', NULL), (22171, 1603, '', '', '', '0000-00-00', 22171, '', NULL), (22172, 1604, '', '', '', '0000-00-00', 22172, '', NULL), (22173, 1605, 'S/N 97108', 'Forney F-500C-LC1 Compression Machine (E-4)', 'Range 2K to 500K', '1998-07-07', 22173, '7/7/1998', NULL), (22174, 1606, '', '', '', '0000-00-00', 22174, '', NULL), (22175, 1607, '', '', '', '0000-00-00', 22175, '', NULL), (22176, 1608, '', '', '', '0000-00-00', 22176, '', NULL), (22177, 1609, '', '', '', '0000-00-00', 22177, '', NULL), (22178, 1610, '', '', '', '0000-00-00', 22178, '', NULL), (22179, 1611, '', '', '', '0000-00-00', 22179, '', NULL), (22180, 1612, '', '', '', '0000-00-00', 22180, '', NULL), (22181, 1613, '', '', '', '0000-00-00', 22181, '', NULL), (22182, 1614, '', '', '', '0000-00-00', 22182, '', NULL), (22183, 1615, '', '', '', '0000-00-00', 22183, '', NULL), (22184, 1616, '', 'Mail Certs to Billing Address', '', '0000-00-00', 22184, '', NULL), (22185, 1617, 'S/N 80221', 'Forney FT-21 Compression Machine w/ Hand Pump (Out of Service)', 'Range 250K', '1999-10-13', 22185, '10/13/1999', NULL), (22186, 1618, '', '', '', '0000-00-00', 22186, '', NULL), (22187, 1619, 'S/N 07133 ', 'Forney F25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Moved to Noxen)', '2008-06-02', 22187, '6/2/2008', NULL), (22188, 1620, '', '', '', '0000-00-00', 22188, '', NULL), (22189, 1621, '', '', '', '0000-00-00', 22189, '', NULL), (22190, 1622, '', '', '', '0000-00-00', 22190, '', NULL), (22191, 1623, '', '', '', '0000-00-00', 22191, '', NULL), (22192, 1624, '', '', '', '0000-00-00', 22192, '', NULL), (22193, 1625, '', '', '', '0000-00-00', 22193, '', NULL), (22194, 1626, '', '', '', '0000-00-00', 22194, '', NULL), (22195, 1627, '', '', '', '0000-00-00', 22195, '', NULL), (22196, 1628, '', '', '', '0000-00-00', 22196, '', NULL), (22197, 1629, '', '', '', '0000-00-00', 22197, '', NULL), (22198, 1630, '', '', '', '0000-00-00', 22198, '', NULL), (22199, 1631, '', '', '', '0000-00-00', 22199, '', NULL), (22200, 1632, '', '***MUST HAVE PO***', '', '0000-00-00', 22200, '', NULL), (22201, 1633, '', '', '', '0000-00-00', 22201, '', NULL), (22202, 1634, '', '6 Month Schedule Prestress Jacks - ( January & June) ', '', '0000-00-00', 22202, '', NULL), (22203, 1635, '', '', '', '0000-00-00', 22203, '', NULL), (22204, 1636, '', '', '', '0000-00-00', 22204, '', NULL), (22205, 1637, '', '', '', '0000-00-00', 22205, '', NULL), (22206, 1638, '', '', '', '0000-00-00', 22206, '', NULL), (22207, 1639, '', '', '', '0000-00-00', 22207, '', NULL), (22208, 1640, 'S/N 99102', 'Installation of Digital Retrofit w/CS-100-3', '', '1999-07-08', 22208, '7/8/1999', NULL), (22209, 1641, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 22209, '', NULL), (22210, 1642, 'S/N 342161', 'Powerteam Electric Pump System w/ Comp Display w/ 2 Rams ', 'Range: 200 Kn ', NULL, 22210, 'New', NULL), (22211, 1643, '', '', '', '0000-00-00', 22211, '', NULL), (22212, 1644, '', '', '', '0000-00-00', 22212, '', NULL), (22213, 1645, '', '***ISO Requested***', '', '0000-00-00', 22213, '', NULL), (22214, 1646, '', '', '', '0000-00-00', 22214, '', NULL), (22215, 1647, '', '', '', '0000-00-00', 22215, '', NULL), (22216, 1648, '', '', '', '0000-00-00', 22216, '', NULL), (22217, 1649, '', '', '', '0000-00-00', 22217, '', NULL), (22218, 1650, 'S/N 4278', 'Soiltest CBR Single Proving Ring (ID#14425) (E-4 & Man Specs)', 'Cap: 5K ', '2006-01-06', 22218, '1/6/2006', NULL), (22219, 1651, '', '**Need 1 inch Rachet to turn drive on back of frame - Tool at', 'Cuerda\'s***', '0000-00-00', 22219, '', NULL), (22220, 1652, 'S/N 23184', 'Soiltest AP-170-C Marshall Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K Plant # 12 (OOS)', '2008-12-06', 22220, '12/6/2008', NULL), (22221, 1653, 'S/N 8144 (Plant #22)', 'Pine Instrument Gyratory Compactor AFG2A (ManSpecs&AASHTO)', 'Cap:5KN/10.5KN 152.4mm 30RPM ', '2012-12-11', 22221, '12/11/2012', NULL), (22222, 1654, '', '', '', '0000-00-00', 22222, '', NULL), (22223, 1655, '', '', '', '0000-00-00', 22223, '', NULL), (22224, 1656, '', '', '', '0000-00-00', 22224, '', NULL), (22225, 1657, 'S/N 9135', 'Soiltest Unconfined Single Proving Ring OOS (E-4 & Man Specs)', 'Range: 2K', '2010-05-18', 22225, '5/18/2010', NULL), (22226, 1658, '', '', '', '0000-00-00', 22226, '', NULL), (22227, 1659, '', '', '', '0000-00-00', 22227, '', NULL), (22228, 1660, '', '', '', '0000-00-00', 22228, '', NULL), (22229, 1661, '', '', '', '0000-00-00', 22229, '', NULL), (22230, 1662, 'S/N 0025736396', 'ELE Dial Indicator (D-6027) (BROKE)', 'Range: 1 Inch', NULL, 22230, 'New', NULL), (22231, 1663, '', '', '', '0000-00-00', 22231, '', NULL), (22232, 1664, '', '', '', '0000-00-00', 22232, '', NULL), (22233, 1665, '', '*** ISO Requested ***', '', '0000-00-00', 22233, '', NULL), (22234, 1666, 'S/N 8600399100', 'Forney QC-4100-CS-100-3 Digital Compression Machine (E-4)', 'Range: 5K to 300K (OOS)', '2006-05-18', 22234, '5/18/2006', NULL), (22235, 1667, '', '***ISO Requested***', '', '0000-00-00', 22235, '', NULL), (22236, 1668, 'S/N 1155-15-19512', 'ELE Proving Ring Model 1155B0800 (E-4 & Man Specs)', 'Range: 28kN (OOS)', '2005-07-01', 22236, '7/1/2005', NULL), (22237, 1669, '', '', '', '0000-00-00', 22237, '', NULL), (22238, 1670, 'S/N 1027', 'Brainard Kilman S-610 CBR Press (OOS) (E-4)', 'Range 1K', '2003-06-06', 22238, '6/6/2003', NULL), (22239, 1671, 'S/N 055230', 'Hercules HSJ Prestress Jack (BROKE) (E-4 & PCI)', 'Range: 5K / 35K', '2007-05-10', 22239, '5/10/2007', NULL), (22240, 1672, '', '', '', '0000-00-00', 22240, '', NULL), (22241, 1673, '', 'Copy of invoice needs E-mailed to card.payables@rescoproducts.com', ' (VCN master card Account)', '0000-00-00', 22241, '', NULL), (22242, 1674, '', '', '', '0000-00-00', 22242, '', NULL), (22243, 1675, 'S/N 4841', 'Spare 2% Gauge w/ELE S/N 0204 (OUT OF SERVICE)', 'Range: 250K', '2004-12-09', 22243, '12/9/2004', NULL), (22244, 1676, '', '', '', '0000-00-00', 22244, '', NULL), (22245, 1677, '', '', '', '0000-00-00', 22245, '', NULL), (22246, 1678, '', '', '', '0000-00-00', 22246, '', NULL), (22247, 1679, '', '', '', '0000-00-00', 22247, '', NULL), (22248, 1680, '', '', '', '0000-00-00', 22248, '', NULL), (22249, 1681, '', '', '', '0000-00-00', 22249, '', NULL), (22250, 1682, '', '', '', '0000-00-00', 22250, '', NULL), (22251, 1683, '', '', '', '0000-00-00', 22251, '', NULL), (22252, 1684, '', '', '', '0000-00-00', 22252, '', NULL), (22253, 1685, '', '', '', '0000-00-00', 22253, '', NULL), (22254, 1686, '', '', '', '0000-00-00', 22254, '', NULL), (22255, 1687, '', '', '', '0000-00-00', 22255, '', NULL), (22256, 1688, '', '', '', '0000-00-00', 22256, '', NULL), (22257, 1689, '', '', '', '0000-00-00', 22257, '', NULL), (22258, 1690, '', '', '', '0000-00-00', 22258, '', NULL), (22259, 1691, '', '', '', '0000-00-00', 22259, '', NULL), (22260, 1692, '', '', '', '0000-00-00', 22260, '', NULL), (22261, 1693, '', '', '', '0000-00-00', 22261, '', NULL), (22262, 1694, '', '', '', '0000-00-00', 22262, '', NULL), (22263, 1695, '', '', '', '0000-00-00', 22263, '', NULL), (22264, 1696, '', '', '', '0000-00-00', 22264, '', NULL), (22265, 1697, '', '', '', '0000-00-00', 22265, '', NULL), (22266, 1698, '', '', '', '0000-00-00', 22266, '', NULL), (22267, 1699, '', '', '', '0000-00-00', 22267, '', NULL), (22268, 1700, '', '', '', '0000-00-00', 22268, '', NULL), (22269, 1701, '', '', '', '0000-00-00', 22269, '', NULL), (22270, 1702, '', '', '', '0000-00-00', 22270, '', NULL), (22271, 1703, 'S/N 5210161', 'AND Model FX-2000 Scale (OOS) (E-898)', 'Range: 2,100 Grams', '2008-03-17', 22271, '3/17/2008', NULL), (22272, 1704, 'S/N 9301', 'Soiltest Speed Control G-900 (NOT IN USE)', 'Range: .05 inches / min.', '2001-03-19', 22272, '3/19/2001', NULL), (22273, 1705, 'S/N 101', 'Karol Warner Conbel Dial Indicator (D-6027) (OOS)', 'Range: 0.5 inch', '2010-03-09', 22273, '3/9/2010', NULL), (22274, 1706, '', '', '', '0000-00-00', 22274, '', NULL), (22275, 1707, '', '', '', '0000-00-00', 22275, '', NULL), (22276, 1708, '', '***Failure to do so Can Ruin Our Load Cell***', '', '0000-00-00', 22276, '', NULL), (22277, 1709, '', '', '', '0000-00-00', 22277, '', NULL), (22278, 1710, '', '', '', '0000-00-00', 22278, '', NULL), (22279, 1711, '', ' ***ISO Requested***', '', '0000-00-00', 22279, '', NULL), (22280, 1712, '', 'Send Certs to: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer', '0000-00-00', 22280, '', NULL), (22281, 1713, 'S/N 89093-0505100', 'Forney FT-40-CS-100-1S Digital Compression Machine (E-4)', 'Range: 3K to 250K (OOS)', '2007-04-10', 22281, '4/10/2007', NULL), (22282, 1714, '', '', '', '0000-00-00', 22282, '', NULL), (22283, 1715, '', '', '', '0000-00-00', 22283, '', NULL), (22284, 1716, '', '', '', '0000-00-00', 22284, '', NULL), (22285, 1717, 'S/N 77074', 'Forney FT-40-CA-103 Compression Machine (E-4)', 'Range: 250K', '2007-04-11', 22285, '4/11/2007', NULL), (22286, 1718, '', '', '', '0000-00-00', 22286, '', NULL), (22287, 1719, '', 'MUST ISSUE QUOTE AND RECEIVE SIGNED QUOTE TO DO JOB', 'DO NOT DO ANY ADDITIONAL WORK ', '0000-00-00', 22287, '', NULL), (22288, 1720, '', '', '', '0000-00-00', 22288, '', NULL), (22289, 1721, 'S/N 3806337', 'A & D Electronic Balance--Model EP-20KA (No longer on site)', 'Cap: 20 kilograms', NULL, 22289, 'NEW', NULL), (22290, 1722, '', '', '', '0000-00-00', 22290, '', NULL), (22291, 1723, '', '', '', '0000-00-00', 22291, '', NULL), (22292, 1724, 'S/N 72392 (ID#761)', 'Lincoln Jack w / Enerpac Gauge (BROKE) (E-4 & PCI)', 'Range: 20 Ton (Gauge: 0 to 10,000 PSI) ', NULL, 22292, 'New', NULL), (22293, 1725, 'S/N', 'ELE Bond Shear Tester w/ D-25 Indicator & Artech Load Cell (E-4)', 'Range: 2K', NULL, 22293, 'New', NULL), (22294, 1726, '', '', '', '0000-00-00', 22294, '', NULL), (22295, 1727, '', '', '', '0000-00-00', 22295, '', NULL), (22296, 1728, '', '', '', '0000-00-00', 22296, '', NULL), (22297, 1729, '', '', '', '0000-00-00', 22297, '', NULL), (22298, 1730, '', '', '', '0000-00-00', 22298, '', NULL), (22299, 1731, '', '', '', '0000-00-00', 22299, '', NULL), (22300, 1732, '', '', '', '0000-00-00', 22300, '', NULL), (22301, 1733, '', '', '', '0000-00-00', 22301, '', NULL), (22302, 1734, '', '', '', '0000-00-00', 22302, '', NULL), (22303, 1735, '', '', '', '0000-00-00', 22303, '', NULL), (22304, 1736, '', '', '', '0000-00-00', 22304, '', NULL), (22305, 1737, '', '', '', '0000-00-00', 22305, '', NULL), (22306, 1738, '', '', '', '0000-00-00', 22306, '', NULL), (22307, 1739, '', '', '', '0000-00-00', 22307, '', NULL), (22308, 1740, '', '', '', '0000-00-00', 22308, '', NULL), (22309, 1741, '', '', '', '0000-00-00', 22309, '', NULL), (22310, 1742, '', '', '', '0000-00-00', 22310, '', NULL), (22311, 1743, '', '', '', '0000-00-00', 22311, '', NULL), (22312, 1744, '', ' with Range Card', 'Range: 500 lbs. ID#25-LC11RC04', '0000-00-00', 22312, '', NULL), (22313, 1745, '', '', '', '0000-00-00', 22313, '', NULL), (22314, 1746, '', '', '', '0000-00-00', 22314, '', NULL), (22315, 1747, '', '', '', '0000-00-00', 22315, '', NULL), (22316, 1748, '', '', '', '0000-00-00', 22316, '', NULL), (22317, 1749, '', '', '', '0000-00-00', 22317, '', NULL), (22318, 1750, '', '', '', '0000-00-00', 22318, '', NULL), (22319, 1751, '', '', '', '0000-00-00', 22319, '', NULL), (22320, 1752, '', '', '', '0000-00-00', 22320, '', NULL), (22321, 1753, 'S/N 10097', 'Wykeham Farrance Single Proving Ring (E-4)', 'Cap: 450#', '2002-04-17', 22321, '4/17/2002', NULL), (22322, 1754, '', '', '', '0000-00-00', 22322, '', NULL), (22323, 1755, '', '', '', '0000-00-00', 22323, '', NULL), (22324, 1756, '', '', '', '0000-00-00', 22324, '', NULL), (22325, 1757, '', '', '', '0000-00-00', 22325, '', NULL), (22326, 1758, '', '', '', '0000-00-00', 22326, '', NULL), (22327, 1759, '', '', '', '0000-00-00', 22327, '', NULL), (22328, 1760, '', '', '', '0000-00-00', 22328, '', NULL), (22329, 1761, '', '', '', '0000-00-00', 22329, '', NULL), (22330, 1762, '', '', '', '0000-00-00', 22330, '', NULL), (22331, 1763, '', '', '', '0000-00-00', 22331, '', NULL), (22332, 1764, '', '', '', '0000-00-00', 22332, '', NULL), (22333, 1765, '', '', '', '0000-00-00', 22333, '', NULL), (22334, 1766, '', '', '', '0000-00-00', 22334, '', NULL), (22335, 1767, '', '', '', '0000-00-00', 22335, '', NULL), (22336, 1768, '', '', '', '0000-00-00', 22336, '', NULL), (22337, 1769, '', '', '', '0000-00-00', 22337, '', NULL), (22338, 1770, '', '', '', '0000-00-00', 22338, '', NULL), (22339, 1771, '', '', '', '0000-00-00', 22339, '', NULL), (22340, 1772, '', '', '', '0000-00-00', 22340, '', NULL), (22341, 1773, '', '', '', '0000-00-00', 22341, '', NULL), (22342, 1774, '', '', '', '0000-00-00', 22342, '', NULL), (22343, 1775, '', '', '', '0000-00-00', 22343, '', NULL), (22344, 1776, '', '', '', '0000-00-00', 22344, '', NULL), (22345, 1777, '', '', '', '0000-00-00', 22345, '', NULL), (22346, 1778, '', '', '', '0000-00-00', 22346, '', NULL), (22347, 1779, '', '', '', '0000-00-00', 22347, '', NULL), (22348, 1780, '', '', '', '0000-00-00', 22348, '', NULL), (22349, 1781, '', '', '', '0000-00-00', 22349, '', NULL), (22350, 1782, '', '', '', '0000-00-00', 22350, '', NULL), (22351, 1783, '', '', '', '0000-00-00', 22351, '', NULL), (22352, 1784, '', '', '', '0000-00-00', 22352, '', NULL), (22353, 1785, '', '', '', '0000-00-00', 22353, '', NULL), (22354, 1786, '', '', '', '0000-00-00', 22354, '', NULL), (22355, 1787, '', '', '', '0000-00-00', 22355, '', NULL), (22356, 1788, '', '', '', '0000-00-00', 22356, '', NULL), (22357, 1789, '', '', '', '0000-00-00', 22357, '', NULL), (22358, 1790, '', '', '', '0000-00-00', 22358, '', NULL), (22359, 1791, '', '', '', '0000-00-00', 22359, '', NULL), (22360, 1792, '', '', '', '0000-00-00', 22360, '', NULL), (22361, 1793, '', '', '', '0000-00-00', 22361, '', NULL), (22362, 1794, '', '', '', '0000-00-00', 22362, '', NULL), (22363, 1795, '', '', '', '0000-00-00', 22363, '', NULL), (22364, 1796, '', '', '', '0000-00-00', 22364, '', NULL), (22365, 1797, '', '', '', '0000-00-00', 22365, '', NULL), (22366, 1798, '', '', '', '0000-00-00', 22366, '', NULL), (22367, 1799, '', '', '', '0000-00-00', 22367, '', NULL), (22368, 1800, '', '', '', '0000-00-00', 22368, '', NULL), (22369, 1801, '', '', '', '0000-00-00', 22369, '', NULL), (22370, 1802, '', '', '', '0000-00-00', 22370, '', NULL), (22371, 1803, '', '', '', '0000-00-00', 22371, '', NULL), (22372, 1804, '', '', '', '0000-00-00', 22372, '', NULL), (22373, 1805, '', '', '', '0000-00-00', 22373, '', NULL), (22374, 1806, '', '', '', '0000-00-00', 22374, '', NULL), (22375, 1807, '', '', '', '0000-00-00', 22375, '', NULL), (22376, 1808, '', '', '', '0000-00-00', 22376, '', NULL), (22377, 1809, '', '', '', '0000-00-00', 22377, '', NULL), (22378, 1810, '', '', '', '0000-00-00', 22378, '', NULL), (22379, 1811, '', '', '', '0000-00-00', 22379, '', NULL), (22380, 1812, '', '', '', '0000-00-00', 22380, '', NULL), (22381, 1813, '', '', '', '0000-00-00', 22381, '', NULL), (22382, 1814, '', '', '', '0000-00-00', 22382, '', NULL), (22383, 1815, '', '', '', '0000-00-00', 22383, '', NULL), (22384, 1816, 'S/N 453', 'Pine Instrument Asphalt Tester Model 850 (E-4)', 'Range: 2.5K / 5K / 10K (SOLD)', '2008-03-11', 22384, '3/11/2008', NULL), (22385, 1817, '', '', '', '0000-00-00', 22385, '', NULL), (22386, 1818, '', '', '', '0000-00-00', 22386, '', NULL), (22387, 1819, '', '', '', '0000-00-00', 22387, '', NULL), (22388, 1820, '', '', '', '0000-00-00', 22388, '', NULL), (22389, 1821, '', '', '', '0000-00-00', 22389, '', NULL), (22390, 1822, '', '', '', '0000-00-00', 22390, '', NULL), (22391, 1823, 'S/N 04080037', 'Briefcase BCS-80 Scale (ID #E-12) (E-898)', 'Range: 176 lbs ', '2013-05-08', 22391, '5/8/2013', NULL), (22392, 1824, '', '', '', '0000-00-00', 22392, '', NULL), (22393, 1825, '', '', '', '0000-00-00', 22393, '', NULL), (22394, 1826, '', 'e-mail Solitation Letter to sam.kimani@ebaengineering.com', '', '0000-00-00', 22394, '', NULL), (22395, 1827, 'S/N ID #12', 'Briefcase BCS-80 Scale (E-898) OOS', 'Range: 176 lbs ', '2012-05-09', 22395, '5/9/2012', NULL), (22396, 1828, '', '', '', '0000-00-00', 22396, '', NULL), (22397, 1829, '', '', '', '0000-00-00', 22397, '', NULL), (22398, 1830, '', '', '', '0000-00-00', 22398, '', NULL), (22399, 1831, 'S/N 24015', 'ELE CBR Single Proving Ring (E-4 & ManSpec)', 'Cap: 10K', '2013-05-15', 22399, '5/15/2013', NULL), (22400, 1832, '', '', '', '0000-00-00', 22400, '', NULL), (22401, 1833, '', '', '', '0000-00-00', 22401, '', NULL), (22402, 1834, '', ' ***ISO Requested***', '', '0000-00-00', 22402, '', NULL), (22403, 1835, '', 'West Virginia Department of Highways, Attn: Don Kraft, ', '', '0000-00-00', 22403, '', NULL), (22404, 1836, '', '', '', '0000-00-00', 22404, '', NULL), (22405, 1837, '', '', '', '0000-00-00', 22405, '', NULL), (22406, 1838, '', '', '', '0000-00-00', 22406, '', NULL), (22407, 1839, '', '', '', '0000-00-00', 22407, '', NULL), (22408, 1840, '', '**All machines need our big & small service labels**', '', '0000-00-00', 22408, '', NULL), (22409, 1841, '', '', '', '0000-00-00', 22409, '', NULL), (22410, 1842, 'S/N', 'Dial Indicator (D-6027)', 'Range: ', NULL, 22410, 'New', NULL), (22411, 1843, '', '', '', '0000-00-00', 22411, '', NULL), (22412, 1844, '', '', '', '0000-00-00', 22412, '', NULL), (22413, 1845, '', '', '', '0000-00-00', 22413, '', NULL), (22414, 1846, '', '', '', '0000-00-00', 22414, '', NULL), (22415, 1847, '', 'No power at machines - Need long ext.cords & their long', '', '0000-00-00', 22415, '', NULL), (22416, 1848, '', '***ISO Requested***', '', '0000-00-00', 22416, '', NULL), (22417, 1849, '', '', '', '0000-00-00', 22417, '', NULL), (22418, 1850, '', '', '', '0000-00-00', 22418, '', NULL), (22419, 1851, 'S/N 04118', 'Forney LA-270-F-PILOT Digital Compression Machine (E-4)', 'Range: 300 lbs to 30,000 lbs (SOLD) ', '2009-05-26', 22419, '5/26/2009', NULL), (22420, 1852, '', '', '', '0000-00-00', 22420, '', NULL), (22421, 1853, '', '', '', '0000-00-00', 22421, '', NULL), (22422, 1854, '', '', '', '0000-00-00', 22422, '', NULL), (22423, 1855, '', '', '', '0000-00-00', 22423, '', NULL), (22424, 1856, '', '', '', '0000-00-00', 22424, '', NULL), (22425, 1857, 'S/N 967', 'Rainhart Model 416 Beam Breaker w/Recorder (MOVED) (E-4)', 'Range: 12K', '2007-04-10', 22425, '4/10/2007', NULL), (22426, 1858, '', '', '', '0000-00-00', 22426, '', NULL), (22427, 1859, '', '', '', '0000-00-00', 22427, '', NULL), (22428, 1860, '', '', '', '0000-00-00', 22428, '', NULL), (22429, 1861, '', '', '', '0000-00-00', 22429, '', NULL), (22430, 1862, '', '', '', '0000-00-00', 22430, '', NULL), (22431, 1863, '', '', '', '0000-00-00', 22431, '', NULL), (22432, 1864, '', '', '', '0000-00-00', 22432, '', NULL), (22433, 1865, '', '', '', '0000-00-00', 22433, '', NULL), (22434, 1866, '', '', '', '0000-00-00', 22434, '', NULL), (22435, 1867, '', '', '', '0000-00-00', 22435, '', NULL), (22436, 1868, '', '', '', '0000-00-00', 22436, '', NULL), (22437, 1869, '', '', '', '0000-00-00', 22437, '', NULL), (22438, 1870, '', '', '', '0000-00-00', 22438, '', NULL), (22439, 1871, '', '', '', '0000-00-00', 22439, '', NULL), (22440, 1872, '', '', '', '0000-00-00', 22440, '', NULL), (22441, 1873, '', '', '', '0000-00-00', 22441, '', NULL), (22442, 1874, '', '', '', '0000-00-00', 22442, '', NULL), (22443, 1875, '', '', '', '0000-00-00', 22443, '', NULL), (22444, 1876, '', '', '', '0000-00-00', 22444, '', NULL), (22445, 1877, '', '', '', '0000-00-00', 22445, '', NULL), (22446, 1878, '', '', '', '0000-00-00', 22446, '', NULL), (22447, 1879, '', '', '', '0000-00-00', 22447, '', NULL), (22448, 1880, '', ' ***Need Job#, Name of person who placed order, PO# ***', '', '0000-00-00', 22448, '', NULL), (22449, 1881, '', '', '', '0000-00-00', 22449, '', NULL), (22450, 1882, '', '', '', '0000-00-00', 22450, '', NULL), (22451, 1883, '', '', '', '0000-00-00', 22451, '', NULL), (22452, 1884, '', '', '', '0000-00-00', 22452, '', NULL), (22453, 1885, '', '', '', '0000-00-00', 22453, '', NULL), (22454, 1886, '', '', '', '0000-00-00', 22454, '', NULL), (22455, 1887, '', '', '', '0000-00-00', 22455, '', NULL), (22456, 1888, '', '', '', '0000-00-00', 22456, '', NULL), (22457, 1889, '', '', '', '0000-00-00', 22457, '', NULL), (22458, 1890, '', '', '', '0000-00-00', 22458, '', NULL), (22459, 1891, '', '', '', '0000-00-00', 22459, '', NULL), (22460, 1892, '', '', '', '0000-00-00', 22460, '', NULL), (22461, 1893, '', '', '', '0000-00-00', 22461, '', NULL), (22462, 1894, '', '', '', '0000-00-00', 22462, '', NULL), (22463, 1895, '', '', '', '0000-00-00', 22463, '', NULL), (22464, 1896, '', '', '', '0000-00-00', 22464, '', NULL), (22465, 1897, '', '', '', '0000-00-00', 22465, '', NULL), (22466, 1898, '', '', '', '0000-00-00', 22466, '', NULL), (22467, 1899, '', '', '', '0000-00-00', 22467, '', NULL), (22468, 1900, '', '', '', '0000-00-00', 22468, '', NULL), (22469, 1901, '', '', '', '0000-00-00', 22469, '', NULL), (22470, 1902, '', '', '', '0000-00-00', 22470, '', NULL), (22471, 1903, '', '', '', '0000-00-00', 22471, '', NULL), (22472, 1904, '', '', '', '0000-00-00', 22472, '', NULL), (22473, 1905, 'S/N 254', 'Brainard-Kilman Model E-124 Pressure Transducer (D-5720)', 'Range: 150 PSI (Out of Service)', '2006-06-01', 22473, '6/1/2006', NULL), (22474, 1906, '', '', '', '0000-00-00', 22474, '', NULL), (22475, 1907, '', '', '', '0000-00-00', 22475, '', NULL), (22476, 1908, '', '', '', '0000-00-00', 22476, '', NULL), (22477, 1909, '', '', '', '0000-00-00', 22477, '', NULL), (22478, 1910, '', '', '', '0000-00-00', 22478, '', NULL), (22479, 1911, '', '', '', '0000-00-00', 22479, '', NULL), (22480, 1912, '', '', '', '0000-00-00', 22480, '', NULL), (22481, 1913, '', '', '', '0000-00-00', 22481, '', NULL), (22482, 1914, '', '', '', '0000-00-00', 22482, '', NULL), (22483, 1915, '', '', '', '0000-00-00', 22483, '', NULL), (22484, 1916, '', '', '', '0000-00-00', 22484, '', NULL), (22485, 1917, '', '', '', '0000-00-00', 22485, '', NULL), (22486, 1918, '', '', '', '0000-00-00', 22486, '', NULL), (22487, 1919, '', '', '', '0000-00-00', 22487, '', NULL), (22488, 1920, '', '', '', '0000-00-00', 22488, '', NULL), (22489, 1921, 'S/N 72013', 'Forney QC-150 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2008-05-07', 22489, '5/7/2008', NULL), (22490, 1922, '', 'Cert sent and in the name of Bonsal America job site address', '', '0000-00-00', 22490, '', NULL), (22491, 1923, '', '', '', '0000-00-00', 22491, '', NULL), (22492, 1924, 'S/N 1004', 'Hogentogler Mdl. G 3103 Dial Indicator (D-6027)', 'Range: 1 Inch (OOS)', '2008-05-13', 22492, '5/13/2008', NULL), (22493, 1925, 'S/N Unknown', 'Tinius Olsen Beam Machine (Out of Service) (E-4) ', 'Range: 1K to 100K', '2004-08-30', 22493, '8/30/2004', NULL), (22494, 1926, '', '', '', '0000-00-00', 22494, '', NULL), (22495, 1927, '', '', '', '0000-00-00', 22495, '', NULL), (22496, 1928, '', '', '', '0000-00-00', 22496, '', NULL), (22497, 1929, '', '', '', '0000-00-00', 22497, '', NULL), (22498, 1930, '', '', '', '0000-00-00', 22498, '', NULL), (22499, 1931, '', '', '', '0000-00-00', 22499, '', NULL), (22500, 1932, '', '', '', '0000-00-00', 22500, '', NULL), (22501, 1933, '', '', '', '0000-00-00', 22501, '', NULL), (22502, 1934, '', '', '', '0000-00-00', 22502, '', NULL), (22503, 1935, '', '', '', '0000-00-00', 22503, '', NULL), (22504, 1936, '', '', '', '0000-00-00', 22504, '', NULL), (22505, 1937, '', '', '', '0000-00-00', 22505, '', NULL), (22506, 1938, '', '', '', '0000-00-00', 22506, '', NULL), (22507, 1939, '', '', '', '0000-00-00', 22507, '', NULL), (22508, 1940, '', '', '', '0000-00-00', 22508, '', NULL), (22509, 1941, '', '', '', '0000-00-00', 22509, '', NULL), (22510, 1942, '', '', '', '0000-00-00', 22510, '', NULL), (22511, 1943, '', '', '', '0000-00-00', 22511, '', NULL), (22512, 1944, '', '', '', '0000-00-00', 22512, '', NULL), (22513, 1945, '', '', '', '0000-00-00', 22513, '', NULL), (22514, 1946, '', '***2011 - May need fluid changed in pump next calibration***', '', '0000-00-00', 22514, '', NULL), (22515, 1947, '', ' ***ISO Requested***', '', '0000-00-00', 22515, '', NULL), (22516, 1948, '', '', ' ', '0000-00-00', 22516, '', NULL), (22517, 1949, '', ' ***S/N 83006 See Special Instructions in File***', '', '0000-00-00', 22517, '', NULL), (22518, 1950, '', ' ***Certs sent to Bill Site***', '', '0000-00-00', 22518, '', NULL), (22519, 1951, '', '', '', '0000-00-00', 22519, '', NULL), (22520, 1952, '', '', '', '0000-00-00', 22520, '', NULL), (22521, 1953, '', '', '', '0000-00-00', 22521, '', NULL), (22522, 1954, '', '', '', '0000-00-00', 22522, '', NULL), (22523, 1955, '', '', '', '0000-00-00', 22523, '', NULL), (22524, 1956, '', '', '', '0000-00-00', 22524, '', NULL), (22525, 1957, '', '', '', '0000-00-00', 22525, '', NULL), (22526, 1958, 'S/N 104', 'Ashcroft Gauge', 'Range: 0-60psi', '2002-11-22', 22526, '11/22/2002', NULL), (22527, 1959, 'S/N ', 'Forney Air Meter Gauge (D-5720)', 'Range: 15 PSI', NULL, 22527, 'New', NULL), (22528, 1960, '', '', '', '0000-00-00', 22528, '', NULL), (22529, 1961, '', '', '', '0000-00-00', 22529, '', NULL), (22530, 1962, '', '', '', '0000-00-00', 22530, '', NULL), (22531, 1963, '', '', '', '0000-00-00', 22531, '', NULL), (22532, 1964, '', '', '', '0000-00-00', 22532, '', NULL), (22533, 1965, '', '', '', '0000-00-00', 22533, '', NULL), (22534, 1966, '', '', '', '0000-00-00', 22534, '', NULL), (22535, 1967, '', '', '', '0000-00-00', 22535, '', NULL), (22536, 1968, '', '', '', '0000-00-00', 22536, '', NULL), (22537, 1969, '', '', '', '0000-00-00', 22537, '', NULL), (22538, 1970, '', '', '', '0000-00-00', 22538, '', NULL), (22539, 1971, '', '', '', '0000-00-00', 22539, '', NULL), (22540, 1972, '', '', '', '0000-00-00', 22540, '', NULL), (22541, 1973, '', '', '', '0000-00-00', 22541, '', NULL), (22542, 1974, '', '', '', '0000-00-00', 22542, '', NULL), (22543, 1975, '', '', '', '0000-00-00', 22543, '', NULL), (22544, 1976, '', '', '', '0000-00-00', 22544, '', NULL), (22545, 1977, '', '', '', '0000-00-00', 22545, '', NULL), (22546, 1978, '', '', '', '0000-00-00', 22546, '', NULL), (22547, 1979, '', '', '', '0000-00-00', 22547, '', NULL), (22548, 1980, '', '', '', '0000-00-00', 22548, '', NULL), (22549, 1981, '', '', '', '0000-00-00', 22549, '', NULL), (22550, 1982, '', '', '', '0000-00-00', 22550, '', NULL), (22551, 1983, '', '', '', '0000-00-00', 22551, '', NULL), (22552, 1984, '', '', '', '0000-00-00', 22552, '', NULL), (22553, 1985, '', '', '', '0000-00-00', 22553, '', NULL), (22554, 1986, '', '', '', '0000-00-00', 22554, '', NULL), (22555, 1987, '', '', '', '0000-00-00', 22555, '', NULL), (22556, 1988, 'S/N 1984AG89198', 'Power Team Post Tension Jack - Model C (E-4 & PCI)', 'Range: 7100 psi', '2004-10-19', 22556, '10/19/2004', NULL), (22557, 1989, '', '', '', '0000-00-00', 22557, '', NULL), (22558, 1990, '', '***ISO Requested***', '', '0000-00-00', 22558, '', NULL), (22559, 1991, '', '', '', '0000-00-00', 22559, '', NULL), (22560, 1992, '', '', '', '0000-00-00', 22560, '', NULL), (22561, 1993, '', '', '', '0000-00-00', 22561, '', NULL), (22562, 1994, '', '', '', '0000-00-00', 22562, '', NULL), (22563, 1995, '', '', '', '0000-00-00', 22563, '', NULL), (22564, 1996, '', '', '', '0000-00-00', 22564, '', NULL), (22565, 1997, '', '', '', '0000-00-00', 22565, '', NULL), (22566, 1998, '', ' ***ISO Requested***', '', '0000-00-00', 22566, '', NULL), (22567, 1999, '', '', '', '0000-00-00', 22567, '', NULL), (22568, 2000, '', 'Josh Gotschall at the Cadillac Site***', '', '0000-00-00', 22568, '', NULL), (22569, 2001, '', ' ***Check Outlet before using some have bad power***', '', '0000-00-00', 22569, '', NULL), (22570, 2002, '', '', '', '0000-00-00', 22570, '', NULL), (22571, 2003, '', '', '', '0000-00-00', 22571, '', NULL), (22572, 2004, '', '***ISO Requested***', '', '0000-00-00', 22572, '', NULL), (22573, 2005, '', '*Client Closed on Friday call on Thursday to Schedule/email', 'cert to mike send originals to Culpeper*', '0000-00-00', 22573, '', NULL), (22574, 2006, '', ' ', ' ', '0000-00-00', 22574, '', NULL), (22575, 2007, '', '', '', '0000-00-00', 22575, '', NULL), (22576, 2008, 'S/N 2', 'Enerpac Post Tension Jack (E-4 & PCI)', 'Range: 40K', '2012-10-16', 22576, '10/16/2012', NULL), (22577, 2009, '', '', '', '0000-00-00', 22577, '', NULL), (22578, 2010, '', '', '', '0000-00-00', 22578, '', NULL), (22579, 2011, '', '', '', '0000-00-00', 22579, '', NULL), (22580, 2012, '', '', '', '0000-00-00', 22580, '', NULL), (22581, 2013, '', '', '', '0000-00-00', 22581, '', NULL), (22582, 2014, '', '', '', '0000-00-00', 22582, '', NULL), (22583, 2015, '', '', '', '0000-00-00', 22583, '', NULL), (22584, 2016, '', '', '', '0000-00-00', 22584, '', NULL), (22585, 2017, '', '', '', '0000-00-00', 22585, '', NULL), (22586, 2018, '', '', '', '0000-00-00', 22586, '', NULL), (22587, 2019, '', '', '', '0000-00-00', 22587, '', NULL), (22588, 2020, '', '', '', '0000-00-00', 22588, '', NULL), (22589, 2021, '', '', '', '0000-00-00', 22589, '', NULL), (22590, 2022, '', '', '', '0000-00-00', 22590, '', NULL), (22591, 2023, '', '', '', '0000-00-00', 22591, '', NULL), (22592, 2024, '', '', '', '0000-00-00', 22592, '', NULL), (22593, 2025, '', '', '', '0000-00-00', 22593, '', NULL), (22594, 2026, '', '', '', '0000-00-00', 22594, '', NULL), (22595, 2027, '', '', '', '0000-00-00', 22595, '', NULL), (22596, 2028, '', '', '', '0000-00-00', 22596, '', NULL), (22597, 2029, '', '', '', '0000-00-00', 22597, '', NULL), (22598, 2030, '', '', '', '0000-00-00', 22598, '', NULL), (22599, 2031, '', '', '', '0000-00-00', 22599, '', NULL), (22600, 2032, '', '', '', '0000-00-00', 22600, '', NULL), (22601, 2033, '', '', '', '0000-00-00', 22601, '', NULL), (22602, 2034, '', '', '', '0000-00-00', 22602, '', NULL), (22603, 2035, '', '', '', '0000-00-00', 22603, '', NULL), (22604, 2036, '', '', '', '0000-00-00', 22604, '', NULL), (22605, 2037, '', '', '', '0000-00-00', 22605, '', NULL), (22606, 2038, '', '', '', '0000-00-00', 22606, '', NULL), (22607, 2039, '', '', '', '0000-00-00', 22607, '', NULL), (22608, 2040, '', '', '', '0000-00-00', 22608, '', NULL), (22609, 2041, '', '', '', '0000-00-00', 22609, '', NULL), (22610, 2042, '', '', '', '0000-00-00', 22610, '', NULL), (22611, 2043, '', '', '', '0000-00-00', 22611, '', NULL), (22612, 2044, '', '', '', '0000-00-00', 22612, '', NULL), (22613, 2045, '', '', '', '0000-00-00', 22613, '', NULL), (22614, 2046, '', '', '', '0000-00-00', 22614, '', NULL), (22615, 2047, '', '', '', '0000-00-00', 22615, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (22616, 2048, '', '', '', '0000-00-00', 22616, '', NULL), (22617, 2049, '', '', '', '0000-00-00', 22617, '', NULL), (22618, 2050, '', '', '', '0000-00-00', 22618, '', NULL), (22619, 2051, '', '', '', '0000-00-00', 22619, '', NULL), (22620, 2052, '', '', '', '0000-00-00', 22620, '', NULL), (22621, 2053, '', '', '', '0000-00-00', 22621, '', NULL), (22622, 2054, '', '', '', '0000-00-00', 22622, '', NULL), (22623, 2055, '', '', '', '0000-00-00', 22623, '', NULL), (22624, 2056, '', '', '', '0000-00-00', 22624, '', NULL), (22625, 2057, '', '', '', '0000-00-00', 22625, '', NULL), (22626, 2058, '', '', '', '0000-00-00', 22626, '', NULL), (22627, 2059, '', '', '', '0000-00-00', 22627, '', NULL), (22628, 2060, '', '', '', '0000-00-00', 22628, '', NULL), (22629, 2061, '', '', '', '0000-00-00', 22629, '', NULL), (22630, 2062, '', '', '', '0000-00-00', 22630, '', NULL), (22631, 2063, '', '', '', '0000-00-00', 22631, '', NULL), (22632, 2064, '', '', '', '0000-00-00', 22632, '', NULL), (22633, 2065, '', '', '', '0000-00-00', 22633, '', NULL), (22634, 2066, '', 'Soiltest Accutech Digital Machine Model CT-7259 (MOVED)', '', '0000-00-00', 22634, '', NULL), (22635, 2067, '', '', '', '0000-00-00', 22635, '', NULL), (22636, 2068, '', '', '', '0000-00-00', 22636, '', NULL), (22637, 2069, '', '', '', '0000-00-00', 22637, '', NULL), (22638, 2070, '', '', '', '0000-00-00', 22638, '', NULL), (22639, 2071, '', '', '', '0000-00-00', 22639, '', NULL), (22640, 2072, '', '', '', '0000-00-00', 22640, '', NULL), (22641, 2073, '', '', '', '0000-00-00', 22641, '', NULL), (22642, 2074, '', '', '', '0000-00-00', 22642, '', NULL), (22643, 2075, 'S/N Stress 6', 'Stress Con Prestress Jack (MOVED) (E-4 & PCI)', 'Range: 4K / 35K', '2007-10-04', 22643, '10/4/2007', NULL), (22644, 2076, '', '', '', '0000-00-00', 22644, '', NULL), (22645, 2077, '', '', '', '0000-00-00', 22645, '', NULL), (22646, 2078, '', '*** ISO Requested***', '', '0000-00-00', 22646, '', NULL), (22647, 2079, 'S/N 1', 'Soiltest LC-8 Dial Indicator (D-6027)', 'Range: 1 inch', '2012-10-23', 22647, '10/23/2012', NULL), (22648, 2080, 'S/N 102', 'Federal Dial Indicator (OOS) (D-6027) ', 'Range: 1 inch', '2008-11-11', 22648, '11/11/2008', NULL), (22649, 2081, '', '', '', '0000-00-00', 22649, '', NULL), (22650, 2082, 'S/N A4969', 'Enerpac Portable Beam Breaker ( MOVED) (E-4)', 'Range: 10K', '2005-04-28', 22650, '4/28/2005', NULL), (22651, 2083, '', '', '', '0000-00-00', 22651, '', NULL), (22652, 2084, 'S/N Jack #6', 'Simons Prestress Jack (E-4 & PCI) (does not have setup anymore)', 'Inital 4K 190 psi Final 50K 3000psi', '2012-03-21', 22652, '3/21/2012', NULL), (22653, 2085, '', '', '', '0000-00-00', 22653, '', NULL), (22654, 2086, '', '', '', '0000-00-00', 22654, '', NULL), (22655, 2087, '', '', '', '0000-00-00', 22655, '', NULL), (22656, 2088, '', '', '', '0000-00-00', 22656, '', NULL), (22657, 2089, '', ' Send Certs to Billing Address', '', '0000-00-00', 22657, '', NULL), (22658, 2090, '', '', '', '0000-00-00', 22658, '', NULL), (22659, 2091, '', ' \"***ISO Requested***', '', '0000-00-00', 22659, '', NULL), (22660, 2092, 'S/N 2', 'Hayes Prestress Jack (E-4 & PCI) (OUT OF SERVICE)', 'Range: 4K and 45K', '2003-06-08', 22660, '6/8/2003', NULL), (22661, 2093, '', '', '', '0000-00-00', 22661, '', NULL), (22662, 2094, 'S/N 051585', 'Simms Mdl. P3500-L386 Prestress Jack OOS (E-4 & PCI)', 'Range: 3K / 35K', '2008-09-15', 22662, '9/15/2008', NULL), (22663, 2095, '', ' ***ISO Requested***', '', '0000-00-00', 22663, '', NULL), (22664, 2096, '', '', '', '0000-00-00', 22664, '', NULL), (22665, 2097, '', '', '', '0000-00-00', 22665, '', NULL), (22666, 2098, '', 'Send Certs to Job Site.', '', '0000-00-00', 22666, '', NULL), (22667, 2099, 'S/N 24176', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K (MOVED)', '2011-02-18', 22667, '2/18/2011', NULL), (22668, 2100, '', '', '', '0000-00-00', 22668, '', NULL), (22669, 2101, '', '', '', '0000-00-00', 22669, '', NULL), (22670, 2102, '', '', '', '0000-00-00', 22670, '', NULL), (22671, 2103, '', '', '', '0000-00-00', 22671, '', NULL), (22672, 2104, '', '', '', '0000-00-00', 22672, '', NULL), (22673, 2105, '', '', '', '0000-00-00', 22673, '', NULL), (22674, 2106, '', '', '', '0000-00-00', 22674, '', NULL), (22675, 2107, '', '', '', '0000-00-00', 22675, '', NULL), (22676, 2108, '', '', '', '0000-00-00', 22676, '', NULL), (22677, 2109, '', '', '', '0000-00-00', 22677, '', NULL), (22678, 2110, '', '', '', '0000-00-00', 22678, '', NULL), (22679, 2111, '', '', '', '0000-00-00', 22679, '', NULL), (22680, 2112, '', '', '', '0000-00-00', 22680, '', NULL), (22681, 2113, '', '', '', '0000-00-00', 22681, '', NULL), (22682, 2114, '', '', '', '0000-00-00', 22682, '', NULL), (22683, 2115, '', '', '', '0000-00-00', 22683, '', NULL), (22684, 2116, '', '', '', '0000-00-00', 22684, '', NULL), (22685, 2117, '', '', '', '0000-00-00', 22685, '', NULL), (22686, 2118, '', '', '', '0000-00-00', 22686, '', NULL), (22687, 2119, '', '', '', '0000-00-00', 22687, '', NULL), (22688, 2120, '', '', '', '0000-00-00', 22688, '', NULL), (22689, 2121, '', '', '', '0000-00-00', 22689, '', NULL), (22690, 2122, '', '', '', '0000-00-00', 22690, '', NULL), (22691, 2123, '', '', '', '0000-00-00', 22691, '', NULL), (22692, 2124, '', '', '', '0000-00-00', 22692, '', NULL), (22693, 2125, '', '', '', '0000-00-00', 22693, '', NULL), (22694, 2126, '', '', '', '0000-00-00', 22694, '', NULL), (22695, 2127, '', '', '', '0000-00-00', 22695, '', NULL), (22696, 2128, '', '', '', '0000-00-00', 22696, '', NULL), (22697, 2129, '', '', '', '0000-00-00', 22697, '', NULL), (22698, 2130, '', '', '', '0000-00-00', 22698, '', NULL), (22699, 2131, '', '', '', '0000-00-00', 22699, '', NULL), (22700, 2132, '', '', '', '0000-00-00', 22700, '', NULL), (22701, 2133, '', '', '', '0000-00-00', 22701, '', NULL), (22702, 2134, '', '', '', '0000-00-00', 22702, '', NULL), (22703, 2135, '', '', '', '0000-00-00', 22703, '', NULL), (22704, 2136, '', '', '', '0000-00-00', 22704, '', NULL), (22705, 2137, '', '', '', '0000-00-00', 22705, '', NULL), (22706, 2138, '', '', '', '0000-00-00', 22706, '', NULL), (22707, 2139, '', '', '', '0000-00-00', 22707, '', NULL), (22708, 2140, '', '', '', '0000-00-00', 22708, '', NULL), (22709, 2141, '', '', '', '0000-00-00', 22709, '', NULL), (22710, 2142, '', '', '', '0000-00-00', 22710, '', NULL), (22711, 2143, '', '', '', '0000-00-00', 22711, '', NULL), (22712, 2144, '', '', '', '0000-00-00', 22712, '', NULL), (22713, 2145, '', '', '', '0000-00-00', 22713, '', NULL), (22714, 2146, '', '', '', '0000-00-00', 22714, '', NULL), (22715, 2147, 'S/N E-115-44', 'IMTE Rail Shear Test w/Sensotec MDL 41/0573-02-02 (E-4)', 'Range: 1,200 lbs to 12,000 lbs ', '2006-09-07', 22715, '9/7/2006', NULL), (22716, 2148, '', '', '', '0000-00-00', 22716, '', NULL), (22717, 2149, '', '', '', '0000-00-00', 22717, '', NULL), (22718, 2150, 'S/N 40759', 'RDP Group Linear Transducer, Model: LDC1000A (OOS) (D-6027)', 'Range: 0.5 inches', '2004-09-29', 22718, '9/29/2004', NULL), (22719, 2151, '', '', '', '0000-00-00', 22719, '', NULL), (22720, 2152, '', '', '', '0000-00-00', 22720, '', NULL), (22721, 2153, '', '', '', '0000-00-00', 22721, '', NULL), (22722, 2154, '', '', '', '0000-00-00', 22722, '', NULL), (22723, 2155, '', '', '', '0000-00-00', 22723, '', NULL), (22724, 2156, 'S/N 21742', 'Com Ten Model DGC-200 (E-4) (NOT USING)', 'Range: 20 lbs. to 200 lbs.', '2000-11-02', 22724, '11/2/2000', NULL), (22725, 2157, '', 'so tell them amount when scheduling to get check processed ', '', '0000-00-00', 22725, '', NULL), (22726, 2158, '', '', '', '0000-00-00', 22726, '', NULL), (22727, 2159, '', '', '', '0000-00-00', 22727, '', NULL), (22728, 2160, '', '', '', '0000-00-00', 22728, '', NULL), (22729, 2161, '', '', '', '0000-00-00', 22729, '', NULL), (22730, 2162, '', '', '', '0000-00-00', 22730, '', NULL), (22731, 2163, '', '', '', '0000-00-00', 22731, '', NULL), (22732, 2164, '', '', '', '0000-00-00', 22732, '', NULL), (22733, 2165, '', '', '', '0000-00-00', 22733, '', NULL), (22734, 2166, '', '', '', '0000-00-00', 22734, '', NULL), (22735, 2167, '', '', '', '0000-00-00', 22735, '', NULL), (22736, 2168, '', '', '', '0000-00-00', 22736, '', NULL), (22737, 2169, '', '', '', '0000-00-00', 22737, '', NULL), (22738, 2170, '', '', '', '0000-00-00', 22738, '', NULL), (22739, 2171, '', '', '', '0000-00-00', 22739, '', NULL), (22740, 2172, '', '', '', '0000-00-00', 22740, '', NULL), (22741, 2173, '', '', '', '0000-00-00', 22741, '', NULL), (22742, 2174, '', '', '', '0000-00-00', 22742, '', NULL), (22743, 2175, '', '', '', '0000-00-00', 22743, '', NULL), (22744, 2176, '', '', '', '0000-00-00', 22744, '', NULL), (22745, 2177, '', '', '', '0000-00-00', 22745, '', NULL), (22746, 2178, '', '', '', '0000-00-00', 22746, '', NULL), (22747, 2179, '', '', '', '0000-00-00', 22747, '', NULL), (22748, 2180, '', '', '', '0000-00-00', 22748, '', NULL), (22749, 2181, '', '', '', '0000-00-00', 22749, '', NULL), (22750, 2182, '', '', '', '0000-00-00', 22750, '', NULL), (22751, 2183, '', '', '', '0000-00-00', 22751, '', NULL), (22752, 2184, '', '', '', '0000-00-00', 22752, '', NULL), (22753, 2185, '', '', '', '0000-00-00', 22753, '', NULL), (22754, 2186, '', '', '', '0000-00-00', 22754, '', NULL), (22755, 2187, '', '', '', '0000-00-00', 22755, '', NULL), (22756, 2188, '', '', '', '0000-00-00', 22756, '', NULL), (22757, 2189, '', '', '', '0000-00-00', 22757, '', NULL), (22758, 2190, '', '', '', '0000-00-00', 22758, '', NULL), (22759, 2191, '', '', '', '0000-00-00', 22759, '', NULL), (22760, 2192, '', '', '', '0000-00-00', 22760, '', NULL), (22761, 2193, '', '', '', '0000-00-00', 22761, '', NULL), (22762, 2194, '', '', '', '0000-00-00', 22762, '', NULL), (22763, 2195, '', '', '', '0000-00-00', 22763, '', NULL), (22764, 2196, '', '', '', '0000-00-00', 22764, '', NULL), (22765, 2197, '', 'Putting in archived database; haven\'t cal\'d since before 2010.', '', '0000-00-00', 22765, '', NULL), (22766, 2198, '', '', '', '0000-00-00', 22766, '', NULL), (22767, 2199, '', '', '', '0000-00-00', 22767, '', NULL), (22768, 2200, '', '', '', '0000-00-00', 22768, '', NULL), (22769, 2201, '', '', '', '0000-00-00', 22769, '', NULL), (22770, 2202, '', '**NEED 400 SYSTEM FOR PROVING RING**', '', '0000-00-00', 22770, '', NULL), (22771, 2203, '', '', '', '0000-00-00', 22771, '', NULL), (22772, 2204, 'S/N', ' w/ Vertical Displacement LDT (D-6027)', 'Range: ', NULL, 22772, 'New', NULL), (22773, 2205, '', 'Putting in archived database.', '', '0000-00-00', 22773, '', NULL), (22774, 2206, '', ' ****Put ID#\'s on Cert & Labels****', '', '0000-00-00', 22774, '', NULL), (22775, 2207, 'S/N Unknown', 'ELE Triaxial Flexwall (D-5720)', 'Range: 150 psi', '2005-02-21', 22775, '2/21/2005', NULL), (22776, 2208, 'S/N MG4060', ' with Forney LVDT Horizontal (D-6027)', 'Range: 10mm', '2005-02-21', 22776, '2/21/2005', NULL), (22777, 2209, '', '', '', '0000-00-00', 22777, '', NULL), (22778, 2210, '', '', '', '0000-00-00', 22778, '', NULL), (22779, 2211, '', '', '', '0000-00-00', 22779, '', NULL), (22780, 2212, '', '', '', '0000-00-00', 22780, '', NULL), (22781, 2213, '', '', '', '0000-00-00', 22781, '', NULL), (22782, 2214, '', '', '', '0000-00-00', 22782, '', NULL), (22783, 2215, '', '', '', '0000-00-00', 22783, '', NULL), (22784, 2216, '', '', '', '0000-00-00', 22784, '', NULL), (22785, 2217, '', '', '', '0000-00-00', 22785, '', NULL), (22786, 2218, '', '', '', '0000-00-00', 22786, '', NULL), (22787, 2219, 'S/N 90007036', 'Digital Com-Ten System Model 951KVC2000 (E-4)', 'Range: 5lbs. to 100 lbs.', '2000-08-10', 22787, '8/10/2000', NULL), (22788, 2220, 'S/N 648', ' w/ Tension Load Cell (E-4)', 'Range: 10K', '2006-08-22', 22788, '8/22/2006', NULL), (22789, 2221, '', '', '', '0000-00-00', 22789, '', NULL), (22790, 2222, '', 'Putting in archived database.', '', '0000-00-00', 22790, '', NULL), (22791, 2223, '', '', '', '0000-00-00', 22791, '', NULL), (22792, 2224, '', '', '', '0000-00-00', 22792, '', NULL), (22793, 2225, '', '', '', '0000-00-00', 22793, '', NULL), (22794, 2226, '', '', '', '0000-00-00', 22794, '', NULL), (22795, 2227, '', 'Invoices go to Jonika Cunningham jcunningham@barreng.com', '', '0000-00-00', 22795, '', NULL), (22796, 2228, '', '', '', '0000-00-00', 22796, '', NULL), (22797, 2229, '', '', '', '0000-00-00', 22797, '', NULL), (22798, 2230, '', '', '', '0000-00-00', 22798, '', NULL), (22799, 2231, '', '', '', '0000-00-00', 22799, '', NULL), (22800, 2232, '', '', '', '0000-00-00', 22800, '', NULL), (22801, 2233, '', '', '', '0000-00-00', 22801, '', NULL), (22802, 2234, '', 'Sakrete Inc. (A & T Development)', '', '0000-00-00', 22802, '', NULL), (22803, 2235, '', 'Cert sent and in the name of Bonsal America job site address', '', '0000-00-00', 22803, '', NULL), (22804, 2236, '', '', '', '0000-00-00', 22804, '', NULL), (22805, 2237, '', '', '', '0000-00-00', 22805, '', NULL), (22806, 2238, '', '', '', '0000-00-00', 22806, '', NULL), (22807, 2239, '', '', '', '0000-00-00', 22807, '', NULL), (22808, 2240, '', '***ISO Requested***', '', '0000-00-00', 22808, '', NULL), (22809, 2241, '', '', '', '0000-00-00', 22809, '', NULL), (22810, 2242, '', 'Putting in archived database.', '', '0000-00-00', 22810, '', NULL), (22811, 2243, '', '', '', '0000-00-00', 22811, '', NULL), (22812, 2244, '', '', '', '0000-00-00', 22812, '', NULL), (22813, 2245, '', '', '', '0000-00-00', 22813, '', NULL), (22814, 2246, '', '', '', '0000-00-00', 22814, '', NULL), (22815, 2247, '', ' ***Site not manned***', '', '0000-00-00', 22815, '', NULL), (22816, 2248, '', '', '', '0000-00-00', 22816, '', NULL), (22817, 2249, 'S/N 20912', 'Chatillon Force Gauge Digital DFI 500 T&C (E-4)', 'Range: 50 to 500 lb.', '1998-04-28', 22817, '4/28/1998', NULL), (22818, 2250, '', ' ', '', '0000-00-00', 22818, '', NULL), (22819, 2251, '', '', '', '0000-00-00', 22819, '', NULL), (22820, 2252, '', 'Send Certs and Invoice to PO Box 102 Mt. Braddock PA 15465', '', '0000-00-00', 22820, '', NULL), (22821, 2253, '', '', '', '0000-00-00', 22821, '', NULL), (22822, 2254, '', '', '', '0000-00-00', 22822, '', NULL), (22823, 2255, '', '', '', '0000-00-00', 22823, '', NULL), (22824, 2256, 'S/N 523725', 'Satec Emery Mdl. UVI/V Universal Testing Machine (Recorder) (E-4)', 'Range: 4.8K/24K/48K/120K (OOS)', '2008-10-21', 22824, '10/21/2008', NULL), (22825, 2257, 'S/N 23897', 'Soiltest Unconfined Single Proving Ring (E-4 & Man Specs)OOS', 'Range: 2K ', '2010-03-10', 22825, '3/10/2010', NULL), (22826, 2258, '', '', '', '0000-00-00', 22826, '', NULL), (22827, 2259, '', 'E-mail Invoice to joyce.fortna@lrkimball.com', '', '0000-00-00', 22827, '', NULL), (22828, 2260, '', '', '', '0000-00-00', 22828, '', NULL), (22829, 2261, '', '', '', '0000-00-00', 22829, '', NULL), (22830, 2262, '', '', '', '0000-00-00', 22830, '', NULL), (22831, 2263, '', '', '', '0000-00-00', 22831, '', NULL), (22832, 2264, '', '', '', '0000-00-00', 22832, '', NULL), (22833, 2265, '', '', '', '0000-00-00', 22833, '', NULL), (22834, 2266, '', ' Send Certs to Billing Address', '', '0000-00-00', 22834, '', NULL), (22835, 2267, '', '', '', '0000-00-00', 22835, '', NULL), (22836, 2268, '', '', '', '0000-00-00', 22836, '', NULL), (22837, 2269, '', '', '', '0000-00-00', 22837, '', NULL), (22838, 2270, '', '', '', '0000-00-00', 22838, '', NULL), (22839, 2271, '', '', '', '0000-00-00', 22839, '', NULL), (22840, 2272, '', '', '', '0000-00-00', 22840, '', NULL), (22841, 2273, '', '', '', '0000-00-00', 22841, '', NULL), (22842, 2274, '', '', '', '0000-00-00', 22842, '', NULL), (22843, 2275, '', '', '', '0000-00-00', 22843, '', NULL), (22844, 2276, '', '', '', '0000-00-00', 22844, '', NULL), (22845, 2277, '', '', '', '0000-00-00', 22845, '', NULL), (22846, 2278, '', ' ** E-mail invoice to accountspayable@cscc.edu **', '', '0000-00-00', 22846, '', NULL), (22847, 2279, '', '', '', '0000-00-00', 22847, '', NULL), (22848, 2280, '', '', '', '0000-00-00', 22848, '', NULL), (22849, 2281, '', 'Putting in archived database.', '', '0000-00-00', 22849, '', NULL), (22850, 2282, 'S/N 159815', 'Four (4) Displacement Channels onTinius Olsen Super L w/', 'Model 290 Display (D-6027)', '2005-03-30', 22850, '3/30/2005', NULL), (22851, 2283, '', '', '', '0000-00-00', 22851, '', NULL), (22852, 2284, '', ' with Range Card', 'Range: 500 lbs. ID#25-LC11RC04', '0000-00-00', 22852, '', NULL), (22853, 2285, 'S/N 84140', 'Hercules Model HSJ Prestress Jack (Out of Service) (E-4 & PCI)', 'Range: 3K to 35K', '2006-07-27', 22853, '7/27/2006', NULL), (22854, 2286, '', 'Must Call with day, time & Tech\'s name', '', '0000-00-00', 22854, '', NULL), (22855, 2287, '', '', '', '0000-00-00', 22855, '', NULL), (22856, 2288, '', '', '', '0000-00-00', 22856, '', NULL), (22857, 2289, '', '', '', '0000-00-00', 22857, '', NULL), (22858, 2290, '', ' 2 YEAR INTERVAL', 'Send Cert\'s to Office address', '0000-00-00', 22858, '', NULL), (22859, 2291, '', '', '', '0000-00-00', 22859, '', NULL), (22860, 2292, '', '', '', '0000-00-00', 22860, '', NULL), (22861, 2293, '', '614-276-8123 x 1203 AP', '', '0000-00-00', 22861, '', NULL), (22862, 2294, '', '', '', '0000-00-00', 22862, '', NULL), (22863, 2295, '', '', '', '0000-00-00', 22863, '', NULL), (22864, 2296, '', '', '', '0000-00-00', 22864, '', NULL), (22865, 2297, 'S/N 65116-041006', 'Forney FT-31-CS-100-1S Dig.Comp. Machine (SOLD) ', 'Range: 2.5K to 250K', '2006-04-12', 22865, '4/12/2006', NULL), (22866, 2298, 'S/N 68247', 'Forney FT-40-DR Compression Machine (SOLD)', 'Range: 30/250K', '2006-02-08', 22866, '2/8/2006', NULL), (22867, 2299, '', '', '', '0000-00-00', 22867, '', NULL), (22868, 2300, '', '', '', '0000-00-00', 22868, '', NULL), (22869, 2301, '', '', '', '0000-00-00', 22869, '', NULL), (22870, 2302, '', '**Chasity Brady from Braselton, GA 706-654-0901 x 199339', '', '0000-00-00', 22870, '', NULL), (22871, 2303, '', '', '', '0000-00-00', 22871, '', NULL), (22872, 2304, '', '', '', '0000-00-00', 22872, '', NULL), (22873, 2305, '', '', '', '0000-00-00', 22873, '', NULL), (22874, 2306, '', '', '', '0000-00-00', 22874, '', NULL), (22875, 2307, '', '', '', '0000-00-00', 22875, '', NULL), (22876, 2308, '', '', '', '0000-00-00', 22876, '', NULL), (22877, 2309, '', '', '', '0000-00-00', 22877, '', NULL), (22878, 2310, '', '', '', '0000-00-00', 22878, '', NULL), (22879, 2311, '', '', '', '0000-00-00', 22879, '', NULL), (22880, 2312, 'S/N 294', 'Durham Geo Linear LVDT (OOS) (D-6027)', 'Range: ', NULL, 22880, 'New', NULL), (22881, 2313, '', '', '', '0000-00-00', 22881, '', NULL), (22882, 2314, '', 'Putting in archived database; no longer use machines.', '', '0000-00-00', 22882, '', NULL), (22883, 2315, '', 'AS FOUND READINGS REQUIRED', '', '0000-00-00', 22883, '', NULL), (22884, 2316, '', '', '', '0000-00-00', 22884, '', NULL), (22885, 2317, 'S/N 4672', 'United Extensometer EZ 2-1 CH1 (OUT OF SERVICE)', 'Range: 1 Inch (E-83)', '2005-02-03', 22885, '2/3/2005', NULL), (22886, 2318, '', '', '', '0000-00-00', 22886, '', NULL), (22887, 2319, '', '', '', '0000-00-00', 22887, '', NULL), (22888, 2320, '', ' ', '', '0000-00-00', 22888, '', NULL), (22889, 2321, 'S/N Unknown', 'WIKA Vacuum Gauge on Fisher Vacuum Pump (D-5720)', 'Range: 30 inHg', '2013-05-06', 22889, '5/6/2013', NULL), (22890, 2322, 'S/N 1004', 'Hogentogler Mdl. G 3103 Dial Indicator (D-6027)', 'Range: 1 Inch (OOS)', '2008-05-13', 22890, '5/13/2008', NULL), (22891, 2323, '', '*email Sam with cost prior to invoicing -helps speed up payment proc.*', '', '0000-00-00', 22891, '', NULL), (22892, 2324, '', '', 'ISO Requested', '0000-00-00', 22892, '', NULL), (22893, 2325, '', 'Putting in archived database; other company cal\'s now.', '', '0000-00-00', 22893, '', NULL), (22894, 2326, '', 'Putting in archived database; machines on current tours, diff. ', 'customer profiles.', '0000-00-00', 22894, '', NULL), (22895, 2327, '', 'Putting in archived database; machines on current tours, diff. ', 'customer profiles.', '0000-00-00', 22895, '', NULL), (22896, 2328, '', ' ***ISO Requested***', '', '0000-00-00', 22896, '', NULL), (22897, 2329, '', '', '', '0000-00-00', 22897, '', NULL), (22898, 2330, '', '', '', '0000-00-00', 22898, '', NULL), (22899, 2331, '', '', '', '0000-00-00', 22899, '', NULL), (22900, 2332, '', '*** ISO Requested ***', '', '0000-00-00', 22900, '', NULL), (22901, 2333, '', ' ***ISO Requested***', '', '0000-00-00', 22901, '', NULL), (22902, 2334, '', 'If mailing Invoice, must have valid PO# & ship to address, or if do not ', '', '0000-00-00', 22902, '', NULL), (22903, 2335, '', '', '', '0000-00-00', 22903, '', NULL), (22904, 2336, '', '', '', '0000-00-00', 22904, '', NULL), (22905, 2337, '', '', '', '0000-00-00', 22905, '', NULL), (22906, 2338, 'S/N PG8', 'Pressure Gauge (D-5720)', 'Range: 60 PSI', '2009-02-27', 22906, '2/27/2009', NULL), (22907, 2339, '', '', '', '0000-00-00', 22907, '', NULL), (22908, 2340, '', '', '', '0000-00-00', 22908, '', NULL), (22909, 2341, '', '', '', '0000-00-00', 22909, '', NULL), (22910, 2342, '', '', '', '0000-00-00', 22910, '', NULL), (22911, 2343, '', '', '', '0000-00-00', 22911, '', NULL), (22912, 2344, 'S/N E82251', 'Epsilon Model 3542-0050-050-ST Extensometer (E-83) (NOT USING)', 'Range:.001to .25 inches/Gauge Len. 0.5 in', '2004-02-04', 22912, '2/4/2004', NULL), (22913, 2345, '', '', '', '0000-00-00', 22913, '', NULL), (22914, 2346, '', ' *Send Certs to Billing Address**', '', '0000-00-00', 22914, '', NULL), (22915, 2347, '', '', '', '0000-00-00', 22915, '', NULL), (22916, 2348, '', '', '', '0000-00-00', 22916, '', NULL), (22917, 2349, '', '', '', '0000-00-00', 22917, '', NULL), (22918, 2350, '', '', '', '0000-00-00', 22918, '', NULL), (22919, 2351, '', '', '', '0000-00-00', 22919, '', NULL), (22920, 2352, '', '', '', '0000-00-00', 22920, '', NULL), (22921, 2353, 'S/N 359', 'Soiltest Hammer Type N (C-805)', 'Range: 78 to 81 (OOS)', '2009-07-14', 22921, '7/14/2009', NULL), (22922, 2354, 'S/N 72013', 'Forney QC-150 Compression Machine (MOVED) (E-4)', 'Range: 250K', '2008-05-07', 22922, '5/7/2008', NULL), (22923, 2355, '', '', '', '0000-00-00', 22923, '', NULL), (22924, 2356, '', '', '', '0000-00-00', 22924, '', NULL), (22925, 2357, '', '', '', '0000-00-00', 22925, '', NULL), (22926, 2358, '', '', '', '0000-00-00', 22926, '', NULL), (22927, 2359, '', '', '', '0000-00-00', 22927, '', NULL), (22928, 2360, '', '', '', '0000-00-00', 22928, '', NULL), (22929, 2361, '', '***MUST HAVE PO***', '', '0000-00-00', 22929, '', NULL), (22930, 2362, '', '', '', '0000-00-00', 22930, '', NULL), (22931, 2363, '', '', '', '0000-00-00', 22931, '', NULL), (22932, 2364, '', '', '', '0000-00-00', 22932, '', NULL), (22933, 2365, '', 'Invoice Inquiry to be sent to etefke@mragta.com', '', '0000-00-00', 22933, '', NULL), (22934, 2366, '', 'Email invoice to bstvendor@gtaeng.com in PDF form DONT MAIL', '', '0000-00-00', 22934, '', NULL), (22935, 2367, '', '', '', '0000-00-00', 22935, '', NULL), (22936, 2368, '', '', '', '0000-00-00', 22936, '', NULL), (22937, 2369, 'S/N SR323502', 'CC1 Model SR-3000 Prestress Jack (E-4 & PCI)', 'Range: 3K / 45K (OOS)', '2008-04-15', 22937, '4/15/2008', NULL), (22938, 2370, '', 'DO NOT EXCEPT FAXED INVOICES MUST E-MAIL', '', '0000-00-00', 22938, '', NULL), (22939, 2371, '', '', '', '0000-00-00', 22939, '', NULL), (22940, 2372, '', '', '', '0000-00-00', 22940, '', NULL), (22941, 2373, '', '', '', '0000-00-00', 22941, '', NULL), (22942, 2374, '', '6 MONTH SCHEDULE ON JACK (Jan. & July)', '', '0000-00-00', 22942, '', NULL), (22943, 2375, '', '', '', '0000-00-00', 22943, '', NULL), (22944, 2376, '', '', '', '0000-00-00', 22944, '', NULL), (22945, 2377, '', '', '', '0000-00-00', 22945, '', NULL), (22946, 2378, '', '', '', '0000-00-00', 22946, '', NULL), (22947, 2379, '', '', '', '0000-00-00', 22947, '', NULL), (22948, 2380, '', ' Certs to Billing Address', '', '0000-00-00', 22948, '', NULL), (22949, 2381, '', ' ***Send Certs to Hilliard, OH office address***', '', '0000-00-00', 22949, '', NULL), (22950, 2382, '', '', '', '0000-00-00', 22950, '', NULL), (22951, 2383, '', '', '', '0000-00-00', 22951, '', NULL), (22952, 2384, '', '', '', '0000-00-00', 22952, '', NULL), (22953, 2385, '', '', '', '0000-00-00', 22953, '', NULL), (22954, 2386, '', '', '', '0000-00-00', 22954, '', NULL), (22955, 2387, '', '6 Month Schedule Prestress Jacks - ( January & June) ', '', '0000-00-00', 22955, '', NULL), (22956, 2388, '', '', '', '0000-00-00', 22956, '', NULL), (22957, 2389, '', '', '', '0000-00-00', 22957, '', NULL), (22958, 2390, '', ' ***ISO Requested***', '', '0000-00-00', 22958, '', NULL), (22959, 2391, '', '', '', '0000-00-00', 22959, '', NULL), (22960, 2392, '', '', '', '0000-00-00', 22960, '', NULL), (22961, 2393, '', '***ISO Requested*** ***continued on next page ***', ' **Send Certs to Job Site**', '0000-00-00', 22961, '', NULL), (22962, 2394, '', ' ***Certs sent to Job Site ***', '', '0000-00-00', 22962, '', NULL), (22963, 2395, '', '', '', '0000-00-00', 22963, '', NULL), (22964, 2396, 'S/N 357 / 1223 (OOS)', 'Durham Geo Pressure Transducer E-116 w/ BK Dig. E-400 (D-5720)', 'Range: 300 PSI', '2014-12-16', 22964, '12/16/2014', NULL), (22965, 2397, '', '', '', '0000-00-00', 22965, '', NULL), (22966, 2398, '', 'CUSTOMER WANTS 5 YEAR CALIBRATION SCHEDULE', '', '0000-00-00', 22966, '', NULL), (22967, 2399, '', '***Safety Requirements booklet in file***', '', '0000-00-00', 22967, '', NULL), (22968, 2400, '', '', '', '0000-00-00', 22968, '', NULL), (22969, 2401, 'S/N 50819893', ' w/ Micro Measurement HS-10 LVDT (D-6027) ', 'Range: 0.4 inch', '2015-05-12', 22969, '5/12/2015', NULL), (22970, 2402, '', '', '', '0000-00-00', 22970, '', NULL), (22971, 2403, '', '', '', '0000-00-00', 22971, '', NULL), (22972, 2404, 'S/N 183', 'Humboldt H4M-04 Beam Breaker (E-4 & 2%) OOS', 'Range: 15K ', '2013-12-03', 22972, '12/3/2013', NULL), (22973, 2405, '', 'Visitor\'s parking lot off Lee Road, side of building, Southwest corner', '', '0000-00-00', 22973, '', NULL), (22974, 2406, '', ' ***ISO Requested***', '', '0000-00-00', 22974, '', NULL), (22975, 2407, '', '', '', '0000-00-00', 22975, '', NULL), (22976, 2408, '', 'Putting in archived database.', '', '0000-00-00', 22976, '', NULL), (22977, 2409, '', '', '', '0000-00-00', 22977, '', NULL), (22978, 2410, '', '', '', '0000-00-00', 22978, '', NULL), (22979, 2411, '', '', 'ISO Requested', '0000-00-00', 22979, '', NULL), (22980, 2412, '', '***ISO Requested***', '', '0000-00-00', 22980, '', NULL), (22981, 2413, '', 'Putting in archived database.', '', '0000-00-00', 22981, '', NULL), (22982, 2414, '', '', '', '0000-00-00', 22982, '', NULL), (22983, 2415, '', '', '', '0000-00-00', 22983, '', NULL), (22984, 2416, '', '', '', '0000-00-00', 22984, '', NULL), (22985, 2417, '', '', '', '0000-00-00', 22985, '', NULL), (22986, 2418, '', '', '', '0000-00-00', 22986, '', NULL), (22987, 2419, '', '', '', '0000-00-00', 22987, '', NULL), (22988, 2420, '', '', '', '0000-00-00', 22988, '', NULL), (22989, 2421, '', '', '', '0000-00-00', 22989, '', NULL), (22990, 2422, '', '', '', '0000-00-00', 22990, '', NULL), (22991, 2423, '', '', '', '0000-00-00', 22991, '', NULL), (22992, 2424, '', '', '', '0000-00-00', 22992, '', NULL), (22993, 2425, '', '', '', '0000-00-00', 22993, '', NULL), (22994, 2426, '', '', '', '0000-00-00', 22994, '', NULL), (22995, 2427, '', '', '', '0000-00-00', 22995, '', NULL), (22996, 2428, '', '', '', '0000-00-00', 22996, '', NULL), (22997, 2429, 'S/N 5095', 'Pine Instrument Single Proving Ring-PMT (NOT IN USE)', 'Range 10K (E-4)', '2000-03-16', 22997, '3/16/2000', NULL), (22998, 2430, '', '** Send Certs to PO Box 488 (Billing Address)**', '', '0000-00-00', 22998, '', NULL), (22999, 2431, '', '', '', '0000-00-00', 22999, '', NULL), (23000, 2432, '', '', '', '0000-00-00', 23000, '', NULL), (23001, 2433, '', '', '', '0000-00-00', 23001, '', NULL), (23002, 2434, '', '**MUST ASK whoever makes the arrangements for the work to be', '', '0000-00-00', 23002, '', NULL), (23003, 2435, '', '', '', '0000-00-00', 23003, '', NULL), (23004, 2436, '', '', '', '0000-00-00', 23004, '', NULL), (23005, 2437, '', '***See if Billing is right or would go to AMEC in Alpharetta, GA***', '', '0000-00-00', 23005, '', NULL), (23006, 2438, '', '**MUST ASK whoever makes the arrangements for the work to be', '', '0000-00-00', 23006, '', NULL), (23007, 2439, '', '', '', '0000-00-00', 23007, '', NULL), (23008, 2440, '', '', '', '0000-00-00', 23008, '', NULL), (23009, 2441, '', '', '', '0000-00-00', 23009, '', NULL), (23010, 2442, '', 'Mail Cert To: 200 Popular Street, Etna, PA 15223', '', '0000-00-00', 23010, '', NULL), (23011, 2443, '', '', '', '0000-00-00', 23011, '', NULL), (23012, 2444, '', '', '', '0000-00-00', 23012, '', NULL), (23013, 2445, '', '', '', '0000-00-00', 23013, '', NULL), (23014, 2446, 'S/N 66125', 'Forney LT-705-2 Compression Machine (E-4) (SOLD)', 'Range: 200K / 500K', '2005-07-12', 23014, '7/12/2005', NULL), (23015, 2447, '', '', '', '0000-00-00', 23015, '', NULL), (23016, 2448, '', '', '', '0000-00-00', 23016, '', NULL), (23017, 2449, '', '***When entering building ask receptionist to page Dick', '', '0000-00-00', 23017, '', NULL), (23018, 2450, '', '', '', '0000-00-00', 23018, '', NULL), (23019, 2451, '', '', '', '0000-00-00', 23019, '', NULL), (23020, 2452, '', '', '', '0000-00-00', 23020, '', NULL), (23021, 2453, '', '', '', '0000-00-00', 23021, '', NULL), (23022, 2454, '', '***ISO Requested***', '', '0000-00-00', 23022, '', NULL), (23023, 2455, '', '', '', '0000-00-00', 23023, '', NULL), (23024, 2456, '', '', '', '0000-00-00', 23024, '', NULL), (23025, 2457, '', '', '', '0000-00-00', 23025, '', NULL), (23026, 2458, '', '', ' **ISO Requested** ', '0000-00-00', 23026, '', NULL), (23027, 2459, '', '', '', '0000-00-00', 23027, '', NULL), (23028, 2460, '', 'Send Certs to Billing ', '', '0000-00-00', 23028, '', NULL), (23029, 2461, '', '', '', '0000-00-00', 23029, '', NULL), (23030, 2462, 'S/N 100754A', ' w/ Tovey Load Cell Minus X Axis - T & C ', 'Range: 10K ', '2012-03-12', 23030, '3/12/2012', NULL), (23031, 2463, '', '', '', '0000-00-00', 23031, '', NULL), (23032, 2464, '', '', '', '0000-00-00', 23032, '', NULL), (23033, 2465, 'S/N Ram 8', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 23033, '6/29/2011', NULL), (23034, 2466, '', '', '', '0000-00-00', 23034, '', NULL), (23035, 2467, '', '', '', '0000-00-00', 23035, '', NULL), (23036, 2468, '', '', '', '0000-00-00', 23036, '', NULL), (23037, 2469, '', '', '', '0000-00-00', 23037, '', NULL), (23038, 2470, '', '', '', '0000-00-00', 23038, '', NULL), (23039, 2471, '', '', '', '0000-00-00', 23039, '', NULL), (23040, 2472, '', '', '', '0000-00-00', 23040, '', NULL), (23041, 2473, '', '', 'Putting in archived database.', '0000-00-00', 23041, '', NULL), (23042, 2474, '', '', '', '0000-00-00', 23042, '', NULL), (23043, 2475, '', '', '', '0000-00-00', 23043, '', NULL), (23044, 2476, '', '', '', '0000-00-00', 23044, '', NULL), (23045, 2477, 'S/N 12241', 'Wykeham-Farrance 14230P Single Proving Ring (E-4 & Man Specs) ', 'Cap: 11,200 lbs ', '2012-03-14', 23045, '3/14/2012', NULL), (23046, 2478, 'S/N A4969', 'Enerpac Portable Beam Breaker ( MOVED) (E-4)', 'Range: 10K', '2005-04-28', 23046, '4/28/2005', NULL), (23047, 2479, '', ' ***ISO Requested***', '', '0000-00-00', 23047, '', NULL), (23048, 2480, '', '', '', '0000-00-00', 23048, '', NULL), (23049, 2481, '', '', '', '0000-00-00', 23049, '', NULL), (23050, 2482, '', '', '', '0000-00-00', 23050, '', NULL), (23051, 2483, 'S/N 254', 'Brainard-Kilman Model E-124 Pressure Transducer (D-5720)', 'Range: 150 PSI (Out of Service)', '2006-06-01', 23051, '6/1/2006', NULL), (23052, 2484, 'S/N 930211853', 'Soiltest Dial Indicator (Done in HC Nut. Shop) (D-6027)', 'Range: 2 Inches', '2006-06-01', 23052, '6/1/2006', NULL), (23053, 2485, '', '', '', '0000-00-00', 23053, '', NULL), (23054, 2486, '', 'Must get PO number before calibrating from Main Office or work ', '', '0000-00-00', 23054, '', NULL), (23055, 2487, '', '', '', '0000-00-00', 23055, '', NULL), (23056, 2488, '', '', '', '0000-00-00', 23056, '', NULL), (23057, 2489, '', '', '', '0000-00-00', 23057, '', NULL), (23058, 2490, '', '', '', '0000-00-00', 23058, '', NULL), (23059, 2491, 'S/N 595158', 'ELE Pressure Transducer--Channel# 11 (OOS) (D-5720)', 'Range: 150 psi', '2006-11-28', 23059, '11/28/2006', NULL), (23060, 2492, '', '***Must have PO number***', '', '0000-00-00', 23060, '', NULL), (23061, 2493, 'S/N 110172-17', 'Wykeham Farrance Mdl. 24251 Deflection Frame #4/Channel 20 ', 'Range: 1/4 TSF to 16 TSF ', '2009-01-21', 23061, '1/21/2009', NULL), (23062, 2494, '', '', '', '0000-00-00', 23062, '', NULL), (23063, 2495, '', '', '', '0000-00-00', 23063, '', NULL), (23064, 2496, '', '', '', '0000-00-00', 23064, '', NULL), (23065, 2497, '', '', '', '0000-00-00', 23065, '', NULL), (23066, 2498, '', '', '', '0000-00-00', 23066, '', NULL), (23067, 2499, '', '', '', '0000-00-00', 23067, '', NULL), (23068, 2500, '', '', '', '0000-00-00', 23068, '', NULL), (23069, 2501, '', '', '', '0000-00-00', 23069, '', NULL), (23070, 2502, '', '', '', '0000-00-00', 23070, '', NULL), (23071, 2503, '', '', '', '0000-00-00', 23071, '', NULL), (23072, 2504, '', ' ***High RF, their digital or ours goes crazy intermitanley***', '', '0000-00-00', 23072, '', NULL), (23073, 2505, '', '', '', '0000-00-00', 23073, '', NULL), (23074, 2506, 'S/N 36521 ', 'HCS Hydraulic Load Cell (E-4 & 2%) (NC#3)OOS', 'Range: 50K w/ Gauge #52', '2013-01-15', 23074, '1/15/2013', NULL), (23075, 2507, '', '', '', '0000-00-00', 23075, '', NULL), (23076, 2508, 'S/N 40759', 'RDP Group Linear Transducer, Model: LDC1000A (OOS) (D-6027)', 'Range: 0.5 inches', '2004-09-29', 23076, '9/29/2004', NULL), (23077, 2509, '', '', '', '0000-00-00', 23077, '', NULL), (23078, 2510, '', '', '', '0000-00-00', 23078, '', NULL), (23079, 2511, '', '', 'Putting in archived database.', '0000-00-00', 23079, '', NULL), (23080, 2512, 'S/N LVDT Spare # 1', 'Macrosensor Extensometer Frame 875 (ISO-9513) ', 'Range: 1 inches (BROKEN)', '2006-01-10', 23080, '1/10/2006', NULL), (23081, 2513, '', '', '', '0000-00-00', 23081, '', NULL), (23082, 2514, '', '', '', '0000-00-00', 23082, '', NULL), (23083, 2515, '', '', '', '0000-00-00', 23083, '', NULL), (23084, 2516, '', '', '', '0000-00-00', 23084, '', NULL), (23085, 2517, '', '', '', '0000-00-00', 23085, '', NULL), (23086, 2518, '', '', '', '0000-00-00', 23086, '', NULL), (23087, 2519, '', '', '', '0000-00-00', 23087, '', NULL), (23088, 2520, '', '', '', '0000-00-00', 23088, '', NULL), (23089, 2521, 'S/N 453', 'Pine Instrument Asphalt Tester Model 850 (E-4)', 'Range: 2.5K / 5K / 10K (SOLD)', '2008-03-11', 23089, '3/11/2008', NULL), (23090, 2522, '', '', '', '0000-00-00', 23090, '', NULL), (23091, 2523, '', '', '', '0000-00-00', 23091, '', NULL), (23092, 2524, '', '', '', '0000-00-00', 23092, '', NULL), (23093, 2525, '', '', '', '0000-00-00', 23093, '', NULL), (23094, 2526, '', '', '', '0000-00-00', 23094, '', NULL), (23095, 2527, '', '', '', '0000-00-00', 23095, '', NULL), (23096, 2528, '', '', '', '0000-00-00', 23096, '', NULL), (23097, 2529, '', '', '', '0000-00-00', 23097, '', NULL), (23098, 2530, '', '', '', '0000-00-00', 23098, '', NULL), (23099, 2531, '', '', '', '0000-00-00', 23099, '', NULL), (23100, 2532, '', '', '', '0000-00-00', 23100, '', NULL), (23101, 2533, '', 'Put ID#\'s on Run Sheets, Labels & Certs', '', '0000-00-00', 23101, '', NULL), (23102, 2534, '', ' \"***ISO Requested***', '', '0000-00-00', 23102, '', NULL), (23103, 2535, '', '', '', '0000-00-00', 23103, '', NULL), (23104, 2536, '', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications***', '', '0000-00-00', 23104, '', NULL), (23105, 2537, 'S/N 8292 (ID# Q-0158)', 'Ohaus TP2KS Scale (E-898)', 'Range: 1 Gram to 2,000 Gram', '2008-01-28', 23105, '1/28/2008', NULL), (23106, 2538, 'S/N NR3 (ID# Q-1934)', 'Ohaus Heavy Duty Solution Balance Scale (E-898) OOS', 'Range: 10 Kg to 20,000 Kg', '2008-01-28', 23106, '1/28/2008', NULL), (23107, 2539, '', ' *Send Certs to Billing Address*', '', '0000-00-00', 23107, '', NULL), (23108, 2540, '', 'Email Cert. Then mail Original to Woodstown NJ', '', '0000-00-00', 23108, '', NULL), (23109, 2541, '', 'Look for incoming e-mail for payment will receive from', 'CardPayable@53.com', '0000-00-00', 23109, '', NULL), (23110, 2542, '', '', '', '0000-00-00', 23110, '', NULL), (23111, 2543, '', '', '', '0000-00-00', 23111, '', NULL), (23112, 2544, '', '', '', '0000-00-00', 23112, '', NULL), (23113, 2545, '', '', '', '0000-00-00', 23113, '', NULL), (23114, 2546, '', '', '', '0000-00-00', 23114, '', NULL), (23115, 2547, '', '', '', '0000-00-00', 23115, '', NULL), (23116, 2548, '', '', '', '0000-00-00', 23116, '', NULL), (23117, 2549, '', '', '', '0000-00-00', 23117, '', NULL), (23118, 2550, '', '', '', '0000-00-00', 23118, '', NULL), (23119, 2551, '', '', '', '0000-00-00', 23119, '', NULL), (23120, 2552, '', '', '', '0000-00-00', 23120, '', NULL), (23121, 2553, 'S/N 58835', 'Instron 5500R Compression Machine (E-4)', 'Range: ', NULL, 23121, 'New', NULL), (23122, 2554, '', '', '', '0000-00-00', 23122, '', NULL), (23123, 2555, '', '', '', '0000-00-00', 23123, '', NULL), (23124, 2556, '', '', '', '0000-00-00', 23124, '', NULL), (23125, 2557, '', '', '', '0000-00-00', 23125, '', NULL), (23126, 2558, '', '', '', '0000-00-00', 23126, '', NULL), (23127, 2559, '', ' Beam weight 600#', 'PT-250 Pipe Tester - No cables, need lift truck.', '0000-00-00', 23127, '', NULL), (23128, 2560, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 23128, '', NULL), (23129, 2561, '', '', '', '0000-00-00', 23129, '', NULL), (23130, 2562, 'S/N 419007100405', 'Soiltest U-160-A Digital Compression Machine (OOS) (E-4)', 'Range: lK', '2006-05-29', 23130, '5/29/2006', NULL), (23131, 2563, 'S/N', 'ELE Bond Shear Tester w/ D-25 Indicator & Artech Load Cell (E-4)', 'Range: 2K', NULL, 23131, 'New', NULL), (23132, 2564, 'S/N 060321-1355', 'Structural Stress Analyzer Model 1000 (E-4 & 2%)', 'Range: 1K', '2010-10-25', 23132, '10/25/2010', NULL), (23133, 2565, '', '', '', '0000-00-00', 23133, '', NULL), (23134, 2566, '', '', '', '0000-00-00', 23134, '', NULL), (23135, 2567, '', '**All invoices to Esther Buzuvis -buzuvis@sme-usa.com ** Email Only', '', '0000-00-00', 23135, '', NULL), (23136, 2568, '', '', '', '0000-00-00', 23136, '', NULL), (23137, 2569, '', '', 'PUTTING IN ARCHIVED DATABASE', '0000-00-00', 23137, '', NULL), (23138, 2570, '', '**All invoices to Esther Buzuvis ap@sme-usa.com ** Email Only', '', '0000-00-00', 23138, '', NULL), (23139, 2571, '', '', '', '0000-00-00', 23139, '', NULL), (23140, 1, ' ', ' ', ' ', '0000-00-00', 23140, '', NULL), (23141, 2, '', '', '', '0000-00-00', 23141, '', NULL), (23142, 3, '', '', '', '0000-00-00', 23142, '', NULL), (23143, 4, 'S/N J35011263500P', 'Ohaus Explorer EP4101 Pro Scale (E-898)', 'Range: 4,100 Grams ', '2012-02-23', 23143, '2/23/2012', NULL), (23144, 5, '', '', '', '0000-00-00', 23144, '', NULL), (23145, 6, '', '', '', '0000-00-00', 23145, '', NULL), (23146, 7, '', '', '', '0000-00-00', 23146, '', NULL), (23147, 8, '', '', '', '0000-00-00', 23147, '', NULL), (23148, 9, '', ' ***Must call 1 day prior so they can let door open***', '', '0000-00-00', 23148, '', NULL), (23149, 10, '', '', '', '0000-00-00', 23149, '', NULL), (23150, 11, '', '', '', '0000-00-00', 23150, '', NULL), (23151, 12, '', '', '', '0000-00-00', 23151, '', NULL), (23152, 13, '', '', '', '0000-00-00', 23152, '', NULL), (23153, 14, '', '', '', '0000-00-00', 23153, '', NULL), (23154, 15, '', '', '', '0000-00-00', 23154, '', NULL), (23155, 16, '', '', '', '0000-00-00', 23155, '', NULL), (23156, 17, '', '', '', '0000-00-00', 23156, '', NULL), (23157, 18, '', ' ***High RF in Facility***', '', '0000-00-00', 23157, '', NULL), (23158, 19, '', 'Continued- - -', '', '0000-00-00', 23158, '', NULL), (23159, 20, '', '', '', '0000-00-00', 23159, '', NULL), (23160, 21, '', '', '', '0000-00-00', 23160, '', NULL), (23161, 22, '', '***ISO Requested***', '', '0000-00-00', 23161, '', NULL), (23162, 23, '', ' with 2nd gauge (Out of Service)', '', '0000-00-00', 23162, '', NULL), (23163, 24, '', '***ISO Requested***', '', '0000-00-00', 23163, '', NULL), (23164, 25, '', '', '', '0000-00-00', 23164, '', NULL), (23165, 26, '', ' ', '', '0000-00-00', 23165, '', NULL), (23166, 27, '', '', '', '0000-00-00', 23166, '', NULL), (23167, 28, '', '** Send Certs to Billing Address**', '', '0000-00-00', 23167, '', NULL), (23168, 29, '', ' \"***ISO Requested***', '', '0000-00-00', 23168, '', NULL), (23169, 30, '', '***ISO REQUESTED***', '', '0000-00-00', 23169, '', NULL), (23170, 31, '', ' \"***ISO Requested***', '', '0000-00-00', 23170, '', NULL), (23171, 32, '', '', '', '0000-00-00', 23171, '', NULL), (23172, 33, '', '', '', '0000-00-00', 23172, '', NULL), (23173, 34, '', '', '', '0000-00-00', 23173, '', NULL), (23174, 35, '', '', '', '0000-00-00', 23174, '', NULL), (23175, 36, '', ' ***ISO Requested***', '', '0000-00-00', 23175, '', NULL), (23176, 37, '', ' e-mail copy of invoice to jstemple@triadeng.com', '', '0000-00-00', 23176, '', NULL), (23177, 38, 'S/N 159542A', ' w/ Compression Load Cell (E-4)', 'Range: 10K', '2006-08-22', 23177, '8/22/2006', NULL), (23178, 39, '', '', '', '0000-00-00', 23178, '', NULL), (23179, 40, '', '', '', '0000-00-00', 23179, '', NULL), (23180, 41, '', 'Month / Year only on stickers', '', '0000-00-00', 23180, '', NULL), (23181, 42, '', '', '', '0000-00-00', 23181, '', NULL), (23182, 43, '', '', '', '0000-00-00', 23182, '', NULL), (23183, 44, '', ' **10% to Full Scale**', '', '0000-00-00', 23183, '', NULL), (23184, 45, '', '', '', '0000-00-00', 23184, '', NULL), (23185, 46, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 23185, '', NULL), (23186, 47, '', '', '', '0000-00-00', 23186, '', NULL), (23187, 48, '', '', '', '0000-00-00', 23187, '', NULL), (23188, 49, 'S/N 523725', 'Satec Emery Mdl. UVI/V LVDT (Recorder) (D-6027)', 'Range: 4 Inches (OOS)', '2008-10-21', 23188, '10/21/2008', NULL), (23189, 50, '', '', '', '0000-00-00', 23189, '', NULL), (23190, 51, '', '', '', '0000-00-00', 23190, '', NULL), (23191, 52, '', '', '', '0000-00-00', 23191, '', NULL), (23192, 53, '', ' ***ISO Requested***', '', '0000-00-00', 23192, '', NULL), (23193, 54, '', '', '', '0000-00-00', 23193, '', NULL), (23194, 55, 'S/N 69052-041027', 'Forney FT-40-CS-100-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Moving)', '2008-11-18', 23194, '11/18/2008', NULL), (23195, 56, 'S/N 4204108', 'Humboldt H-4204 Single Proving Ring (E-4 & ManSpecs) (OOS)', 'Range: 220 lbs ', '2010-11-08', 23195, '11/8/2010', NULL), (23196, 57, '', '***Mobile Machine***', '', '0000-00-00', 23196, '', NULL), (23197, 58, '', 'If possible take 700 or 300 System (Electrical Interferance)', '', '0000-00-00', 23197, '', NULL), (23198, 59, '', ' w/ T&C Recorder (OOS) (E-83)', 'Range: 1K/2K/5K/10K T&C', '0000-00-00', 23198, '', NULL), (23199, 60, 'S/N 52621-0097', 'MMS Mdl. 86-100G-R Pressure Transducer (D-5720)', 'Range: 200 PSI', '2012-11-27', 23199, '11/27/2012', NULL), (23200, 61, 'S/N 020660391', 'CDI BG2110 Dial Indicator (D-6027)', 'Range: 1 Inch ', '2012-11-27', 23200, '11/27/2012', NULL), (23201, 62, 'S/N 1004326 (Pres. 7)', 'Humboldt HM-2325A Mini Logger w/ Pressure Transducer HM-4170', 'Range: 100 PSI (PT S/N 136283)(D-5720)', '2012-11-29', 23201, '11/29/2012', NULL), (23202, 63, '', '', '', '0000-00-00', 23202, '', NULL), (23203, 64, '', '', '', '0000-00-00', 23203, '', NULL), (23204, 65, '', ' ***Send Certs to Bill Site***', '', '0000-00-00', 23204, '', NULL), (23205, 66, '', '', '', '0000-00-00', 23205, '', NULL), (23206, 67, '', '', '', '0000-00-00', 23206, '', NULL), (23207, 68, 'S/N 38742', 'Wica Vacuum Gauge (OOS) (D-5720)', 'Range: ', NULL, 23207, 'New', NULL), (23208, 69, '', '', '', '0000-00-00', 23208, '', NULL), (23209, 70, '', ' ***Only use CSI for Repairs***', '', '0000-00-00', 23209, '', NULL), (23210, 71, '', '', '', '0000-00-00', 23210, '', NULL), (23211, 72, '', '', '', '0000-00-00', 23211, '', NULL), (23212, 73, '', '***Original Invoice mailed to Job Site***', '', '0000-00-00', 23212, '', NULL), (23213, 74, '', '', '', '0000-00-00', 23213, '', NULL), (23214, 75, '', ' ***ISO Requested***', '', '0000-00-00', 23214, '', NULL), (23215, 76, '', '', '', '0000-00-00', 23215, '', NULL), (23216, 77, '', '', '', '0000-00-00', 23216, '', NULL), (23217, 78, '', '', '', '0000-00-00', 23217, '', NULL), (23218, 79, '', ' ***Equipment is Calibrated Yearly***', '', '0000-00-00', 23218, '', NULL), (23219, 80, '', '', '', '0000-00-00', 23219, '', NULL), (23220, 81, '', 'Machine Located at this facility : Dalrymple Gravel & Construction', '', '0000-00-00', 23220, '', NULL), (23221, 82, '', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications***', ' ***continued***', '0000-00-00', 23221, '', NULL), (23222, 83, '', '', '', '0000-00-00', 23222, '', NULL), (23223, 84, '', 'Machine located at this facility: Dalrymple Gravel & Construction', '', '0000-00-00', 23223, '', NULL), (23224, 85, '', '', '', '0000-00-00', 23224, '', NULL), (23225, 86, '', '', '', '0000-00-00', 23225, '', NULL), (23226, 87, '', '', '', '0000-00-00', 23226, '', NULL), (23227, 88, '', '', '', '0000-00-00', 23227, '', NULL), (23228, 89, '', '', '', '0000-00-00', 23228, '', NULL), (23229, 90, '', 'will not be paid for', '', '0000-00-00', 23229, '', NULL), (23230, 91, '', ' ***Need to fill out their Bid Form each year***', ' cont\'d next page..........', '0000-00-00', 23230, '', NULL), (23231, 92, '', ' ***Need to fill out their Bid Form***', ' con\'t next page.............', '0000-00-00', 23231, '', NULL), (23232, 93, '', '', '**ISO Requested**', '0000-00-00', 23232, '', NULL), (23233, 94, '', 'Send certs to job site', '', '0000-00-00', 23233, '', NULL), (23234, 95, '', ' ***ISO Requested***', '', '0000-00-00', 23234, '', NULL), (23235, 96, '', '***ISO Requested***', '', '0000-00-00', 23235, '', NULL), (23236, 97, '', '', '', '0000-00-00', 23236, '', NULL), (23237, 98, '', '', '', '0000-00-00', 23237, '', NULL), (23238, 99, '', '', '', '0000-00-00', 23238, '', NULL), (23239, 100, 'S/N 18x4802B', 'LoTes Model LT-10 Digital Compression Machine (OOS) (E-4)', 'Range 4,000 lbs. to 10,000 lbs', '2008-08-05', 23239, '8/5/2008', NULL), (23240, 101, '', '', '', '0000-00-00', 23240, '', NULL), (23241, 102, '', '', '', '0000-00-00', 23241, '', NULL), (23242, 103, '', '', '', '0000-00-00', 23242, '', NULL), (23243, 104, 'S/N 85102', 'Forney FT-40 CO-PILOT (E-4) ( In Storage)', 'Range: 2,500 lbs to 250,000 lbs', '2012-03-05', 23243, '3/5/2012', NULL), (23244, 105, 'S/N 6078', 'Forney LT-700 Compression Machine (Not Using) (E-4)', 'Range: 60K / 350K (ID# 01156)', '2010-03-16', 23244, '3/16/2010', NULL), (23245, 106, '', 'plug in wall', '', '0000-00-00', 23245, '', NULL), (23246, 107, '', ' e-mail Invoice to chneely@state.pa.us', '', '0000-00-00', 23246, '', NULL), (23247, 108, '', ' ***Need Special Fixture to Calibrate Horizontal Load Cell***', 'CONTINUED NEXT PAGE.........', '0000-00-00', 23247, '', NULL), (23248, 109, 'S/N 2229/1066 Digital', ' Digital Serial Number ', 'CONTINUED NEXT PAGE.........', '0000-00-00', 23248, '', NULL), (23249, 110, '', '', '', '0000-00-00', 23249, '', NULL), (23250, 111, 'S/N 70308-1', 'Tinius Olsen Model L Compression Machine (OOS) (E-4)', 'Range: 300K Only', '2009-04-07', 23250, '4/7/2009', NULL), (23251, 112, 'S/N 3493938', 'Mark 10 MOdel M5-200 Digital Force Gauge (E-4) (Moved)', 'Range: 20 lbs to 200 lbs', '2012-10-24', 23251, '10/24/2012', NULL), (23252, 113, '', '', '', '0000-00-00', 23252, '', NULL), (23253, 114, '', '', '', '0000-00-00', 23253, '', NULL), (23254, 115, '', '', '', '0000-00-00', 23254, '', NULL), (23255, 116, '', 'PUT PURCHASE ORDER NUMBER ON STICKERS & CERTS', '', '0000-00-00', 23255, '', NULL), (23256, 117, '', '***ISO Requested***', '', '0000-00-00', 23256, '', NULL), (23257, 118, '', '', '', '0000-00-00', 23257, '', NULL), (23258, 119, '', '', '', '0000-00-00', 23258, '', NULL), (23259, 120, 'S/N 16206', 'Skidmore Wilhelm Mdl. MS Bolt Tester (E-4 & 2%)', 'Range: 90K (MOVED) ', '2010-03-30', 23259, '3/30/2010', NULL), (23260, 121, '', ' \"***Put Jacks inside if cold***', '', '0000-00-00', 23260, '', NULL), (23261, 122, '', ' ***ISO Requested***', '', '0000-00-00', 23261, '', NULL), (23262, 123, '', '', '', '0000-00-00', 23262, '', NULL), (23263, 124, '', ' ***ISO Requested***', '', '0000-00-00', 23263, '', NULL), (23264, 125, '', '', '', '0000-00-00', 23264, '', NULL), (23265, 126, '', '', '', '0000-00-00', 23265, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (23266, 127, 'S/N 05086318', 'Eilon Engineering RON 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 50 Ton ', '2009-04-10', 23266, '4/10/2009', NULL), (23267, 128, '', '', '', '0000-00-00', 23267, '', NULL), (23268, 129, '', '', '', '0000-00-00', 23268, '', NULL), (23269, 130, '', '', '', '0000-00-00', 23269, '', NULL), (23270, 131, '', '', '', '0000-00-00', 23270, '', NULL), (23271, 132, '', '', '', '0000-00-00', 23271, '', NULL), (23272, 133, '', '', '***ISO Requested***', '0000-00-00', 23272, '', NULL), (23273, 134, '', '', '', '0000-00-00', 23273, '', NULL), (23274, 135, '', '', '', '0000-00-00', 23274, '', NULL), (23275, 136, '', '', '** See Billing Address **', '0000-00-00', 23275, '', NULL), (23276, 137, 'S/N 06242 ', 'Forney F-25EX-E-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Kokosing)', '2011-05-16', 23276, '5/16/2011', NULL), (23277, 138, '', '', '', '0000-00-00', 23277, '', NULL), (23278, 139, '', ' ***Send Certs to Job Site Address**', '', '0000-00-00', 23278, '', NULL), (23279, 140, '', '', '', '0000-00-00', 23279, '', NULL), (23280, 141, '', '', '', '0000-00-00', 23280, '', NULL), (23281, 142, '', '', '', '0000-00-00', 23281, '', NULL), (23282, 143, '', '', '', '0000-00-00', 23282, '', NULL), (23283, 144, '', '***ISO Requested***', '', '0000-00-00', 23283, '', NULL), (23284, 145, '', '', '', '0000-00-00', 23284, '', NULL), (23285, 146, '', '***ISO Requested***', '', '0000-00-00', 23285, '', NULL), (23286, 147, '', '', '', '0000-00-00', 23286, '', NULL), (23287, 148, '', '', '', '0000-00-00', 23287, '', NULL), (23288, 149, '', '', '', '0000-00-00', 23288, '', NULL), (23289, 150, '', '', '', '0000-00-00', 23289, '', NULL), (23290, 151, 'S/N 154851', 'Humboldt Pressure Transducer (OOS) (D-5720)', 'Range: 200 psi', '2008-05-05', 23290, '5/5/2008', NULL), (23291, 152, '', '', '', '0000-00-00', 23291, '', NULL), (23292, 153, '', '', '', '0000-00-00', 23292, '', NULL), (23293, 154, '', 'Look at attached Specs ', '', '0000-00-00', 23293, '', NULL), (23294, 155, '', '', '', '0000-00-00', 23294, '', NULL), (23295, 156, '', '', '', '0000-00-00', 23295, '', NULL), (23296, 157, 'S/N 173590', 'TO Extensometer-Model S-1000-1 (E-83)', '1\" G.L. (NOT USING)', '2003-01-29', 23296, '1/29/2003', NULL), (23297, 158, '', '', '', '0000-00-00', 23297, '', NULL), (23298, 159, '', '', '', '0000-00-00', 23298, '', NULL), (23299, 160, 'S/N 295', 'Durham Geo Linear LVDT (OOS) (D-6027)', 'Range: ', NULL, 23299, 'New', NULL), (23300, 161, '', '', '', '0000-00-00', 23300, '', NULL), (23301, 162, 'S/N 7276 (1018)', 'Chatillon DPP-50 Force Gauge (OOS) (E-4 & 2%)', 'Cap: 50 lbs ', '2007-03-21', 23301, '3/21/2007', NULL), (23302, 163, '', '', '', '0000-00-00', 23302, '', NULL), (23303, 164, '', '', '', '0000-00-00', 23303, '', NULL), (23304, 165, 'S/N 95797 / NC #8', 'Simms LC-2502 Hydraulic Load Cell w/ Gauge #52 (E-4 & 2%)', 'Range: 40K w/Spare Gauge #51 (OOS)', '2011-07-29', 23304, '7/29/2011', NULL), (23305, 166, '', '', '', '0000-00-00', 23305, '', NULL), (23306, 167, '', '', '', '0000-00-00', 23306, '', NULL), (23307, 168, '', '**6 Month Schedule** January & July', '', '0000-00-00', 23307, '', NULL), (23308, 169, '', ' \"***ISO Requested***', '', '0000-00-00', 23308, '', NULL), (23309, 170, '', '', '', '0000-00-00', 23309, '', NULL), (23310, 171, '', '***Original Invoice mailed to Job Site***', '', '0000-00-00', 23310, '', NULL), (23311, 172, '', '', '', '0000-00-00', 23311, '', NULL), (23312, 173, '', '', '', '0000-00-00', 23312, '', NULL), (23313, 174, 'S/N Unknown', 'Forney FT-40 Digital Compression Machine (E-4)', 'Range: 250K (Moved)', NULL, 23313, '\'12/2008', NULL), (23314, 175, 'S/N 006', 'HCN Dial Indicator (OOS) (D-6027)', 'Range: 2 inch', '2012-08-21', 23314, '8/21/2012', NULL), (23315, 176, '', ' ***Send Certs to Office***', '', '0000-00-00', 23315, '', NULL), (23316, 177, '', '', '', '0000-00-00', 23316, '', NULL), (23317, 178, '', '', '', '0000-00-00', 23317, '', NULL), (23318, 179, '', ' ***Excessive Baggage***', '', '0000-00-00', 23318, '', NULL), (23319, 180, '', '***ISO Requested***', '', '0000-00-00', 23319, '', NULL), (23320, 181, '', '', '', '0000-00-00', 23320, '', NULL), (23321, 182, '', '', '', '0000-00-00', 23321, '', NULL), (23322, 183, '', '', '', '0000-00-00', 23322, '', NULL), (23323, 184, '', '', '', '0000-00-00', 23323, '', NULL), (23324, 185, '', '', '', '0000-00-00', 23324, '', NULL), (23325, 186, '', '', '', '0000-00-00', 23325, '', NULL), (23326, 187, '', '', '', '0000-00-00', 23326, '', NULL), (23327, 188, '', '', '', '0000-00-00', 23327, '', NULL), (23328, 189, '', '**Need steel toe boots, reflective vest, hard hat & safety glasses**', '', '0000-00-00', 23328, '', NULL), (23329, 190, '', '', '', '0000-00-00', 23329, '', NULL), (23330, 191, 'S/N 967', 'Rainhardt Beam Machine Series 416 (MOVED)', 'Range: 12K', '2004-11-16', 23330, '11/16/2004', NULL), (23331, 192, '', '', '', '0000-00-00', 23331, '', NULL), (23332, 193, '', '', '', '0000-00-00', 23332, '', NULL), (23333, 194, 'S/N 1421-1-1001', 'ELE Digital Compression Machine Machine (Omega Digital)(SOLD)', 'Range: 4K to 400K (E-4) (CSI Bought)', '2005-03-24', 23333, '3/24/2005', NULL), (23334, 195, '', '', '', '0000-00-00', 23334, '', NULL), (23335, 196, '', 'with passport or birth certificate', '', '0000-00-00', 23335, '', NULL), (23336, 197, '', '', '', '0000-00-00', 23336, '', NULL), (23337, 198, '', '', '', '0000-00-00', 23337, '', NULL), (23338, 199, '', '', '', '0000-00-00', 23338, '', NULL), (23339, 200, '', 'MUST WEAR HARD HAT, EYE AND HEARING PROTECTION!!!!', '***ISO Requested***', '0000-00-00', 23339, '', NULL), (23340, 201, '', '', '', '0000-00-00', 23340, '', NULL), (23341, 202, '', '', '', '0000-00-00', 23341, '', NULL), (23342, 203, '', 'done WHICH OFFICE the work is being COORDINATED OUT OF', '', '0000-00-00', 23342, '', NULL), (23343, 204, '', '', '', '0000-00-00', 23343, '', NULL), (23344, 205, '', '', '', '0000-00-00', 23344, '', NULL), (23345, 206, '', '***ISO Requested***', '', '0000-00-00', 23345, '', NULL), (23346, 207, '', ' \"*** Do not use 700 System, Bad RF***', '', '0000-00-00', 23346, '', NULL), (23347, 208, '', '', '', '0000-00-00', 23347, '', NULL), (23348, 209, '', '', '', '0000-00-00', 23348, '', NULL), (23349, 210, '', '', '', '0000-00-00', 23349, '', NULL), (23350, 211, '', '', '', '0000-00-00', 23350, '', NULL), (23351, 212, '', '', '', '0000-00-00', 23351, '', NULL), (23352, 213, '', '', '', '0000-00-00', 23352, '', NULL), (23353, 214, '', '', '1 Year Schedule', '0000-00-00', 23353, '', NULL), (23354, 215, 'S/N ', ' w/ Extensometer ', 'Range: ', NULL, 23354, 'New', NULL), (23355, 216, '', '', ' *Requested ISO*', '0000-00-00', 23355, '', NULL), (23356, 217, '', '', '', '0000-00-00', 23356, '', NULL), (23357, 218, '', '', '', '0000-00-00', 23357, '', NULL), (23358, 219, '', '', '', '0000-00-00', 23358, '', NULL), (23359, 220, '', ' ***Cadets leave end of May return in August***', ' *** Need Compressometer Fixture***', '0000-00-00', 23359, '', NULL), (23360, 221, '', '***ISO Requested***', '', '0000-00-00', 23360, '', NULL), (23361, 222, '', '', '', '0000-00-00', 23361, '', NULL), (23362, 223, '', '', '', '0000-00-00', 23362, '', NULL), (23363, 224, 'S/N 0016', 'VSL Bond Tester (OOS) (E-4 & 2%)', 'Range: 3K ', '2010-08-19', 23363, '8/19/2010', NULL), (23364, 225, '', '***ISO Requested***', '', '0000-00-00', 23364, '', NULL), (23365, 226, '', '', '', '0000-00-00', 23365, '', NULL), (23366, 227, '', '', '', '0000-00-00', 23366, '', NULL), (23367, 228, 'S/N 20242', 'Geotest Model 2014 Digital Unconfined Tester w/ Load Cell (E-4)', ' ', '2000-09-06', 23367, '9/6/2000', NULL), (23368, 229, '', '', '', '0000-00-00', 23368, '', NULL), (23369, 230, '', '', '', '0000-00-00', 23369, '', NULL), (23370, 231, 'S/N 22299', 'McDaniel Service Gauge (D-5720)', 'Range 160 PSI', '2010-01-13', 23370, '1/13/2010', NULL), (23371, 232, 'S/N 5516 DS', 'Mechanical Instrument/Chart Recorder MDL 812-1 (D-5720)', 'Range: 500 PSI', '2010-12-13', 23371, '12/13/2010', NULL), (23372, 233, '', '', '', '0000-00-00', 23372, '', NULL), (23373, 234, '', '', '', '0000-00-00', 23373, '', NULL), (23374, 235, 'S/N 444 ', 'Wika Pressure Gauge (D-5720)', 'Range: 200 PSI ', '2010-03-26', 23374, '3/26/2010', NULL), (23375, 236, '', ' ***Continued***', '', '0000-00-00', 23375, '', NULL), (23376, 237, '', '', '', '0000-00-00', 23376, '', NULL), (23377, 238, 'S/N', 'Pine Instrument AF850T Marshall Tester (E-4)', 'Range: 2.5K / 5K / 10K ', NULL, 23377, 'New', NULL), (23378, 239, '', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications***', '', '0000-00-00', 23378, '', NULL), (23379, 240, '', ' **ON BASF1 other equipment that is attached to S/N 48580** ', ' ***Continued***', '0000-00-00', 23379, '', NULL), (23380, 241, '', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications***', '', '0000-00-00', 23380, '', NULL), (23381, 242, 'S/N E-81273', 'w/Epsilon Extensometer Model 3542-0200-002-ST Channel #0 (E-83)', 'Range: 0.02 in/in (GL 2) (OOS) ', '2011-03-01', 23381, '3/1/2011', NULL), (23382, 243, 'S/N 1010', 'Satec Model 200HVL Universal Testing Machine (Sold) (E-4) ', 'Range: 10K / 25K / 50K / 200K', '2009-03-05', 23382, '3/5/2009', NULL), (23383, 244, '', '', '', '0000-00-00', 23383, '', NULL), (23384, 245, '', 'Certs and Invoice goes to billing address Attn: Sheila Sennet', '', '0000-00-00', 23384, '', NULL), (23385, 246, '', '', '', '0000-00-00', 23385, '', NULL), (23386, 247, '', '', '', '0000-00-00', 23386, '', NULL), (23387, 248, '', '', '', '0000-00-00', 23387, '', NULL), (23388, 249, '', '', '', '0000-00-00', 23388, '', NULL), (23389, 250, '', '', '', '0000-00-00', 23389, '', NULL), (23390, 251, '', '', '', '0000-00-00', 23390, '', NULL), (23391, 252, '', '', '', '0000-00-00', 23391, '', NULL), (23392, 253, '', '', '', '0000-00-00', 23392, '', NULL), (23393, 254, '', '', '', '0000-00-00', 23393, '', NULL), (23394, 255, '', '', '', '0000-00-00', 23394, '', NULL), (23395, 256, '', '', '', '0000-00-00', 23395, '', NULL), (23396, 257, '', '', '', '0000-00-00', 23396, '', NULL), (23397, 258, '', ' ***Call this site well in advance - usually no one there***', '', '0000-00-00', 23397, '', NULL), (23398, 259, '', '', '', '0000-00-00', 23398, '', NULL), (23399, 260, '', '', '', '0000-00-00', 23399, '', NULL), (23400, 261, 'S/N 1000341745', 'Central AHM Load Cell w/LC: ACD-12K S/N 238987/LC:VCD-50K-2 ', 'Range: 50K / 100K (E-4) S/N 241305 ', '2009-04-07', 23400, '4/7/2009', NULL), (23401, 262, 'S/N 401028 (ATG# 938)', ' w/ Load Cell (OOS) (E-4)', 'Range: 10K', '2011-03-31', 23401, '3/31/2011', NULL), (23402, 263, '', '', '', '0000-00-00', 23402, '', NULL), (23403, 264, 'S/N 102', 'Single Proving Ring (OOS) (E-4 & Man Specs) ', 'Range: 2K ', '2007-04-10', 23403, '4/10/2007', NULL), (23404, 265, '', '', '', '0000-00-00', 23404, '', NULL), (23405, 266, '', '', '', '0000-00-00', 23405, '', NULL), (23406, 267, '', '', '', '0000-00-00', 23406, '', NULL), (23407, 268, '', '', '', '0000-00-00', 23407, '', NULL), (23408, 269, '', '', '', '0000-00-00', 23408, '', NULL), (23409, 270, '', '', '', '0000-00-00', 23409, '', NULL), (23410, 271, '', '', '', '0000-00-00', 23410, '', NULL), (23411, 272, '', '', '', '0000-00-00', 23411, '', NULL), (23412, 273, '', ' ***Mail certs to Bristal, PA site***', '', '0000-00-00', 23412, '', NULL), (23413, 274, '', '', '***ISO Requested***', '0000-00-00', 23413, '', NULL), (23414, 275, '', '', '', '0000-00-00', 23414, '', NULL), (23415, 276, '', ' ***Send Cert to Bill Address***', '', '0000-00-00', 23415, '', NULL), (23416, 277, '', '6 month calibration on Post Tension Jack only (March & September)', '', '0000-00-00', 23416, '', NULL), (23417, 278, '', '', '', '0000-00-00', 23417, '', NULL), (23418, 279, 'S/N', 'Pore Pressure Transducer (Moved) (D-5720)', 'Range: ', NULL, 23418, 'New', NULL), (23419, 280, '', '', '', '0000-00-00', 23419, '', NULL), (23420, 281, '', '', '', '0000-00-00', 23420, '', NULL), (23421, 282, '', '', '', '0000-00-00', 23421, '', NULL), (23422, 283, '', '***Send Certs to Bill Address Attn: Bud Dover***', '', '0000-00-00', 23422, '', NULL), (23423, 284, '', '*** Laminate Dead Weight Data and send with Certs****', 'Just send 2nd sheet with data laminated', '0000-00-00', 23423, '', NULL), (23424, 285, '', '', '', '0000-00-00', 23424, '', NULL), (23425, 286, 'S/N 68214', 'Forney FT-40-DR Digital Compression Machine w/ 2 Gauges ', 'Range: (SOLD) (E-4)', NULL, 23425, 'New', NULL), (23426, 287, '', '', '', '0000-00-00', 23426, '', NULL), (23427, 288, '', '***ISO Requested***', '', '0000-00-00', 23427, '', NULL), (23428, 289, '', '', '', '0000-00-00', 23428, '', NULL), (23429, 290, '', '', '', '0000-00-00', 23429, '', NULL), (23430, 291, '', '', '', '0000-00-00', 23430, '', NULL), (23431, 292, '', '', '', '0000-00-00', 23431, '', NULL), (23432, 293, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 23432, '', NULL), (23433, 294, '', 'Send Certs to: 135 Highland Drive, PO Box 3008, Lebanon, VA ', '24266, Attn: Paul Garrett', '0000-00-00', 23433, '', NULL), (23434, 295, '', '***Original Invoice mailed to Job Site***', '', '0000-00-00', 23434, '', NULL), (23435, 296, '', '', '', '0000-00-00', 23435, '', NULL), (23436, 297, '', '', '', '0000-00-00', 23436, '', NULL), (23437, 298, 'S/N 112621135', 'Ohaus EP 22001 Scale (E-898)', 'Range: 22,000 Grams ', '2013-05-15', 23437, '5/15/2013', NULL), (23438, 299, '', '', '', '0000-00-00', 23438, '', NULL), (23439, 300, 'S/N CH1103432', 'Intell-lab PH 32001 Scale (E-898)', 'Range: 32KG', '2013-05-15', 23439, '5/15/2013', NULL), (23440, 301, '', '*Send Certs: Mar-Zane Materials Lab, PO Box 66,', 'Rayland, OH 43943, Attn: Tom Andreas*', '0000-00-00', 23440, '', NULL), (23441, 302, '', '', '', '0000-00-00', 23441, '', NULL), (23442, 303, 'S/N 72173-01103', 'Forney QC-200-CS-100-2A Digital Compression Machine (E-4)', 'Range: 4K to 400K (MOVED) ', '2011-05-24', 23442, '5/24/2011', NULL), (23443, 304, '', '', '', '0000-00-00', 23443, '', NULL), (23444, 305, '', '', '', '0000-00-00', 23444, '', NULL), (23445, 306, '', '', '', '0000-00-00', 23445, '', NULL), (23446, 307, '', '*** Mail Certs to billing location***', '', '0000-00-00', 23446, '', NULL), (23447, 308, '', '**All machines need our big & small service labels**', '', '0000-00-00', 23447, '', NULL), (23448, 309, '', '**All machines need our big & small service labels**', '', '0000-00-00', 23448, '', NULL), (23449, 310, '', '', '', '0000-00-00', 23449, '', NULL), (23450, 311, '', '', '', '0000-00-00', 23450, '', NULL), (23451, 312, '', '', '', '0000-00-00', 23451, '', NULL), (23452, 313, '', '', '', '0000-00-00', 23452, '', NULL), (23453, 314, '', '', '', '0000-00-00', 23453, '', NULL), (23454, 315, '', ' ***Mail Certs to Job Site***', '', '0000-00-00', 23454, '', NULL), (23455, 316, '', '', '', '0000-00-00', 23455, '', NULL), (23456, 317, '', ' ***Bad RF, Do not use 700 System***', '', '0000-00-00', 23456, '', NULL), (23457, 318, '', '', '', '0000-00-00', 23457, '', NULL), (23458, 319, '', '', '', '0000-00-00', 23458, '', NULL), (23459, 320, '', ' ***Send Certs to Job Site***', ' ***ISO Requested***', '0000-00-00', 23459, '', NULL), (23460, 321, '', '', '', '0000-00-00', 23460, '', NULL), (23461, 322, 'S/N 149-03107', 'Boart Longyear CM-215-CS-100-2Dig.Comp.Mach.(Out of Service)', 'Range: 25K to 250K (E-4) ', '2005-11-03', 23461, '11/3/2005', NULL), (23462, 323, '', '', '', '0000-00-00', 23462, '', NULL), (23463, 324, '', '', '', '0000-00-00', 23463, '', NULL), (23464, 325, '', 'Mail Certs To: Rock Products, PO Box 3245, Saginaw, MI 48605', '', '0000-00-00', 23464, '', NULL), (23465, 326, '', '', '', '0000-00-00', 23465, '', NULL), (23466, 327, '', 'person ordering the services ', '', '0000-00-00', 23466, '', NULL), (23467, 328, '', '', '', '0000-00-00', 23467, '', NULL), (23468, 329, 'S/N 1', 'Harrington Model HLT Hoist Tester (E-4 & Man Specs)', 'Cap: 5 Ton / 10 Ton (moved)', '2011-06-29', 23468, '6/29/2011', NULL), (23469, 330, '', ' ***ISO Requested***', '', '0000-00-00', 23469, '', NULL), (23470, 331, '', '', '', '0000-00-00', 23470, '', NULL), (23471, 332, '', '', '', '0000-00-00', 23471, '', NULL), (23472, 333, '', '', '', '0000-00-00', 23472, '', NULL), (23473, 334, 'S/N HLT-69035', 'Harrington Model HLT Hoist Tester (Out of Service)(E-4 &Man Specs)', 'Cap: 10K / 20K', '2004-07-13', 23473, '7/13/2004', NULL), (23474, 335, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 23474, '', NULL), (23475, 336, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 23475, '', NULL), (23476, 337, '', 'BE SURE TO PUT HEAD BACK IN !!!!!!!', '', '0000-00-00', 23476, '', NULL), (23477, 338, '', '***ISO Requested***', '', '0000-00-00', 23477, '', NULL), (23478, 339, '', ' ***ISO Requested***', '', '0000-00-00', 23478, '', NULL), (23479, 340, '', '', '', '0000-00-00', 23479, '', NULL), (23480, 341, '', '', '', '0000-00-00', 23480, '', NULL), (23481, 342, '', '', '', '0000-00-00', 23481, '', NULL), (23482, 343, '', '', '', '0000-00-00', 23482, '', NULL), (23483, 344, '', '', '', '0000-00-00', 23483, '', NULL), (23484, 345, '', '', '', '0000-00-00', 23484, '', NULL), (23485, 346, 'S/N MG3709', 'Geotac Linear LVDT (D-6027)', 'Range: 0.4 inches', '2008-06-10', 23485, '6/10/2008', NULL), (23486, 347, '', '', '', '0000-00-00', 23486, '', NULL), (23487, 348, '', '', '', '0000-00-00', 23487, '', NULL), (23488, 349, '', 'Do equipment every 6 months (June & December) ', '', '0000-00-00', 23488, '', NULL), (23489, 350, '', '', '', '0000-00-00', 23489, '', NULL), (23490, 351, '', 'said Soiltest was moved to her facility on 12/20/2010**', '', '0000-00-00', 23490, '', NULL), (23491, 352, '', '***ISO Requested***', '', '0000-00-00', 23491, '', NULL), (23492, 353, '', '', '', '0000-00-00', 23492, '', NULL), (23493, 354, '', '', '', '0000-00-00', 23493, '', NULL), (23494, 355, '', '***ISO Requested***', '', '0000-00-00', 23494, '', NULL), (23495, 356, '', '', '', '0000-00-00', 23495, '', NULL), (23496, 357, '', ' ***Calibration required +108 lbs off set to high point*** ', '', '0000-00-00', 23496, '', NULL), (23497, 358, '', '', '', '0000-00-00', 23497, '', NULL), (23498, 359, '', '', '', '0000-00-00', 23498, '', NULL), (23499, 360, '', '', '', '0000-00-00', 23499, '', NULL), (23500, 361, 'S/N 70110', 'Forney FT-40-DR Compression Machine (OOS) (E-4)', 'Range: 30K / 250K', '1996-01-16', 23500, '1/16/1996', NULL), (23501, 362, '', '', ' ***ISO Requested***', '0000-00-00', 23501, '', NULL), (23502, 363, '', '', '', '0000-00-00', 23502, '', NULL), (23503, 364, '', '', '', '0000-00-00', 23503, '', NULL), (23504, 365, '', ' ***Send Certs to Bill To Site***', '', '0000-00-00', 23504, '', NULL), (23505, 366, '', '', '', '0000-00-00', 23505, '', NULL), (23506, 367, '', '', '', '0000-00-00', 23506, '', NULL), (23507, 368, 'S/N 051011001304', 'TIF 9010A Slim Line Electronic Scale (E-898)', 'Range: 110 lbs (OOS)', '2010-11-09', 23507, '11/9/2010', NULL), (23508, 369, '', ' ***Send Certs to Bill To Site***', '', '0000-00-00', 23508, '', NULL), (23509, 370, '', ' ***2 Year Interval***', '', '0000-00-00', 23509, '', NULL), (23510, 371, 'S/N 060400000054', 'ELE CT-710 Digital Comp Mach Mdl 36-0650/02 w/ ADR Digital', 'Range: 250 lbs (Taken back by ELE)', '2007-01-23', 23510, '1/23/2007', NULL), (23511, 372, '', '', '', '0000-00-00', 23511, '', NULL), (23512, 373, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 23512, '', NULL), (23513, 374, '', '', '', '0000-00-00', 23513, '', NULL), (23514, 375, '', '', '', '0000-00-00', 23514, '', NULL), (23515, 376, '', '', '', '0000-00-00', 23515, '', NULL), (23516, 377, '', '', '', '0000-00-00', 23516, '', NULL), (23517, 378, '', '', '', '0000-00-00', 23517, '', NULL), (23518, 379, '', '', '', '0000-00-00', 23518, '', NULL), (23519, 380, '', 'Schorr and he will take you to the equipment***', '', '0000-00-00', 23519, '', NULL), (23520, 381, '', '', '', '0000-00-00', 23520, '', NULL), (23521, 382, '', '***ISO Requested***', '', '0000-00-00', 23521, '', NULL), (23522, 383, '', '', '', '0000-00-00', 23522, '', NULL), (23523, 384, 'S/N 00004', 'Forney F-50C-DFM/1 Digital Compression Machine (E-4)', 'Range: 3K to 500K (SOLD) ', '2009-03-31', 23523, '3/31/2009', NULL), (23524, 385, '', ' ***ISO Requested***', '', '0000-00-00', 23524, '', NULL), (23525, 386, '', '', '', '0000-00-00', 23525, '', NULL), (23526, 387, '', '', '', '0000-00-00', 23526, '', NULL), (23527, 388, '', '', '', '0000-00-00', 23527, '', NULL), (23528, 389, '', '', '', '0000-00-00', 23528, '', NULL), (23529, 390, 'S/N 21999', 'Testmark CM-3000-LD Digital Compression Machine (E-4)', 'Range: 3K to 300K (SOLD) ', '2010-10-25', 23529, '10/25/2010', NULL), (23530, 391, '', ' ***Jason wants on same schedule as Exton, PA site***', '', '0000-00-00', 23530, '', NULL), (23531, 392, '', '*Call at least 2 Days ahead so parking permit can be issued*', '', '0000-00-00', 23531, '', NULL), (23532, 393, '', '', '', '0000-00-00', 23532, '', NULL), (23533, 394, '', ' ***ISO Requested***', '', '0000-00-00', 23533, '', NULL), (23534, 395, '', ' ***Send Certs to Job Site address***', '', '0000-00-00', 23534, '', NULL), (23535, 396, '', '', '', '0000-00-00', 23535, '', NULL), (23536, 397, '', '', '', '0000-00-00', 23536, '', NULL), (23537, 398, '', 'Office Billing Address: PO Box SS5589, Nassau Bahamas', '', '0000-00-00', 23537, '', NULL), (23538, 399, '', ' ***ISO Requested***', '', '0000-00-00', 23538, '', NULL), (23539, 400, '', '', '', '0000-00-00', 23539, '', NULL), (23540, 401, '', ' ***ISO Requested***', '', '0000-00-00', 23540, '', NULL), (23541, 402, '', '***Make sure PO has cleared before going there ***', '', '0000-00-00', 23541, '', NULL), (23542, 403, '', '', '', '0000-00-00', 23542, '', NULL), (23543, 404, '', '', '', '0000-00-00', 23543, '', NULL), (23544, 405, '', '', '', '0000-00-00', 23544, '', NULL), (23545, 406, '', '', '', '0000-00-00', 23545, '', NULL), (23546, 407, '', '', '', '0000-00-00', 23546, '', NULL), (23547, 408, '', '', '', '0000-00-00', 23547, '', NULL), (23548, 409, '', '', '', '0000-00-00', 23548, '', NULL), (23549, 410, '', '', '', '0000-00-00', 23549, '', NULL), (23550, 411, '', '', '', '0000-00-00', 23550, '', NULL), (23551, 412, '', '', '', '0000-00-00', 23551, '', NULL), (23552, 413, '', '', '', '0000-00-00', 23552, '', NULL), (23553, 414, '', 'done WHICH OFFICE the work is being COORDINATED OUT OF', '', '0000-00-00', 23553, '', NULL), (23554, 415, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 23554, '', NULL), (23555, 416, '', '', '', '0000-00-00', 23555, '', NULL), (23556, 417, '', '', '', '0000-00-00', 23556, '', NULL), (23557, 418, 'S/N: 06A00028G', 'Schmidt Hammer Mdl E-1000 (C-805)', 'Range: 78 to 82', '2012-06-25', 23557, '6/25/2012', NULL), (23558, 419, '', '', '', '0000-00-00', 23558, '', NULL), (23559, 420, '', '', '', '0000-00-00', 23559, '', NULL), (23560, 421, '', '', '', '0000-00-00', 23560, '', NULL), (23561, 422, '', '', '', '0000-00-00', 23561, '', NULL), (23562, 423, '', ' ***ISO Requested***', '***continued***', '0000-00-00', 23562, '', NULL), (23563, 424, 'S/N ', ' w/ Brainard Kilman E-400 Digital (E-4)', '', '0000-00-00', 23563, '', NULL), (23564, 425, '', ' ***ISO Requested***', ' ***continued***', '0000-00-00', 23564, '', NULL), (23565, 426, '', '', '', '0000-00-00', 23565, '', NULL), (23566, 427, 'S/N G1184B', ' w/ Load Cell (E-4)', 'Range: 2K ', '2013-01-09', 23566, '1/9/2013', NULL), (23567, 428, '', '', '', '0000-00-00', 23567, '', NULL), (23568, 429, '', '', '', '0000-00-00', 23568, '', NULL), (23569, 430, '', '', '*** ISO Requested*', '0000-00-00', 23569, '', NULL), (23570, 431, '', ' ***ISO Requested***', '', '0000-00-00', 23570, '', NULL), (23571, 432, '', '', '', '0000-00-00', 23571, '', NULL), (23572, 433, '', '', '', '0000-00-00', 23572, '', NULL), (23573, 434, '', '***ISO Requested***', '', '0000-00-00', 23573, '', NULL), (23574, 435, '', 'S/N E86182 0-6 inch bolt size, Travel 0.05 inches, need special fixture', '', '0000-00-00', 23574, '', NULL), (23575, 436, '', '', '', '0000-00-00', 23575, '', NULL), (23576, 437, '', '', '', '0000-00-00', 23576, '', NULL), (23577, 438, '', '', '', '0000-00-00', 23577, '', NULL), (23578, 439, '', '***ISO Requested***', '', '0000-00-00', 23578, '', NULL), (23579, 440, '', '', '', '0000-00-00', 23579, '', NULL), (23580, 441, '', '***ISO Requested***', '', '0000-00-00', 23580, '', NULL), (23581, 442, '', 'Send Certs to PO Box 501278 Indianapolis IN 46250', '', '0000-00-00', 23581, '', NULL), (23582, 443, '', '', '', '0000-00-00', 23582, '', NULL), (23583, 444, '', '', '', '0000-00-00', 23583, '', NULL), (23584, 445, 'S/N 12270 ', 'Ohaus Brainweight B1500D Scale (E-898) (Moved)', 'Range: 1,500 Grams', '2012-02-13', 23584, '2/13/2012', NULL), (23585, 446, '', '', '', '0000-00-00', 23585, '', NULL), (23586, 447, '', '', '', '0000-00-00', 23586, '', NULL), (23587, 448, '', '', '', '0000-00-00', 23587, '', NULL), (23588, 449, 'S/N 72792 ', 'Dial Indicator (Moved) (D-6027)', 'Range: 1 inch', '2009-04-15', 23588, '4/15/2009', NULL), (23589, 450, 'S/N PFS-16', 'TIF Mdl. 9010A Scale (E-898)', 'Range: 110 lbs', '2013-02-13', 23589, '2/13/2013', NULL), (23590, 451, '', 'Does not break many cylinders ', '', '0000-00-00', 23590, '', NULL), (23591, 452, '', ' ***Send Certs to Job Site Attn: Lisa Thomas***', '', '0000-00-00', 23591, '', NULL), (23592, 453, '', ' ***Send Cert to Bill Site***', '', '0000-00-00', 23592, '', NULL), (23593, 454, '', 'work being done***', '', '0000-00-00', 23593, '', NULL), (23594, 455, '', '', '', '0000-00-00', 23594, '', NULL), (23595, 456, '', '', '', '0000-00-00', 23595, '', NULL), (23596, 457, '', '', '', '0000-00-00', 23596, '', NULL), (23597, 458, '', '', '', '0000-00-00', 23597, '', NULL), (23598, 459, '', '', '', '0000-00-00', 23598, '', NULL), (23599, 460, '', '', '', '0000-00-00', 23599, '', NULL), (23600, 461, '', '', '', '0000-00-00', 23600, '', NULL), (23601, 462, '', '', '', '0000-00-00', 23601, '', NULL), (23602, 463, '', '', '', '0000-00-00', 23602, '', NULL), (23603, 464, '', 'Toni Technik & Gasbarre Press 6 Month (March & September )', '', '0000-00-00', 23603, '', NULL), (23604, 465, '', '', '', '0000-00-00', 23604, '', NULL), (23605, 466, '', ' CONTINUED NEXT PAGE.........', '', '0000-00-00', 23605, '', NULL), (23606, 467, '', '', '', '0000-00-00', 23606, '', NULL), (23607, 468, '', '', '', '0000-00-00', 23607, '', NULL), (23608, 469, '', '', '', '0000-00-00', 23608, '', NULL), (23609, 470, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 23609, '', NULL), (23610, 471, '', '*** ISO Requested***', '', '0000-00-00', 23610, '', NULL), (23611, 472, '', '', '', '0000-00-00', 23611, '', NULL), (23612, 473, '', '', '', '0000-00-00', 23612, '', NULL), (23613, 474, '', '', '', '0000-00-00', 23613, '', NULL), (23614, 475, '', '', '', '0000-00-00', 23614, '', NULL), (23615, 476, '', '', '', '0000-00-00', 23615, '', NULL), (23616, 477, '', '', '', '0000-00-00', 23616, '', NULL), (23617, 478, 'S/N 0009E500389E', ' w/cadman and HBM Mx440A signal conditioner(Off Site)', '', '0000-00-00', 23617, '', NULL), (23618, 479, '', '', '', '0000-00-00', 23618, '', NULL), (23619, 480, '', '', '', '0000-00-00', 23619, '', NULL), (23620, 481, '', '', '', '0000-00-00', 23620, '', NULL), (23621, 482, '', '', '', '0000-00-00', 23621, '', NULL), (23622, 483, '', '', '', '0000-00-00', 23622, '', NULL), (23623, 484, 'S/N 2698-42', 'Carver Laboratory 30 Ton Press (E-4 & 2%)', 'Range: 600 lbs 60K', '2011-04-28', 23623, '4/28/2011', NULL), (23624, 485, '', '', '', '0000-00-00', 23624, '', NULL), (23625, 486, '', '', '', '0000-00-00', 23625, '', NULL), (23626, 487, '', '', '', '0000-00-00', 23626, '', NULL), (23627, 488, '', '', '', '0000-00-00', 23627, '', NULL), (23628, 489, '', 'Certs and Invoice goes to billing address Attn: Sheila Sennet', '', '0000-00-00', 23628, '', NULL), (23629, 490, '', ' ***ISO Requested***', '', '0000-00-00', 23629, '', NULL), (23630, 491, '', '', '', '0000-00-00', 23630, '', NULL), (23631, 492, '', '', '', '0000-00-00', 23631, '', NULL), (23632, 493, '', '', 'CONTINUED NEXT PAGE..........', '0000-00-00', 23632, '', NULL), (23633, 494, 'S/N 741556', 'Totalcomp Mdl. TS-1K Load Cell (E-4)', 'Range: 1K ', '2013-05-01', 23633, '5/1/2013', NULL), (23634, 495, 'S/N 102', 'Dwyer DPGW-00 Vacuum Gauge (D-5720)', 'Range: 30 inHg (OOS)', '2012-05-02', 23634, '5/2/2012', NULL), (23635, 496, 'S/N 0042', 'RST Instruments Mdl. C-106 Pressure Transducer (D-5720) (OOS)', 'Range 200 PSI', '2012-05-02', 23635, '5/2/2012', NULL), (23636, 497, 'S/N 20105031', ' w/ 40 lb Load Cell (Out of Service)', 'Range: 40 lbs ', '2011-05-05', 23636, '5/5/2011', NULL), (23637, 498, '', 'Erico uses as back up machine - Erico is Tax Exempt - Must have PO#', '', '0000-00-00', 23637, '', NULL), (23638, 499, '', '', '', '0000-00-00', 23638, '', NULL), (23639, 500, 'S/N 926068', ' Vertical Display', '0.04\" to 0.4\"', '2012-04-30', 23639, '4/30/2012', NULL), (23640, 501, '', '', '', '0000-00-00', 23640, '', NULL), (23641, 502, '', '', '', '0000-00-00', 23641, '', NULL), (23642, 503, '', ' ', '', '0000-00-00', 23642, '', NULL), (23643, 504, '', '', '', '0000-00-00', 23643, '', NULL), (23644, 505, '', '', '', '0000-00-00', 23644, '', NULL), (23645, 506, '', '', '', '0000-00-00', 23645, '', NULL), (23646, 507, '', '', '', '0000-00-00', 23646, '', NULL), (23647, 508, '', '', '', '0000-00-00', 23647, '', NULL), (23648, 509, '', '', '', '0000-00-00', 23648, '', NULL), (23649, 510, '', '', '', '0000-00-00', 23649, '', NULL), (23650, 511, '', '', '', '0000-00-00', 23650, '', NULL), (23651, 512, '', '', '', '0000-00-00', 23651, '', NULL), (23652, 513, '', '', '', '0000-00-00', 23652, '', NULL), (23653, 514, '', '', '', '0000-00-00', 23653, '', NULL), (23654, 515, '', 'Need Certificates the same day to ship out equipment to job sites ', ' ***continued***', '0000-00-00', 23654, '', NULL), (23655, 516, '', '', '', '0000-00-00', 23655, '', NULL), (23656, 517, '', '', ' ***continued***', '0000-00-00', 23656, '', NULL), (23657, 518, '', '', '', '0000-00-00', 23657, '', NULL), (23658, 519, 'S/N 1408', 'Ohaus Balance Electronic GT2100 Scale (E-898)', 'Range: 2,100 Grams ', '2011-05-12', 23658, '5/12/2011', NULL), (23659, 520, '', '', '', '0000-00-00', 23659, '', NULL), (23660, 521, '', '', '', '0000-00-00', 23660, '', NULL), (23661, 522, '', '', '', '0000-00-00', 23661, '', NULL), (23662, 523, '', '', '', '0000-00-00', 23662, '', NULL), (23663, 524, '', '', '', '0000-00-00', 23663, '', NULL), (23664, 525, '', '', '', '0000-00-00', 23664, '', NULL), (23665, 526, '', '', '', '0000-00-00', 23665, '', NULL), (23666, 527, '', '', '', '0000-00-00', 23666, '', NULL), (23667, 528, '', '', '', '0000-00-00', 23667, '', NULL), (23668, 529, '', '', '', '0000-00-00', 23668, '', NULL), (23669, 530, '', ' ***ISO Requested***', '', '0000-00-00', 23669, '', NULL), (23670, 531, '', '***ISO Requested***', '', '0000-00-00', 23670, '', NULL), (23671, 532, '', '', '', '0000-00-00', 23671, '', NULL), (23672, 533, '', '', '', '0000-00-00', 23672, '', NULL), (23673, 534, '', '', '', '0000-00-00', 23673, '', NULL), (23674, 535, '', '', '', '0000-00-00', 23674, '', NULL), (23675, 536, '', '', '', '0000-00-00', 23675, '', NULL), (23676, 537, '', ' ***Send Certs to Bill To Address*** ', '', '0000-00-00', 23676, '', NULL), (23677, 538, '', ' *** 2 Year Interval***', '', '0000-00-00', 23677, '', NULL), (23678, 539, '', ' ***ISO Requested***', '', '0000-00-00', 23678, '', NULL), (23679, 540, '', '*** Mail Certs to Billing location***', '', '0000-00-00', 23679, '', NULL), (23680, 541, '', '***ISO Requested***', ' ***continued***', '0000-00-00', 23680, '', NULL), (23681, 542, 'S/N 06085', 'Forney F-30-EX-F-C PILOT Digital Compression Machine (E-4)', 'Range: 3K to 300K (MOVED)', '2010-11-10', 23681, '11/10/2010', NULL), (23682, 543, '', 'Do equipment every 6 months (June & December)', '', '0000-00-00', 23682, '', NULL), (23683, 544, '', '', '', '0000-00-00', 23683, '', NULL), (23684, 545, 'S/N', 'Humboldt Manometer (Man Specs & 2%)', 'Range: ', NULL, 23684, 'New', NULL), (23685, 546, '', '', '', '0000-00-00', 23685, '', NULL), (23686, 547, '', '', '', '0000-00-00', 23686, '', NULL), (23687, 548, '***continued***', ' \"***ISO Requested***', '', '0000-00-00', 23687, '', NULL), (23688, 549, '', '', '', '0000-00-00', 23688, '', NULL), (23689, 550, '', '', '', '0000-00-00', 23689, '', NULL), (23690, 551, '', '', '', '0000-00-00', 23690, '', NULL), (23691, 552, 'S/N Ram 9', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 23691, '6/29/2011', NULL), (23692, 553, 'S/N Q2002723', 'AND FG-60KBM Scale (E-898)STORAGE', 'Range: 150 lbs ', '2012-06-25', 23692, '6/25/2012', NULL), (23693, 554, '', '', '', '0000-00-00', 23693, '', NULL), (23694, 555, '', '', '', '0000-00-00', 23694, '', NULL), (23695, 556, '', '', '', '0000-00-00', 23695, '', NULL), (23696, 557, '', '', '', '0000-00-00', 23696, '', NULL), (23697, 558, '', '', '', '0000-00-00', 23697, '', NULL), (23698, 559, '', '', '', '0000-00-00', 23698, '', NULL), (23699, 560, '', '', '', '0000-00-00', 23699, '', NULL), (23700, 561, '', '', '', '0000-00-00', 23700, '', NULL), (23701, 562, '', '', '', '0000-00-00', 23701, '', NULL), (23702, 563, '', ' ***Make sure Bolt Testers are on site & not on a job ***', '', '0000-00-00', 23702, '', NULL), (23703, 564, '', '', '', '0000-00-00', 23703, '', NULL), (23704, 565, '', '', '', '0000-00-00', 23704, '', NULL), (23705, 566, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 23705, '', NULL), (23706, 567, '', '', '', '0000-00-00', 23706, '', NULL), (23707, 568, '', '', '', '0000-00-00', 23707, '', NULL), (23708, 569, '', '', '', '0000-00-00', 23708, '', NULL), (23709, 570, 'S/N B-001', 'Ohaus Heavy Duty Balance Scale (E-898)', 'Range: 20,000 Grams', '2013-07-30', 23709, '7/30/2013', NULL), (23710, 571, '', '', '', '0000-00-00', 23710, '', NULL), (23711, 572, '', ' \"***ISO Requested***', '', '0000-00-00', 23711, '', NULL), (23712, 573, '', '', '', '0000-00-00', 23712, '', NULL), (23713, 574, '', '***Grads missing below 8K on High Gauge, cannot read***', '', '0000-00-00', 23713, '', NULL), (23714, 575, 'S/N 59174-134 ', 'Rainhart Mobile Beam Breaker (E-4 & Man Specs)', 'Range: 12K (OOS)', '2008-11-11', 23714, '11/11/2008', NULL), (23715, 576, '', 'Need \"As-found\" data for both machines', '', '0000-00-00', 23715, '', NULL), (23716, 577, '', '***ISO REQUESTED***', '', '0000-00-00', 23716, '', NULL), (23717, 578, '', ' ***ISO Requested***', '', '0000-00-00', 23717, '', NULL), (23718, 579, '', '', '', '0000-00-00', 23718, '', NULL), (23719, 580, '', '', '', '0000-00-00', 23719, '', NULL), (23720, 581, '', '', ' ', '0000-00-00', 23720, '', NULL), (23721, 582, '', '', '', '0000-00-00', 23721, '', NULL), (23722, 583, '', '', '', '0000-00-00', 23722, '', NULL), (23723, 584, '', ' ***Call Steve\'s Cell, he is rarely at the office***', '', '0000-00-00', 23723, '', NULL), (23724, 585, '', ' ***ISO REQUESTED***', '', '0000-00-00', 23724, '', NULL), (23725, 586, 'S/N 040396', 'Simms Prestress Jack (E-4 & PCI)', 'Range: 37K (MOVED)', '2010-11-09', 23725, '11/9/2010', NULL), (23726, 587, '', ' ***Take Cal 60***', '', '0000-00-00', 23726, '', NULL), (23727, 588, '', ' ***Send Certs to Billing Address***', '', '0000-00-00', 23727, '', NULL), (23728, 589, '', '', '', '0000-00-00', 23728, '', NULL), (23729, 590, '', '', '', '0000-00-00', 23729, '', NULL), (23730, 591, '', '', '', '0000-00-00', 23730, '', NULL), (23731, 592, '', ' ', '', '0000-00-00', 23731, '', NULL), (23732, 593, 'S/N ', 'Structural Stress Analyzer Model 1000 (E-4 & 2%)', 'Range: 1K', NULL, 23732, 'New', NULL), (23733, 594, '', '***2 Year Intervals***', '', '0000-00-00', 23733, '', NULL), (23734, 595, '', '', '', '0000-00-00', 23734, '', NULL), (23735, 596, '', '', '', '0000-00-00', 23735, '', NULL), (23736, 597, '', '', '', '0000-00-00', 23736, '', NULL), (23737, 598, 'S/N 120830', 'w/Load Cell', '', '0000-00-00', 23737, '', NULL), (23738, 599, '', ' * SEE ALSO CUSTOMER # GCNT-2 FOR PAGE 2*', '', '0000-00-00', 23738, '', NULL), (23739, 600, '', '', '', '0000-00-00', 23739, '', NULL), (23740, 601, '', '', '', '0000-00-00', 23740, '', NULL), (23741, 602, '', '', '', '0000-00-00', 23741, '', NULL), (23742, 603, '', '', '', '0000-00-00', 23742, '', NULL), (23743, 604, '', '*LXi Front LX5000 Back this is an OddBall Back is from year 2000', ' Batt install 6/5/13', '0000-00-00', 23743, '', NULL), (23744, 605, '', '', ' ***ISO Requested', '0000-00-00', 23744, '', NULL), (23745, 606, '', '***Mobile Machine*** S/N 92002 moves between Johnstown, PA & ', 'Blairsville, PA ', '0000-00-00', 23745, '', NULL), (23746, 607, '', '**Email Pink copy of work order to Amanda as soon as copied**', '', '0000-00-00', 23746, '', NULL), (23747, 608, '', '', '', '0000-00-00', 23747, '', NULL), (23748, 609, 'S/N 93XX', 'Schmidt Type N Hammer (MOVED) (C-805)', 'Range: 78 to 82', '2010-07-28', 23748, '7/28/2010', NULL), (23749, 610, 'S/N 89225-1', 'Lane Tester Model C-1131 Compression Machine (OOS) (E-4)', 'Range 30K / 300K', '1995-03-14', 23749, '3/14/1995', NULL), (23750, 611, 'S/N 1638763-6GM', 'Ohaus Defender 5000 Digital Scale (E-898) (OOS)', 'Range: 250 lbs (110 Kg)', '2010-10-28', 23750, '10/28/2010', NULL), (23751, 612, '', '', '', '0000-00-00', 23751, '', NULL), (23752, 613, 'S/N 02200', 'Forney FX-250 Digital Compression Machine (MOVED) (E-4)', 'Range: 250K', '2003-11-17', 23752, '11/17/2003', NULL), (23753, 614, '', '', '', '0000-00-00', 23753, '', NULL), (23754, 615, 'S/N N/A ', 'Pressure Gauge Air Meter (D-5720)', 'Range: 15 PSI', NULL, 23754, 'New', NULL), (23755, 616, '', '', '', '0000-00-00', 23755, '', NULL), (23756, 617, '', '', '', '0000-00-00', 23756, '', NULL), (23757, 618, '', '', '', '0000-00-00', 23757, '', NULL), (23758, 619, '', '', '', '0000-00-00', 23758, '', NULL), (23759, 620, '', 'Send Cert to: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer', '0000-00-00', 23759, '', NULL), (23760, 621, '', '', '', '0000-00-00', 23760, '', NULL), (23761, 622, '', ' ***Send Certs to Bill Address***', '', '0000-00-00', 23761, '', NULL), (23762, 623, '', '', '', '0000-00-00', 23762, '', NULL), (23763, 624, '', '', '', '0000-00-00', 23763, '', NULL), (23764, 625, '', '', '', '0000-00-00', 23764, '', NULL), (23765, 626, '', '', '', '0000-00-00', 23765, '', NULL), (23766, 627, '', '', '', '0000-00-00', 23766, '', NULL), (23767, 628, 'S/N L813222', ' w/Coti Load Cell (OOS)', '', '0000-00-00', 23767, '', NULL), (23768, 629, '', '', '', '0000-00-00', 23768, '', NULL), (23769, 630, '', '', '', '0000-00-00', 23769, '', NULL), (23770, 631, '', '', '', '0000-00-00', 23770, '', NULL), (23771, 632, '', '', '', '0000-00-00', 23771, '', NULL), (23772, 633, '', '', '', '0000-00-00', 23772, '', NULL), (23773, 634, '', '', '', '0000-00-00', 23773, '', NULL), (23774, 635, 'S/N 13501', 'Fowler 54-100-024-1 Caliper (ManSpecs)', 'Range: 0in to 15 in', '2013-06-05', 23774, '6/5/2013', NULL), (23775, 636, '', '', '', '0000-00-00', 23775, '', NULL), (23776, 637, 'S/N PS-2971', 'GeoJac Pressure Transducer (D-5720)', 'Range: 200 psi', '2012-11-13', 23776, '11/13/2012', NULL), (23777, 638, 'S/N LP-834', ' w/ GeoJac LVDT (D-6027)', 'Range: 3 inches ', '2012-11-13', 23777, '11/13/2012', NULL), (23778, 639, '', '', '', '0000-00-00', 23778, '', NULL), (23779, 640, '', 'Go in November and June-Possibly ProRate to get on same Schedule', '', '0000-00-00', 23779, '', NULL), (23780, 641, 'S/N 2', 'Digital Load Cell Central Model Truss Test (E-4)', 'Range: 5K (OOS)', '2000-05-12', 23780, '5/12/2000', NULL), (23781, 642, '', '', '', '0000-00-00', 23781, '', NULL), (23782, 643, 'S/N 090435188', 'Humboldt Dial Indicator (D-6027)', 'Range: 1 inches ', '2012-11-28', 23782, '11/28/2012', NULL), (23783, 644, 'S/N 080216 ', ' w/ Low Range LC 1 (E-4)', 'Range: 300 lbs to 30K (Moved)', '2011-09-01', 23783, '9/1/2011', NULL), (23784, 645, '', '', '', '0000-00-00', 23784, '', NULL), (23785, 646, '', '', '', '0000-00-00', 23785, '', NULL), (23786, 647, '', '', '', '0000-00-00', 23786, '', NULL), (23787, 648, '', '***Per Tom all equipment shipped back UPS Ground, Insure $700.00', 'unless notified otherwise***', '0000-00-00', 23787, '', NULL), (23788, 649, '', '', '', '0000-00-00', 23788, '', NULL), (23789, 650, '', '', '', '0000-00-00', 23789, '', NULL), (23790, 651, '', '', '', '0000-00-00', 23790, '', NULL), (23791, 652, '', '', '', '0000-00-00', 23791, '', NULL), (23792, 653, '', '', '', '0000-00-00', 23792, '', NULL), (23793, 654, '', '', '', '0000-00-00', 23793, '', NULL), (23794, 655, '', '', '', '0000-00-00', 23794, '', NULL), (23795, 656, '', '', '', '0000-00-00', 23795, '', NULL), (23796, 657, '', '', '', '0000-00-00', 23796, '', NULL), (23797, 658, '', '', '', '0000-00-00', 23797, '', NULL), (23798, 659, '', '', '', '0000-00-00', 23798, '', NULL), (23799, 660, '', 'Mail Certs Attn: Dave Novotny', '', '0000-00-00', 23799, '', NULL), (23800, 661, '', 'person ordering the services ', '', '0000-00-00', 23800, '', NULL), (23801, 662, '', '', '', '0000-00-00', 23801, '', NULL), (23802, 663, '', '', '', '0000-00-00', 23802, '', NULL), (23803, 664, '', '', '', '0000-00-00', 23803, '', NULL), (23804, 665, '', ' ***ISO Requested***', '', '0000-00-00', 23804, '', NULL), (23805, 666, '', '', '', '0000-00-00', 23805, '', NULL), (23806, 667, '', '', '', '0000-00-00', 23806, '', NULL), (23807, 668, '', '', '', '0000-00-00', 23807, '', NULL), (23808, 669, '', '', '', '0000-00-00', 23808, '', NULL), (23809, 670, '', ' ***ISO Requested***', '', '0000-00-00', 23809, '', NULL), (23810, 671, '', '', '', '0000-00-00', 23810, '', NULL), (23811, 672, 'S/N 38735 / NC #11', 'HCS Model HCS-LC-2502 Hydraulic Load Cell (E-4 & 2%)', 'Range: 50K', '2008-01-29', 23811, '1/29/2008', NULL), (23812, 673, '', '', '', '0000-00-00', 23812, '', NULL), (23813, 674, '', '***2-year schedule*** Used for class room/research ONLY', '', '0000-00-00', 23813, '', NULL), (23814, 675, '', ' 2 Year Schedule ', '', '0000-00-00', 23814, '', NULL), (23815, 676, '', '', '', '0000-00-00', 23815, '', NULL), (23816, 677, '', '', '', '0000-00-00', 23816, '', NULL), (23817, 678, '', '', '', '0000-00-00', 23817, '', NULL), (23818, 679, '', '', '', '0000-00-00', 23818, '', NULL), (23819, 680, '', '', '', '0000-00-00', 23819, '', NULL), (23820, 681, 'S/N 004476', 'Hilti Pull 59604/02/01 Pull Tester (Chicago) (E-4 & 2%)', 'Range: 300 lbs to 3,000 lbs', '2011-08-26', 23820, '8/26/2011', NULL), (23821, 682, 'S/N 95795 / NC#5', 'Simms L-2502 Hydraulic Load Cell (E-4)', 'Range 40 K Gauge #52', '2012-04-25', 23821, '4/25/2012', NULL), (23822, 683, '', '', '', '0000-00-00', 23822, '', NULL), (23823, 684, '', '', '', '0000-00-00', 23823, '', NULL), (23824, 685, '', '', '', '0000-00-00', 23824, '', NULL), (23825, 686, '', '', '', '0000-00-00', 23825, '', NULL), (23826, 687, '', '', '', '0000-00-00', 23826, '', NULL), (23827, 688, '', '', '', '0000-00-00', 23827, '', NULL), (23828, 689, '', '', '', '0000-00-00', 23828, '', NULL), (23829, 690, 'S/N 003042', 'Hilti Pull Tester Model 59604 (Baltimore) (E-4)', 'Range: 300 lbs to 3,000 lbs', '2009-12-04', 23829, '12/4/2009', NULL), (23830, 691, '', '', '', '0000-00-00', 23830, '', NULL), (23831, 692, '', '', '', '0000-00-00', 23831, '', NULL), (23832, 693, '', 'Closed down the months of Dec. Jan. & Feb Someone should be', 'able to let us in.', '0000-00-00', 23832, '', NULL), (23833, 694, ' ', ' ', ' ', '0000-00-00', 23833, '', NULL), (23834, 695, 'S/N AE76401967', 'AEADAM Model HCB602H Scale (E-898)', 'Range: 600 Grams', '2013-02-06', 23834, '2/6/2013', NULL), (23835, 696, '', '', '', '0000-00-00', 23835, '', NULL), (23836, 697, '', '', '', '0000-00-00', 23836, '', NULL), (23837, 698, '', '', '', '0000-00-00', 23837, '', NULL), (23838, 699, '', '', '', '0000-00-00', 23838, '', NULL), (23839, 700, '', ' ***See Run Sheet In File for S/N TL 26043420***', '', '0000-00-00', 23839, '', NULL), (23840, 701, '', '', '', '0000-00-00', 23840, '', NULL), (23841, 702, '', '', '', '0000-00-00', 23841, '', NULL), (23842, 703, 'S/N 100195 (ID#8616)', 'Open Joist HT440-25 Joint Tester (E-4 & Man Specs) (OOS)', 'Range: 65 psi to 250 psi (10 Rams)', '2012-04-26', 23842, '4/26/2012', NULL), (23843, 704, '', '', '', '0000-00-00', 23843, '', NULL), (23844, 705, '', '', '', '0000-00-00', 23844, '', NULL), (23845, 706, '', '', '', '0000-00-00', 23845, '', NULL), (23846, 707, 'S/N 11965', 'Testmark CM-25002G Compression Machine (E-4) (No longer Have)', 'Range: 30/250K', '2012-04-07', 23846, '4/7/2012', NULL), (23847, 708, 'S/N 05180', '*Forney F25EX-F-C Pilot (owned by another company)*(E4)', 'Range: 2,500 lbs to 250,000 lbs', '2012-09-11', 23847, '9/11/2012', NULL), (23848, 709, '', '', '', '0000-00-00', 23848, '', NULL), (23849, 710, '', '***ISO Requested***', '', '0000-00-00', 23849, '', NULL), (23850, 711, '', '', '', '0000-00-00', 23850, '', NULL), (23851, 712, 'S/N 16206', 'Skidmore Wilhelm Mdl. MS Bolt Tester (Moved) (E-4 & 2%)', 'Range: 90K ', '2012-03-05', 23851, '3/5/2012', NULL), (23852, 713, '', '', '', '0000-00-00', 23852, '', NULL), (23853, 714, '', '', '', '0000-00-00', 23853, '', NULL), (23854, 715, 'S/N 100753A', ' w/ Tovey Load Cell Plus X Axis - T & C', 'Range: 10K ', '2012-03-12', 23854, '3/12/2012', NULL), (23855, 716, '', '', '', '0000-00-00', 23855, '', NULL), (23856, 717, '', 'Certificate has to have PO# on it.', '', '0000-00-00', 23856, '', NULL), (23857, 718, '', '', '', '0000-00-00', 23857, '', NULL), (23858, 719, '', '', '', '0000-00-00', 23858, '', NULL), (23859, 720, '', '', '', '0000-00-00', 23859, '', NULL), (23860, 721, '', '', '', '0000-00-00', 23860, '', NULL), (23861, 722, '', '', '', '0000-00-00', 23861, '', NULL), (23862, 723, '', '', '', '0000-00-00', 23862, '', NULL), (23863, 724, '', '', '', '0000-00-00', 23863, '', NULL), (23864, 725, '', '', '', '0000-00-00', 23864, '', NULL), (23865, 726, '', '', '', '0000-00-00', 23865, '', NULL), (23866, 727, '', '', '', '0000-00-00', 23866, '', NULL), (23867, 728, '', '', '', '0000-00-00', 23867, '', NULL), (23868, 729, '', '', '', '0000-00-00', 23868, '', NULL), (23869, 730, '', '', '', '0000-00-00', 23869, '', NULL), (23870, 731, '', '', '', '0000-00-00', 23870, '', NULL), (23871, 732, 'S/N STR-E4', 'Hercules Prestress Jack (E-4 & PCI & 2%)', 'Range: 5K / 50K ', '2008-04-17', 23871, '4/17/2008', NULL), (23872, 733, '', '*** Do Both Locations Same Day ***', '', '0000-00-00', 23872, '', NULL), (23873, 734, ' ', ' ', ' ', '0000-00-00', 23873, '', NULL), (23874, 735, '', '***ISO Requested***', '', '0000-00-00', 23874, '', NULL), (23875, 736, 'S/N 84171', 'Hercules HSJ Prestress Jack (E-4 & PCI) (Moved)', 'Range: 2.5K / 45K', '2012-05-17', 23875, '5/17/2012', NULL), (23876, 737, 'S/N 79046', 'Forney FT-40-DR Compression Machine (MOVED) (E-4)', 'Range: 30K / 250K', '2006-06-22', 23876, '6/22/2006', NULL), (23877, 738, '', '', '', '0000-00-00', 23877, '', NULL), (23878, 739, '', '', '', '0000-00-00', 23878, '', NULL), (23879, 740, '', 'For PO# must call Tammy - 269-381-1550 - Fax 313-873-4733', 'Cell 269-720-4822', '0000-00-00', 23879, '', NULL), (23880, 741, 'S/N', 'Enerpac Sure-lock PSL-2646 AL (not there)', 'Range: 30 Ton (Area 6.28)', NULL, 23880, 'New', NULL), (23881, 742, '', '', '', '0000-00-00', 23881, '', NULL), (23882, 743, 'S/N TEN00000764', 'Bond Pull Tester w/ Red Lion Apollo Indicator (E-4)', 'Range: 400 lbs to 4,800 lbs', '2008-04-30', 23882, '4/30/2008', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (23883, 744, '', '', '', '0000-00-00', 23883, '', NULL), (23884, 745, '', '', '', '0000-00-00', 23884, '', NULL), (23885, 746, '', ' ***Cert sent to Bill To Site*** ', '', '0000-00-00', 23885, '', NULL), (23886, 747, '', '', '', '0000-00-00', 23886, '', NULL), (23887, 748, '', '', '', '0000-00-00', 23887, '', NULL), (23888, 749, '', '', '', '0000-00-00', 23888, '', NULL), (23889, 750, '', '', '', '0000-00-00', 23889, '', NULL), (23890, 751, '', ' ***ISO Requested***', '', '0000-00-00', 23890, '', NULL), (23891, 752, '', '', '', '0000-00-00', 23891, '', NULL), (23892, 753, '', '', '', '0000-00-00', 23892, '', NULL), (23893, 754, '', '', '', '0000-00-00', 23893, '', NULL), (23894, 755, '', '', '', '0000-00-00', 23894, '', NULL), (23895, 756, '', '', '', '0000-00-00', 23895, '', NULL), (23896, 757, '', ' ***ISO Requested***', '', '0000-00-00', 23896, '', NULL), (23897, 758, '', '', '', '0000-00-00', 23897, '', NULL), (23898, 759, '', '', '', '0000-00-00', 23898, '', NULL), (23899, 760, '', ' ***ISO Requested***', '', '0000-00-00', 23899, '', NULL), (23900, 761, '', 'For PO# must call Tammy - 269-381-1550 - Fax 313-873-4733', 'Cell 269-720-4822', '0000-00-00', 23900, '', NULL), (23901, 762, '', '', '', '0000-00-00', 23901, '', NULL), (23902, 763, '', 'Certs: NESL, 127 NESL Drive, Roaring Spring, PA 16673', 'Attn: Mark Moyer', '0000-00-00', 23902, '', NULL), (23903, 764, '', '', '', '0000-00-00', 23903, '', NULL), (23904, 765, '', '', '', '0000-00-00', 23904, '', NULL), (23905, 766, 'S/N 89059', 'Forney Digital Compression Machine (E-4)', 'Range:', NULL, 23905, 'New', NULL), (23906, 767, 'S/N 11710', 'Tinius Olsen Model AD Recorder (OOS) (E-4)', 'Range: 1.2K / 6K / 24K /90K', '2010-09-13', 23906, '9/13/2010', NULL), (23907, 768, 'S/N R-3998', 'with Load Cell (E-4) 5% & 100 % Range', 'Range: 5 lbs to 100 lbs', '2012-11-28', 23907, '11/28/2012', NULL), (23908, 769, '', '', '', '0000-00-00', 23908, '', NULL), (23909, 770, '', '', '', '0000-00-00', 23909, '', NULL), (23910, 771, '', '', '', '0000-00-00', 23910, '', NULL), (23911, 772, '', '', '', '0000-00-00', 23911, '', NULL), (23912, 773, '', '', '', '0000-00-00', 23912, '', NULL), (23913, 774, '', '', '', '0000-00-00', 23913, '', NULL), (23914, 775, '', 'e-mail Solitation Letter to sam.kimani@ebaengineering.com', '', '0000-00-00', 23914, '', NULL), (23915, 776, '', '', '', '0000-00-00', 23915, '', NULL), (23916, 777, ' ', ' ', ' ', '0000-00-00', 23916, '', NULL), (23917, 778, 'S/N C-455', ' with Speed Control Digital (E2658-11)', 'Range: 2 in/min', '2012-11-27', 23917, '11/27/2012', NULL), (23918, 779, '', '', '', '0000-00-00', 23918, '', NULL), (23919, 780, '', '', '', '0000-00-00', 23919, '', NULL), (23920, 781, '', '', '', '0000-00-00', 23920, '', NULL), (23921, 782, '', 'JACKS DONE - EVERY 6 MONTHS ( May & November )', ' ***Shut down on Mondays***', '0000-00-00', 23921, '', NULL), (23922, 783, '', '', '', '0000-00-00', 23922, '', NULL), (23923, 784, 'S/N 18097', 'Soiltest Unconfined Double Proving Ring (OOS) (E-4 & Man Specs)', 'Range: 500 lbs ', '2010-11-09', 23923, '11/9/2010', NULL), (23924, 785, '', '', '', '0000-00-00', 23924, '', NULL), (23925, 786, '', '', '', '0000-00-00', 23925, '', NULL), (23926, 787, '', '', '', '0000-00-00', 23926, '', NULL), (23927, 788, '', '', '', '0000-00-00', 23927, '', NULL), (23928, 789, '', '', '', '0000-00-00', 23928, '', NULL), (23929, 790, '', '', '', '0000-00-00', 23929, '', NULL), (23930, 791, '', '', '', '0000-00-00', 23930, '', NULL), (23931, 792, 'S/N 2011707083', ' W/ Total Comp load cell MDL TCSPI-50K-SS (OOS)', 'Range: 50K Channel #3', '2012-06-22', 23931, '6/22/2012', NULL), (23932, 793, '', '', '', '0000-00-00', 23932, '', NULL), (23933, 794, '', '', '', '0000-00-00', 23933, '', NULL), (23934, 795, '', ' ***ISO Requested***', '', '0000-00-00', 23934, '', NULL), (23935, 796, 'S/N Unkown', 'Weigh-Max Scale (moved) (E-898)', 'Range: 150 lbs', '2012-06-07', 23935, '6/7/2012', NULL), (23936, 797, '', '', '', '0000-00-00', 23936, '', NULL), (23937, 798, '', ' ***ISO Requested***', '', '0000-00-00', 23937, '', NULL), (23938, 799, '', '', '', '0000-00-00', 23938, '', NULL), (23939, 800, '', '', '', '0000-00-00', 23939, '', NULL), (23940, 801, '', '', '', '0000-00-00', 23940, '', NULL), (23941, 802, '', '', '', '0000-00-00', 23941, '', NULL), (23942, 803, '', '', '', '0000-00-00', 23942, '', NULL), (23943, 804, 'S/N 12894', 'Testmark CM-2500-1G Compression Machine (E-4)', 'Range: 250K (MOVED)', '2009-11-19', 23943, '11/19/2009', NULL), (23944, 805, '', '', '', '0000-00-00', 23944, '', NULL), (23945, 806, '', '', '', '0000-00-00', 23945, '', NULL), (23946, 807, '', ' ***ISO Requested***', '', '0000-00-00', 23946, '', NULL), (23947, 808, '', '', '', '0000-00-00', 23947, '', NULL), (23948, 809, '', '', '', '0000-00-00', 23948, '', NULL), (23949, 810, '', '', '', '0000-00-00', 23949, '', NULL), (23950, 811, '', '', '', '0000-00-00', 23950, '', NULL), (23951, 812, '', '', '', '0000-00-00', 23951, '', NULL), (23952, 813, '', ' Send Certs to Billing Address', '', '0000-00-00', 23952, '', NULL), (23953, 814, '', '', '', '0000-00-00', 23953, '', NULL), (23954, 815, '', '', '', '0000-00-00', 23954, '', NULL), (23955, 816, '', '', '', '0000-00-00', 23955, '', NULL), (23956, 817, '', '', '', '0000-00-00', 23956, '', NULL), (23957, 818, '', '', '', '0000-00-00', 23957, '', NULL), (23958, 819, '', '', '', '0000-00-00', 23958, '', NULL), (23959, 820, '', ' * Send Certs to Billing Address *', '', '0000-00-00', 23959, '', NULL), (23960, 821, '', '', '', '0000-00-00', 23960, '', NULL), (23961, 822, '', ' *** Send Certs to Job Site***', '', '0000-00-00', 23961, '', NULL), (23962, 823, '', '', '', '0000-00-00', 23962, '', NULL), (23963, 824, '', '', '', '0000-00-00', 23963, '', NULL), (23964, 825, '', '', '', '0000-00-00', 23964, '', NULL), (23965, 826, 'S/N 0507083/1', 'Eilon Engineering RON 2501 (ManSpecs & 0.1% FS)', 'Range: 5 Ton', '2013-08-27', 23965, '8/27/2013', NULL), (23966, 827, '', '', '', '0000-00-00', 23966, '', NULL), (23967, 828, 'S/N 0506132/5 ID# 11', 'Eilon Engineering RON 2501-S5 (Man Specs & 0.1% FS)', 'Range: 5 Ton', '2012-07-19', 23967, '7/19/2012', NULL), (23968, 829, 'S/N 0508090/11', 'Eilon Engineering RON 2501-S5 (Man SP & 0.1% FS) ', 'Range : 5 Ton', NULL, 23968, 'New', NULL), (23969, 830, '', '', '', '0000-00-00', 23969, '', NULL), (23970, 831, '', ' ***Equipment is Calibrated every 6 Months*** (Jan & July)', ' ***ISO Requested***', '0000-00-00', 23970, '', NULL), (23971, 832, '', '', '', '0000-00-00', 23971, '', NULL), (23972, 833, 'S/N75008', 'Forney QC-150-DR Compression Machine(MOVED)', 'Range 30 K/300 K ', '0000-00-00', 23972, '', NULL), (23973, 834, '', ' Send Certs to Billing Address', '', '0000-00-00', 23973, '', NULL), (23974, 835, '', '', '***Continued***', '0000-00-00', 23974, '', NULL), (23975, 836, '', '', '', '0000-00-00', 23975, '', NULL), (23976, 837, '', ' \"***Send Certs to Job Site Address***', '', '0000-00-00', 23976, '', NULL), (23977, 838, '', ' *Send Certs to Billing Address and Essroc\'s Name on Certs*', '', '0000-00-00', 23977, '', NULL), (23978, 839, '', '', '', '0000-00-00', 23978, '', NULL), (23979, 840, '', '', '', '0000-00-00', 23979, '', NULL), (23980, 841, 'S/N 04205', 'Forney F-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K (Moved)', '2010-08-09', 23980, '8/9/2010', NULL), (23981, 842, 'S/N 103', 'US Gauge Pressure Gauge (D-5720)', 'Range: 10K ', '2013-08-28', 23981, '8/28/2013', NULL), (23982, 843, '', 'Forney Qc-400-2 Compression Machine (E-4) (GONE)', 'Range 30/400K', '2004-08-12', 23982, '8/12/2004', NULL), (23983, 844, '', '', '', '0000-00-00', 23983, '', NULL), (23984, 845, '', ' ***Send certs to job site***', '', '0000-00-00', 23984, '', NULL), (23985, 846, '', '', '', '0000-00-00', 23985, '', NULL), (23986, 847, 'S/N 24801', 'Testmark CM-2500-SD Digital Compression Machine (E-4)', 'Range: 3K to 250K', '2012-05-22', 23986, '5/22/2012', NULL), (23987, 848, '', ' *Send Certs to Billing address*', '', '0000-00-00', 23987, '', NULL), (23988, 849, '', ' **Send Cert. to Billing Address Attn: Tim Goodall**', '', '0000-00-00', 23988, '', NULL), (23989, 850, '', '', '', '0000-00-00', 23989, '', NULL), (23990, 851, '', '', '', '0000-00-00', 23990, '', NULL), (23991, 852, '', '', '', '0000-00-00', 23991, '', NULL), (23992, 853, '', '', '', '0000-00-00', 23992, '', NULL), (23993, 854, 'S/N 301', ' w/Gauge: (Broken)', 'Range: 5,000 PSI (60,000 lbs)', '2012-10-30', 23993, '10/30/2012', NULL), (23994, 855, 'S/N 302', ' w/ Gauge (MOVED TO SOILNAIL2)', 'Range: 8,500 PSI (120,000 lbs)', '2012-06-29', 23994, '6/29/2012', NULL), (23995, 856, '', '', '', '0000-00-00', 23995, '', NULL), (23996, 857, '', '', '', '0000-00-00', 23996, '', NULL), (23997, 858, '', '', '', '0000-00-00', 23997, '', NULL), (23998, 859, '', '', '', '0000-00-00', 23998, '', NULL), (23999, 860, '', '', '', '0000-00-00', 23999, '', NULL), (24000, 861, '', '', '', '0000-00-00', 24000, '', NULL), (24001, 862, '', '', '', '0000-00-00', 24001, '', NULL), (24002, 863, '', ' Send Certs to Billing Address', '', '0000-00-00', 24002, '', NULL), (24003, 864, 'S/N 11364', 'Soiltest Hammer Type N2-5 (MOVED) (C-805) ', 'Range: 78 to 81', '2012-10-18', 24003, '10/18/2012', NULL), (24004, 865, '', ' ***See Run Sheet for cal procedure*** ', '', '0000-00-00', 24004, '', NULL), (24005, 866, '', '', ' ** ISO Requested **', '0000-00-00', 24005, '', NULL), (24006, 867, '', 'Used to pay with Credit Card now must have PO#', '', '0000-00-00', 24006, '', NULL), (24007, 868, '', '', '', '0000-00-00', 24007, '', NULL), (24008, 869, '', ' ***ISO Requested***', '', '0000-00-00', 24008, '', NULL), (24009, 870, '', '', '', '0000-00-00', 24009, '', NULL), (24010, 871, '', ' ***Send Certs to Job Site***', '', '0000-00-00', 24010, '', NULL), (24011, 872, '', '', '', '0000-00-00', 24011, '', NULL), (24012, 873, ' ', ' ', '', '0000-00-00', 24012, '', NULL), (24013, 874, '', '', '', '0000-00-00', 24013, '', NULL), (24014, 875, '', '', '', '0000-00-00', 24014, '', NULL), (24015, 876, 'S/N 1594', 'Soiltest CT-710-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (SOLD)', '2010-10-26', 24015, '10/26/2010', NULL), (24016, 877, '', '', '', '0000-00-00', 24016, '', NULL), (24017, 878, '', '***Original Invoice mailed to Job Site***', '', '0000-00-00', 24017, '', NULL), (24018, 879, '', ' ***ISO Requested***', '', '0000-00-00', 24018, '', NULL), (24019, 880, '', '', '', '0000-00-00', 24019, '', NULL), (24020, 881, '', '', '', '0000-00-00', 24020, '', NULL), (24021, 882, '', '', '', '0000-00-00', 24021, '', NULL), (24022, 883, '', ' ***2 Year Schedule***', '', '0000-00-00', 24022, '', NULL), (24023, 884, '', '', '', '0000-00-00', 24023, '', NULL), (24024, 885, '', '', '', '0000-00-00', 24024, '', NULL), (24025, 886, '', '', '', '0000-00-00', 24025, '', NULL), (24026, 887, '', '', '', '0000-00-00', 24026, '', NULL), (24027, 888, '', '', '', '0000-00-00', 24027, '', NULL), (24028, 889, '', '***ISO Requested***', '', '0000-00-00', 24028, '', NULL), (24029, 890, '', '***ISO Requested***', '', '0000-00-00', 24029, '', NULL), (24030, 891, '', '', '', '0000-00-00', 24030, '', NULL), (24031, 892, 'S/N 005928', 'Hilti Pull Tester Model 59604 (E-4)', 'Range 3,000 lbs', '2012-10-25', 24031, '10/25/2012', NULL), (24032, 893, '', '', '', '0000-00-00', 24032, '', NULL), (24033, 894, 'S/N HP108/42079', 'Enerpac Post Tension Jack (E-4&PCI)', 'Range: 3K / 35K (OOS)', '2007-04-26', 24033, '4/26/2007', NULL), (24034, 895, '', '', '', '0000-00-00', 24034, '', NULL), (24035, 896, '', '***Fax Invoices to Kathy Mahaffey 703-991-8727***', '***ISO Requested***', '0000-00-00', 24035, '', NULL), (24036, 897, '', ' ***ISO Requested***', '', '0000-00-00', 24036, '', NULL), (24037, 898, 'S/N 137412', 'Proceq Swiss Hammer Model N-34 (OOS) (C-805)', 'Range: 78 to 82', '2006-08-23', 24037, '8/23/2006', NULL), (24038, 899, '', '', '', '0000-00-00', 24038, '', NULL), (24039, 900, '', '', '', '0000-00-00', 24039, '', NULL), (24040, 901, '', '', '', '0000-00-00', 24040, '', NULL), (24041, 902, '', '', '', '0000-00-00', 24041, '', NULL), (24042, 903, '', ' ***ISO Requested***', '', '0000-00-00', 24042, '', NULL), (24043, 904, 'S/N 24176', 'Soiltest Unconfined Double Proving Ring (E-4 & Man Specs)', 'Range: 1.5K (Moved to Lansing)', '2010-02-05', 24043, '2/5/2010', NULL), (24044, 905, '', '***Must have Calibration Factors & Offsets on Certification***', 'Formally Neyer, Tiseo & Hindo ', '0000-00-00', 24044, '', NULL), (24045, 906, '', '', '', '0000-00-00', 24045, '', NULL), (24046, 907, 'S/N S12422', ' w/ Load Cell Mdl. RH606 ', 'Range: 60 Ton (10,000 psi)', '2013-04-24', 24046, '4/24/2013', NULL), (24047, 908, '', '', '', '0000-00-00', 24047, '', NULL), (24048, 909, '', '', '', '0000-00-00', 24048, '', NULL), (24049, 910, 'S/N 9833', 'ELE CT-7251-DR-500-2A Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Storage)', '2012-01-03', 24049, '1/3/2012', NULL), (24050, 911, '', '', '', '0000-00-00', 24050, '', NULL), (24051, 912, '', ' ***ISO Requested***', '', '0000-00-00', 24051, '', NULL), (24052, 913, '', '', '', '0000-00-00', 24052, '', NULL), (24053, 914, '', '', '', '0000-00-00', 24053, '', NULL), (24054, 915, '', 'Must switch grey cable on front of computer when using 1 Kip cell', 'Look in file for diagram', '0000-00-00', 24054, '', NULL), (24055, 916, '', '', '', '0000-00-00', 24055, '', NULL), (24056, 917, '', '', '', '0000-00-00', 24056, '', NULL), (24057, 918, '', ' ***Company owned by Shelly Materials***', ' ***Billing address below***', '0000-00-00', 24057, '', NULL), (24058, 919, '', ' ***ISO Requested***', '', '0000-00-00', 24058, '', NULL), (24059, 920, '', '', '', '0000-00-00', 24059, '', NULL), (24060, 921, '', '***ISO Requested*** ***continued on next page ***', ' ***Certs sent to Job Site ***', '0000-00-00', 24060, '', NULL), (24061, 922, '', '***ISO Requested*** ***continued on next page ***', ' **Send Certs to Job Site**', '0000-00-00', 24061, '', NULL), (24062, 923, '', '***ISO Requested***', 'continued on next page......', '0000-00-00', 24062, '', NULL), (24063, 924, '', '', '', '0000-00-00', 24063, '', NULL), (24064, 925, '', '', '', '0000-00-00', 24064, '', NULL), (24065, 926, '', '', '', '0000-00-00', 24065, '', NULL), (24066, 927, '', ' ***ISO Requested***', '', '0000-00-00', 24066, '', NULL), (24067, 928, '', '', '', '0000-00-00', 24067, '', NULL), (24068, 929, '', '', '', '0000-00-00', 24068, '', NULL), (24069, 930, 'S/N 17615 ID# G136', ' w/ E400 Digital', 'Range: 2K', '2013-01-09', 24069, '1/9/2013', NULL), (24070, 931, 'S/N ', ' w/ Load Cell (E-4) (Moved to different machine)', 'Range: 500 lbs', '0000-00-00', 24070, '', NULL), (24071, 932, '', '', '', '0000-00-00', 24071, '', NULL), (24072, 933, 'S/N LP-926', ' w/ LVDT Moved (D-6027) (ID#R411)', 'Range: 3 inches', '2013-01-09', 24072, '1/9/2013', NULL), (24073, 934, ' ', '', '', '0000-00-00', 24073, '', NULL), (24074, 935, 'S/N 0005', 'Geotest Load Cell w/ Digital S3265 S/N 020906 (BROKE) (E-4) ', 'Range: 2K', '2010-05-04', 24074, '5/4/2010', NULL), (24075, 936, '', '', '', '0000-00-00', 24075, '', NULL), (24076, 937, '', '', '', '0000-00-00', 24076, '', NULL), (24077, 938, '', '', '', '0000-00-00', 24077, '', NULL), (24078, 939, '', '', '', '0000-00-00', 24078, '', NULL), (24079, 940, '', 'Certificate has to have PO# on it.', '', '0000-00-00', 24079, '', NULL), (24080, 941, '', 'Email invoices to accountspayable@ulalaunch.com', '', '0000-00-00', 24080, '', NULL), (24081, 942, '', '', '', '0000-00-00', 24081, '', NULL), (24082, 943, '', '', '', '0000-00-00', 24082, '', NULL), (24083, 944, '', '', '', '0000-00-00', 24083, '', NULL), (24084, 945, '', '', '', '0000-00-00', 24084, '', NULL), (24085, 946, '', '', '', '0000-00-00', 24085, '', NULL), (24086, 947, '', '', '', '0000-00-00', 24086, '', NULL), (24087, 948, '', '', '', '0000-00-00', 24087, '', NULL), (24088, 949, '', '', '', '0000-00-00', 24088, '', NULL), (24089, 950, '', '', '', '0000-00-00', 24089, '', NULL), (24090, 951, 'S/N 060960747', 'CDI Dial indicator model EDP 26204CJ (D-6027)', 'Range: 2', '2013-02-26', 24090, '2/26/2013', NULL), (24091, 952, '', ' ***Site not manned***', '', '0000-00-00', 24091, '', NULL), (24092, 953, 'S/N 75961', 'Soiltest Dial Indicator (D-6027)', 'Range: 1 Inches ', '2013-02-26', 24092, '2/26/2013', NULL), (24093, 954, '', '', '', '0000-00-00', 24093, '', NULL), (24094, 955, 'S/N 17300', 'Skidmore Wilhelm Mdl. MS Bolt Tester (E-4 2% ManSpecs)', 'Range: 120K (Rented Machine)', '2013-07-08', 24094, '7/8/2013', NULL), (24095, 956, '', '**Send Certs and Solicitation Letters to Job Site Address***', '', '0000-00-00', 24095, '', NULL), (24096, 957, '', '', '', '0000-00-00', 24096, '', NULL), (24097, 958, '', '', '', '0000-00-00', 24097, '', NULL), (24098, 959, '', '', '', '0000-00-00', 24098, '', NULL), (24099, 960, 'S/N', 'Hydraulic Press Model CCP100G2 w/ Soiltest Gauge (E-4)', 'Range: 100K (OOS)', NULL, 24099, 'New', NULL), (24100, 961, '', 'Farmington Hills, MI 48336, Attn: Dan Thomas ', '', '0000-00-00', 24100, '', NULL), (24101, 962, '', '', '', '0000-00-00', 24101, '', NULL), (24102, 963, 'S/N 301', 'BK Dial Indicator (OOS) (D-6027)', 'Range: 0.375 inches', '2001-01-09', 24102, '1/9/2001', NULL), (24103, 964, '', '', '', '0000-00-00', 24103, '', NULL), (24104, 965, '', '', '', '0000-00-00', 24104, '', NULL), (24105, 966, '', '', '', '0000-00-00', 24105, '', NULL), (24106, 967, '', '', '', '0000-00-00', 24106, '', NULL), (24107, 968, '', '', '', '0000-00-00', 24107, '', NULL), (24108, 969, '', '', '', '0000-00-00', 24108, '', NULL), (24109, 970, '', '', '', '0000-00-00', 24109, '', NULL), (24110, 971, '', '', '', '0000-00-00', 24110, '', NULL), (24111, 972, '', '', '', '0000-00-00', 24111, '', NULL), (24112, 973, '', '', '', '0000-00-00', 24112, '', NULL), (24113, 974, '', '', '', '0000-00-00', 24113, '', NULL), (24114, 975, '', '', '', '0000-00-00', 24114, '', NULL), (24115, 976, '', '', '', '0000-00-00', 24115, '', NULL), (24116, 977, '', '', '', '0000-00-00', 24116, '', NULL), (24117, 978, '', '', '', '0000-00-00', 24117, '', NULL), (24118, 979, '', '', '', '0000-00-00', 24118, '', NULL), (24119, 980, '', '', '', '0000-00-00', 24119, '', NULL), (24120, 981, '', '', '', '0000-00-00', 24120, '', NULL), (24121, 982, '', '', '', '0000-00-00', 24121, '', NULL), (24122, 983, '', '', '', '0000-00-00', 24122, '', NULL), (24123, 984, '', '', '', '0000-00-00', 24123, '', NULL), (24124, 985, '', '', '', '0000-00-00', 24124, '', NULL), (24125, 986, '', '', '', '0000-00-00', 24125, '', NULL), (24126, 987, '', '', '', '0000-00-00', 24126, '', NULL), (24127, 988, '', '', '', '0000-00-00', 24127, '', NULL), (24128, 989, '', '', '', '0000-00-00', 24128, '', NULL), (24129, 990, '', '', '', '0000-00-00', 24129, '', NULL), (24130, 991, '', '', '', '0000-00-00', 24130, '', NULL), (24131, 992, 'S/N 234 (ID# Instron 2)', ' w/ Instron T & C Load Cell (E-4) (OOS)', 'Range: 100 lbs to 10K (50 Kn)', '2011-03-16', 24131, '3/16/2011', NULL), (24132, 993, 'S/N 470', 'HMA Lab Supply Mdl. 9210 Digital Manometer (Man Specs & 2%)', 'Range: 800 mm Hg (MOVED)', '2012-04-17', 24132, '4/17/2012', NULL), (24133, 994, '', '', '', '0000-00-00', 24133, '', NULL), (24134, 995, '', ' generaladministrativeservices@VDOT.Virginia.gov', 'lora.adkins@VDOT.Virginia.gov', '0000-00-00', 24134, '', NULL), (24135, 996, '', '', '', '0000-00-00', 24135, '', NULL), (24136, 997, 'S/N 249', 'Karol Warner Model 9210 Digital Manometer', 'Range: 20mmHg to 800 mmHg', NULL, 24136, 'New', NULL), (24137, 998, '', '', '', '0000-00-00', 24137, '', NULL), (24138, 999, '', ' ***Check prices before bidding***', '', '0000-00-00', 24138, '', NULL), (24139, 1000, '', 'Put Job# on Invoice ', '', '0000-00-00', 24139, '', NULL), (24140, 1001, '', '', '', '0000-00-00', 24140, '', NULL), (24141, 1002, '', '', '', '0000-00-00', 24141, '', NULL), (24142, 1003, '', ' ***ISO Requested***', '', '0000-00-00', 24142, '', NULL), (24143, 1004, '', '', '', '0000-00-00', 24143, '', NULL), (24144, 1005, '', '', '', '0000-00-00', 24144, '', NULL), (24145, 1006, 'S/N 3541', 'Soiltest CT-710 Compression Machine (E-4) (No Longer Have)', 'Range: 250K', '2010-02-15', 24145, '2/15/2010', NULL), (24146, 1007, '', '', '', '0000-00-00', 24146, '', NULL), (24147, 1008, 'S/N', ' w/ Speed Control OOS (E2658-11)', 'Range: ', NULL, 24147, 'New', NULL), (24148, 1009, '', ' ', '', '0000-00-00', 24148, '', NULL), (24149, 1010, '', 'Do equipment every 6 months (June & December) ', '', '0000-00-00', 24149, '', NULL), (24150, 1011, '', ' *** 6 Month Schedule (June & December)***', '', '0000-00-00', 24150, '', NULL), (24151, 1012, 'S/N 5722', 'Forney QC-225 Compression Machine (OUT OF SERVICE) (E-4)', 'Range: 300K ', '2004-05-26', 24151, '5/26/2004', NULL), (24152, 1013, 'S/N 10723', ' w/ Humboldt HM-2310-04 LVDT (D-6027) OOS', 'Range: 0.4 inches (ID# BREAKRM7)', '2011-11-03', 24152, '11/3/2011', NULL), (24153, 1014, 'S/N 36', ' w/ Extra Gauge- Final Jack #6 (E-4 & PCI)', 'Range: 40K', '2013-07-15', 24153, '7/15/2013', NULL), (24154, 1015, '', '***6 MONTH SCHEDULE*** (January & July) ', ' ***Continued***', '0000-00-00', 24154, '', NULL), (24155, 1016, '', '***Need done every 6 Months (February & August)***', '', '0000-00-00', 24155, '', NULL), (24156, 1017, '', ' \"***This digital has edit function***', '', '0000-00-00', 24156, '', NULL), (24157, 1018, 'S/N 101', 'Simms Prestress Jack (MOVED) (E-4 & PCI)', 'Prepull: 3 K / 4K Final: 35K', '2005-11-10', 24157, '11/10/2005', NULL), (24158, 1019, '', '*** MUST BRING 700 SYSTEM ***', '', '0000-00-00', 24158, '', NULL), (24159, 1020, '', '', '', '0000-00-00', 24159, '', NULL), (24160, 1021, '', '***ISO Requested***', '', '0000-00-00', 24160, '', NULL), (24161, 1022, 'S/N 317097', 'SPX Post Tension Jack (E-4 & Man Specs)', 'Range: 35K (7900 PSI) (GONE)', '2010-05-18', 24161, '5/18/2010', NULL), (24162, 1023, 'S/N1446525(ID#03-101)', ' w/MTS Mdl. 634.12E-24 Extensometer Channel #1 (E-83)', 'Range: 0.25 in/in (GL 1Inch) ', '2012-08-29', 24162, '8/29/2012', NULL), (24163, 1024, '', '', '', '0000-00-00', 24163, '', NULL), (24164, 1025, 'S/N 82103', 'Forney FT-50-PI Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2009-10-27', 24164, '10/27/2009', NULL), (24165, 1026, 'S/N Ram A', 'Hercules Prestress Jack (OOS) (E-4 & PCI)', 'Range: 4K / 50K ', '2010-10-05', 24165, '10/5/2010', NULL), (24166, 1027, '', ' ***Send Certs to PO Box at Job Site***', '', '0000-00-00', 24166, '', NULL), (24167, 1028, '', 'person ordering the services ', '', '0000-00-00', 24167, '', NULL), (24168, 1029, '', '', '', '0000-00-00', 24168, '', NULL), (24169, 1030, 'S/N 843-70138-326100', ' Load Cell Daytronic/ Sensotec 3570/TH/1588-01-03 (OOS)', 'Range: 50,000 lbs', NULL, 24169, 'New', NULL), (24170, 1031, '', '', '', '0000-00-00', 24170, '', NULL), (24171, 1032, '', '', '', '0000-00-00', 24171, '', NULL), (24172, 1033, '', '', '', '0000-00-00', 24172, '', NULL), (24173, 1034, '', '', '', '0000-00-00', 24173, '', NULL), (24174, 1035, '', '', '', '0000-00-00', 24174, '', NULL), (24175, 1036, 'S/N', 'Pentrometer w/ Ashcroft Gauge (E-4)', 'Range: 0 lbs to 200 lbs ', NULL, 24175, 'New', NULL), (24176, 1037, '', '', 'Continued****', '0000-00-00', 24176, '', NULL), (24177, 1038, '', 'Mail Certs to Bill to address: Attn: David Guffey', ' Continued****', '0000-00-00', 24177, '', NULL), (24178, 1039, 'S/N 236/111', 'Brainard-Kilman Mdl. E-310 LVDT (Channel #21)', 'Range: 0.4 Inches (D-6027)', '2012-04-04', 24178, '4/4/2012', NULL), (24179, 1040, '', '', '', '0000-00-00', 24179, '', NULL), (24180, 1041, '', '***Certs: Attn: David Guffy to billing address***', ' ', '0000-00-00', 24180, '', NULL), (24181, 1042, '', '', '', '0000-00-00', 24181, '', NULL), (24182, 1043, '', '', '***continued***', '0000-00-00', 24182, '', NULL), (24183, 1044, '', 'Mail Certs to Bill to address: Attn: David Guffey', '', '0000-00-00', 24183, '', NULL), (24184, 1045, '', '', '', '0000-00-00', 24184, '', NULL), (24185, 1046, '', '', '', '0000-00-00', 24185, '', NULL), (24186, 1047, '', '', '', '0000-00-00', 24186, '', NULL), (24187, 1048, 'S/N 688', 'Soiltest CT-710 Compression Machine (OOS) (E-4)', 'Range 250K', '1996-11-21', 24187, '11/21/1996', NULL), (24188, 1049, '', '', '', '0000-00-00', 24188, '', NULL), (24189, 1050, '', '', '', '0000-00-00', 24189, '', NULL), (24190, 1051, '', 'Ext. cord, all plugged into the same outlet*** ', '', '0000-00-00', 24190, '', NULL), (24191, 1052, 'S/N M27927', 'Soiltest CT-712 Compression Machine (Traded to Cal. Services)(E-4)', 'Range: 250K', '2010-04-12', 24191, '4/12/2010', NULL), (24192, 1053, '', '', '', '0000-00-00', 24192, '', NULL), (24193, 1054, '', '', '', '0000-00-00', 24193, '', NULL), (24194, 1055, '', '', '', '0000-00-00', 24194, '', NULL), (24195, 1056, '', '', '', '0000-00-00', 24195, '', NULL), (24196, 1057, '', '', '', '0000-00-00', 24196, '', NULL), (24197, 1058, '', '', '', '0000-00-00', 24197, '', NULL), (24198, 1059, '', '', '', '0000-00-00', 24198, '', NULL), (24199, 1060, ' ', ' ', ' ', '0000-00-00', 24199, '', NULL), (24200, 1061, 'S/N TEN020', 'Dillon Mdl. AP-P-15 Dynamometer (OOS) (E-4)', 'Range: 6K', '2011-04-26', 24200, '4/26/2011', NULL), (24201, 1062, '', '', '', '0000-00-00', 24201, '', NULL), (24202, 1063, '', '', '', '0000-00-00', 24202, '', NULL), (24203, 1064, '', '', '', '0000-00-00', 24203, '', NULL), (24204, 1065, '', '', '', '0000-00-00', 24204, '', NULL), (24205, 1066, '', '', '', '0000-00-00', 24205, '', NULL), (24206, 1067, '', '', '', '0000-00-00', 24206, '', NULL), (24207, 1068, '', '', '', '0000-00-00', 24207, '', NULL), (24208, 1069, '', '', '', '0000-00-00', 24208, '', NULL), (24209, 1070, '', '', '', '0000-00-00', 24209, '', NULL), (24210, 1071, '', '', '', '0000-00-00', 24210, '', NULL), (24211, 1072, '', '', '', '0000-00-00', 24211, '', NULL), (24212, 1073, '', '', '', '0000-00-00', 24212, '', NULL), (24213, 1074, '', '', '', '0000-00-00', 24213, '', NULL), (24214, 1075, '', '', '', '0000-00-00', 24214, '', NULL), (24215, 1076, 'S/N 21492', 'Chatillon Force Gauge Digital DFIS 50 T&C (E-4)', 'Range: 5 to 50 lb.', '1998-04-28', 24215, '4/28/1998', NULL), (24216, 1077, 'S/N 14906', 'Chatillon Force Gauge DFI-200 Digital T & C (E-4)', 'Range: 20 to 200 lb.', '1998-04-29', 24216, '4/29/1998', NULL), (24217, 1078, '', '', '', '0000-00-00', 24217, '', NULL), (24218, 1079, '', '', '', '0000-00-00', 24218, '', NULL), (24219, 1080, '', '', '', '0000-00-00', 24219, '', NULL), (24220, 1081, '', '', '', '0000-00-00', 24220, '', NULL), (24221, 1082, '', '', '', '0000-00-00', 24221, '', NULL), (24222, 1083, '', '', '', '0000-00-00', 24222, '', NULL), (24223, 1084, '', '', '', '0000-00-00', 24223, '', NULL), (24224, 1085, '', '', '', '0000-00-00', 24224, '', NULL), (24225, 1086, '', '', '', '0000-00-00', 24225, '', NULL), (24226, 1087, '', '', '', '0000-00-00', 24226, '', NULL), (24227, 1088, '', '', '', '0000-00-00', 24227, '', NULL), (24228, 1089, '', '', '', '0000-00-00', 24228, '', NULL), (24229, 1090, '', '', '', '0000-00-00', 24229, '', NULL), (24230, 1091, '', '', '', '0000-00-00', 24230, '', NULL), (24231, 1092, '', '', '', '0000-00-00', 24231, '', NULL), (24232, 1093, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 24232, '', NULL), (24233, 1094, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 24233, '', NULL), (24234, 1095, '', '', '', '0000-00-00', 24234, '', NULL), (24235, 1096, '', '', '', '0000-00-00', 24235, '', NULL), (24236, 1097, '', '', '', '0000-00-00', 24236, '', NULL), (24237, 1098, '', '', '', '0000-00-00', 24237, '', NULL), (24238, 1099, '', '', '', '0000-00-00', 24238, '', NULL), (24239, 1100, '', '', '', '0000-00-00', 24239, '', NULL), (24240, 1101, '', '', '', '0000-00-00', 24240, '', NULL), (24241, 1102, '', '', '', '0000-00-00', 24241, '', NULL), (24242, 1103, '', '', '', '0000-00-00', 24242, '', NULL), (24243, 1104, '', '', '', '0000-00-00', 24243, '', NULL), (24244, 1105, '', '', '', '0000-00-00', 24244, '', NULL), (24245, 1106, '', '', '', '0000-00-00', 24245, '', NULL), (24246, 1107, '', '', '', '0000-00-00', 24246, '', NULL), (24247, 1108, '', '', '', '0000-00-00', 24247, '', NULL), (24248, 1109, '', '', '', '0000-00-00', 24248, '', NULL), (24249, 1110, '', '', '', '0000-00-00', 24249, '', NULL), (24250, 1111, '', '', '', '0000-00-00', 24250, '', NULL), (24251, 1112, '', '', '', '0000-00-00', 24251, '', NULL), (24252, 1113, '', '', '', '0000-00-00', 24252, '', NULL), (24253, 1114, '', '', '', '0000-00-00', 24253, '', NULL), (24254, 1115, '', '', '', '0000-00-00', 24254, '', NULL), (24255, 1116, '', '', '', '0000-00-00', 24255, '', NULL), (24256, 1117, '', '', '', '0000-00-00', 24256, '', NULL), (24257, 1118, '', '', '', '0000-00-00', 24257, '', NULL), (24258, 1119, '', '', '', '0000-00-00', 24258, '', NULL), (24259, 1120, '', '', '', '0000-00-00', 24259, '', NULL), (24260, 1121, '', '***ISO REQUESTED*** ***ISO 9000***', '***continued***', '0000-00-00', 24260, '', NULL), (24261, 1122, 'S/N 20007038', 'with Load Cell Model PSB0100', '', '0000-00-00', 24261, '', NULL), (24262, 1123, '', '', '', '0000-00-00', 24262, '', NULL), (24263, 1124, '', 'conti...', '', '0000-00-00', 24263, '', NULL), (24264, 1125, '', '', '', '0000-00-00', 24264, '', NULL), (24265, 1126, '', '', '', '0000-00-00', 24265, '', NULL), (24266, 1127, '', '', '', '0000-00-00', 24266, '', NULL), (24267, 1128, '', '', '', '0000-00-00', 24267, '', NULL), (24268, 1129, '', '**Send Certs to the Bllomfield address**', '', '0000-00-00', 24268, '', NULL), (24269, 1130, '', '', '', '0000-00-00', 24269, '', NULL), (24270, 1131, '', '', '', '0000-00-00', 24270, '', NULL), (24271, 1132, '', '', '', '0000-00-00', 24271, '', NULL), (24272, 1133, '', '', '', '0000-00-00', 24272, '', NULL), (24273, 1134, '', '', '', '0000-00-00', 24273, '', NULL), (24274, 1135, '', '', '', '0000-00-00', 24274, '', NULL), (24275, 1136, '', '', '', '0000-00-00', 24275, '', NULL), (24276, 1137, '', '', '', '0000-00-00', 24276, '', NULL), (24277, 1138, '', '', '', '0000-00-00', 24277, '', NULL), (24278, 1139, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 24278, '', NULL), (24279, 1140, '', '***Mobile Machine*** S/N 92002 moves between Johnstown, PA & ', 'Blairsville, PA ', '0000-00-00', 24279, '', NULL), (24280, 1141, '', ' \"*** 2 Year Schedule***', '', '0000-00-00', 24280, '', NULL), (24281, 1142, 'S/N E7611', 'Pore Pressure Transducer w / digital (Out of Service) (D-5720)', 'Cap: 100 psi', '2004-08-11', 24281, '8/11/2004', NULL), (24282, 1143, '', '***ISO REQUESTED***', '', '0000-00-00', 24282, '', NULL), (24283, 1144, '', '', '', '0000-00-00', 24283, '', NULL), (24284, 1145, '', '', '', '0000-00-00', 24284, '', NULL), (24285, 1146, '', ' ***Send Certs to Bill To address***', '', '0000-00-00', 24285, '', NULL), (24286, 1147, 'S/N 847', 'Logic Triaxial / Flex Wall Pressure Panel (D-5720)', 'Range: 10 psi to 100 psi ', '2013-08-06', 24286, '8/6/2013', NULL), (24287, 1148, '', '', '', '0000-00-00', 24287, '', NULL), (24288, 1149, '', '', '', '0000-00-00', 24288, '', NULL), (24289, 1150, '', ' **Leave Procedure at office when done**', '', '0000-00-00', 24289, '', NULL), (24290, 1151, '', '***Ask for help to remove and reinstall block head***', '', '0000-00-00', 24290, '', NULL), (24291, 1152, '', '', '', '0000-00-00', 24291, '', NULL), (24292, 1153, '', '', '', '0000-00-00', 24292, '', NULL), (24293, 1154, '', ' ***ISO Requested***', '', '0000-00-00', 24293, '', NULL), (24294, 1155, '', '', '', '0000-00-00', 24294, '', NULL), (24295, 1156, '', '', '', '0000-00-00', 24295, '', NULL), (24296, 1157, 'S/N 061998681', 'ELE Mdl. Penetrometer Single Proving Ring (E-4 & Man Specs)', 'Range: 150 lbs (OOS)', '2009-08-25', 24296, '8/25/2009', NULL), (24297, 1158, 'S/N 7649', 'Forney QC-200-CS-100-2 Digital Compression Machine (E-4)', 'Range: 4K to 400K (OOS)', '2011-08-24', 24297, '8/24/2011', NULL), (24298, 1159, '', '', '', '0000-00-00', 24298, '', NULL), (24299, 1160, '', ' ***Send Certs to Bill To Site***', '', '0000-00-00', 24299, '', NULL), (24300, 1161, 'S/N 3448', 'Soiltest CT-710 Compression Machine (High Range Only) (E-4)', 'Range: 30K / 250K', '2010-08-25', 24300, '8/25/2010', NULL), (24301, 1162, '', ' ***ISO Requested***', '', '0000-00-00', 24301, '', NULL), (24302, 1163, '', '', '', '0000-00-00', 24302, '', NULL), (24303, 1164, '', '', '', '0000-00-00', 24303, '', NULL), (24304, 1165, '', '', '', '0000-00-00', 24304, '', NULL), (24305, 1166, '', '', '', '0000-00-00', 24305, '', NULL), (24306, 1167, '', '', '', '0000-00-00', 24306, '', NULL), (24307, 1168, '', '', '', '0000-00-00', 24307, '', NULL), (24308, 1169, '', '', '', '0000-00-00', 24308, '', NULL), (24309, 1170, '', '', '', '0000-00-00', 24309, '', NULL), (24310, 1171, '', '', '', '0000-00-00', 24310, '', NULL), (24311, 1172, '', '', '', '0000-00-00', 24311, '', NULL), (24312, 1173, '', '', '', '0000-00-00', 24312, '', NULL), (24313, 1174, '', '', '', '0000-00-00', 24313, '', NULL), (24314, 1175, '', '', '', '0000-00-00', 24314, '', NULL), (24315, 1176, '', '', '', '0000-00-00', 24315, '', NULL), (24316, 1177, '', '', '', '0000-00-00', 24316, '', NULL), (24317, 1178, '', '', '', '0000-00-00', 24317, '', NULL), (24318, 1179, '', '', '', '0000-00-00', 24318, '', NULL), (24319, 1180, '', '', '', '0000-00-00', 24319, '', NULL), (24320, 1181, '', '', '', '0000-00-00', 24320, '', NULL), (24321, 1182, '', '', '', '0000-00-00', 24321, '', NULL), (24322, 1183, '', '', '', '0000-00-00', 24322, '', NULL), (24323, 1184, '', '', '', '0000-00-00', 24323, '', NULL), (24324, 1185, '', '', '', '0000-00-00', 24324, '', NULL), (24325, 1186, '', '', '', '0000-00-00', 24325, '', NULL), (24326, 1187, '', '', '', '0000-00-00', 24326, '', NULL), (24327, 1188, '', '', '', '0000-00-00', 24327, '', NULL), (24328, 1189, '', '', '', '0000-00-00', 24328, '', NULL), (24329, 1190, '', '', '', '0000-00-00', 24329, '', NULL), (24330, 1191, 'S/N 261', 'Brainard-Kilman Load Cell Model E-214', 'Range: 6,000 lbs.', '2001-08-29', 24330, '8/29/2001', NULL), (24331, 1192, '', '', '', '0000-00-00', 24331, '', NULL), (24332, 1193, '', '', '', '0000-00-00', 24332, '', NULL), (24333, 1194, '', '', '', '0000-00-00', 24333, '', NULL), (24334, 1195, '', '', '', '0000-00-00', 24334, '', NULL), (24335, 1196, '', '', '', '0000-00-00', 24335, '', NULL), (24336, 1197, '', '', '', '0000-00-00', 24336, '', NULL), (24337, 1198, '', '', '', '0000-00-00', 24337, '', NULL), (24338, 1199, '', 'have a PO#, ship to address & First & Last name of Essroc employee', '', '0000-00-00', 24338, '', NULL), (24339, 1200, '', '', '', '0000-00-00', 24339, '', NULL), (24340, 1201, '', '***ISO Requested***', '', '0000-00-00', 24340, '', NULL), (24341, 1202, '', '***ISO Requested***', '', '0000-00-00', 24341, '', NULL), (24342, 1203, '', '***ISO Requested***', '', '0000-00-00', 24342, '', NULL), (24343, 1204, '', '', '', '0000-00-00', 24343, '', NULL), (24344, 1205, '', '', '', '0000-00-00', 24344, '', NULL), (24345, 1206, '', '', '', '0000-00-00', 24345, '', NULL), (24346, 1207, '', '', '', '0000-00-00', 24346, '', NULL), (24347, 1208, '', '', '', '0000-00-00', 24347, '', NULL), (24348, 1209, '', '', '', '0000-00-00', 24348, '', NULL), (24349, 1210, '', '', '', '0000-00-00', 24349, '', NULL), (24350, 1211, '', 'Continued- - -', '', '0000-00-00', 24350, '', NULL), (24351, 1212, '', 'Proof of compliance required before travel, must provide transportation', 'when on St. Kitts', '0000-00-00', 24351, '', NULL), (24352, 1213, '', 'Proof of compliance required before travel, must provide transportation', 'when on St. Kitts', '0000-00-00', 24352, '', NULL), (24353, 1214, 'S/N 102-664', 'Ashcroft Pressure Gauge (D-5720) (OOS)', 'Range: 200 PSI', '2011-12-13', 24353, '12/13/2011', NULL), (24354, 1215, '', '', '', '0000-00-00', 24354, '', NULL), (24355, 1216, 'S/N 101', 'Karol Warner Mdl. PG2000 Pressure Transducer (D-5720)', 'Range: 150 psi (DESTROYED)', '2009-12-21', 24355, '12/21/2009', NULL), (24356, 1217, '', '', '', '0000-00-00', 24356, '', NULL), (24357, 1218, '', '', '', '0000-00-00', 24357, '', NULL), (24358, 1219, '', '', '', '0000-00-00', 24358, '', NULL), (24359, 1220, '', '', '', '0000-00-00', 24359, '', NULL), (24360, 1221, '', '', '', '0000-00-00', 24360, '', NULL), (24361, 1222, '', '', '', '0000-00-00', 24361, '', NULL), (24362, 1223, '', '', '', '0000-00-00', 24362, '', NULL), (24363, 1224, '', '', '', '0000-00-00', 24363, '', NULL), (24364, 1225, '', '', '', '0000-00-00', 24364, '', NULL), (24365, 1226, '', '', '', '0000-00-00', 24365, '', NULL), (24366, 1227, '', '', '', '0000-00-00', 24366, '', NULL), (24367, 1228, '', '', '', '0000-00-00', 24367, '', NULL), (24368, 1229, '', '', '', '0000-00-00', 24368, '', NULL), (24369, 1230, '', '', '', '0000-00-00', 24369, '', NULL), (24370, 1231, '', '', '', '0000-00-00', 24370, '', NULL), (24371, 1232, '', '', '', '0000-00-00', 24371, '', NULL), (24372, 1233, '', '***ISO Requested***', '', '0000-00-00', 24372, '', NULL), (24373, 1234, '', '', '', '0000-00-00', 24373, '', NULL), (24374, 1235, '', '', '', '0000-00-00', 24374, '', NULL), (24375, 1236, '', '', '', '0000-00-00', 24375, '', NULL), (24376, 1237, '', '', '', '0000-00-00', 24376, '', NULL), (24377, 1238, '', '', '', '0000-00-00', 24377, '', NULL), (24378, 1239, '', '', '', '0000-00-00', 24378, '', NULL), (24379, 1240, '', '', '', '0000-00-00', 24379, '', NULL), (24380, 1241, '', ' w/ system 2000 Digital (OOS) (E-4)', 'Range: Digital 4K to 400K', '2004-12-10', 24380, '12/10/2004', NULL), (24381, 1242, '', '***ISO Requested***', '', '0000-00-00', 24381, '', NULL), (24382, 1243, '', 'Conversion factor for Pine Load Cell 0.251716 for 150 mm mold', '', '0000-00-00', 24382, '', NULL), (24383, 1244, '', ' ***ISO Requested***', '', '0000-00-00', 24383, '', NULL), (24384, 1245, '', '', '', '0000-00-00', 24384, '', NULL), (24385, 1246, '', '', '', '0000-00-00', 24385, '', NULL), (24386, 1247, '', '', '', '0000-00-00', 24386, '', NULL), (24387, 1248, '', '', '', '0000-00-00', 24387, '', NULL), (24388, 1249, '', '', '', '0000-00-00', 24388, '', NULL), (24389, 1250, '', '', '', '0000-00-00', 24389, '', NULL), (24390, 1251, '', '***ISO Requested***', '', '0000-00-00', 24390, '', NULL), (24391, 1252, '', '***ISO Requested***', '', '0000-00-00', 24391, '', NULL), (24392, 1253, '', '', '', '0000-00-00', 24392, '', NULL), (24393, 1254, '', ' ***ISO Requested***', ' ***continued***', '0000-00-00', 24393, '', NULL), (24394, 1255, '', '', '', '0000-00-00', 24394, '', NULL), (24395, 1256, '', '***ISO Requested***', '', '0000-00-00', 24395, '', NULL), (24396, 1257, '', '', '', '0000-00-00', 24396, '', NULL), (24397, 1258, '', '', '', '0000-00-00', 24397, '', NULL), (24398, 1259, '', '', '', '0000-00-00', 24398, '', NULL), (24399, 1260, '', '', '', '0000-00-00', 24399, '', NULL), (24400, 1261, '', '', '', '0000-00-00', 24400, '', NULL), (24401, 1262, '', '', '', '0000-00-00', 24401, '', NULL), (24402, 1263, '', '', '', '0000-00-00', 24402, '', NULL), (24403, 1264, '', '', '', '0000-00-00', 24403, '', NULL), (24404, 1265, '', '', '', '0000-00-00', 24404, '', NULL), (24405, 1266, '', '', '', '0000-00-00', 24405, '', NULL), (24406, 1267, '', '', '', '0000-00-00', 24406, '', NULL), (24407, 1268, 'S/N 9901', 'ELE CT-7351A Compression Machine (Out of Service) (E-4)', 'Range: 350K', '2004-12-14', 24407, '12/14/2004', NULL), (24408, 1269, '', '***ISO Requested***', '', '0000-00-00', 24408, '', NULL), (24409, 1270, '', '***ISO Requested***', '', '0000-00-00', 24409, '', NULL), (24410, 1271, '', '', '', '0000-00-00', 24410, '', NULL), (24411, 1272, '', '', '', '0000-00-00', 24411, '', NULL), (24412, 1273, '', '***ISO Requested***', '', '0000-00-00', 24412, '', NULL), (24413, 1274, '', ' ***ISO Requested***', '', '0000-00-00', 24413, '', NULL), (24414, 1275, '', '***ISO Requested***', '', '0000-00-00', 24414, '', NULL), (24415, 1276, ' ', ' ', ' ', '0000-00-00', 24415, '', NULL), (24416, 1277, '', '', '', '0000-00-00', 24416, '', NULL), (24417, 1278, '', 'FT-20 S/N 62018 Calibrated Every other year', '', '0000-00-00', 24417, '', NULL), (24418, 1279, 'S/N D', 'Enerpac Prestress Jack (OUT OF SERVICE) (E-4 & PCI)', 'RangeK 400 to 600 psi', '2002-05-07', 24418, '5/7/2002', NULL), (24419, 1280, '', 'Send Certs/Invoice to PO Box 70 Monroe OH 45050', '', '0000-00-00', 24419, '', NULL), (24420, 1281, '', ' **Grips must be in machine to calibrate**', '', '0000-00-00', 24420, '', NULL), (24421, 1282, '', '*** Must fill out Hazard Training & Recognition Checklist***', '', '0000-00-00', 24421, '', NULL), (24422, 1283, '', ' ***2 Year Schedule***', '', '0000-00-00', 24422, '', NULL), (24423, 1284, '', '', '', '0000-00-00', 24423, '', NULL), (24424, 1285, '', '***Must call at least 1 day ahead so they can turn heat on*** ', '', '0000-00-00', 24424, '', NULL), (24425, 1286, '', '30701 West 10 Mile Road, Suite 500, Farmington Hills, MI 48336', '', '0000-00-00', 24425, '', NULL), (24426, 1287, '', '', '', '0000-00-00', 24426, '', NULL), (24427, 1288, 'S/N 86057', 'Forney FT-40-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (MOVED)', '2013-02-12', 24427, '2/12/2013', NULL), (24428, 1289, 'S/N H6259', 'ELE Mdl. T-1010CM Pressure Transducer (D-5720)', 'Range: 150 psi', '2013-02-12', 24428, '2/12/2013', NULL), (24429, 1290, '', '', '', '0000-00-00', 24429, '', NULL), (24430, 1291, '', '', '', '0000-00-00', 24430, '', NULL), (24431, 1292, '', 'Send Certs Attn: Bill Jackson to Job Site', '', '0000-00-00', 24431, '', NULL), (24432, 1293, '', '', '', '0000-00-00', 24432, '', NULL), (24433, 1294, '', '', '', '0000-00-00', 24433, '', NULL), (24434, 1295, '', '', '', '0000-00-00', 24434, '', NULL), (24435, 1296, '', '', '** See Billing Address**', '0000-00-00', 24435, '', NULL), (24436, 1297, '', '', '', '0000-00-00', 24436, '', NULL), (24437, 1298, '', '***ISO Requested***', '', '0000-00-00', 24437, '', NULL), (24438, 1299, '', '', '', '0000-00-00', 24438, '', NULL), (24439, 1300, '', ' ***ISO Requested***', '', '0000-00-00', 24439, '', NULL), (24440, 1301, 'S/N 9416', 'Soiltest AP-170-CY Compression Recorder (E-4 & 2%)', 'Range: 5K / 10K', '2003-03-04', 24440, '3/4/2003', NULL), (24441, 1302, '', ' ***ISO Requested***', '', '0000-00-00', 24441, '', NULL), (24442, 1303, '', '', '', '0000-00-00', 24442, '', NULL), (24443, 1304, '', '', '', '0000-00-00', 24443, '', NULL), (24444, 1305, '', '', '', '0000-00-00', 24444, '', NULL), (24445, 1306, '', ' ***ISO Requested***', '', '0000-00-00', 24445, '', NULL), (24446, 1307, '', '***ISO Requested***', '', '0000-00-00', 24446, '', NULL), (24447, 1308, '', '', '', '0000-00-00', 24447, '', NULL), (24448, 1309, '', '', '', '0000-00-00', 24448, '', NULL), (24449, 1310, '', '', '', '0000-00-00', 24449, '', NULL), (24450, 1311, '', '', '', '0000-00-00', 24450, '', NULL), (24451, 1312, '', '', '', '0000-00-00', 24451, '', NULL), (24452, 1313, '', '', '', '0000-00-00', 24452, '', NULL), (24453, 1314, '', '', '', '0000-00-00', 24453, '', NULL), (24454, 1315, '', ' ***ISO Requested***', '', '0000-00-00', 24454, '', NULL), (24455, 1316, '', '', '', '0000-00-00', 24455, '', NULL), (24456, 1317, '', '', '', '0000-00-00', 24456, '', NULL), (24457, 1318, '', '', '', '0000-00-00', 24457, '', NULL), (24458, 1319, '', '', '', '0000-00-00', 24458, '', NULL), (24459, 1320, '', '', '', '0000-00-00', 24459, '', NULL), (24460, 1321, '', '', '', '0000-00-00', 24460, '', NULL), (24461, 1322, '', '', '', '0000-00-00', 24461, '', NULL), (24462, 1323, '', '', '', '0000-00-00', 24462, '', NULL), (24463, 1324, '', '', '', '0000-00-00', 24463, '', NULL), (24464, 1325, 'S/N 165601', 'Tinius Olsen Compressometer (E-83)', 'Range: .004 inches', '2005-03-30', 24464, '3/30/2005', NULL), (24465, 1326, '', '', '', '0000-00-00', 24465, '', NULL), (24466, 1327, '', '', '', '0000-00-00', 24466, '', NULL), (24467, 1328, '', '', '', '0000-00-00', 24467, '', NULL), (24468, 1329, '', '', '', '0000-00-00', 24468, '', NULL), (24469, 1330, '', '', '', '0000-00-00', 24469, '', NULL), (24470, 1331, '', '', '', '0000-00-00', 24470, '', NULL), (24471, 1332, '', '', '', '0000-00-00', 24471, '', NULL), (24472, 1333, '', '', '', '0000-00-00', 24472, '', NULL), (24473, 1334, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 24473, '', NULL), (24474, 1335, '', '', '', '0000-00-00', 24474, '', NULL), (24475, 1336, '', '', '', '0000-00-00', 24475, '', NULL), (24476, 1337, '', '', '', '0000-00-00', 24476, '', NULL), (24477, 1338, '', '', '', '0000-00-00', 24477, '', NULL), (24478, 1339, '', '', '', '0000-00-00', 24478, '', NULL), (24479, 1340, '', '', '', '0000-00-00', 24479, '', NULL), (24480, 1341, '', '', '', '0000-00-00', 24480, '', NULL), (24481, 1342, '', '', '', '0000-00-00', 24481, '', NULL), (24482, 1343, '', '', '', '0000-00-00', 24482, '', NULL), (24483, 1344, '', '', '', '0000-00-00', 24483, '', NULL), (24484, 1345, '', '', '', '0000-00-00', 24484, '', NULL), (24485, 1346, '', '', '', '0000-00-00', 24485, '', NULL), (24486, 1347, '', '', '', '0000-00-00', 24486, '', NULL), (24487, 1348, '', '', '', '0000-00-00', 24487, '', NULL), (24488, 1349, '', '', '', '0000-00-00', 24488, '', NULL), (24489, 1350, '', '', '', '0000-00-00', 24489, '', NULL), (24490, 1351, '', '', '', '0000-00-00', 24490, '', NULL), (24491, 1352, '', '', '', '0000-00-00', 24491, '', NULL), (24492, 1353, '', '', '', '0000-00-00', 24492, '', NULL), (24493, 1354, '', '', '', '0000-00-00', 24493, '', NULL), (24494, 1355, '', '', '', '0000-00-00', 24494, '', NULL), (24495, 1356, '', '', '', '0000-00-00', 24495, '', NULL), (24496, 1357, '', '', '', '0000-00-00', 24496, '', NULL), (24497, 1358, '', '', '', '0000-00-00', 24497, '', NULL), (24498, 1359, '', '', '', '0000-00-00', 24498, '', NULL), (24499, 1360, '', '', '', '0000-00-00', 24499, '', NULL), (24500, 1361, '', '', '', '0000-00-00', 24500, '', NULL), (24501, 1362, '', '*** ISO Requested ***', '', '0000-00-00', 24501, '', NULL), (24502, 1363, '', '', '', '0000-00-00', 24502, '', NULL), (24503, 1364, '', '', '', '0000-00-00', 24503, '', NULL), (24504, 1365, '', '', '', '0000-00-00', 24504, '', NULL), (24505, 1366, 'S/N ', ' w/ Instron Extensometer (E-83)', 'Range: ', NULL, 24505, 'New', NULL), (24506, 1367, '', '', '', '0000-00-00', 24506, '', NULL), (24507, 1368, '', '', '', '0000-00-00', 24507, '', NULL), (24508, 1369, '', '', '', '0000-00-00', 24508, '', NULL), (24509, 1370, '', '', '', '0000-00-00', 24509, '', NULL), (24510, 1371, '', '', '', '0000-00-00', 24510, '', NULL), (24511, 1372, '', '', '', '0000-00-00', 24511, '', NULL), (24512, 1373, '', '', '', '0000-00-00', 24512, '', NULL), (24513, 1374, '', '', '', '0000-00-00', 24513, '', NULL), (24514, 1375, '', '***ISO Requested***', '', '0000-00-00', 24514, '', NULL), (24515, 1376, '', '', '', '0000-00-00', 24515, '', NULL), (24516, 1377, '', '', '', '0000-00-00', 24516, '', NULL), (24517, 1378, '', ' ***Check file for special shipping directions***', '', '0000-00-00', 24517, '', NULL), (24518, 1379, '', '*** Put on 5 Year Schedule ***', '', '0000-00-00', 24518, '', NULL), (24519, 1380, '', '***ISO Requested***', '', '0000-00-00', 24519, '', NULL), (24520, 1381, '', '', '', '0000-00-00', 24520, '', NULL), (24521, 1382, '', '', '', '0000-00-00', 24521, '', NULL), (24522, 1383, '', '', '', '0000-00-00', 24522, '', NULL), (24523, 1384, '', '', '', '0000-00-00', 24523, '', NULL), (24524, 1385, '', '', '', '0000-00-00', 24524, '', NULL), (24525, 1386, 'S/N 2022836', 'Eilon Engineering RON 2000 S-20 Load Cell (ManSp & 0.1% FS)', 'Range: 20 Tons', '2005-06-24', 24525, '6/24/2005', NULL), (24526, 1387, 'S/N 1271347', 'Eilon Engineering RON 2000 S-10 Load Cell (ManSp & 0.1% FS)', 'Range: 10 Ton', '2005-01-04', 24526, '1/4/2005', NULL), (24527, 1388, '', '', '', '0000-00-00', 24527, '', NULL), (24528, 1389, '', '', '', '0000-00-00', 24528, '', NULL), (24529, 1390, '', ' ***Need to fill out their Bid Form***', ' con\'t next page ..........', '0000-00-00', 24529, '', NULL), (24530, 1391, '', '', '', '0000-00-00', 24530, '', NULL), (24531, 1392, '', ' PUT MONTH, DAY & YEAR ON STICKERS *** 1 Year Schedule***', '', '0000-00-00', 24531, '', NULL), (24532, 1393, '', '', '', '0000-00-00', 24532, '', NULL), (24533, 1394, '', '', '', '0000-00-00', 24533, '', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (24534, 1395, '', ' * Call Before Scheduling to Check for Class Schedule *', ' ', '0000-00-00', 24534, '', NULL), (24535, 1396, '', '', '', '0000-00-00', 24535, '', NULL), (24536, 1397, '', 'SEND CERTS TO PO BOX 203 CANAL WINCHESTER', '', '0000-00-00', 24536, '', NULL), (24537, 1398, '', 'SEND CERTS TO PO BOX 203 CANAL WINCHESTER', '', '0000-00-00', 24537, '', NULL), (24538, 1399, '', '', '', '0000-00-00', 24538, '', NULL), (24539, 1400, '', '', '', '0000-00-00', 24539, '', NULL), (24540, 1401, '', '', '', '0000-00-00', 24540, '', NULL), (24541, 1402, '', '***ISO Requested***', '', '0000-00-00', 24541, '', NULL), (24542, 1403, '', 'Credit Card # in file, will E-Mail CSI when we are authorized to ', 'use it ', '0000-00-00', 24542, '', NULL), (24543, 1404, 'S/N 11993 (ID#Q-0166)', 'Testmark CM4000D Digital Compression Machine (E-4) (OOS)', 'Range: 4K to 400K', '2012-01-24', 24543, '1/24/2012', NULL), (24544, 1405, 'S/N 100611000936', 'TIF Mdl. 9010A Scale (ID #Q-1756) (E-898) OOS/Broken', 'Range: 1 lb to 110 lb', '2013-01-22', 24544, '1/22/2013', NULL), (24545, 1406, '', ' \"***Put ID #\'s on Run Sheets, Labels, & Certifications***', '', '0000-00-00', 24545, '', NULL), (24546, 1407, '', '', '', '0000-00-00', 24546, '', NULL), (24547, 1408, 'S/N 05054307/10', 'Eilon Engineering Ron 2501 S-50 Load Cell (ManSp & 0.1% FS)', 'Range: 5,000 Kg to 50,000 Kg ', '2007-05-30', 24547, '5/30/2007', NULL), (24548, 1409, '', '', '', '0000-00-00', 24548, '', NULL), (24549, 1410, '', '', '', '0000-00-00', 24549, '', NULL), (24550, 1411, '', '', '', '0000-00-00', 24550, '', NULL), (24551, 1412, '', '', '', '0000-00-00', 24551, '', NULL), (24552, 1413, '', '', '', '0000-00-00', 24552, '', NULL), (24553, 1414, '', '', '', '0000-00-00', 24553, '', NULL), (24554, 1415, '', '', '', '0000-00-00', 24554, '', NULL), (24555, 1416, '', '', '', '0000-00-00', 24555, '', NULL), (24556, 1417, '', '', '', '0000-00-00', 24556, '', NULL), (24557, 1418, '', '', '', '0000-00-00', 24557, '', NULL), (24558, 1419, '', '', '', '0000-00-00', 24558, '', NULL), (24559, 1420, '', '', '', '0000-00-00', 24559, '', NULL), (24560, 1421, '', '', '', '0000-00-00', 24560, '', NULL), (24561, 1422, '', '', '', '0000-00-00', 24561, '', NULL), (24562, 1423, '', '', '', '0000-00-00', 24562, '', NULL), (24563, 1424, '', '', '', '0000-00-00', 24563, '', NULL), (24564, 1425, '', '', '', '0000-00-00', 24564, '', NULL), (24565, 1426, '', '', '', '0000-00-00', 24565, '', NULL), (24566, 1427, '', '', '', '0000-00-00', 24566, '', NULL), (24567, 1428, '', '', '', '0000-00-00', 24567, '', NULL), (24568, 1429, '', '', '', '0000-00-00', 24568, '', NULL), (24569, 1430, '', '', '', '0000-00-00', 24569, '', NULL), (24570, 1431, '', '', '', '0000-00-00', 24570, '', NULL), (24571, 1432, '', '', '', '0000-00-00', 24571, '', NULL), (24572, 1433, 'S/N 44', 'Extra Gauge-Jack #2 (E-4 & PCI) (DAMAGED)', 'Range: 45K', '2006-02-01', 24572, '2/1/2006', NULL), (24573, 1434, 'S/N 79822', 'HCS Load Cell (E-4) OUT OF SERVICE ', 'Range: 50K ', '2005-06-04', 24573, '6/4/2005', NULL), (24574, 1435, '', '', '', '0000-00-00', 24574, '', NULL), (24575, 1436, '', '', '', '0000-00-00', 24575, '', NULL), (24576, 1437, '', '', '', '0000-00-00', 24576, '', NULL), (24577, 1438, '', '', '', '0000-00-00', 24577, '', NULL), (24578, 1439, '', '', '', '0000-00-00', 24578, '', NULL), (24579, 1440, '', '', '', '0000-00-00', 24579, '', NULL), (24580, 1441, '', '', '', '0000-00-00', 24580, '', NULL), (24581, 1442, 'S/N 90029', 'Forney FT-250F-01 Compression Machine (ASTM E4-02)', 'Range 250K (Sold was is Somerset)', '2004-01-20', 24581, '1/20/2004', NULL), (24582, 1443, '', '', '', '0000-00-00', 24582, '', NULL), (24583, 1444, '', '', '', '0000-00-00', 24583, '', NULL), (24584, 1445, '', '', '', '0000-00-00', 24584, '', NULL), (24585, 1446, '', '', '', '0000-00-00', 24585, '', NULL), (24586, 1447, '', ' ***ISO Requested***', '', '0000-00-00', 24586, '', NULL), (24587, 1448, '', '', '', '0000-00-00', 24587, '', NULL), (24588, 1449, '', '', '', '0000-00-00', 24588, '', NULL), (24589, 1450, '', '', '', '0000-00-00', 24589, '', NULL), (24590, 1451, '', '', '', '0000-00-00', 24590, '', NULL), (24591, 1452, '', '', '', '0000-00-00', 24591, '', NULL), (24592, 1453, '', '', '', '0000-00-00', 24592, '', NULL), (24593, 1454, '', '***ISO Requested***', '', '0000-00-00', 24593, '', NULL), (24594, 1455, 'S/N 8955', 'Dillon Dynamometer Model AP (OOS) (E-4)', 'Range: 10K', '2008-01-29', 24594, '1/29/2008', NULL), (24595, 1456, '', '', '', '0000-00-00', 24595, '', NULL), (24596, 1457, '', '', '', '0000-00-00', 24596, '', NULL), (24597, 1458, '', '', '', '0000-00-00', 24597, '', NULL), (24598, 1459, '', '', '', '0000-00-00', 24598, '', NULL), (24599, 1460, '', '', '', '0000-00-00', 24599, '', NULL), (24600, 1461, 'S/N K-54-43', ' with Forney Load Cell (E-4)', 'Range: 1.5K', '2005-02-21', 24600, '2/21/2005', NULL), (24601, 1462, '', '', '', '0000-00-00', 24601, '', NULL), (24602, 1463, '', '', '', '0000-00-00', 24602, '', NULL), (24603, 1464, '', '', '', '0000-00-00', 24603, '', NULL), (24604, 1465, '', 'MAKE SURE LABEL HAS A 5 YEAR CALIBRATION DATE', '', '0000-00-00', 24604, '', NULL), (24605, 1466, '', '***ISO Requested***', '', '0000-00-00', 24605, '', NULL), (24606, 1467, '', '', '', '0000-00-00', 24606, '', NULL), (24607, 1468, '', ' ***MUST use 10 Kip Cell from the 600 System***', '', '0000-00-00', 24607, '', NULL), (24608, 1469, '', '', '', '0000-00-00', 24608, '', NULL), (24609, 1470, '', '', '', '0000-00-00', 24609, '', NULL), (24610, 1471, '', '', '', '0000-00-00', 24610, '', NULL), (24611, 1472, '', '', '', '0000-00-00', 24611, '', NULL), (24612, 1473, '', '', '', '0000-00-00', 24612, '', NULL), (24613, 1474, '', '', '', '0000-00-00', 24613, '', NULL), (24614, 1475, '', '', '', '0000-00-00', 24614, '', NULL), (24615, 1476, '', '', '', '0000-00-00', 24615, '', NULL), (24616, 1477, '', '', '', '0000-00-00', 24616, '', NULL), (24617, 1478, '', '5/21/98 No solicit per Bill', '', '0000-00-00', 24617, '', NULL), (24618, 1479, '', '', '', '0000-00-00', 24618, '', NULL), (24619, 1480, '', '', '', '0000-00-00', 24619, '', NULL), (24620, 1481, '', '', '', '0000-00-00', 24620, '', NULL), (24621, 1482, '', '', '', '0000-00-00', 24621, '', NULL), (24622, 1483, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 24622, '', NULL), (24623, 1484, '', '', '', '0000-00-00', 24623, '', NULL), (24624, 1485, '', '', '', '0000-00-00', 24624, '', NULL), (24625, 1486, 'S/N 711129', ' with Omega Digital Readout DP 80 (E-4) (SOLD)', 'Range: 3 to 500K', '2005-07-12', 24625, '7/12/2005', NULL), (24626, 1487, '', '', '', '0000-00-00', 24626, '', NULL), (24627, 1488, '', '', '', '0000-00-00', 24627, '', NULL), (24628, 1489, '', '', '', '0000-00-00', 24628, '', NULL), (24629, 1490, '', '', '', '0000-00-00', 24629, '', NULL), (24630, 1491, '', '', '', '0000-00-00', 24630, '', NULL), (24631, 1492, '', '', '', '0000-00-00', 24631, '', NULL), (24632, 1493, '', '', '', '0000-00-00', 24632, '', NULL), (24633, 1494, '', '', '', '0000-00-00', 24633, '', NULL), (24634, 1495, '', '', '', '0000-00-00', 24634, '', NULL), (24635, 1496, '', '', '', '0000-00-00', 24635, '', NULL), (24636, 1497, '', '', '', '0000-00-00', 24636, '', NULL), (24637, 1498, '', '', '', '0000-00-00', 24637, '', NULL), (24638, 1499, '', '', '', '0000-00-00', 24638, '', NULL), (24639, 1500, '', '', '', '0000-00-00', 24639, '', NULL), (24640, 1501, '', '***Marked \"Zero\" lines on both Initial gauges & Dated -TPT***', '', '0000-00-00', 24640, '', NULL), (24641, 1502, '', 'Send Invoice to Michigan, Send Certifications to Carlisle', '', '0000-00-00', 24641, '', NULL), (24642, 1503, '', '', '', '0000-00-00', 24642, '', NULL), (24643, 1504, '', '', '', '0000-00-00', 24643, '', NULL), (24644, 1505, '', '', '', '0000-00-00', 24644, '', NULL), (24645, 1506, '', '**NO CHECK----NO LABEL**', '', '0000-00-00', 24645, '', NULL), (24646, 1507, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 24646, '', NULL), (24647, 1508, '', ' *** 2 Year Interval*** ', '', '0000-00-00', 24647, '', NULL), (24648, 1509, '', '', '', '0000-00-00', 24648, '', NULL), (24649, 1510, '', '', '', '0000-00-00', 24649, '', NULL), (24650, 1511, '', '', '', '0000-00-00', 24650, '', NULL), (24651, 1512, '', '***ISO Requested***', '', '0000-00-00', 24651, '', NULL), (24652, 1513, '', '', '', '0000-00-00', 24652, '', NULL), (24653, 1514, '', '', '', '0000-00-00', 24653, '', NULL), (24654, 1515, '', 'Mail Certs: PO Box 45 Kingshill, St. Croix, USVI 00851', '', '0000-00-00', 24654, '', NULL), (24655, 1516, '', 'Need Driver\'s License for Hovensa', '', '0000-00-00', 24655, '', NULL), (24656, 1517, '', '', '', '0000-00-00', 24656, '', NULL), (24657, 1518, '', '', '', '0000-00-00', 24657, '', NULL), (24658, 1519, '', '', '', '0000-00-00', 24658, '', NULL), (24659, 1520, '', '***ISO Requested***', '', '0000-00-00', 24659, '', NULL), (24660, 1521, '', '', '', '0000-00-00', 24660, '', NULL), (24661, 1522, '', ' ***Closed July 4***', '', '0000-00-00', 24661, '', NULL), (24662, 1523, '', '***ISO Requested***', '', '0000-00-00', 24662, '', NULL), (24663, 1524, '', '', '', '0000-00-00', 24663, '', NULL), (24664, 1525, '', '', '', '0000-00-00', 24664, '', NULL), (24665, 1526, '', '', '', '0000-00-00', 24665, '', NULL), (24666, 1527, '', '', '', '0000-00-00', 24666, '', NULL), (24667, 1528, '', '', '', '0000-00-00', 24667, '', NULL), (24668, 1529, '', '', '', '0000-00-00', 24668, '', NULL), (24669, 1530, '', '***ISO Requested***', '', '0000-00-00', 24669, '', NULL), (24670, 1531, '', '', '', '0000-00-00', 24670, '', NULL), (24671, 1532, '', '***ISO Requested***', '', '0000-00-00', 24671, '', NULL), (24672, 1533, '', '', '', '0000-00-00', 24672, '', NULL), (24673, 1534, 'S/N 110-T492', 'Brainard Killman Pressure Transducer w/E-124 Digital (D-5720)', 'Cap: 15 psi to 150 psi', '2013-06-04', 24673, '6/4/2013', NULL), (24674, 1535, 'S/N 001395758', 'Humboldt BG2110-0-16 Dial Indicator (D-6027)', 'Range: 1 inch ', '2010-06-08', 24674, '6/8/2010', NULL), (24675, 1536, 'S/N 050668323', 'Humboldt BG2110-0-16 Dial Indicator (D-6027)', 'Range: 1 inch ', '2009-06-10', 24675, '6/10/2009', NULL), (24676, 1537, '', '', '', '0000-00-00', 24676, '', NULL), (24677, 1538, '', '', '', '0000-00-00', 24677, '', NULL), (24678, 1539, '', ' w/Gauge #2 (E-4 & Man Specs) (moved)', 'Range: 9K (1,480 PSI)', '2012-06-07', 24678, '6/7/2012', NULL), (24679, 1540, '', '', '', '0000-00-00', 24679, '', NULL), (24680, 1541, 'S/N H3804784', 'AND FG 60K Scale (moved ) (E-898)', 'Range: 150 lbs', '2012-06-07', 24680, '6/7/2012', NULL), (24681, 1542, '', '30239.63 sq mm (46.87152 sq inches)', '', '0000-00-00', 24681, '', NULL), (24682, 1543, '', '', '', '0000-00-00', 24682, '', NULL), (24683, 1544, '', '', '', '0000-00-00', 24683, '', NULL), (24684, 1545, '', 'Send Certs to Job Site', '', '0000-00-00', 24684, '', NULL), (24685, 1546, '', '***ISO Requested***', '', '0000-00-00', 24685, '', NULL), (24686, 1547, 'S/N', 'AND EK-6100i Scale (E-898)', 'Range: 6,100 Grams ', NULL, 24686, 'New', NULL), (24687, 1548, '', '', '', '0000-00-00', 24687, '', NULL), (24688, 1549, '', '***Need to use small Diameter Load Cell***60 Kip on 700 System', '', '0000-00-00', 24688, '', NULL), (24689, 1550, '', '', '', '0000-00-00', 24689, '', NULL), (24690, 1551, '', '***ISO Requested***', '', '0000-00-00', 24690, '', NULL), (24691, 1552, '', '***ISO Requested***', '', '0000-00-00', 24691, '', NULL), (24692, 1553, '', '***ISO Requested***', '', '0000-00-00', 24692, '', NULL), (24693, 1554, '', '***ISO Requested***', '', '0000-00-00', 24693, '', NULL), (24694, 1555, '', '***ISO Requested***', '', '0000-00-00', 24694, '', NULL), (24695, 1556, '', '', '', '0000-00-00', 24695, '', NULL), (24696, 1557, '', '', '', '0000-00-00', 24696, '', NULL), (24697, 1558, '', '', '', '0000-00-00', 24697, '', NULL), (24698, 1559, '', '', '', '0000-00-00', 24698, '', NULL), (24699, 1560, '', '', '', '0000-00-00', 24699, '', NULL), (24700, 1561, 'S/N E83015', 'Epsilon Extensometer Mdl 3542-0800-005-ST (E-83)', 'Range: 0.4 Inch (GL 8\") (BROKE)', '2007-06-27', 24700, '6/27/2007', NULL), (24701, 1562, 'S/N 16098', 'Soiltest Single Proving Ring(OUT OF ORDER) (E-4 & Man Specs)', 'Cap: 10K ', '2002-06-10', 24701, '6/10/2002', NULL), (24702, 1563, '', ' ***ISO Requested***', '', '0000-00-00', 24702, '', NULL), (24703, 1564, '', '***ISO Requested***', '***continued***', '0000-00-00', 24703, '', NULL), (24704, 1565, '', 'Special Pricing as Per Bill for Training-1 Hour Training Required', '', '0000-00-00', 24704, '', NULL), (24705, 1566, '', '', '', '0000-00-00', 24705, '', NULL), (24706, 1567, '', '', '', '0000-00-00', 24706, '', NULL), (24707, 1568, '', '', '', '0000-00-00', 24707, '', NULL), (24708, 1569, '', '', '', '0000-00-00', 24708, '', NULL), (24709, 1570, '', '', '', '0000-00-00', 24709, '', NULL), (24710, 1571, '', '', '', '0000-00-00', 24710, '', NULL), (24711, 1572, '', '', '', '0000-00-00', 24711, '', NULL), (24712, 1573, '', '', '', '0000-00-00', 24712, '', NULL), (24713, 1574, '', '', '', '0000-00-00', 24713, '', NULL), (24714, 1575, '', '', '', '0000-00-00', 24714, '', NULL), (24715, 1576, '', '', '', '0000-00-00', 24715, '', NULL), (24716, 1577, '', '', '', '0000-00-00', 24716, '', NULL), (24717, 1578, '', '', '', '0000-00-00', 24717, '', NULL), (24718, 1579, '', '', '', '0000-00-00', 24718, '', NULL), (24719, 1580, '', '', '', '0000-00-00', 24719, '', NULL), (24720, 1581, '', '', '', '0000-00-00', 24720, '', NULL), (24721, 1582, '', '', '', '0000-00-00', 24721, '', NULL), (24722, 1583, '', '', '', '0000-00-00', 24722, '', NULL), (24723, 1584, '', '', '', '0000-00-00', 24723, '', NULL), (24724, 1585, '', '', '', '0000-00-00', 24724, '', NULL), (24725, 1586, '', '', '', '0000-00-00', 24725, '', NULL), (24726, 1587, '', '', '', '0000-00-00', 24726, '', NULL), (24727, 1588, '', '', '', '0000-00-00', 24727, '', NULL), (24728, 1589, '', '', '', '0000-00-00', 24728, '', NULL), (24729, 1590, '', '', '', '0000-00-00', 24729, '', NULL), (24730, 1591, '', '', '', '0000-00-00', 24730, '', NULL), (24731, 1592, '', '', '', '0000-00-00', 24731, '', NULL), (24732, 1593, '', '', '', '0000-00-00', 24732, '', NULL), (24733, 1594, '', '', '', '0000-00-00', 24733, '', NULL), (24734, 1595, '', '', '', '0000-00-00', 24734, '', NULL), (24735, 1596, '', '', '', '0000-00-00', 24735, '', NULL), (24736, 1597, '', '', '', '0000-00-00', 24736, '', NULL), (24737, 1598, '', '', '', '0000-00-00', 24737, '', NULL), (24738, 1599, '', '', '', '0000-00-00', 24738, '', NULL), (24739, 1600, '', '', '', '0000-00-00', 24739, '', NULL), (24740, 1601, '', '', '', '0000-00-00', 24740, '', NULL), (24741, 1602, '', '', '', '0000-00-00', 24741, '', NULL), (24742, 1603, '', '', '', '0000-00-00', 24742, '', NULL), (24743, 1604, '', '', '', '0000-00-00', 24743, '', NULL), (24744, 1605, '', '', '', '0000-00-00', 24744, '', NULL), (24745, 1606, '', '', '', '0000-00-00', 24745, '', NULL), (24746, 1607, '', '', '', '0000-00-00', 24746, '', NULL), (24747, 1608, '', '', '', '0000-00-00', 24747, '', NULL), (24748, 1609, '', '', '** See Billing Address **', '0000-00-00', 24748, '', NULL), (24749, 1610, '', '', '', '0000-00-00', 24749, '', NULL), (24750, 1611, '', '', '', '0000-00-00', 24750, '', NULL), (24751, 1612, '', '', '', '0000-00-00', 24751, '', NULL), (24752, 1613, '', '', '', '0000-00-00', 24752, '', NULL), (24753, 1614, '', '', '', '0000-00-00', 24753, '', NULL), (24754, 1615, '', '', '', '0000-00-00', 24754, '', NULL), (24755, 1616, '', '', '', '0000-00-00', 24755, '', NULL), (24756, 1617, '', '', '', '0000-00-00', 24756, '', NULL), (24757, 1618, '', ' ***continued***', '', '0000-00-00', 24757, '', NULL), (24758, 1619, '', '', '', '0000-00-00', 24758, '', NULL), (24759, 1620, '', '', '', '0000-00-00', 24759, '', NULL), (24760, 1621, '', '', '', '0000-00-00', 24760, '', NULL), (24761, 1622, '', '', '', '0000-00-00', 24761, '', NULL), (24762, 1623, '', '', '', '0000-00-00', 24762, '', NULL), (24763, 1624, '', '', '', '0000-00-00', 24763, '', NULL), (24764, 1625, '', '', '', '0000-00-00', 24764, '', NULL), (24765, 1626, '', '', '', '0000-00-00', 24765, '', NULL), (24766, 1627, '', '***ISO Requested***', '', '0000-00-00', 24766, '', NULL), (24767, 1628, '', '', '', '0000-00-00', 24767, '', NULL), (24768, 1629, '', '', '', '0000-00-00', 24768, '', NULL), (24769, 1630, '', ' \"***ISO Requested***', '', '0000-00-00', 24769, '', NULL), (24770, 1631, '', '***ISO Requested***', '', '0000-00-00', 24770, '', NULL), (24771, 1632, '', '', '', '0000-00-00', 24771, '', NULL), (24772, 1633, '', '', '', '0000-00-00', 24772, '', NULL), (24773, 1634, '', '***ISO Requested***', '', '0000-00-00', 24773, '', NULL), (24774, 1635, '', '', '', '0000-00-00', 24774, '', NULL), (24775, 1636, '', ' ***DO NOT USE 300 SYSTEM!!***', '', '0000-00-00', 24775, '', NULL), (24776, 1637, '', '', '', '0000-00-00', 24776, '', NULL), (24777, 1638, '', '', '', '0000-00-00', 24777, '', NULL), (24778, 1639, '', '', '', '0000-00-00', 24778, '', NULL), (24779, 1640, '', 'Must be a Check Drawn on a US Bank in US Dollars', '', '0000-00-00', 24779, '', NULL), (24780, 1641, '', '', '', '0000-00-00', 24780, '', NULL), (24781, 1642, 'S/N 300DX ', 'Inston Satec 300 DX Universal Machine (E-4)', 'Range: 90K (300 Kn)', NULL, 24781, 'New', NULL), (24782, 1643, '', '***ISO Requested***', '', '0000-00-00', 24782, '', NULL), (24783, 1644, '', '', '', '0000-00-00', 24783, '', NULL), (24784, 1645, '', '', '', '0000-00-00', 24784, '', NULL), (24785, 1646, '', '***ISO Requested***', '', '0000-00-00', 24785, '', NULL), (24786, 1647, '', '', '', '0000-00-00', 24786, '', NULL), (24787, 1648, '', ' ***ISO Requested***', '', '0000-00-00', 24787, '', NULL), (24788, 1649, '', '', '', '0000-00-00', 24788, '', NULL), (24789, 1650, 'S/N 73173', 'Forney LT-1000-2 Universal Testing Machine (GONE) (ID#19957) ', 'Range: 75K / 600K (E-4)', '2007-12-03', 24789, '12/3/2007', NULL), (24790, 1651, 'S/N 01202000', 'Geotest Single Proving Ring - Model B711 (OOS)', 'Capacity: 10K (E-4 & Man Specs)', '2004-12-15', 24790, '12/15/2004', NULL), (24791, 1652, 'S/N 125', 'Brainard Kilman Marshall Single Proving Ring (E-4 & Man Specs)', 'Cap: 10K Plant #3 (OOS)', '2009-12-12', 24791, '12/12/2009', NULL), (24792, 1653, 'S/N 134', 'Karol Warner Marshall Single Proving Ring (OOS)', 'Cap: 10K Plant#2 (E-4 & Man Specs)', '2009-12-12', 24792, '12/12/2009', NULL), (24793, 1654, '', '***ISO Requested***', '', '0000-00-00', 24793, '', NULL), (24794, 1655, '', 'Need to Calibrate Direct Shear & Proving Ring together ', '', '0000-00-00', 24794, '', NULL), (24795, 1656, '', '***ISO Requested***', '', '0000-00-00', 24795, '', NULL), (24796, 1657, '', ' ***ISO Requested***', '', '0000-00-00', 24796, '', NULL), (24797, 1658, '', '', '', '0000-00-00', 24797, '', NULL), (24798, 1659, 'S/N 01192000', 'Geotest Single Proving Ring - Model B711 (MOVED)', 'Capacity: 10K (E-4 & Man Specs)', '2004-01-08', 24798, '1/8/2004', NULL), (24799, 1660, '', '***ISO REQUESTED***', '', '0000-00-00', 24799, '', NULL), (24800, 1661, 'S/N 20901', 'Soiltest AP-170-A Marshall Single Proving Ring (OOS)', 'Cap: 10K Plant #9 (E-4 & Man Specs)', '2009-12-12', 24800, '12/12/2009', NULL), (24801, 1662, '', ' ***In December 2011 need Quote for Digital for S/N 83091129***', 'Send to: lcorrea@gmail.com', '0000-00-00', 24801, '', NULL), (24802, 1663, '', '', '', '0000-00-00', 24802, '', NULL), (24803, 1664, '', '', '', '0000-00-00', 24803, '', NULL), (24804, 1665, '', '', '', '0000-00-00', 24804, '', NULL), (24805, 1666, 'S/N E81187', 'Epsilon Extensometer-Model 3542-0200-050-ST(Out of Service)(E-83)', 'Range: 0.5\" / 0.25\" strain (GL 2\")', '2005-05-12', 24805, '5/12/2005', NULL), (24806, 1667, 'S/N 12582', 'Soiltest PR-10 Single Proving Ring (OOS) (E-4 & Man Specs) ', 'Cap: 500 lb ', '2009-05-19', 24806, '5/19/2009', NULL), (24807, 1668, 'S/N PT-0804294-10M', 'Admet Pressure Transducer w/ Dig. Read Out S/N GBP-0701081', 'Range: 330K (OOS) (D-5720)', NULL, 24807, 'New', NULL), (24808, 1669, '', '', '', '0000-00-00', 24808, '', NULL), (24809, 1670, 'S/N 9408', 'ELE Soiltest AP 1050 Versa Tester with digital (OOS) (E-4)', 'Range 1K to 60K ', '2002-01-11', 24809, '1/11/2002', NULL), (24810, 1671, '', '', '', '0000-00-00', 24810, '', NULL), (24811, 1672, '', '', '', '0000-00-00', 24811, '', NULL), (24812, 1673, '', 'Look for incoming e-mail for paymant will received from', 'CardPayable@53.com', '0000-00-00', 24812, '', NULL), (24813, 1674, '', '', '', '0000-00-00', 24813, '', NULL), (24814, 1675, 'S/N 95', 'Spare 2% Gauge w/ELE S/N 0204 (OUT OF SERVICE)', '', '0000-00-00', 24814, '', NULL), (24815, 1676, '', '', '', '0000-00-00', 24815, '', NULL), (24816, 1677, '', '', '', '0000-00-00', 24816, '', NULL), (24817, 1678, '', '***ISO Requested***', '', '0000-00-00', 24817, '', NULL), (24818, 1679, '', '', '', '0000-00-00', 24818, '', NULL), (24819, 1680, '', '', '', '0000-00-00', 24819, '', NULL), (24820, 1681, '', '', '', '0000-00-00', 24820, '', NULL), (24821, 1682, '', '', '', '0000-00-00', 24821, '', NULL), (24822, 1683, '', '', '', '0000-00-00', 24822, '', NULL), (24823, 1684, '', '', '', '0000-00-00', 24823, '', NULL), (24824, 1685, '', '', '', '0000-00-00', 24824, '', NULL), (24825, 1686, '', '', '', '0000-00-00', 24825, '', NULL), (24826, 1687, '', '', '', '0000-00-00', 24826, '', NULL), (24827, 1688, '', '', '', '0000-00-00', 24827, '', NULL), (24828, 1689, '', '', '', '0000-00-00', 24828, '', NULL), (24829, 1690, '', '', '', '0000-00-00', 24829, '', NULL), (24830, 1691, '', '', '', '0000-00-00', 24830, '', NULL), (24831, 1692, '', '', '', '0000-00-00', 24831, '', NULL), (24832, 1693, '', '', '', '0000-00-00', 24832, '', NULL), (24833, 1694, '', '', '', '0000-00-00', 24833, '', NULL), (24834, 1695, '', '', '', '0000-00-00', 24834, '', NULL), (24835, 1696, '', '', '', '0000-00-00', 24835, '', NULL), (24836, 1697, '', '', '', '0000-00-00', 24836, '', NULL), (24837, 1698, '', '', '', '0000-00-00', 24837, '', NULL), (24838, 1699, '', '', '', '0000-00-00', 24838, '', NULL), (24839, 1700, '', '***ISO Requested***', '', '0000-00-00', 24839, '', NULL), (24840, 1701, '', '***ISO Requested***', '', '0000-00-00', 24840, '', NULL), (24841, 1702, 'S/N 1033', 'Humboldt H-4454A Single Proving Ring (E-4 & Man Specs)', 'Range: 10K (Out of Service)', '2008-03-18', 24841, '3/18/2008', NULL), (24842, 1703, 'S/N Unknown', 'Ohaus Heavy Duty Solution Balance Scale (moved) (E-898)', 'Range: 20Kg', '2008-03-17', 24842, '3/17/2008', NULL), (24843, 1704, 'S/N 8614', 'Soiltest Speed Control G-900 (NOT IN USE)', 'Range: .05 inches / min.', '2001-03-19', 24843, '3/19/2001', NULL), (24844, 1705, 'S/N 2002AS,BL', 'Karol Warner HS10/6198 Pressure Transducer (D-5720)', 'Range: 60 psi', '2012-03-06', 24844, '3/6/2012', NULL), (24845, 1706, '', '', '', '0000-00-00', 24845, '', NULL), (24846, 1707, '', '', '', '0000-00-00', 24846, '', NULL), (24847, 1708, '', '**Send Certs to job site**', '***ISO Requested***', '0000-00-00', 24847, '', NULL), (24848, 1709, '', '', '', '0000-00-00', 24848, '', NULL), (24849, 1710, '', '***ISO Requested***', '', '0000-00-00', 24849, '', NULL), (24850, 1711, '', ' ***Send Certifications to Bill toOffice ***', '', '0000-00-00', 24850, '', NULL), (24851, 1712, '', '', '', '0000-00-00', 24851, '', NULL), (24852, 1713, '', ' with Block Platen', '', '0000-00-00', 24852, '', NULL), (24853, 1714, '', '***ISO Requested***', '', '0000-00-00', 24853, '', NULL), (24854, 1715, '', '', '', '0000-00-00', 24854, '', NULL), (24855, 1716, '', '', '', '0000-00-00', 24855, '', NULL), (24856, 1717, 'S/N Unknown', 'Controls Type N Hammer (No longer Have) (C-805)', 'Range: 78 to 82', '2009-01-27', 24856, '1/27/2009', NULL), (24857, 1718, 'S/N 9002', 'Soiltest CT-761B Compression Machine (SOLD) (E-4)', 'Range: 250K', '2006-04-18', 24857, '4/18/2006', NULL), (24858, 1719, 'S/N 336', 'Pine Instrument AP-850 Asphalt Press w/ Test Spring 319 (OOS) ', 'Range: 2.5K / 5K / 10K (E-4)', '2009-04-01', 24858, '4/1/2009', NULL), (24859, 1720, '', '***ISO Requested***', '', '0000-00-00', 24859, '', NULL), (24860, 1721, '', 'SEND CERTS & INVOICE TO JOB SITE ADDRESS, ATTN: JOHN', 'BARBATI', '0000-00-00', 24860, '', NULL), (24861, 1722, '', '', '', '0000-00-00', 24861, '', NULL), (24862, 1723, '', '', '', '0000-00-00', 24862, '', NULL), (24863, 1724, '', '', '', '0000-00-00', 24863, '', NULL), (24864, 1725, 'S/N', 'Humboldt Penetrometer (E-4)', 'Range: 200 lbs ', NULL, 24864, 'New', NULL), (24865, 1726, '', '', '', '0000-00-00', 24865, '', NULL), (24866, 1727, '', '', '***continued***', '0000-00-00', 24866, '', NULL), (24867, 1728, '', '', '', '0000-00-00', 24867, '', NULL), (24868, 1729, '', '', '', '0000-00-00', 24868, '', NULL), (24869, 1730, '', '', '', '0000-00-00', 24869, '', NULL), (24870, 1731, '', '', '', '0000-00-00', 24870, '', NULL), (24871, 1732, '', '***ISO Requested***', '', '0000-00-00', 24871, '', NULL), (24872, 1733, '', '', '', '0000-00-00', 24872, '', NULL), (24873, 1734, '', '', '', '0000-00-00', 24873, '', NULL), (24874, 1735, '', '', '', '0000-00-00', 24874, '', NULL), (24875, 1736, '', '', '', '0000-00-00', 24875, '', NULL), (24876, 1737, '', '', '', '0000-00-00', 24876, '', NULL), (24877, 1738, '', '', '', '0000-00-00', 24877, '', NULL), (24878, 1739, '', '', '', '0000-00-00', 24878, '', NULL), (24879, 1740, '', '', '', '0000-00-00', 24879, '', NULL), (24880, 1741, '', '', '', '0000-00-00', 24880, '', NULL), (24881, 1742, '', '', '', '0000-00-00', 24881, '', NULL), (24882, 1743, '', '', '', '0000-00-00', 24882, '', NULL), (24883, 1744, '', 'cont\'d on next page........', '', '0000-00-00', 24883, '', NULL), (24884, 1745, '', '', '', '0000-00-00', 24884, '', NULL), (24885, 1746, '', '', '', '0000-00-00', 24885, '', NULL), (24886, 1747, '', '', '', '0000-00-00', 24886, '', NULL), (24887, 1748, '', '', '', '0000-00-00', 24887, '', NULL), (24888, 1749, '', '', '', '0000-00-00', 24888, '', NULL), (24889, 1750, '', '', '', '0000-00-00', 24889, '', NULL), (24890, 1751, '', '', '', '0000-00-00', 24890, '', NULL), (24891, 1752, '', '', '', '0000-00-00', 24891, '', NULL), (24892, 1753, 'S/N 11153', 'Wykeham Farrance Single Proving Ring (E-4)', 'Cap: 2250#', '2002-04-17', 24892, '4/17/2002', NULL), (24893, 1754, '', '', '', '0000-00-00', 24893, '', NULL), (24894, 1755, '', '', '', '0000-00-00', 24894, '', NULL), (24895, 1756, '', '', '', '0000-00-00', 24895, '', NULL), (24896, 1757, '', '', '', '0000-00-00', 24896, '', NULL), (24897, 1758, '', '', '', '0000-00-00', 24897, '', NULL), (24898, 1759, '', '', '', '0000-00-00', 24898, '', NULL), (24899, 1760, '', '', '', '0000-00-00', 24899, '', NULL), (24900, 1761, '', '', '', '0000-00-00', 24900, '', NULL), (24901, 1762, '', '', '', '0000-00-00', 24901, '', NULL), (24902, 1763, '', '', '', '0000-00-00', 24902, '', NULL), (24903, 1764, '', '', '', '0000-00-00', 24903, '', NULL), (24904, 1765, '', '', '', '0000-00-00', 24904, '', NULL), (24905, 1766, '', '', '', '0000-00-00', 24905, '', NULL), (24906, 1767, '', '', '', '0000-00-00', 24906, '', NULL), (24907, 1768, '', '', '', '0000-00-00', 24907, '', NULL), (24908, 1769, '', '', '', '0000-00-00', 24908, '', NULL), (24909, 1770, '', '', '', '0000-00-00', 24909, '', NULL), (24910, 1771, '', '', '', '0000-00-00', 24910, '', NULL), (24911, 1772, '', '', '', '0000-00-00', 24911, '', NULL), (24912, 1773, '', '', '', '0000-00-00', 24912, '', NULL), (24913, 1774, '', '', '', '0000-00-00', 24913, '', NULL), (24914, 1775, '', '', '', '0000-00-00', 24914, '', NULL), (24915, 1776, '', '', '', '0000-00-00', 24915, '', NULL), (24916, 1777, '', '', '', '0000-00-00', 24916, '', NULL), (24917, 1778, '', '', '', '0000-00-00', 24917, '', NULL), (24918, 1779, '', '', '', '0000-00-00', 24918, '', NULL), (24919, 1780, '', '', '', '0000-00-00', 24919, '', NULL), (24920, 1781, '', '', '', '0000-00-00', 24920, '', NULL), (24921, 1782, '', '', '', '0000-00-00', 24921, '', NULL), (24922, 1783, '', '', '', '0000-00-00', 24922, '', NULL), (24923, 1784, '', '', '', '0000-00-00', 24923, '', NULL), (24924, 1785, '', '', '', '0000-00-00', 24924, '', NULL), (24925, 1786, '', '', '', '0000-00-00', 24925, '', NULL), (24926, 1787, '', '', '', '0000-00-00', 24926, '', NULL), (24927, 1788, '', '', '', '0000-00-00', 24927, '', NULL), (24928, 1789, '', '', '', '0000-00-00', 24928, '', NULL), (24929, 1790, '', '', '', '0000-00-00', 24929, '', NULL), (24930, 1791, '', '', '', '0000-00-00', 24930, '', NULL), (24931, 1792, '', ' e-mail copy of invoice to jstemple@triadeng.com', '', '0000-00-00', 24931, '', NULL), (24932, 1793, '', '', '', '0000-00-00', 24932, '', NULL), (24933, 1794, '', '', '', '0000-00-00', 24933, '', NULL), (24934, 1795, '', '', '', '0000-00-00', 24934, '', NULL), (24935, 1796, '', '', '', '0000-00-00', 24935, '', NULL), (24936, 1797, '', '', '', '0000-00-00', 24936, '', NULL), (24937, 1798, '', '', '', '0000-00-00', 24937, '', NULL), (24938, 1799, '', '', '', '0000-00-00', 24938, '', NULL), (24939, 1800, '', '', '', '0000-00-00', 24939, '', NULL), (24940, 1801, '', '***Send Certs to Bill To Address***', '', '0000-00-00', 24940, '', NULL), (24941, 1802, '', '', '', '0000-00-00', 24941, '', NULL), (24942, 1803, '', '', '', '0000-00-00', 24942, '', NULL), (24943, 1804, '', '', '', '0000-00-00', 24943, '', NULL), (24944, 1805, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 24944, '', NULL), (24945, 1806, '', '***ISO Requested***', '', '0000-00-00', 24945, '', NULL), (24946, 1807, '', '***ISO Requested***', '', '0000-00-00', 24946, '', NULL), (24947, 1808, '', '***ISO Requested***', '', '0000-00-00', 24947, '', NULL), (24948, 1809, '', '', '', '0000-00-00', 24948, '', NULL), (24949, 1810, '', '***continued***', '', '0000-00-00', 24949, '', NULL), (24950, 1811, '', '', '', '0000-00-00', 24950, '', NULL), (24951, 1812, '', '', '', '0000-00-00', 24951, '', NULL), (24952, 1813, '', '', '', '0000-00-00', 24952, '', NULL), (24953, 1814, '', '**MAIL INVOICES & CERTS TO DAVID GUFFEY AT ', 'RICHMOND OFFICE**', '0000-00-00', 24953, '', NULL), (24954, 1815, '', '', '', '0000-00-00', 24954, '', NULL), (24955, 1816, 'S/N 416', ' w/Test Spring', ' (SOL', '2008-03-11', 24955, '3/11/2008', NULL), (24956, 1817, '', '', '', '0000-00-00', 24956, '', NULL), (24957, 1818, '', '', '', '0000-00-00', 24957, '', NULL), (24958, 1819, '', '', '', '0000-00-00', 24958, '', NULL), (24959, 1820, 'S/N 39', 'Karol Warner Single Proving Ring (E-4 & Man Specs)', 'Cap: 2.5K (Out of Service)', '2008-05-15', 24959, '5/15/2008', NULL), (24960, 1821, '', '', '', '0000-00-00', 24960, '', NULL), (24961, 1822, '', '', '', '0000-00-00', 24961, '', NULL), (24962, 1823, 'S/N 03031994', 'Briefcase BCS-80 Scale (ID #9) (E-898)', 'Range: 176 lbs ', '2013-05-08', 24962, '5/8/2013', NULL), (24963, 1824, '', ' \"***ISO Requested***', '', '0000-00-00', 24963, '', NULL), (24964, 1825, '', '***ISO Requested***', '', '0000-00-00', 24964, '', NULL), (24965, 1826, '', '', '***continued***', '0000-00-00', 24965, '', NULL), (24966, 1827, 'S/N ID #13', 'Briefcase BCS-80 Scale (E-898) OOS', 'Range: 176 lbs ', NULL, 24966, 'New', NULL), (24967, 1828, '', ' ***ISO Requested***', '', '0000-00-00', 24967, '', NULL), (24968, 1829, '', '', '', '0000-00-00', 24968, '', NULL), (24969, 1830, '', '', '', '0000-00-00', 24969, '', NULL), (24970, 1831, '', ' e-mail copy of invoice to jstemple@triadeng.com', ' **They have a Loaner Pump**', '0000-00-00', 24970, '', NULL), (24971, 1832, 'S/N 4697', 'Skidmore Wilhelm Model M Bolt Tester (E-4 & 2%)', 'Range: 110K (ID# 011290)(BROKE)', '2009-05-20', 24971, '5/20/2009', NULL), (24972, 1833, '', '', '', '0000-00-00', 24972, '', NULL), (24973, 1834, '', '', '', '0000-00-00', 24973, '', NULL), (24974, 1835, '', 'PO Box 1228, District 7, Materials Lab, Weston, WV 26452 ', '', '0000-00-00', 24974, '', NULL), (24975, 1836, '', '', '', '0000-00-00', 24975, '', NULL), (24976, 1837, '', '', '', '0000-00-00', 24976, '', NULL), (24977, 1838, '', '', '', '0000-00-00', 24977, '', NULL), (24978, 1839, 'S/N VT1083-36063', 'Soiltest AP-1000-CS-100-1S Versa Tester OOS (E-4)', 'Range: 1K to 60K', '2011-05-25', 24978, '5/25/2011', NULL), (24979, 1840, '', ' ***continued***', '', '0000-00-00', 24979, '', NULL), (24980, 1841, '', '', ' ***continued****', '0000-00-00', 24980, '', NULL), (24981, 1842, '', '**All machines need our big & small service labels**', '***continued***', '0000-00-00', 24981, '', NULL), (24982, 1843, '', '', '', '0000-00-00', 24982, '', NULL), (24983, 1844, '', '**All machines need big & small service labels**', '***continued***', '0000-00-00', 24983, '', NULL), (24984, 1845, '', '**All machines need our big & small service labels**', '***continued***', '0000-00-00', 24984, '', NULL), (24985, 1846, '', '', '', '0000-00-00', 24985, '', NULL), (24986, 1847, '', 'ext. cords. Order 2 dual reading gauge faces (new style Heise 12\")', 'PT-250 Pipe Tester - No cables, need lift truck.', '0000-00-00', 24986, '', NULL), (24987, 1848, '', '', '', '0000-00-00', 24987, '', NULL), (24988, 1849, '', ' ***ISO Requested***', '', '0000-00-00', 24988, '', NULL), (24989, 1850, '', '', '', '0000-00-00', 24989, '', NULL), (24990, 1851, '', '', '', '0000-00-00', 24990, '', NULL), (24991, 1852, '', '', '', '0000-00-00', 24991, '', NULL), (24992, 1853, '', '', '', '0000-00-00', 24992, '', NULL), (24993, 1854, '', '', '', '0000-00-00', 24993, '', NULL), (24994, 1855, '', '', '', '0000-00-00', 24994, '', NULL), (24995, 1856, '', '', '', '0000-00-00', 24995, '', NULL), (24996, 1857, '', '', '', '0000-00-00', 24996, '', NULL), (24997, 1858, '', '', '', '0000-00-00', 24997, '', NULL), (24998, 1859, '', '', '', '0000-00-00', 24998, '', NULL), (24999, 1860, '', '', '', '0000-00-00', 24999, '', NULL), (25000, 1861, '', '', '', '0000-00-00', 25000, '', NULL), (25001, 1862, '', '', '', '0000-00-00', 25001, '', NULL), (25002, 1863, '', '', '', '0000-00-00', 25002, '', NULL), (25003, 1864, '', '', '', '0000-00-00', 25003, '', NULL), (25004, 1865, '', '', '', '0000-00-00', 25004, '', NULL), (25005, 1866, '', '', '', '0000-00-00', 25005, '', NULL), (25006, 1867, '', '', '', '0000-00-00', 25006, '', NULL), (25007, 1868, '', '', '', '0000-00-00', 25007, '', NULL), (25008, 1869, '', '', '', '0000-00-00', 25008, '', NULL), (25009, 1870, '', '', '', '0000-00-00', 25009, '', NULL), (25010, 1871, '', '', '', '0000-00-00', 25010, '', NULL), (25011, 1872, '', '', '', '0000-00-00', 25011, '', NULL), (25012, 1873, '', '', '', '0000-00-00', 25012, '', NULL), (25013, 1874, '', '', '', '0000-00-00', 25013, '', NULL), (25014, 1875, '', '', '', '0000-00-00', 25014, '', NULL), (25015, 1876, '', '', '', '0000-00-00', 25015, '', NULL), (25016, 1877, '', '', '', '0000-00-00', 25016, '', NULL), (25017, 1878, '', '', '', '0000-00-00', 25017, '', NULL), (25018, 1879, '', '', '', '0000-00-00', 25018, '', NULL), (25019, 1880, '', '', '', '0000-00-00', 25019, '', NULL), (25020, 1881, '', '', '', '0000-00-00', 25020, '', NULL), (25021, 1882, '', '', '', '0000-00-00', 25021, '', NULL), (25022, 1883, '', '', '', '0000-00-00', 25022, '', NULL), (25023, 1884, '', '', '', '0000-00-00', 25023, '', NULL), (25024, 1885, '', '', '', '0000-00-00', 25024, '', NULL), (25025, 1886, '', '', '', '0000-00-00', 25025, '', NULL), (25026, 1887, '', '', '', '0000-00-00', 25026, '', NULL), (25027, 1888, '', '', '', '0000-00-00', 25027, '', NULL), (25028, 1889, '', '', '', '0000-00-00', 25028, '', NULL), (25029, 1890, '', '', '', '0000-00-00', 25029, '', NULL), (25030, 1891, '', '', '', '0000-00-00', 25030, '', NULL), (25031, 1892, '', '', '', '0000-00-00', 25031, '', NULL), (25032, 1893, '', '', '', '0000-00-00', 25032, '', NULL), (25033, 1894, '', '', '', '0000-00-00', 25033, '', NULL), (25034, 1895, '', '', '', '0000-00-00', 25034, '', NULL), (25035, 1896, '', '', '', '0000-00-00', 25035, '', NULL), (25036, 1897, '', '', '', '0000-00-00', 25036, '', NULL), (25037, 1898, '', '', '', '0000-00-00', 25037, '', NULL), (25038, 1899, '', '', '', '0000-00-00', 25038, '', NULL), (25039, 1900, '', '', '', '0000-00-00', 25039, '', NULL), (25040, 1901, '', '', '', '0000-00-00', 25040, '', NULL), (25041, 1902, '', '', '', '0000-00-00', 25041, '', NULL), (25042, 1903, '', '***Mobile Machine***', '', '0000-00-00', 25042, '', NULL), (25043, 1904, '', '', '', '0000-00-00', 25043, '', NULL), (25044, 1905, '', '**All machines need our big & small service labels**', '', '0000-00-00', 25044, '', NULL), (25045, 1906, '', '', '', '0000-00-00', 25045, '', NULL), (25046, 1907, '', '', '', '0000-00-00', 25046, '', NULL), (25047, 1908, '', '', '', '0000-00-00', 25047, '', NULL), (25048, 1909, '', '', '', '0000-00-00', 25048, '', NULL), (25049, 1910, '', '', '', '0000-00-00', 25049, '', NULL), (25050, 1911, '', ' ***ISO Requested***', '', '0000-00-00', 25050, '', NULL), (25051, 1912, '', '', '', '0000-00-00', 25051, '', NULL), (25052, 1913, '', '', '', '0000-00-00', 25052, '', NULL), (25053, 1914, '', '', '', '0000-00-00', 25053, '', NULL), (25054, 1915, '', '', '', '0000-00-00', 25054, '', NULL), (25055, 1916, '', '**All machines need big & small service labels**', '', '0000-00-00', 25055, '', NULL), (25056, 1917, '', '', '', '0000-00-00', 25056, '', NULL), (25057, 1918, '', '', '', '0000-00-00', 25057, '', NULL), (25058, 1919, '', ' e-mail copy of invoice to jstemple@triadeng.com', '', '0000-00-00', 25058, '', NULL), (25059, 1920, '', '', '', '0000-00-00', 25059, '', NULL), (25060, 1921, '', '', '', '0000-00-00', 25060, '', NULL), (25061, 1922, '', '', '', '0000-00-00', 25061, '', NULL), (25062, 1923, '', '', '', '0000-00-00', 25062, '', NULL), (25063, 1924, 'S/N ', 'Hogentogler Double Proving Ring (Out Of Service)(E-4 & Man Specs)', 'Cap: 500 lbs', NULL, 25063, 'New', NULL), (25064, 1925, 'S/N 711129', ' w/Omega Digital Readout DP80 (OOS) (E-4)', 'Range: 3K to 500K', '2005-07-12', 25064, '7/12/2005', NULL), (25065, 1926, '', '', '', '0000-00-00', 25065, '', NULL), (25066, 1927, '', '', '', '0000-00-00', 25066, '', NULL), (25067, 1928, '', '', '', '0000-00-00', 25067, '', NULL), (25068, 1929, '', '', '', '0000-00-00', 25068, '', NULL), (25069, 1930, '', '', '', '0000-00-00', 25069, '', NULL), (25070, 1931, '', '', '', '0000-00-00', 25070, '', NULL), (25071, 1932, '', '***ISO Requested***', '', '0000-00-00', 25071, '', NULL), (25072, 1933, '', '', '', '0000-00-00', 25072, '', NULL), (25073, 1934, '', '', '', '0000-00-00', 25073, '', NULL), (25074, 1935, '', '', '', '0000-00-00', 25074, '', NULL), (25075, 1936, '', '***ISO REQUESTED***', '', '0000-00-00', 25075, '', NULL), (25076, 1937, '', '', '', '0000-00-00', 25076, '', NULL), (25077, 1938, '', '', '', '0000-00-00', 25077, '', NULL), (25078, 1939, '', '', '', '0000-00-00', 25078, '', NULL), (25079, 1940, '', '', '', '0000-00-00', 25079, '', NULL), (25080, 1941, '', '', '', '0000-00-00', 25080, '', NULL), (25081, 1942, '', '', '', '0000-00-00', 25081, '', NULL), (25082, 1943, '', '', '', '0000-00-00', 25082, '', NULL), (25083, 1944, '', '', '', '0000-00-00', 25083, '', NULL), (25084, 1945, '', '', '', '0000-00-00', 25084, '', NULL), (25085, 1946, '', '', '', '0000-00-00', 25085, '', NULL), (25086, 1947, '', '', '', '0000-00-00', 25086, '', NULL), (25087, 1948, '', '', '', '0000-00-00', 25087, '', NULL), (25088, 1949, '', '**On Point Loader, Zero screws are located on the back of gauges**', '', '0000-00-00', 25088, '', NULL), (25089, 1950, '', '', '', '0000-00-00', 25089, '', NULL), (25090, 1951, '', '', '', '0000-00-00', 25090, '', NULL), (25091, 1952, '', '', '', '0000-00-00', 25091, '', NULL), (25092, 1953, '', '', '', '0000-00-00', 25092, '', NULL), (25093, 1954, '', '', '', '0000-00-00', 25093, '', NULL), (25094, 1955, '', '', '', '0000-00-00', 25094, '', NULL), (25095, 1956, '', '', '', '0000-00-00', 25095, '', NULL), (25096, 1957, '', '', '', '0000-00-00', 25096, '', NULL), (25097, 1958, '', 'cont on next page.....................', '', '0000-00-00', 25097, '', NULL), (25098, 1959, '', '', '', '0000-00-00', 25098, '', NULL), (25099, 1960, '', '', '', '0000-00-00', 25099, '', NULL), (25100, 1961, '', '', '', '0000-00-00', 25100, '', NULL), (25101, 1962, '', '', '', '0000-00-00', 25101, '', NULL), (25102, 1963, '', '', '', '0000-00-00', 25102, '', NULL), (25103, 1964, '', '', '', '0000-00-00', 25103, '', NULL), (25104, 1965, '', '', '', '0000-00-00', 25104, '', NULL), (25105, 1966, '', '', '', '0000-00-00', 25105, '', NULL), (25106, 1967, '', '', '', '0000-00-00', 25106, '', NULL), (25107, 1968, '', '', '', '0000-00-00', 25107, '', NULL), (25108, 1969, '', '', '', '0000-00-00', 25108, '', NULL), (25109, 1970, '', '', '', '0000-00-00', 25109, '', NULL), (25110, 1971, '', '', '', '0000-00-00', 25110, '', NULL), (25111, 1972, '', '', '', '0000-00-00', 25111, '', NULL), (25112, 1973, '', '', '', '0000-00-00', 25112, '', NULL), (25113, 1974, '', '', '', '0000-00-00', 25113, '', NULL), (25114, 1975, '', '', '', '0000-00-00', 25114, '', NULL), (25115, 1976, '', '', '', '0000-00-00', 25115, '', NULL), (25116, 1977, '', '', '', '0000-00-00', 25116, '', NULL), (25117, 1978, '', '', '', '0000-00-00', 25117, '', NULL), (25118, 1979, '', '', '', '0000-00-00', 25118, '', NULL), (25119, 1980, '', '', '', '0000-00-00', 25119, '', NULL), (25120, 1981, '', '', '', '0000-00-00', 25120, '', NULL), (25121, 1982, '', '', '', '0000-00-00', 25121, '', NULL), (25122, 1983, '', '', '', '0000-00-00', 25122, '', NULL), (25123, 1984, '', '***ISO Requested***', '', '0000-00-00', 25123, '', NULL), (25124, 1985, '', '***ISO Requested***', '', '0000-00-00', 25124, '', NULL), (25125, 1986, '', '***ISO Requested***', '', '0000-00-00', 25125, '', NULL), (25126, 1987, '', '', '', '0000-00-00', 25126, '', NULL), (25127, 1988, 'S/N 001', 'Power Team Post Tension Jack - Model C (E-4 & PCI)', 'Range:', NULL, 25127, 'New', NULL), (25128, 1989, '', '', '', '0000-00-00', 25128, '', NULL), (25129, 1990, '', '', '', '0000-00-00', 25129, '', NULL), (25130, 1991, '', '***ISO Requested***', '', '0000-00-00', 25130, '', NULL), (25131, 1992, '', '***ISO Requested***', '', '0000-00-00', 25131, '', NULL), (25132, 1993, '', '', '', '0000-00-00', 25132, '', NULL), (25133, 1994, '', '', '', '0000-00-00', 25133, '', NULL), (25134, 1995, '', '', '', '0000-00-00', 25134, '', NULL), (25135, 1996, '', '***ISO Requested***', '', '0000-00-00', 25135, '', NULL), (25136, 1997, '', '', '', '0000-00-00', 25136, '', NULL), (25137, 1998, '', '', '', '0000-00-00', 25137, '', NULL), (25138, 1999, '', '', '', '0000-00-00', 25138, '', NULL), (25139, 2000, 'S/N 05002', 'Forney F-30EX-F-DR2001 Digital Compression Machine (E-4)', 'Range: 3K to 300K', '2012-10-04', 25139, '10/4/2012', NULL), (25140, 2001, '', ' ***ISO Requested***', '', '0000-00-00', 25140, '', NULL), (25141, 2002, '', '***ISO Requested***', '', '0000-00-00', 25141, '', NULL), (25142, 2003, '', '', '', '0000-00-00', 25142, '', NULL), (25143, 2004, '', ' ***Send Certs to Invoice address***', '', '0000-00-00', 25143, '', NULL), (25144, 2005, '', '', '', '0000-00-00', 25144, '', NULL), (25145, 2006, '', '***ISO Requested***', '', '0000-00-00', 25145, '', NULL), (25146, 2007, 'S/N 182', 'Unknown Mdl. 1000 RP Single Proving Ring (E-4 & Man Specs)', 'Range: 1K (OOS)', '2008-10-22', 25146, '10/22/2008', NULL), (25147, 2008, 'S/N 100', 'Mitutoyo Mdl. 2358S-10 Dial Indicator (D-6027)', 'Range: 0.5 inch', '2008-10-21', 25147, '10/21/2008', NULL), (25148, 2009, '', ' \"***ISO Requested***', '', '0000-00-00', 25148, '', NULL), (25149, 2010, '', '', '', '0000-00-00', 25149, '', NULL), (25150, 2011, '', '*** ISO Requested ***', '', '0000-00-00', 25150, '', NULL), (25151, 2012, '', '', '', '0000-00-00', 25151, '', NULL), (25152, 2013, '', '', '', '0000-00-00', 25152, '', NULL), (25153, 2014, '', '***ISO Requested***', '', '0000-00-00', 25153, '', NULL), (25154, 2015, '', '', '', '0000-00-00', 25154, '', NULL), (25155, 2016, '', '', '', '0000-00-00', 25155, '', NULL), (25156, 2017, '', '', '', '0000-00-00', 25156, '', NULL), (25157, 2018, '', '', '', '0000-00-00', 25157, '', NULL), (25158, 2019, '', '', '', '0000-00-00', 25158, '', NULL), (25159, 2020, '', '', '', '0000-00-00', 25159, '', NULL), (25160, 2021, '', '', '', '0000-00-00', 25160, '', NULL), (25161, 2022, '', '', '', '0000-00-00', 25161, '', NULL), (25162, 2023, '', '', '', '0000-00-00', 25162, '', NULL), (25163, 2024, '', '', '', '0000-00-00', 25163, '', NULL), (25164, 2025, '', '', '', '0000-00-00', 25164, '', NULL), (25165, 2026, '', '', '', '0000-00-00', 25165, '', NULL), (25166, 2027, '', '', '', '0000-00-00', 25166, '', NULL), (25167, 2028, '', '', '', '0000-00-00', 25167, '', NULL), (25168, 2029, '', '', '', '0000-00-00', 25168, '', NULL), (25169, 2030, '', '', '', '0000-00-00', 25169, '', NULL), (25170, 2031, '', '', '', '0000-00-00', 25170, '', NULL), (25171, 2032, '', '', '', '0000-00-00', 25171, '', NULL), (25172, 2033, '', '', '', '0000-00-00', 25172, '', NULL), (25173, 2034, '', '', '', '0000-00-00', 25173, '', NULL), (25174, 2035, '', '', '', '0000-00-00', 25174, '', NULL), (25175, 2036, '', '', '', '0000-00-00', 25175, '', NULL), (25176, 2037, '', '', '', '0000-00-00', 25176, '', NULL), (25177, 2038, '', '', '', '0000-00-00', 25177, '', NULL), (25178, 2039, '', '', '', '0000-00-00', 25178, '', NULL), (25179, 2040, '', '', '', '0000-00-00', 25179, '', NULL), (25180, 2041, '', '', '', '0000-00-00', 25180, '', NULL), (25181, 2042, '', '', '', '0000-00-00', 25181, '', NULL), (25182, 2043, '', '', '', '0000-00-00', 25182, '', NULL), (25183, 2044, '', '', '', '0000-00-00', 25183, '', NULL), (25184, 2045, '', 'Certs and Invoice goes to billing address Attn: Sheila Sennet', '', '0000-00-00', 25184, '', NULL), (25185, 2046, '', '', '', '0000-00-00', 25185, '', NULL), (25186, 2047, '', '', '', '0000-00-00', 25186, '', NULL), (25187, 2048, '', '', '', '0000-00-00', 25187, '', NULL), (25188, 2049, '', '', '', '0000-00-00', 25188, '', NULL), (25189, 2050, '', '', '', '0000-00-00', 25189, '', NULL), (25190, 2051, '', '', '', '0000-00-00', 25190, '', NULL), (25191, 2052, '', '', '', '0000-00-00', 25191, '', NULL), (25192, 2053, '', '', '', '0000-00-00', 25192, '', NULL), (25193, 2054, '', '', '', '0000-00-00', 25193, '', NULL), (25194, 2055, '', '', '', '0000-00-00', 25194, '', NULL), (25195, 2056, '', '', '', '0000-00-00', 25195, '', NULL), (25196, 2057, '', '', '', '0000-00-00', 25196, '', NULL), (25197, 2058, '', ' \"***ISO Requested***', '', '0000-00-00', 25197, '', NULL), (25198, 2059, '', '', '', '0000-00-00', 25198, '', NULL), (25199, 2060, '', '', '', '0000-00-00', 25199, '', NULL), (25200, 2061, '', '', '', '0000-00-00', 25200, '', NULL), (25201, 2062, '', '', '', '0000-00-00', 25201, '', NULL), (25202, 2063, '', '', '', '0000-00-00', 25202, '', NULL), (25203, 2064, '', '', '', '0000-00-00', 25203, '', NULL), (25204, 2065, '', '', '', '0000-00-00', 25204, '', NULL), (25205, 2066, '', '***Must have Calibration Factors & Offsets on Certification***', ' ***ISO Requested***', '0000-00-00', 25205, '', NULL), (25206, 2067, '', 'Certifications in Akron Brick & Block name and sent to Akron', 'address, Attn: Stan', '0000-00-00', 25206, '', NULL), (25207, 2068, '', '', '', '0000-00-00', 25207, '', NULL), (25208, 2069, '', '', '', '0000-00-00', 25208, '', NULL), (25209, 2070, '', '', '', '0000-00-00', 25209, '', NULL), (25210, 2071, '', '', '', '0000-00-00', 25210, '', NULL), (25211, 2072, '', '', '....continued.... ', '0000-00-00', 25211, '', NULL), (25212, 2073, '', '', '....continued....', '0000-00-00', 25212, '', NULL), (25213, 2074, '', '', '', '0000-00-00', 25213, '', NULL), (25214, 2075, '', '***MUST CALL FOR PO BEFORE COMING TO FACILITY***', '', '0000-00-00', 25214, '', NULL), (25215, 2076, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 25215, '', NULL), (25216, 2077, '', '', '', '0000-00-00', 25216, '', NULL), (25217, 2078, '', 'S/N 87103-0710302 Hard to get good Zero', '', '0000-00-00', 25217, '', NULL), (25218, 2079, 'S/N 2', 'Soiltest LC-8 Dial Indicator (D-6027)', 'Range: 1 inch', '2012-10-23', 25218, '10/23/2012', NULL), (25219, 2080, '', '', '', '0000-00-00', 25219, '', NULL), (25220, 2081, '', '', '', '0000-00-00', 25220, '', NULL), (25221, 2082, '', '', '', '0000-00-00', 25221, '', NULL), (25222, 2083, '', '', '', '0000-00-00', 25222, '', NULL), (25223, 2084, 'S/N X14600', 'Coti CI-23-SE Load Cell w/ A & D Digital (OOS) (E-4)', 'Range: 5K', '2010-12-10', 25223, '12/10/2010', NULL), (25224, 2085, '', '***ISO Requested***', '', '0000-00-00', 25224, '', NULL), (25225, 2086, '', ' ***ISO Requested***', '', '0000-00-00', 25225, '', NULL), (25226, 2087, '', '', '', '0000-00-00', 25226, '', NULL), (25227, 2088, '', '', '', '0000-00-00', 25227, '', NULL), (25228, 2089, 'S/N 7786', 'GT Bynum MPU-2B Prestress Jack (OOS) (E-4&PCI)', 'Range: 4K / 35K', '2008-09-11', 25228, '9/11/2008', NULL), (25229, 2090, 'S/N M100-203981082', 'Humboldt Compactor ( OOS)', 'Range: 5.5 lb/10 lb', '2001-10-02', 25229, '10/2/2001', NULL), (25230, 2091, '', ' Month / Year only on stickers', '', '0000-00-00', 25230, '', NULL), (25231, 2092, 'S/N 197', 'OTC Mdl. PE554T Post Tension Jack (OOS) (E-4&PCI)', 'Range: 35K / 35K Gauge- #1, #2, #3', '2008-03-11', 25231, '3/11/2008', NULL), (25232, 2093, '', '***ISO Requested***', '', '0000-00-00', 25232, '', NULL), (25233, 2094, 'S/N 1339', 'Hamilton Simplex Prestress Jack (Sent to WV) (E-4&PCI)', 'Prepull 3K (760psi) Final to 37K', '2004-09-21', 25233, '9/21/2004', NULL); INSERT INTO `machinery` (`MachineryID`, `customerID`, `SerialNumber`, `MD`, `MachineRange`, `lastCalibrationDate`, `priceOfRepairs`, `lastCalibrationDateInput`, `JobSiteID`) VALUES (25234, 2095, '', '', '', '0000-00-00', 25234, '', NULL), (25235, 2096, 'S/N 06800000025', 'ELE 36-0718/02 Digital Compression Machine (MOVED) (E-4)', 'Range: 350K', '2006-10-04', 25235, '10/4/2006', NULL), (25236, 2097, '', '***ISO Requested***', '', '0000-00-00', 25236, '', NULL), (25237, 2098, '', '', '', '0000-00-00', 25237, '', NULL), (25238, 2099, 'S/N 53118-1', 'ELE Beam Tester (E-4 & 2%)', 'Range: 11K (MOVED)', '2009-09-29', 25238, '9/29/2009', NULL), (25239, 2100, '', '', '', '0000-00-00', 25239, '', NULL), (25240, 2101, '', '', '', '0000-00-00', 25240, '', NULL), (25241, 2102, '', '', '', '0000-00-00', 25241, '', NULL), (25242, 2103, '', '', '', '0000-00-00', 25242, '', NULL), (25243, 2104, '', '', '', '0000-00-00', 25243, '', NULL), (25244, 2105, '', '', '', '0000-00-00', 25244, '', NULL), (25245, 2106, '', '', '', '0000-00-00', 25245, '', NULL), (25246, 2107, '', '', '', '0000-00-00', 25246, '', NULL), (25247, 2108, '', '', '', '0000-00-00', 25247, '', NULL), (25248, 2109, '', '', '', '0000-00-00', 25248, '', NULL), (25249, 2110, '', '', '', '0000-00-00', 25249, '', NULL), (25250, 2111, '', '', '', '0000-00-00', 25250, '', NULL), (25251, 2112, '', '', '', '0000-00-00', 25251, '', NULL), (25252, 2113, '', '', '', '0000-00-00', 25252, '', NULL), (25253, 2114, '', '', '', '0000-00-00', 25253, '', NULL), (25254, 2115, '', '', '', '0000-00-00', 25254, '', NULL), (25255, 2116, '', '', '', '0000-00-00', 25255, '', NULL), (25256, 2117, '', '', '', '0000-00-00', 25256, '', NULL), (25257, 2118, '', '', '', '0000-00-00', 25257, '', NULL), (25258, 2119, '', '', '', '0000-00-00', 25258, '', NULL), (25259, 2120, '', '', '', '0000-00-00', 25259, '', NULL), (25260, 2121, '', '', '', '0000-00-00', 25260, '', NULL), (25261, 2122, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 25261, '', NULL), (25262, 2123, '', '', '', '0000-00-00', 25262, '', NULL), (25263, 2124, '', '', '', '0000-00-00', 25263, '', NULL), (25264, 2125, '', '', '', '0000-00-00', 25264, '', NULL), (25265, 2126, '', '', '', '0000-00-00', 25265, '', NULL), (25266, 2127, '', '', '', '0000-00-00', 25266, '', NULL), (25267, 2128, '', '', '', '0000-00-00', 25267, '', NULL), (25268, 2129, '', '', '', '0000-00-00', 25268, '', NULL), (25269, 2130, '', '', '', '0000-00-00', 25269, '', NULL), (25270, 2131, '', '', '', '0000-00-00', 25270, '', NULL), (25271, 2132, '', '', '', '0000-00-00', 25271, '', NULL), (25272, 2133, '', '', '', '0000-00-00', 25272, '', NULL), (25273, 2134, '', '', '', '0000-00-00', 25273, '', NULL), (25274, 2135, '', '', '', '0000-00-00', 25274, '', NULL), (25275, 2136, '', '', '', '0000-00-00', 25275, '', NULL), (25276, 2137, '', '9/30/98 - No response to solicitation - Did not call.', '', '0000-00-00', 25276, '', NULL), (25277, 2138, '', '', '', '0000-00-00', 25277, '', NULL), (25278, 2139, '', '', '', '0000-00-00', 25278, '', NULL), (25279, 2140, '', '', '', '0000-00-00', 25279, '', NULL), (25280, 2141, '', '', '', '0000-00-00', 25280, '', NULL), (25281, 2142, '', '', '', '0000-00-00', 25281, '', NULL), (25282, 2143, '', '', '', '0000-00-00', 25282, '', NULL), (25283, 2144, 'S/N 78042', 'Forney FT-40-DR Compression Machine (SOLD) (E-4) ', 'Range: 30K / 250K', '2004-09-23', 25283, '9/23/2004', NULL), (25284, 2145, '', '', '', '0000-00-00', 25284, '', NULL), (25285, 2146, '', '***ISO Requested***', '', '0000-00-00', 25285, '', NULL), (25286, 2147, 'S/N 609384', ' with Load Cell', '', '0000-00-00', 25286, '', NULL), (25287, 2148, '', '', '***ISO Requested***', '0000-00-00', 25287, '', NULL), (25288, 2149, '', '', '', '0000-00-00', 25288, '', NULL), (25289, 2150, 'S/N 3250', 'RDP Group Linear Transducer, Model: LDC1000A (OOS) (D-6027)', 'Range: 0.5 inches', '2004-09-29', 25289, '9/29/2004', NULL), (25290, 2151, '', '***ISO Requested***', '', '0000-00-00', 25290, '', NULL), (25291, 2152, '', '', '', '0000-00-00', 25291, '', NULL), (25292, 2153, '', '', '', '0000-00-00', 25292, '', NULL), (25293, 2154, '', '', '', '0000-00-00', 25293, '', NULL), (25294, 2155, '', '', '', '0000-00-00', 25294, '', NULL), (25295, 2156, 'S/N 90009050', 'Com-Ten Digital Test System Mdl 935KFD0050 (E-4) (MOVED)', 'Range: 5K', '2005-10-24', 25295, '10/24/2005', NULL), (25296, 2157, 'S/N 359', 'Humboldt H-3030 Beam Breaker (E-4 & 2%)', 'Range: 1K to 15K ', '2010-09-28', 25296, '9/28/2010', NULL), (25297, 2158, '', '', '', '0000-00-00', 25297, '', NULL), (25298, 2159, '', '', '', '0000-00-00', 25298, '', NULL), (25299, 2160, '', '', '', '0000-00-00', 25299, '', NULL), (25300, 2161, '', '', '', '0000-00-00', 25300, '', NULL), (25301, 2162, '', '', '', '0000-00-00', 25301, '', NULL), (25302, 2163, '', '', '', '0000-00-00', 25302, '', NULL), (25303, 2164, '', '', '', '0000-00-00', 25303, '', NULL), (25304, 2165, '', '', '', '0000-00-00', 25304, '', NULL), (25305, 2166, '', '', '', '0000-00-00', 25305, '', NULL), (25306, 2167, '', '', '', '0000-00-00', 25306, '', NULL), (25307, 2168, '', '', '', '0000-00-00', 25307, '', NULL), (25308, 2169, '', '', '', '0000-00-00', 25308, '', NULL), (25309, 2170, '', '', '', '0000-00-00', 25309, '', NULL), (25310, 2171, '', '', '', '0000-00-00', 25310, '', NULL), (25311, 2172, '', '', '', '0000-00-00', 25311, '', NULL), (25312, 2173, '', '', '', '0000-00-00', 25312, '', NULL), (25313, 2174, '', '', '', '0000-00-00', 25313, '', NULL), (25314, 2175, '', '', '', '0000-00-00', 25314, '', NULL), (25315, 2176, '', '', '', '0000-00-00', 25315, '', NULL), (25316, 2177, '', '', '', '0000-00-00', 25316, '', NULL), (25317, 2178, '', '', '', '0000-00-00', 25317, '', NULL), (25318, 2179, '', '', '', '0000-00-00', 25318, '', NULL), (25319, 2180, '', '', '', '0000-00-00', 25319, '', NULL), (25320, 2181, '', '', '', '0000-00-00', 25320, '', NULL), (25321, 2182, '', '', '', '0000-00-00', 25321, '', NULL), (25322, 2183, '', '', '', '0000-00-00', 25322, '', NULL), (25323, 2184, '', '', '', '0000-00-00', 25323, '', NULL), (25324, 2185, '', '', '', '0000-00-00', 25324, '', NULL), (25325, 2186, '', '', '', '0000-00-00', 25325, '', NULL), (25326, 2187, '', '', '', '0000-00-00', 25326, '', NULL), (25327, 2188, '', '', '', '0000-00-00', 25327, '', NULL), (25328, 2189, '', '', '', '0000-00-00', 25328, '', NULL), (25329, 2190, '', '', '', '0000-00-00', 25329, '', NULL), (25330, 2191, '', '', '', '0000-00-00', 25330, '', NULL), (25331, 2192, '', '', '', '0000-00-00', 25331, '', NULL), (25332, 2193, '', '', '', '0000-00-00', 25332, '', NULL), (25333, 2194, '', '', '', '0000-00-00', 25333, '', NULL), (25334, 2195, '', '', '', '0000-00-00', 25334, '', NULL), (25335, 2196, '', '', '', '0000-00-00', 25335, '', NULL), (25336, 2197, '', '', '', '0000-00-00', 25336, '', NULL), (25337, 2198, '', '', '', '0000-00-00', 25337, '', NULL), (25338, 2199, '', '', '', '0000-00-00', 25338, '', NULL), (25339, 2200, '', 'Certifications in Akron Brick & Block name and sent to Akron', 'address, Attn: Stan', '0000-00-00', 25339, '', NULL), (25340, 2201, '', '', '', '0000-00-00', 25340, '', NULL), (25341, 2202, '', 'Putting in archived database.', '', '0000-00-00', 25341, '', NULL), (25342, 2203, '', '', '', '0000-00-00', 25342, '', NULL), (25343, 2204, 'S/N', 'Pine Instrument AF850T Marshall Tester (E-4)', 'Range: 2.5K / 5K / 10K ', NULL, 25343, 'New', NULL), (25344, 2205, '', '', '', '0000-00-00', 25344, '', NULL), (25345, 2206, 'S/N 18x4802B', 'LoTes Model LT-10 Digital Compression Machine (OOS) (E-4)', 'Range 4,000 lbs. to 10,000 lbs', '2008-08-05', 25345, '8/5/2008', NULL), (25346, 2207, '', '***Putting in archived database***', '', '0000-00-00', 25346, '', NULL), (25347, 2208, 'S/N K-54-43', ' with Forney Load Cell (E-4)', 'Range: 1.5K', '2005-02-21', 25347, '2/21/2005', NULL), (25348, 2209, '', '', '', '0000-00-00', 25348, '', NULL), (25349, 2210, '', '***ISO Requested***', '', '0000-00-00', 25349, '', NULL), (25350, 2211, '', '***ISO Requested***', '', '0000-00-00', 25350, '', NULL), (25351, 2212, '', '', '', '0000-00-00', 25351, '', NULL), (25352, 2213, '', '', '', '0000-00-00', 25352, '', NULL), (25353, 2214, '', '', '', '0000-00-00', 25353, '', NULL), (25354, 2215, '', '', '', '0000-00-00', 25354, '', NULL), (25355, 2216, '', '', '', '0000-00-00', 25355, '', NULL), (25356, 2217, '', '', '', '0000-00-00', 25356, '', NULL), (25357, 2218, '', '', '', '0000-00-00', 25357, '', NULL), (25358, 2219, 'S/N 20007038', 'with Load Cell Model PSB0100', '', '0000-00-00', 25358, '', NULL), (25359, 2220, 'S/N 159542A', ' w/ Compression Load Cell (E-4)', 'Range: 10K', '2006-08-22', 25359, '8/22/2006', NULL), (25360, 2221, '', '', '', '0000-00-00', 25360, '', NULL), (25361, 2222, '', '', '', '0000-00-00', 25361, '', NULL), (25362, 2223, '', '', '', '0000-00-00', 25362, '', NULL), (25363, 2224, '', '', '', '0000-00-00', 25363, '', NULL), (25364, 2225, '', '', '', '0000-00-00', 25364, '', NULL), (25365, 2226, '', '', '', '0000-00-00', 25365, '', NULL), (25366, 2227, '', 'Certs and Invoice goes to billing address Attn: Sheila Sennet', '', '0000-00-00', 25366, '', NULL), (25367, 2228, '', '', '', '0000-00-00', 25367, '', NULL), (25368, 2229, '', '', '', '0000-00-00', 25368, '', NULL), (25369, 2230, '', '', '', '0000-00-00', 25369, '', NULL), (25370, 2231, '', '', '', '0000-00-00', 25370, '', NULL), (25371, 2232, '', '', '', '0000-00-00', 25371, '', NULL), (25372, 2233, '', '', '', '0000-00-00', 25372, '', NULL), (25373, 2234, '', '***ISO Requested***', '', '0000-00-00', 25373, '', NULL), (25374, 2235, '', '', '', '0000-00-00', 25374, '', NULL), (25375, 2236, '', 'Send certs to job site', '', '0000-00-00', 25375, '', NULL), (25376, 2237, '', '', '', '0000-00-00', 25376, '', NULL), (25377, 2238, '', '', '', '0000-00-00', 25377, '', NULL), (25378, 2239, '', '', '', '0000-00-00', 25378, '', NULL), (25379, 2240, '', '', '', '0000-00-00', 25379, '', NULL), (25380, 2241, '', '', '', '0000-00-00', 25380, '', NULL), (25381, 2242, '', '', '', '0000-00-00', 25381, '', NULL), (25382, 2243, '', ' ***Mail certs to Bristal, PA site***', '', '0000-00-00', 25382, '', NULL), (25383, 2244, '', '', '', '0000-00-00', 25383, '', NULL), (25384, 2245, '', '', '', '0000-00-00', 25384, '', NULL), (25385, 2246, '', '***ISO Requested***', '', '0000-00-00', 25385, '', NULL), (25386, 2247, '', ' ***2 Year Schedule***', '', '0000-00-00', 25386, '', NULL), (25387, 2248, '', '5/21/98 No solicit per Bill', '1/14 No recent Tax Exempt Form', '0000-00-00', 25387, '', NULL), (25388, 2249, 'S/N 21492', 'Chatillon Force Gauge Digital DFIS 50 T&C (E-4)', 'Range: 5 to 50 lb.', '1998-04-28', 25388, '4/28/1998', NULL), (25389, 2250, '', 'Putting in archived database.', '', '0000-00-00', 25389, '', NULL), (25390, 2251, '', '', '', '0000-00-00', 25390, '', NULL), (25391, 2252, '', '', '*** ISO Requested*', '0000-00-00', 25391, '', NULL), (25392, 2253, '', '', '', '0000-00-00', 25392, '', NULL), (25393, 2254, '', '', '', '0000-00-00', 25393, '', NULL), (25394, 2255, '', '***ISO Requested***', '', '0000-00-00', 25394, '', NULL), (25395, 2256, 'S/N 523725', 'Satec Emery Mdl. UVI/V LVDT (Recorder) (D-6027)', 'Range: 4 Inches (OOS)', '2008-10-21', 25395, '10/21/2008', NULL), (25396, 2257, 'S/N 112', 'Soiltest Consolidation Dial Indicator Frame #1 (D-6027)', 'Range: 0.4 inch', NULL, 25396, 'New', NULL), (25397, 2258, '', '', '', '0000-00-00', 25397, '', NULL), (25398, 2259, '', '', '', '0000-00-00', 25398, '', NULL), (25399, 2260, '', '', '', '0000-00-00', 25399, '', NULL), (25400, 2261, '', '***ISO Requested***', '', '0000-00-00', 25400, '', NULL), (25401, 2262, '', '***ISO Requested***', '', '0000-00-00', 25401, '', NULL), (25402, 2263, '', '***ISO Requested***', '', '0000-00-00', 25402, '', NULL), (25403, 2264, '', '', '', '0000-00-00', 25403, '', NULL), (25404, 2265, 'S/N 1797', 'Pine Instrument Model AFG1A (E-4)', 'Range: ', NULL, 25404, 'New', NULL), (25405, 2266, '', '***ISO Requested***', '', '0000-00-00', 25405, '', NULL), (25406, 2267, '', '', '', '0000-00-00', 25406, '', NULL), (25407, 2268, '', '', '', '0000-00-00', 25407, '', NULL), (25408, 2269, '', '', '', '0000-00-00', 25408, '', NULL), (25409, 2270, '', '', '', '0000-00-00', 25409, '', NULL), (25410, 2271, '', '', '', '0000-00-00', 25410, '', NULL), (25411, 2272, '', '', '', '0000-00-00', 25411, '', NULL), (25412, 2273, '', '', '', '0000-00-00', 25412, '', NULL), (25413, 2274, '', 'Pricing as per Bill', '', '0000-00-00', 25413, '', NULL), (25414, 2275, 'S/N 78042', 'Forney FT-40-DR Compression Machine (SOLD) (E-4) ', 'Range: 30K / 250K', '2004-09-23', 25414, '9/23/2004', NULL), (25415, 2276, '', '', '', '0000-00-00', 25415, '', NULL), (25416, 2277, '', ' ***2 Year Interval***', '', '0000-00-00', 25416, '', NULL), (25417, 2278, '', '', '', '0000-00-00', 25417, '', NULL), (25418, 2279, '', '', '', '0000-00-00', 25418, '', NULL), (25419, 2280, '', 'Send Certs to PO Box 501278 Indianapolis IN 46250', '', '0000-00-00', 25419, '', NULL), (25420, 2281, '', '', '', '0000-00-00', 25420, '', NULL), (25421, 2282, 'S/N 165601', 'Tinius Olsen Compressometer (E-83)', 'Range: .004 inches', '2005-03-30', 25421, '3/30/2005', NULL), (25422, 2283, '', '', '', '0000-00-00', 25422, '', NULL), (25423, 2284, '', 'cont\'d on next page........', '', '0000-00-00', 25423, '', NULL), (25424, 2285, '', '***Marked \"Zero\" lines on both Initial gauges & Dated -TPT***', '', '0000-00-00', 25424, '', NULL), (25425, 2286, '', '***ISO Requested***', '', '0000-00-00', 25425, '', NULL), (25426, 2287, '', '', '', '0000-00-00', 25426, '', NULL), (25427, 2288, '', '', '', '0000-00-00', 25427, '', NULL), (25428, 2289, '', '', '', '0000-00-00', 25428, '', NULL), (25429, 2290, '', ' ***ISO REQUESTED***', '', '0000-00-00', 25429, '', NULL), (25430, 2291, '', '', '', '0000-00-00', 25430, '', NULL), (25431, 2292, '', 'Putting in archived database.', '', '0000-00-00', 25431, '', NULL), (25432, 2293, '', '', '', '0000-00-00', 25432, '', NULL), (25433, 2294, '', 'Machine Located at this facility : Dalrymple Gravel & Construction', '', '0000-00-00', 25433, '', NULL), (25434, 2295, '', 'Machine located at this facility: Dalrymple Gravel & Construction', '', '0000-00-00', 25434, '', NULL), (25435, 2296, 'S/N 68214', 'Forney FT-40-DR Digital Compression Machine w/ 2 Gauges ', 'Range: (SOLD) (E-4)', NULL, 25435, 'New', NULL), (25436, 2297, '', '', '', '0000-00-00', 25436, '', NULL), (25437, 2298, '', '', '', '0000-00-00', 25437, '', NULL), (25438, 2299, '', '', '', '0000-00-00', 25438, '', NULL), (25439, 2300, '', '', '', '0000-00-00', 25439, '', NULL), (25440, 2301, '', '', '', '0000-00-00', 25440, '', NULL), (25441, 2302, '', 'said Soiltest was moved to her facility on 12/20/2010**', '', '0000-00-00', 25441, '', NULL), (25442, 2303, '', '', '', '0000-00-00', 25442, '', NULL), (25443, 2304, '', '', '', '0000-00-00', 25443, '', NULL), (25444, 2305, '', '', '', '0000-00-00', 25444, '', NULL), (25445, 2306, '', '', '', '0000-00-00', 25445, '', NULL), (25446, 2307, '', 'Used to pay with Credit Card now must have PO#', '', '0000-00-00', 25446, '', NULL), (25447, 2308, '', '', '', '0000-00-00', 25447, '', NULL), (25448, 2309, '', '', '', '0000-00-00', 25448, '', NULL), (25449, 2310, '', '', '', '0000-00-00', 25449, '', NULL), (25450, 2311, '', '', '', '0000-00-00', 25450, '', NULL), (25451, 2312, 'S/N 295', 'Durham Geo Linear LVDT (OOS) (D-6027)', 'Range: ', NULL, 25451, 'New', NULL), (25452, 2313, '', '', '', '0000-00-00', 25452, '', NULL), (25453, 2314, '', '', '', '0000-00-00', 25453, '', NULL), (25454, 2315, '', 'PUT PURCHASE ORDER NUMBER ON STICKERS & CERTS', '', '0000-00-00', 25454, '', NULL), (25455, 2316, '', '', '', '0000-00-00', 25455, '', NULL), (25456, 2317, '', 'Credit Card # in file, will E-Mail CSI when we are authorized to ', 'use it ', '0000-00-00', 25456, '', NULL), (25457, 2318, '', '', '', '0000-00-00', 25457, '', NULL), (25458, 2319, '', 'Send Certs/Invoice to PO Box 70 Monroe OH 45050', '', '0000-00-00', 25458, '', NULL), (25459, 2320, '', '', '', '0000-00-00', 25459, '', NULL), (25460, 2321, '', 'Certs to billing attn: Sam Kimanu', '', '0000-00-00', 25460, '', NULL), (25461, 2322, 'S/N ', 'Hogentogler Double Proving Ring (Out Of Service)(E-4 & Man Specs)', 'Cap: 500 lbs', NULL, 25461, 'New', NULL), (25462, 2323, '', 'e-mail Solitation Letter to sam.kimani@ebaengineering.com', '***continued***', '0000-00-00', 25462, '', NULL), (25463, 2324, 'S/N 1010 (SOLD)', 'Satec Model 200HVL Universal Testing Machine (Sold) (E-4) ', 'Range: 10K / 25K / 50K / 200K', '2009-03-05', 25463, '3/5/2009', NULL), (25464, 2325, '', '', '', '0000-00-00', 25464, '', NULL), (25465, 2326, '', '', '', '0000-00-00', 25465, '', NULL), (25466, 2327, '', '', '', '0000-00-00', 25466, '', NULL), (25467, 2328, '', ' ***Mail Certs to Job Site***', '', '0000-00-00', 25467, '', NULL), (25468, 2329, '', '', '', '0000-00-00', 25468, '', NULL), (25469, 2330, '', '', '', '0000-00-00', 25469, '', NULL), (25470, 2331, '', '', '', '0000-00-00', 25470, '', NULL), (25471, 2332, '', '', '', '0000-00-00', 25471, '', NULL), (25472, 2333, '', ' *** 2 Year Interval***', '', '0000-00-00', 25472, '', NULL), (25473, 2334, '', 'have a PO#, ship to address & First & Last name of Essroc employee', '', '0000-00-00', 25473, '', NULL), (25474, 2335, '', '', '', '0000-00-00', 25474, '', NULL), (25475, 2336, '', '', '', '0000-00-00', 25475, '', NULL), (25476, 2337, '', '', '', '0000-00-00', 25476, '', NULL), (25477, 2338, '', ' ***Equipment is Calibrated every 6 Months*** (Jan & July)', ' ***ISO Requested***', '0000-00-00', 25477, '', NULL), (25478, 2339, '', '', '', '0000-00-00', 25478, '', NULL), (25479, 2340, '', 'Putting in archived database.', '', '0000-00-00', 25479, '', NULL), (25480, 2341, '', ' ***DO NOT USE 300 SYSTEM!!***', '', '0000-00-00', 25480, '', NULL), (25481, 2342, '', '', '', '0000-00-00', 25481, '', NULL), (25482, 2343, '', '', '', '0000-00-00', 25482, '', NULL), (25483, 2344, 'S/N 173590', 'TO Extensometer-Model S-1000-1 (E-83)', '1\" G.L. (NOT USING)', '2003-01-29', 25483, '1/29/2003', NULL), (25484, 2345, '', '', '', '0000-00-00', 25484, '', NULL), (25485, 2346, '', ' \"***ISO Requested***', '', '0000-00-00', 25485, '', NULL), (25486, 2347, '', '', '', '0000-00-00', 25486, '', NULL), (25487, 2348, '', '', '', '0000-00-00', 25487, '', NULL), (25488, 2349, '', '', '', '0000-00-00', 25488, '', NULL), (25489, 2350, '', '', '', '0000-00-00', 25489, '', NULL), (25490, 2351, '', '', '', '0000-00-00', 25490, '', NULL), (25491, 2352, '', '*** Must fill out Hazard Training & Recognition Checklist***', '', '0000-00-00', 25491, '', NULL), (25492, 2353, '', '', '', '0000-00-00', 25492, '', NULL), (25493, 2354, '', '', '', '0000-00-00', 25493, '', NULL), (25494, 2355, '', '', '', '0000-00-00', 25494, '', NULL), (25495, 2356, '', '***ISO Requested***', '', '0000-00-00', 25495, '', NULL), (25496, 2357, '', ' ***Send Certs to Bill To Address*** ', '', '0000-00-00', 25496, '', NULL), (25497, 2358, '', '', '', '0000-00-00', 25497, '', NULL), (25498, 2359, '', '***ISO Requested***', '', '0000-00-00', 25498, '', NULL), (25499, 2360, '', '', '', '0000-00-00', 25499, '', NULL), (25500, 2361, '', '', '', '0000-00-00', 25500, '', NULL), (25501, 2362, '', '', '', '0000-00-00', 25501, '', NULL), (25502, 2363, '', '', '', '0000-00-00', 25502, '', NULL), (25503, 2364, '', '', '', '0000-00-00', 25503, '', NULL), (25504, 2365, '', '', '', '0000-00-00', 25504, '', NULL), (25505, 2366, '', 'Invoice Inquiry to be sent to etefke@mragta.com', '', '0000-00-00', 25505, '', NULL), (25506, 2367, '', '', '', '0000-00-00', 25506, '', NULL), (25507, 2368, '', '', '', '0000-00-00', 25507, '', NULL), (25508, 2369, 'S/N HP108/42079', 'Enerpac Post Tension Jack (E-4&PCI)', 'Range: 3K / 35K (OOS)', '2007-04-26', 25508, '4/26/2007', NULL), (25509, 2370, 'S/N 137412', 'Proceq Swiss Hammer Model N-34 (OOS) (C-805)', 'Range: 78 to 82', '2006-08-23', 25509, '8/23/2006', NULL), (25510, 2371, '', '', '', '0000-00-00', 25510, '', NULL), (25511, 2372, '', '', '', '0000-00-00', 25511, '', NULL), (25512, 2373, '', '', '', '0000-00-00', 25512, '', NULL), (25513, 2374, '', '***ISO Requested***', '', '0000-00-00', 25513, '', NULL), (25514, 2375, '', ' ***Check file for special shipping directions***', '', '0000-00-00', 25514, '', NULL), (25515, 2376, '', ' \"*** 2 Year Schedule***', '', '0000-00-00', 25515, '', NULL), (25516, 2377, '', '', '', '0000-00-00', 25516, '', NULL), (25517, 2378, '', '', '', '0000-00-00', 25517, '', NULL), (25518, 2379, '', '', '', '0000-00-00', 25518, '', NULL), (25519, 2380, '', '', '', '0000-00-00', 25519, '', NULL), (25520, 2381, '', '', '', '0000-00-00', 25520, '', NULL), (25521, 2382, '', ' *Send Certs to Billing address*', '', '0000-00-00', 25521, '', NULL), (25522, 2383, '', '', '', '0000-00-00', 25522, '', NULL), (25523, 2384, '', '', '', '0000-00-00', 25523, '', NULL), (25524, 2385, '', '', '', '0000-00-00', 25524, '', NULL), (25525, 2386, '', '', '', '0000-00-00', 25525, '', NULL), (25526, 2387, '', '***ISO Requested***', '', '0000-00-00', 25526, '', NULL), (25527, 2388, '', ' ***ISO Requested***', '', '0000-00-00', 25527, '', NULL), (25528, 2389, '', '', '', '0000-00-00', 25528, '', NULL), (25529, 2390, '', '', '', '0000-00-00', 25529, '', NULL), (25530, 2391, '', '*When Scheduling ask if Heavy Highway or Paving*', '', '0000-00-00', 25530, '', NULL), (25531, 2392, '', 'A/P: ap@hrcengr.com', '', '0000-00-00', 25531, '', NULL), (25532, 2393, 'S/N 1768/346', 'Durham GEO Digital Pressure Transducer Model S-500 (MOVED)', 'Range: 300 PSI', '2005-12-14', 25532, '12/14/2005', NULL), (25533, 2394, 'S/N 992234627', 'ELE Dial Indicator (D-6027)OOS', 'Range: 1 Inch ', '2012-01-04', 25533, '1/4/2012', NULL), (25534, 2395, '', '*** ISO Requested ***', '', '0000-00-00', 25534, '', NULL), (25535, 2396, 'S/N 05123022-46-T', 'BK E-400 Digital Read Out Mdl. 2811A00FGP-23985 (E-4)', 'Range: (OOS)', NULL, 25535, 'New', NULL), (25536, 2397, '', '', '', '0000-00-00', 25536, '', NULL), (25537, 2398, '', 'MAKE SURE LABEL HAS A 5 YEAR CALIBRATION DATE', '', '0000-00-00', 25537, '', NULL), (25538, 2399, '', 'Send Invoice to Michigan, Send Certifications to Carlisle', '', '0000-00-00', 25538, '', NULL), (25539, 2400, '', '', '', '0000-00-00', 25539, '', NULL), (25540, 2401, 'S/N A0501', ' w/Forney Compressometer (D-6027)', 'Range: 0.5 inch', '2015-05-12', 25540, '5/12/2015', NULL), (25541, 2402, '', '', '', '0000-00-00', 25541, '', NULL), (25542, 2403, '', 'Must switch grey cable on front of computer when using 1 Kip cell', 'Look in file for diagram', '0000-00-00', 25542, '', NULL), (25543, 2404, 'S/N 15096', 'Testmark CM2500LD Digital Compression Machine (E-4) OOS', 'Range: 2.5K to 250K', '2013-12-03', 25543, '12/3/2013', NULL), (25544, 2405, '', 'with passport or birth certificate', '', '0000-00-00', 25544, '', NULL), (25545, 2406, '', '***Need to use small Diameter Load Cell***60 Kip on 700 System', '', '0000-00-00', 25545, '', NULL), (25546, 2407, '', '', '', '0000-00-00', 25546, '', NULL), (25547, 2408, '', '', '', '0000-00-00', 25547, '', NULL), (25548, 2409, '', '', '', '0000-00-00', 25548, '', NULL), (25549, 2410, '', '', '', '0000-00-00', 25549, '', NULL), (25550, 2411, 'S/N 02059-090817', 'Forney F-25EX-F-CS-100-1BR Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Moved)', '2013-07-10', 25550, '7/10/2013', NULL), (25551, 2412, '', '', '', '0000-00-00', 25551, '', NULL), (25552, 2413, '', ' ***ISO Requested***', '', '0000-00-00', 25552, '', NULL), (25553, 2414, '', '', '', '0000-00-00', 25553, '', NULL), (25554, 2415, '', '', '', '0000-00-00', 25554, '', NULL), (25555, 2416, '', '', '', '0000-00-00', 25555, '', NULL), (25556, 2417, '', '', '', '0000-00-00', 25556, '', NULL), (25557, 2418, '', '', '', '0000-00-00', 25557, '', NULL), (25558, 2419, '', '', '', '0000-00-00', 25558, '', NULL), (25559, 2420, '', '', '', '0000-00-00', 25559, '', NULL), (25560, 2421, '', '', '', '0000-00-00', 25560, '', NULL), (25561, 2422, '', '', '', '0000-00-00', 25561, '', NULL), (25562, 2423, '', '', '', '0000-00-00', 25562, '', NULL), (25563, 2424, '', '', '', '0000-00-00', 25563, '', NULL), (25564, 2425, '', '', '', '0000-00-00', 25564, '', NULL), (25565, 2426, '', '', '', '0000-00-00', 25565, '', NULL), (25566, 2427, '', '', '', '0000-00-00', 25566, '', NULL), (25567, 2428, '', '', '', '0000-00-00', 25567, '', NULL), (25568, 2429, '', 'Putting in archived database.', '', '0000-00-00', 25568, '', NULL), (25569, 2430, '', ' \"***ISO Requested***', '', '0000-00-00', 25569, '', NULL), (25570, 2431, '', '', '', '0000-00-00', 25570, '', NULL), (25571, 2432, '', '', '', '0000-00-00', 25571, '', NULL), (25572, 2433, '', '', '', '0000-00-00', 25572, '', NULL), (25573, 2434, '', 'done WHICH OFFICE the work is being COORDINATED OUT OF', '', '0000-00-00', 25573, '', NULL), (25574, 2435, '', '', '', '0000-00-00', 25574, '', NULL), (25575, 2436, '', '', '', '0000-00-00', 25575, '', NULL), (25576, 2437, '', '', '', '0000-00-00', 25576, '', NULL), (25577, 2438, '', 'done WHICH OFFICE the work is being COORDINATED OUT OF', '', '0000-00-00', 25577, '', NULL), (25578, 2439, '', '', '', '0000-00-00', 25578, '', NULL), (25579, 2440, '', '', '', '0000-00-00', 25579, '', NULL), (25580, 2441, '', '', '', '0000-00-00', 25580, '', NULL), (25581, 2442, '', 'Put Job# on Invoice ', '', '0000-00-00', 25581, '', NULL), (25582, 2443, '', '', '', '0000-00-00', 25582, '', NULL), (25583, 2444, '', '', '', '0000-00-00', 25583, '', NULL), (25584, 2445, '', '', '', '0000-00-00', 25584, '', NULL), (25585, 2446, 'S/N 711129', ' with Omega Digital Readout DP 80 (E-4) (SOLD)', 'Range: 3 to 500K', '2005-07-12', 25585, '7/12/2005', NULL), (25586, 2447, '', '', '', '0000-00-00', 25586, '', NULL), (25587, 2448, '', '', '', '0000-00-00', 25587, '', NULL), (25588, 2449, '', 'Schorr and he will take you to the equipment***', '', '0000-00-00', 25588, '', NULL), (25589, 2450, '', '', '', '0000-00-00', 25589, '', NULL), (25590, 2451, '', '', '', '0000-00-00', 25590, '', NULL), (25591, 2452, '', '', '', '0000-00-00', 25591, '', NULL), (25592, 2453, '', '', '', '0000-00-00', 25592, '', NULL), (25593, 2454, '', '', '', '0000-00-00', 25593, '', NULL), (25594, 2455, '', ' ***Cert sent to Bill To Site*** ', '', '0000-00-00', 25594, '', NULL), (25595, 2456, '', '', '', '0000-00-00', 25595, '', NULL), (25596, 2457, '', 'Send Certs to: 135 Highland Drive, PO Box 3008, Lebanon, VA ', '24266, Attn: Paul Garrett', '0000-00-00', 25596, '', NULL), (25597, 2458, '', '', '', '0000-00-00', 25597, '', NULL), (25598, 2459, '', '', '', '0000-00-00', 25598, '', NULL), (25599, 2460, '', 'e-mail invoice to maureen.smilek@naes.com', '', '0000-00-00', 25599, '', NULL), (25600, 2461, '', '', '', '0000-00-00', 25600, '', NULL), (25601, 2462, 'S/N 100753A', ' w/ Tovey Load Cell Plus X Axis - T & C', 'Range: 10K ', '2012-03-12', 25601, '3/12/2012', NULL), (25602, 2463, '', '', '', '0000-00-00', 25602, '', NULL), (25603, 2464, '', '', '', '0000-00-00', 25603, '', NULL), (25604, 2465, 'S/N Ram 9', ' w/ Simplex Ram ', 'Range: 10K (9,100 PSI)', '2011-06-29', 25604, '6/29/2011', NULL), (25605, 2466, '', '', '', '0000-00-00', 25605, '', NULL), (25606, 2467, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 25606, '', NULL), (25607, 2468, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 25607, '', NULL), (25608, 2469, '', 'Certs to billing', '', '0000-00-00', 25608, '', NULL), (25609, 2470, '', '', '', '0000-00-00', 25609, '', NULL), (25610, 2471, '', ' PUT MONTH, DAY & YEAR ON STICKERS', '', '0000-00-00', 25610, '', NULL), (25611, 2472, '', '', '', '0000-00-00', 25611, '', NULL), (25612, 2473, '', ' \"***ISO Requested***', '', '0000-00-00', 25612, '', NULL), (25613, 2474, '', '*** ISO Requested***', '', '0000-00-00', 25613, '', NULL), (25614, 2475, '', '', '', '0000-00-00', 25614, '', NULL), (25615, 2476, '', '', '', '0000-00-00', 25615, '', NULL), (25616, 2477, 'S/N 6078', 'Forney LT-700 Compression Machine (Not Using) (E-4)', 'Range: 60K / 350K (ID# 01156)', '2010-03-16', 25616, '3/16/2010', NULL), (25617, 2478, '', '', '', '0000-00-00', 25617, '', NULL), (25618, 2479, '', ' ***Jason wants on same schedule as Exton, PA site***', '', '0000-00-00', 25618, '', NULL), (25619, 2480, '', ' \"***ISO Requested***', '', '0000-00-00', 25619, '', NULL), (25620, 2481, '', ' \"***ISO Requested***', '', '0000-00-00', 25620, '', NULL), (25621, 2482, '', '', '', '0000-00-00', 25621, '', NULL), (25622, 2483, '', '**All machines need our big & small service labels**', 'ACH Payment Program', '0000-00-00', 25622, '', NULL), (25623, 2484, '', '**All machines need our big & small service labels**', 'ACH Payment Program', '0000-00-00', 25623, '', NULL), (25624, 2485, '', '**All machines need our big & small service labels**', 'ACH Payment Program', '0000-00-00', 25624, '', NULL), (25625, 2486, '', 'will not be paid for', '', '0000-00-00', 25625, '', NULL), (25626, 2487, '', '**All machines need big & small service labels**', 'ACH Payment Program', '0000-00-00', 25626, '', NULL), (25627, 2488, '', '', '', '0000-00-00', 25627, '', NULL), (25628, 2489, '', '', '', '0000-00-00', 25628, '', NULL), (25629, 2490, '', '', '', '0000-00-00', 25629, '', NULL), (25630, 2491, '', ' ***Need to fill out their Bid Form each year***', ' cont\'d next page..........', '0000-00-00', 25630, '', NULL), (25631, 2492, '', ' ***Need to fill out their Bid Form***', ' con\'t next page.............', '0000-00-00', 25631, '', NULL), (25632, 2493, '', ' ***Need to fill out their Bid Form***', ' con\'t next page ..........', '0000-00-00', 25632, '', NULL), (25633, 2494, '', '', '', '0000-00-00', 25633, '', NULL), (25634, 2495, '', '', '', '0000-00-00', 25634, '', NULL), (25635, 2496, '', '', '', '0000-00-00', 25635, '', NULL), (25636, 2497, '', '', '', '0000-00-00', 25636, '', NULL), (25637, 2498, '', '', '', '0000-00-00', 25637, '', NULL), (25638, 2499, '', '', '', '0000-00-00', 25638, '', NULL), (25639, 2500, '', '', '', '0000-00-00', 25639, '', NULL), (25640, 2501, '', '', '', '0000-00-00', 25640, '', NULL), (25641, 2502, '', '', '', '0000-00-00', 25641, '', NULL), (25642, 2503, '', '', '', '0000-00-00', 25642, '', NULL), (25643, 2504, '', ' ***ISO Requested***', '', '0000-00-00', 25643, '', NULL), (25644, 2505, '', '', '', '0000-00-00', 25644, '', NULL), (25645, 2506, 'S/N 95797 / NC #8', 'Simms LC-2502 Hydraulic Load Cell w/ Gauge #52 (E-4 & 2%)', 'Range: 40K w/Spare Gauge #51 ', '2011-07-29', 25645, '7/29/2011', NULL), (25646, 2507, 'S/N 2229/1066 Digital', ' Digital Serial Number ', 'CONTINUED NEXT PAGE.........', '0000-00-00', 25646, '', NULL), (25647, 2508, 'S/N 3250', 'RDP Group Linear Transducer, Model: LDC1000A (OOS) (D-6027)', 'Range: 0.5 inches', '2004-09-29', 25647, '9/29/2004', NULL), (25648, 2509, '', '', '', '0000-00-00', 25648, '', NULL), (25649, 2510, '', ' ***Only use CSI for Repairs***', '', '0000-00-00', 25649, '', NULL), (25650, 2511, 'S/N 843-70138-326100', ' Load Cell Daytronic/ Sensotec 3570/TH/1588-01-03 (OOS)', 'Range: 50,000 lbs', NULL, 25650, 'New', NULL), (25651, 2512, '', '***ISO REQUESTED*** ***ISO 9000***', '***continued***', '0000-00-00', 25651, '', NULL), (25652, 2513, '', '', '', '0000-00-00', 25652, '', NULL), (25653, 2514, '', '', '', '0000-00-00', 25653, '', NULL), (25654, 2515, '', ' \"***ISO Requested***', '', '0000-00-00', 25654, '', NULL), (25655, 2516, '', '**6 Month Schedule** January & July', '', '0000-00-00', 25655, '', NULL), (25656, 2517, '', '', '', '0000-00-00', 25656, '', NULL), (25657, 2518, '', '', '', '0000-00-00', 25657, '', NULL), (25658, 2519, '', '***ISO Requested***', '', '0000-00-00', 25658, '', NULL), (25659, 2520, '', ' Send Certs to Billing Address', '', '0000-00-00', 25659, '', NULL), (25660, 2521, 'S/N 416', ' w/Test Spring', ' (SOL', '2008-03-11', 25660, '3/11/2008', NULL), (25661, 2522, '', '', '', '0000-00-00', 25661, '', NULL), (25662, 2523, '', '', '', '0000-00-00', 25662, '', NULL), (25663, 2524, '', '', '', '0000-00-00', 25663, '', NULL), (25664, 2525, '', '', '', '0000-00-00', 25664, '', NULL), (25665, 2526, '', ' ***Send Certs to Bill To Site***', '', '0000-00-00', 25665, '', NULL), (25666, 2527, '', '', '', '0000-00-00', 25666, '', NULL), (25667, 2528, '', '', '', '0000-00-00', 25667, '', NULL), (25668, 2529, '', '', '', '0000-00-00', 25668, '', NULL), (25669, 2530, '', '', '', '0000-00-00', 25669, '', NULL), (25670, 2531, '', '', '', '0000-00-00', 25670, '', NULL), (25671, 2532, '', '', '', '0000-00-00', 25671, '', NULL), (25672, 2533, '', '', '', '0000-00-00', 25672, '', NULL), (25673, 2534, '', '', '', '0000-00-00', 25673, '', NULL), (25674, 2535, 'S/N 10036 (ID# Q-2958)', 'Forney F-25EX-F-DR500 Digital Compression Machine (E-4)', 'Range: 2.5K to 250K (Storage)', '2010-04-07', 25674, '4/7/2010', NULL), (25675, 2536, '', '', '', '0000-00-00', 25675, '', NULL), (25676, 2537, 'S/N 100611000936', 'TIF Mdl. 9010A Scale (ID #Q-1756) (E-898) ', 'Range: 110 lb', '2016-01-19', 25676, '1/19/2016', NULL), (25677, 2538, 'S/N 29871', 'Ohaus DS 20L Scale (OOS) (E-989)', 'Range: ', NULL, 25677, 'New', NULL), (25678, 2539, '', 'Closed down the months of Dec. Jan. & Feb Someone should be', 'able to let us in.', '0000-00-00', 25678, '', NULL), (25679, 2540, '', '', '', '0000-00-00', 25679, '', NULL), (25680, 2541, '', ' ***ISO Requested***', '', '0000-00-00', 25680, '', NULL), (25681, 2542, '', '', '', '0000-00-00', 25681, '', NULL), (25682, 2543, '', '', '', '0000-00-00', 25682, '', NULL), (25683, 2544, '', '', '', '0000-00-00', 25683, '', NULL), (25684, 2545, '', '', '', '0000-00-00', 25684, '', NULL), (25685, 2546, '', '', '', '0000-00-00', 25685, '', NULL), (25686, 2547, '', '', '', '0000-00-00', 25686, '', NULL), (25687, 2548, '', '', '', '0000-00-00', 25687, '', NULL), (25688, 2549, '', '', '', '0000-00-00', 25688, '', NULL), (25689, 2550, '', '', '', '0000-00-00', 25689, '', NULL), (25690, 2551, '', '', '', '0000-00-00', 25690, '', NULL), (25691, 2552, '', '', '', '0000-00-00', 25691, '', NULL), (25692, 2553, 'S/N ', ' w/ Instron Extensometer (E-83)', 'Range: ', NULL, 25692, 'New', NULL), (25693, 2554, '', '', '', '0000-00-00', 25693, '', NULL), (25694, 2555, '', '', '', '0000-00-00', 25694, '', NULL), (25695, 2556, '', '', '', '0000-00-00', 25695, '', NULL), (25696, 2557, '', '', '', '0000-00-00', 25696, '', NULL), (25697, 2558, '', '', '', '0000-00-00', 25697, '', NULL), (25698, 2559, 'S/N Unknown', 'Forney PT-250 Pipe Tester (E-4 & C-497)', 'Range: 500K ', '2012-05-23', 25698, '5/23/2012', NULL), (25699, 2560, '', '***Need done every 6 Months (February & August)***', '', '0000-00-00', 25699, '', NULL), (25700, 2561, '', '', '', '0000-00-00', 25700, '', NULL), (25701, 2562, 'S/N L813222', ' w/Coti Load Cell (OOS)', '', '0000-00-00', 25701, '', NULL), (25702, 2563, 'S/N', 'Humboldt Penetrometer (E-4)', 'Range: 200 lbs ', NULL, 25702, 'New', NULL), (25703, 2564, 'S/N ', 'Structural Stress Analyzer Model 1000 (E-4 & 2%)', 'Range: 1K', NULL, 25703, 'New', NULL), (25704, 2565, '', '', '', '0000-00-00', 25704, '', NULL), (25705, 2566, '', '', '', '0000-00-00', 25705, '', NULL), (25706, 2567, '', '', '', '0000-00-00', 25706, '', NULL), (25707, 2568, '', '', '', '0000-00-00', 25707, '', NULL), (25708, 2569, 'S/N 643', 'Brainard-Kilman Unconfined Single Proving Ring (OOS)', 'Cap: 500 lbs (E-4 & Man Specs)', '2014-04-30', 25708, '4/30/2014', NULL), (25709, 2570, '', '', '', '0000-00-00', 25709, '', NULL), (25710, 2571, '', '', '', '0000-00-00', 25710, '', NULL); -- -------------------------------------------------------- -- -- Table structure for table `repair_price` -- CREATE TABLE `repair_price` ( `PriceID` int(11) NOT NULL, `Cost` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `repair_price` -- INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (1, '$409.00 '), (2, '$409.00 '), (3, '$359.00 '), (4, '$409.00 '), (5, '$409.00 '), (6, '$409.00 '), (7, '$409.00 '), (8, '$409.00 '), (9, '$409.00 '), (10, '$175.00 '), (11, '$250.00 '), (12, '$69.00 '), (13, '$409.00 '), (14, 'N/C'), (15, '$409.00 '), (16, '$409.00 '), (17, '$359.00 '), (18, '$667.00 '), (19, '$164.00 '), (20, '$359.00 '), (21, '$409.00 '), (22, '$409.00 '), (23, '$409.00 '), (24, '$359.00 '), (25, '$359.00 '), (26, '$409.00 '), (27, '$359.00 '), (28, '$409.00 '), (29, '$409.00 '), (30, '$409.00 '), (31, '$409.00 '), (32, '$175.00 '), (33, '$359.00 '), (34, '$359.00 '), (35, '$409.00 '), (36, '$409.00 '), (37, '$409.00 '), (38, '$409.00 '), (39, '$359.00 '), (40, '$409.00 '), (41, '$359.00 '), (42, '$409.00 '), (43, '$175.00 '), (44, '$409.00 '), (45, '$409.00 '), (46, '$359.00 '), (47, '$359.00 '), (48, '$409.00 '), (49, '$567.00 '), (50, '$597.00 '), (51, '$175.00 '), (52, '$175.00 '), (53, '$359.00 '), (54, '$409.00 '), (55, '$409.00 '), (56, '$409.00 '), (57, '$359.00 '), (58, '$409.00 '), (59, '$810.00 '), (60, '$409.00 '), (61, '$144.00 '), (62, '$409.00 '), (63, '$409.00 '), (64, '$409.00 '), (65, '$359.00 '), (66, '$175.00 '), (67, '$175.00 '), (68, '$35.00 '), (69, '$359.00 '), (70, '$359.00 '), (71, '$359.00 '), (72, '$409.00 '), (73, '$134.00 '), (74, '$409.00 '), (75, '$409.00 '), (76, '$175.00 '), (77, '$359.00 '), (78, '$409.00 '), (79, '$525.00 '), (80, '$409.00 '), (81, '$409.00 '), (82, '$85.00 '), (83, '$750.00 '), (84, '$409.00 '), (85, '$409.00 '), (86, '$409.00 '), (87, '$359.00 '), (88, '$359.00 '), (89, '$359.00 '), (90, '$409.00 '), (91, '$124.00 '), (92, '$224.00 '), (93, '$409.00 '), (94, '$359.00 '), (95, '$409.00 '), (96, '$409.00 '), (97, '$409.00 '), (98, '$175.00 '), (99, '$175.00 '), (100, '$409.00 '), (101, '$409.00 '), (102, '$409.00 '), (103, '$175.00 '), (104, '$359.00 '), (105, '$409.00 '), (106, '$409.00 '), (107, ''), (108, '$533.00 '), (109, ''), (110, '$409.00 '), (111, '$409.00 '), (112, '$589.00 '), (113, '$275.00 '), (114, '$204.00 '), (115, '$175.00 '), (116, '$1,570.00 '), (117, '$6,000.00 '), (118, '$4,000.00 '), (119, '$409.00 '), (120, '$359.00 '), (121, '$409.00 '), (122, '$359.00 '), (123, '$409.00 '), (124, '$409.00 '), (125, '$409.00 '), (126, '$359.00 '), (127, '$175.00 '), (128, '$175.00 '), (129, '$359.00 '), (130, '$409.00 '), (131, '$409.00 '), (132, '$409.00 '), (133, '$509.00 '), (134, '$409.00 '), (135, '$409.00 '), (136, '$409.00 '), (137, '$409.00 '), (138, '$409.00 '), (139, '$409.00 '), (140, '$409.00 '), (141, '$409.00 '), (142, '$409.00 '), (143, '$359.00 '), (144, '$409.00 '), (145, '$409.00 '), (146, '$409.00 '), (147, '$250.00 '), (148, '$175.00 '), (149, '$409.00 '), (150, '$409.00 '), (151, '$144.00 '), (152, '$359.00 '), (153, '$409.00 '), (154, '$175.00 '), (155, '$184.00 '), (156, '$250.00 '), (157, '$409.00 '), (158, '$359.00 '), (159, '$409.00 '), (160, '$209.00 '), (161, '$409.00 '), (162, '$409.00 '), (163, '$409.00 '), (164, '$409.00 '), (165, '$144.00 '), (166, '$175.00 '), (167, '$52.50 '), (168, '$409.00 '), (169, '$409.00 '), (170, '$359.00 '), (171, '$125.00 '), (172, '$125.00 '), (173, '$409.00 '), (174, '$409.00 '), (175, '$104.00 '), (176, '$359.00 '), (177, '$175.00 '), (178, '$409.00 '), (179, '$5,281.00 '), (180, '$409.00 '), (181, '$359.00 '), (182, '$409.00 '), (183, '$409.00 '), (184, '$409.00 '), (185, '$175.00 '), (186, '$25.00 '), (187, '$175.00 '), (188, '$359.00 '), (189, '$409.00 '), (190, '$409.00 '), (191, '$519.00 '), (192, '$554.00 '), (193, '$144.00 '), (194, '$409.00 '), (195, '$409.00 '), (196, '$1,234.00 '), (197, '$409.00 '), (198, '$144.00 '), (199, '$409.00 '), (200, '$606.00 '), (201, '$175.00 '), (202, '$359.00 '), (203, '$409.00 '), (204, '$409.00 '), (205, '$359.00 '), (206, '$359.00 '), (207, '$409.00 '), (208, '$175.00 '), (209, '$175.00 '), (210, '$175.00 '), (211, '$175.00 '), (212, '$175.00 '), (213, '$2,490.00 '), (214, '$409.00 '), (215, '$488.00 '), (216, '$409.00 '), (217, '$409.00 '), (218, '$409.00 '), (219, '$409.00 '), (220, '$409.00 '), (221, '$359.00 '), (222, '$409.00 '), (223, '$409.00 '), (224, '$409.00 '), (225, '$409.00 '), (226, '$409.00 '), (227, '$409.00 '), (228, '$409.00 '), (229, '$409.00 '), (230, '$409.00 '), (231, '$35.00 '), (232, '$35.00 '), (233, '$175.00 '), (234, '$1,050.00 '), (235, '$35.00 '), (236, ' (Repeat)'), (237, '$409.00 '), (238, '$409.00 '), (239, '$409.00 '), (240, '$409.00 '), (241, '$409.00 '), (242, '$509.00 '), (243, '$567.00 '), (244, '$359.00 '), (245, '$509.00 '), (246, '$409.00 '), (247, '$409.00 '), (248, '$409.00 '), (249, '$359.00 '), (250, '$409.00 '), (251, '$409.00 '), (252, '$409.00 '), (253, '$175.00 '), (254, '$175.00 '), (255, '$175.00 '), (256, '$175.00 '), (257, '$409.00 '), (258, '$409.00 '), (259, '$409.00 '), (260, '$409.00 '), (261, '$409.00 '), (262, ''), (263, '$409.00 '), (264, ''), (265, '$409.00 '), (266, '$175.00 '), (267, '$189.00 '), (268, '$175.00 '), (269, '$175.00 '), (270, '$85.00 '), (271, '$409.00 '), (272, '$409.00 '), (273, '$409.00 '), (274, '$359.00 '), (275, '$175.00 '), (276, '$409.00 '), (277, '$359.00 '), (278, '$409.00 '), (279, '$409.00 '), (280, '$409.00 '), (281, '$189.00 '), (282, '$409.00 '), (283, '$409.00 '), (284, '$478.00 '), (285, '$409.00 '), (286, '$409.00 '), (287, '$175.00 '), (288, '$94.00 '), (289, '$175.00 '), (290, '$175.00 '), (291, '$409.00 '), (292, '$359.00 '), (293, '$359.00 '), (294, '$409.00 '), (295, '$125.00 '), (296, '$401.00 '), (297, '$409.00 '), (298, '$409.00 '), (299, '$454.00 '), (300, '$409.00 '), (301, '$409.00 '), (302, '$409.00 '), (303, ''), (304, '$175.00 '), (305, '$175.00 '), (306, '$94.00 '), (307, '$409.00 '), (308, '$144.00 '), (309, '$144.00 '), (310, '$454.00 '), (311, '$359.00 '), (312, '$359.00 '), (313, '$409.00 '), (314, '$409.00 '), (315, '$359.00 '), (316, '$409.00 '), (317, '$409.00 '), (318, '$409.00 '), (319, '$409.00 '), (320, '$409.00 '), (321, '$409.00 '), (322, '$409.00 '), (323, '$409.00 '), (324, '$409.00 '), (325, '$409.00 '), (326, '$409.00 '), (327, '$409.00 '), (328, '$409.00 '), (329, '$409.00 '), (330, '$409.00 '), (331, '$359.00 '), (332, '$359.00 '), (333, '$359.00 '), (334, '$204.00 '), (335, '$409.00 '), (336, '$409.00 '), (337, '$409.00 '), (338, '$509.00 '), (339, '$469.00 '), (340, '$134.00 '), (341, '$114.00 '), (342, '$164.00 '), (343, '$175.00 '), (344, '$359.00 '), (345, '$409.00 '), (346, '$409.00 '), (347, '$409.00 '), (348, '$409.00 '), (349, '$359.00 '), (350, '$409.00 '), (351, '$409.00 '), (352, '$409.00 '), (353, '$7,500.00 '), (354, '$7,500.00 '), (355, '$409.00 '), (356, '$359.00 '), (357, '$175.00 '), (358, '$94.00 '), (359, '$409.00 '), (360, '$359.00 '), (361, '$409.00 '), (362, '$409.00 '), (363, ''), (364, '$409.00 '), (365, '$409.00 '), (366, '$409.00 '), (367, '$409.00 '), (368, '$409.00 '), (369, '$409.00 '), (370, '$359.00 '), (371, '$409.00 '), (372, '$409.00 '), (373, '$409.00 '), (374, '$175.00 '), (375, '$250.00 '), (376, '$409.00 '), (377, '$175.00 '), (378, '$175.00 '), (379, '$517.00 '), (380, '$409.00 '), (381, '$409.00 '), (382, '$359.00 '), (383, '$409.00 '), (384, '$567.00 '), (385, '$409.00 '), (386, '$175.00 '), (387, '$250.00 '), (388, ''), (389, ''), (390, '$409.00 '), (391, '$409.00 '), (392, '$489.00 '), (393, '$409.00 '), (394, '$409.00 '), (395, '$409.00 '), (396, '$359.00 '), (397, '$409.00 '), (398, '$4,500.00 '), (399, '$2,750.00 '), (400, '$409.00 '), (401, '$409.00 '), (402, '$409.00 '), (403, '$409.00 '), (404, '$175.00 '), (405, '$250.00 '), (406, '$175.00 '), (407, '$22.20 '), (408, '$175.00 '), (409, '$250.00 '), (410, '$175.00 '), (411, '$175.00 '), (412, '$175.00 '), (413, '$175.00 '), (414, '$533.00 '), (415, '$409.00 '), (416, '$2,500.00 '), (417, '$409.00 '), (418, '$454.00 '), (419, '$175.00 '), (420, '$600.00 '), (421, '$175.00 '), (422, '$209.00 '), (423, ''), (424, '$104.00 '), (425, ''), (426, '$409.00 '), (427, '$454.00 '), (428, ''), (429, '$567.00 '), (430, '$409.00 '), (431, '$409.00 '), (432, '$359.00 '), (433, '$409.00 '), (434, '$359.00 '), (435, '$409.00 '), (436, '$359.00 '), (437, '$409.00 '), (438, '$409.00 '), (439, '$409.00 '), (440, '$409.00 '), (441, '$409.00 '), (442, '$359.00 '), (443, '$409.00 '), (444, '$359.00 '), (445, '$409.00 '), (446, '$359.00 '), (447, '$104.00 '), (448, '$144.00 '), (449, '$359.00 '), (450, '$85.00 '), (451, '$409.00 '), (452, '$409.00 '), (453, '$409.00 '), (454, '$409.00 '), (455, '$175.00 '), (456, '$1.85 '), (457, '$175.00 '), (458, '$409.00 '), (459, '$409.00 '), (460, '$409.00 '), (461, '$409.00 '), (462, '$409.00 '), (463, '$575.00 '), (464, '$359.00 '), (465, '$409.00 '), (466, '$533.00 '), (467, '$175.00 '), (468, '$175.00 '), (469, '$409.00 '), (470, '$359.00 '), (471, '$567.00 '), (472, '$409.00 '), (473, '$409.00 '), (474, '$359.00 '), (475, '$509.00 '), (476, '$409.00 '), (477, '$409.00 '), (478, '$509.00 '), (479, '$359.00 '), (480, '$409.00 '), (481, '$409.00 '), (482, '$409.00 '), (483, '$359.00 '), (484, '$409.00 '), (485, '$409.00 '), (486, '$409.00 '), (487, '$409.00 '), (488, '$409.00 '), (489, '$409.00 '), (490, '$409.00 '), (491, '$409.00 '), (492, '$509.00 '), (493, '$509.00 '), (494, '$144.00 '), (495, '$144.00 '), (496, '$144.00 '), (497, '$409.00 '), (498, '$409.00 '), (499, '$409.00 '), (500, '$488.00 '), (501, '$409.00 '), (502, '$409.00 '), (503, '$409.00 '), (504, '$175.00 '), (505, '$359.00 '), (506, '$175.00 '), (507, '$175.00 '), (508, '$250.00 '), (509, '$359.00 '), (510, '$409.00 '), (511, '$409.00 '), (512, '$159.00 '), (513, '$567.00 '), (514, '$409.00 '), (515, '$359.00 '), (516, '$288.00 '), (517, '$204.00 '), (518, '$204.00 '), (519, '$409.00 '), (520, '$204.00 '), (521, '$409.00 '), (522, '$85.00 '), (523, '$409.00 '), (524, '$409.00 '), (525, '$409.00 '), (526, '$300.00 '), (527, '$409.00 '), (528, '$409.00 '), (529, '$409.00 '), (530, '$409.00 '), (531, '$359.00 '), (532, '$359.00 '), (533, '$409.00 '), (534, '$409.00 '), (535, '$175.00 '), (536, '$175.00 '), (537, '$409.00 '), (538, '$409.00 '), (539, '$409.00 '), (540, '$359.00 '), (541, '$85.00 '), (542, '$409.00 '), (543, '$409.00 '), (544, '$409.00 '), (545, '$409.00 '), (546, '$409.00 '), (547, '$134.00 '), (548, '$144.00 '), (549, '$409.00 '), (550, '$409.00 '), (551, '$359.00 '), (552, '$359.00 '), (553, '$359.00 '), (554, '$359.00 '), (555, '$70.00 '), (556, '$175.00 '), (557, '$134.00 '), (558, '$125.00 '), (559, '$409.00 '), (560, '$175.00 '), (561, '$409.00 '), (562, '$409.00 '), (563, '$359.00 '), (564, '$409.00 '), (565, '$409.00 '), (566, '$359.00 '), (567, '$409.00 '), (568, '$409.00 '), (569, '$409.00 '), (570, '$567.00 '), (571, '$359.00 '), (572, '$409.00 '), (573, '$409.00 '), (574, '$409.00 '), (575, '$409.00 '), (576, '$539.00 '), (577, '$409.00 '), (578, '$359.00 '), (579, '$175.00 '), (580, '$409.00 '), (581, ''), (582, '$175.00 '), (583, '$175.00 '), (584, ''), (585, '$359.00 '), (586, '$409.00 '), (587, '$409.00 '), (588, '$409.00 '), (589, '$359.00 '), (590, '$175.00 '), (591, '$409.00 '), (592, '$409.00 '), (593, '$409.00 '), (594, '$359.00 '), (595, '$175.00 '), (596, '$175.00 '), (597, '$175.00 '), (598, '$134.00 '), (599, '$409.00 '), (600, '$409.00 '), (601, '$409.00 '), (602, '$409.00 '), (603, '$85.00 '), (604, '$409.00 '), (605, '$488.00 '), (606, '$359.00 '), (607, '$409.00 '), (608, '$359.00 '), (609, '$409.00 '), (610, '$409.00 '), (611, '$359.00 '), (612, '$409.00 '), (613, '$409.00 '), (614, '$409.00 '), (615, '$70.00 '), (616, '$175.00 '), (617, '$409.00 '), (618, '$409.00 '), (619, '$409.00 '), (620, '$409.00 '), (621, '$409.00 '), (622, '$409.00 '), (623, '$409.00 '), (624, '$409.00 '), (625, '$359.00 '), (626, '$409.00 '), (627, '$409.00 '), (628, '$409.00 '), (629, '$175.00 '), (630, '$175.00 '), (631, '$164.00 '), (632, '$409.00 '), (633, '$409.00 '), (634, '$409.00 '), (635, '$409.00 '), (636, '$409.00 '), (637, ''), (638, ''), (639, '$144.00 '), (640, '$359.00 '), (641, '$268.00 '), (642, '$409.00 '), (643, '$409.00 '), (644, '$409.00 '), (645, '$175.00 '), (646, '$250.00 '), (647, '$175.00 '), (648, '$134.00 '), (649, '$175.00 '), (650, '$175.00 '), (651, '$409.00 '), (652, '$409.00 '), (653, '$533.00 '), (654, '$409.00 '), (655, '$14.00 '), (656, '$175.00 '), (657, '$409.00 '), (658, '$409.00 '), (659, '$104.00 '), (660, '$509.00 '), (661, '$559.00 '), (662, '$409.00 '), (663, '$409.00 '), (664, '$409.00 '), (665, '$488.00 '), (666, '$359.00 '), (667, '$409.00 '), (668, '$409.00 '), (669, '$718.00 '), (670, '$409.00 '), (671, '$409.00 '), (672, '$409.00 '), (673, '$409.00 '), (674, '$409.00 '), (675, '$409.00 '), (676, '$409.00 '), (677, '$409.00 '), (678, 'N/A'), (679, ''), (680, '$175.00 '), (681, '$125.00 '), (682, '$134.00 '), (683, '$250.00 '), (684, '$94.00 '), (685, '$94.00 '), (686, ''), (687, '$175.00 '), (688, '$175.00 '), (689, '$125.00 '), (690, '$125.00 '), (691, '$175.00 '), (692, '$175.00 '), (693, '$567.00 '), (694, '$144.00 '), (695, '$454.00 '), (696, '$409.00 '), (697, '$409.00 '), (698, '$409.00 '), (699, '$359.00 '), (700, '$359.00 '), (701, '$458.00 '), (702, '$359.00 '), (703, '$609.00 '), (704, '$409.00 '), (705, '$175.00 '), (706, '$359.00 '), (707, ''), (708, '$359.00 '), (709, '$359.00 '), (710, '$359.00 '), (711, '$409.00 '), (712, '$359.00 '), (713, '$409.00 '), (714, '$359.00 '), (715, '$4,000.00 '), (716, 'Included'), (717, '$409.00 '), (718, '$409.00 '), (719, '$359.00 '), (720, '$409.00 '), (721, '$409.00 '), (722, '$409.00 '), (723, '$409.00 '), (724, '$175.00 '), (725, '$175.00 '), (726, '$189.00 '), (727, '$64.00 '), (728, '$114.00 '), (729, '$409.00 '), (730, '$1,000.00 '), (731, '$409.00 '), (732, '$409.00 '), (733, '$409.00 '), (734, '$553.00 '), (735, '$409.00 '), (736, '$359.00 '), (737, '$409.00 '), (738, '$409.00 '), (739, '$359.00 '), (740, '$204.00 '), (741, '$409.00 '), (742, '$409.00 '), (743, '$409.00 '), (744, '$409.00 '), (745, '$204.00 '), (746, '$409.00 '), (747, '$409.00 '), (748, '$164.00 '), (749, '$488.00 '), (750, '$409.00 '), (751, '$409.00 '), (752, '$409.00 '), (753, '$567.00 '), (754, '$144.00 '), (755, '$144.00 '), (756, '$409.00 '), (757, '$409.00 '), (758, '$175.00 '), (759, '$64.00 '), (760, '$85.00 '), (761, '$409.00 '), (762, '$409.00 '), (763, '$359.00 '), (764, '$359.00 '), (765, '$409.00 '), (766, '$409.00 '), (767, '$359.00 '), (768, '$409.00 '), (769, '$409.00 '), (770, '$409.00 '), (771, '$409.00 '), (772, '$359.00 '), (773, '$359.00 '), (774, '$409.00 '), (775, '$409.00 '), (776, '$409.00 '), (777, '$149.00 '), (778, ''), (779, ''), (780, '$409.00 '), (781, '$409.00 '), (782, '$409.00 '), (783, '$409.00 '), (784, '$409.00 '), (785, '$175.00 '), (786, '$189.00 '), (787, ''), (788, '$175.00 '), (789, '$409.00 '), (790, '$389.00 '), (791, '$144.00 '), (792, '$359.00 '), (793, '$409.00 '), (794, '$359.00 '), (795, '$409.00 '), (796, '$85.00 '), (797, '$359.00 '), (798, '$359.00 '), (799, '$409.00 '), (800, '$409.00 '), (801, '$359.00 '), (802, '$409.00 '), (803, '$359.00 '), (804, '$409.00 '), (805, '$359.00 '), (806, '$134.00 '), (807, '$409.00 '), (808, '$409.00 '), (809, '$409.00 '), (810, '$359.00 '), (811, '$409.00 '), (812, '$359.00 '), (813, '$359.00 '), (814, '$488.00 '), (815, '$409.00 '), (816, '$409.00 '), (817, '$409.00 '), (818, '$409.00 '), (819, '$409.00 '), (820, '$409.00 '), (821, '$409.00 '), (822, '$359.00 '), (823, '$104.00 '), (824, '$175.00 '), (825, ''), (826, '$175.00 '), (827, '$175.00 '), (828, '$175.00 '), (829, '$175.00 '), (830, '$64.00 '), (831, '$204.00 '), (832, '$409.00 '), (833, '$409.00 '), (834, '$409.00 '), (835, '$144.00 '), (836, '$144.00 '), (837, '$409.00 '), (838, '$359.00 '), (839, '$409.00 '), (840, '$409.00 '), (841, '$409.00 '), (842, '$409.00 '), (843, '$144.00 '), (844, '$409.00 '), (845, '$409.00 '), (846, '$409.00 '), (847, '$409.00 '), (848, '$409.00 '), (849, '$409.00 '), (850, '$359.00 '), (851, '$409.00 '), (852, '$144.00 '), (853, '$189.00 '), (854, '$189.00 '), (855, '$204.00 '), (856, '$94.00 '), (857, ''), (858, '$409.00 '), (859, '$144.00 '), (860, ''), (861, '$488.00 '), (862, '$409.00 '), (863, '$359.00 '), (864, '$409.00 '), (865, '$409.00 '), (866, '$409.00 '), (867, '$484.00 '), (868, '$359.00 '), (869, '$359.00 '), (870, '$409.00 '), (871, '$409.00 '), (872, '$359.00 '), (873, '$729.00 '), (874, '$409.00 '), (875, '$359.00 '), (876, '$409.00 '), (877, '$409.00 '), (878, '$409.00 '), (879, '$144.00 '), (880, '$175.00 '), (881, '$175.00 '), (882, '$175.00 '), (883, '$409.00 '), (884, '$359.00 '), (885, '$409.00 '), (886, '$409.00 '), (887, '$409.00 '), (888, '$359.00 '), (889, '$2,500.00 '), (890, '$2,500.00 '), (891, ''), (892, '$125.00 '), (893, '$250.00 '), (894, '$409.00 '), (895, '$409.00 '), (896, '$409.00 '), (897, '$409.00 '), (898, '$567.00 '), (899, '$409.00 '), (900, '$409.00 '), (901, '$409.00 '), (902, '$359.00 '), (903, '$409.00 '), (904, '$454.00 '), (905, '$144.00 '), (906, '$189.00 '), (907, '$189.00 '), (908, '$75.00 '), (909, '$250.00 '), (910, '$409.00 '), (911, '$359.00 '), (912, '$409.00 '), (913, '$409.00 '), (914, '$409.00 '), (915, '$409.00 '), (916, '$409.00 '), (917, '$359.00 '), (918, '$409.00 '), (919, '$409.00 '), (920, '$409.00 '), (921, '$144.00 '), (922, '$104.00 '), (923, '$459.00 '), (924, '$134.00 '), (925, '$175.00 '), (926, '$175.00 '), (927, '$409.00 '), (928, '$409.00 '), (929, ''), (930, ''), (931, ''), (932, '$454.00 '), (933, ''), (934, '$409.00 '), (935, '$409.00 '), (936, '$104.00 '), (937, '$409.00 '), (938, '$409.00 '), (939, '$409.00 '), (940, '$409.00 '), (941, '$250.00 '), (942, '$409.00 '), (943, '$175.00 '), (944, '$175.00 '), (945, '$75.00 '), (946, '$639.00 '), (947, ''), (948, '$204.00 '), (949, '$409.00 '), (950, '$359.00 '), (951, '$359.00 '), (952, '$409.00 '), (953, '$409.00 '), (954, '$409.00 '), (955, '$359.00 '), (956, '$409.00 '), (957, '$104.00 '), (958, '$409.00 '), (959, '$409.00 '), (960, '$409.00 '), (961, '$409.00 '), (962, '$144.00 '), (963, '$359.00 '), (964, '$359.00 '), (965, '$175.00 '), (966, '$175.00 '), (967, '$134.00 '), (968, '$175.00 '), (969, '$175.00 '), (970, '$175.00 '), (971, '$104.00 '), (972, '$144.00 '), (973, '$1,320.00 '), (974, '$1,320.00 '), (975, '$1,699.50 '), (976, '$1,320.00 '), (977, '$1,320.00 '), (978, '$1,320.00 '), (979, '$1,320.00 '), (980, '$1,320.00 '), (981, '$2,465.76 '), (982, '$1,760.00 '), (983, '$1,320.00 '), (984, '$1,320.00 '), (985, '$1,320.00 '), (986, '$1,320.00 '), (987, '$409.00 '), (988, '$409.00 '), (989, '$409.00 '), (990, '$567.00 '), (991, '$409.00 '), (992, '$804.00 '), (993, '$144.00 '), (994, '$409.00 '), (995, '$409.00 '), (996, '$558.00 '), (997, '$409.00 '), (998, '$409.00 '), (999, '$409.00 '), (1000, '$409.00 '), (1001, '$359.00 '), (1002, '$488.00 '), (1003, '$409.00 '), (1004, '$144.00 '), (1005, '$409.00 '), (1006, '$359.00 '), (1007, '$409.00 '), (1008, '$488.00 '), (1009, '$409.00 '), (1010, '$409.00 '), (1011, '$409.00 '), (1012, '$409.00 '), (1013, '$409.00 '), (1014, '$204.00 '), (1015, '$359.00 '), (1016, '$409.00 '), (1017, '$409.00 '), (1018, '$359.00 '), (1019, '$359.00 '), (1020, '$94.00 '), (1021, '$359.00 '), (1022, '$409.00 '), (1023, '$409.00 '), (1024, '$409.00 '), (1025, '$409.00 '), (1026, '$409.00 '), (1027, '$409.00 '), (1028, '$409.00 '), (1029, '$409.00 '), (1030, '$409.00 '), (1031, '$409.00 '), (1032, '$359.00 '), (1033, '$175.00 '), (1034, '$175.00 '), (1035, '$359.00 '), (1036, '$567.00 '), (1037, '$454.00 '), (1038, '$204.00 '), (1039, '$204.00 '), (1040, '$359.00 '), (1041, '$144.00 '), (1042, '$409.00 '), (1043, '$144.00 '), (1044, '$567.00 '), (1045, '$144.00 '), (1046, '$359.00 '), (1047, '$409.00 '), (1048, '$144.00 '), (1049, '$409.00 '), (1050, '$359.00 '), (1051, '$409.00 '), (1052, '$409.00 '), (1053, '$409.00 '), (1054, 'N/C'), (1055, '$409.00 '), (1056, '$359.00 '), (1057, '$409.00 '), (1058, '$409.00 '), (1059, '$144.00 '), (1060, '$359.00 '), (1061, '$409.00 '), (1062, '$175.00 '), (1063, '$84.00 '), (1064, '$84.00 '), (1065, '$700.00 '), (1066, '$300.00 '), (1067, '$84.00 '), (1068, '$94.00 '), (1069, '$399.00 '), (1070, '$349.00 '), (1071, '$84.00 '), (1072, '$349.00 '), (1073, '$349.00 '), (1074, '$189.00 '), (1075, '$349.00 '), (1076, '$300.00 '), (1077, '$300.00 '), (1078, '$300.00 '), (1079, '$349.00 '), (1080, '$399.00 '), (1081, '$399.00 '), (1082, '$399.00 '), (1083, '$389.00 '), (1084, '$399.00 '), (1085, '$399.00 '), (1086, '$409.00 '), (1087, '$399.00 '), (1088, '$349.00 '), (1089, '$399.00 '), (1090, '$399.00 '), (1091, '$399.00 '), (1092, '$199.00 '), (1093, ''), (1094, '$349.00 '), (1095, '$349.00 '), (1096, '$389.00 '), (1097, ''), (1098, '$349.00 '), (1099, '$349.00 '), (1100, '$399.00 '), (1101, '$399.00 '), (1102, '$100.00 '), (1103, '$349.00 '), (1104, '$349.00 '), (1105, '$399.00 '), (1106, '$399.00 '), (1107, '$349.00 '), (1108, '$349.00 '), (1109, '$399.00 '), (1110, '$339.00 '), (1111, ''), (1112, '$399.00 '), (1113, '$349.00 '), (1114, '$349.00 '), (1115, ''), (1116, '$880.00 '), (1117, '$409.00 '), (1118, '$409.00 '), (1119, '$4.10 '), (1120, '$359.00 '), (1121, '$359.00 '), (1122, '$409.00 '), (1123, '$359.00 '), (1124, '$439.00 '), (1125, '$399.00 '), (1126, '$409.00 '), (1127, '$359.00 '), (1128, '$409.00 '), (1129, '$458.00 '), (1130, '$409.00 '), (1131, '$409.00 '), (1132, '$144.00 '), (1133, '$409.00 '), (1134, '$409.00 '), (1135, '$359.00 '), (1136, '$359.00 '), (1137, '$409.00 '), (1138, '$409.00 '), (1139, '$359.00 '), (1140, '$359.00 '), (1141, '$409.00 '), (1142, '$409.00 '), (1143, '$409.00 '), (1144, '$567.00 '), (1145, '$409.00 '), (1146, '$409.00 '), (1147, '$488.00 '), (1148, '$425.00 '), (1149, '$175.00 '), (1150, '$409.00 '), (1151, '$359.00 '), (1152, '$409.00 '), (1153, '$409.00 '), (1154, '$359.00 '), (1155, '$409.00 '), (1156, '$409.00 '), (1157, '$409.00 '), (1158, '$409.00 '), (1159, '$144.00 '), (1160, '$409.00 '), (1161, '$409.00 '), (1162, '$409.00 '), (1163, '$175.00 '), (1164, '$175.00 '), (1165, '$175.00 '), (1166, '$175.00 '), (1167, '$164.00 '), (1168, '$125.00 '), (1169, '$399.00 '), (1170, '$349.00 '), (1171, '$349.00 '), (1172, '$399.00 '), (1173, '$349.00 '), (1174, '$399.00 '), (1175, '$399.00 '), (1176, '$349.00 '), (1177, '$399.00 '), (1178, '$399.00 '), (1179, '$389.00 '), (1180, '$349.00 '), (1181, '$389.00 '), (1182, '$349.00 '), (1183, '$399.00 '), (1184, '$349.00 '), (1185, '$399.00 '), (1186, '$399.00 '), (1187, '$349.00 '), (1188, '$349.00 '), (1189, '$339.00 '), (1190, '$349.00 '), (1191, '$399.00 '), (1192, '$399.00 '), (1193, '$349.00 '), (1194, '$295.00 '), (1195, '$399.00 '), (1196, '$399.00 '), (1197, '$349.00 '), (1198, '$399.00 '), (1199, '$409.00 '), (1200, '$359.00 '), (1201, '$409.00 '), (1202, '$409.00 '), (1203, '$409.00 '), (1204, '$399.00 '), (1205, '$349.00 '), (1206, '$179.00 '), (1207, '$349.00 '), (1208, '$104.00 '), (1209, '$409.00 '), (1210, '$359.00 '), (1211, '$144.00 '), (1212, '$4,500.00 '), (1213, '$4,500.00 '), (1214, '$409.00 '), (1215, '$409.00 '), (1216, '$104.00 '), (1217, '$175.00 '), (1218, '$175.00 '), (1219, '$175.00 '), (1220, '$155.00 '), (1221, '$159.00 '), (1222, '$399.00 '), (1223, '$399.00 '), (1224, ''), (1225, '$579.00 '), (1226, '$399.00 '), (1227, '$430.00 '), (1228, '$429.00 '), (1229, '$139.00 '), (1230, '$399.00 '), (1231, '$84.00 '), (1232, '$144.00 '), (1233, '$409.00 '), (1234, '$359.00 '), (1235, '$349.00 '), (1236, '$409.00 '), (1237, '$359.00 '), (1238, '$175.00 '), (1239, '$650.00 '), (1240, '$1,500.00 '), (1241, '$619.72 '), (1242, '$619.72 '), (1243, '$225.35 '), (1244, '$619.72 '), (1245, '$619.72 '), (1246, '$435.00 '), (1247, '$400.00 '), (1248, '$395.00 '), (1249, '$619.72 '), (1250, '$619.72 '), (1251, '$619.72 '), (1252, '$619.72 '), (1253, '$1,500.00 '), (1254, '$302.75 '), (1255, '$619.72 '), (1256, '$556.34 '), (1257, '$619.72 '), (1258, '$619.72 '), (1259, '$619.72 '), (1260, '$570.42 '), (1261, '$570.42 '), (1262, '$570.42 '), (1263, '$619.72 '), (1264, '$619.72 '), (1265, '$570.42 '), (1266, '$619.72 '), (1267, '$619.72 '), (1268, '$619.72 '), (1269, '$619.72 '), (1270, '$619.72 '), (1271, '$619.72 '), (1272, '$852.11 '), (1273, '$225.35 '), (1274, '$225.35 '), (1275, '$619.72 '), (1276, '$409.00 '), (1277, '$409.00 '), (1278, '$409.00 '), (1279, '$409.00 '), (1280, '$409.00 '), (1281, '$359.00 '), (1282, '$409.00 '), (1283, '$409.00 '), (1284, '$409.00 '), (1285, '$409.00 '), (1286, '$409.00 '), (1287, '$409.00 '), (1288, '$144.00 '), (1289, '$409.00 '), (1290, '$409.00 '), (1291, '$409.00 '), (1292, '$409.00 '), (1293, '$55.00 '), (1294, '$459.00 '), (1295, '$359.00 '), (1296, '$359.00 '), (1297, '$409.00 '), (1298, '$409.00 '), (1299, '$359.00 '), (1300, '$409.00 '), (1301, '$409.00 '), (1302, '$409.00 '), (1303, '$409.00 '), (1304, '$359.00 '), (1305, '$409.00 '), (1306, '$359.00 '), (1307, '$409.00 '), (1308, '$409.00 '), (1309, '$175.00 '), (1310, '$175.00 '), (1311, '$2,400.00 '), (1312, '$650.00 '), (1313, '$159.00 '), (1314, '$409.00 '), (1315, '$359.00 '), (1316, '$349.00 '), (1317, '$399.00 '), (1318, '$339.00 '), (1319, '$349.00 '), (1320, '$399.00 '), (1321, 'See Bid'), (1322, '$389.00 '), (1323, '$389.00 '), (1324, ''), (1325, '$89.00 '), (1326, '$339.00 '), (1327, '$349.00 '), (1328, '$804.00 '), (1329, '$349.00 '), (1330, '$349.00 '), (1331, '$399.00 '), (1332, '$399.00 '), (1333, '$339.00 '), (1334, '$349.00 '), (1335, '$349.00 '), (1336, '$399.00 '), (1337, '$389.00 '), (1338, '$349.00 '), (1339, '$439.00 '), (1340, '$399.00 '), (1341, '$399.00 '), (1342, '$349.00 '), (1343, '$349.00 '), (1344, '$409.00 '), (1345, '$359.00 '), (1346, '$399.00 '), (1347, '$349.00 '), (1348, '$399.00 '), (1349, '$139.00 '), (1350, '$409.00 '), (1351, '$349.00 '), (1352, '$399.00 '), (1353, '$84.00 '), (1354, ''), (1355, '$359.00 '), (1356, '$409.00 '), (1357, '$409.00 '), (1358, '$409.00 '), (1359, '$359.00 '), (1360, '$134.00 '), (1361, '$164.00 '), (1362, '$359.00 '), (1363, '$349.00 '), (1364, '$359.00 '), (1365, '$449.00 '), (1366, '$409.00 '), (1367, '$409.00 '), (1368, '$409.00 '), (1369, '$399.00 '), (1370, '$359.00 '), (1371, '$409.00 '), (1372, '$409.00 '), (1373, '$409.00 '), (1374, '$409.00 '), (1375, '$409.00 '), (1376, '$449.00 '), (1377, '$409.00 '), (1378, '$409.00 '), (1379, '$409.00 '), (1380, '$409.00 '), (1381, '$409.00 '), (1382, '$349.00 '), (1383, '$359.00 '), (1384, '$359.00 '), (1385, '$175.00 '), (1386, '$175.00 '), (1387, '$175.00 '), (1388, '$409.00 '), (1389, '$359.00 '), (1390, '$674.00 '), (1391, '$409.00 '), (1392, '$144.00 '), (1393, '$639.00 '), (1394, '$409.00 '), (1395, '$409.00 '), (1396, '$409.00 '), (1397, '$409.00 '), (1398, '$359.00 '), (1399, '$409.00 '), (1400, '$409.00 '), (1401, '$409.00 '), (1402, '$409.00 '), (1403, '$468.00 '), (1404, '$409.00 '), (1405, '$409.00 '), (1406, '$409.00 '), (1407, '$1,438.00 '), (1408, '$175.00 '), (1409, '$175.00 '), (1410, '$250.00 '), (1411, '$175.00 '), (1412, '$349.00 '), (1413, '$359.00 '), (1414, '$100.00 '), (1415, '$94.00 '), (1416, '$174.00 '), (1417, '$149.00 '), (1418, '$144.00 '), (1419, '$125.00 '), (1420, '$175.00 '), (1421, '$409.00 '), (1422, '$349.00 '), (1423, '$489.00 '), (1424, '$349.00 '), (1425, '$399.00 '), (1426, '$399.00 '), (1427, '$349.00 '), (1428, '$399.00 '), (1429, '$399.00 '), (1430, '$84.00 '), (1431, '$399.00 '), (1432, '$489.00 '), (1433, '$199.00 '), (1434, '$105.00 '), (1435, '$349.00 '), (1436, '$399.00 '), (1437, '$349.00 '), (1438, '$399.00 '), (1439, '$409.00 '), (1440, '$349.00 '), (1441, '$399.00 '), (1442, '$409.00 '), (1443, '$419.00 '), (1444, ''), (1445, '$399.00 '), (1446, '$144.00 '), (1447, '$438.00 '), (1448, '$409.00 '), (1449, '$349.00 '), (1450, '$399.00 '), (1451, '$399.00 '), (1452, '$359.00 '), (1453, '$409.00 '), (1454, '$359.00 '), (1455, '$79.00 '), (1456, '$409.00 '), (1457, '$175.00 '), (1458, '$339.00 '), (1459, ''), (1460, '$409.00 '), (1461, '$409.00 '), (1462, '$409.00 '), (1463, '$409.00 '), (1464, '$409.00 '), (1465, '$409.00 '), (1466, '$409.00 '), (1467, '$409.00 '), (1468, '$359.00 '), (1469, '$175.00 '), (1470, '$175.00 '), (1471, '$175.00 '), (1472, '$175.00 '), (1473, '$70.00 '), (1474, '$399.00 '), (1475, '$349.00 '), (1476, '$700.00 '), (1477, '$399.00 '), (1478, '$600.00 '), (1479, '$349.00 '), (1480, '$429.00 '), (1481, '$399.00 '), (1482, '$389.00 '), (1483, '$349.00 '), (1484, '$399.00 '), (1485, '$349.00 '), (1486, '$139.00 '), (1487, '$399.00 '), (1488, '$399.00 '), (1489, '$399.00 '), (1490, '$399.00 '), (1491, '$339.00 '), (1492, '$389.00 '), (1493, '$399.00 '), (1494, '$339.00 '), (1495, '$399.00 '), (1496, '$349.00 '), (1497, '$800.00 '), (1498, '$409.00 '), (1499, '$349.00 '), (1500, '$399.00 '), (1501, '$409.00 '), (1502, '$359.00 '), (1503, '$359.00 '), (1504, '$409.00 '), (1505, '$488.00 '), (1506, '$359.00 '), (1507, '$349.00 '), (1508, '$409.00 '), (1509, '$369.00 '), (1510, '$409.00 '), (1511, '$409.00 '), (1512, '$359.00 '), (1513, '$1,000.00 '), (1514, '$1,500.00 '), (1515, '$750.00 '), (1516, '$1,000.00 '), (1517, '$1,500.00 '), (1518, '$1,500.00 '), (1519, '$1,500.00 '), (1520, '$1,500.00 '), (1521, '$1,500.00 '), (1522, '$1,500.00 '), (1523, '$1,500.00 '), (1524, '$1,600.00 '), (1525, '$1,500.00 '), (1526, '$3,000.00 '), (1527, '$500.00 '), (1528, '$1,500.00 '), (1529, '$3,000.00 '), (1530, '$409.00 '), (1531, '$359.00 '), (1532, '$409.00 '), (1533, '$409.00 '), (1534, '$567.00 '), (1535, '$144.00 '), (1536, '$144.00 '), (1537, '$425.00 '), (1538, '$359.00 '), (1539, '$409.00 '), (1540, '$409.00 '), (1541, '$409.00 '), (1542, '$409.00 '), (1543, '$359.00 '), (1544, '$409.00 '), (1545, '$409.00 '), (1546, '$409.00 '), (1547, '$409.00 '), (1548, '$409.00 '), (1549, '$409.00 '), (1550, '$409.00 '), (1551, '$409.00 '), (1552, '$409.00 '), (1553, '$409.00 '), (1554, '$409.00 '), (1555, '$409.00 '), (1556, '$499.00 '), (1557, '$444.00 '), (1558, '$409.00 '), (1559, '$409.00 '), (1560, '$409.00 '), (1561, '$729.00 '), (1562, '$468.00 '), (1563, '$409.00 '), (1564, '$205.00 '), (1565, '$444.00 '), (1566, '$175.00 '), (1567, '$175.00 '), (1568, '$175.00 '), (1569, '$300.00 '), (1570, '$175.00 '), (1571, ''), (1572, '$159.00 '), (1573, '$160.00 '), (1574, '$184.00 '), (1575, ''), (1576, '$75.00 '), (1577, '$175.00 '), (1578, '$399.00 '), (1579, '$349.00 '), (1580, '$749.00 '), (1581, '$399.00 '), (1582, '$389.00 '), (1583, '$349.00 '), (1584, '$349.00 '), (1585, '$349.00 '), (1586, '$399.00 '), (1587, ''), (1588, '$349.00 '), (1589, '$399.00 '), (1590, '$399.00 '), (1591, '$399.00 '), (1592, '$339.00 '), (1593, '$399.00 '), (1594, '$399.00 '), (1595, '$349.00 '), (1596, '$399.00 '), (1597, '$399.00 '), (1598, '$349.00 '), (1599, '$359.00 '), (1600, '$389.00 '), (1601, '$399.00 '), (1602, '$389.00 '), (1603, '$349.00 '), (1604, '$349.00 '), (1605, '$300.00 '), (1606, '$399.00 '), (1607, '$185.00 '), (1608, '$389.00 '), (1609, '$349.00 '), (1610, '$339.00 '), (1611, '$399.00 '), (1612, '$409.00 '), (1613, '$349.00 '), (1614, '$399.00 '), (1615, '$399.00 '), (1616, '$409.00 '), (1617, '$409.00 '), (1618, '$478.00 '), (1619, '$359.00 '), (1620, '$359.00 '), (1621, '$64.00 '), (1622, '$399.00 '), (1623, ''), (1624, '$409.00 '), (1625, '$399.00 '), (1626, '$409.00 '), (1627, '$567.00 '), (1628, '$409.00 '), (1629, '$198.00 '), (1630, '$409.00 '), (1631, '$409.00 '), (1632, '$409.00 '), (1633, '$409.00 '), (1634, '$359.00 '), (1635, '$409.00 '), (1636, '$359.00 '), (1637, ''), (1638, ''), (1639, '$500.00 '), (1640, 'Call for'), (1641, '$2.500.00'), (1642, '$1,624.08 '), (1643, '$570.42 '), (1644, '$619.72 '), (1645, '$619.72 '), (1646, '$619.72 '), (1647, '$619.72 '), (1648, '$619.72 '), (1649, '$619.72 '), (1650, '$1,260.56 '), (1651, '$619.72 '), (1652, '$225.35 '), (1653, '$915.00 '), (1654, '$619.72 '), (1655, '$619.72 '), (1656, '$619.72 '), (1657, '$619.72 '), (1658, '$619.72 '), (1659, '$570.42 '), (1660, '$619.72 '), (1661, '$570.42 '), (1662, '$619.72 '), (1663, '$619.72 '), (1664, '$619.72 '), (1665, '$619.72 '), (1666, '$570.42 '), (1667, '$570.42 '), (1668, '$619.72 '), (1669, '$619.72 '), (1670, '$570.42 '), (1671, '$570.42 '), (1672, '$619.72 '), (1673, '$409.00 '), (1674, '$619.72 '), (1675, '$838.03 '), (1676, '$619.72 '), (1677, '$570.42 '), (1678, '$619.72 '), (1679, '$75.00 '), (1680, '$525.00 '), (1681, '$435.00 '), (1682, '$400.00 '), (1683, '$430.00 '), (1684, '$430.00 '), (1685, '$385.00 '), (1686, '$435.00 '), (1687, '$395.00 '), (1688, '$395.00 '), (1689, '$400.00 '), (1690, '$400.00 '), (1691, '$395.00 '), (1692, '$395.00 '), (1693, '$400.00 '), (1694, '$430.00 '), (1695, '$395.00 '), (1696, '$435.00 '), (1697, '$570.42 '), (1698, '$753.52 '), (1699, '$619.72 '), (1700, '$225.35 '), (1701, '$409.00 '), (1702, '$567.00 '), (1703, '$409.00 '), (1704, '$144.00 '), (1705, '$559.00 '), (1706, '$509.00 '), (1707, '$359.00 '), (1708, '$409.00 '), (1709, '$409.00 '), (1710, '$409.00 '), (1711, '$409.00 '), (1712, '$409.00 '), (1713, '$409.00 '), (1714, '$409.00 '), (1715, '$409.00 '), (1716, '$359.00 '), (1717, '$409.00 '), (1718, '$359.00 '), (1719, '$409.00 '), (1720, '$409.00 '), (1721, '$409.00 '), (1722, '$409.00 '), (1723, '$359.00 '), (1724, '$359.00 '), (1725, '$359.00 '), (1726, '$175.00 '), (1727, ''), (1728, '$84.00 '), (1729, '$100.00 '), (1730, ''), (1731, '$349.00 '), (1732, '$359.00 '), (1733, '$359.00 '), (1734, ''), (1735, '$399.00 '), (1736, '$399.00 '), (1737, '$399.00 '), (1738, '$499.00 '), (1739, '$349.00 '), (1740, '$339.00 '), (1741, '$139.00 '), (1742, '$499.00 '), (1743, '$389.00 '), (1744, '$89.00 '), (1745, ''), (1746, '$399.00 '), (1747, '$399.00 '), (1748, '$349.00 '), (1749, '$349.00 '), (1750, '$399.00 '), (1751, ''), (1752, '$389.00 '), (1753, '$359.00 '), (1754, '$444.00 '), (1755, '$349.00 '), (1756, '$400.00 '), (1757, '$399.00 '), (1758, '$349.00 '), (1759, '$399.00 '), (1760, '$399.00 '), (1761, '$399.00 '), (1762, '$349.00 '), (1763, '$389.00 '), (1764, '$399.00 '), (1765, ''), (1766, '$399.00 '), (1767, '$399.00 '), (1768, '$399.00 '), (1769, '$389.00 '), (1770, '$349.00 '), (1771, '$399.00 '), (1772, '$399.00 '), (1773, '$399.00 '), (1774, '$399.00 '), (1775, '$169.00 '), (1776, '$165.00 '), (1777, '$479.00 '), (1778, '$399.00 '), (1779, '$389.00 '), (1780, ''), (1781, ''), (1782, '$349.00 '), (1783, ''), (1784, '$399.00 '), (1785, '$349.00 '), (1786, '$399.00 '), (1787, '$389.00 '), (1788, '$389.00 '), (1789, '$399.00 '), (1790, '$3,300.00 '), (1791, '$349.00 '), (1792, '$389.00 '), (1793, '$349.00 '), (1794, '$409.00 '), (1795, '$84.00 '), (1796, '$1,429.00 '), (1797, '$339.00 '), (1798, '$389.00 '), (1799, '$509.00 '), (1800, '$389.00 '), (1801, '$359.00 '), (1802, '$409.00 '), (1803, '$409.00 '), (1804, '$409.00 '), (1805, '$199.00 '), (1806, '$409.00 '), (1807, '$409.00 '), (1808, '$409.00 '), (1809, '$359.00 '), (1810, '$114.00 '), (1811, '$409.00 '), (1812, '$409.00 '), (1813, '$409.00 '), (1814, '$339.00 '), (1815, '$409.00 '), (1816, '$409.00 '), (1817, '$409.00 '), (1818, '$409.00 '), (1819, '$409.00 '), (1820, '$144.00 '), (1821, '$409.00 '), (1822, '$409.00 '), (1823, '$409.00 '), (1824, '$409.00 '), (1825, '$409.00 '), (1826, '$104.00 '), (1827, '$85.00 '), (1828, '$409.00 '), (1829, '$409.00 '), (1830, '$409.00 '), (1831, '$409.00 '), (1832, '$409.00 '), (1833, '$409.00 '), (1834, '$359.00 '), (1835, '$409.00 '), (1836, '$175.00 '), (1837, ''), (1838, '$409.00 '), (1839, '$144.00 '), (1840, '$409.00 '), (1841, '$488.00 '), (1842, '$560.00 '), (1843, '$144.00 '), (1844, '$144.00 '), (1845, '$409.00 '), (1846, '$409.00 '), (1847, '$425.00 '), (1848, '$359.00 '), (1849, '$409.00 '), (1850, '$359.00 '), (1851, '$409.00 '), (1852, '$175.00 '), (1853, '$175.00 '), (1854, '$175.00 '), (1855, '$175.00 '), (1856, '$175.00 '), (1857, '$409.00 '), (1858, '$349.00 '), (1859, '$349.00 '), (1860, '$349.00 '), (1861, ''), (1862, '$399.00 '), (1863, '$800.00 '), (1864, '$370.00 '), (1865, '$495.00 '), (1866, '$2,475.00 '), (1867, ''), (1868, ''), (1869, '$565.00 '), (1870, '$495.00 '), (1871, '$990.00 '), (1872, ''), (1873, '$349.00 '), (1874, '$349.00 '), (1875, '$339.00 '), (1876, ''), (1877, '$1,065.00 '), (1878, '$339.00 '), (1879, '$399.00 '), (1880, '$399.00 '), (1881, '$349.00 '), (1882, '$349.00 '), (1883, ''), (1884, '$399.00 '), (1885, '$349.00 '), (1886, '$409.00 '), (1887, '$399.00 '), (1888, '$399.00 '), (1889, '$349.00 '), (1890, '$349.00 '), (1891, ''), (1892, '$349.00 '), (1893, ''), (1894, ''), (1895, '$399.00 '), (1896, '$139.00 '), (1897, '$399.00 '), (1898, '$399.00 '), (1899, '$420.00 '), (1900, '$399.00 '), (1901, '$399.00 '), (1902, '$599.00 '), (1903, '$409.00 '), (1904, '$409.00 '), (1905, '$204.00 '), (1906, '$359.00 '), (1907, '$409.00 '), (1908, '$399.00 '), (1909, '$399.00 '), (1910, '$399.00 '), (1911, '$409.00 '), (1912, '$359.00 '), (1913, '$359.00 '), (1914, '$409.00 '), (1915, '$409.00 '), (1916, '$409.00 '), (1917, '$409.00 '), (1918, '$409.00 '), (1919, '$409.00 '), (1920, '$409.00 '), (1921, '$409.00 '), (1922, '$409.00 '), (1923, '$349.00 '), (1924, '$104.00 '), (1925, '$409.00 '), (1926, '$435.00 '), (1927, '$435.00 '), (1928, '$561.15 '), (1929, '$561.15 '), (1930, '$516.00 '), (1931, '$570.42 '), (1932, '$619.72 '), (1933, '$619.72 '), (1934, '$619.72 '), (1935, '$654.93 '), (1936, '$619.72 '), (1937, '$561.15 '), (1938, '$400.00 '), (1939, '$561.15 '), (1940, '$561.15 '), (1941, ''), (1942, '$3,500.00 '), (1943, '$370.00 '), (1944, ''), (1945, ''), (1946, '$409.00 '), (1947, '$409.00 '), (1948, '$409.00 '), (1949, '$409.00 '), (1950, '$409.00 '), (1951, '$175.00 '), (1952, '$175.00 '), (1953, '$175.00 '), (1954, '$175.00 '), (1955, '$175.00 '), (1956, '$70.00 '), (1957, '$70.00 '), (1958, '$184.00 '), (1959, '$60.00 '), (1960, '$100.00 '), (1961, '$164.00 '), (1962, '$75.00 '), (1963, '$349.00 '), (1964, '$785.00 '), (1965, '$399.00 '), (1966, '$399.00 '), (1967, '$399.00 '), (1968, '$430.00 '), (1969, '$349.00 '), (1970, '$349.00 '), (1971, '$399.00 '), (1972, '$359.00 '), (1973, '$349.00 '), (1974, '$349.00 '), (1975, '$349.00 '), (1976, '$399.00 '), (1977, '$399.00 '), (1978, ''), (1979, '$399.00 '), (1980, '$399.00 '), (1981, '$409.00 '), (1982, '$409.00 '), (1983, '$409.00 '), (1984, '$570.42 '), (1985, '$852.11 '), (1986, '$619.72 '), (1987, '$619.72 '), (1988, '$563.38 '), (1989, '$1,624.08 '), (1990, '$619.72 '), (1991, '$619.72 '), (1992, '$619.72 '), (1993, '$619.72 '), (1994, '$619.72 '), (1995, '$619.72 '), (1996, '$619.72 '), (1997, '$225.35 '), (1998, '$359.00 '), (1999, '$409.00 '), (2000, '$432.00 '), (2001, '$409.00 '), (2002, '$409.00 '), (2003, '$409.00 '), (2004, '$359.00 '), (2005, '$409.00 '), (2006, '$409.00 '), (2007, '$409.00 '), (2008, '$409.00 '), (2009, '$760.00 '), (2010, '$409.00 '), (2011, '$409.00 '), (2012, '$359.00 '), (2013, '$409.00 '), (2014, '$409.00 '), (2015, '$409.00 '), (2016, '$359.00 '), (2017, '$175.00 '), (2018, '$175.00 '), (2019, ''), (2020, '$399.00 '), (2021, '$399.00 '), (2022, '$439.00 '), (2023, '$399.00 '), (2024, '$399.00 '), (2025, '$349.00 '), (2026, '$349.00 '), (2027, '$409.00 '), (2028, '$349.00 '), (2029, '$150.00 '), (2030, '$399.00 '), (2031, '$349.00 '), (2032, '$349.00 '), (2033, '$329.00 '), (2034, '$389.00 '), (2035, '$389.00 '), (2036, '$399.00 '), (2037, '$399.00 '), (2038, '$399.00 '), (2039, '$399.00 '), (2040, '$389.00 '), (2041, '$139.00 '), (2042, '$399.00 '), (2043, '$399.00 '), (2044, '$399.00 '), (2045, '$349.00 '), (2046, '$399.00 '), (2047, '$339.00 '), (2048, '$349.00 '), (2049, '$420.00 '), (2050, '$409.00 '), (2051, '$349.00 '), (2052, '$339.00 '), (2053, '$389.00 '), (2054, '$409.00 '), (2055, '$409.00 '), (2056, '$409.00 '), (2057, '$409.00 '), (2058, '$359.00 '), (2059, '$409.00 '), (2060, '$399.00 '), (2061, '$349.00 '), (2062, '$359.00 '), (2063, '$349.00 '), (2064, '$399.00 '), (2065, '$339.00 '), (2066, '$124.00 '), (2067, '$409.00 '), (2068, '$409.00 '), (2069, '$399.00 '), (2070, '$409.00 '), (2071, '$400.00 '), (2072, '$709.00 '), (2073, '$144.00 '), (2074, '$359.00 '), (2075, '$204.00 '), (2076, '$409.00 '), (2077, '$409.00 '), (2078, '$409.00 '), (2079, '$729.00 '), (2080, '$359.00 '), (2081, '$349.00 '), (2082, '$439.00 '), (2083, '$359.00 '), (2084, '$134.00 '), (2085, '$409.00 '), (2086, '$409.00 '), (2087, '$359.00 '), (2088, '$175.00 '), (2089, '$409.00 '), (2090, '$409.00 '), (2091, '$359.00 '), (2092, '$520.00 '), (2093, '$409.00 '), (2094, '$359.00 '), (2095, '$359.00 '), (2096, '$509.00 '), (2097, '$409.00 '), (2098, '$409.00 '), (2099, '$409.00 '), (2100, '$409.00 '), (2101, '$359.00 '), (2102, '$175.00 '), (2103, '$175.00 '), (2104, '$175.00 '), (2105, '$175.00 '), (2106, '$59.00 '), (2107, '$409.00 '), (2108, '$359.00 '), (2109, ''), (2110, '$349.00 '), (2111, '$389.00 '), (2112, '$399.00 '), (2113, ''), (2114, '$399.00 '), (2115, '$399.00 '), (2116, '$399.00 '), (2117, '$349.00 '), (2118, '$419.00 '), (2119, '$389.00 '), (2120, '$399.00 '), (2121, '$399.00 '), (2122, '$359.00 '), (2123, '$399.00 '), (2124, '$399.00 '), (2125, '$349.00 '), (2126, '$399.00 '), (2127, '$399.00 '), (2128, '$399.00 '), (2129, '$399.00 '), (2130, '$389.00 '), (2131, '$609.00 '), (2132, '$1,400.00 '), (2133, '$399.00 '), (2134, '$399.00 '), (2135, '$349.00 '), (2136, '$399.00 '), (2137, '$349.00 '), (2138, '$349.00 '), (2139, '$399.00 '), (2140, '$349.00 '), (2141, '$399.00 '), (2142, '$409.00 '), (2143, '$409.00 '), (2144, '$409.00 '), (2145, '$409.00 '), (2146, '$399.00 '), (2147, '$349.00 '), (2148, '$519.00 '), (2149, '$144.00 '), (2150, '$459.00 '), (2151, '$409.00 '), (2152, '$144.00 '), (2153, '$359.00 '), (2154, '$399.00 '), (2155, '$409.00 '), (2156, '$409.00 '), (2157, '$409.00 '), (2158, '$399.00 '), (2159, '$409.00 '), (2160, ''), (2161, '$399.00 '), (2162, ''), (2163, ''), (2164, ''), (2165, ''), (2166, ''), (2167, ''), (2168, ''), (2169, ''), (2170, ''), (2171, ''), (2172, ''), (2173, ''), (2174, ''), (2175, ''), (2176, ''), (2177, ''), (2178, ''), (2179, ''), (2180, ''), (2181, ''), (2182, ''), (2183, ''), (2184, ''), (2185, ''), (2186, ''), (2187, ''), (2188, ''), (2189, ''), (2190, ''), (2191, ''), (2192, '$175.00 '), (2193, '$359.00 '), (2194, '$175.00 '), (2195, ''), (2196, '$175.00 '), (2197, ''), (2198, '$409.00 '), (2199, '$399.00 '), (2200, '$409.00 '), (2201, '$409.00 '), (2202, '$409.00 '), (2203, '$399.00 '), (2204, '$409.00 '), (2205, '$454.00 '), (2206, '$409.00 '), (2207, '$144.00 '), (2208, '$409.00 '), (2209, ''), (2210, '$409.00 '), (2211, '$370.00 '), (2212, '$409.00 '), (2213, '$419.00 '), (2214, '$369.00 '), (2215, '$419.00 '), (2216, '$409.00 '), (2217, '$399.00 '), (2218, '$349.00 '), (2219, '$409.00 '), (2220, '$409.00 '), (2221, '$399.00 '), (2222, '$464.00 '), (2223, '$349.00 '), (2224, '$399.00 '), (2225, '$359.00 '), (2226, '$1,500.00 '), (2227, '$349.00 '), (2228, '$409.00 '), (2229, '$409.00 '), (2230, '$399.00 '), (2231, '$409.00 '), (2232, '$1,000.00 '), (2233, '$700.00 '), (2234, '$409.00 '), (2235, '$409.00 '), (2236, '$359.00 '), (2237, '$409.00 '), (2238, '$409.00 '), (2239, '$409.00 '), (2240, '$359.00 '), (2241, '$409.00 '), (2242, '$517.00 '), (2243, '$409.00 '), (2244, '$488.00 '), (2245, '$409.00 '), (2246, '$399.00 '), (2247, '$409.00 '), (2248, '$600.00 '), (2249, '$300.00 '), (2250, '$519.00 '), (2251, '$409.00 '), (2252, '$419.00 '), (2253, '$409.00 '), (2254, '$349.00 '), (2255, '$369.00 '), (2256, '$567.00 '), (2257, '$409.00 '), (2258, '$359.00 '), (2259, '$409.00 '), (2260, '$399.00 '), (2261, '$409.00 '), (2262, '$409.00 '), (2263, '$409.00 '), (2264, '$369.00 '), (2265, '$419.00 '), (2266, '$419.00 '), (2267, '$399.00 '), (2268, '$409.00 '), (2269, '$409.00 '), (2270, '$349.00 '), (2271, '$409.00 '), (2272, '$359.00 '), (2273, '$399.00 '), (2274, '$770.00 '), (2275, '$409.00 '), (2276, '$409.00 '), (2277, '$359.00 '), (2278, '$264.00 '), (2279, '$409.00 '), (2280, '$369.00 '), (2281, '$134.00 '), (2282, '$89.00 '), (2283, ''), (2284, '$89.00 '), (2285, '$409.00 '), (2286, '$409.00 '), (2287, '$400.00 '), (2288, '$409.00 '), (2289, '$409.00 '), (2290, '$359.00 '), (2291, '$359.00 '), (2292, '$104.00 '), (2293, '$409.00 '), (2294, '$419.00 '), (2295, '$409.00 '), (2296, '$419.00 '), (2297, '$359.00 '), (2298, '$359.00 '), (2299, '$349.00 '), (2300, '$359.00 '), (2301, '$399.00 '), (2302, '$409.00 '), (2303, '$409.00 '), (2304, '$409.00 '), (2305, '$409.00 '), (2306, '$359.00 '), (2307, '$484.00 '), (2308, '$359.00 '), (2309, '$349.00 '), (2310, '$419.00 '), (2311, '$419.00 '), (2312, '$209.00 '), (2313, '$359.00 '), (2314, ''), (2315, '$1,570.00 '), (2316, '$419.00 '), (2317, '$468.00 '), (2318, '$554.00 '), (2319, '$409.00 '), (2320, '$409.00 '), (2321, '$401.00 '), (2322, '$104.00 '), (2323, ''), (2324, '$577.00 '), (2325, '$409.00 '), (2326, '$409.00 '), (2327, '$409.00 '), (2328, '$359.00 '), (2329, '$409.00 '), (2330, '$409.00 '), (2331, '$409.00 '), (2332, '$419.00 '), (2333, '$409.00 '), (2334, '$409.00 '), (2335, '$409.00 '), (2336, '$419.00 '), (2337, '$419.00 '), (2338, ''), (2339, '$409.00 '), (2340, '$85.00 '), (2341, '$359.00 '), (2342, '$359.00 '), (2343, '$359.00 '), (2344, '$409.00 '), (2345, '$339.00 '), (2346, '$419.00 '), (2347, '$399.00 '), (2348, '$359.00 '), (2349, '$409.00 '), (2350, '$409.00 '), (2351, '$409.00 '), (2352, '$409.00 '), (2353, '$409.00 '), (2354, '$409.00 '), (2355, '$349.00 '), (2356, '$409.00 '), (2357, '$409.00 '), (2358, '$399.00 '), (2359, '$409.00 '), (2360, '$419.00 '), (2361, '$409.00 '), (2362, '$444.00 '), (2363, '$399.00 '), (2364, '$204.00 '), (2365, '$419.00 '), (2366, '$419.00 '), (2367, '$409.00 '), (2368, '$389.00 '), (2369, '$409.00 '), (2370, '$577.00 '), (2371, '$409.00 '), (2372, '$399.00 '), (2373, '$409.00 '), (2374, '$409.00 '), (2375, '$409.00 '), (2376, '$409.00 '), (2377, '$389.00 '), (2378, '$409.00 '), (2379, '$409.00 '), (2380, '$359.00 '), (2381, '$359.00 '), (2382, '$419.00 '), (2383, '$409.00 '), (2384, '$419.00 '), (2385, '$349.00 '), (2386, '$399.00 '), (2387, '$359.00 '), (2388, '$409.00 '), (2389, '$409.00 '), (2390, '$369.00 '), (2391, '$359.00 '), (2392, '$349.00 '), (2393, '$109.00 '), (2394, '$238.00 '), (2395, '$359.00 '), (2396, '$464.00 '), (2397, '$409.00 '), (2398, '$409.00 '), (2399, '$359.00 '), (2400, '$198.00 '), (2401, '$419.00 '), (2402, '$409.00 '), (2403, '$409.00 '), (2404, '$419.00 '), (2405, '$1,234.00 '), (2406, '$419.00 '), (2407, '$488.00 '), (2408, '$420.00 '), (2409, '$409.00 '), (2410, '$349.00 '), (2411, '$419.00 '), (2412, '$409.00 '), (2413, '$359.00 '), (2414, '$419.00 '), (2415, '$409.00 '), (2416, '$369.00 '), (2417, '$399.00 '), (2418, ''), (2419, ''), (2420, '$399.00 '), (2421, '$419.00 '), (2422, '$399.00 '), (2423, '$409.00 '), (2424, '$409.00 '), (2425, '$399.00 '), (2426, '$399.00 '), (2427, '$399.00 '), (2428, '$389.00 '), (2429, '$438.00 '), (2430, '$419.00 '), (2431, '$359.00 '), (2432, '$84.00 '), (2433, '$409.00 '), (2434, '$533.00 '), (2435, '$349.00 '), (2436, '$409.00 '), (2437, '$409.00 '), (2438, '$409.00 '), (2439, '$409.00 '), (2440, '$204.00 '), (2441, '$425.00 '), (2442, '$409.00 '), (2443, '$489.00 '), (2444, '$419.00 '), (2445, '$349.00 '), (2446, '$139.00 '), (2447, '$369.00 '), (2448, '$359.00 '), (2449, '$409.00 '), (2450, '$389.00 '), (2451, '$409.00 '), (2452, '$419.00 '), (2453, '$409.00 '), (2454, '$409.00 '), (2455, '$409.00 '), (2456, '$409.00 '), (2457, '$409.00 '), (2458, '$419.00 '), (2459, '$399.00 '), (2460, '$420.00 '), (2461, 'Included'), (2462, '$4,000.00 '), (2463, '$399.00 '), (2464, '$399.00 '), (2465, '$359.00 '), (2466, '$359.00 '), (2467, '$359.00 '), (2468, '$409.00 '), (2469, '$359.00 '), (2470, '$349.00 '), (2471, '$369.00 '), (2472, '$409.00 '), (2473, '$409.00 '), (2474, '$567.00 '), (2475, '$359.00 '), (2476, '$409.00 '), (2477, '$419.00 '), (2478, '$439.00 '), (2479, '$409.00 '), (2480, '$760.00 '), (2481, '$359.00 '), (2482, '$169.00 '), (2483, '$204.00 '), (2484, '$144.00 '), (2485, '$144.00 '), (2486, '$409.00 '), (2487, '$409.00 '), (2488, '$409.00 '), (2489, '$399.00 '), (2490, '$409.00 '), (2491, '$124.00 '), (2492, '$224.00 '), (2493, '$674.00 '), (2494, '$409.00 '), (2495, '$409.00 '), (2496, '$359.00 '), (2497, '$359.00 '), (2498, '$359.00 '), (2499, '$399.00 '), (2500, '$409.00 '), (2501, '$409.00 '), (2502, '$349.00 '), (2503, '$409.00 '), (2504, '$409.00 '), (2505, '$369.00 '), (2506, '$144.00 '), (2507, '$109.00 '), (2508, '$459.00 '), (2509, '$144.00 '), (2510, '$359.00 '), (2511, '$409.00 '), (2512, '$359.00 '), (2513, '$409.00 '), (2514, '$359.00 '), (2515, '$419.00 '), (2516, '$409.00 '), (2517, '$359.00 '), (2518, '$359.00 '), (2519, '$359.00 '), (2520, '$369.00 '), (2521, '$409.00 '), (2522, '$409.00 '), (2523, '$409.00 '), (2524, '$389.00 '), (2525, '$409.00 '), (2526, '$409.00 '), (2527, '$359.00 '), (2528, '$339.00 '), (2529, '$409.00 '), (2530, '$389.00 '), (2531, '$409.00 '), (2532, '$399.00 '), (2533, '$419.00 '), (2534, '$419.00 '), (2535, '$409.00 '), (2536, '$419.00 '), (2537, '$419.00 '), (2538, '$89.00 '), (2539, '$577.00 '), (2540, '$409.00 '), (2541, '$419.00 '), (2542, '$409.00 '), (2543, '$409.00 '), (2544, '$359.00 '), (2545, '$349.00 '), (2546, '$399.00 '), (2547, '$409.00 '), (2548, '$399.00 '), (2549, '$409.00 '), (2550, '$409.00 '), (2551, '$399.00 '), (2552, '$409.00 '), (2553, '$409.00 '), (2554, '$419.00 '), (2555, '$409.00 '), (2556, '$409.00 '), (2557, '$409.00 '), (2558, '$389.00 '), (2559, '$359.00 '), (2560, '$409.00 '), (2561, '$567.00 '), (2562, '$409.00 '), (2563, '$359.00 '), (2564, '$409.00 '), (2565, '$409.00 '), (2566, '$349.00 '), (2567, '$399.00 '), (2568, '$89.00 '), (2569, '$144.00 '), (2570, '$419.00 '), (2571, '$399.00 '), (2572, '$144.00 '), (2573, ''), (2574, '$89.00 '), (2575, '$144.00 '), (2576, '$409.00 '), (2577, ''), (2578, ''), (2579, '$144.00 '), (2580, 'N/C'), (2581, '$175.00 '), (2582, ''), (2583, '$69.00 '), (2584, ''), (2585, '$144.00 '), (2586, 'N/C'), (2587, '$204.00 '), (2588, ''), (2589, '$409.00 '), (2590, '$164.00 '), (2591, ''), (2592, ''), (2593, ''), (2594, '$99.00 '), (2595, ''), (2596, ''), (2597, ''), (2598, ''), (2599, ''), (2600, ''), (2601, ''), (2602, ''), (2603, '$175.00 '), (2604, ''), (2605, ''), (2606, ''), (2607, ''), (2608, ''), (2609, '$409.00 '), (2610, ''), (2611, '$409.00 '), (2612, ''), (2613, ''), (2614, ''), (2615, ''), (2616, ''), (2617, ''), (2618, ''), (2619, ''), (2620, '$174.00 '), (2621, ''), (2622, ''), (2623, '$175.00 '), (2624, '$144.00 '), (2625, '$114.00 '), (2626, ''), (2627, '$409.00 '), (2628, '$189.00 '), (2629, ''), (2630, ' In'), (2631, '$158.00 '), (2632, '$144.00 '), (2633, '$204.00 '), (2634, ''), (2635, '$359.00 '), (2636, '$204.00 '), (2637, '$175.00 '), (2638, ''), (2639, '$35.00 '), (2640, ''), (2641, ''), (2642, ''), (2643, ''), (2644, '$134.00 '), (2645, '$409.00 '), (2646, ''), (2647, ''), (2648, ''), (2649, ''), (2650, '$204.00 '), (2651, '$409.00 '), (2652, ''), (2653, '$99.00 '), (2654, ''), (2655, ''), (2656, '$149.00 '), (2657, ''), (2658, ''), (2659, ''), (2660, ''), (2661, ''), (2662, '$124.00 '), (2663, ''), (2664, ''), (2665, ''), (2666, '$409.00 '), (2667, '$85.00 '), (2668, ''), (2669, ''), (2670, '$175.00 '), (2671, '$409.00 '), (2672, ''), (2673, ''), (2674, ''), (2675, ''), (2676, '$144.00 '), (2677, '$409.00 '), (2678, '$144.00 '), (2679, 'Included '), (2680, '$144.00 '), (2681, '$99.00 '), (2682, '$509.00 '), (2683, 'Inc. in'), (2684, ''), (2685, ''), (2686, ''), (2687, ''), (2688, ''), (2689, ''), (2690, ''), (2691, ''), (2692, '$204.00 '), (2693, ''), (2694, ''), (2695, ''), (2696, ''), (2697, ''), (2698, '$175.00 '), (2699, '$175.00 '), (2700, ''), (2701, '$144.00 '), (2702, ''), (2703, '$144.00 '), (2704, '$204.00 '), (2705, ''), (2706, ''), (2707, ''), (2708, ''), (2709, ''), (2710, '$85.00 '), (2711, '$409.00 '), (2712, ''), (2713, ''), (2714, ''), (2715, '$85.00 '), (2716, '$85.00 '), (2717, ''), (2718, ''), (2719, '$175.00 '), (2720, ''), (2721, ''), (2722, '$144.00 '), (2723, ''), (2724, ''), (2725, '$175.00 '), (2726, '$184.00 '), (2727, ''), (2728, ''), (2729, ''), (2730, ''), (2731, '$144.00 '), (2732, '$409.00 '), (2733, '$409.00 '), (2734, ''), (2735, '$409.00 '), (2736, '$144.00 '), (2737, '$175.00 '), (2738, '$140.00 '), (2739, '$204.00 '), (2740, '$204.00 '), (2741, ''), (2742, '$125.00 '), (2743, '$125.00 '), (2744, ''), (2745, ''), (2746, '$104.00 '), (2747, ''), (2748, ''), (2749, ''), (2750, ''), (2751, '$204.00 '), (2752, ''), (2753, ''), (2754, '$85.00 '), (2755, ''), (2756, '$175.00 '), (2757, '$17.11 '), (2758, ''), (2759, ''), (2760, ''), (2761, ''), (2762, ''), (2763, ''), (2764, '$144.00 '), (2765, ''), (2766, ''), (2767, ''), (2768, '$409.00 '), (2769, '$144.00 '), (2770, ''), (2771, 'Included '), (2772, ''), (2773, ''), (2774, '$409.00 '), (2775, ''), (2776, '$144.00 '), (2777, ''), (2778, ''), (2779, ''), (2780, ''), (2781, ''), (2782, ''), (2783, ''), (2784, ''), (2785, '$204.00 '), (2786, ' '), (2787, ''), (2788, ''), (2789, ''), (2790, ''), (2791, '$409.00 '), (2792, ''), (2793, '$204.00 '), (2794, ''), (2795, '$79.00 '), (2796, ''), (2797, ''), (2798, ''), (2799, ''), (2800, ''), (2801, '$204.00 '), (2802, '$35.00 '), (2803, '$35.00 '), (2804, ''), (2805, ''), (2806, '$35.00 '), (2807, '$144.00 '), (2808, ''), (2809, '$409.00 '), (2810, '$488.00 '), (2811, '$149.00 '), (2812, ''), (2813, '$149.00 '), (2814, '$158.00 '), (2815, ''), (2816, 'Inc.'), (2817, ''), (2818, '$209.00 '), (2819, '$209.00 '), (2820, '$99.00 '), (2821, '`'), (2822, ''), (2823, ''), (2824, ''), (2825, ''), (2826, ''), (2827, ''), (2828, ''), (2829, ''), (2830, ''), (2831, ''), (2832, '$359.00 '), (2833, '$144.00 '), (2834, ''), (2835, '$144.00 '), (2836, ''), (2837, ''), (2838, ''), (2839, ''), (2840, ''), (2841, ''), (2842, '$409.00 '), (2843, ''), (2844, ''), (2845, '$204.00 '), (2846, ''), (2847, ''), (2848, ''), (2849, ''), (2850, ''), (2851, ''), (2852, '$189.00 '), (2853, ''), (2854, ''), (2855, '$174.00 '), (2856, ''), (2857, ''), (2858, '$175.00 '), (2859, '$94.00 '), (2860, ''), (2861, ''), (2862, ''), (2863, ''), (2864, ''), (2865, '$85.00 '), (2866, '$125.00 '), (2867, '$224.00 '), (2868, ''), (2869, '$144.00 '), (2870, 'Inc.'), (2871, '$409.00 '), (2872, ''), (2873, ''), (2874, '$144.00 '), (2875, '$175.00 '), (2876, ''), (2877, '$94.00 '), (2878, ''), (2879, '$144.00 '), (2880, '$144.00 '), (2881, ''), (2882, '$85.00 '), (2883, ''), (2884, ''), (2885, ''), (2886, ''), (2887, '$85.00 '), (2888, ''), (2889, ''), (2890, ''), (2891, '$79.00 '), (2892, ''), (2893, '$209.00 '), (2894, '$224.00 '), (2895, ''), (2896, ''), (2897, ''), (2898, ''), (2899, '$359.00 '), (2900, '$204.00 '), (2901, '$99.00 '), (2902, ''), (2903, ''), (2904, ''), (2905, '$204.00 '), (2906, ''), (2907, ''), (2908, ''), (2909, 'inc.'), (2910, ''), (2911, ''), (2912, '$114.00 '), (2913, ''), (2914, ''), (2915, ''), (2916, '$144.00 '), (2917, 'Inc.'), (2918, ''), (2919, '$85.00 '), (2920, ''), (2921, ''), (2922, '$149.00 '), (2923, ''), (2924, ''), (2925, ''), (2926, ''), (2927, '$359.00 '), (2928, ''), (2929, '$94.00 '), (2930, ''), (2931, ''), (2932, ''), (2933, '$409.00 '), (2934, ''), (2935, '$144.00 '), (2936, ''), (2937, ''), (2938, ''), (2939, '$85.00 '), (2940, ''), (2941, ''), (2942, ''), (2943, '$359.00 '), (2944, '$144.00 '), (2945, '$175.00 '), (2946, '$175.00 '), (2947, ''), (2948, '$175.00 '), (2949, ''), (2950, '$259.00 '), (2951, ''), (2952, ''), (2953, '$99.00 '), (2954, ''), (2955, ''), (2956, '$204.00 '), (2957, ''), (2958, ''), (2959, ''), (2960, ''), (2961, '$204.00 '), (2962, ''), (2963, '$409.00 '), (2964, '$174.00 '), (2965, ''), (2966, ''), (2967, '$144.00 '), (2968, '$209.00 '), (2969, 'Incw/Price'), (2970, ''), (2971, '$85.00 '), (2972, ''), (2973, ''), (2974, ''), (2975, '$50.00 '), (2976, ''), (2977, ''), (2978, '$150.36 '), (2979, '$100.00 '), (2980, ''), (2981, ''), (2982, '$175.00 '), (2983, ''), (2984, ''), (2985, 'Included'), (2986, ''), (2987, ''), (2988, ''), (2989, ' Include'), (2990, '$175.00 '), (2991, '$30.00 '), (2992, ''), (2993, '$187.00 '), (2994, '$144.00 '), (2995, ''), (2996, '$144.00 '), (2997, ''), (2998, 'included'); INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (2999, '$144.00 '), (3000, '$259.00 '), (3001, ''), (3002, '$409.00 '), (3003, ''), (3004, '$204.00 '), (3005, '$99.00 '), (3006, 'Inc. Price'), (3007, ''), (3008, '$409.00 '), (3009, ''), (3010, '$204.00 '), (3011, ''), (3012, ''), (3013, ''), (3014, ''), (3015, ''), (3016, '$144.00 '), (3017, ''), (3018, '$104.00 '), (3019, '$204.00 '), (3020, '$85.00 '), (3021, '$85.00 '), (3022, '$85.00 '), (3023, ''), (3024, ''), (3025, ''), (3026, ''), (3027, '$12.53 '), (3028, '$175.00 '), (3029, '$159.00 '), (3030, ''), (3031, ''), (3032, ''), (3033, '$409.00 '), (3034, 'included'), (3035, '$359.00 '), (3036, ''), (3037, 'Included '), (3038, '$175.00 '), (3039, ''), (3040, '$409.00 '), (3041, ''), (3042, ''), (3043, '$204.00 '), (3044, ''), (3045, '$144.00 '), (3046, 'Inc. in'), (3047, '$209.00 '), (3048, '$359.00 '), (3049, '$144.00 '), (3050, ''), (3051, '$79.00 '), (3052, ''), (3053, ''), (3054, ''), (3055, ''), (3056, ''), (3057, ''), (3058, ''), (3059, '$144.00 '), (3060, 'Inc.'), (3061, ''), (3062, '$144.00 '), (3063, '$510.00 '), (3064, '$359.00 '), (3065, '$204.00 '), (3066, '$144.00 '), (3067, '$144.00 '), (3068, ''), (3069, ''), (3070, '$144.00 '), (3071, '$1,200.00 '), (3072, ''), (3073, ''), (3074, ' inc.'), (3075, '$175.00 '), (3076, '$104.00 '), (3077, ''), (3078, ''), (3079, '$250.00 '), (3080, ''), (3081, ''), (3082, ''), (3083, '$325.00 '), (3084, '$144.00 '), (3085, '$149.00 '), (3086, '$79.00 '), (3087, 'Inc. in '), (3088, '$79.00 '), (3089, '$79.00 '), (3090, '$409.00 '), (3091, '$79.00 '), (3092, ''), (3093, '$85.00 '), (3094, ''), (3095, '$85.00 '), (3096, ''), (3097, ''), (3098, '$174.00 '), (3099, ''), (3100, ''), (3101, '$409.00 '), (3102, ''), (3103, ''), (3104, ''), (3105, ''), (3106, ''), (3107, ''), (3108, ''), (3109, ''), (3110, ''), (3111, ''), (3112, '$85.00 '), (3113, ''), (3114, ''), (3115, ''), (3116, '$409.00 '), (3117, ''), (3118, '$134.00 '), (3119, '$144.00 '), (3120, ''), (3121, ''), (3122, ''), (3123, 'Inclw/abov'), (3124, ''), (3125, ''), (3126, '$70.00 '), (3127, ''), (3128, ''), (3129, '$125.00 '), (3130, '$70.00 '), (3131, ''), (3132, ''), (3133, ''), (3134, '$204.00 '), (3135, ''), (3136, ''), (3137, ''), (3138, ''), (3139, ''), (3140, ''), (3141, 'Inc. in '), (3142, ''), (3143, ''), (3144, ''), (3145, ''), (3146, '$204.00 '), (3147, '$409.00 '), (3148, '$144.00 '), (3149, ''), (3150, ''), (3151, '$85.00 '), (3152, '$159.00 '), (3153, '$175.00 '), (3154, ''), (3155, ''), (3156, '$209.00 '), (3157, '$204.00 '), (3158, ''), (3159, ''), (3160, ''), (3161, ''), (3162, ''), (3163, '$409.00 '), (3164, ' Inc.'), (3165, ''), (3166, '$175.00 '), (3167, ''), (3168, '$175.00 '), (3169, '$134.00 '), (3170, '$409.00 '), (3171, ''), (3172, '$144.00 '), (3173, ''), (3174, '$85.00 '), (3175, '$204.00 '), (3176, 'Inc. Price'), (3177, ''), (3178, '$149.00 '), (3179, '$149.00 '), (3180, ''), (3181, ''), (3182, '$85.00 '), (3183, ''), (3184, ''), (3185, '$149.00 '), (3186, '$70.00 '), (3187, ''), (3188, '$204.00 '), (3189, ''), (3190, ''), (3191, ''), (3192, '$158.00 '), (3193, '$209.00 '), (3194, ''), (3195, ''), (3196, ''), (3197, ''), (3198, '$144.00 '), (3199, ''), (3200, ''), (3201, ''), (3202, '$164.00 '), (3203, ''), (3204, ''), (3205, ''), (3206, ''), (3207, ''), (3208, '$144.00 '), (3209, '$359.00 '), (3210, '$144.00 '), (3211, '$144.00 '), (3212, 'Included'), (3213, ''), (3214, ''), (3215, ''), (3216, '$175.00 '), (3217, ''), (3218, ''), (3219, ''), (3220, ''), (3221, ''), (3222, '$174.00 '), (3223, ''), (3224, '$149.00 '), (3225, '$144.00 '), (3226, '$36.00 '), (3227, ''), (3228, ''), (3229, ''), (3230, '$409.00 '), (3231, '$149.00 '), (3232, ''), (3233, ''), (3234, ''), (3235, ''), (3236, 'Incw/Above'), (3237, '$409.00 '), (3238, '$409.00 '), (3239, ''), (3240, '$450.00 '), (3241, ''), (3242, ''), (3243, '$144.00 '), (3244, ''), (3245, '$79.00 '), (3246, ''), (3247, ''), (3248, ''), (3249, '$175.00 '), (3250, ''), (3251, '$175.00 '), (3252, '$125.00 '), (3253, '$134.00 '), (3254, '$175.00 '), (3255, '$94.00 '), (3256, '$94.00 '), (3257, '$45.00 '), (3258, ''), (3259, ''), (3260, ''), (3261, '$125.00 '), (3262, ''), (3263, ''), (3264, 'Inc. in '), (3265, '$144.00 '), (3266, 'Inc.'), (3267, ''), (3268, ''), (3269, ''), (3270, ''), (3271, '$409.00 '), (3272, ''), (3273, ''), (3274, '$509.00 '), (3275, ''), (3276, ''), (3277, '$204.00 '), (3278, ''), (3279, ''), (3280, ''), (3281, ''), (3282, ''), (3283, ''), (3284, 'Inc.'), (3285, ''), (3286, ''), (3287, 'in'), (3288, '$510.00 '), (3289, ''), (3290, 'Inc.'), (3291, ''), (3292, ''), (3293, ''), (3294, ''), (3295, '$175.00 '), (3296, ''), (3297, ''), (3298, ''), (3299, '$114.00 '), (3300, ''), (3301, ''), (3302, ''), (3303, '$204.00 '), (3304, '$359.00 '), (3305, 'Inc.'), (3306, '$209.00 '), (3307, '$204.00 '), (3308, '$144.00 '), (3309, ''), (3310, ''), (3311, '$204.00 '), (3312, '$204.00 '), (3313, ''), (3314, '$488.00 '), (3315, ''), (3316, '$409.00 '), (3317, ''), (3318, ''), (3319, ''), (3320, '$149.00 '), (3321, '$425.00 '), (3322, '$149.00 '), (3323, ''), (3324, ''), (3325, ''), (3326, '$144.00 '), (3327, ''), (3328, '$144.00 '), (3329, ''), (3330, ''), (3331, ''), (3332, '$204.00 '), (3333, ''), (3334, ''), (3335, ''), (3336, ''), (3337, '$409.00 '), (3338, ' '), (3339, '$158.00 '), (3340, '$79.00 '), (3341, ''), (3342, ''), (3343, ''), (3344, '$85.00 '), (3345, '$409.00 '), (3346, ''), (3347, '$204.00 '), (3348, '$149.00 '), (3349, '$79.00 '), (3350, '$79.00 '), (3351, ''), (3352, ''), (3353, '$204.00 '), (3354, '$144.00 '), (3355, '$144.00 '), (3356, ''), (3357, '$189.00 '), (3358, '$164.00 '), (3359, ''), (3360, ''), (3361, ''), (3362, '$144.00 '), (3363, '$144.00 '), (3364, ''), (3365, ''), (3366, ''), (3367, '$85.00 '), (3368, ''), (3369, ''), (3370, '$144.00 '), (3371, ''), (3372, ''), (3373, '$99.00 '), (3374, '$204.00 '), (3375, ''), (3376, ''), (3377, '$134.00 '), (3378, '$144.00 '), (3379, ''), (3380, ''), (3381, ''), (3382, '$359.00 '), (3383, '$85.00 '), (3384, ''), (3385, ' '), (3386, '$164.00 '), (3387, '$144.00 '), (3388, ''), (3389, ''), (3390, ''), (3391, ''), (3392, ''), (3393, ''), (3394, ''), (3395, '$175.00 '), (3396, ''), (3397, '$175.00 '), (3398, '$175.00 '), (3399, '$175.00 '), (3400, '$175.00 '), (3401, ''), (3402, '$170.00 '), (3403, '$409.00 '), (3404, '$459.00 '), (3405, '$409.00 '), (3406, '$144.00 '), (3407, '$144.00 '), (3408, ''), (3409, ''), (3410, ''), (3411, ''), (3412, '$409.00 '), (3413, '$79.00 '), (3414, '$144.00 '), (3415, ''), (3416, ''), (3417, '$409.00 '), (3418, '$204.00 '), (3419, ''), (3420, ''), (3421, ''), (3422, ''), (3423, '$144.00 '), (3424, 'inc.'), (3425, 'inc.'), (3426, '$79.00 '), (3427, ''), (3428, ''), (3429, ''), (3430, '$104.00 '), (3431, '$174.00 '), (3432, ''), (3433, ''), (3434, ''), (3435, ''), (3436, ''), (3437, ''), (3438, ''), (3439, ''), (3440, ''), (3441, 'N/C'), (3442, ''), (3443, ''), (3444, '$409.00 '), (3445, ''), (3446, ''), (3447, ''), (3448, '$509.00 '), (3449, '$125.00 '), (3450, ''), (3451, ''), (3452, ''), (3453, '$175.00 '), (3454, ''), (3455, ''), (3456, ''), (3457, ''), (3458, ''), (3459, '$79.00 '), (3460, '$2,500.00 '), (3461, ''), (3462, ''), (3463, '$125.00 '), (3464, ''), (3465, '$204.00 '), (3466, '$79.00 '), (3467, ''), (3468, ''), (3469, 'Included'), (3470, ''), (3471, ''), (3472, '$55.00 '), (3473, ''), (3474, '$144.00 '), (3475, ''), (3476, '$144.00 '), (3477, 'Inc.'), (3478, 'Inc.'), (3479, ''), (3480, '$250.00 '), (3481, ''), (3482, ''), (3483, '$99.00 '), (3484, ''), (3485, ''), (3486, '$755.00 '), (3487, ''), (3488, ''), (3489, ''), (3490, '$144.00 '), (3491, '$149.00 '), (3492, '$144.00 '), (3493, '$104.00 '), (3494, 'Included'), (3495, ''), (3496, ''), (3497, '$175.00 '), (3498, ''), (3499, ''), (3500, '$144.00 '), (3501, '$144.00 '), (3502, '$174.00 '), (3503, ''), (3504, '$144.00 '), (3505, ''), (3506, '$454.00 '), (3507, '$104.00 '), (3508, ''), (3509, ''), (3510, ''), (3511, '$149.00 '), (3512, '$175.00 '), (3513, '$409.00 '), (3514, ''), (3515, '$175.00 '), (3516, ''), (3517, 'included'), (3518, ''), (3519, '$204.00 '), (3520, '$104.00 '), (3521, ''), (3522, '$104.00 '), (3523, ''), (3524, '$144.00 '), (3525, ''), (3526, '$204.00 '), (3527, ''), (3528, '$79.00 '), (3529, '$204.00 '), (3530, ''), (3531, ''), (3532, '$209.00 '), (3533, '$144.00 '), (3534, '$104.00 '), (3535, '$204.00 '), (3536, ''), (3537, ''), (3538, '$134.00 '), (3539, '$175.00 '), (3540, '$175.00 '), (3541, '$250.00 '), (3542, '$104.00 '), (3543, '$144.00 '), (3544, '$1,320.00 '), (3545, '$1,320.00 '), (3546, '$1,628.00 '), (3547, '$1,320.00 '), (3548, ''), (3549, ''), (3550, ''), (3551, ''), (3552, ''), (3553, ''), (3554, ''), (3555, ''), (3556, ''), (3557, ''), (3558, ''), (3559, ''), (3560, ''), (3561, '$883.00 '), (3562, ''), (3563, 'Included'), (3564, '$79.00 '), (3565, '$144.00 '), (3566, '$144.00 '), (3567, 'Inc.'), (3568, '$144.00 '), (3569, '$144.00 '), (3570, ''), (3571, ''), (3572, ''), (3573, '$160.00 '), (3574, ''), (3575, '$144.00 '), (3576, ''), (3577, '$204.00 '), (3578, '$144.00 '), (3579, 'Inc. in pr'), (3580, '$409.00 '), (3581, '$409.00 '), (3582, '$204.00 '), (3583, '$204.00 '), (3584, '$409.00 '), (3585, 'Included'), (3586, '$204.00 '), (3587, ''), (3588, ''), (3589, '$204.00 '), (3590, '$409.00 '), (3591, ''), (3592, '$204.00 '), (3593, ''), (3594, '$149.00 '), (3595, ''), (3596, ''), (3597, '$204.00 '), (3598, '$85.00 '), (3599, '$409.00 '), (3600, ''), (3601, '$359.00 '), (3602, ''), (3603, ''), (3604, '$175.00 '), (3605, ''), (3606, ''), (3607, '$244.00 '), (3608, 'Inc. '), (3609, '$144.00 '), (3610, '$144.00 '), (3611, ''), (3612, '$144.00 '), (3613, '$244.00 '), (3614, '$144.00 '), (3615, '$510.00 '), (3616, '$409.00 '), (3617, '$144.00 '), (3618, '$209.00 '), (3619, ''), (3620, ''), (3621, '$209.00 '), (3622, '$144.00 '), (3623, ''), (3624, '$99.00 '), (3625, '$144.00 '), (3626, '$149.00 '), (3627, '$359.00 '), (3628, ''), (3629, '$425.00 '), (3630, '$144.00 '), (3631, '$144.00 '), (3632, '$409.00 '), (3633, ''), (3634, '$84.00 '), (3635, '$84.00 '), (3636, '$300.00 '), (3637, ''), (3638, '$84.00 '), (3639, ''), (3640, ''), (3641, ''), (3642, '$84.00 '), (3643, ''), (3644, ''), (3645, ''), (3646, ''), (3647, '$300.00 '), (3648, '$300.00 '), (3649, ''), (3650, ''), (3651, ''), (3652, ''), (3653, ''), (3654, '$339.00 '), (3655, ''), (3656, ''), (3657, '$409.00 '), (3658, '$139.00 '), (3659, ''), (3660, ''), (3661, '$0.00 '), (3662, '$199.00 '), (3663, ''), (3664, ''), (3665, ''), (3666, ''), (3667, ''), (3668, ''), (3669, ''), (3670, '$349.00 '), (3671, '$199.00 '), (3672, ''), (3673, ''), (3674, ''), (3675, ''), (3676, ''), (3677, '$139.00 '), (3678, ''), (3679, ''), (3680, ''), (3681, ''), (3682, ''), (3683, ''), (3684, ''), (3685, '$349.00 '), (3686, ''), (3687, '$880.00 '), (3688, '$204.00 '), (3689, ''), (3690, '$1.00 '), (3691, ''), (3692, '$144.00 '), (3693, ''), (3694, ''), (3695, ''), (3696, '$399.00 '), (3697, '$69.00 '), (3698, ''), (3699, ''), (3700, ''), (3701, ''), (3702, '$359.00 '), (3703, '$144.00 '), (3704, ''), (3705, '$55.00 '), (3706, ''), (3707, ''), (3708, ''), (3709, ''), (3710, ''), (3711, ''), (3712, ''), (3713, '$158.00 '), (3714, '$144.00 '), (3715, '$316.00 '), (3716, ''), (3717, ''), (3718, '$144.00 '), (3719, '$244.00 '), (3720, '$175.00 '), (3721, ''), (3722, '$359.00 '), (3723, ''), (3724, '$144.00 '), (3725, ''), (3726, ''), (3727, ''), (3728, ''), (3729, '$209.00 '), (3730, '$99.00 '), (3731, ''), (3732, '$144.00 '), (3733, ''), (3734, '$175.00 '), (3735, ''), (3736, ''), (3737, ''), (3738, '$189.00 '), (3739, ''), (3740, ''), (3741, ''), (3742, ''), (3743, ''), (3744, ''), (3745, '$399.00 '), (3746, ''), (3747, ''), (3748, '$399.00 '), (3749, ''), (3750, ''), (3751, ''), (3752, '$199.00 '), (3753, ''), (3754, ''), (3755, ''), (3756, ''), (3757, ''), (3758, ''), (3759, ''), (3760, ''), (3761, ''), (3762, '$139.00 '), (3763, ''), (3764, '$399.00 '), (3765, '$160.00 '), (3766, ''), (3767, ''), (3768, ''), (3769, ''), (3770, ''), (3771, ''), (3772, '$144.00 '), (3773, '$99.00 '), (3774, ''), (3775, ''), (3776, ''), (3777, ''), (3778, ''), (3779, '$104.00 '), (3780, ''), (3781, ''), (3782, '$144.00 '), (3783, ''), (3784, ''), (3785, '$184.00 '), (3786, ''), (3787, '$104.00 '), (3788, ''), (3789, '$175.00 '), (3790, ''), (3791, ''), (3792, '$109.00 '), (3793, ''), (3794, ''), (3795, ''), (3796, ''), (3797, ''), (3798, ''), (3799, ''), (3800, ''), (3801, ''), (3802, '$84.00 '), (3803, '$144.00 '), (3804, ''), (3805, ''), (3806, ''), (3807, ''), (3808, ''), (3809, ''), (3810, ''), (3811, ''), (3812, ''), (3813, '$563.38 '), (3814, '$225.35 '), (3815, '$563.38 '), (3816, ''), (3817, '$435.00 '), (3818, ''), (3819, ''), (3820, ''), (3821, ''), (3822, '$232.39 '), (3823, ''), (3824, ''), (3825, '$302.75 '), (3826, ''), (3827, '$556.34 '), (3828, '$232.39 '), (3829, ''), (3830, ''), (3831, ''), (3832, ''), (3833, '$570.42 '), (3834, '$619.72 '), (3835, '$619.72 '), (3836, '$570.42 '), (3837, ''), (3838, ''), (3839, '$232.39 '), (3840, ''), (3841, ''), (3842, '$267.61 '), (3843, ''), (3844, ''), (3845, ''), (3846, ''), (3847, '$409.00 '), (3848, ''), (3849, '$409.00 '), (3850, '$79.00 '), (3851, ''), (3852, ''), (3853, ''), (3854, ''), (3855, '$144.00 '), (3856, '$209.00 '), (3857, ''), (3858, ''), (3859, '$144.00 '), (3860, '$144.00 '), (3861, ''), (3862, '$209.00 '), (3863, ''), (3864, ''), (3865, '$0.00 '), (3866, ''), (3867, ''), (3868, ''), (3869, ''), (3870, ''), (3871, '$204.00 '), (3872, '$204.00 '), (3873, ''), (3874, '$79.00 '), (3875, ''), (3876, '$234.00 '), (3877, ''), (3878, ''), (3879, '$409.00 '), (3880, ''), (3881, ''), (3882, '$139.00 '), (3883, ''), (3884, ''), (3885, ''), (3886, '$209.00 '), (3887, '$399.00 '), (3888, '$399.00 '), (3889, ''), (3890, ''), (3891, '$139.00 '), (3892, 'For Prices'), (3893, '$389.00 '), (3894, '$199.00 '), (3895, '$119.00 '), (3896, '$89.00 '), (3897, ''), (3898, '$199.00 '), (3899, ''), (3900, ''), (3901, ''), (3902, ''), (3903, ''), (3904, ''), (3905, ''), (3906, ''), (3907, ''), (3908, ''), (3909, ''), (3910, ''), (3911, ''), (3912, ''), (3913, ''), (3914, ''), (3915, ''), (3916, '$359.00 '), (3917, '$399.00 '), (3918, ''), (3919, ''), (3920, ''), (3921, ''), (3922, '$349.00 '), (3923, ''), (3924, ''), (3925, ''), (3926, ''), (3927, '$409.00 '), (3928, ''), (3929, ''), (3930, ''), (3931, ''), (3932, ''), (3933, '$144.00 '), (3934, ''), (3935, ''), (3936, '$449.00 '), (3937, '$149.00 '), (3938, ''), (3939, ''), (3940, ''), (3941, ''), (3942, ''), (3943, ''), (3944, ''), (3945, ''), (3946, '$75.00 '), (3947, '$449.00 '), (3948, '$209.00 '), (3949, '$409.00 '), (3950, '$409.00 '), (3951, ''), (3952, ''), (3953, ''), (3954, ''), (3955, ''), (3956, ''), (3957, '$175.00 '), (3958, '$175.00 '), (3959, ''), (3960, '$144.00 '), (3961, 'Included'), (3962, ''), (3963, '$144.00 '), (3964, 'Included'), (3965, ''), (3966, '$259.00 '), (3967, ''), (3968, ''), (3969, ''), (3970, ''), (3971, ''), (3972, '$409.00 '), (3973, ''), (3974, '$468.00 '), (3975, '$99.00 '), (3976, '$85.00 '), (3977, '$85.00 '), (3978, ''), (3979, '$175.00 '), (3980, ''), (3981, '$250.00 '), (3982, ''), (3983, ''), (3984, '$359.00 '), (3985, ''), (3986, '$94.00 '), (3987, ''), (3988, '$149.00 '), (3989, ''), (3990, ''), (3991, '$175.00 '), (3992, '$169.00 '), (3993, ''), (3994, '$449.00 '), (3995, '$94.00 '), (3996, '$399.00 '), (3997, ''), (3998, '$249.00 '), (3999, ''), (4000, ''), (4001, ''), (4002, ''), (4003, ''), (4004, '$89.00 '), (4005, '$105.00 '), (4006, ''), (4007, ''), (4008, '$349.00 '), (4009, ''), (4010, ''), (4011, ''), (4012, ''), (4013, ''), (4014, ''), (4015, ''), (4016, ''), (4017, '$144.00 '), (4018, '$144.00 '), (4019, ''), (4020, ''), (4021, ''), (4022, ''), (4023, ''), (4024, '$144.00 '), (4025, ''), (4026, '$79.00 '), (4027, ''), (4028, ''), (4029, ''), (4030, ''), (4031, ''), (4032, '$144.00 '), (4033, ''), (4034, '$409.00 '), (4035, ''), (4036, ''), (4037, ''), (4038, ''), (4039, ''), (4040, ''), (4041, ''), (4042, ''), (4043, '$175.00 '), (4044, '$70.00 '), (4045, ''), (4046, ''), (4047, ''), (4048, ''), (4049, ''), (4050, ''), (4051, ''), (4052, '$519.00 '), (4053, ''), (4054, ''), (4055, ''), (4056, ''), (4057, ''), (4058, ''), (4059, ''), (4060, ''), (4061, ''), (4062, ''), (4063, ''), (4064, ''), (4065, ''), (4066, ''), (4067, ''), (4068, ''), (4069, ''), (4070, ''), (4071, ''), (4072, '$204.00 '), (4073, '$104.00 '), (4074, ''), (4075, '$79.00 '), (4076, ''), (4077, ''), (4078, ''), (4079, ''), (4080, ''), (4081, ''), (4082, ''), (4083, ''), (4084, ''), (4085, 'inc.'), (4086, ''), (4087, ''), (4088, ''), (4089, ''), (4090, ''), (4091, ''), (4092, ''), (4093, ''), (4094, ''), (4095, ''), (4096, ''), (4097, ''), (4098, ''), (4099, ''), (4100, ''), (4101, ''), (4102, ''), (4103, ''), (4104, '$359.00 '), (4105, 'inc.'), (4106, '$144.00 '), (4107, '$144.00 '), (4108, '$409.00 '), (4109, '$409.00 '), (4110, '$144.00 '), (4111, '$209.00 '), (4112, '$79.00 '), (4113, ''), (4114, ''), (4115, '$144.00 '), (4116, '$144.00 '), (4117, '$204.00 '), (4118, ''), (4119, '$209.00 '), (4120, ''), (4121, ''), (4122, '$144.00 '), (4123, ''), (4124, ''), (4125, ''), (4126, ''), (4127, '$558.00 '), (4128, ''), (4129, '$425.00 '), (4130, '$425.00 '), (4131, '$359.00 '), (4132, '$144.00 '), (4133, 'Included'), (4134, '$144.00 '), (4135, '$144.00 '), (4136, ''), (4137, '$175.00 '), (4138, '$175.00 '), (4139, ''), (4140, '$175.00 '), (4141, ''), (4142, ''), (4143, ''), (4144, '$160.00 '), (4145, ''), (4146, ''), (4147, '$150.00 '), (4148, ''), (4149, ''), (4150, ''), (4151, ''), (4152, ''), (4153, ''), (4154, ''), (4155, ''), (4156, ''), (4157, ''), (4158, ''), (4159, ''), (4160, ''), (4161, ''), (4162, ''), (4163, ''), (4164, ''), (4165, '$399.00 '), (4166, ''), (4167, ''), (4168, ''), (4169, ''), (4170, ''), (4171, ''), (4172, '$399.00 '), (4173, ''), (4174, ''), (4175, ''), (4176, '$700.00 '), (4177, '$399.00 '), (4178, ''), (4179, ''), (4180, ''), (4181, ''), (4182, ''), (4183, ''), (4184, ''), (4185, ''), (4186, '$139.00 '), (4187, ''), (4188, ''), (4189, '$134.00 '), (4190, '$164.00 '), (4191, ''), (4192, '$64.00 '), (4193, ''), (4194, ''), (4195, ''), (4196, '$435.00 '), (4197, '$200.00 '), (4198, ''), (4199, ''), (4200, '$198.00 '), (4201, '$409.00 '), (4202, ''), (4203, '$144.00 '), (4204, ''), (4205, '$204.00 '), (4206, '$209.00 '), (4207, ''), (4208, ''), (4209, ''), (4210, ''), (4211, 'Pricing'), (4212, ''), (4213, ''), (4214, ''), (4215, '$619.72 '), (4216, '$619.72 '), (4217, '$619.72 '), (4218, ''), (4219, ''), (4220, ''), (4221, '$619.72 '), (4222, '$225.35 '), (4223, '$915.00 '), (4224, '$915.00 '), (4225, ''), (4226, '$711.27 '), (4227, ''), (4228, '$570.42 '), (4229, ''), (4230, ''), (4231, ''), (4232, '$225.35 '), (4233, '$619.72 '), (4234, '$619.72 '), (4235, '$845.07 '), (4236, ''), (4237, '$633.80 '), (4238, '$225.35 '), (4239, ''), (4240, '$570.42 '), (4241, '$619.72 '), (4242, '$570.42 '), (4243, '$619.72 '), (4244, ''), (4245, '$619.72 '), (4246, '$619.72 '), (4247, ''), (4248, '$225.35 '), (4249, ''), (4250, ''), (4251, '$525.00 '), (4252, ''), (4253, ''), (4254, '$400.00 '), (4255, ''), (4256, '$385.00 '), (4257, ''), (4258, '$395.00 '), (4259, '$395.00 '), (4260, ''), (4261, ''), (4262, ''), (4263, '$385.00 '), (4264, '$390.00 '), (4265, ''), (4266, ''), (4267, ''), (4268, ''), (4269, '$711.27 '), (4270, ''), (4271, ''), (4272, ''), (4273, 'Inc.'), (4274, '$85.00 '), (4275, '$144.00 '), (4276, 'included'), (4277, ''), (4278, ''), (4279, '$409.00 '), (4280, ''), (4281, ''), (4282, ''), (4283, ''), (4284, ''), (4285, '$99.00 '), (4286, ''), (4287, ''), (4288, ''), (4289, ''), (4290, '$567.00 '), (4291, ''), (4292, '$409.00 '), (4293, '$409.00 '), (4294, ''), (4295, '$359.00 '), (4296, ''), (4297, ''), (4298, '$159.00 '), (4299, '$84.00 '), (4300, ''), (4301, ''), (4302, ''), (4303, ''), (4304, ''), (4305, ''), (4306, ''), (4307, ''), (4308, ''), (4309, ''), (4310, ''), (4311, ''), (4312, '$139.00 '), (4313, ''), (4314, ''), (4315, '$89.00 '), (4316, ''), (4317, ''), (4318, ''), (4319, ''), (4320, ''), (4321, ''), (4322, ''), (4323, '$139.00 '), (4324, ''), (4325, '$199.00 '), (4326, ''), (4327, ''), (4328, '$399.00 '), (4329, ''), (4330, ''), (4331, ''), (4332, ''), (4333, ''), (4334, ''), (4335, ''), (4336, ''), (4337, ''), (4338, ''), (4339, ''), (4340, ''), (4341, ''), (4342, ''), (4343, ''), (4344, ''), (4345, ''), (4346, ''), (4347, ''), (4348, ''), (4349, ''), (4350, ''), (4351, ''), (4352, ''), (4353, ''), (4354, ''), (4355, '$349.00 '), (4356, ''), (4357, ''), (4358, ''), (4359, ''), (4360, ''), (4361, ''), (4362, ''), (4363, '$339.00 '), (4364, ''), (4365, ''), (4366, ''), (4367, ''), (4368, ''), (4369, ''), (4370, ''), (4371, ''), (4372, ''), (4373, ''), (4374, ''), (4375, '$94.00 '), (4376, '$349.00 '), (4377, ''), (4378, '$409.00 '), (4379, ''), (4380, '$359.00 '), (4381, '$114.00 '), (4382, '$359.00 '), (4383, ''), (4384, '$409.00 '), (4385, ''), (4386, ''), (4387, ''), (4388, ''), (4389, ''), (4390, '$104.00 '), (4391, '$144.00 '), (4392, ''), (4393, ''), (4394, '$144.00 '), (4395, ''), (4396, ''), (4397, '$104.00 '), (4398, ''), (4399, ''), (4400, ''), (4401, ''), (4402, '$144.00 '), (4403, '$204.00 '), (4404, '$409.00 '), (4405, '$204.00 '), (4406, ''), (4407, ''), (4408, '$144.00 '), (4409, '$409.00 '), (4410, '$144.00 '), (4411, '$144.00 '), (4412, '$144.00 '), (4413, 'inc.'), (4414, '$144.00 '), (4415, '$144.00 '), (4416, '$144.00 '), (4417, ''), (4418, ''), (4419, ''), (4420, ''), (4421, ''), (4422, ''), (4423, ''), (4424, '$175.00 '), (4425, ''), (4426, ''), (4427, ''), (4428, ''), (4429, ''), (4430, ''), (4431, '$199.00 '), (4432, ''), (4433, ''), (4434, ''), (4435, '$175.00 '), (4436, ''), (4437, ''), (4438, ''), (4439, ''), (4440, ''), (4441, ''), (4442, ''), (4443, '$65.00 '), (4444, ''), (4445, ''), (4446, ''), (4447, ''), (4448, '$134.00 '), (4449, ''), (4450, ''), (4451, ''), (4452, ''), (4453, '$199.00 '), (4454, ''), (4455, ''), (4456, ''), (4457, ''), (4458, ''), (4459, ''), (4460, ''), (4461, '$199.00 '), (4462, ''), (4463, ''), (4464, ''), (4465, ''), (4466, ''), (4467, ''), (4468, ''), (4469, ''), (4470, ''), (4471, ''), (4472, ''), (4473, ''), (4474, ''), (4475, ''), (4476, ''), (4477, '$144.00 '), (4478, '$144.00 '), (4479, ''), (4480, ''), (4481, ''), (4482, '$144.00 '), (4483, ''), (4484, ''), (4485, ''), (4486, ''), (4487, '$75.00 '), (4488, ''), (4489, ''), (4490, ''), (4491, ''), (4492, ''), (4493, ''), (4494, ''), (4495, '$104.00 '), (4496, '$359.00 '), (4497, '$445.00 '), (4498, ''), (4499, ''), (4500, ''), (4501, ''), (4502, '$232.39 '), (4503, ''), (4504, '$619.72 '), (4505, ''), (4506, '$232.39 '), (4507, '$619.72 '), (4508, ''), (4509, ''), (4510, '$561.15 '), (4511, ''), (4512, ''), (4513, ''), (4514, ''), (4515, ''), (4516, ''), (4517, ''), (4518, ''), (4519, ''), (4520, '$99.00 '), (4521, ''), (4522, ''), (4523, ''), (4524, ''), (4525, ''), (4526, ''), (4527, '$70.00 '), (4528, '$70.00 '), (4529, '$69.00 '), (4530, '$60.00 '), (4531, ''), (4532, '$164.00 '), (4533, ''), (4534, ''), (4535, '$329.00 '), (4536, ''), (4537, ''), (4538, '$349.00 '), (4539, ''), (4540, ''), (4541, ''), (4542, '$349.00 '), (4543, '$209.00 '), (4544, '$94.00 '), (4545, ''), (4546, ''), (4547, ''), (4548, '$900.00 '), (4549, ''), (4550, '$199.00 '), (4551, ''), (4552, ''), (4553, ''), (4554, ''), (4555, ''), (4556, ''), (4557, '$563.38 '), (4558, '$232.39 '), (4559, '$563.38 '), (4560, ''), (4561, '$570.42 '), (4562, ''), (4563, ''), (4564, ''), (4565, '$619.72 '), (4566, ''), (4567, ''), (4568, '$225.35 '), (4569, ''), (4570, ''), (4571, 'Inc. in'), (4572, ''), (4573, ''), (4574, ''), (4575, ''), (4576, '$359.00 '), (4577, '$144.00 '), (4578, '$144.00 '), (4579, '$409.00 '), (4580, 'Inc. in'), (4581, ''), (4582, ''), (4583, ''), (4584, ''), (4585, ''), (4586, '$144.00 '), (4587, '$99.00 '), (4588, ''), (4589, ''), (4590, ''), (4591, ''), (4592, ''), (4593, ''), (4594, ''), (4595, ''), (4596, ''), (4597, ''), (4598, ''), (4599, ''), (4600, ''), (4601, ''), (4602, ''), (4603, ''), (4604, ''), (4605, '$389.00 '), (4606, ''), (4607, ''), (4608, ''), (4609, ''), (4610, '$199.00 '), (4611, ''), (4612, ''), (4613, ''), (4614, '$349.00 '), (4615, ''), (4616, '$349.00 '), (4617, ''), (4618, ''), (4619, ''), (4620, ''), (4621, ''), (4622, '$199.00 '), (4623, ''), (4624, '$199.00 '), (4625, '$409.00 '), (4626, ''), (4627, ''), (4628, '$359.00 '), (4629, '$79.00 '), (4630, ''), (4631, ''), (4632, '$399.00 '), (4633, ''), (4634, ''), (4635, ''), (4636, ''), (4637, '$124.00 '), (4638, ''), (4639, ''), (4640, '$200.00 '), (4641, ''), (4642, '$399.00 '), (4643, 'Incl.'), (4644, '$144.00 '), (4645, '$474.00 '), (4646, '$204.00 '), (4647, '$359.00 '), (4648, ''), (4649, '$409.00 '), (4650, '$439.00 '), (4651, '$144.00 '), (4652, ''), (4653, ''), (4654, '$316.00 '), (4655, '$134.00 '), (4656, ''), (4657, '$488.00 '), (4658, 'Inc.'), (4659, ''), (4660, '$359.00 '), (4661, '$144.00 '), (4662, '$409.00 '), (4663, 'inc. in'), (4664, '$85.00 '), (4665, '$204.00 '), (4666, ''), (4667, 'Inc. in '), (4668, ''), (4669, '$144.00 '), (4670, ''), (4671, ''), (4672, ''), (4673, ''), (4674, ''), (4675, ''), (4676, ''), (4677, '$59.00 '), (4678, ''), (4679, ''), (4680, ''), (4681, ''), (4682, '$339.00 '), (4683, ''), (4684, ''), (4685, ''), (4686, '$139.00 '), (4687, '$139.00 '), (4688, ''), (4689, ''), (4690, ''), (4691, ''), (4692, ''), (4693, ''), (4694, ''), (4695, ''), (4696, ''), (4697, '$399.00 '), (4698, ''), (4699, '$139.00 '), (4700, ''), (4701, ''), (4702, ''), (4703, ''), (4704, ''), (4705, ''), (4706, '$399.00 '), (4707, ''), (4708, '$199.00 '), (4709, ''), (4710, ''), (4711, ''), (4712, ''), (4713, ''), (4714, '$409.00 '), (4715, ''), (4716, ''), (4717, ''), (4718, ''), (4719, '$199.00 '), (4720, '$144.00 '), (4721, ''), (4722, ''), (4723, '$144.00 '), (4724, ''), (4725, ''), (4726, ''), (4727, ''), (4728, '$144.00 '), (4729, ''), (4730, ''), (4731, ''), (4732, ''), (4733, ''), (4734, ''), (4735, ''), (4736, ''), (4737, ''), (4738, ''), (4739, ''), (4740, ''), (4741, ''), (4742, ''), (4743, ''), (4744, ''), (4745, ''), (4746, ''), (4747, ''), (4748, ''), (4749, ''), (4750, ''), (4751, ''), (4752, ''), (4753, ''), (4754, ''), (4755, ''), (4756, ''), (4757, ''), (4758, ''), (4759, ''), (4760, ''), (4761, ''), (4762, ''), (4763, ''), (4764, ''), (4765, ''), (4766, ''), (4767, '$175.00 '), (4768, '$209.00 '), (4769, ''), (4770, ''), (4771, ''), (4772, ''), (4773, '$144.00 '), (4774, ''), (4775, '$409.00 '), (4776, ''), (4777, '$409.00 '), (4778, '$144.00 '), (4779, '$144.00 '), (4780, ''), (4781, '$144.00 '), (4782, ''), (4783, '$149.00 '), (4784, ''), (4785, ''), (4786, ''), (4787, ''), (4788, ''), (4789, ''), (4790, ''), (4791, '$409.00 '), (4792, ''), (4793, 'Included'), (4794, ''), (4795, ''), (4796, ''), (4797, ''), (4798, '$349.00 '), (4799, '$55.00 '), (4800, '$409.00 '), (4801, ''), (4802, ''), (4803, ''), (4804, ''), (4805, ''), (4806, ''), (4807, ''), (4808, ''), (4809, ''), (4810, '$114.00 '), (4811, ''), (4812, ''), (4813, '$259.00 '), (4814, ''), (4815, ''), (4816, ''), (4817, ''), (4818, ''), (4819, ''), (4820, '$300.00 '), (4821, 'inc.'), (4822, '$409.00 '), (4823, ''), (4824, ''), (4825, ''), (4826, ''), (4827, '$174.00 '), (4828, '$104.00 '), (4829, ''), (4830, ''), (4831, ''), (4832, ''), (4833, ''), (4834, ''), (4835, 'Inc.'), (4836, ''), (4837, 'inc.'), (4838, '$399.00 '), (4839, ''), (4840, ''), (4841, ''), (4842, ''), (4843, ''), (4844, ''), (4845, 'inc.'), (4846, ''), (4847, ''), (4848, ''), (4849, ''), (4850, ''), (4851, ''), (4852, ''), (4853, '$89.00 '), (4854, '$119.00 '), (4855, '$89.00 '), (4856, '$204.00 '), (4857, ''), (4858, '$399.00 '), (4859, ''), (4860, ''), (4861, '$209.00 '), (4862, ''), (4863, '$104.00 '), (4864, ''), (4865, ''), (4866, ''), (4867, ''), (4868, ''), (4869, ''), (4870, '$199.00 '), (4871, ''), (4872, ''), (4873, '$149.00 '), (4874, '$359.00 '), (4875, ''), (4876, ''), (4877, ''), (4878, ''), (4879, ''), (4880, ''), (4881, ''), (4882, ''), (4883, '$144.00 '), (4884, '$144.00 '), (4885, ''), (4886, ''), (4887, ''), (4888, '$468.00 '), (4889, ''), (4890, ''), (4891, ''), (4892, '$224.00 '), (4893, '$104.00 '), (4894, ''), (4895, '$154.00 '), (4896, '$409.00 '), (4897, '$409.00 '), (4898, '$409.00 '), (4899, ''), (4900, ''), (4901, ''), (4902, ''), (4903, ''), (4904, ''), (4905, ''), (4906, ''), (4907, '$214.00 '), (4908, ''), (4909, '$170.00 '), (4910, ''), (4911, '$85.00 '), (4912, ''), (4913, ''), (4914, '$144.00 '), (4915, ''), (4916, ''), (4917, ''), (4918, ''), (4919, ''), (4920, ''), (4921, ''), (4922, ''), (4923, ''), (4924, '$409.00 '), (4925, ''), (4926, ''), (4927, '$99.00 '), (4928, ''), (4929, '$199.00 '), (4930, '$85.00 '), (4931, ''), (4932, '$144.00 '), (4933, '$199.00 '), (4934, ''), (4935, '$204.00 '), (4936, '$149.00 '), (4937, ''), (4938, ''), (4939, ''), (4940, '$204.00 '), (4941, 'Included'), (4942, ''), (4943, ''), (4944, ''), (4945, '$204.00 '), (4946, '$409.00 '), (4947, ''), (4948, ''), (4949, ''), (4950, ''), (4951, ''), (4952, ''), (4953, '$214.00 '), (4954, ''), (4955, ''), (4956, ''), (4957, ''), (4958, '$204.00 '), (4959, '$144.00 '), (4960, ''), (4961, ''), (4962, ''), (4963, ''), (4964, '$109.00 '), (4965, '$209.00 '), (4966, '$144.00 '), (4967, 'Included'), (4968, '$144.00 '), (4969, ''), (4970, '$104.00 '), (4971, '$198.00 '), (4972, '$154.00 '), (4973, ''), (4974, '$755.00 '), (4975, '$214.00 '), (4976, ''), (4977, ''), (4978, ''), (4979, ''), (4980, ''), (4981, '$249.00 '), (4982, ''), (4983, ''), (4984, '$209.00 '), (4985, ''), (4986, ''), (4987, '$214.00 '), (4988, ''), (4989, ''), (4990, ''), (4991, ''), (4992, ''), (4993, ''), (4994, ''), (4995, ''), (4996, ''), (4997, ''), (4998, ''), (4999, ''), (5000, '$144.00 '), (5001, ''), (5002, ''), (5003, ''), (5004, ''), (5005, 'Included'), (5006, ''), (5007, ''), (5008, ''), (5009, '$409.00 '), (5010, ''), (5011, ''), (5012, '$409.00 '), (5013, ''), (5014, ''), (5015, ''), (5016, ''), (5017, ''), (5018, ''), (5019, ''), (5020, ''), (5021, ''), (5022, ''), (5023, '$214.00 '), (5024, ''), (5025, '$359.00 '), (5026, ''), (5027, ''), (5028, '$85.00 '), (5029, ''), (5030, ''), (5031, ''), (5032, 'in'), (5033, ''), (5034, ''), (5035, ''), (5036, 'Inclw/abov'), (5037, '$89.00 '), (5038, ''), (5039, '$359.00 '), (5040, ''), (5041, ''), (5042, ''), (5043, ''), (5044, '$204.00 '), (5045, ''), (5046, ''), (5047, '$144.00 '), (5048, '$149.00 '), (5049, ''), (5050, ''), (5051, 'Inc. in'), (5052, '$79.00 '), (5053, ''), (5054, ''), (5055, '$144.00 '), (5056, '$144.00 '), (5057, ''), (5058, '$75.00 '), (5059, ''), (5060, ''), (5061, ''), (5062, '$124.00 '), (5063, ''), (5064, 'Included'), (5065, '$85.00 '), (5066, ''), (5067, ''), (5068, ''), (5069, ''), (5070, ''), (5071, ''), (5072, ''), (5073, '$399.00 '), (5074, ''), (5075, ''), (5076, '$214.00 '), (5077, '$144.00 '), (5078, '$149.00 '), (5079, ''), (5080, '$144.00 '), (5081, ''), (5082, '$359.00 '), (5083, '$144.00 '), (5084, ''), (5085, '$359.00 '), (5086, ''), (5087, '$204.00 '), (5088, ''), (5089, ''), (5090, ''), (5091, ''), (5092, ''), (5093, ''), (5094, ''), (5095, ''), (5096, ''), (5097, ''), (5098, ''), (5099, ''), (5100, '$409.00 '), (5101, ''), (5102, ''), (5103, ''), (5104, ''), (5105, ''), (5106, '$488.00 '), (5107, '$89.00 '), (5108, '$89.00 '), (5109, '$104.00 '), (5110, 'Inc. in '), (5111, ''), (5112, ''), (5113, ''), (5114, ''), (5115, ''), (5116, ''), (5117, ''), (5118, '$79.00 '), (5119, ''), (5120, ''), (5121, ''), (5122, ''), (5123, '$409.00 '), (5124, '$149.00 '), (5125, ''), (5126, ''), (5127, ''), (5128, ''), (5129, ''), (5130, ''), (5131, ''), (5132, '$144.00 '), (5133, ''), (5134, ''), (5135, ' Inc.'), (5136, ''), (5137, ''), (5138, '$349.00 '), (5139, '$214.00 '), (5140, '$144.00 '), (5141, ''), (5142, ''), (5143, 'Included'), (5144, ''), (5145, '$89.00 '), (5146, '$409.00 '), (5147, '$144.00 '), (5148, ''), (5149, ''), (5150, '$144.00 '), (5151, '$144.00 '), (5152, '$175.00 '), (5153, ''), (5154, '$69.00 '), (5155, ''), (5156, '$144.00 '), (5157, '$104.00 '), (5158, ''), (5159, ''), (5160, ''), (5161, ''), (5162, ''), (5163, ''), (5164, ''), (5165, ''), (5166, ''), (5167, ''), (5168, ''), (5169, ''), (5170, ''), (5171, ''), (5172, ''), (5173, ''), (5174, ''), (5175, ''), (5176, ''), (5177, ''), (5178, ''), (5179, ''), (5180, '$409.00 '), (5181, ''), (5182, ''), (5183, ''), (5184, ''), (5185, ''), (5186, ''), (5187, ''), (5188, ''), (5189, ''), (5190, ''), (5191, ''), (5192, ''), (5193, ''), (5194, ''), (5195, '$144.00 '), (5196, '$114.00 '), (5197, ''), (5198, 'Inc.'), (5199, ''), (5200, ''), (5201, '$409.00 '), (5202, '$409.00 '), (5203, '$449.00 '), (5204, '$144.00 '), (5205, ''), (5206, '$144.00 '), (5207, '$204.00 '), (5208, ''), (5209, ''), (5210, '$35.00 '), (5211, ''), (5212, ''), (5213, ''), (5214, ''), (5215, '$134.00 '), (5216, '$209.00 '), (5217, ''), (5218, ''), (5219, ''), (5220, ''), (5221, '$144.00 '), (5222, ''), (5223, ''), (5224, '$125.00 '), (5225, ''), (5226, ''), (5227, ''), (5228, ''), (5229, ''), (5230, ''), (5231, ''), (5232, ''), (5233, '$124.00 '), (5234, '$124.00 '), (5235, ''), (5236, ''), (5237, ''), (5238, '$204.00 '), (5239, ''), (5240, ''), (5241, ''), (5242, '$409.00 '), (5243, ''), (5244, ''), (5245, ''), (5246, ''), (5247, '$144.00 '), (5248, '$79.00 '), (5249, '$144.00 '), (5250, 'in'), (5251, '$144.00 '), (5252, ''), (5253, '$144.00 '), (5254, 'above'), (5255, ''), (5256, ''), (5257, ''), (5258, ''), (5259, ''), (5260, ''), (5261, ''), (5262, ''), (5263, '$204.00 '), (5264, ''), (5265, ''), (5266, ''), (5267, '$144.00 '), (5268, ''), (5269, '$175.00 '), (5270, ''), (5271, ''), (5272, '$259.00 '), (5273, ''), (5274, '$104.00 '), (5275, '$154.00 '), (5276, ''), (5277, ''), (5278, ''), (5279, ''), (5280, ''), (5281, ''), (5282, '$144.00 '), (5283, ''), (5284, ''), (5285, ''), (5286, ''), (5287, '$85.00 '), (5288, ''), (5289, ''), (5290, '$175.00 '), (5291, ''), (5292, ''), (5293, '$144.00 '), (5294, ''), (5295, ''), (5296, ''), (5297, ''), (5298, ''), (5299, ''), (5300, ''), (5301, ''), (5302, '$144.00 '), (5303, ''), (5304, '$170.00 '), (5305, ''), (5306, ''), (5307, '$144.00 '), (5308, '$175.00 '), (5309, '$24.50 '), (5310, '$99.00 '), (5311, '$204.00 '), (5312, ''), (5313, '$125.00 '), (5314, '$125.00 '), (5315, ''), (5316, ''), (5317, '$104.00 '), (5318, ''), (5319, ''), (5320, ''), (5321, ''), (5322, '$204.00 '), (5323, ''), (5324, ''), (5325, ''), (5326, ''), (5327, ''), (5328, ''), (5329, ''), (5330, ''), (5331, ''), (5332, ''), (5333, ''), (5334, ''), (5335, '$144.00 '), (5336, ''), (5337, ''), (5338, ''), (5339, ''), (5340, '$144.00 '), (5341, ''), (5342, 'in'), (5343, ''), (5344, ''), (5345, ''), (5346, ''), (5347, '$144.00 '), (5348, ''), (5349, ''), (5350, ''), (5351, ''), (5352, ''), (5353, ''), (5354, ''), (5355, ''), (5356, '$204.00 '), (5357, '$204.00 '), (5358, ''), (5359, ''), (5360, ''), (5361, ''), (5362, '$460.00 '), (5363, ''), (5364, '$204.00 '), (5365, ''), (5366, '$79.00 '), (5367, ''), (5368, ''), (5369, ''), (5370, ''), (5371, ''), (5372, ''), (5373, '$35.00 '), (5374, '$35.00 '), (5375, ''), (5376, ''), (5377, '$35.00 '), (5378, '$144.00 '), (5379, ''), (5380, '$144.00 '), (5381, '$159.00 '), (5382, '$149.00 '), (5383, ''), (5384, '$149.00 '), (5385, '$109.00 '), (5386, ''), (5387, ''), (5388, ''), (5389, '$209.00 '), (5390, '$209.00 '), (5391, '$85.00 '), (5392, ''), (5393, ''), (5394, ''), (5395, ''), (5396, ''), (5397, ''), (5398, ''), (5399, ''), (5400, ''), (5401, ''), (5402, ''), (5403, '$409.00 '), (5404, '$144.00 '), (5405, ''), (5406, '$144.00 '), (5407, ''), (5408, ''), (5409, ''), (5410, ''), (5411, ''), (5412, ''), (5413, ''), (5414, '$205.00 '), (5415, ''), (5416, ''), (5417, ''), (5418, ''), (5419, '$260.00 '), (5420, ''), (5421, ''), (5422, ''), (5423, '$189.00 '), (5424, ''), (5425, ''), (5426, '$144.00 '), (5427, ''), (5428, ''), (5429, '$175.00 '), (5430, '$94.00 '), (5431, ''), (5432, ''), (5433, ''), (5434, ''), (5435, ''), (5436, '$85.00 '), (5437, '$125.00 '), (5438, '$224.00 '), (5439, ''), (5440, '$144.00 '), (5441, 'in'), (5442, '$174.00 '), (5443, ''), (5444, ''), (5445, '$144.00 '), (5446, ''), (5447, ''), (5448, '$114.00 '), (5449, ''), (5450, '$204.00 '), (5451, '$204.00 '), (5452, ''), (5453, '$85.00 '), (5454, ''), (5455, ''), (5456, ''), (5457, ''), (5458, '$85.00 '), (5459, ''), (5460, ''), (5461, ''), (5462, '$144.00 '), (5463, ''), (5464, '$209.00 '), (5465, '$224.00 '), (5466, ''), (5467, ''), (5468, ''), (5469, ''), (5470, 'inc.'), (5471, '$204.00 '), (5472, ''), (5473, ''), (5474, ''), (5475, ''), (5476, '$204.00 '), (5477, ''), (5478, ''), (5479, ''), (5480, '$509.00 '), (5481, ''), (5482, '$134.00 '), (5483, '$114.00 '), (5484, ''), (5485, ''), (5486, ''), (5487, '$204.00 '), (5488, '$144.00 '), (5489, ''), (5490, '$85.00 '), (5491, ''), (5492, ''), (5493, ''), (5494, ''), (5495, ''), (5496, ''), (5497, ''), (5498, ''), (5499, ''), (5500, ''), (5501, ''), (5502, ''), (5503, ''), (5504, ''), (5505, ''), (5506, ''), (5507, ''), (5508, ''), (5509, ''), (5510, '$85.00 '), (5511, ''), (5512, ''), (5513, ''), (5514, ''), (5515, '$144.00 '), (5516, ''), (5517, '$144.00 '), (5518, ''), (5519, ''), (5520, ''), (5521, '$517.00 '), (5522, ''), (5523, ''), (5524, '$204.00 '), (5525, ''), (5526, ''), (5527, ''), (5528, ''), (5529, ''), (5530, ''), (5531, ''), (5532, '$144.00 '), (5533, ''), (5534, ''), (5535, '$144.00 '), (5536, ''), (5537, ''), (5538, ''), (5539, '$144.00 '), (5540, ''), (5541, ''), (5542, '$85.00 '), (5543, ''), (5544, ''), (5545, ''), (5546, ''), (5547, ''), (5548, ''), (5549, '$36.00 '), (5550, '$100.00 '), (5551, ''), (5552, ''), (5553, '$175.00 '), (5554, ''), (5555, ''), (5556, 'in the '), (5557, ''), (5558, ''), (5559, ''), (5560, ' In'), (5561, ''), (5562, '$3.50 '), (5563, ''), (5564, '$187.00 '), (5565, '$144.00 '), (5566, '$104.00 '), (5567, '$144.00 '), (5568, ''), (5569, 'w/ price'), (5570, '$409.00 '), (5571, '$149.00 '), (5572, ''), (5573, '$244.00 '), (5574, ''), (5575, ''), (5576, ''), (5577, '$174.00 '), (5578, ''), (5579, '$409.00 '), (5580, ''), (5581, ''), (5582, ''), (5583, ''), (5584, ''), (5585, ''), (5586, ''), (5587, '$144.00 '), (5588, ''), (5589, '$99.00 '), (5590, '$85.00 '), (5591, '$85.00 '), (5592, '$85.00 '), (5593, '$85.00 '), (5594, ''), (5595, ''), (5596, ''), (5597, ''), (5598, '$3.00 '), (5599, '$175.00 '), (5600, '$55.00 '), (5601, ''), (5602, ''), (5603, ''), (5604, ''), (5605, 'in'), (5606, ''), (5607, ''), (5608, 'in'), (5609, ''), (5610, ''), (5611, ''), (5612, ''), (5613, ''), (5614, '$204.00 '), (5615, ''), (5616, '$85.00 '), (5617, 'Price'), (5618, '$209.00 '), (5619, ''), (5620, ''), (5621, ''), (5622, ''), (5623, ''), (5624, ''), (5625, ''), (5626, '$144.00 '), (5627, ''), (5628, ''), (5629, ''), (5630, '$144.00 '), (5631, '$409.00 '), (5632, ''), (5633, '$409.00 '), (5634, ''), (5635, '$144.00 '), (5636, '$144.00 '), (5637, '$144.00 '), (5638, '$144.00 '), (5639, ''), (5640, ''), (5641, ''), (5642, 'Included i'), (5643, ''), (5644, ''), (5645, '$409.00 '), (5646, ''), (5647, '$104.00 '), (5648, ''), (5649, ''), (5650, ''), (5651, ''), (5652, ''), (5653, ''), (5654, 'incl above'), (5655, ''), (5656, '$409.00 '), (5657, '$204.00 '), (5658, 'Price'), (5659, '$204.00 '), (5660, '$711.00 '), (5661, '$144.00 '), (5662, '$204.00 '), (5663, ''), (5664, ''), (5665, ''), (5666, '$85.00 '), (5667, ''), (5668, ''), (5669, ''), (5670, ''), (5671, ''), (5672, ''), (5673, ''), (5674, ''), (5675, ''), (5676, ''), (5677, ''), (5678, ''), (5679, ''), (5680, ''), (5681, ''), (5682, ''), (5683, '$85.00 '), (5684, ''), (5685, ''), (5686, ''), (5687, '$209.00 '), (5688, ''), (5689, '$134.00 '), (5690, '$144.00 '), (5691, ''), (5692, ''), (5693, ''), (5694, '$204.00 '), (5695, ''), (5696, ''), (5697, '$70.00 '), (5698, ''), (5699, '$134.00 '), (5700, '$125.00 '), (5701, '$70.00 '), (5702, ''), (5703, ''), (5704, ''), (5705, ''), (5706, ''), (5707, ''), (5708, ''), (5709, ''), (5710, ''), (5711, ''), (5712, 'price'), (5713, ''), (5714, ''), (5715, ''), (5716, ''), (5717, '$144.00 '), (5718, ''), (5719, '$144.00 '), (5720, ''), (5721, ''), (5722, ''), (5723, '$159.00 '), (5724, ''), (5725, ''), (5726, ''), (5727, ''), (5728, '$204.00 '), (5729, '$149.00 '), (5730, ''), (5731, ''), (5732, ''), (5733, ''), (5734, ''), (5735, '$409.00 '), (5736, ''), (5737, ''), (5738, ''), (5739, ''), (5740, '$134.00 '), (5741, '$144.00 '), (5742, ''), (5743, '$85.00 '), (5744, ''), (5745, '$85.00 '), (5746, ''), (5747, '$216.00 '), (5748, ''), (5749, '$149.00 '), (5750, '$149.00 '), (5751, ''), (5752, ''), (5753, '$85.00 '), (5754, ''), (5755, ''), (5756, ''), (5757, '$70.00 '), (5758, ''), (5759, ''), (5760, ''), (5761, ''), (5762, ''), (5763, ''), (5764, ''), (5765, ''), (5766, ''), (5767, ''), (5768, ''), (5769, '$144.00 '), (5770, ''), (5771, ''), (5772, ''), (5773, '$164.00 '), (5774, ''), (5775, ''), (5776, ''), (5777, ''), (5778, ''), (5779, '$144.00 '), (5780, '$144.00 '), (5781, '$144.00 '), (5782, '$144.00 '), (5783, 'with above'), (5784, ''), (5785, '$144.00 '), (5786, ''), (5787, ''), (5788, ''), (5789, ''), (5790, ''), (5791, ''), (5792, ''), (5793, '$149.00 '), (5794, ''), (5795, ''), (5796, ''), (5797, ''), (5798, ''), (5799, ''), (5800, ''), (5801, '$144.00 '), (5802, '$149.00 '), (5803, 'included'), (5804, ''), (5805, ''), (5806, ''), (5807, '$204.00 '), (5808, ''), (5809, ''), (5810, ''), (5811, ''), (5812, ''), (5813, ''), (5814, '$144.00 '), (5815, ''), (5816, '$409.00 '), (5817, '$223.00 '), (5818, ''), (5819, ''), (5820, ''), (5821, ''), (5822, ''), (5823, '$125.00 '), (5824, '$134.00 '), (5825, ''), (5826, ''), (5827, '$164.00 '), (5828, '$45.00 '), (5829, ''), (5830, ''), (5831, ''), (5832, '$125.00 '), (5833, ''), (5834, ''), (5835, 'Above'), (5836, '$144.00 '), (5837, 'In'), (5838, ''), (5839, ''), (5840, ''), (5841, ''), (5842, '$204.00 '), (5843, ''), (5844, ''), (5845, '$204.00 '), (5846, ''), (5847, ''), (5848, '$204.00 '), (5849, ''), (5850, ''), (5851, ''), (5852, ''), (5853, ''), (5854, ''), (5855, '$144.00 '), (5856, ''), (5857, ''), (5858, 'quote'), (5859, ''), (5860, ''), (5861, '$79.00 '), (5862, ''), (5863, ''), (5864, ''), (5865, ''), (5866, ''), (5867, ''), (5868, ''), (5869, ''), (5870, '$114.00 '), (5871, ''), (5872, 'In Price'), (5873, '$85.00 '), (5874, '$204.00 '), (5875, ''), (5876, '$237.00 '), (5877, '$209.00 '), (5878, '$204.00 '), (5879, '$144.00 '), (5880, ''), (5881, ''), (5882, '$99.00 '), (5883, '$204.00 '), (5884, ''), (5885, '$204.00 '), (5886, ''), (5887, ''), (5888, ''), (5889, ''), (5890, ''), (5891, '$149.00 '), (5892, ''), (5893, '$149.00 '), (5894, ''), (5895, ''), (5896, '$144.00 '), (5897, '$79.00 '), (5898, ''), (5899, '$144.00 '), (5900, ''), (5901, ''), (5902, ''), (5903, '$204.00 '), (5904, ''), (5905, ''), (5906, ''), (5907, ''), (5908, '$409.00 '), (5909, '$409.00 '), (5910, '$158.00 '), (5911, '$79.00 '), (5912, ''), (5913, ''), (5914, ''), (5915, '$85.00 '), (5916, '$144.00 '), (5917, ''), (5918, ''), (5919, '$174.00 '), (5920, '$79.00 '), (5921, '$79.00 '), (5922, ''), (5923, ''), (5924, '$204.00 '), (5925, ''), (5926, ''), (5927, ''), (5928, '$189.00 '), (5929, '$164.00 '), (5930, ''), (5931, ''), (5932, ''), (5933, '$144.00 '), (5934, '$144.00 '), (5935, ''), (5936, ''), (5937, ''), (5938, '$85.00 '), (5939, ''), (5940, '$204.00 '), (5941, ''), (5942, ''), (5943, ''), (5944, ''), (5945, ''), (5946, ''), (5947, ''), (5948, '$134.00 '), (5949, ''), (5950, ''), (5951, ''), (5952, ''), (5953, ''), (5954, '$85.00 '), (5955, ''), (5956, '$204.00 '), (5957, ''), (5958, '$409.00 '), (5959, ''), (5960, ''), (5961, ''), (5962, ''), (5963, ''), (5964, ''), (5965, ''), (5966, '$175.00 '), (5967, ''), (5968, '$175.00 '), (5969, '$175.00 '), (5970, '$175.00 '), (5971, '$175.00 '), (5972, ''), (5973, '$170.00 '), (5974, '$409.00 '), (5975, ''), (5976, ''), (5977, ''), (5978, '$144.00 '), (5979, ''), (5980, ''), (5981, ''), (5982, ''), (5983, 'inc.'), (5984, '$409.00 '), (5985, '$144.00 '), (5986, ''), (5987, ''), (5988, ''), (5989, '$204.00 '), (5990, ''), (5991, ''), (5992, ''), (5993, ''), (5994, ''), (5995, '$79.00 '), (5996, ''), (5997, '$79.00 '), (5998, ''), (5999, ''), (6000, ''), (6001, '$144.00 '), (6002, '$79.00 '), (6003, ''), (6004, ''), (6005, ''), (6006, ''), (6007, ''), (6008, ''), (6009, ''), (6010, ''), (6011, ''), (6012, '$144.00 '), (6013, ''), (6014, ''), (6015, '$144.00 '), (6016, ''), (6017, ''), (6018, ''), (6019, ''), (6020, '$125.00 '), (6021, ''), (6022, ''), (6023, ''), (6024, ''), (6025, ''), (6026, ''), (6027, ''), (6028, ''), (6029, ''), (6030, ''), (6031, '$200.00 '), (6032, ''), (6033, ''), (6034, '$125.00 '), (6035, ''), (6036, '$204.00 '), (6037, ''), (6038, ''), (6039, ''), (6040, 'in above '), (6041, ''), (6042, ''), (6043, '$55.00 '), (6044, ''), (6045, '$104.00 '), (6046, ''), (6047, '$144.00 '), (6048, '$79.00 '), (6049, '$79.00 '), (6050, ''), (6051, '$250.00 '), (6052, ''), (6053, ''), (6054, '$164.00 '), (6055, ''), (6056, ''), (6057, 'Included'), (6058, ''), (6059, ''), (6060, ''), (6061, '$144.00 '), (6062, '$204.00 '), (6063, '$144.00 '), (6064, '$104.00 '), (6065, 'in'), (6066, ''), (6067, ''), (6068, '$175.00 '), (6069, ''), (6070, ''), (6071, '$144.00 '), (6072, ''), (6073, '$104.00 '), (6074, 'included'), (6075, '$144.00 '), (6076, ''), (6077, 'incl'), (6078, '$104.00 '), (6079, ''), (6080, ''), (6081, ''), (6082, '$149.00 '), (6083, '$175.00 '), (6084, '$134.00 '), (6085, ''), (6086, '$175.00 '), (6087, ''), (6088, 'in'), (6089, ''), (6090, '$204.00 '), (6091, '$104.00 '), (6092, ''), (6093, '$104.00 '), (6094, ''), (6095, '$144.00 '), (6096, ''), (6097, '$204.00 '), (6098, ''), (6099, ''), (6100, ''), (6101, ''), (6102, ''), (6103, ''), (6104, '$144.00 '), (6105, '$224.00 '), (6106, '$204.00 '), (6107, ''), (6108, ''), (6109, '$134.00 '), (6110, '$175.00 '), (6111, '$175.00 '), (6112, ''), (6113, '$85.00 '), (6114, '$144.00 '), (6115, ''), (6116, ''), (6117, '$550.00 '), (6118, ''), (6119, ''), (6120, ''), (6121, ''), (6122, ''), (6123, ''), (6124, ''), (6125, ''), (6126, ''), (6127, ''), (6128, ''), (6129, ''), (6130, ''), (6131, ''), (6132, ''), (6133, ''), (6134, 'In Above'), (6135, ''), (6136, ''), (6137, '$244.00 '), (6138, '$409.00 '), (6139, '$244.00 '), (6140, '$244.00 '), (6141, ''), (6142, ''), (6143, ''), (6144, '$144.00 '), (6145, ''), (6146, '$79.00 '), (6147, ''), (6148, ''), (6149, '$567.00 '), (6150, '$149.00 '), (6151, '$409.00 '), (6152, ''), (6153, '$204.00 '), (6154, '$204.00 '), (6155, '$144.00 '), (6156, 'w/ price'), (6157, '$204.00 '), (6158, ''), (6159, ''), (6160, '$204.00 '), (6161, '$204.00 '), (6162, ''), (6163, '$204.00 '), (6164, ''), (6165, '$149.00 '), (6166, ''), (6167, ''), (6168, '$204.00 '), (6169, ''), (6170, '$409.00 '), (6171, ''), (6172, '$85.00 '), (6173, ''), (6174, ''), (6175, ''), (6176, ''), (6177, ''), (6178, '$144.00 '), (6179, 'Inc. '), (6180, '$144.00 '), (6181, '$204.00 '), (6182, ''), (6183, '$144.00 '), (6184, '$144.00 '), (6185, '$144.00 '), (6186, '$204.00 '), (6187, '$359.00 '), (6188, '$144.00 '), (6189, ''), (6190, ''), (6191, ''), (6192, ''), (6193, '$144.00 '), (6194, ''), (6195, ''), (6196, '$144.00 '), (6197, ''), (6198, ''), (6199, ''), (6200, '$79.00 '), (6201, '$144.00 '), (6202, '$144.00 '), (6203, '$409.00 '), (6204, ''), (6205, ''), (6206, ''), (6207, ''), (6208, ''), (6209, '$84.00 '), (6210, ''), (6211, ''), (6212, ''), (6213, ''), (6214, ''), (6215, ''), (6216, ''), (6217, ''), (6218, '$300.00 '), (6219, '$300.00 '), (6220, ''), (6221, ''), (6222, ''), (6223, ''), (6224, ''), (6225, ''), (6226, ''), (6227, ''), (6228, '$144.00 '), (6229, ''), (6230, ''), (6231, ''), (6232, '$399.00 '), (6233, '$199.00 '), (6234, ''), (6235, ''), (6236, ''), (6237, ''), (6238, ''), (6239, ''), (6240, ''), (6241, ''), (6242, '$199.00 '), (6243, ''), (6244, ''), (6245, ''), (6246, '$139.00 '), (6247, ''), (6248, ''), (6249, ''), (6250, ''), (6251, ''), (6252, ''), (6253, ''), (6254, ''), (6255, ''), (6256, ''), (6257, ''), (6258, ''), (6259, ''), (6260, ''), (6261, '$1.50 '), (6262, ''), (6263, '$144.00 '), (6264, '$174.00 '), (6265, ''), (6266, ''), (6267, ''), (6268, '$139.00 '), (6269, ''), (6270, ''), (6271, ''), (6272, ''), (6273, ''), (6274, '$144.00 '), (6275, ''), (6276, '$55.00 '), (6277, ''), (6278, ''), (6279, ''), (6280, ''), (6281, ''), (6282, ''), (6283, ''), (6284, '$409.00 '), (6285, '$144.00 '), (6286, ''), (6287, ''), (6288, ''), (6289, '$144.00 '), (6290, '$244.00 '), (6291, ''), (6292, ''), (6293, ''), (6294, ''), (6295, ''), (6296, ''), (6297, ''), (6298, ''), (6299, ''), (6300, '$99.00 '), (6301, '$104.00 '), (6302, ''), (6303, '$144.00 '), (6304, ''), (6305, ''), (6306, ''), (6307, ''), (6308, ''), (6309, '$0.00 '), (6310, ''), (6311, ''), (6312, ''), (6313, ''), (6314, ''), (6315, ''), (6316, '$399.00 '), (6317, ''), (6318, ''), (6319, ''), (6320, ''), (6321, ''), (6322, '$99.00 '), (6323, ''), (6324, ''), (6325, ''), (6326, ''), (6327, ''), (6328, ''), (6329, ''), (6330, ''), (6331, ''), (6332, ''), (6333, '$139.00 '), (6334, ''), (6335, ''), (6336, ''), (6337, ''), (6338, ''), (6339, ''), (6340, ''), (6341, ''), (6342, ''), (6343, '$144.00 '), (6344, ''), (6345, ''), (6346, ''), (6347, ''), (6348, ''), (6349, ''), (6350, '$104.00 '), (6351, ''), (6352, ''), (6353, '$144.00 '), (6354, ''), (6355, ''), (6356, '$184.00 '), (6357, ''), (6358, '$104.00 '), (6359, ''), (6360, ''), (6361, ''), (6362, '$155.00 '), (6363, '$109.00 '), (6364, ''), (6365, ''), (6366, ''), (6367, ''), (6368, ''), (6369, ''), (6370, ''), (6371, ''), (6372, ''), (6373, ''), (6374, '$144.00 '), (6375, ''), (6376, ''), (6377, ''), (6378, ''), (6379, ''), (6380, ''), (6381, ''), (6382, '$300.00 '), (6383, ''), (6384, ''), (6385, '$302.75 '), (6386, '$563.38 '), (6387, ''), (6388, ''), (6389, ''), (6390, ''), (6391, ''), (6392, ''), (6393, '$225.35 '), (6394, ''), (6395, ''), (6396, '$225.35 '), (6397, ''), (6398, '$619.72 '), (6399, ''), (6400, ''), (6401, ''), (6402, ''), (6403, ''), (6404, ''), (6405, ''), (6406, ''), (6407, ''), (6408, ''), (6409, ''), (6410, '$619.72 '), (6411, ''), (6412, ''), (6413, ''), (6414, ''), (6415, ''), (6416, ''), (6417, ''), (6418, '$144.00 '), (6419, ''), (6420, '$409.00 '), (6421, '$204.00 '), (6422, ''), (6423, ''), (6424, ''), (6425, ''), (6426, '$144.00 '), (6427, '$209.00 '), (6428, ''), (6429, ''), (6430, '$144.00 '), (6431, '$144.00 '), (6432, ''), (6433, '$209.00 '), (6434, ''), (6435, ''), (6436, '$0.00 '), (6437, ''), (6438, ''), (6439, ''), (6440, ''), (6441, ''), (6442, ''), (6443, ''), (6444, ''), (6445, '$85.00 '), (6446, ''), (6447, 'Included'), (6448, ''), (6449, ''), (6450, ''), (6451, ''), (6452, ''), (6453, ''), (6454, ''), (6455, ''), (6456, ''), (6457, '$99.00 '), (6458, ''), (6459, ''), (6460, ''), (6461, ''), (6462, ''), (6463, ''), (6464, '$139.00 '), (6465, ''), (6466, ''), (6467, '$644.00 '), (6468, ''), (6469, ''), (6470, ''), (6471, '$139.00 '), (6472, ''), (6473, ''), (6474, ''), (6475, ''), (6476, ''), (6477, ''), (6478, ''), (6479, ''), (6480, ''), (6481, ''), (6482, ''), (6483, ''), (6484, ''), (6485, ''), (6486, ''), (6487, '$359.00 '), (6488, ''), (6489, ''), (6490, ''), (6491, ''), (6492, ''), (6493, ''), (6494, ''), (6495, ''), (6496, ''), (6497, ''), (6498, ''), (6499, ''), (6500, ''), (6501, ''), (6502, '$508.00 '), (6503, ''), (6504, '$55.00 '), (6505, ''), (6506, ''), (6507, ''), (6508, '$149.00 '), (6509, ''), (6510, ''), (6511, ''), (6512, ''), (6513, ''), (6514, ''), (6515, ''), (6516, ''), (6517, '$75.00 '), (6518, ''), (6519, '$144.00 '), (6520, '$144.00 '), (6521, '$144.00 '), (6522, ''), (6523, ''), (6524, ''), (6525, ''), (6526, ''), (6527, ''), (6528, '$175.00 '), (6529, '$175.00 '), (6530, ''), (6531, '$144.00 '), (6532, 'In'), (6533, ''), (6534, '$144.00 '), (6535, 'In'), (6536, ''), (6537, '$149.00 '), (6538, ''), (6539, ''), (6540, ''), (6541, ''), (6542, ''), (6543, '$409.00 '), (6544, ''), (6545, '$537.00 '), (6546, '$99.00 '), (6547, '$85.00 '), (6548, '$85.00 '), (6549, ''), (6550, '$175.00 '), (6551, ''), (6552, ''), (6553, ''), (6554, ''), (6555, ''), (6556, ''), (6557, ''), (6558, ''), (6559, '$149.00 '), (6560, ''), (6561, ''), (6562, ''), (6563, '$144.00 '), (6564, ''), (6565, '$304.00 '), (6566, ''), (6567, ''), (6568, ''), (6569, ''), (6570, ''), (6571, ''), (6572, ''), (6573, ''), (6574, ''), (6575, '$89.00 '), (6576, '$105.00 '), (6577, ''), (6578, ''), (6579, '$349.00 '), (6580, ''), (6581, ''), (6582, ''), (6583, '$439.00 '), (6584, ''), (6585, ''), (6586, ''), (6587, ''), (6588, '$144.00 '), (6589, '$144.00 '), (6590, ''), (6591, ''), (6592, ''), (6593, ''), (6594, '$144.00 '), (6595, ''), (6596, ''), (6597, '$79.00 '), (6598, ''), (6599, ''), (6600, ''), (6601, ''), (6602, ''), (6603, ''), (6604, ''), (6605, '$99.00 '), (6606, ''), (6607, ''), (6608, ''), (6609, ''), (6610, ''), (6611, ''), (6612, ''), (6613, ''), (6614, ''), (6615, '$70.00 '), (6616, ''), (6617, ''), (6618, ''), (6619, ''), (6620, ''), (6621, ''), (6622, ''), (6623, '$804.00 '), (6624, ''), (6625, ''), (6626, ''), (6627, ''), (6628, ''), (6629, ''), (6630, ''), (6631, ''), (6632, ''), (6633, ''), (6634, ''), (6635, ''), (6636, ''), (6637, ''), (6638, ''), (6639, ''), (6640, ''), (6641, ''), (6642, ''), (6643, '$204.00 '), (6644, '$104.00 '), (6645, ''), (6646, '$508.00 '), (6647, ''), (6648, ''), (6649, ''), (6650, ''), (6651, ''), (6652, ''), (6653, ''), (6654, ''), (6655, ''), (6656, '$64.00 '), (6657, ''), (6658, ''), (6659, ''), (6660, ''), (6661, ''), (6662, ''), (6663, ''), (6664, ''), (6665, ''), (6666, ''), (6667, ''), (6668, ''), (6669, ''), (6670, ''), (6671, ''), (6672, ''), (6673, ''), (6674, ''), (6675, ''), (6676, '$144.00 '), (6677, '$144.00 '), (6678, '$283.00 '), (6679, '$85.00 '), (6680, ''), (6681, '$204.00 '), (6682, '$209.00 '), (6683, '$85.00 '), (6684, ''), (6685, ''), (6686, '$144.00 '), (6687, '$209.00 '), (6688, ''), (6689, ''), (6690, '$99.00 '), (6691, ''), (6692, ''), (6693, '$144.00 '), (6694, ''), (6695, ''), (6696, ''), (6697, ''), (6698, 'inc.'), (6699, ''), (6700, '$85.00 '), (6701, ''), (6702, ''), (6703, '$144.00 '), (6704, 'in the'), (6705, '$144.00 '), (6706, '$144.00 '), (6707, ''), (6708, '$175.00 '), (6709, '$175.00 '), (6710, ''), (6711, ''), (6712, ''), (6713, ''), (6714, ''), (6715, ''), (6716, ''), (6717, ''), (6718, '$150.00 '), (6719, ''), (6720, ''), (6721, ''), (6722, '$289.00 '), (6723, ''), (6724, ''), (6725, ''), (6726, ''), (6727, ''), (6728, ''), (6729, ''), (6730, ''), (6731, ''), (6732, ''), (6733, ''), (6734, ''), (6735, ''), (6736, ''), (6737, ''), (6738, ''), (6739, ''), (6740, ''), (6741, ''), (6742, ''), (6743, '$139.00 '), (6744, ''), (6745, ''), (6746, ''), (6747, ''), (6748, ''), (6749, ''), (6750, ''), (6751, ''), (6752, ''), (6753, ''), (6754, ''), (6755, ''), (6756, ''), (6757, '$399.00 '), (6758, ''), (6759, ''), (6760, '$134.00 '), (6761, ''), (6762, ''), (6763, ''), (6764, ''), (6765, ''), (6766, ''), (6767, '$75.00 '), (6768, '$109.00 '), (6769, ''), (6770, ''), (6771, '$349.00 '), (6772, '$204.00 '), (6773, ''), (6774, '$144.00 '), (6775, ''), (6776, '$204.00 '), (6777, ''), (6778, ''), (6779, ''), (6780, ''), (6781, ''), (6782, ''), (6783, ''), (6784, '$366.20 '), (6785, ''), (6786, ''), (6787, ''), (6788, ''), (6789, ''), (6790, ''), (6791, ''), (6792, '$619.72 '), (6793, '$225.35 '), (6794, '$915.00 '), (6795, '$915.00 '), (6796, ''), (6797, ''), (6798, '$915.00 '), (6799, '$619.72 '), (6800, ''), (6801, ''), (6802, ''), (6803, '$225.35 '), (6804, '$225.35 '), (6805, '$619.72 '), (6806, ''), (6807, ''), (6808, '$619.72 '), (6809, ''), (6810, '$302.75 '), (6811, '$570.42 '), (6812, '$619.72 '), (6813, ''), (6814, '$619.72 '), (6815, ''), (6816, '$619.72 '), (6817, '$619.72 '), (6818, ''), (6819, ''), (6820, ''), (6821, ''), (6822, ''), (6823, ''), (6824, ''), (6825, '$395.00 '), (6826, ''), (6827, '$430.00 '), (6828, ''), (6829, '$395.00 '), (6830, ''), (6831, ''), (6832, ''), (6833, ''), (6834, '$155.00 '), (6835, '$390.00 '), (6836, ''), (6837, ''), (6838, ''), (6839, ''), (6840, ''), (6841, ''), (6842, ''), (6843, '$274.00 '), (6844, '$409.00 '), (6845, '$85.00 '), (6846, '$144.00 '), (6847, 'in'), (6848, ''), (6849, ''), (6850, '$409.00 '), (6851, ''), (6852, ''), (6853, ''), (6854, ''), (6855, ''), (6856, ''), (6857, ''), (6858, ''), (6859, ''), (6860, ''), (6861, '$174.00 '), (6862, ''), (6863, '$85.00 '), (6864, '$409.00 '), (6865, ''), (6866, ''), (6867, ''), (6868, ''), (6869, '$159.00 '), (6870, '$84.00 '), (6871, ''), (6872, ''), (6873, ''), (6874, ''), (6875, ''), (6876, ''), (6877, ''), (6878, ''), (6879, ''), (6880, ''), (6881, ''), (6882, ''), (6883, '$139.00 '), (6884, ''), (6885, ''), (6886, '$544.00 '), (6887, ''), (6888, ''), (6889, ''), (6890, ''), (6891, ''), (6892, ''), (6893, ''), (6894, ''), (6895, '$199.00 '), (6896, ''), (6897, ''), (6898, ''), (6899, ''), (6900, ''), (6901, ''), (6902, ''), (6903, ''), (6904, ''), (6905, ''), (6906, ''), (6907, ''), (6908, ''), (6909, ''), (6910, ''), (6911, ''), (6912, ''), (6913, ''), (6914, ''), (6915, ''), (6916, ''), (6917, ''), (6918, ''), (6919, ''), (6920, ''), (6921, ''), (6922, ''), (6923, ''), (6924, ''), (6925, ''), (6926, '$94.00 '), (6927, ''), (6928, ''), (6929, ''), (6930, ''), (6931, ''), (6932, ''), (6933, ''), (6934, ''), (6935, ''), (6936, ''), (6937, ''), (6938, ''), (6939, ''), (6940, ''), (6941, ''), (6942, ''), (6943, ''), (6944, ''), (6945, ''), (6946, '$114.00 '), (6947, ''), (6948, ''), (6949, ''), (6950, ''), (6951, ''), (6952, '$114.00 '), (6953, ''), (6954, ''), (6955, ''), (6956, ''), (6957, ''), (6958, ''), (6959, '$359.00 '), (6960, ''), (6961, '$144.00 '), (6962, '$144.00 '), (6963, ''), (6964, ''), (6965, '$144.00 '), (6966, ''), (6967, ''), (6968, '$104.00 '), (6969, ''), (6970, ''), (6971, ''), (6972, ''), (6973, '$144.00 '), (6974, '$204.00 '), (6975, ''), (6976, 'inc.'), (6977, '$204.00 '); INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (6978, ''), (6979, '$144.00 '), (6980, '$409.00 '), (6981, '$144.00 '), (6982, '$144.00 '), (6983, '$144.00 '), (6984, '$144.00 '), (6985, '$144.00 '), (6986, '$144.00 '), (6987, '$144.00 '), (6988, ''), (6989, '$359.00 '), (6990, ''), (6991, ''), (6992, ''), (6993, ''), (6994, ''), (6995, ''), (6996, ''), (6997, ''), (6998, ''), (6999, ''), (7000, ''), (7001, ''), (7002, ''), (7003, ''), (7004, ''), (7005, ''), (7006, ''), (7007, ''), (7008, ''), (7009, ''), (7010, ''), (7011, ''), (7012, ''), (7013, ''), (7014, '$65.00 '), (7015, ''), (7016, ''), (7017, ''), (7018, ''), (7019, '$355.00 '), (7020, ''), (7021, ''), (7022, ''), (7023, ''), (7024, '$199.00 '), (7025, ''), (7026, ''), (7027, ''), (7028, ''), (7029, ''), (7030, ''), (7031, ''), (7032, ''), (7033, ''), (7034, ''), (7035, ''), (7036, ''), (7037, ''), (7038, '$139.00 '), (7039, ''), (7040, ''), (7041, ''), (7042, ''), (7043, ''), (7044, ''), (7045, ''), (7046, ''), (7047, '$144.00 '), (7048, '$409.00 '), (7049, ''), (7050, ''), (7051, ''), (7052, ''), (7053, ''), (7054, '$359.00 '), (7055, ''), (7056, ''), (7057, ''), (7058, '$75.00 '), (7059, ''), (7060, ''), (7061, ''), (7062, ''), (7063, ''), (7064, ''), (7065, ''), (7066, '$104.00 '), (7067, '$144.00 '), (7068, ''), (7069, ''), (7070, ''), (7071, ''), (7072, ''), (7073, ''), (7074, ''), (7075, ''), (7076, ''), (7077, '$232.39 '), (7078, ''), (7079, ''), (7080, ''), (7081, ''), (7082, ''), (7083, ''), (7084, ''), (7085, ''), (7086, ''), (7087, ''), (7088, ''), (7089, ''), (7090, ''), (7091, ''), (7092, ''), (7093, ''), (7094, ''), (7095, ''), (7096, ''), (7097, ''), (7098, '$70.00 '), (7099, '$70.00 '), (7100, '$69.00 '), (7101, '$239.00 '), (7102, '$84.00 '), (7103, ''), (7104, ''), (7105, ''), (7106, ''), (7107, ''), (7108, ''), (7109, ''), (7110, ''), (7111, ''), (7112, ''), (7113, '$94.00 '), (7114, '$204.00 '), (7115, ''), (7116, ''), (7117, ''), (7118, ''), (7119, ''), (7120, ''), (7121, '$199.00 '), (7122, ''), (7123, ''), (7124, ''), (7125, ''), (7126, ''), (7127, '$225.35 '), (7128, '$563.38 '), (7129, '$232.39 '), (7130, '$563.38 '), (7131, '$753.52 '), (7132, '$570.42 '), (7133, ''), (7134, ''), (7135, ''), (7136, ''), (7137, ''), (7138, ''), (7139, '$225.35 '), (7140, ''), (7141, ''), (7142, 'above '), (7143, ''), (7144, ''), (7145, ''), (7146, ''), (7147, '$409.00 '), (7148, ''), (7149, ''), (7150, '$819.00 '), (7151, 'Price'), (7152, ''), (7153, ''), (7154, ''), (7155, ''), (7156, ''), (7157, '$144.00 '), (7158, ''), (7159, ''), (7160, ''), (7161, ''), (7162, ''), (7163, '$139.00 '), (7164, ''), (7165, ''), (7166, ''), (7167, ''), (7168, ''), (7169, ''), (7170, ''), (7171, ''), (7172, ''), (7173, ''), (7174, ''), (7175, ''), (7176, '$199.00 '), (7177, ''), (7178, ''), (7179, ''), (7180, ''), (7181, ''), (7182, ''), (7183, ''), (7184, ''), (7185, ''), (7186, ''), (7187, ''), (7188, ''), (7189, ''), (7190, ''), (7191, ''), (7192, '$119.00 '), (7193, '$139.00 '), (7194, ''), (7195, '$199.00 '), (7196, ''), (7197, ''), (7198, ''), (7199, '$144.00 '), (7200, '$609.00 '), (7201, ''), (7202, ''), (7203, '$399.00 '), (7204, ''), (7205, ''), (7206, ''), (7207, ''), (7208, '$144.00 '), (7209, ''), (7210, ''), (7211, ''), (7212, ''), (7213, ''), (7214, 'with'), (7215, '$144.00 '), (7216, '$359.00 '), (7217, '$204.00 '), (7218, ''), (7219, ''), (7220, '$144.00 '), (7221, '$99.00 '), (7222, '$144.00 '), (7223, ''), (7224, ''), (7225, '$144.00 '), (7226, '$134.00 '), (7227, ''), (7228, 'Inc. Price'), (7229, ''), (7230, ''), (7231, '$144.00 '), (7232, '$144.00 '), (7233, ''), (7234, 'price'), (7235, ''), (7236, '$204.00 '), (7237, ''), (7238, 'price'), (7239, ''), (7240, '$209.00 '), (7241, ''), (7242, ''), (7243, ''), (7244, ''), (7245, ''), (7246, ''), (7247, ''), (7248, ''), (7249, ''), (7250, ''), (7251, ''), (7252, ''), (7253, ''), (7254, ''), (7255, ''), (7256, ''), (7257, ''), (7258, '$220.00 '), (7259, ''), (7260, ''), (7261, ''), (7262, ''), (7263, ''), (7264, ''), (7265, ''), (7266, ''), (7267, ''), (7268, '$139.00 '), (7269, ''), (7270, '$399.00 '), (7271, ''), (7272, ''), (7273, ''), (7274, ''), (7275, ''), (7276, ''), (7277, ''), (7278, ''), (7279, '$199.00 '), (7280, ''), (7281, ''), (7282, ''), (7283, ''), (7284, ''), (7285, '$149.00 '), (7286, ''), (7287, ''), (7288, ''), (7289, '$399.00 '), (7290, '$139.00 '), (7291, '$144.00 '), (7292, ''), (7293, ''), (7294, ''), (7295, '$409.00 '), (7296, ''), (7297, ''), (7298, ''), (7299, ''), (7300, ''), (7301, ''), (7302, ''), (7303, ''), (7304, ''), (7305, ''), (7306, ''), (7307, ''), (7308, ''), (7309, ''), (7310, ''), (7311, ''), (7312, ''), (7313, ''), (7314, ''), (7315, ''), (7316, ''), (7317, ''), (7318, ''), (7319, ''), (7320, ''), (7321, ''), (7322, ''), (7323, ''), (7324, ''), (7325, ''), (7326, ''), (7327, ''), (7328, ''), (7329, ''), (7330, ''), (7331, ''), (7332, ''), (7333, ''), (7334, ''), (7335, ''), (7336, ''), (7337, ''), (7338, '$175.00 '), (7339, '$144.00 '), (7340, ''), (7341, ''), (7342, ''), (7343, ''), (7344, '$204.00 '), (7345, ''), (7346, '$144.00 '), (7347, ''), (7348, '$409.00 '), (7349, '$144.00 '), (7350, ''), (7351, ''), (7352, '$144.00 '), (7353, ''), (7354, ''), (7355, ''), (7356, ''), (7357, ''), (7358, ''), (7359, ''), (7360, ''), (7361, '$174.00 '), (7362, '$409.00 '), (7363, ''), (7364, 'in'), (7365, ''), (7366, ''), (7367, ''), (7368, '$300.00 '), (7369, ''), (7370, '$55.00 '), (7371, ''), (7372, ''), (7373, ''), (7374, 'In Price'), (7375, ''), (7376, ''), (7377, ''), (7378, ''), (7379, ''), (7380, ''), (7381, '$114.00 '), (7382, ''), (7383, ''), (7384, '$517.00 '), (7385, ''), (7386, ''), (7387, ''), (7388, ''), (7389, ''), (7390, ''), (7391, '$300.00 '), (7392, '$520.00 '), (7393, ''), (7394, ''), (7395, ''), (7396, ''), (7397, ''), (7398, ''), (7399, '$144.00 '), (7400, ''), (7401, ''), (7402, ''), (7403, ''), (7404, ''), (7405, ''), (7406, ''), (7407, ''), (7408, '$284.00 '), (7409, '$399.00 '), (7410, ''), (7411, ''), (7412, ''), (7413, ''), (7414, ''), (7415, ''), (7416, 'in price.'), (7417, ''), (7418, ''), (7419, ''), (7420, ''), (7421, ''), (7422, ''), (7423, '$508.00 '), (7424, '$644.00 '), (7425, ''), (7426, '$544.00 '), (7427, '$204.00 '), (7428, ''), (7429, ''), (7430, ''), (7431, ''), (7432, ''), (7433, ''), (7434, '$85.00 '), (7435, ''), (7436, ''), (7437, ''), (7438, ''), (7439, ''), (7440, ''), (7441, ''), (7442, ''), (7443, ''), (7444, ''), (7445, ''), (7446, ''), (7447, ''), (7448, ''), (7449, ''), (7450, ''), (7451, ''), (7452, ''), (7453, ''), (7454, '$144.00 '), (7455, '$85.00 '), (7456, ''), (7457, ''), (7458, ''), (7459, '$537.00 '), (7460, ''), (7461, ''), (7462, ''), (7463, '$224.00 '), (7464, '$104.00 '), (7465, ''), (7466, '$154.00 '), (7467, '$144.00 '), (7468, ''), (7469, ''), (7470, ''), (7471, ''), (7472, ''), (7473, ''), (7474, ''), (7475, ''), (7476, ''), (7477, ''), (7478, ''), (7479, ''), (7480, '$170.00 '), (7481, ''), (7482, ''), (7483, ''), (7484, ''), (7485, '$144.00 '), (7486, ''), (7487, ''), (7488, ''), (7489, ''), (7490, ''), (7491, ''), (7492, ''), (7493, ''), (7494, ''), (7495, '$99.00 '), (7496, ''), (7497, ''), (7498, ''), (7499, ''), (7500, '$199.00 '), (7501, '$204.00 '), (7502, ''), (7503, '$144.00 '), (7504, ''), (7505, ''), (7506, '$204.00 '), (7507, ''), (7508, ''), (7509, ''), (7510, ''), (7511, '$204.00 '), (7512, 'in price'), (7513, ''), (7514, ''), (7515, ''), (7516, ''), (7517, '$144.00 '), (7518, ''), (7519, ''), (7520, ''), (7521, ''), (7522, ''), (7523, ''), (7524, ''), (7525, ''), (7526, ''), (7527, ''), (7528, ''), (7529, '$204.00 '), (7530, ''), (7531, ''), (7532, ''), (7533, ''), (7534, ''), (7535, '$109.00 '), (7536, '$149.00 '), (7537, '$55.00 '), (7538, 'in'), (7539, ''), (7540, ''), (7541, '$104.00 '), (7542, '$349.00 '), (7543, '$149.00 '), (7544, ''), (7545, 'Included'), (7546, '$214.00 '), (7547, ''), (7548, ''), (7549, ''), (7550, ''), (7551, ''), (7552, ''), (7553, ''), (7554, ''), (7555, '$99.00 '), (7556, ''), (7557, ''), (7558, '$214.00 '), (7559, ''), (7560, ''), (7561, ''), (7562, ''), (7563, ''), (7564, ''), (7565, ''), (7566, ''), (7567, ''), (7568, ''), (7569, ''), (7570, ''), (7571, '$144.00 '), (7572, ''), (7573, ''), (7574, ''), (7575, ''), (7576, 'in the '), (7577, ''), (7578, ''), (7579, ''), (7580, ''), (7581, ''), (7582, ''), (7583, '$85.00 '), (7584, ''), (7585, ''), (7586, ''), (7587, ''), (7588, ''), (7589, ''), (7590, ''), (7591, ''), (7592, ''), (7593, ''), (7594, ''), (7595, ''), (7596, ''), (7597, ''), (7598, ''), (7599, '$85.00 '), (7600, ''), (7601, ''), (7602, ''), (7603, 'quote'), (7604, ''), (7605, ''), (7606, ''), (7607, '$204.00 '), (7608, '$89.00 '), (7609, ''), (7610, ''), (7611, ''), (7612, ''), (7613, ''), (7614, ''), (7615, '$204.00 '), (7616, ''), (7617, ''), (7618, '$209.00 '), (7619, '$149.00 '), (7620, ''), (7621, ''), (7622, 'Price'), (7623, '$609.00 '), (7624, ''), (7625, '$144.00 '), (7626, '$204.00 '), (7627, '$204.00 '), (7628, ''), (7629, '$75.00 '), (7630, ''), (7631, ''), (7632, ''), (7633, '$124.00 '), (7634, '$124.00 '), (7635, 'In'), (7636, '$85.00 '), (7637, ''), (7638, ''), (7639, ''), (7640, ''), (7641, ''), (7642, ''), (7643, ''), (7644, ''), (7645, ''), (7646, ''), (7647, ''), (7648, '$144.00 '), (7649, '$149.00 '), (7650, ''), (7651, '$144.00 '), (7652, ''), (7653, '$85.00 '), (7654, '$144.00 '), (7655, ''), (7656, ''), (7657, ''), (7658, '$99.00 '), (7659, '$359.00 '), (7660, ''), (7661, ''), (7662, ''), (7663, ''), (7664, ''), (7665, ''), (7666, ''), (7667, ''), (7668, ''), (7669, ''), (7670, ''), (7671, ''), (7672, ''), (7673, ''), (7674, ''), (7675, ''), (7676, ''), (7677, '$159.00 '), (7678, '$89.00 '), (7679, '$89.00 '), (7680, '$149.00 '), (7681, 'Above'), (7682, ''), (7683, ''), (7684, ''), (7685, ''), (7686, ''), (7687, ''), (7688, ''), (7689, '$508.00 '), (7690, ''), (7691, ''), (7692, ''), (7693, ''), (7694, ''), (7695, '$149.00 '), (7696, ''), (7697, ''), (7698, ''), (7699, ''), (7700, ''), (7701, ''), (7702, ''), (7703, ''), (7704, ''), (7705, ''), (7706, '$409.00 '), (7707, ''), (7708, ''), (7709, ''), (7710, ''), (7711, ''), (7712, ''), (7713, ''), (7714, '$144.00 '), (7715, ''), (7716, '$89.00 '), (7717, '$144.00 '), (7718, '$144.00 '), (7719, ''), (7720, ''), (7721, '$144.00 '), (7722, '$144.00 '), (7723, ''), (7724, ''), (7725, '$69.00 '), (7726, ''), (7727, '$144.00 '), (7728, '$104.00 '), (7729, ''), (7730, ''), (7731, ''), (7732, '$164.00 '), (7733, ''), (7734, ''), (7735, ''), (7736, ''), (7737, ''), (7738, ''), (7739, ''), (7740, ''), (7741, ''), (7742, ''), (7743, ''), (7744, ''), (7745, ''), (7746, ''), (7747, ''), (7748, ''), (7749, ''), (7750, ''), (7751, '$409.00 '), (7752, ''), (7753, ''), (7754, ''), (7755, ''), (7756, ''), (7757, ''), (7758, ''), (7759, ''), (7760, ''), (7761, ''), (7762, ''), (7763, ''), (7764, ''), (7765, ''), (7766, '$124.00 '), (7767, '$114.00 '), (7768, ''), (7769, '$79.00 '), (7770, ''), (7771, ''), (7772, '$174.00 '), (7773, '$144.00 '), (7774, 'included i'), (7775, '$144.00 '), (7776, ''), (7777, '$144.00 '), (7778, '$85.00 '), (7779, ''), (7780, ''), (7781, '$35.00 '), (7782, ''), (7783, ''), (7784, ''), (7785, ''), (7786, '$134.00 '), (7787, '$209.00 '), (7788, ''), (7789, ''), (7790, ''), (7791, ''), (7792, '$144.00 '), (7793, ''), (7794, ''), (7795, '$85.00 '), (7796, ''), (7797, ''), (7798, ''), (7799, ''), (7800, ''), (7801, ''), (7802, ''), (7803, ''), (7804, '$124.00 '), (7805, '$224.00 '), (7806, ''), (7807, ''), (7808, ''), (7809, ''), (7810, ''), (7811, ''), (7812, ''), (7813, '$174.00 '), (7814, ''), (7815, ''), (7816, ''), (7817, ''), (7818, '$104.00 '), (7819, '$85.00 '), (7820, ''), (7821, 'the'), (7822, '$144.00 '), (7823, ''), (7824, '$144.00 '), (7825, 'Price'), (7826, ''), (7827, ''), (7828, ''), (7829, ''), (7830, ''), (7831, ''), (7832, ''), (7833, ''), (7834, '$204.00 '), (7835, ''), (7836, ''), (7837, ''), (7838, '$144.00 '), (7839, ''), (7840, '$175.00 '), (7841, ''), (7842, ''), (7843, '$79.00 '), (7844, ''), (7845, ''), (7846, '$144.00 '), (7847, ''), (7848, ''), (7849, ''), (7850, ''), (7851, ''), (7852, ''), (7853, '$454.00 '), (7854, ''), (7855, ''), (7856, ''), (7857, ''), (7858, ''), (7859, ''), (7860, ''), (7861, '$175.00 '), (7862, ''), (7863, ''), (7864, '$144.00 '), (7865, ''), (7866, ''), (7867, ''), (7868, ''), (7869, ''), (7870, ''), (7871, ''), (7872, ''), (7873, '$204.00 '), (7874, ''), (7875, '$149.00 '), (7876, ''), (7877, ''), (7878, '$144.00 '), (7879, '$175.00 '), (7880, '$45.00 '), (7881, '$99.00 '), (7882, '$144.00 '), (7883, ''), (7884, '$125.00 '), (7885, '$125.00 '), (7886, ''), (7887, ''), (7888, '$104.00 '), (7889, ''), (7890, ''), (7891, ''), (7892, ''), (7893, ''), (7894, ''), (7895, ''), (7896, ''), (7897, ''), (7898, ''), (7899, ''), (7900, ''), (7901, ''), (7902, ''), (7903, ''), (7904, '$449.00 '), (7905, ''), (7906, '$144.00 '), (7907, ''), (7908, ''), (7909, ''), (7910, ''), (7911, '$144.00 '), (7912, ''), (7913, 'above'), (7914, ''), (7915, ''), (7916, ''), (7917, ''), (7918, ''), (7919, ''), (7920, ''), (7921, ''), (7922, ''), (7923, ''), (7924, ''), (7925, ''), (7926, ''), (7927, '$204.00 '), (7928, '$459.00 '), (7929, ''), (7930, ''), (7931, ''), (7932, ''), (7933, '$149.00 '), (7934, ''), (7935, '$99.00 '), (7936, ''), (7937, '$144.00 '), (7938, ''), (7939, ''), (7940, ''), (7941, ''), (7942, ''), (7943, ''), (7944, '$35.00 '), (7945, '$35.00 '), (7946, ''), (7947, ''), (7948, '$35.00 '), (7949, '$149.00 '), (7950, ''), (7951, '$144.00 '), (7952, '$159.00 '), (7953, '$149.00 '), (7954, ''), (7955, '$478.00 '), (7956, '$109.00 '), (7957, ''), (7958, ''), (7959, ''), (7960, '$209.00 '), (7961, ''), (7962, ''), (7963, ''), (7964, ''), (7965, ''), (7966, ''), (7967, ''), (7968, ''), (7969, ''), (7970, ''), (7971, ''), (7972, ''), (7973, ''), (7974, '$409.00 '), (7975, '$454.00 '), (7976, ''), (7977, '$144.00 '), (7978, ''), (7979, ''), (7980, '$189.00 '), (7981, ''), (7982, ''), (7983, ''), (7984, ''), (7985, ''), (7986, ''), (7987, '$359.00 '), (7988, ''), (7989, ''), (7990, ''), (7991, ''), (7992, ''), (7993, ''), (7994, '$189.00 '), (7995, ''), (7996, ''), (7997, '$495.00 '), (7998, ''), (7999, ''), (8000, ''), (8001, '$94.00 '), (8002, ''), (8003, ''), (8004, ''), (8005, ''), (8006, ''), (8007, '$85.00 '), (8008, '$125.00 '), (8009, '$104.00 '), (8010, ''), (8011, '$85.00 '), (8012, 'above'), (8013, '$85.00 '), (8014, ''), (8015, ''), (8016, ''), (8017, ''), (8018, ''), (8019, ''), (8020, ''), (8021, '$144.00 '), (8022, '$144.00 '), (8023, ''), (8024, ''), (8025, ''), (8026, ''), (8027, ''), (8028, ''), (8029, '$85.00 '), (8030, ''), (8031, ''), (8032, ''), (8033, '$144.00 '), (8034, ''), (8035, '$209.00 '), (8036, ''), (8037, ''), (8038, ''), (8039, ''), (8040, ''), (8041, ''), (8042, '$204.00 '), (8043, ''), (8044, ''), (8045, ''), (8046, ''), (8047, '$204.00 '), (8048, ''), (8049, ''), (8050, ''), (8051, 'inc.'), (8052, ''), (8053, ''), (8054, '$114.00 '), (8055, ''), (8056, ''), (8057, ''), (8058, '$204.00 '), (8059, ''), (8060, ''), (8061, '$85.00 '), (8062, ''), (8063, ''), (8064, ''), (8065, ''), (8066, ''), (8067, ''), (8068, ''), (8069, ''), (8070, ''), (8071, ''), (8072, ''), (8073, ''), (8074, ''), (8075, ''), (8076, ''), (8077, ''), (8078, ''), (8079, ''), (8080, ''), (8081, ''), (8082, ''), (8083, ''), (8084, ''), (8085, ''), (8086, '$144.00 '), (8087, ''), (8088, '$175.00 '), (8089, ''), (8090, ''), (8091, ''), (8092, '$259.00 '), (8093, ''), (8094, ''), (8095, ''), (8096, ''), (8097, ''), (8098, ''), (8099, ''), (8100, ''), (8101, ''), (8102, ''), (8103, '$144.00 '), (8104, ''), (8105, ''), (8106, ''), (8107, ''), (8108, ''), (8109, ''), (8110, '$85.00 '), (8111, ''), (8112, ''), (8113, '$85.00 '), (8114, ''), (8115, ''), (8116, ''), (8117, ''), (8118, ''), (8119, ''), (8120, '$42.00 '), (8121, ''), (8122, ''), (8123, ''), (8124, ''), (8125, ''), (8126, ''), (8127, 'above'), (8128, ''), (8129, ''), (8130, ''), (8131, ' Above'), (8132, ''), (8133, '$3.95 '), (8134, ''), (8135, '$187.00 '), (8136, '$104.00 '), (8137, ''), (8138, '$104.00 '), (8139, ''), (8140, '$533.00 '), (8141, '$158.00 '), (8142, '$149.00 '), (8143, ''), (8144, '$409.00 '), (8145, ''), (8146, ''), (8147, ''), (8148, '$149.00 '), (8149, ''), (8150, '$144.00 '), (8151, ''), (8152, ''), (8153, ''), (8154, ''), (8155, ''), (8156, ''), (8157, ''), (8158, '$144.00 '), (8159, ''), (8160, '$104.00 '), (8161, '$85.00 '), (8162, '$85.00 '), (8163, '$204.00 '), (8164, '$85.00 '), (8165, ''), (8166, ''), (8167, ''), (8168, ''), (8169, '$4.50 '), (8170, ''), (8171, '$55.00 '), (8172, ''), (8173, ''), (8174, ''), (8175, ''), (8176, 'the '), (8177, ''), (8178, ''), (8179, 'the '), (8180, ''), (8181, ''), (8182, ''), (8183, ''), (8184, '$409.00 '), (8185, '$204.00 '), (8186, ''), (8187, '$85.00 '), (8188, ''), (8189, '$85.00 '), (8190, ''), (8191, ''), (8192, ''), (8193, ''), (8194, ''), (8195, ''), (8196, ''), (8197, '$144.00 '), (8198, ''), (8199, ''), (8200, ''), (8201, '$144.00 '), (8202, ''), (8203, ''), (8204, '$144.00 '), (8205, ''), (8206, '$144.00 '), (8207, '$204.00 '), (8208, '$144.00 '), (8209, '$144.00 '), (8210, ''), (8211, ''), (8212, ''), (8213, 'AbovePrice'), (8214, ''), (8215, ''), (8216, ''), (8217, ''), (8218, '$104.00 '), (8219, ''), (8220, ''), (8221, ''), (8222, ''), (8223, ''), (8224, ''), (8225, '$159.00 '), (8226, ''), (8227, ''), (8228, '$79.00 '), (8229, '$359.00 '), (8230, '$79.00 '), (8231, ''), (8232, '$144.00 '), (8233, '$79.00 '), (8234, ''), (8235, ''), (8236, ''), (8237, '$85.00 '), (8238, ''), (8239, ''), (8240, ''), (8241, ''), (8242, ''), (8243, ''), (8244, ''), (8245, ''), (8246, ''), (8247, ''), (8248, ''), (8249, ''), (8250, ''), (8251, ''), (8252, ''), (8253, ''), (8254, '$85.00 '), (8255, ''), (8256, ''), (8257, ''), (8258, '$144.00 '), (8259, ''), (8260, ''), (8261, '$144.00 '), (8262, ''), (8263, ''), (8264, ''), (8265, '$204.00 '), (8266, ''), (8267, ''), (8268, '$70.00 '), (8269, ''), (8270, ''), (8271, ''), (8272, '$70.00 '), (8273, ''), (8274, ''), (8275, ''), (8276, ''), (8277, ''), (8278, ''), (8279, ''), (8280, ''), (8281, ''), (8282, ''), (8283, '$144.00 '), (8284, ''), (8285, ''), (8286, ''), (8287, ''), (8288, '$144.00 '), (8289, ''), (8290, '$144.00 '), (8291, ''), (8292, ''), (8293, ''), (8294, '$159.00 '), (8295, ''), (8296, ''), (8297, ''), (8298, ''), (8299, '$567.00 '), (8300, '$149.00 '), (8301, ''), (8302, ''), (8303, ''), (8304, ''), (8305, ''), (8306, '$409.00 '), (8307, ''), (8308, ''), (8309, ''), (8310, ''), (8311, ''), (8312, '$144.00 '), (8313, ''), (8314, '$85.00 '), (8315, ''), (8316, '$85.00 '), (8317, ''), (8318, '$216.00 '), (8319, ''), (8320, '$149.00 '), (8321, '$409.00 '), (8322, ''), (8323, ''), (8324, ''), (8325, ''), (8326, ''), (8327, ''), (8328, '$70.00 '), (8329, ''), (8330, ''), (8331, ''), (8332, ''), (8333, ''), (8334, ''), (8335, ''), (8336, ''), (8337, ''), (8338, ''), (8339, ''), (8340, '$144.00 '), (8341, ''), (8342, ''), (8343, ''), (8344, ''), (8345, ''), (8346, ''), (8347, ''), (8348, ''), (8349, ''), (8350, ''), (8351, '$144.00 '), (8352, '$144.00 '), (8353, '$144.00 '), (8354, 'price '), (8355, ''), (8356, '$144.00 '), (8357, ''), (8358, ''), (8359, ''), (8360, ''), (8361, ''), (8362, ''), (8363, ''), (8364, ''), (8365, ''), (8366, ''), (8367, ''), (8368, ''), (8369, ''), (8370, ''), (8371, ''), (8372, '$144.00 '), (8373, '$174.00 '), (8374, 'in'), (8375, ''), (8376, ''), (8377, ''), (8378, '$79.00 '), (8379, ''), (8380, ''), (8381, ''), (8382, '$409.00 '), (8383, ''), (8384, ''), (8385, '$144.00 '), (8386, ''), (8387, ''), (8388, '$223.00 '), (8389, ''), (8390, ''), (8391, ''), (8392, ''), (8393, ''), (8394, '$125.00 '), (8395, '$134.00 '), (8396, ''), (8397, ''), (8398, 'Inc.'), (8399, ''), (8400, ''), (8401, ''), (8402, ''), (8403, '$125.00 '), (8404, ''), (8405, ''), (8406, 'Price'), (8407, '$144.00 '), (8408, 'Above'), (8409, ''), (8410, ''), (8411, ''), (8412, ''), (8413, '$204.00 '), (8414, ''), (8415, ''), (8416, ''), (8417, ''), (8418, ''), (8419, '$204.00 '), (8420, ''), (8421, ''), (8422, ''), (8423, ''), (8424, ''), (8425, ''), (8426, '$144.00 '), (8427, ''), (8428, ''), (8429, ''), (8430, ''), (8431, ''), (8432, '$79.00 '), (8433, ''), (8434, ''), (8435, ''), (8436, ''), (8437, ''), (8438, ''), (8439, ''), (8440, ''), (8441, '$114.00 '), (8442, ''), (8443, 'Above'), (8444, ''), (8445, '$204.00 '), (8446, ''), (8447, '$174.00 '), (8448, '$209.00 '), (8449, ''), (8450, '$99.00 '), (8451, ''), (8452, ''), (8453, '$99.00 '), (8454, '$204.00 '), (8455, ''), (8456, '$409.00 '), (8457, ''), (8458, ''), (8459, ''), (8460, ''), (8461, ''), (8462, '$179.00 '), (8463, ''), (8464, '$149.00 '), (8465, ''), (8466, ''), (8467, '$204.00 '), (8468, ''), (8469, ''), (8470, '$79.00 '), (8471, ''), (8472, ''), (8473, ''), (8474, '$204.00 '), (8475, ''), (8476, ''), (8477, ''), (8478, ''), (8479, '$144.00 '), (8480, '$174.00 '), (8481, '$158.00 '), (8482, '$79.00 '), (8483, ''), (8484, ''), (8485, ''), (8486, ''), (8487, '$144.00 '), (8488, ''), (8489, ''), (8490, '$149.00 '), (8491, '$79.00 '), (8492, '$79.00 '), (8493, ''), (8494, ''), (8495, '$204.00 '), (8496, ''), (8497, ''), (8498, ''), (8499, ''), (8500, '$164.00 '), (8501, ''), (8502, ''), (8503, ''), (8504, '$381.00 '), (8505, '$409.00 '), (8506, ''), (8507, ''), (8508, ''), (8509, '$85.00 '), (8510, ''), (8511, ''), (8512, ''), (8513, ''), (8514, ''), (8515, ''), (8516, ''), (8517, ''), (8518, ''), (8519, ''), (8520, ''), (8521, ''), (8522, ''), (8523, ''), (8524, ''), (8525, ''), (8526, ''), (8527, '$149.00 '), (8528, ''), (8529, ''), (8530, ''), (8531, ''), (8532, ''), (8533, ''), (8534, ''), (8535, ''), (8536, ''), (8537, ''), (8538, ''), (8539, '$175.00 '), (8540, '$175.00 '), (8541, '$175.00 '), (8542, '$175.00 '), (8543, ''), (8544, '$170.00 '), (8545, ''), (8546, ''), (8547, ''), (8548, ''), (8549, ''), (8550, ''), (8551, ''), (8552, ''), (8553, ''), (8554, '$144.00 '), (8555, '$839.00 '), (8556, ''), (8557, ''), (8558, ''), (8559, ''), (8560, ''), (8561, ''), (8562, ''), (8563, ''), (8564, ''), (8565, ''), (8566, '$189.00 '), (8567, ''), (8568, '$79.00 '), (8569, ''), (8570, ''), (8571, ''), (8572, ''), (8573, '$79.00 '), (8574, ''), (8575, ''), (8576, ''), (8577, ''), (8578, ''), (8579, ''), (8580, ''), (8581, ''), (8582, ''), (8583, '$144.00 '), (8584, ''), (8585, ''), (8586, '$144.00 '), (8587, ''), (8588, ''), (8589, ''), (8590, ''), (8591, '$125.00 '), (8592, ''), (8593, ''), (8594, ''), (8595, ''), (8596, ''), (8597, ''), (8598, ''), (8599, ''), (8600, ''), (8601, ''), (8602, ''), (8603, ''), (8604, ''), (8605, '$125.00 '), (8606, ''), (8607, '$204.00 '), (8608, ''), (8609, ''), (8610, ''), (8611, 'price'), (8612, ''), (8613, ''), (8614, '$55.00 '), (8615, ''), (8616, '$85.00 '), (8617, ''), (8618, '$144.00 '), (8619, ''), (8620, '$79.00 '), (8621, ''), (8622, '$250.00 '), (8623, ''), (8624, ''), (8625, '$104.00 '), (8626, ''), (8627, ''), (8628, 'With'), (8629, ''), (8630, ''), (8631, ''), (8632, '$144.00 '), (8633, ''), (8634, '$144.00 '), (8635, '$104.00 '), (8636, 'above'), (8637, ''), (8638, ''), (8639, '$175.00 '), (8640, ''), (8641, ''), (8642, '$144.00 '), (8643, '$144.00 '), (8644, '$144.00 '), (8645, 'in '), (8646, ''), (8647, ''), (8648, 'with '), (8649, '$104.00 '), (8650, ''), (8651, ''), (8652, ''), (8653, ''), (8654, '$175.00 '), (8655, ''), (8656, ''), (8657, '$175.00 '), (8658, ''), (8659, 'above'), (8660, ''), (8661, '$204.00 '), (8662, '$174.00 '), (8663, ''), (8664, '$204.00 '), (8665, ''), (8666, '$144.00 '), (8667, ''), (8668, '$204.00 '), (8669, ''), (8670, ''), (8671, ''), (8672, ''), (8673, ''), (8674, ''), (8675, ''), (8676, '$104.00 '), (8677, ''), (8678, ''), (8679, ''), (8680, '$134.00 '), (8681, '$175.00 '), (8682, '$175.00 '), (8683, ''), (8684, '$85.00 '), (8685, '$144.00 '), (8686, ''), (8687, ''), (8688, ''), (8689, ''), (8690, ''), (8691, ''), (8692, ''), (8693, ''), (8694, ''), (8695, ''), (8696, ''), (8697, ''), (8698, ''), (8699, ''), (8700, ''), (8701, ''), (8702, ''), (8703, ''), (8704, ''), (8705, 'Price'), (8706, '$409.00 '), (8707, ''), (8708, '$144.00 '), (8709, '$144.00 '), (8710, '$288.00 '), (8711, ''), (8712, ''), (8713, ''), (8714, ''), (8715, '$144.00 '), (8716, ''), (8717, '$144.00 '), (8718, ''), (8719, ''), (8720, ''), (8721, '$149.00 '), (8722, ''), (8723, ''), (8724, '$204.00 '), (8725, '$204.00 '), (8726, '$144.00 '), (8727, '$79.00 '), (8728, '$204.00 '), (8729, ''), (8730, ''), (8731, '$204.00 '), (8732, '$204.00 '), (8733, ''), (8734, ''), (8735, ''), (8736, '$149.00 '), (8737, ''), (8738, ''), (8739, '$204.00 '), (8740, ''), (8741, ''), (8742, ''), (8743, '$204.00 '), (8744, ''), (8745, ''), (8746, ''), (8747, ''), (8748, ''), (8749, '$144.00 '), (8750, 'Inc. '), (8751, '$144.00 '), (8752, '$144.00 '), (8753, ''), (8754, '$144.00 '), (8755, '$144.00 '), (8756, '$144.00 '), (8757, '$700.00 '), (8758, ''), (8759, '$144.00 '), (8760, ''), (8761, ''), (8762, ''), (8763, ''), (8764, '$204.00 '), (8765, ''), (8766, ''), (8767, '$144.00 '), (8768, '$359.00 '), (8769, ''), (8770, ''), (8771, ''), (8772, '$144.00 '), (8773, '$144.00 '), (8774, '$359.00 '), (8775, ''), (8776, ''), (8777, ''), (8778, ''), (8779, ''), (8780, '$84.00 '), (8781, ''), (8782, ''), (8783, ''), (8784, ''), (8785, ''), (8786, ''), (8787, ''), (8788, ''), (8789, '$300.00 '), (8790, '$300.00 '), (8791, ''), (8792, ''), (8793, ''), (8794, ''), (8795, ''), (8796, ''), (8797, ''), (8798, ''), (8799, ''), (8800, ''), (8801, ''), (8802, ''), (8803, ''), (8804, ''), (8805, ''), (8806, ''), (8807, ''), (8808, ''), (8809, ''), (8810, ''), (8811, ''), (8812, ''), (8813, ''), (8814, ''), (8815, ''), (8816, ''), (8817, '$139.00 '), (8818, ''), (8819, ''), (8820, ''), (8821, ''), (8822, ''), (8823, ''), (8824, ''), (8825, ''), (8826, ''), (8827, ''), (8828, ''), (8829, ''), (8830, ''), (8831, ''), (8832, '$0.87 '), (8833, ''), (8834, '$144.00 '), (8835, '$79.00 '), (8836, ''), (8837, ''), (8838, '$50.00 '), (8839, '$69.00 '), (8840, ''), (8841, ''), (8842, ''), (8843, ''), (8844, ''), (8845, '$144.00 '), (8846, ''), (8847, '$55.00 '), (8848, ''), (8849, ''), (8850, ''), (8851, ''), (8852, ''), (8853, ''), (8854, ''), (8855, '$144.00 '), (8856, ''), (8857, ''), (8858, ''), (8859, ''), (8860, '$144.00 '), (8861, ''), (8862, ''), (8863, ''), (8864, ''), (8865, ''), (8866, ''), (8867, ''), (8868, ''), (8869, ''), (8870, ''), (8871, '$144.00 '), (8872, '$104.00 '), (8873, ''), (8874, ''), (8875, ''), (8876, ''), (8877, ''), (8878, ''), (8879, ''), (8880, '$0.00 '), (8881, ''), (8882, ''), (8883, ''), (8884, ''), (8885, ''), (8886, ''), (8887, ''), (8888, ''), (8889, ''), (8890, ''), (8891, ''), (8892, ''), (8893, ''), (8894, ''), (8895, ''), (8896, ''), (8897, ''), (8898, ''), (8899, ''), (8900, ''), (8901, ''), (8902, ''), (8903, ''), (8904, '$139.00 '), (8905, ''), (8906, ''), (8907, ''), (8908, ''), (8909, ''), (8910, ''), (8911, ''), (8912, ''), (8913, ''), (8914, '$144.00 '), (8915, ''), (8916, ''), (8917, ''), (8918, ''), (8919, ''), (8920, ''), (8921, '$144.00 '), (8922, ''), (8923, ''), (8924, '$144.00 '), (8925, ''), (8926, ''), (8927, '$144.00 '), (8928, ''), (8929, '$104.00 '), (8930, ''), (8931, ''), (8932, ''), (8933, ''), (8934, '$109.00 '), (8935, ''), (8936, ''), (8937, ''), (8938, ''), (8939, ''), (8940, ''), (8941, ''), (8942, ''), (8943, ''), (8944, ''), (8945, ''), (8946, ''), (8947, ''), (8948, ''), (8949, ''), (8950, ''), (8951, ''), (8952, ''), (8953, ''), (8954, ''), (8955, ''), (8956, '$915.00 '), (8957, '$563.38 '), (8958, ''), (8959, ''), (8960, ''), (8961, ''), (8962, ''), (8963, ''), (8964, '$225.35 '), (8965, ''), (8966, ''), (8967, '$225.35 '), (8968, ''), (8969, '$556.34 '), (8970, ''), (8971, ''), (8972, ''), (8973, ''), (8974, ''), (8975, ''), (8976, ''), (8977, ''), (8978, ''), (8979, ''), (8980, ''), (8981, ''), (8982, ''), (8983, ''), (8984, ''), (8985, ''), (8986, ''), (8987, ''), (8988, ''), (8989, '$144.00 '), (8990, ''), (8991, '$144.00 '), (8992, '$204.00 '), (8993, ''), (8994, ''), (8995, ''), (8996, ''), (8997, '$144.00 '), (8998, ''), (8999, ''), (9000, ''), (9001, '$144.00 '), (9002, '$144.00 '), (9003, ''), (9004, ''), (9005, ''), (9006, ''), (9007, '$0.00 '), (9008, ''), (9009, ''), (9010, ''), (9011, ''), (9012, ''), (9013, ''), (9014, ''), (9015, ''), (9016, '$85.00 '), (9017, ''), (9018, 'in'), (9019, ''), (9020, ''), (9021, ''), (9022, ''), (9023, ''), (9024, ''), (9025, ''), (9026, ''), (9027, ''), (9028, '$99.00 '), (9029, ''), (9030, ''), (9031, ''), (9032, ''), (9033, ''), (9034, ''), (9035, '$139.00 '), (9036, ''), (9037, ''), (9038, ''), (9039, ''), (9040, ''), (9041, ''), (9042, ''), (9043, ''), (9044, ''), (9045, ''), (9046, ''), (9047, ''), (9048, ''), (9049, ''), (9050, ''), (9051, ''), (9052, ''), (9053, ''), (9054, ''), (9055, ''), (9056, ''), (9057, ''), (9058, '$359.00 '), (9059, ''), (9060, ''), (9061, ''), (9062, ''), (9063, ''), (9064, ''), (9065, ''), (9066, ''), (9067, ''), (9068, ''), (9069, ''), (9070, ''), (9071, ''), (9072, ''), (9073, '$508.00 '), (9074, ''), (9075, '$55.00 '), (9076, ''), (9077, ''), (9078, ''), (9079, '$79.00 '), (9080, ''), (9081, ''), (9082, ''), (9083, ''), (9084, ''), (9085, ''), (9086, ''), (9087, ''), (9088, ''), (9089, ''), (9090, '$144.00 '), (9091, ''), (9092, '$144.00 '), (9093, ''), (9094, ''), (9095, ''), (9096, ''), (9097, ''), (9098, ''), (9099, '$175.00 '), (9100, '$175.00 '), (9101, ''), (9102, '$204.00 '), (9103, 'Above'), (9104, ''), (9105, '$144.00 '), (9106, 'Above '), (9107, ''), (9108, '$149.00 '), (9109, ''), (9110, ''), (9111, ''), (9112, ''), (9113, ''), (9114, '$99.00 '), (9115, ''), (9116, '$409.00 '), (9117, '$85.00 '), (9118, '$85.00 '), (9119, '$85.00 '), (9120, ''), (9121, '$175.00 '), (9122, ''), (9123, ''), (9124, ''), (9125, ''), (9126, ''), (9127, ''), (9128, ''), (9129, ''), (9130, '$149.00 '), (9131, ''), (9132, ''), (9133, ''), (9134, ''), (9135, ''), (9136, '$304.00 '), (9137, ''), (9138, ''), (9139, ''), (9140, ''), (9141, ''), (9142, ''), (9143, ''), (9144, ''), (9145, ''), (9146, '$199.00 '), (9147, '$105.00 '), (9148, ''), (9149, ''), (9150, ''), (9151, ''), (9152, ''), (9153, ''), (9154, '$219.00 '), (9155, ''), (9156, ''), (9157, ''), (9158, ''), (9159, '$144.00 '), (9160, '$204.00 '), (9161, ''), (9162, ''), (9163, ''), (9164, ''), (9165, ''), (9166, ''), (9167, '$359.00 '), (9168, '$144.00 '), (9169, ''), (9170, ''), (9171, ''), (9172, ''), (9173, ''), (9174, '$144.00 '), (9175, ''), (9176, '$99.00 '), (9177, ''), (9178, ''), (9179, ''), (9180, ''), (9181, ''), (9182, ''), (9183, ''), (9184, ''), (9185, ''), (9186, '$70.00 '), (9187, ''), (9188, ''), (9189, ''), (9190, ''), (9191, ''), (9192, ''), (9193, ''), (9194, ''), (9195, ''), (9196, ''), (9197, ''), (9198, ''), (9199, '$399.00 '), (9200, ''), (9201, ''), (9202, ''), (9203, ''), (9204, ''), (9205, ''), (9206, ''), (9207, ''), (9208, ''), (9209, ''), (9210, ''), (9211, ''), (9212, ''), (9213, ''), (9214, '$79.00 '), (9215, '$164.00 '), (9216, ''), (9217, '$409.00 '), (9218, ''), (9219, ''), (9220, ''), (9221, ''), (9222, ''), (9223, ''), (9224, ''), (9225, ''), (9226, ''), (9227, ''), (9228, ''), (9229, ''), (9230, ''), (9231, ''), (9232, ''), (9233, ''), (9234, ''), (9235, ''), (9236, ''), (9237, ''), (9238, ''), (9239, ''), (9240, ''), (9241, ''), (9242, ''), (9243, ''), (9244, ''), (9245, ''), (9246, ''), (9247, '$223.00 '), (9248, '$144.00 '), (9249, '$144.00 '), (9250, ''), (9251, ''), (9252, ''), (9253, '$85.00 '), (9254, '$85.00 '), (9255, ''), (9256, ''), (9257, ''), (9258, '$144.00 '), (9259, ''), (9260, ''), (9261, '$99.00 '), (9262, ''), (9263, ''), (9264, ''), (9265, ''), (9266, ''), (9267, ''), (9268, ''), (9269, ''), (9270, ''), (9271, ''), (9272, ''), (9273, ''), (9274, '$204.00 '), (9275, 'Price'), (9276, '$144.00 '), (9277, '$144.00 '), (9278, ''), (9279, '$175.00 '), (9280, ''), (9281, ''), (9282, ''), (9283, ''), (9284, ''), (9285, ''), (9286, ''), (9287, ''), (9288, ''), (9289, '$150.00 '), (9290, ''), (9291, ''), (9292, ''), (9293, '$139.00 '), (9294, ''), (9295, ''), (9296, ''), (9297, ''), (9298, ''), (9299, ''), (9300, ''), (9301, ''), (9302, ''), (9303, ''), (9304, ''), (9305, ''), (9306, ''), (9307, ''), (9308, ''), (9309, ''), (9310, ''), (9311, ''), (9312, ''), (9313, ''), (9314, '$139.00 '), (9315, ''), (9316, ''), (9317, ''), (9318, '$300.00 '), (9319, ''), (9320, ''), (9321, ''), (9322, ''), (9323, ''), (9324, ''), (9325, ''), (9326, ''), (9327, ''), (9328, ''), (9329, ''), (9330, ''), (9331, '$134.00 '), (9332, ''), (9333, ''), (9334, ''), (9335, ''), (9336, ''), (9337, ''), (9338, ''), (9339, '$109.00 '), (9340, ''), (9341, ''), (9342, ''), (9343, '$204.00 '), (9344, ''), (9345, ''), (9346, ''), (9347, ''), (9348, ''), (9349, ''), (9350, ''), (9351, ''), (9352, ''), (9353, ''), (9354, ''), (9355, '$225.35 '), (9356, ''), (9357, ''), (9358, ''), (9359, ''), (9360, ''), (9361, ''), (9362, ''), (9363, '$570.42 '), (9364, ''), (9365, '$915.00 '), (9366, '$225.35 '), (9367, ''), (9368, '$225.35 '), (9369, '$225.35 '), (9370, '$619.72 '), (9371, ''), (9372, ''), (9373, ''), (9374, '$225.35 '), (9375, '$225.35 '), (9376, ''), (9377, ''), (9378, ''), (9379, '$387.32 '), (9380, ''), (9381, '$302.75 '), (9382, ''), (9383, '$387.32 '), (9384, ''), (9385, ''), (9386, ''), (9387, ''), (9388, ''), (9389, ''), (9390, ''), (9391, ''), (9392, ''), (9393, ''), (9394, ''), (9395, ''), (9396, '$155.00 '), (9397, ''), (9398, ''), (9399, ''), (9400, '$395.00 '), (9401, ''), (9402, ''), (9403, ''), (9404, ''), (9405, '$385.00 '), (9406, '$390.00 '), (9407, ''), (9408, ''), (9409, ''), (9410, ''), (9411, ''), (9412, ''), (9413, ''), (9414, 'Included'), (9415, '$79.00 '), (9416, '$85.00 '), (9417, '$144.00 '), (9418, 'the'), (9419, ''), (9420, ''), (9421, ''), (9422, ''), (9423, ''), (9424, ''), (9425, ''), (9426, ''), (9427, ''), (9428, ''), (9429, ''), (9430, ''), (9431, ''), (9432, '$204.00 '), (9433, ''), (9434, '$85.00 '), (9435, '$409.00 '), (9436, ''), (9437, ''), (9438, ''), (9439, ''), (9440, '$159.00 '), (9441, ''), (9442, ''), (9443, ''), (9444, ''), (9445, ''), (9446, ''), (9447, ''), (9448, ''), (9449, ''), (9450, ''), (9451, ''), (9452, ''), (9453, ''), (9454, ''), (9455, ''), (9456, ''), (9457, ''), (9458, ''), (9459, ''), (9460, ''), (9461, ''), (9462, ''), (9463, ''), (9464, ''), (9465, ''), (9466, '$199.00 '), (9467, ''), (9468, ''), (9469, ''), (9470, ''), (9471, ''), (9472, ''), (9473, ''), (9474, ''), (9475, ''), (9476, ''), (9477, ''), (9478, ''), (9479, ''), (9480, ''), (9481, ''), (9482, ''), (9483, ''), (9484, ''), (9485, ''), (9486, ''), (9487, ''), (9488, ''), (9489, ''), (9490, ''), (9491, ''), (9492, ''), (9493, ''), (9494, ''), (9495, ''), (9496, ''), (9497, '$94.00 '), (9498, ''), (9499, ''), (9500, ''), (9501, ''), (9502, ''), (9503, ''), (9504, ''), (9505, ''), (9506, ''), (9507, ''), (9508, ''), (9509, ''), (9510, ''), (9511, ''), (9512, ''), (9513, ''), (9514, ''), (9515, ''), (9516, ''), (9517, '$478.00 '), (9518, ''), (9519, ''), (9520, ''), (9521, ''), (9522, ''), (9523, '$144.00 '), (9524, '$74.00 '), (9525, ''), (9526, ''), (9527, ''), (9528, ''), (9529, ''), (9530, ''), (9531, ''), (9532, '$104.00 '), (9533, '$144.00 '), (9534, ''), (9535, ''), (9536, '$104.00 '), (9537, ''), (9538, ''), (9539, '$104.00 '), (9540, ''), (9541, ''), (9542, ''), (9543, ''), (9544, '$99.00 '), (9545, ''), (9546, ''), (9547, '$204.00 '), (9548, '$144.00 '), (9549, ''), (9550, ''), (9551, '$224.00 '), (9552, '$144.00 '), (9553, '$454.00 '), (9554, '$144.00 '), (9555, '$144.00 '), (9556, '$144.00 '), (9557, '$144.00 '), (9558, '$204.00 '), (9559, ''), (9560, '$425.00 '), (9561, ''), (9562, ''), (9563, ''), (9564, ''), (9565, ''), (9566, ''), (9567, ''), (9568, ''), (9569, ''), (9570, ''), (9571, ''), (9572, ''), (9573, ''), (9574, ''), (9575, ''), (9576, ''), (9577, ''), (9578, ''), (9579, ''), (9580, ''), (9581, ''), (9582, '$110.00 '), (9583, ''), (9584, ''), (9585, '$65.00 '), (9586, ''), (9587, ''), (9588, ''), (9589, ''), (9590, ''), (9591, ''), (9592, ''), (9593, ''), (9594, ''), (9595, ''), (9596, ''), (9597, ''), (9598, ''), (9599, ''), (9600, ''), (9601, ''), (9602, ''), (9603, ''), (9604, ''), (9605, ''), (9606, ''), (9607, ''), (9608, ''), (9609, '$139.00 '), (9610, ''), (9611, ''), (9612, ''), (9613, ''), (9614, ''), (9615, ''), (9616, ''), (9617, ''), (9618, '$409.00 '), (9619, '$144.00 '), (9620, ''), (9621, ''), (9622, ''), (9623, ''), (9624, ''), (9625, ''), (9626, ''), (9627, ''), (9628, ''), (9629, '$75.00 '), (9630, ''), (9631, ''), (9632, ''), (9633, ''), (9634, ''), (9635, ''), (9636, ''), (9637, '$104.00 '), (9638, '$144.00 '), (9639, ''), (9640, ''), (9641, ''), (9642, ''), (9643, ''), (9644, ''), (9645, ''), (9646, ''), (9647, ''), (9648, '$619.72 '), (9649, ''), (9650, ''), (9651, ''), (9652, ''), (9653, ''), (9654, ''), (9655, ''), (9656, ''), (9657, ''), (9658, ''), (9659, ''), (9660, ''), (9661, ''), (9662, ''), (9663, ''), (9664, ''), (9665, ''), (9666, ''), (9667, ''), (9668, ''), (9669, ''), (9670, '$70.00 '), (9671, '$159.00 '), (9672, '$114.00 '), (9673, ''), (9674, ''), (9675, ''), (9676, ''), (9677, ''), (9678, ''), (9679, ''), (9680, ''), (9681, ''), (9682, ''), (9683, ''), (9684, '$94.00 '), (9685, ''), (9686, ''), (9687, ''), (9688, ''), (9689, ''), (9690, ''), (9691, ''), (9692, ''), (9693, ''), (9694, ''), (9695, ''), (9696, ''), (9697, ''), (9698, '$225.35 '), (9699, ''), (9700, ''), (9701, '$633.80 '), (9702, ''), (9703, ''), (9704, ''), (9705, ''), (9706, ''), (9707, ''), (9708, ''), (9709, ''), (9710, '$225.35 '), (9711, ''), (9712, ''), (9713, 'Price'), (9714, ''), (9715, ''), (9716, ''), (9717, ''), (9718, '$359.00 '), (9719, ''), (9720, ''), (9721, '$409.00 '), (9722, '$174.00 '), (9723, ''), (9724, ''), (9725, ''), (9726, ''), (9727, ''), (9728, ''), (9729, ''), (9730, ''), (9731, ''), (9732, ''), (9733, ''), (9734, '$139.00 '), (9735, ''), (9736, ''), (9737, ''), (9738, ''), (9739, ''), (9740, ''), (9741, ''), (9742, ''), (9743, ''), (9744, ''), (9745, ''), (9746, ''), (9747, '$199.00 '), (9748, ''), (9749, ''), (9750, ''), (9751, ''), (9752, ''), (9753, ''), (9754, ''), (9755, ''), (9756, ''), (9757, '$399.00 '), (9758, ''), (9759, ''), (9760, ''), (9761, ''), (9762, ''), (9763, '$119.00 '), (9764, ''), (9765, ''), (9766, '$199.00 '), (9767, ''), (9768, ''), (9769, ''), (9770, '$144.00 '), (9771, ''), (9772, ''), (9773, ''), (9774, ''), (9775, ''), (9776, ''), (9777, ''), (9778, ''), (9779, '$144.00 '), (9780, ''), (9781, ''), (9782, '$349.00 '), (9783, ''), (9784, ''), (9785, 'above'), (9786, '$144.00 '), (9787, '$474.00 '), (9788, '$204.00 '), (9789, ''), (9790, ''), (9791, '$144.00 '), (9792, '$99.00 '), (9793, '$144.00 '), (9794, ''), (9795, ''), (9796, '$359.00 '), (9797, ''), (9798, ''), (9799, '$216.00 '), (9800, ''), (9801, ''), (9802, '$204.00 '), (9803, '$144.00 '), (9804, ''), (9805, '$144.00 '), (9806, ''), (9807, '$204.00 '), (9808, ''), (9809, ''), (9810, ''), (9811, ''), (9812, ''), (9813, ''), (9814, ''), (9815, ''), (9816, ''), (9817, ''), (9818, ''), (9819, ''), (9820, ''), (9821, ''), (9822, ''), (9823, ''), (9824, ''), (9825, ''), (9826, ''), (9827, ''), (9828, ''), (9829, ''), (9830, ''), (9831, ''), (9832, ''), (9833, ''), (9834, ''), (9835, ''), (9836, ''), (9837, ''), (9838, ''), (9839, ''), (9840, ''), (9841, '$139.00 '), (9842, ''), (9843, ''), (9844, ''), (9845, ''), (9846, ''), (9847, ''), (9848, ''), (9849, ''), (9850, '$139.00 '), (9851, ''), (9852, ''), (9853, ''), (9854, ''), (9855, ''), (9856, '$149.00 '), (9857, ''), (9858, ''), (9859, ''), (9860, ''), (9861, '$139.00 '), (9862, ''), (9863, ''), (9864, ''), (9865, ''), (9866, ''), (9867, ''), (9868, ''), (9869, ''), (9870, ''), (9871, ''), (9872, ''), (9873, ''), (9874, ''), (9875, ''), (9876, ''), (9877, ''), (9878, ''), (9879, ''), (9880, ''), (9881, ''), (9882, ''), (9883, ''), (9884, ''), (9885, ''), (9886, ''), (9887, ''), (9888, ''), (9889, ''), (9890, ''), (9891, ''), (9892, ''), (9893, ''), (9894, ''), (9895, ''), (9896, ''), (9897, ''), (9898, ''), (9899, ''), (9900, ''), (9901, ''), (9902, ''), (9903, ''), (9904, ''), (9905, ''), (9906, ''), (9907, ''), (9908, ''), (9909, '$175.00 '), (9910, '$144.00 '), (9911, ''), (9912, ''), (9913, ''), (9914, ''), (9915, '$204.00 '), (9916, ''), (9917, '$144.00 '), (9918, ''), (9919, '$174.00 '), (9920, '$144.00 '), (9921, '$144.00 '), (9922, ''), (9923, '$144.00 '), (9924, ''), (9925, ''), (9926, ''), (9927, ''), (9928, ''), (9929, ''), (9930, ''), (9931, ''), (9932, '$79.00 '), (9933, '$409.00 '), (9934, ''), (9935, 'the'), (9936, ''), (9937, ''), (9938, ''), (9939, ''), (9940, ''), (9941, '$55.00 '), (9942, ''), (9943, ''), (9944, ''), (9945, 'Above'), (9946, ''), (9947, ''), (9948, ''), (9949, ''), (9950, ''), (9951, ''), (9952, '$114.00 '), (9953, ''), (9954, ''), (9955, '$259.00 '), (9956, ''), (9957, ''), (9958, ''), (9959, ''), (9960, ''), (9961, ''), (9962, '$300.00 '), (9963, '$154.00 '), (9964, ''), (9965, ''), (9966, ''), (9967, ''), (9968, ''), (9969, ''), (9970, '$104.00 '), (9971, ''), (9972, ''), (9973, ''), (9974, ''), (9975, ''), (9976, ''), (9977, ''), (9978, ''), (9979, 'Included'), (9980, ''), (9981, ''), (9982, ''), (9983, ''), (9984, ''), (9985, ''), (9986, ''), (9987, ''), (9988, ''), (9989, ''), (9990, ''), (9991, ''), (9992, ''), (9993, ''), (9994, '$508.00 '), (9995, ''), (9996, ''), (9997, ''), (9998, '$79.00 '), (9999, ''), (10000, ''), (10001, ''), (10002, ''), (10003, ''), (10004, ''), (10005, '$85.00 '), (10006, ''), (10007, ''), (10008, ''), (10009, ''), (10010, ''), (10011, ''), (10012, ''), (10013, ''), (10014, ''), (10015, ''), (10016, '$74.00 '), (10017, ''), (10018, ''), (10019, ''), (10020, ''), (10021, ''), (10022, ''), (10023, ''), (10024, ''), (10025, '$204.00 '), (10026, '$85.00 '), (10027, ''), (10028, ''), (10029, ''), (10030, '$409.00 '), (10031, ''), (10032, ''), (10033, ''), (10034, '$104.00 '), (10035, '$104.00 '), (10036, ''), (10037, '$154.00 '), (10038, ''), (10039, ''), (10040, ''), (10041, ''), (10042, ''), (10043, ''), (10044, ''), (10045, ''), (10046, ''), (10047, ''), (10048, ''), (10049, ''), (10050, ''), (10051, '$170.00 '), (10052, ''), (10053, ''), (10054, ''), (10055, ''), (10056, '$144.00 '), (10057, ''), (10058, ''), (10059, ''), (10060, ''), (10061, ''), (10062, ''), (10063, ''), (10064, ''), (10065, ''), (10066, '$99.00 '), (10067, ''), (10068, ''), (10069, ''), (10070, ''), (10071, ''), (10072, '$79.00 '), (10073, ''), (10074, ''), (10075, ''), (10076, ''), (10077, '$204.00 '), (10078, ''), (10079, ''), (10080, ''), (10081, ''), (10082, '$204.00 '), (10083, '$149.00 '), (10084, ''), (10085, ''), (10086, ''), (10087, ''), (10088, ''), (10089, ''), (10090, ''), (10091, ''), (10092, ''), (10093, ''), (10094, ''), (10095, ''), (10096, ''), (10097, ''), (10098, ''), (10099, ''), (10100, ''), (10101, ''), (10102, ''), (10103, ''), (10104, ''), (10105, ''), (10106, '$109.00 '), (10107, '$149.00 '), (10108, '$55.00 '), (10109, 'above'), (10110, ''), (10111, ''), (10112, '$164.00 '), (10113, ''), (10114, '$149.00 '), (10115, ''), (10116, 'With'), (10117, ''), (10118, ''), (10119, ''), (10120, ''), (10121, ''), (10122, ''), (10123, ''), (10124, ''), (10125, ''), (10126, '$99.00 '), (10127, ''), (10128, ''), (10129, ''), (10130, ''), (10131, ''), (10132, ''), (10133, ''), (10134, ''), (10135, ''), (10136, ''), (10137, ''), (10138, ''), (10139, ''), (10140, ''), (10141, ''), (10142, '$204.00 '), (10143, ''), (10144, ''), (10145, ''), (10146, ''), (10147, 'above'), (10148, ''), (10149, ''), (10150, ''), (10151, ''), (10152, ''), (10153, ''), (10154, ''), (10155, ''), (10156, ''), (10157, ''), (10158, ''), (10159, '$399.00 '), (10160, ''), (10161, ''), (10162, ''), (10163, ''), (10164, ''), (10165, ''), (10166, ''), (10167, ''), (10168, ''), (10169, ''), (10170, '$85.00 '), (10171, ''), (10172, ''), (10173, ''), (10174, ''), (10175, ''), (10176, ''), (10177, ''), (10178, '$204.00 '), (10179, '$89.00 '), (10180, ''), (10181, ''), (10182, ''), (10183, ''), (10184, ''), (10185, ''), (10186, '$144.00 '), (10187, '$409.00 '), (10188, ''), (10189, ''), (10190, '$149.00 '), (10191, ''), (10192, ''), (10193, '$174.00 '), (10194, ''), (10195, ''), (10196, '$409.00 '), (10197, '$144.00 '), (10198, '$144.00 '), (10199, ''), (10200, '$75.00 '), (10201, ''), (10202, ''), (10203, ''), (10204, '$124.00 '), (10205, '$224.00 '), (10206, 'Above'), (10207, '$85.00 '), (10208, ''), (10209, ''), (10210, ''), (10211, ''), (10212, ''), (10213, ''), (10214, ''), (10215, ''), (10216, ''), (10217, ''), (10218, ''), (10219, '$144.00 '), (10220, '$149.00 '), (10221, ''), (10222, ''), (10223, ''), (10224, '$204.00 '), (10225, '$144.00 '), (10226, ''), (10227, ''), (10228, ''), (10229, '$99.00 '), (10230, ''), (10231, ''), (10232, '$359.00 '), (10233, ''), (10234, ''), (10235, ''), (10236, ''), (10237, ''), (10238, ''), (10239, ''), (10240, ''), (10241, ''), (10242, ''), (10243, ''), (10244, ''), (10245, ''), (10246, ''), (10247, ''), (10248, '$159.00 '), (10249, '$89.00 '), (10250, '$89.00 '), (10251, '$89.00 '), (10252, 'Price'), (10253, ''), (10254, ''), (10255, ''), (10256, ''), (10257, ''), (10258, ''), (10259, ''), (10260, '$409.00 '), (10261, ''), (10262, ''), (10263, ''), (10264, ''), (10265, ''), (10266, '$79.00 '), (10267, ''), (10268, ''), (10269, ''), (10270, ''), (10271, ''), (10272, ''), (10273, ''), (10274, ''), (10275, ''), (10276, ''), (10277, '$409.00 '), (10278, ''), (10279, ''), (10280, ''), (10281, ''), (10282, '$149.00 '), (10283, ''), (10284, ''), (10285, 'Included'), (10286, ''), (10287, '$89.00 '), (10288, '$560.00 '), (10289, '$144.00 '), (10290, ''), (10291, ''), (10292, '$204.00 '), (10293, '$144.00 '), (10294, '$175.00 '), (10295, ''), (10296, ''), (10297, ''), (10298, '$144.00 '), (10299, '$104.00 '), (10300, ''), (10301, ''), (10302, ''), (10303, '$164.00 '), (10304, ''), (10305, ''), (10306, ''), (10307, ''), (10308, ''), (10309, ''), (10310, ''), (10311, ''), (10312, ''), (10313, ''), (10314, ''), (10315, ''), (10316, ''), (10317, ''), (10318, ''), (10319, ''), (10320, ''), (10321, ''), (10322, ''), (10323, ''), (10324, ''), (10325, ''), (10326, ''), (10327, ''), (10328, ''), (10329, ''), (10330, ''), (10331, ''), (10332, ''), (10333, ''), (10334, ''), (10335, ''), (10336, ''), (10337, '$124.00 '), (10338, '$114.00 '), (10339, ''), (10340, '$144.00 '), (10341, ''), (10342, ''), (10343, '$149.00 '), (10344, '$144.00 '), (10345, 'above pric'), (10346, '$144.00 '), (10347, ''), (10348, ''), (10349, ''), (10350, ''), (10351, ''), (10352, '$35.00 '), (10353, ''), (10354, ''), (10355, ''), (10356, ''), (10357, '$134.00 '), (10358, ''), (10359, ''), (10360, ''), (10361, ''), (10362, ''), (10363, '$204.00 '), (10364, ''), (10365, ''), (10366, '$85.00 '), (10367, ''), (10368, ''), (10369, ''), (10370, ''), (10371, ''), (10372, ''), (10373, ''), (10374, ''), (10375, '$124.00 '), (10376, ''), (10377, ''), (10378, ''), (10379, ''), (10380, ''), (10381, ''), (10382, ''), (10383, ''), (10384, ''), (10385, ''), (10386, ''), (10387, ''), (10388, ''), (10389, '$144.00 '), (10390, '$85.00 '), (10391, ''), (10392, 'above'), (10393, ''), (10394, ''), (10395, ''), (10396, ''), (10397, ''), (10398, ''), (10399, ''), (10400, ''), (10401, ''), (10402, ''), (10403, ''), (10404, ''), (10405, '$144.00 '), (10406, ''), (10407, ''), (10408, ''), (10409, '$144.00 '), (10410, ''), (10411, '$175.00 '), (10412, ''), (10413, ''), (10414, '$144.00 '), (10415, ''), (10416, ''), (10417, ''), (10418, ''), (10419, ''), (10420, ''), (10421, ''), (10422, ''), (10423, ''), (10424, '$454.00 '), (10425, ''), (10426, ''), (10427, ''), (10428, ''), (10429, ''), (10430, ''), (10431, ''), (10432, ''), (10433, ''), (10434, ''), (10435, '$144.00 '), (10436, ''), (10437, ''), (10438, ''), (10439, ''), (10440, ''), (10441, ''), (10442, ''), (10443, ''), (10444, '$204.00 '), (10445, ''), (10446, ''), (10447, ''), (10448, ''), (10449, '$144.00 '), (10450, '$175.00 '), (10451, ''), (10452, ''), (10453, '$104.00 '), (10454, ''), (10455, '$125.00 '), (10456, '$125.00 '), (10457, ''), (10458, ''), (10459, '$104.00 '), (10460, ''), (10461, ''), (10462, ''), (10463, ''), (10464, ''), (10465, ''), (10466, ''), (10467, ''), (10468, ''), (10469, ''), (10470, ''), (10471, ''), (10472, ''), (10473, ''), (10474, ''), (10475, '$204.00 '), (10476, '$144.00 '), (10477, '$144.00 '), (10478, ''), (10479, ''), (10480, ''), (10481, ''), (10482, '$144.00 '), (10483, ''), (10484, 'price'), (10485, ''), (10486, ''), (10487, ''), (10488, ''), (10489, ''), (10490, ''), (10491, ''), (10492, ''), (10493, ''), (10494, ''), (10495, ''), (10496, ''), (10497, ''), (10498, '$204.00 '), (10499, '$149.00 '), (10500, ''), (10501, ''), (10502, ''), (10503, ''), (10504, '$149.00 '), (10505, ''), (10506, '$204.00 '), (10507, ''), (10508, '$144.00 '), (10509, ''), (10510, ''), (10511, ''), (10512, ''), (10513, ''), (10514, ''), (10515, '$35.00 '), (10516, '$35.00 '), (10517, ''), (10518, ''), (10519, '$35.00 '), (10520, ''), (10521, ''), (10522, '$454.00 '), (10523, ''), (10524, '$149.00 '), (10525, ''), (10526, ''), (10527, '$109.00 '), (10528, ''), (10529, ''), (10530, ''), (10531, '$409.00 '), (10532, ''), (10533, ''), (10534, ''), (10535, ''), (10536, ''), (10537, ''), (10538, ''), (10539, ''), (10540, ''), (10541, ''), (10542, ''), (10543, ''), (10544, ''), (10545, '$204.00 '), (10546, 'Included'), (10547, ''), (10548, ''), (10549, ''), (10550, ''), (10551, '$189.00 '), (10552, ''), (10553, ''), (10554, ''), (10555, ''), (10556, ''), (10557, ''), (10558, '$85.00 '), (10559, ''), (10560, ''), (10561, ''), (10562, ''), (10563, ''), (10564, ''), (10565, ''), (10566, ''), (10567, ''), (10568, '$495.00 '), (10569, ''), (10570, ''), (10571, ''), (10572, '$94.00 '), (10573, ''), (10574, ''), (10575, ''), (10576, ''), (10577, ''), (10578, ''), (10579, '$125.00 '), (10580, '$224.00 '), (10581, ''), (10582, '$85.00 '), (10583, 'price'), (10584, '$85.00 '), (10585, ''), (10586, ''), (10587, '$144.00 '), (10588, ''), (10589, ''), (10590, ''), (10591, ''), (10592, '$144.00 '), (10593, '$144.00 '), (10594, ''), (10595, ''), (10596, ''), (10597, ''), (10598, ''), (10599, '$409.00 '), (10600, ''), (10601, ''), (10602, ''), (10603, ''), (10604, ''), (10605, ''), (10606, ''), (10607, ''), (10608, ''), (10609, ''), (10610, ''), (10611, ''), (10612, ''), (10613, '$204.00 '), (10614, ''), (10615, ''), (10616, ''), (10617, ''), (10618, '$204.00 '), (10619, ''), (10620, ''), (10621, ''), (10622, ''), (10623, ''), (10624, '$159.00 '), (10625, '$114.00 '), (10626, ''), (10627, ''), (10628, ''), (10629, '$144.00 '), (10630, ''), (10631, ''), (10632, ''), (10633, ''), (10634, ''), (10635, ''), (10636, ''), (10637, ''), (10638, ''), (10639, ''), (10640, ''), (10641, ''), (10642, ''), (10643, ''), (10644, ''), (10645, ''), (10646, ''), (10647, ''), (10648, ''), (10649, ''), (10650, ''), (10651, ''), (10652, ''), (10653, ''), (10654, ''), (10655, ''), (10656, ''), (10657, '$144.00 '), (10658, ''), (10659, ''), (10660, ''), (10661, ''), (10662, ''), (10663, '$409.00 '), (10664, ''), (10665, ''), (10666, ''), (10667, ''), (10668, ''), (10669, ''), (10670, ''), (10671, ''), (10672, ''), (10673, ''), (10674, '$144.00 '), (10675, ''), (10676, ''), (10677, ''), (10678, ''), (10679, ''), (10680, ''), (10681, ''), (10682, ''), (10683, ''), (10684, ''), (10685, ''), (10686, ''), (10687, ''), (10688, ''), (10689, ''), (10690, ''), (10691, '$5.00 '), (10692, ''), (10693, ''), (10694, ''), (10695, ''), (10696, ''), (10697, ''), (10698, 'price '), (10699, ''), (10700, ''), (10701, ''), (10702, ' Pric'), (10703, ''), (10704, '$12.00 '), (10705, ''), (10706, '$187.00 '), (10707, '$104.00 '), (10708, '$104.00 '), (10709, '$104.00 '), (10710, ''), (10711, 'included'), (10712, '$144.00 '), (10713, ''), (10714, ''), (10715, '$244.00 '), (10716, ''), (10717, ''), (10718, ''), (10719, ''), (10720, ''), (10721, '$144.00 '), (10722, ''), (10723, ''), (10724, ''), (10725, ''), (10726, ''), (10727, ''), (10728, ''), (10729, '$104.00 '), (10730, ''), (10731, '$85.00 '), (10732, '$85.00 '), (10733, '$85.00 '), (10734, '$144.00 '), (10735, '$104.00 '), (10736, ''), (10737, ''), (10738, ''), (10739, ''), (10740, ''), (10741, ''), (10742, '$154.00 '), (10743, ''), (10744, ''), (10745, ''), (10746, ''), (10747, 'above'), (10748, ''), (10749, ''), (10750, 'above '), (10751, ''), (10752, ''), (10753, ''), (10754, ''), (10755, '$144.00 '), (10756, ''), (10757, ''), (10758, '$85.00 '), (10759, ''), (10760, '$85.00 '), (10761, ''), (10762, '$105.00 '), (10763, ''), (10764, ''), (10765, ''), (10766, ''), (10767, ''), (10768, '$454.00 '), (10769, ''), (10770, ''), (10771, ''), (10772, '$144.00 '), (10773, ''), (10774, ''), (10775, ''), (10776, ''), (10777, '$144.00 '), (10778, '$204.00 '), (10779, '$204.00 '), (10780, '$144.00 '), (10781, ''), (10782, ''), (10783, ''), (10784, '$488.00 '), (10785, ''), (10786, ''), (10787, ''), (10788, ''), (10789, '$104.00 '), (10790, ''), (10791, ''), (10792, ''), (10793, ''), (10794, ''), (10795, ''), (10796, ''), (10797, ''), (10798, ''), (10799, ''), (10800, 'Inc. in '), (10801, '$204.00 '), (10802, ''), (10803, '$144.00 '), (10804, ''), (10805, ''), (10806, ''), (10807, ''), (10808, '$85.00 '), (10809, ''), (10810, ''), (10811, ''), (10812, ''), (10813, ''), (10814, ''), (10815, ''), (10816, ''), (10817, ''), (10818, ''), (10819, ''), (10820, ''), (10821, ''), (10822, ''), (10823, ''), (10824, ''), (10825, '$85.00 '), (10826, ''), (10827, ''), (10828, ''), (10829, '$144.00 '), (10830, ''), (10831, ''), (10832, '$144.00 '), (10833, ''), (10834, ''), (10835, ''), (10836, '$204.00 '), (10837, ''), (10838, ''), (10839, ''), (10840, ''), (10841, '$234.00 '), (10842, ''), (10843, '$70.00 '), (10844, ''), (10845, ''), (10846, ''), (10847, ''), (10848, ''), (10849, ''), (10850, ''), (10851, ''), (10852, ''), (10853, ''), (10854, '$144.00 '), (10855, ''), (10856, ''), (10857, ''), (10858, ''), (10859, '$209.00 '), (10860, ''), (10861, ''), (10862, ''), (10863, ''), (10864, ''), (10865, ''), (10866, ''), (10867, ''), (10868, ''), (10869, ''), (10870, 'Included'), (10871, '$409.00 '), (10872, ''), (10873, ''), (10874, ''), (10875, ''), (10876, ''), (10877, '$204.00 '), (10878, ''), (10879, ''), (10880, ''), (10881, ''), (10882, ''), (10883, '$454.00 '), (10884, ''), (10885, '$85.00 '), (10886, ''), (10887, '$85.00 '), (10888, ''), (10889, '$149.00 '), (10890, ''), (10891, '$204.00 '), (10892, ''), (10893, ''), (10894, ''), (10895, ''), (10896, ''), (10897, ''), (10898, ''), (10899, '$70.00 '), (10900, ''), (10901, ''), (10902, ''), (10903, ''), (10904, ''), (10905, ''), (10906, ''), (10907, ''), (10908, ''), (10909, ''), (10910, ''), (10911, ''), (10912, ''), (10913, ''), (10914, ''), (10915, ''), (10916, ''), (10917, ''), (10918, ''), (10919, ''), (10920, ''), (10921, '$144.00 '), (10922, '$144.00 '), (10923, ''), (10924, ''), (10925, ''), (10926, ''), (10927, ''), (10928, ''), (10929, ''), (10930, ''), (10931, ''), (10932, ''), (10933, ''), (10934, ''), (10935, '$149.00 '), (10936, ''), (10937, ''), (10938, ''), (10939, ''), (10940, ''), (10941, ''), (10942, ''), (10943, ''), (10944, '$79.00 '), (10945, 'above'), (10946, ''), (10947, ''), (10948, ''), (10949, '$228.00 '), (10950, ''), (10951, ''), (10952, ''), (10953, ''), (10954, ''), (10955, ''), (10956, '$144.00 '), (10957, ''), (10958, ''), (10959, '$174.00 '), (10960, ''), (10961, ''), (10962, ''), (10963, ''), (10964, ''), (10965, '$125.00 '), (10966, '$134.00 '), (10967, ''), (10968, ''), (10969, ''), (10970, ''), (10971, ''), (10972, ''), (10973, ''), (10974, '$125.00 '), (10975, ''), (10976, ''), (10977, '$209.00 '), (10978, '$144.00 '), (10979, 'Price'), (10980, ''), (10981, ''), (10982, ''), (10983, ''), (10984, '$99.00 '), (10985, ''), (10986, ''), (10987, ''), (10988, ''), (10989, ''), (10990, ''), (10991, ''), (10992, ''), (10993, ''), (10994, ''), (10995, ''), (10996, ''), (10997, '$144.00 '), (10998, ''), (10999, ''), (11000, ''), (11001, ''), (11002, ''), (11003, ''), (11004, ''), (11005, ''), (11006, ''), (11007, ''), (11008, ''), (11009, ''), (11010, ''), (11011, ''), (11012, ''), (11013, ''), (11014, ''), (11015, ''), (11016, '$204.00 '), (11017, ''), (11018, '$204.00 '), (11019, '$209.00 '), (11020, ''), (11021, '$99.00 '), (11022, ''), (11023, ''), (11024, '$99.00 '), (11025, ''), (11026, ''), (11027, '$149.00 '), (11028, ''), (11029, ''), (11030, ''), (11031, ''), (11032, ''), (11033, '$288.00 '), (11034, ''), (11035, '$149.00 '), (11036, ''), (11037, ''), (11038, '$204.00 '), (11039, ''), (11040, ''), (11041, '$144.00 '), (11042, ''), (11043, ''), (11044, ''), (11045, '$204.00 '), (11046, ''), (11047, ''), (11048, ''), (11049, ''), (11050, '$85.00 '), (11051, ''), (11052, '$158.00 '), (11053, '$79.00 '), (11054, ''), (11055, ''), (11056, ''), (11057, ''), (11058, ''), (11059, ''), (11060, ''), (11061, '$149.00 '), (11062, '$79.00 '), (11063, '$567.00 '), (11064, ''), (11065, ''), (11066, '$204.00 '), (11067, ''), (11068, ''), (11069, ''), (11070, ''), (11071, ''), (11072, ''), (11073, ''), (11074, ''), (11075, ' '), (11076, ''), (11077, ''), (11078, ''), (11079, ''), (11080, ''), (11081, ''), (11082, ''), (11083, ''), (11084, ''), (11085, ''), (11086, ''), (11087, ''), (11088, ''), (11089, ''), (11090, ''), (11091, ''), (11092, ''), (11093, ''), (11094, ''), (11095, ''), (11096, ''), (11097, ''), (11098, '$149.00 '), (11099, ''), (11100, ''), (11101, ''), (11102, ''), (11103, ''), (11104, ''), (11105, ''), (11106, ''), (11107, ''), (11108, ''), (11109, ''), (11110, '$175.00 '), (11111, ''), (11112, '$175.00 '), (11113, '$175.00 '), (11114, ''), (11115, '$170.00 '), (11116, ''), (11117, ''), (11118, ''), (11119, ''), (11120, ''), (11121, ''), (11122, ''), (11123, ''), (11124, ''), (11125, '$144.00 '), (11126, '$409.00 '), (11127, ''), (11128, ''), (11129, ''), (11130, ''), (11131, ''), (11132, ''), (11133, ''), (11134, ''), (11135, ''), (11136, ''), (11137, 'inc.'), (11138, ''), (11139, ''), (11140, ''), (11141, ''), (11142, ''), (11143, ''), (11144, '$79.00 '), (11145, ''), (11146, ''), (11147, ''), (11148, ''), (11149, ''), (11150, ''), (11151, ''), (11152, ''), (11153, ''), (11154, ''), (11155, ''), (11156, ''), (11157, '$144.00 '), (11158, ''), (11159, ''), (11160, ''), (11161, ''), (11162, ''), (11163, ''), (11164, ''), (11165, ''), (11166, ''), (11167, ''), (11168, ''); INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (11169, ''), (11170, ''), (11171, ''), (11172, ''), (11173, ''), (11174, ''), (11175, ''), (11176, '$125.00 '), (11177, ''), (11178, '$204.00 '), (11179, ''), (11180, ''), (11181, ''), (11182, ''), (11183, ''), (11184, ''), (11185, '$55.00 '), (11186, ''), (11187, ''), (11188, ''), (11189, '$144.00 '), (11190, ''), (11191, '$189.00 '), (11192, ''), (11193, '$250.00 '), (11194, ''), (11195, ''), (11196, ''), (11197, ''), (11198, ''), (11199, 'Above'), (11200, ''), (11201, ''), (11202, ''), (11203, '$144.00 '), (11204, ''), (11205, '$144.00 '), (11206, '$104.00 '), (11207, 'price'), (11208, ''), (11209, ''), (11210, ''), (11211, ''), (11212, ''), (11213, '$144.00 '), (11214, '$144.00 '), (11215, '$144.00 '), (11216, 'above'), (11217, '$144.00 '), (11218, ''), (11219, 'Price '), (11220, '$144.00 '), (11221, ''), (11222, ''), (11223, ''), (11224, '$149.00 '), (11225, '$175.00 '), (11226, ''), (11227, ''), (11228, '$175.00 '), (11229, ''), (11230, 'price'), (11231, ''), (11232, ''), (11233, '$149.00 '), (11234, ''), (11235, '$104.00 '), (11236, ''), (11237, '$144.00 '), (11238, ''), (11239, ''), (11240, ''), (11241, ''), (11242, ''), (11243, ''), (11244, ''), (11245, ''), (11246, ''), (11247, '$144.00 '), (11248, ''), (11249, ''), (11250, ''), (11251, '$134.00 '), (11252, '$175.00 '), (11253, '$175.00 '), (11254, ''), (11255, '$85.00 '), (11256, '$144.00 '), (11257, ''), (11258, ''), (11259, ''), (11260, ''), (11261, ''), (11262, ''), (11263, ''), (11264, ''), (11265, ''), (11266, ''), (11267, ''), (11268, ''), (11269, ''), (11270, ''), (11271, ''), (11272, ''), (11273, ''), (11274, ''), (11275, ''), (11276, '$144.00 '), (11277, '$144.00 '), (11278, ''), (11279, '$144.00 '), (11280, '$144.00 '), (11281, 'inc. in'), (11282, ''), (11283, ''), (11284, ''), (11285, ''), (11286, ''), (11287, ''), (11288, '$144.00 '), (11289, ''), (11290, ''), (11291, ''), (11292, ''), (11293, ''), (11294, ''), (11295, '$204.00 '), (11296, '$204.00 '), (11297, '$144.00 '), (11298, '$79.00 '), (11299, '$204.00 '), (11300, ''), (11301, ''), (11302, ''), (11303, '$204.00 '), (11304, ''), (11305, ''), (11306, ''), (11307, ''), (11308, ''), (11309, ''), (11310, '$204.00 '), (11311, ''), (11312, ''), (11313, ''), (11314, '$204.00 '), (11315, ''), (11316, ''), (11317, ''), (11318, ''), (11319, ''), (11320, '$609.00 '), (11321, 'Inc. '), (11322, '$144.00 '), (11323, '$204.00 '), (11324, ''), (11325, '$79.00 '), (11326, '$144.00 '), (11327, '$144.00 '), (11328, 'Inc. '), (11329, ''), (11330, ''), (11331, ''), (11332, ''), (11333, ''), (11334, ''), (11335, ''), (11336, ''), (11337, ''), (11338, '$144.00 '), (11339, '$409.00 '), (11340, ''), (11341, ''), (11342, ''), (11343, ''), (11344, '$144.00 '), (11345, '$359.00 '), (11346, ''), (11347, ''), (11348, ''), (11349, ''), (11350, ''), (11351, '$84.00 '), (11352, ''), (11353, ''), (11354, ''), (11355, ''), (11356, ''), (11357, ''), (11358, ''), (11359, ''), (11360, '$300.00 '), (11361, '$300.00 '), (11362, ''), (11363, ''), (11364, ''), (11365, ''), (11366, ''), (11367, ''), (11368, ''), (11369, ''), (11370, ''), (11371, ''), (11372, ''), (11373, ''), (11374, ''), (11375, ''), (11376, ''), (11377, ''), (11378, ''), (11379, ''), (11380, ''), (11381, ''), (11382, ''), (11383, ''), (11384, ''), (11385, ''), (11386, ''), (11387, ''), (11388, '$139.00 '), (11389, ''), (11390, ''), (11391, ''), (11392, ''), (11393, ''), (11394, ''), (11395, ''), (11396, ''), (11397, ''), (11398, ''), (11399, ''), (11400, ''), (11401, ''), (11402, ''), (11403, ''), (11404, ''), (11405, '$144.00 '), (11406, ''), (11407, ''), (11408, ''), (11409, '$139.00 '), (11410, ''), (11411, ''), (11412, ''), (11413, ''), (11414, ''), (11415, ''), (11416, '$144.00 '), (11417, ''), (11418, ''), (11419, ''), (11420, ''), (11421, ''), (11422, ''), (11423, ''), (11424, ''), (11425, ''), (11426, '$144.00 '), (11427, ''), (11428, ''), (11429, ''), (11430, ''), (11431, '$454.00 '), (11432, ''), (11433, ''), (11434, ''), (11435, ''), (11436, ''), (11437, ''), (11438, ''), (11439, ''), (11440, ''), (11441, ''), (11442, '$104.00 '), (11443, '$104.00 '), (11444, ''), (11445, ''), (11446, ''), (11447, ''), (11448, ''), (11449, ''), (11450, ''), (11451, ''), (11452, ''), (11453, ''), (11454, ''), (11455, ''), (11456, ''), (11457, ''), (11458, ''), (11459, ''), (11460, ''), (11461, ''), (11462, ''), (11463, ''), (11464, ''), (11465, ''), (11466, ''), (11467, ''), (11468, ''), (11469, ''), (11470, ''), (11471, ''), (11472, ''), (11473, ''), (11474, ''), (11475, '$139.00 '), (11476, ''), (11477, ''), (11478, ''), (11479, ''), (11480, ''), (11481, ''), (11482, ''), (11483, ''), (11484, ''), (11485, '$144.00 '), (11486, ''), (11487, ''), (11488, ''), (11489, ''), (11490, ''), (11491, ''), (11492, '$104.00 '), (11493, ''), (11494, ''), (11495, '$144.00 '), (11496, ''), (11497, ''), (11498, '$144.00 '), (11499, ''), (11500, '$104.00 '), (11501, ''), (11502, ''), (11503, ''), (11504, ''), (11505, ''), (11506, ''), (11507, ''), (11508, ''), (11509, ''), (11510, ''), (11511, ''), (11512, ''), (11513, ''), (11514, ''), (11515, ''), (11516, ''), (11517, ''), (11518, ''), (11519, ''), (11520, ''), (11521, ''), (11522, ''), (11523, ''), (11524, ''), (11525, ''), (11526, ''), (11527, '$915.00 '), (11528, ''), (11529, ''), (11530, ''), (11531, ''), (11532, ''), (11533, ''), (11534, ''), (11535, ''), (11536, ''), (11537, ''), (11538, '$302.75 '), (11539, ''), (11540, ''), (11541, ''), (11542, ''), (11543, ''), (11544, ''), (11545, ''), (11546, ''), (11547, ''), (11548, ''), (11549, ''), (11550, ''), (11551, ''), (11552, ''), (11553, ''), (11554, ''), (11555, ''), (11556, ''), (11557, ''), (11558, ''), (11559, ''), (11560, '$144.00 '), (11561, ''), (11562, '$144.00 '), (11563, '$204.00 '), (11564, ''), (11565, ''), (11566, ''), (11567, ''), (11568, '$85.00 '), (11569, ''), (11570, ''), (11571, ''), (11572, '$144.00 '), (11573, '$144.00 '), (11574, ''), (11575, ''), (11576, ''), (11577, ''), (11578, '$0.00 '), (11579, ''), (11580, ''), (11581, ''), (11582, ''), (11583, ''), (11584, ''), (11585, ''), (11586, ''), (11587, '$85.00 '), (11588, ''), (11589, 'price '), (11590, ''), (11591, ''), (11592, ''), (11593, ''), (11594, ''), (11595, ''), (11596, ''), (11597, ''), (11598, ''), (11599, '$99.00 '), (11600, ''), (11601, ''), (11602, ''), (11603, ''), (11604, ''), (11605, ''), (11606, '$139.00 '), (11607, ''), (11608, ''), (11609, '$329.00 '), (11610, ''), (11611, ''), (11612, ''), (11613, ''), (11614, ''), (11615, ''), (11616, ''), (11617, ''), (11618, ''), (11619, ''), (11620, ''), (11621, ''), (11622, ''), (11623, ''), (11624, ''), (11625, ''), (11626, ''), (11627, ''), (11628, ''), (11629, ''), (11630, ''), (11631, ''), (11632, ''), (11633, ''), (11634, ''), (11635, ''), (11636, ''), (11637, ''), (11638, ''), (11639, ''), (11640, ''), (11641, ''), (11642, ''), (11643, ''), (11644, '$409.00 '), (11645, ''), (11646, ''), (11647, ''), (11648, ''), (11649, ''), (11650, '$174.00 '), (11651, ''), (11652, ''), (11653, ''), (11654, ''), (11655, ''), (11656, ''), (11657, ''), (11658, ''), (11659, ''), (11660, ''), (11661, '$144.00 '), (11662, ''), (11663, ''), (11664, ''), (11665, ''), (11666, ''), (11667, ''), (11668, ''), (11669, ''), (11670, '$175.00 '), (11671, '$175.00 '), (11672, ''), (11673, ''), (11674, 'Price'), (11675, ''), (11676, '$144.00 '), (11677, 'Price'), (11678, ''), (11679, ''), (11680, ''), (11681, ''), (11682, ''), (11683, ''), (11684, ''), (11685, '$99.00 '), (11686, ''), (11687, '$109.00 '), (11688, '$85.00 '), (11689, '$85.00 '), (11690, ''), (11691, ''), (11692, '$175.00 '), (11693, ''), (11694, ''), (11695, ''), (11696, ''), (11697, ''), (11698, ''), (11699, ''), (11700, ''), (11701, ''), (11702, ''), (11703, ''), (11704, ''), (11705, ''), (11706, ''), (11707, '$229.00 '), (11708, ''), (11709, ''), (11710, ''), (11711, ''), (11712, ''), (11713, ''), (11714, ''), (11715, ''), (11716, ''), (11717, '$199.00 '), (11718, '$105.00 '), (11719, ''), (11720, ''), (11721, ''), (11722, ''), (11723, ''), (11724, ''), (11725, ''), (11726, ''), (11727, ''), (11728, ''), (11729, ''), (11730, '$144.00 '), (11731, '$144.00 '), (11732, ''), (11733, ''), (11734, ''), (11735, ''), (11736, ''), (11737, ''), (11738, ''), (11739, '$79.00 '), (11740, ''), (11741, ''), (11742, ''), (11743, ''), (11744, ''), (11745, '$144.00 '), (11746, ''), (11747, ''), (11748, ''), (11749, ''), (11750, ''), (11751, ''), (11752, ''), (11753, ''), (11754, ''), (11755, ''), (11756, ''), (11757, '$70.00 '), (11758, ''), (11759, ''), (11760, ''), (11761, '$329.00 '), (11762, ''), (11763, ''), (11764, ''), (11765, ''), (11766, ''), (11767, ''), (11768, ''), (11769, ''), (11770, '$94.00 '), (11771, ''), (11772, ''), (11773, ''), (11774, ''), (11775, ''), (11776, ''), (11777, ''), (11778, ''), (11779, ''), (11780, ''), (11781, ''), (11782, ''), (11783, ''), (11784, ''), (11785, '$79.00 '), (11786, ''), (11787, ''), (11788, ''), (11789, ''), (11790, ''), (11791, ''), (11792, ''), (11793, ''), (11794, ''), (11795, ''), (11796, ''), (11797, ''), (11798, ''), (11799, ''), (11800, ''), (11801, ''), (11802, ''), (11803, ''), (11804, ''), (11805, ''), (11806, ''), (11807, ''), (11808, ''), (11809, ''), (11810, ''), (11811, ''), (11812, ''), (11813, ''), (11814, ''), (11815, ''), (11816, ''), (11817, ''), (11818, '$144.00 '), (11819, '$104.00 '), (11820, '$144.00 '), (11821, ''), (11822, ''), (11823, ''), (11824, '$85.00 '), (11825, '$85.00 '), (11826, ''), (11827, ''), (11828, ''), (11829, ''), (11830, ''), (11831, ''), (11832, '$99.00 '), (11833, ''), (11834, ''), (11835, ''), (11836, ''), (11837, ''), (11838, ''), (11839, ''), (11840, ''), (11841, ''), (11842, ''), (11843, ''), (11844, ''), (11845, '$204.00 '), (11846, '$144.00 '), (11847, '$99.00 '), (11848, '$144.00 '), (11849, ''), (11850, ''), (11851, ''), (11852, ''), (11853, ''), (11854, ''), (11855, ''), (11856, ''), (11857, ''), (11858, ''), (11859, ''), (11860, '$150.00 '), (11861, ''), (11862, ''), (11863, ''), (11864, ''), (11865, ''), (11866, ''), (11867, ''), (11868, ''), (11869, ''), (11870, ''), (11871, ''), (11872, ''), (11873, ''), (11874, ''), (11875, ''), (11876, ''), (11877, ''), (11878, ''), (11879, ''), (11880, ''), (11881, ''), (11882, ''), (11883, ''), (11884, ''), (11885, '$139.00 '), (11886, ''), (11887, ''), (11888, ''), (11889, '$350.00 '), (11890, ''), (11891, ''), (11892, ''), (11893, ''), (11894, ''), (11895, ''), (11896, ''), (11897, ''), (11898, ''), (11899, ''), (11900, ''), (11901, ''), (11902, '$79.00 '), (11903, ''), (11904, ''), (11905, ''), (11906, ''), (11907, ''), (11908, ''), (11909, ''), (11910, '$114.00 '), (11911, ''), (11912, ''), (11913, ''), (11914, '$99.00 '), (11915, ''), (11916, ''), (11917, ''), (11918, ''), (11919, ''), (11920, ''), (11921, ''), (11922, ''), (11923, ''), (11924, ''), (11925, ''), (11926, '$225.35 '), (11927, ''), (11928, ''), (11929, ''), (11930, ''), (11931, ''), (11932, ''), (11933, ''), (11934, '$915.00 '), (11935, ''), (11936, '$915.00 '), (11937, '$225.35 '), (11938, ''), (11939, '$225.35 '), (11940, ''), (11941, '$225.35 '), (11942, ''), (11943, ''), (11944, ''), (11945, '$225.35 '), (11946, '$570.42 '), (11947, ''), (11948, ''), (11949, ''), (11950, '$633.80 '), (11951, ''), (11952, '$302.75 '), (11953, ''), (11954, '$387.32 '), (11955, ''), (11956, ''), (11957, ''), (11958, ''), (11959, '$225.35 '), (11960, ''), (11961, ''), (11962, ''), (11963, ''), (11964, ''), (11965, ''), (11966, ''), (11967, ''), (11968, ''), (11969, ''), (11970, ''), (11971, ''), (11972, ''), (11973, ''), (11974, ''), (11975, ''), (11976, ''), (11977, '$390.00 '), (11978, ''), (11979, ''), (11980, ''), (11981, ''), (11982, ''), (11983, ''), (11984, ''), (11985, 'in'), (11986, '$79.00 '), (11987, '$85.00 '), (11988, '$144.00 '), (11989, 'above'), (11990, ''), (11991, ''), (11992, ''), (11993, ''), (11994, ''), (11995, ''), (11996, ''), (11997, ''), (11998, ''), (11999, ''), (12000, ''), (12001, ''), (12002, ''), (12003, 'Included'), (12004, ''), (12005, '$85.00 '), (12006, ''), (12007, ''), (12008, ''), (12009, ''), (12010, ''), (12011, ''), (12012, ''), (12013, ''), (12014, ''), (12015, ''), (12016, ''), (12017, ''), (12018, ''), (12019, ''), (12020, ''), (12021, ''), (12022, ''), (12023, ''), (12024, ''), (12025, ''), (12026, ''), (12027, ''), (12028, ''), (12029, ''), (12030, ''), (12031, ''), (12032, ''), (12033, ''), (12034, ''), (12035, ''), (12036, ''), (12037, '$139.00 '), (12038, ''), (12039, ''), (12040, ''), (12041, ''), (12042, ''), (12043, ''), (12044, ''), (12045, ''), (12046, ''), (12047, ''), (12048, ''), (12049, ''), (12050, ''), (12051, ''), (12052, ''), (12053, ''), (12054, ''), (12055, ''), (12056, ''), (12057, ''), (12058, ''), (12059, ''), (12060, ''), (12061, ''), (12062, ''), (12063, ''), (12064, ''), (12065, ''), (12066, ''), (12067, ''), (12068, ''), (12069, ''), (12070, ''), (12071, ''), (12072, ''), (12073, ''), (12074, ''), (12075, ''), (12076, ''), (12077, ''), (12078, ''), (12079, ''), (12080, ''), (12081, ''), (12082, ''), (12083, ''), (12084, ''), (12085, ''), (12086, ''), (12087, ''), (12088, '$94.00 '), (12089, ''), (12090, ''), (12091, ''), (12092, ''), (12093, ''), (12094, '$144.00 '), (12095, ''), (12096, ''), (12097, ''), (12098, ''), (12099, ''), (12100, ''), (12101, ''), (12102, ''), (12103, '$144.00 '), (12104, '$144.00 '), (12105, ''), (12106, ''), (12107, '$104.00 '), (12108, ''), (12109, ''), (12110, '$144.00 '), (12111, ''), (12112, ''), (12113, ''), (12114, ''), (12115, '$144.00 '), (12116, ''), (12117, ''), (12118, ''), (12119, ''), (12120, ''), (12121, ''), (12122, '$104.00 '), (12123, '$409.00 '), (12124, 'Price'), (12125, '$144.00 '), (12126, '$144.00 '), (12127, ''), (12128, '$144.00 '), (12129, ''), (12130, ''), (12131, ''), (12132, ''), (12133, ''), (12134, ''), (12135, ''), (12136, ''), (12137, ''), (12138, ''), (12139, ''), (12140, ''), (12141, ''), (12142, ''), (12143, ''), (12144, ''), (12145, ''), (12146, ''), (12147, ''), (12148, ''), (12149, ''), (12150, ''), (12151, ''), (12152, ''), (12153, '$110.00 '), (12154, ''), (12155, ''), (12156, '$65.00 '), (12157, ''), (12158, ''), (12159, ''), (12160, ''), (12161, ''), (12162, ''), (12163, ''), (12164, ''), (12165, ''), (12166, ''), (12167, ''), (12168, ''), (12169, ''), (12170, ''), (12171, ''), (12172, ''), (12173, ''), (12174, ''), (12175, ''), (12176, ''), (12177, ''), (12178, ''), (12179, ''), (12180, '$199.00 '), (12181, ''), (12182, ''), (12183, ''), (12184, ''), (12185, ''), (12186, ''), (12187, ''), (12188, ''), (12189, '$204.00 '), (12190, '$409.00 '), (12191, ''), (12192, ''), (12193, ''), (12194, ''), (12195, ''), (12196, ''), (12197, ''), (12198, ''), (12199, ''), (12200, '$75.00 '), (12201, ''), (12202, ''), (12203, ''), (12204, ''), (12205, ''), (12206, ''), (12207, ''), (12208, ''), (12209, '$99.00 '), (12210, ''), (12211, ''), (12212, ''), (12213, ''), (12214, ''), (12215, ''), (12216, ''), (12217, ''), (12218, ''), (12219, ''), (12220, ''), (12221, ''), (12222, ''), (12223, ''), (12224, ''), (12225, ''), (12226, ''), (12227, ''), (12228, ''), (12229, ''), (12230, ''), (12231, ''), (12232, ''), (12233, ''), (12234, ''), (12235, ''), (12236, ''), (12237, ''), (12238, ''), (12239, ''), (12240, ''), (12241, '$70.00 '), (12242, '$184.00 '), (12243, '$114.00 '), (12244, ''), (12245, ''), (12246, ''), (12247, ''), (12248, ''), (12249, ''), (12250, ''), (12251, ''), (12252, ''), (12253, ''), (12254, ''), (12255, ''), (12256, '$139.00 '), (12257, ''), (12258, ''), (12259, ''), (12260, ''), (12261, ''), (12262, ''), (12263, ''), (12264, ''), (12265, ''), (12266, ''), (12267, ''), (12268, ''), (12269, ''), (12270, ''), (12271, ''), (12272, '$563.38 '), (12273, ''), (12274, ''), (12275, ''), (12276, ''), (12277, ''), (12278, ''), (12279, ''), (12280, ''), (12281, ''), (12282, ''), (12283, ''), (12284, ''), (12285, ''), (12286, ''), (12287, ''), (12288, ''), (12289, ''), (12290, ''), (12291, ''), (12292, '$144.00 '), (12293, '$409.00 '), (12294, ''), (12295, ''), (12296, ''), (12297, ''), (12298, ''), (12299, ''), (12300, ''), (12301, ''), (12302, ''), (12303, ''), (12304, ''), (12305, '$139.00 '), (12306, ''), (12307, ''), (12308, ''), (12309, ''), (12310, ''), (12311, ''), (12312, ''), (12313, ''), (12314, ''), (12315, ''), (12316, ''), (12317, ''), (12318, ''), (12319, ''), (12320, ''), (12321, ''), (12322, ''), (12323, ''), (12324, ''), (12325, ''), (12326, ''), (12327, ''), (12328, ''), (12329, ''), (12330, ''), (12331, ''), (12332, ''), (12333, ''), (12334, ''), (12335, ''), (12336, ''), (12337, '$339.00 '), (12338, ''), (12339, ''), (12340, ''), (12341, '$144.00 '), (12342, ''), (12343, ''), (12344, ''), (12345, ''), (12346, ''), (12347, ''), (12348, ''), (12349, ''), (12350, '$209.00 '), (12351, ''), (12352, ''), (12353, ''), (12354, ''), (12355, ''), (12356, 'price'), (12357, ''), (12358, ''), (12359, '$204.00 '), (12360, ''), (12361, ''), (12362, '$144.00 '), (12363, '$209.00 '), (12364, '$144.00 '), (12365, ''), (12366, ''), (12367, '$316.00 '), (12368, ''), (12369, ''), (12370, '$216.00 '), (12371, ''), (12372, ''), (12373, '$283.00 '), (12374, ''), (12375, ''), (12376, '$204.00 '), (12377, ''), (12378, ''), (12379, ''), (12380, ''), (12381, ''), (12382, ''), (12383, ''), (12384, ''), (12385, ''), (12386, ''), (12387, ''), (12388, ''), (12389, ''), (12390, ''), (12391, ''), (12392, ''), (12393, ''), (12394, ''), (12395, ''), (12396, ''), (12397, ''), (12398, ''), (12399, ''), (12400, ''), (12401, ''), (12402, ''), (12403, ''), (12404, ''), (12405, ''), (12406, ''), (12407, ''), (12408, ''), (12409, ''), (12410, ''), (12411, ''), (12412, ''), (12413, ''), (12414, ''), (12415, ''), (12416, ''), (12417, ''), (12418, ''), (12419, ''), (12420, ''), (12421, '$139.00 '), (12422, ''), (12423, ''), (12424, ''), (12425, ''), (12426, ''), (12427, '$149.00 '), (12428, ''), (12429, ''), (12430, ''), (12431, '$349.00 '), (12432, '$139.00 '), (12433, '$144.00 '), (12434, ''), (12435, ''), (12436, ''), (12437, ''), (12438, ''), (12439, ''), (12440, ''), (12441, ''), (12442, ''), (12443, ''), (12444, ''), (12445, ''), (12446, ''), (12447, ''), (12448, ''), (12449, ''), (12450, ''), (12451, ''), (12452, ''), (12453, ''), (12454, ''), (12455, ''), (12456, ''), (12457, ''), (12458, ''), (12459, ''), (12460, ''), (12461, ''), (12462, ''), (12463, ''), (12464, ''), (12465, ''), (12466, ''), (12467, ''), (12468, ''), (12469, ''), (12470, ''), (12471, ''), (12472, ''), (12473, ''), (12474, ''), (12475, ''), (12476, ''), (12477, ''), (12478, ''), (12479, ''), (12480, '$175.00 '), (12481, '$144.00 '), (12482, ''), (12483, ''), (12484, ''), (12485, ''), (12486, '$144.00 '), (12487, ''), (12488, '$454.00 '), (12489, ''), (12490, ''), (12491, '$144.00 '), (12492, '$144.00 '), (12493, ''), (12494, '$144.00 '), (12495, ''), (12496, ''), (12497, ''), (12498, ''), (12499, ''), (12500, ''), (12501, ''), (12502, ''), (12503, ''), (12504, ''), (12505, ''), (12506, 'above'), (12507, ''), (12508, ''), (12509, ''), (12510, ''), (12511, ''), (12512, ''), (12513, ''), (12514, ''), (12515, ''), (12516, ''), (12517, ''), (12518, ''), (12519, ''), (12520, ''), (12521, ''), (12522, ''), (12523, '$114.00 '), (12524, ''), (12525, ''), (12526, '$409.00 '), (12527, ''), (12528, ''), (12529, ''), (12530, ''), (12531, ''), (12532, ''), (12533, '$300.00 '), (12534, '$154.00 '), (12535, ''), (12536, ''), (12537, ''), (12538, ''), (12539, ''), (12540, ''), (12541, '$144.00 '), (12542, ''), (12543, ''), (12544, ''), (12545, ''), (12546, ''), (12547, ''), (12548, ''), (12549, ''), (12550, 'in'), (12551, ''), (12552, ''), (12553, ''), (12554, ''), (12555, ''), (12556, ''), (12557, ''), (12558, ''), (12559, ''), (12560, ''), (12561, ''), (12562, ''), (12563, ''), (12564, ''), (12565, '$409.00 '), (12566, '$329.00 '), (12567, ''), (12568, ''), (12569, '$79.00 '), (12570, ''), (12571, ''), (12572, ''), (12573, ''), (12574, ''), (12575, ''), (12576, '$85.00 '), (12577, ''), (12578, ''), (12579, ''), (12580, ''), (12581, ''), (12582, ''), (12583, ''), (12584, ''), (12585, ''), (12586, ''), (12587, ''), (12588, ''), (12589, ''), (12590, ''), (12591, ''), (12592, ''), (12593, ''), (12594, ''), (12595, ''), (12596, '$204.00 '), (12597, '$85.00 '), (12598, ''), (12599, ''), (12600, ''), (12601, '$109.00 '), (12602, '$144.00 '), (12603, ''), (12604, ''), (12605, '$224.00 '), (12606, ''), (12607, ''), (12608, '$154.00 '), (12609, ''), (12610, ''), (12611, ''), (12612, '$409.00 '), (12613, ''), (12614, ''), (12615, ''), (12616, ''), (12617, ''), (12618, ''), (12619, ''), (12620, ''), (12621, ''), (12622, '$170.00 '), (12623, ''), (12624, ''), (12625, ''), (12626, ''), (12627, '$99.00 '), (12628, ''), (12629, ''), (12630, ''), (12631, ''), (12632, ''), (12633, ''), (12634, ''), (12635, ''), (12636, ''), (12637, ''), (12638, ''), (12639, ''), (12640, ''), (12641, ''), (12642, ''), (12643, ''), (12644, ''), (12645, ''), (12646, ''), (12647, ''), (12648, ''), (12649, ''), (12650, ''), (12651, ''), (12652, ''), (12653, '$204.00 '), (12654, ''), (12655, ''), (12656, ''), (12657, ''), (12658, ''), (12659, ''), (12660, ''), (12661, ''), (12662, ''), (12663, ''), (12664, ''), (12665, ''), (12666, ''), (12667, ''), (12668, ''), (12669, ''), (12670, ''), (12671, ''), (12672, ''), (12673, ''), (12674, ''), (12675, ''), (12676, ''), (12677, '$109.00 '), (12678, '$149.00 '), (12679, ''), (12680, 'price'), (12681, ''), (12682, ''), (12683, ''), (12684, ''), (12685, '$154.00 '), (12686, ''), (12687, 'Above'), (12688, ''), (12689, ''), (12690, ''), (12691, ''), (12692, ''), (12693, ''), (12694, ''), (12695, ''), (12696, ''), (12697, '$99.00 '), (12698, ''), (12699, ''), (12700, ''), (12701, ''), (12702, ''), (12703, ''), (12704, ''), (12705, ''), (12706, ''), (12707, ''), (12708, ''), (12709, ''), (12710, ''), (12711, ''), (12712, ''), (12713, '$144.00 '), (12714, ''), (12715, ''), (12716, ''), (12717, ''), (12718, 'price '), (12719, ''), (12720, ''), (12721, ''), (12722, ''), (12723, ''), (12724, ''), (12725, ''), (12726, ''), (12727, ''), (12728, ''), (12729, ''), (12730, '$94.00 '), (12731, ''), (12732, ''), (12733, ''), (12734, ''), (12735, ''), (12736, ''), (12737, ''), (12738, ''), (12739, ''), (12740, ''), (12741, ''), (12742, ''), (12743, ''), (12744, ''), (12745, ''), (12746, ''), (12747, ''), (12748, ''), (12749, '$204.00 '), (12750, '$89.00 '), (12751, ''), (12752, ''), (12753, ''), (12754, ''), (12755, ''), (12756, ''), (12757, '$104.00 '), (12758, '$144.00 '), (12759, ''), (12760, ''), (12761, '$149.00 '), (12762, ''), (12763, ''), (12764, '$409.00 '), (12765, ''), (12766, ''), (12767, '$204.00 '), (12768, '$144.00 '), (12769, '$144.00 '), (12770, ''), (12771, '$75.00 '), (12772, ''), (12773, ''), (12774, ''), (12775, '$124.00 '), (12776, ''), (12777, 'Price'), (12778, ''), (12779, ''), (12780, ''), (12781, ''), (12782, ''), (12783, ''), (12784, ''), (12785, ''), (12786, ''), (12787, ''), (12788, ''), (12789, ''), (12790, '$149.00 '), (12791, ''), (12792, ''), (12793, '$144.00 '), (12794, ''), (12795, '$204.00 '), (12796, '$144.00 '), (12797, ''), (12798, ''), (12799, ''), (12800, ''), (12801, ''), (12802, ''), (12803, ''), (12804, ''), (12805, ''), (12806, ''), (12807, ''), (12808, ''), (12809, ''), (12810, ''), (12811, ''), (12812, ''), (12813, ''), (12814, ''), (12815, ''), (12816, ''), (12817, ''), (12818, ''), (12819, ''), (12820, ''), (12821, '$89.00 '), (12822, '$89.00 '), (12823, '$214.00 '), (12824, ''), (12825, ''), (12826, ''), (12827, ''), (12828, ''), (12829, ''), (12830, ''), (12831, ''), (12832, ''), (12833, ''), (12834, ''), (12835, ''), (12836, ''), (12837, '$174.00 '), (12838, ''), (12839, ''), (12840, ''), (12841, ''), (12842, ''), (12843, ''), (12844, ''), (12845, ''), (12846, ''), (12847, ''), (12848, '$204.00 '), (12849, ''), (12850, ''), (12851, ''), (12852, ''), (12853, '$149.00 '), (12854, ''), (12855, ''), (12856, '$144.00 '), (12857, ''), (12858, ''), (12859, '$0.00 '), (12860, '$144.00 '), (12861, ''), (12862, ''), (12863, '$204.00 '), (12864, '$144.00 '), (12865, '$175.00 '), (12866, ''), (12867, ''), (12868, ''), (12869, '$144.00 '), (12870, '$144.00 '), (12871, ''), (12872, ''), (12873, ''), (12874, '$164.00 '), (12875, ''), (12876, ''), (12877, ''), (12878, ''), (12879, ''), (12880, ''), (12881, ''), (12882, ''), (12883, ''), (12884, ''), (12885, ''), (12886, ''), (12887, ''), (12888, ''), (12889, ''), (12890, ''), (12891, ''), (12892, ''), (12893, ''), (12894, ''), (12895, ''), (12896, ''), (12897, ''), (12898, ''), (12899, ''), (12900, ''), (12901, ''), (12902, ''), (12903, ''), (12904, ''), (12905, ''), (12906, ''), (12907, ''), (12908, '$124.00 '), (12909, '$114.00 '), (12910, ''), (12911, '$144.00 '), (12912, ''), (12913, ''), (12914, ''), (12915, '$144.00 '), (12916, '$104.00 '), (12917, '$144.00 '), (12918, ''), (12919, ''), (12920, ''), (12921, ''), (12922, ''), (12923, '$35.00 '), (12924, ''), (12925, ''), (12926, ''), (12927, ''), (12928, ''), (12929, ''), (12930, ''), (12931, ''), (12932, ''), (12933, ''), (12934, '$144.00 '), (12935, ''), (12936, ''), (12937, '$85.00 '), (12938, ''), (12939, ''), (12940, ''), (12941, ''), (12942, ''), (12943, ''), (12944, ''), (12945, ''), (12946, '$124.00 '), (12947, '$124.00 '), (12948, ''), (12949, ''), (12950, ''), (12951, ''), (12952, ''), (12953, ''), (12954, ''), (12955, ''), (12956, ''), (12957, ''), (12958, ''), (12959, ''), (12960, '$144.00 '), (12961, ''), (12962, ''), (12963, 'price'), (12964, '$154.00 '), (12965, ''), (12966, ''), (12967, ''), (12968, ''), (12969, ''), (12970, ''), (12971, ''), (12972, ''), (12973, ''), (12974, ''), (12975, ''), (12976, '$204.00 '), (12977, ''), (12978, ''), (12979, ''), (12980, '$79.00 '), (12981, ''), (12982, '$175.00 '), (12983, ''), (12984, ''), (12985, '$144.00 '), (12986, ''), (12987, ''), (12988, ''), (12989, ''), (12990, ''), (12991, ''), (12992, ''), (12993, ''), (12994, ''), (12995, '$149.00 '), (12996, ''), (12997, ''), (12998, ''), (12999, ''), (13000, ''), (13001, ''), (13002, ''), (13003, ''), (13004, ''), (13005, ''), (13006, '$144.00 '), (13007, ''), (13008, ''), (13009, ''), (13010, ''), (13011, ''), (13012, ''), (13013, ''), (13014, ''), (13015, '$144.00 '), (13016, ''), (13017, ''), (13018, ''), (13019, ''), (13020, '$144.00 '), (13021, '$175.00 '), (13022, ''), (13023, ''), (13024, '$104.00 '), (13025, ''), (13026, '$125.00 '), (13027, '$125.00 '), (13028, ''), (13029, ''), (13030, '$144.00 '), (13031, ''), (13032, ''), (13033, ''), (13034, ''), (13035, ''), (13036, ''), (13037, ''), (13038, ''), (13039, ''), (13040, ''), (13041, ''), (13042, ''), (13043, ''), (13044, ''), (13045, ''), (13046, ''), (13047, ''), (13048, '$144.00 '), (13049, ''), (13050, ''), (13051, ''), (13052, ''), (13053, '$99.00 '), (13054, ''), (13055, '$359.00 '), (13056, ''), (13057, ''), (13058, ''), (13059, ''), (13060, ''), (13061, ''), (13062, ''), (13063, ''), (13064, ''), (13065, ''), (13066, ''), (13067, ''), (13068, ''), (13069, '$79.00 '), (13070, '$409.00 '), (13071, ''), (13072, ''), (13073, ''), (13074, ''), (13075, '$409.00 '), (13076, ''), (13077, '$204.00 '), (13078, ''), (13079, '$104.00 '), (13080, ''), (13081, ''), (13082, ''), (13083, ''), (13084, ''), (13085, ''), (13086, '$35.00 '), (13087, '$35.00 '), (13088, ''), (13089, ''), (13090, '$35.00 '), (13091, ''), (13092, ''), (13093, ''), (13094, ''), (13095, '$144.00 '), (13096, ''), (13097, '$149.00 '), (13098, '$109.00 '), (13099, ''), (13100, ''), (13101, ''), (13102, ''), (13103, ''), (13104, ''), (13105, ''), (13106, ''), (13107, ''), (13108, ''), (13109, ''), (13110, ''), (13111, ''), (13112, ''), (13113, ''), (13114, ''), (13115, ''), (13116, '$204.00 '), (13117, 'in'), (13118, ''), (13119, '$144.00 '), (13120, ''), (13121, ''), (13122, ''), (13123, ''), (13124, ''), (13125, ''), (13126, ''), (13127, ''), (13128, ''), (13129, '$85.00 '), (13130, ''), (13131, ''), (13132, '$359.00 '), (13133, ''), (13134, ''), (13135, ''), (13136, ''), (13137, ''), (13138, ''), (13139, '$495.00 '), (13140, ''), (13141, ''), (13142, ''), (13143, ''), (13144, ''), (13145, ''), (13146, ''), (13147, ''), (13148, ''), (13149, ''), (13150, ''), (13151, '$224.00 '), (13152, ''), (13153, '$85.00 '), (13154, '$144.00 '), (13155, '$85.00 '), (13156, ''), (13157, ''), (13158, '$144.00 '), (13159, ''), (13160, ''), (13161, ''), (13162, ''), (13163, '$144.00 '), (13164, '$104.00 '), (13165, '$144.00 '), (13166, ''), (13167, ''), (13168, ''), (13169, ''), (13170, '$79.00 '), (13171, ''), (13172, ''), (13173, ''), (13174, ''), (13175, ''), (13176, ''), (13177, ''), (13178, ''), (13179, ''), (13180, ''), (13181, ''), (13182, ''), (13183, ''), (13184, '$204.00 '), (13185, ''), (13186, ''), (13187, ''), (13188, ''), (13189, '$204.00 '), (13190, ''), (13191, ''), (13192, ''), (13193, ''), (13194, ''), (13195, ''), (13196, '$114.00 '), (13197, ''), (13198, ''), (13199, ''), (13200, '$99.00 '), (13201, ''), (13202, ''), (13203, ''), (13204, ''), (13205, ''), (13206, ''), (13207, ''), (13208, ''), (13209, ''), (13210, ''), (13211, ''), (13212, ''), (13213, ''), (13214, ''), (13215, ''), (13216, ''), (13217, ''), (13218, ''), (13219, ''), (13220, ''), (13221, ''), (13222, ''), (13223, ''), (13224, ''), (13225, ''), (13226, ''), (13227, ''), (13228, ''), (13229, ''), (13230, ''), (13231, ''), (13232, ''), (13233, ''), (13234, ''), (13235, ''), (13236, ''), (13237, ''), (13238, ''), (13239, ''), (13240, ''), (13241, ''), (13242, ''), (13243, ''), (13244, ''), (13245, '$144.00 '), (13246, ''), (13247, ''), (13248, ''), (13249, ''), (13250, ''), (13251, ''), (13252, ''), (13253, ''), (13254, ''), (13255, ''), (13256, ''), (13257, ''), (13258, ''), (13259, ''), (13260, ''), (13261, ''), (13262, '$15.00 '), (13263, ''), (13264, ''), (13265, ''), (13266, ''), (13267, ''), (13268, ''), (13269, '$409.00 '), (13270, ''), (13271, ''), (13272, ''), (13273, '$104.00 '), (13274, ''), (13275, ''), (13276, ''), (13277, '$187.00 '), (13278, '$104.00 '), (13279, ''), (13280, '$104.00 '), (13281, ''), (13282, 'in above'), (13283, '$144.00 '), (13284, ''), (13285, ''), (13286, '$409.00 '), (13287, ''), (13288, ''), (13289, ''), (13290, ''), (13291, ''), (13292, '$144.00 '), (13293, ''), (13294, ''), (13295, ''), (13296, ''), (13297, ''), (13298, ''), (13299, ''), (13300, '$104.00 '), (13301, ''), (13302, '$85.00 '), (13303, '$85.00 '), (13304, '$204.00 '), (13305, '$85.00 '), (13306, ''), (13307, ''), (13308, ''), (13309, ''), (13310, ''), (13311, '$0.44 '), (13312, ''), (13313, '$144.00 '), (13314, ''), (13315, ''), (13316, ''), (13317, ''), (13318, 'Price'), (13319, ''), (13320, ''), (13321, 'price '), (13322, ''), (13323, ''), (13324, ''), (13325, ''), (13326, '$144.00 '), (13327, ''), (13328, ''), (13329, '$85.00 '), (13330, ''), (13331, '$85.00 '), (13332, ''), (13333, ''), (13334, ''), (13335, ''), (13336, ''), (13337, ''), (13338, ''), (13339, 'Included'), (13340, ''), (13341, ''), (13342, ''), (13343, ''), (13344, ''), (13345, ''), (13346, ''), (13347, ''), (13348, '$144.00 '), (13349, '$144.00 '), (13350, '$144.00 '), (13351, '$144.00 '), (13352, ''), (13353, ''), (13354, ''), (13355, '$454.00 '), (13356, ''), (13357, ''), (13358, ''), (13359, ''), (13360, ''), (13361, ''), (13362, ''), (13363, ''), (13364, ''), (13365, ''), (13366, ''), (13367, ''), (13368, ''), (13369, ''), (13370, ''), (13371, 'Price'), (13372, '$79.00 '), (13373, '$204.00 '), (13374, '$144.00 '), (13375, ''), (13376, ''), (13377, ''), (13378, ''), (13379, '$409.00 '), (13380, ''), (13381, ''), (13382, ''), (13383, ''), (13384, ''), (13385, ''), (13386, ''), (13387, ''), (13388, ''), (13389, ''), (13390, ''), (13391, ''), (13392, ''), (13393, ''), (13394, ''), (13395, ''), (13396, '$85.00 '), (13397, ''), (13398, ''), (13399, ''), (13400, '$144.00 '), (13401, ''), (13402, ''), (13403, '$144.00 '), (13404, ''), (13405, ''), (13406, ''), (13407, '$204.00 '), (13408, ''), (13409, ''), (13410, ''), (13411, ''), (13412, ''), (13413, ''), (13414, '$70.00 '), (13415, ''), (13416, ''), (13417, ''), (13418, ''), (13419, ''), (13420, ''), (13421, ''), (13422, ''), (13423, ''), (13424, ''), (13425, '$409.00 '), (13426, ''), (13427, ''), (13428, ''), (13429, ''), (13430, ''), (13431, ''), (13432, ''), (13433, ''), (13434, ''), (13435, ''), (13436, ''), (13437, ''), (13438, ''), (13439, ''), (13440, ''), (13441, 'in price '), (13442, ''), (13443, ''), (13444, ''), (13445, ''), (13446, ''), (13447, ''), (13448, '$144.00 '), (13449, ''), (13450, ''), (13451, ''), (13452, ''), (13453, ''), (13454, ' inc '), (13455, ''), (13456, ''), (13457, ''), (13458, ''), (13459, ''), (13460, '$174.00 '), (13461, ''), (13462, 'inc.'), (13463, ''), (13464, ''), (13465, ''), (13466, ''), (13467, ''), (13468, ''), (13469, ''), (13470, '$70.00 '), (13471, ''), (13472, ''), (13473, ''), (13474, ''), (13475, ''), (13476, ''), (13477, ''), (13478, ''), (13479, ''), (13480, ''), (13481, ''), (13482, ''), (13483, ''), (13484, ''), (13485, ''), (13486, ''), (13487, ''), (13488, ''), (13489, ''), (13490, ''), (13491, ''), (13492, '$144.00 '), (13493, ''), (13494, ''), (13495, ''), (13496, ''), (13497, ''), (13498, '$144.00 '), (13499, ''), (13500, ''), (13501, ''), (13502, ''), (13503, ''), (13504, ''), (13505, ''), (13506, ''), (13507, ''), (13508, ''), (13509, ''), (13510, ''), (13511, ''), (13512, ''), (13513, ''), (13514, ''), (13515, '$149.00 '), (13516, 'price'), (13517, ''), (13518, ''), (13519, ''), (13520, '$179.00 '), (13521, ''), (13522, ''), (13523, ''), (13524, ''), (13525, ''), (13526, ''), (13527, '$144.00 '), (13528, ''), (13529, ''), (13530, '$79.00 '), (13531, ''), (13532, ''), (13533, ''), (13534, ''), (13535, ''), (13536, '$125.00 '), (13537, '$134.00 '), (13538, ''), (13539, ''), (13540, ''), (13541, ''), (13542, ''), (13543, ''), (13544, ''), (13545, '$125.00 '), (13546, ''), (13547, ''), (13548, '$85.00 '), (13549, '$144.00 '), (13550, '$209.00 '), (13551, ''), (13552, ''), (13553, ''), (13554, ''), (13555, '$99.00 '), (13556, ''), (13557, ''), (13558, ''), (13559, ''), (13560, ''), (13561, ''), (13562, ''), (13563, ''), (13564, ''), (13565, ''), (13566, ''), (13567, ''), (13568, ''), (13569, ''), (13570, ''), (13571, ''), (13572, ''), (13573, ''), (13574, ''), (13575, ''), (13576, ''), (13577, ''), (13578, ''), (13579, ''), (13580, ''), (13581, ''), (13582, ''), (13583, ''), (13584, ''), (13585, ''), (13586, ''), (13587, '$204.00 '), (13588, ''), (13589, '$488.00 '), (13590, ''), (13591, ''), (13592, ''), (13593, ''), (13594, ''), (13595, '$204.00 '), (13596, ''), (13597, ''), (13598, '$174.00 '), (13599, ''), (13600, ''), (13601, ''), (13602, ''), (13603, ''), (13604, ''), (13605, ''), (13606, '$149.00 '), (13607, ''), (13608, ''), (13609, '$144.00 '), (13610, ''), (13611, ''), (13612, '$104.00 '), (13613, ''), (13614, ''), (13615, '$409.00 '), (13616, ''), (13617, ''), (13618, ''), (13619, ''), (13620, ''), (13621, '$85.00 '), (13622, ''), (13623, '$158.00 '), (13624, '$79.00 '), (13625, ''), (13626, ''), (13627, ''), (13628, ''), (13629, ''), (13630, ''), (13631, ''), (13632, ''), (13633, '$79.00 '), (13634, '$144.00 '), (13635, ''), (13636, ''), (13637, '$204.00 '), (13638, ''), (13639, ''), (13640, ''), (13641, ''), (13642, ''), (13643, ''), (13644, ''), (13645, ''), (13646, ' in abo'), (13647, ''), (13648, ''), (13649, ''), (13650, ''), (13651, ''), (13652, ''), (13653, ''), (13654, ''), (13655, ''), (13656, ''), (13657, ''), (13658, ''), (13659, ''), (13660, ''), (13661, ''), (13662, ''), (13663, ''), (13664, ''), (13665, ''), (13666, ''), (13667, ''), (13668, ''), (13669, '$149.00 '), (13670, ''), (13671, ''), (13672, ''), (13673, ''), (13674, ''), (13675, ''), (13676, ''), (13677, ''), (13678, ''), (13679, ''), (13680, ''), (13681, '$175.00 '), (13682, ''), (13683, ''), (13684, '$175.00 '), (13685, ''), (13686, '$144.00 '), (13687, ''), (13688, ''), (13689, ''), (13690, ''), (13691, ''), (13692, ''), (13693, ''), (13694, ''), (13695, ''), (13696, ''), (13697, '$409.00 '), (13698, ''), (13699, ''), (13700, ''), (13701, ''), (13702, ''), (13703, ''), (13704, ''), (13705, ''), (13706, ''), (13707, ''), (13708, '$79.00 '), (13709, ''), (13710, ''), (13711, ''), (13712, ''), (13713, ''), (13714, ''), (13715, ''), (13716, ''), (13717, ''), (13718, ''), (13719, ''), (13720, ''), (13721, ''), (13722, ''), (13723, ''), (13724, ''), (13725, ''), (13726, ''), (13727, ''), (13728, '$144.00 '), (13729, ''), (13730, ''), (13731, ''), (13732, ''), (13733, ''), (13734, ''), (13735, ''), (13736, ''), (13737, ''), (13738, ''), (13739, ''), (13740, ''), (13741, ''), (13742, ''), (13743, ''), (13744, ''), (13745, ''), (13746, ''), (13747, '$125.00 '), (13748, ''), (13749, ''), (13750, ''), (13751, ''), (13752, ''), (13753, ''), (13754, ''), (13755, ''), (13756, ''), (13757, ''), (13758, ''), (13759, ''), (13760, '$144.00 '), (13761, ''), (13762, 'inc.'), (13763, ''), (13764, '$175.00 '), (13765, ''), (13766, ''), (13767, ''), (13768, ''), (13769, ''), (13770, 'Price '), (13771, ''), (13772, ''), (13773, ''), (13774, '$144.00 '), (13775, ''), (13776, '$144.00 '), (13777, '$359.00 '), (13778, '$144.00 '), (13779, ''), (13780, ''), (13781, ''), (13782, ''), (13783, ''), (13784, '$104.00 '), (13785, ''), (13786, '$104.00 '), (13787, 'price'), (13788, '$144.00 '), (13789, ''), (13790, 'above'), (13791, '$144.00 '), (13792, ''), (13793, ''), (13794, ''), (13795, '$409.00 '), (13796, ''), (13797, ''), (13798, ''), (13799, '$175.00 '), (13800, ''), (13801, ''), (13802, ''), (13803, ''), (13804, ''), (13805, ''), (13806, '$144.00 '), (13807, ''), (13808, '$144.00 '), (13809, ''), (13810, ''), (13811, ''), (13812, ''), (13813, ''), (13814, ''), (13815, ''), (13816, ''), (13817, ''), (13818, '$144.00 '), (13819, ''), (13820, ''), (13821, ''), (13822, '$134.00 '), (13823, '$175.00 '), (13824, '$175.00 '), (13825, ''), (13826, '$85.00 '), (13827, ''), (13828, ''), (13829, ''), (13830, ''), (13831, ''), (13832, ''), (13833, ''), (13834, ''), (13835, ''), (13836, ''), (13837, ''), (13838, ''), (13839, ''), (13840, ''), (13841, ''), (13842, ''), (13843, ''), (13844, ''), (13845, ''), (13846, ''), (13847, '$144.00 '), (13848, '$244.00 '), (13849, ''), (13850, '$144.00 '), (13851, '$144.00 '), (13852, 'price'), (13853, ''), (13854, ''), (13855, ''), (13856, ''), (13857, ''), (13858, ''), (13859, '$144.00 '), (13860, ''), (13861, ''), (13862, ''), (13863, ''), (13864, ''), (13865, ''), (13866, '$204.00 '), (13867, '$79.00 '), (13868, '$144.00 '), (13869, '$204.00 '), (13870, '$204.00 '), (13871, ''), (13872, ''), (13873, ''), (13874, ''), (13875, ''), (13876, ''), (13877, ''), (13878, ''), (13879, ''), (13880, ''), (13881, '$204.00 '), (13882, ''), (13883, ''), (13884, ''), (13885, '$204.00 '), (13886, ''), (13887, ''), (13888, ''), (13889, ''), (13890, ''), (13891, '$144.00 '), (13892, '$144.00 '), (13893, '$144.00 '), (13894, '$144.00 '), (13895, ''), (13896, '$144.00 '), (13897, '$144.00 '), (13898, '$244.00 '), (13899, 'Inc. '), (13900, ''), (13901, ''), (13902, ''), (13903, ''), (13904, ''), (13905, ''), (13906, ''), (13907, ''), (13908, ''), (13909, '$144.00 '), (13910, ''), (13911, ''), (13912, ''), (13913, ''), (13914, ''), (13915, '$144.00 '), (13916, ''), (13917, ''), (13918, ''), (13919, ''), (13920, ''), (13921, ''), (13922, ''), (13923, ''), (13924, ''), (13925, ''), (13926, ''), (13927, ''), (13928, ''), (13929, ''), (13930, ''), (13931, '$300.00 '), (13932, '$300.00 '), (13933, ''), (13934, ''), (13935, ''), (13936, ''), (13937, ''), (13938, ''), (13939, ''), (13940, ''), (13941, ''), (13942, ''), (13943, ''), (13944, ''), (13945, ''), (13946, ''), (13947, ''), (13948, ''), (13949, ''), (13950, ''), (13951, ''), (13952, ''), (13953, ''), (13954, ''), (13955, ''), (13956, ''), (13957, ''), (13958, ''), (13959, ''), (13960, ''), (13961, ''), (13962, ''), (13963, ''), (13964, ''), (13965, ''), (13966, ''), (13967, ''), (13968, ''), (13969, ''), (13970, ''), (13971, ''), (13972, ''), (13973, ''), (13974, ''), (13975, ''), (13976, ''), (13977, ''), (13978, ''), (13979, ''), (13980, ''), (13981, ''), (13982, ''), (13983, ''), (13984, ''), (13985, ''), (13986, ''), (13987, '$144.00 '), (13988, ''), (13989, ''), (13990, ''), (13991, ''), (13992, ''), (13993, ''), (13994, ''), (13995, ''), (13996, ''), (13997, '$144.00 '), (13998, ''), (13999, ''), (14000, ''), (14001, ''), (14002, 'Incl. w/'), (14003, ''), (14004, ''), (14005, ''), (14006, ''), (14007, ''), (14008, ''), (14009, ''), (14010, ''), (14011, ''), (14012, ''), (14013, '$104.00 '), (14014, ''), (14015, ''), (14016, ''), (14017, ''), (14018, ''), (14019, ''), (14020, ''), (14021, ''), (14022, ''), (14023, ''), (14024, ''), (14025, ''), (14026, ''), (14027, ''), (14028, ''), (14029, ''), (14030, ''), (14031, ''), (14032, ''), (14033, ''), (14034, ''), (14035, ''), (14036, ''), (14037, ''), (14038, ''), (14039, ''), (14040, ''), (14041, ''), (14042, ''), (14043, ''), (14044, ''), (14045, ''), (14046, '$199.00 '), (14047, ''), (14048, ''), (14049, ''), (14050, ''), (14051, ''), (14052, ''), (14053, ''), (14054, ''), (14055, ''), (14056, ''), (14057, ''), (14058, ''), (14059, ''), (14060, ''), (14061, ''), (14062, ''), (14063, '$144.00 '), (14064, ''), (14065, ''), (14066, ''), (14067, ''), (14068, ''), (14069, '$144.00 '), (14070, ''), (14071, ''), (14072, ''), (14073, ''), (14074, ''), (14075, ''), (14076, ''), (14077, ''), (14078, ''), (14079, ''), (14080, ''), (14081, ''), (14082, ''), (14083, ''), (14084, ''), (14085, ''), (14086, ''), (14087, ''), (14088, ''), (14089, ''), (14090, ''), (14091, ''), (14092, ''), (14093, ''), (14094, ''), (14095, ''), (14096, ''), (14097, ''), (14098, '$225.35 '), (14099, ''), (14100, ''), (14101, ''), (14102, ''), (14103, ''), (14104, ''), (14105, ''), (14106, ''), (14107, ''), (14108, ''), (14109, '$302.75 '), (14110, ''), (14111, ''), (14112, ''), (14113, ''), (14114, ''), (14115, ''), (14116, ''), (14117, ''), (14118, ''), (14119, ''), (14120, ''), (14121, ''), (14122, ''), (14123, ''), (14124, ''), (14125, ''), (14126, ''), (14127, ''), (14128, ''), (14129, ''), (14130, ''), (14131, '$144.00 '), (14132, ''), (14133, '$144.00 '), (14134, '$204.00 '), (14135, ''), (14136, ''), (14137, ''), (14138, ''), (14139, ''), (14140, ''), (14141, ''), (14142, ''), (14143, '$144.00 '), (14144, '$144.00 '), (14145, ''), (14146, ''), (14147, ''), (14148, ''), (14149, '$0.00 '), (14150, ''), (14151, ''), (14152, ''), (14153, ''), (14154, ''), (14155, ''), (14156, ''), (14157, ''), (14158, ''), (14159, ''), (14160, '$409.00 '), (14161, ''), (14162, ''), (14163, ''), (14164, ''), (14165, ''), (14166, ''), (14167, ''), (14168, ''), (14169, ''), (14170, '$99.00 '), (14171, ''), (14172, ''), (14173, ''), (14174, ''), (14175, ''), (14176, ''), (14177, ''), (14178, ''), (14179, ''), (14180, '$89.00 '), (14181, ''), (14182, ''), (14183, ''), (14184, ''), (14185, ''), (14186, ''), (14187, ''), (14188, ''), (14189, ''), (14190, ''), (14191, ''), (14192, ''), (14193, ''), (14194, ''), (14195, ''), (14196, ''), (14197, ''), (14198, ''), (14199, ''), (14200, ''), (14201, ''), (14202, ''), (14203, ''), (14204, ''), (14205, ''), (14206, ''), (14207, ''), (14208, ''), (14209, ''), (14210, ''), (14211, ''), (14212, ''), (14213, ''), (14214, ''), (14215, '$134.00 '), (14216, ''), (14217, ''), (14218, ''), (14219, ''), (14220, ''), (14221, '$409.00 '), (14222, ''), (14223, ''), (14224, ''), (14225, ''), (14226, ''), (14227, ''), (14228, ''), (14229, ''), (14230, ''), (14231, ''), (14232, '$144.00 '), (14233, ''), (14234, ''), (14235, ''), (14236, ''), (14237, ''), (14238, ''), (14239, ''), (14240, ''), (14241, '$250.00 '), (14242, '$175.00 '), (14243, ''), (14244, ''), (14245, '$149.00 '), (14246, ''), (14247, '$144.00 '), (14248, '$144.00 '), (14249, ''), (14250, ''), (14251, ''), (14252, ''), (14253, ''), (14254, ''), (14255, ''), (14256, '$144.00 '), (14257, ''), (14258, '$109.00 '), (14259, '$85.00 '), (14260, '$85.00 '), (14261, ''), (14262, ''), (14263, '$175.00 '), (14264, ''), (14265, ''), (14266, ''), (14267, ''), (14268, ''), (14269, ''), (14270, ''), (14271, ''), (14272, ''), (14273, ''), (14274, ''), (14275, ''), (14276, ''), (14277, ''), (14278, ''), (14279, ''), (14280, ''), (14281, ''), (14282, ''), (14283, ''), (14284, ''), (14285, ''), (14286, ''), (14287, ''), (14288, '$139.00 '), (14289, '$105.00 '), (14290, ''), (14291, ''), (14292, ''), (14293, ''), (14294, ''), (14295, ''), (14296, ''), (14297, ''), (14298, ''), (14299, ''), (14300, ''), (14301, '$144.00 '), (14302, '$449.00 '), (14303, ''), (14304, ''), (14305, ''), (14306, ''), (14307, ''), (14308, ''), (14309, '$359.00 '), (14310, '$204.00 '), (14311, ''), (14312, ''), (14313, ''), (14314, ''), (14315, ''), (14316, '$144.00 '), (14317, ''), (14318, ''), (14319, ''), (14320, ''), (14321, ''), (14322, ''), (14323, ''), (14324, ''), (14325, ''), (14326, ''), (14327, ''), (14328, '$70.00 '), (14329, ''), (14330, ''), (14331, ''), (14332, ''), (14333, ''), (14334, ''), (14335, ''), (14336, ''), (14337, ''), (14338, ''), (14339, ''), (14340, ''), (14341, '$349.00 '), (14342, ''), (14343, ''), (14344, ''), (14345, ''), (14346, ''), (14347, ''), (14348, ''), (14349, ''), (14350, ''), (14351, ''), (14352, ''), (14353, ''), (14354, ''), (14355, ''), (14356, '$359.00 '), (14357, ''), (14358, ''), (14359, ''), (14360, ''), (14361, ''), (14362, ''), (14363, ''), (14364, ''), (14365, ''), (14366, ''), (14367, ''), (14368, ''), (14369, ''), (14370, ''), (14371, ''), (14372, ''), (14373, ''), (14374, ''), (14375, ''), (14376, ''), (14377, ''), (14378, ''), (14379, ''), (14380, ''), (14381, ''), (14382, ''), (14383, ''), (14384, ''), (14385, ''), (14386, ''), (14387, ''), (14388, ''), (14389, '$144.00 '), (14390, '$104.00 '), (14391, '$144.00 '), (14392, ''), (14393, ''), (14394, ''), (14395, '$85.00 '), (14396, '$85.00 '), (14397, ''), (14398, ''), (14399, ''), (14400, ''), (14401, ''), (14402, ''), (14403, ''), (14404, ''), (14405, ''), (14406, ''), (14407, ''), (14408, ''), (14409, ''), (14410, ''), (14411, ''), (14412, ''), (14413, ''), (14414, ''), (14415, ''), (14416, '$144.00 '), (14417, '$144.00 '), (14418, '$209.00 '), (14419, '$144.00 '), (14420, ''), (14421, ''), (14422, ''), (14423, ''), (14424, ''), (14425, ''), (14426, ''), (14427, ''), (14428, ''), (14429, ''), (14430, ''), (14431, '$150.00 '), (14432, ''), (14433, ''), (14434, ''), (14435, ''), (14436, ''), (14437, ''), (14438, ''), (14439, ''), (14440, ''), (14441, ''), (14442, ''), (14443, ''), (14444, ''), (14445, ''), (14446, ''), (14447, ''), (14448, ''), (14449, ''), (14450, ''), (14451, ''), (14452, ''), (14453, ''), (14454, ''), (14455, ''), (14456, ''), (14457, ''), (14458, ''), (14459, ''), (14460, '$350.00 '), (14461, ''), (14462, ''), (14463, ''), (14464, ''), (14465, ''), (14466, ''), (14467, ''), (14468, ''), (14469, ''), (14470, ''), (14471, ''), (14472, ''), (14473, ''), (14474, ''), (14475, ''), (14476, ''), (14477, ''), (14478, ''), (14479, ''), (14480, ''), (14481, '$409.00 '), (14482, ''), (14483, ''), (14484, ''), (14485, '$204.00 '), (14486, ''), (14487, ''), (14488, ''), (14489, ''), (14490, ''), (14491, ''), (14492, ''), (14493, ''), (14494, ''), (14495, ''), (14496, ''), (14497, '$225.35 '), (14498, ''), (14499, ''), (14500, ''), (14501, ''), (14502, ''), (14503, ''), (14504, ''), (14505, '$915.00 '), (14506, ''), (14507, '$915.00 '), (14508, '$225.35 '), (14509, ''), (14510, '$302.75 '), (14511, ''), (14512, ''), (14513, ''), (14514, ''), (14515, ''), (14516, '$570.42 '), (14517, '$570.42 '), (14518, ''), (14519, ''), (14520, ''), (14521, ''), (14522, ''), (14523, '$232.39 '), (14524, ''), (14525, '$255.00 '), (14526, ''), (14527, ''), (14528, ''), (14529, ''), (14530, '$225.35 '), (14531, ''), (14532, ''), (14533, ''), (14534, ''), (14535, ''), (14536, ''), (14537, ''), (14538, ''), (14539, ''), (14540, ''), (14541, ''), (14542, ''), (14543, ''), (14544, ''), (14545, ''), (14546, ''), (14547, ''), (14548, '$390.00 '), (14549, ''), (14550, ''), (14551, ''), (14552, ''), (14553, ''), (14554, ''), (14555, ''), (14556, 'price'), (14557, '$144.00 '), (14558, '$85.00 '), (14559, ''), (14560, 'price'), (14561, ''), (14562, ''), (14563, ''), (14564, ''), (14565, ''), (14566, ''), (14567, ''), (14568, ''), (14569, ''), (14570, ''), (14571, ''), (14572, ''), (14573, ''), (14574, 'in price '), (14575, ''), (14576, '$85.00 '), (14577, '$244.00 '), (14578, ''), (14579, ''), (14580, ''), (14581, ''), (14582, '$159.00 '), (14583, ''), (14584, ''), (14585, ''), (14586, ''), (14587, ''), (14588, ''), (14589, ''), (14590, ''), (14591, ''), (14592, ''), (14593, ''), (14594, ''), (14595, ''), (14596, ''), (14597, ''), (14598, ''), (14599, ''), (14600, ''), (14601, ''), (14602, ''), (14603, ''), (14604, ''), (14605, ''), (14606, ''), (14607, ''), (14608, '$400.00 '), (14609, ''), (14610, ''), (14611, ''), (14612, ''), (14613, ''), (14614, ''), (14615, ''), (14616, ''), (14617, ''), (14618, ''), (14619, ''), (14620, ''), (14621, ''), (14622, ''), (14623, ''), (14624, ''), (14625, ''), (14626, ''), (14627, ''), (14628, ''), (14629, ''), (14630, ''), (14631, ''), (14632, ''), (14633, ''), (14634, ''), (14635, ''), (14636, ''), (14637, ''), (14638, ''), (14639, ''), (14640, ''), (14641, ''), (14642, ''), (14643, ''), (14644, ''), (14645, ''), (14646, ''), (14647, ''), (14648, ''), (14649, ''), (14650, ''), (14651, ''), (14652, ''), (14653, ''), (14654, ''), (14655, ''), (14656, ''), (14657, ''), (14658, ''), (14659, '$114.00 '), (14660, ''), (14661, ''), (14662, ''), (14663, ''), (14664, ''), (14665, ''), (14666, ''), (14667, ''), (14668, ''), (14669, ''), (14670, ''), (14671, ''), (14672, ''), (14673, ''), (14674, '$144.00 '), (14675, '$144.00 '), (14676, ''), (14677, ''), (14678, '$359.00 '), (14679, ''), (14680, ''), (14681, ''), (14682, ''), (14683, ''), (14684, ''), (14685, ''), (14686, '$144.00 '), (14687, ''), (14688, ''), (14689, ''), (14690, ''), (14691, ''), (14692, ''), (14693, '$104.00 '), (14694, '$149.00 '), (14695, 'included'), (14696, '$144.00 '), (14697, '$144.00 '), (14698, ''), (14699, '$144.00 '), (14700, ''), (14701, ''), (14702, ''), (14703, ''), (14704, ''), (14705, ''), (14706, ''), (14707, ''), (14708, ''), (14709, ''), (14710, ''), (14711, ''), (14712, ''), (14713, ''), (14714, ''), (14715, ''), (14716, ''), (14717, ''), (14718, ''), (14719, ''), (14720, ''), (14721, ''), (14722, ''), (14723, ''), (14724, '$110.00 '), (14725, '$120.00 '), (14726, '$495.00 '), (14727, ''), (14728, ''), (14729, ''), (14730, ''), (14731, ''), (14732, ''), (14733, ''), (14734, ''), (14735, ''), (14736, ''), (14737, ''), (14738, ''), (14739, ''), (14740, ''), (14741, ''), (14742, ''), (14743, ''), (14744, ''), (14745, ''), (14746, ''), (14747, ''), (14748, ''), (14749, ''), (14750, ''), (14751, '$339.00 '), (14752, ''), (14753, ''), (14754, ''), (14755, ''), (14756, ''), (14757, ''), (14758, ''), (14759, ''), (14760, '$359.00 '), (14761, '$204.00 '), (14762, ''), (14763, ''), (14764, ''), (14765, ''), (14766, ''), (14767, ''), (14768, ''), (14769, ''), (14770, ''), (14771, ''), (14772, ''), (14773, ''), (14774, ''), (14775, ''), (14776, ''), (14777, ''), (14778, ''), (14779, ''), (14780, ''), (14781, ''), (14782, ''), (14783, ''), (14784, ''), (14785, ''), (14786, ''), (14787, ''), (14788, ''), (14789, ''), (14790, ''), (14791, ''), (14792, ''), (14793, ''), (14794, ''), (14795, ''), (14796, ''), (14797, ''), (14798, ''), (14799, ''), (14800, ''), (14801, ''), (14802, ''), (14803, ''), (14804, ''), (14805, ''), (14806, ''), (14807, ''), (14808, ''), (14809, ''), (14810, ''), (14811, ''), (14812, '$70.00 '), (14813, '$60.00 '), (14814, '$114.00 '), (14815, ''), (14816, ''), (14817, ''), (14818, ''), (14819, ''), (14820, ''), (14821, ''), (14822, ''), (14823, ''), (14824, ''), (14825, ''), (14826, ''), (14827, '$199.00 '), (14828, ''), (14829, ''), (14830, ''), (14831, ''), (14832, ''), (14833, ''), (14834, ''), (14835, ''), (14836, ''), (14837, ''), (14838, ''), (14839, ''), (14840, ''), (14841, ''), (14842, ''), (14843, '$563.38 '), (14844, '$753.52 '), (14845, ''), (14846, ''), (14847, ''), (14848, ''), (14849, ''), (14850, ''), (14851, ''), (14852, ''), (14853, ''), (14854, ''), (14855, ''), (14856, ''), (14857, ''), (14858, ''), (14859, ''), (14860, ''), (14861, ''), (14862, ''), (14863, '$144.00 '), (14864, '$169.00 '), (14865, ''), (14866, ''), (14867, ''), (14868, ''), (14869, ''), (14870, ''), (14871, ''), (14872, ''), (14873, ''), (14874, ''), (14875, ''), (14876, ''), (14877, ''), (14878, ''), (14879, ''), (14880, ''), (14881, ''), (14882, ''), (14883, ''), (14884, ''), (14885, ''), (14886, ''), (14887, ''), (14888, ''), (14889, ''), (14890, ''), (14891, ''), (14892, ''), (14893, ''), (14894, ''), (14895, ''), (14896, ''), (14897, ''), (14898, ''), (14899, ''), (14900, ''), (14901, ''), (14902, ''), (14903, ''), (14904, ''), (14905, ''), (14906, ''), (14907, ''), (14908, '$199.00 '), (14909, ''), (14910, ''), (14911, ''), (14912, ''), (14913, ''), (14914, ''), (14915, ''), (14916, ''), (14917, ''), (14918, ''), (14919, ''), (14920, ''), (14921, ''), (14922, ''), (14923, ''), (14924, ''), (14925, ''), (14926, ''), (14927, '$144.00 '), (14928, ''), (14929, ''), (14930, '$204.00 '), (14931, ''), (14932, ''), (14933, ''), (14934, '$144.00 '), (14935, '$144.00 '), (14936, ''), (14937, ''), (14938, '$204.00 '), (14939, ''), (14940, ''), (14941, '$216.00 '), (14942, ''), (14943, ''), (14944, '$204.00 '), (14945, ''), (14946, ''), (14947, '$204.00 '), (14948, ''), (14949, ''), (14950, ''), (14951, ''), (14952, ''), (14953, ''), (14954, ''), (14955, ''), (14956, ''), (14957, ''), (14958, ''), (14959, ''), (14960, ''), (14961, ''), (14962, ''), (14963, ''), (14964, ''), (14965, ''), (14966, ''), (14967, ''), (14968, ''), (14969, ''), (14970, ''), (14971, ''), (14972, ''), (14973, ''), (14974, ''), (14975, ''), (14976, ''), (14977, ''), (14978, ''), (14979, ''), (14980, ''), (14981, ''), (14982, ''), (14983, ''), (14984, ''), (14985, ''), (14986, ''), (14987, ''), (14988, ''), (14989, ''), (14990, ''), (14991, ''), (14992, '$139.00 '), (14993, ''), (14994, ''), (14995, ''), (14996, ''), (14997, ''), (14998, '$149.00 '), (14999, ''), (15000, ''), (15001, ''), (15002, '$275.00 '), (15003, '$139.00 '), (15004, '$144.00 '), (15005, ''), (15006, ''), (15007, ''), (15008, ''), (15009, ''), (15010, ''), (15011, ''), (15012, ''), (15013, ''), (15014, ''), (15015, ''), (15016, ''), (15017, ''), (15018, ''), (15019, ''), (15020, ''), (15021, ''), (15022, ''), (15023, ''), (15024, ''), (15025, ''), (15026, ''), (15027, ''), (15028, ''), (15029, ''), (15030, ''), (15031, ''), (15032, ''), (15033, ''), (15034, ''), (15035, ''), (15036, ''), (15037, ''), (15038, ''), (15039, ''), (15040, ''), (15041, ''), (15042, ''), (15043, ''), (15044, ''), (15045, ''), (15046, ''), (15047, ''), (15048, ''), (15049, ''), (15050, ''), (15051, '$175.00 '), (15052, '$144.00 '), (15053, ''), (15054, ''), (15055, ''), (15056, ''), (15057, '$99.00 '), (15058, ''), (15059, ''), (15060, '$144.00 '), (15061, ''), (15062, '$144.00 '), (15063, '$144.00 '), (15064, ''), (15065, ''), (15066, ''), (15067, ''), (15068, ''), (15069, ''), (15070, ''), (15071, ''), (15072, ''), (15073, ''), (15074, ''), (15075, ''), (15076, ''), (15077, 'Price'), (15078, ''), (15079, ''), (15080, ''), (15081, ''), (15082, ''), (15083, ''), (15084, ''), (15085, ''), (15086, ''), (15087, ''), (15088, ''), (15089, ''), (15090, ''), (15091, ''), (15092, ''), (15093, ''), (15094, '$114.00 '), (15095, ''), (15096, ''), (15097, ''), (15098, ''), (15099, ''), (15100, ''), (15101, ''), (15102, ''), (15103, ''), (15104, '$300.00 '), (15105, '$264.00 '), (15106, ''), (15107, ''), (15108, ''), (15109, ''), (15110, ''), (15111, ''), (15112, '$144.00 '), (15113, ''), (15114, ''), (15115, ''), (15116, ''), (15117, ''), (15118, ''), (15119, ''), (15120, ''), (15121, 'price'), (15122, ''), (15123, ''), (15124, ''), (15125, ''), (15126, ''), (15127, ''), (15128, ''), (15129, ''), (15130, ''), (15131, ''), (15132, ''), (15133, ''), (15134, ''), (15135, ''), (15136, '$134.00 '), (15137, '$89.00 '), (15138, ''), (15139, ''), (15140, '$359.00 '), (15141, ''), (15142, ''), (15143, ''), (15144, ''), (15145, ''), (15146, ''), (15147, '$85.00 '), (15148, ''), (15149, ''), (15150, ''), (15151, ''), (15152, ''), (15153, ''), (15154, ''), (15155, ''), (15156, ''), (15157, ''), (15158, ''), (15159, ''), (15160, ''), (15161, ''), (15162, ''), (15163, ''), (15164, ''), (15165, ''), (15166, ''), (15167, '$144.00 '), (15168, '$85.00 '), (15169, ''), (15170, ''), (15171, ''), (15172, '$109.00 '), (15173, ''), (15174, ''), (15175, ''), (15176, '$224.00 '), (15177, ''), (15178, ''), (15179, '$154.00 '), (15180, ''), (15181, ''), (15182, ''), (15183, '$79.00 '), (15184, ''), (15185, ''), (15186, ''), (15187, ''), (15188, ''), (15189, ''), (15190, ''), (15191, ''), (15192, ''), (15193, '$144.00 '), (15194, ''), (15195, ''), (15196, ''), (15197, ''), (15198, ''), (15199, ''), (15200, ''), (15201, ''), (15202, ''), (15203, ''), (15204, ''), (15205, ''), (15206, ''), (15207, ''), (15208, ''), (15209, ''), (15210, ''), (15211, ''), (15212, ''), (15213, ''), (15214, ''), (15215, ''), (15216, ''), (15217, ''), (15218, ''), (15219, ''), (15220, ''), (15221, ''), (15222, ''), (15223, ''), (15224, ''), (15225, ''), (15226, ''), (15227, ''), (15228, ''), (15229, ''), (15230, ''), (15231, ''), (15232, ''), (15233, ''), (15234, ''), (15235, ''), (15236, ''), (15237, ''), (15238, ''), (15239, ''), (15240, ''), (15241, ''), (15242, ''), (15243, ''), (15244, ''), (15245, ''), (15246, ''), (15247, ''), (15248, '$229.00 '), (15249, '$149.00 '), (15250, ''), (15251, '$149.00 '), (15252, ''), (15253, ''), (15254, ''), (15255, ''), (15256, '$419.00 '), (15257, ''), (15258, 'Price '), (15259, ''), (15260, ''), (15261, ''), (15262, ''), (15263, ''), (15264, ''), (15265, ''), (15266, ''), (15267, ''), (15268, '$99.00 '), (15269, ''), (15270, ''), (15271, ''), (15272, ''), (15273, ''), (15274, ''), (15275, ''), (15276, ''), (15277, ''), (15278, ''), (15279, ''), (15280, ''), (15281, ''), (15282, ''), (15283, ''), (15284, '$449.00 '), (15285, ''), (15286, ''), (15287, ''), (15288, ''), (15289, '$409.00 '), (15290, ''), (15291, ''), (15292, ''), (15293, ''); INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (15294, ''), (15295, ''), (15296, ''), (15297, ''), (15298, ''), (15299, ''), (15300, ''), (15301, '$349.00 '), (15302, ''), (15303, ''), (15304, ''), (15305, ''), (15306, ''), (15307, ''), (15308, ''), (15309, ''), (15310, ''), (15311, ''), (15312, ''), (15313, ''), (15314, ''), (15315, ''), (15316, ''), (15317, ''), (15318, ''), (15319, ''), (15320, '$204.00 '), (15321, ''), (15322, ''), (15323, ''), (15324, ''), (15325, ''), (15326, ''), (15327, ''), (15328, '$104.00 '), (15329, '$144.00 '), (15330, ''), (15331, ''), (15332, ''), (15333, ''), (15334, ''), (15335, '$169.00 '), (15336, ''), (15337, ''), (15338, '$359.00 '), (15339, '$144.00 '), (15340, '$104.00 '), (15341, ''), (15342, ''), (15343, ''), (15344, ''), (15345, ''), (15346, '$124.00 '), (15347, '$124.00 '), (15348, '$149.00 '), (15349, ''), (15350, ''), (15351, ''), (15352, ''), (15353, ''), (15354, ''), (15355, ''), (15356, ''), (15357, ''), (15358, ''), (15359, ''), (15360, ''), (15361, '$149.00 '), (15362, ''), (15363, ''), (15364, '$144.00 '), (15365, ''), (15366, '$204.00 '), (15367, ''), (15368, ''), (15369, ''), (15370, ''), (15371, ''), (15372, ''), (15373, ''), (15374, '$359.00 '), (15375, ''), (15376, ''), (15377, ''), (15378, ''), (15379, ''), (15380, ''), (15381, ''), (15382, ''), (15383, ''), (15384, ''), (15385, ''), (15386, ''), (15387, ''), (15388, ''), (15389, ''), (15390, ''), (15391, ''), (15392, '$89.00 '), (15393, '$89.00 '), (15394, '$89.00 '), (15395, ''), (15396, ''), (15397, ''), (15398, ''), (15399, ''), (15400, ''), (15401, ''), (15402, ''), (15403, ''), (15404, ''), (15405, ''), (15406, ''), (15407, ''), (15408, '$409.00 '), (15409, ''), (15410, ''), (15411, ''), (15412, ''), (15413, ''), (15414, ''), (15415, ''), (15416, ''), (15417, ''), (15418, ''), (15419, '$144.00 '), (15420, ''), (15421, ''), (15422, ''), (15423, ''), (15424, '$229.00 '), (15425, ''), (15426, ''), (15427, ' '), (15428, ''), (15429, ''), (15430, ' '), (15431, ' '), (15432, ''), (15433, ''), (15434, 'Enerpac RC'), (15435, ''), (15436, 'Eilon Engi'), (15437, ''), (15438, ''), (15439, ''), (15440, ''), (15441, ' '), (15442, ' '), (15443, ''), (15444, ''), (15445, 'Transducer'), (15446, ''), (15447, ''), (15448, 'Send Solic'), (15449, ''), (15450, ''), (15451, ''), (15452, ' *Send'), (15453, ''), (15454, ''), (15455, ''), (15456, ''), (15457, ''), (15458, ''), (15459, ''), (15460, ''), (15461, ''), (15462, ''), (15463, 'Required 1'), (15464, 'ADMET Univ'), (15465, ''), (15466, ''), (15467, ' Se'), (15468, ''), (15469, ''), (15470, ''), (15471, ''), (15472, ''), (15473, ''), (15474, ''), (15475, ''), (15476, ''), (15477, ''), (15478, ''), (15479, ''), (15480, ''), (15481, ' '), (15482, ' '), (15483, ''), (15484, ''), (15485, 'Only need '), (15486, 'CAS Mdl. S'), (15487, 'CDI LG2110'), (15488, ''), (15489, ''), (15490, ''), (15491, ''), (15492, ''), (15493, ''), (15494, 'Marshallto'), (15495, ''), (15496, ''), (15497, ''), (15498, ''), (15499, ''), (15500, ''), (15501, ''), (15502, ''), (15503, ''), (15504, ''), (15505, ''), (15506, ''), (15507, ''), (15508, ''), (15509, ''), (15510, ''), (15511, ''), (15512, ''), (15513, ''), (15514, ''), (15515, ''), (15516, ''), (15517, 'ELE Pressu'), (15518, ''), (15519, ''), (15520, ''), (15521, ''), (15522, ''), (15523, ''), (15524, ''), (15525, ''), (15526, 'Not there '), (15527, ''), (15528, ''), (15529, ''), (15530, ''), (15531, ''), (15532, 'is corrode'), (15533, ''), (15534, 'Humboldt H'), (15535, 'Testmark M'), (15536, ' '), (15537, ' '), (15538, ' '), (15539, ''), (15540, ''), (15541, ''), (15542, '***QA Manu'), (15543, ''), (15544, ''), (15545, ''), (15546, ''), (15547, 'Strainsert'), (15548, ''), (15549, ''), (15550, ''), (15551, 'All Invoic'), (15552, ''), (15553, 'Eilon Engi'), (15554, ''), (15555, ''), (15556, ''), (15557, ''), (15558, ''), (15559, 'Omega LC11'), (15560, ''), (15561, ''), (15562, ''), (15563, ''), (15564, ''), (15565, ''), (15566, ''), (15567, '***Mail ce'), (15568, ''), (15569, ''), (15570, ''), (15571, ''), (15572, ''), (15573, ''), (15574, ' '), (15575, ''), (15576, ''), (15577, 'Soiltest M'), (15578, ''), (15579, ''), (15580, ''), (15581, ''), (15582, ''), (15583, ''), (15584, ''), (15585, ''), (15586, 'Geotac Pre'), (15587, ''), (15588, '***Client '), (15589, ''), (15590, ''), (15591, 'HCS Hydrau'), (15592, 'Eilon Engi'), (15593, 'Springfiel'), (15594, ''), (15595, 'Fowler Mdl'), (15596, ''), (15597, 'VSL Bond T'), (15598, ''), (15599, ''), (15600, ' '), (15601, 'Humboldt H'), (15602, ''), (15603, ''), (15604, ''), (15605, '***Client '), (15606, ''), (15607, ''), (15608, ''), (15609, ''), (15610, ''), (15611, ''), (15612, ''), (15613, ''), (15614, ''), (15615, ''), (15616, ''), (15617, ' '), (15618, ''), (15619, ''), (15620, ''), (15621, ''), (15622, ''), (15623, ''), (15624, ''), (15625, ''), (15626, 'Extra Load'), (15627, ''), (15628, ''), (15629, ''), (15630, ''), (15631, ''), (15632, ''), (15633, ''), (15634, ''), (15635, ''), (15636, ''), (15637, ''), (15638, ''), (15639, ''), (15640, ''), (15641, 'Vega 3B Un'), (15642, ''), (15643, ''), (15644, ''), (15645, ''), (15646, ''), (15647, ''), (15648, ''), (15649, ''), (15650, ''), (15651, ''), (15652, ''), (15653, ''), (15654, ''), (15655, ''), (15656, ''), (15657, 'Dixon GL 3'), (15658, 'Marsh Gaug'), (15659, ''), (15660, ''), (15661, 'Ashcroft P'), (15662, '**E-Mail C'), (15663, ''), (15664, ' '), (15665, ''), (15666, ' w/'), (15667, ''), (15668, ''), (15669, 'Satec B3M '), (15670, ''), (15671, ''), (15672, ''), (15673, 'Forney F-2'), (15674, ''), (15675, ''), (15676, ''), (15677, ''), (15678, ''), (15679, ''), (15680, ''), (15681, ''), (15682, ''), (15683, 'Forney QC-'), (15684, 'Send Certs'), (15685, ''), (15686, ''), (15687, 'Enerpac RC'), (15688, ' '), (15689, ''), (15690, ''), (15691, ''), (15692, ''), (15693, ''), (15694, ''), (15695, ''), (15696, ''), (15697, ''), (15698, ''), (15699, ''), (15700, 'Ohaus Cham'), (15701, ''), (15702, ''), (15703, 'Hercules-T'), (15704, ''), (15705, ' \"***Ti'), (15706, ''), (15707, ''), (15708, ''), (15709, ''), (15710, 'Imada Spri'), (15711, ''), (15712, ' '), (15713, ''), (15714, ''), (15715, ''), (15716, ''), (15717, ''), (15718, ''), (15719, ''), (15720, ''), (15721, ''), (15722, 'Soiltest C'), (15723, ''), (15724, 'Adams ACB '), (15725, ''), (15726, 'Intell-Lab'), (15727, ' ***'), (15728, ''), (15729, 'Sinco 5165'), (15730, ''), (15731, ''), (15732, ''), (15733, 'Testmark C'), (15734, 'Starrett D'), (15735, ''), (15736, ''), (15737, ''), (15738, ''), (15739, ''), (15740, ''), (15741, ''), (15742, ''), (15743, ''), (15744, ''), (15745, ''), (15746, 'Federal Di'), (15747, ''), (15748, '***ISO Req'), (15749, ''), (15750, ''), (15751, ''), (15752, 'Send Certs'), (15753, ''), (15754, ''), (15755, 'Dynalink M'), (15756, ''), (15757, ''), (15758, 'Send Certs'), (15759, ''), (15760, 'Harrington'), (15761, 'Send Certs'), (15762, 'Send Certs'), (15763, ''), (15764, ' '), (15765, ''), (15766, ''), (15767, 'Wika Gauge'), (15768, ''), (15769, ''), (15770, ''), (15771, ''), (15772, ''), (15773, ''), (15774, ''), (15775, ''), (15776, ''), (15777, ''), (15778, ''), (15779, ''), (15780, ''), (15781, ''), (15782, ''), (15783, ''), (15784, ''), (15785, ''), (15786, ''), (15787, ''), (15788, ''), (15789, ''), (15790, 'Proving Ri'), (15791, ''), (15792, ''), (15793, ''), (15794, ''), (15795, ''), (15796, ''), (15797, ''), (15798, 'would like'), (15799, ''), (15800, ''), (15801, ''), (15802, ''), (15803, ''), (15804, ''), (15805, ''), (15806, ''), (15807, ''), (15808, ''), (15809, ''), (15810, ' '), (15811, 'Send Certs'), (15812, ''), (15813, ''), (15814, ''), (15815, ''), (15816, 'Wika Vaccu'), (15817, ''), (15818, ''), (15819, ''), (15820, ' '), (15821, ''), (15822, ''), (15823, ''), (15824, ''), (15825, ''), (15826, ' '), (15827, ''), (15828, ''), (15829, ''), (15830, ''), (15831, 'Eilon Engi'), (15832, ''), (15833, ''), (15834, ''), (15835, ''), (15836, ''), (15837, ''), (15838, ''), (15839, ''), (15840, ''), (15841, ''), (15842, ''), (15843, ''), (15844, 'Ram Pack '), (15845, ''), (15846, ''), (15847, ''), (15848, ''), (15849, ''), (15850, ' '), (15851, ''), (15852, ''), (15853, ' '), (15854, 'GeoJace Di'), (15855, ''), (15856, ''), (15857, ' '), (15858, ''), (15859, ''), (15860, ''), (15861, ' '), (15862, ''), (15863, ''), (15864, ''), (15865, ''), (15866, ''), (15867, ''), (15868, ''), (15869, ''), (15870, ''), (15871, 'BC Ames Di'), (15872, 'Soiltest A'), (15873, ''), (15874, 'Ohaus Scal'), (15875, 'TIF Electr'), (15876, 'TIF Mdl. 9'), (15877, ''), (15878, ''), (15879, ''), (15880, ''), (15881, ''), (15882, ''), (15883, ''), (15884, ''), (15885, ''), (15886, ''), (15887, ''), (15888, ''), (15889, ''), (15890, '***MUST HA'), (15891, ''), (15892, ' '), (15893, ''), (15894, ''), (15895, ''), (15896, ''), (15897, ''), (15898, ''), (15899, ''), (15900, ''), (15901, ''), (15902, 'Adam CPW P'), (15903, ''), (15904, ' '), (15905, ''), (15906, ''), (15907, ''), (15908, ''), (15909, 'Mail Certs'), (15910, ' '), (15911, ''), (15912, ''), (15913, ''), (15914, 'Humboldt H'), (15915, ''), (15916, ' '), (15917, ''), (15918, 'Satec Defl'), (15919, 'Soiltest C'), (15920, 'Humboldt D'), (15921, 'MA Test A1'), (15922, 'Goudsche M'), (15923, 'On Certs p'), (15924, ''), (15925, ''), (15926, ' '), (15927, ''), (15928, ''), (15929, ''), (15930, ''), (15931, ''), (15932, ''), (15933, ''), (15934, ''), (15935, ''), (15936, ''), (15937, ''), (15938, ''), (15939, ''), (15940, ''), (15941, ''), (15942, 'Hogentogle'), (15943, 'Need Certi'), (15944, ''), (15945, 'Hyvac 9110'), (15946, ''), (15947, ''), (15948, '***S/N 013'), (15949, ''), (15950, ''), (15951, ''), (15952, ''), (15953, ''), (15954, '*** Paying'), (15955, ''), (15956, ''), (15957, ''), (15958, ''), (15959, ''), (15960, ''), (15961, ''), (15962, ''), (15963, ''), (15964, ''), (15965, ''), (15966, ''), (15967, 'AND FG-60K'), (15968, ''), (15969, ''), (15970, ''), (15971, 'Pine Instr'), (15972, ''), (15973, ''), (15974, 'Lan CT300-'), (15975, ''), (15976, ''), (15977, ''), (15978, ' '), (15979, 'AND EK-200'), (15980, ''), (15981, ''), (15982, ''), (15983, ''), (15984, ''), (15985, ''), (15986, ''), (15987, ''), (15988, ''), (15989, ' '), (15990, ''), (15991, ''), (15992, 'Certs: N'), (15993, ''), (15994, ''), (15995, ''), (15996, 'Ohaus Mode'), (15997, ''), (15998, ''), (15999, ''), (16000, '***ISO Req'), (16001, ''), (16002, ''), (16003, ''), (16004, ''), (16005, ''), (16006, ''), (16007, ''), (16008, ''), (16009, ''), (16010, ''), (16011, ' '), (16012, 'Bynum Pres'), (16013, ''), (16014, ''), (16015, ''), (16016, ''), (16017, '*10/13 Mac'), (16018, ''), (16019, 'Proving Ri'), (16020, ''), (16021, ''), (16022, ''), (16023, ''), (16024, ''), (16025, ' '), (16026, ''), (16027, ''), (16028, ''), (16029, ''), (16030, ''), (16031, ' '), (16032, ''), (16033, 'Forney F-2'), (16034, ''), (16035, ''), (16036, ''), (16037, ''), (16038, ''), (16039, 'Send Certs'), (16040, ''), (16041, 'Pressure G'), (16042, ''), (16043, ''), (16044, ''), (16045, '***MUST HA'), (16046, ''), (16047, ''), (16048, ''), (16049, ''), (16050, ''), (16051, ''), (16052, ''), (16053, ' '), (16054, ''), (16055, ''), (16056, ''), (16057, ''), (16058, ''), (16059, ''), (16060, ''), (16061, 'SPI Calipe'), (16062, ''), (16063, ' '), (16064, ' '), (16065, ''), (16066, ' '), (16067, ' '), (16068, ''), (16069, 'Forney F-5'), (16070, ' '), (16071, ''), (16072, ''), (16073, ''), (16074, ''), (16075, ''), (16076, ''), (16077, ''), (16078, ''), (16079, ''), (16080, ''), (16081, ''), (16082, ''), (16083, ''), (16084, ''), (16085, ''), (16086, 'Epsilon Ex'), (16087, ' ***S/N 13'), (16088, ''), (16089, ''), (16090, 'Forney LT-'), (16091, ''), (16092, ''), (16093, ''), (16094, ''), (16095, ' '), (16096, ''), (16097, ''), (16098, 'HCS LC-40 '), (16099, ''), (16100, 'Mail Certs'), (16101, ''), (16102, ''), (16103, ''), (16104, ''), (16105, ''), (16106, ''), (16107, 'Hilti Pull'), (16108, 'HCS LC-40 '), (16109, ''), (16110, ''), (16111, ''), (16112, ''), (16113, ''), (16114, ''), (16115, ''), (16116, 'Hilti Pull'), (16117, ''), (16118, ''), (16119, ''), (16120, 'Soiltest U'), (16121, 'Acculab Sc'), (16122, ''), (16123, ''), (16124, ''), (16125, ''), (16126, ' ProRated '), (16127, ''), (16128, ''), (16129, ''), (16130, ''), (16131, ''), (16132, ''), (16133, ''), (16134, ''), (16135, ' '), (16136, ''), (16137, ''), (16138, 'Enerpac Ra'), (16139, ''), (16140, ''), (16141, ' '), (16142, ' '), (16143, ''), (16144, ''), (16145, ''), (16146, ''), (16147, ''), (16148, ''), (16149, ''), (16150, ''), (16151, ''), (16152, ''), (16153, ''), (16154, ''), (16155, ''), (16156, ''), (16157, ''), (16158, 'Stress Con'), (16159, ''), (16160, ' '), (16161, ''), (16162, 'As Per Bet'), (16163, ''), (16164, ''), (16165, ''), (16166, ' '), (16167, ''), (16168, ''), (16169, 'Instron TT'), (16170, ''), (16171, ''), (16172, ''), (16173, ''), (16174, ''), (16175, '**Do not c'), (16176, ''), (16177, ''), (16178, ''), (16179, ''), (16180, ''), (16181, ''), (16182, ''), (16183, 'Humboldt H'), (16184, ''), (16185, ''), (16186, 'Forney FT-'), (16187, 'Mike Zaval'), (16188, ''), (16189, 'Put month,'), (16190, ''), (16191, ''), (16192, 'Setra S1-4'), (16193, ''), (16194, 'with Load '), (16195, ' with '), (16196, ''), (16197, ''), (16198, ''), (16199, ''), (16200, ''), (16201, ''), (16202, '****Send c'), (16203, ' '), (16204, ' with '), (16205, ' '), (16206, ''), (16207, ''), (16208, 'Soiltest C'), (16209, ''), (16210, 'Need 1K ce'), (16211, ''), (16212, ''), (16213, ''), (16214, ''), (16215, ''), (16216, ''), (16217, ''), (16218, ''), (16219, ''), (16220, ''), (16221, ' '), (16222, ''), (16223, 'Send Certs'), (16224, ''), (16225, ''), (16226, ''), (16227, ''), (16228, ''), (16229, ''), (16230, ''), (16231, ''), (16232, ''), (16233, ''), (16234, ''), (16235, ''), (16236, ''), (16237, 'FORWARD TH'), (16238, ''), (16239, ''), (16240, ' '), (16241, 'ATS Model '), (16242, ''), (16243, ''), (16244, ' '), (16245, ''), (16246, ''), (16247, ''), (16248, ''), (16249, ''), (16250, ''), (16251, ''), (16252, 'Eilon Engi'), (16253, ''), (16254, ''), (16255, 'Eilon Engi'), (16256, ''), (16257, 'Wika Press'), (16258, ''), (16259, '**WHEN DOI'), (16260, ''), (16261, ' '), (16262, ' '), (16263, ''), (16264, ''), (16265, ''), (16266, ''), (16267, ' '), (16268, 'McDaniel P'), (16269, ''), (16270, ''), (16271, ''), (16272, ''), (16273, ''), (16274, ''), (16275, ''), (16276, ''), (16277, ''), (16278, ''), (16279, ''), (16280, ' '), (16281, 'Powerteam '), (16282, ''), (16283, ''), (16284, ''), (16285, ' '), (16286, ''), (16287, ''), (16288, ''), (16289, ''), (16290, ''), (16291, ''), (16292, ''), (16293, ''), (16294, ''), (16295, ''), (16296, ''), (16297, '***Get che'), (16298, ''), (16299, 'BK Pore Pr'), (16300, 'Send Certs'), (16301, ''), (16302, ''), (16303, ''), (16304, ''), (16305, ''), (16306, ''), (16307, ''), (16308, ''), (16309, ''), (16310, ''), (16311, ''), (16312, ''), (16313, ''), (16314, ''), (16315, ' '), (16316, ' '), (16317, ''), (16318, 'Hilti Pull'), (16319, ''), (16320, ''), (16321, ''), (16322, 'Forney FT-'), (16323, ''), (16324, 'have a PO#'), (16325, ''), (16326, ''), (16327, ''), (16328, ''), (16329, ''), (16330, '***Must ha'), (16331, 'Tinius Ols'), (16332, ''), (16333, ' '), (16334, ''), (16335, ''), (16336, ' '), (16337, ''), (16338, ''), (16339, ''), (16340, ''), (16341, ''), (16342, ''), (16343, ''), (16344, ''), (16345, 'ELE Single'), (16346, ' '), (16347, 'ELE Dial I'), (16348, 'Durham Geo'), (16349, ''), (16350, ''), (16351, ''), (16352, ''), (16353, 'Send Certs'), (16354, ''), (16355, ''), (16356, ' '), (16357, 'LVDT (ID#G'), (16358, ' '), (16359, 'Geojac Con'), (16360, 'Forney F-3'), (16361, 'CDI BG-172'), (16362, ''), (16363, ''), (16364, ''), (16365, ''), (16366, ''), (16367, ''), (16368, ''), (16369, ''), (16370, ''), (16371, ''), (16372, ' '), (16373, ''), (16374, ''), (16375, ''), (16376, ''), (16377, 'Soiltest U'), (16378, ''), (16379, 'LS Starret'), (16380, ' '), (16381, 'S/N 7125 S'), (16382, ''), (16383, ''), (16384, ''), (16385, ''), (16386, ''), (16387, ''), (16388, ''), (16389, 'Ashcroft P'), (16390, ''), (16391, ''), (16392, ''), (16393, 'Hilti Pull'), (16394, ''), (16395, ''), (16396, ''), (16397, 'Soiltest D'), (16398, ''), (16399, ''), (16400, ''), (16401, ''), (16402, ''), (16403, ''), (16404, ''), (16405, ''), (16406, ''), (16407, ''), (16408, ''), (16409, ''), (16410, ''), (16411, ''), (16412, ''), (16413, ''), (16414, '**** MAIL '), (16415, ''), (16416, ''), (16417, ''), (16418, 'Micro Meas'), (16419, ''), (16420, ''), (16421, ''), (16422, 'Pine Instr'), (16423, ''), (16424, ' '), (16425, ''), (16426, ''), (16427, ''), (16428, ''), (16429, 'All Invoic'), (16430, 'Brainard K'), (16431, ''), (16432, ''), (16433, ''), (16434, '****Needs '), (16435, ''), (16436, 'Testmark C'), (16437, 'Simplex St'), (16438, 'Simplex Ra'), (16439, 'E-Mail Cer'), (16440, ' '), (16441, 'HCS Hydral'), (16442, 'Controls D'), (16443, ' '), (16444, 'S/N 386191'), (16445, '**Equipmen'), (16446, ''), (16447, ''), (16448, 'Send Certs'), (16449, ' w/Loa'), (16450, ''), (16451, 'Copy of in'), (16452, 'Stress Con'), (16453, 'Get a PO# '), (16454, ''), (16455, ''), (16456, 'Stressing '), (16457, ''), (16458, ''), (16459, ''), (16460, ''), (16461, ''), (16462, ' w/ Humb'), (16463, 'Brainard K'), (16464, 'Automatic '), (16465, 'Brainard-K'), (16466, ''), (16467, ''), (16468, 'Brainard K'), (16469, 'Brainard K'), (16470, 'Brainard K'), (16471, ''), (16472, ''), (16473, ''), (16474, 'Total Comp'), (16475, ''), (16476, ''), (16477, ''), (16478, ''), (16479, ''), (16480, 'HMA Lab Su'), (16481, ''), (16482, ''), (16483, ''), (16484, ''), (16485, ''), (16486, ''), (16487, '***ISO REQ'), (16488, ''), (16489, ''), (16490, ''), (16491, ''), (16492, ''), (16493, ''), (16494, ''), (16495, ''), (16496, ''), (16497, ''), (16498, ''), (16499, ''), (16500, ''), (16501, ''), (16502, 'Chatillon '), (16503, 'Chatillon '), (16504, ''), (16505, ''), (16506, ''), (16507, ''), (16508, ''), (16509, ''), (16510, ''), (16511, ''), (16512, ''), (16513, ''), (16514, ''), (16515, ''), (16516, ''), (16517, ''), (16518, ''), (16519, ''), (16520, ''), (16521, ''), (16522, ''), (16523, ''), (16524, ''), (16525, ''), (16526, ''), (16527, ''), (16528, ''), (16529, ''), (16530, ''), (16531, ''), (16532, ''), (16533, ''), (16534, ''), (16535, ''), (16536, ''), (16537, ''), (16538, ''), (16539, ''), (16540, ''), (16541, ''), (16542, ''), (16543, 'Artech CBR'), (16544, ''), (16545, ''), (16546, ''), (16547, ''), (16548, ''), (16549, ''), (16550, 'Durham Geo'), (16551, ''), (16552, ''), (16553, ''), (16554, ''), (16555, ''), (16556, ''), (16557, ''), (16558, ''), (16559, ''), (16560, ''), (16561, ''), (16562, ''), (16563, ''), (16564, ''), (16565, ''), (16566, 'Wegener Ut'), (16567, ''), (16568, 'Karol Warn'), (16569, ''), (16570, ''), (16571, ''), (16572, ''), (16573, 'Karol Warn'), (16574, ''), (16575, ''), (16576, '***ISO Req'), (16577, ''), (16578, ''), (16579, ''), (16580, ''), (16581, ''), (16582, ''), (16583, ''), (16584, 'Soiltest U'), (16585, ''), (16586, ''), (16587, 'Soiltest V'), (16588, ''), (16589, ''), (16590, ''), (16591, ''), (16592, ''), (16593, ''), (16594, ''), (16595, ''), (16596, ''), (16597, ''), (16598, ''), (16599, ''), (16600, ''), (16601, ''), (16602, ''), (16603, ''), (16604, ''), (16605, ''), (16606, ''), (16607, ''), (16608, ''), (16609, ''), (16610, ''), (16611, ''), (16612, ''), (16613, ''), (16614, ''), (16615, ''), (16616, ''), (16617, 'LSC Transd'), (16618, ''), (16619, ''), (16620, ''), (16621, ''), (16622, ''), (16623, ''), (16624, ''), (16625, ''), (16626, ''), (16627, ''), (16628, ''), (16629, ''), (16630, ''), (16631, ''), (16632, ''), (16633, ''), (16634, 'Humboldt D'), (16635, ''), (16636, ''), (16637, ''), (16638, 'Includes A'), (16639, 'Includes A'), (16640, 'Weksler W-'), (16641, ''), (16642, ''), (16643, ''), (16644, ''), (16645, ''), (16646, ''), (16647, ''), (16648, ''), (16649, ''), (16650, ''), (16651, ''), (16652, ''), (16653, ''), (16654, ''), (16655, ''), (16656, ''), (16657, ''), (16658, ''), (16659, ''), (16660, ''), (16661, ''), (16662, ''), (16663, ''), (16664, ''), (16665, ''), (16666, ''), (16667, ''), (16668, ''), (16669, ''), (16670, ''), (16671, ' '), (16672, ''), (16673, ''), (16674, ''), (16675, ''), (16676, ''), (16677, ''), (16678, ''), (16679, ' '), (16680, ''), (16681, ''), (16682, ''), (16683, ''), (16684, ''), (16685, ''), (16686, ''), (16687, ''), (16688, ''), (16689, '*** ISO RE'), (16690, ''), (16691, ''), (16692, ''), (16693, ''), (16694, ''), (16695, ''), (16696, ''), (16697, ''), (16698, ''), (16699, 'MUST TAKE '), (16700, ''), (16701, ''), (16702, 'Humboldt H'), (16703, ''), (16704, 'Durham Geo'), (16705, 'Powerteam '), (16706, ''), (16707, ''), (16708, ''), (16709, ''), (16710, 'Rainhart S'), (16711, ''), (16712, ''), (16713, ''), (16714, ' w/'), (16715, 'ELE Tri-Fl'), (16716, ''), (16717, ''), (16718, ''), (16719, ''), (16720, 'ELE 1155B0'), (16721, ''), (16722, ''), (16723, ''), (16724, ''), (16725, ' '), (16726, ''), (16727, 'Send Certs'), (16728, 'Send Certs'), (16729, ''), (16730, ''), (16731, ''), (16732, ''), (16733, ''), (16734, ''), (16735, ''), (16736, ''), (16737, ''), (16738, ''), (16739, ''), (16740, ''), (16741, 'ELE 35-147'), (16742, ''), (16743, ''), (16744, ''), (16745, ''), (16746, ''), (16747, ''), (16748, ''), (16749, ''), (16750, ''), (16751, ' with '), (16752, ''), (16753, ''), (16754, ''), (16755, ''), (16756, ''), (16757, ''), (16758, ''), (16759, ''), (16760, ''), (16761, ''), (16762, ''), (16763, ''), (16764, ''), (16765, ''), (16766, ''), (16767, ''), (16768, ''), (16769, ''), (16770, ''), (16771, ''), (16772, ''), (16773, ''), (16774, ''), (16775, ''), (16776, ''), (16777, ''), (16778, ''), (16779, ''), (16780, ''), (16781, ''), (16782, ''), (16783, ''), (16784, ''), (16785, ''), (16786, ''), (16787, ''), (16788, ''), (16789, ''), (16790, ''), (16791, ''), (16792, ' '), (16793, ''), (16794, ''), (16795, ''), (16796, ''), (16797, ''), (16798, ''), (16799, '*** Paying'), (16800, ''), (16801, ''), (16802, ''), (16803, ''), (16804, ''), (16805, ''), (16806, ''), (16807, ''), (16808, ''), (16809, ''), (16810, ''), (16811, ''), (16812, 'Eilon Engi'), (16813, 'Eilon Engi'), (16814, ''), (16815, ''), (16816, 'Wykeham Fa'), (16817, ''), (16818, 'HCS Model '), (16819, 'Brainard-K'), (16820, ''), (16821, ''), (16822, ''), (16823, '*** ISO Re'), (16824, '*** ISO Re'), (16825, ''), (16826, ''), (16827, 'HCS Hydrau'), (16828, ''), (16829, ' '), (16830, 'Adam CBK70'), (16831, 'Adam ADK-2'), (16832, ''), (16833, ''), (16834, 'Eilon Engi'), (16835, ''), (16836, ''), (16837, ''), (16838, ''), (16839, ''), (16840, ''), (16841, ''), (16842, ''), (16843, ''), (16844, ''), (16845, ''), (16846, ''), (16847, ''), (16848, ''), (16849, ''), (16850, ''), (16851, ''), (16852, ''), (16853, ''), (16854, ''), (16855, ''), (16856, ''), (16857, ''), (16858, ''), (16859, 'Simms P-30'), (16860, 'Strainsens'), (16861, ''), (16862, ''), (16863, ''), (16864, ''), (16865, ''), (16866, ''), (16867, ''), (16868, ''), (16869, ''), (16870, 'Brainard-K'), (16871, ''), (16872, 'PSI Pressu'), (16873, 'ELE Trifle'), (16874, ''), (16875, ''), (16876, ''), (16877, ''), (16878, ''), (16879, ''), (16880, 'Com-Ten To'), (16881, 'Elgood May'), (16882, ''), (16883, ''), (16884, ''), (16885, ''), (16886, ''), (16887, ' with '), (16888, ''), (16889, ''), (16890, ''), (16891, ''), (16892, ''), (16893, ''), (16894, ''), (16895, ''), (16896, ''), (16897, ''), (16898, ''), (16899, ''), (16900, ''), (16901, ''), (16902, ''), (16903, ''), (16904, ''), (16905, ''), (16906, ''), (16907, ''), (16908, ''), (16909, ''), (16910, ''), (16911, ''), (16912, 'Soiltest S'), (16913, ''), (16914, ''), (16915, ''), (16916, ''), (16917, ''), (16918, ''), (16919, ''), (16920, ''), (16921, ''), (16922, ''), (16923, ''), (16924, ''), (16925, ''), (16926, ''), (16927, ''), (16928, ''), (16929, ''), (16930, '***SPECIAL'), (16931, ''), (16932, ''), (16933, ''), (16934, ''), (16935, ''), (16936, ''), (16937, ''), (16938, ''), (16939, ''), (16940, 'Must be a '), (16941, '***Make ar'), (16942, 'the Seapla'), (16943, 'Must be a '), (16944, ''), (16945, ''), (16946, ''), (16947, ''), (16948, '407-251-11'), (16949, ' '), (16950, ' '), (16951, ''), (16952, ''), (16953, ''), (16954, ''), (16955, ''), (16956, ''), (16957, ''), (16958, 'Geotest Md'), (16959, ''), (16960, 'Geotac Pre'), (16961, 'Loadstar S'), (16962, 'Humboldt B'), (16963, ''), (16964, ''), (16965, ''), (16966, 'Acculab VI'), (16967, ''), (16968, ''), (16969, ''), (16970, ''), (16971, ''), (16972, ''), (16973, 'AND FG-150'), (16974, 'Send Certs'), (16975, ''), (16976, 'Send copy '), (16977, ''), (16978, ''), (16979, ''), (16980, '***Certifi'), (16981, ''), (16982, 'Tinius Ols'), (16983, ''), (16984, ''), (16985, ''), (16986, ''), (16987, 'Brainard K'), (16988, 'Braiard Ki'), (16989, ''), (16990, ''), (16991, ''), (16992, ''), (16993, ''), (16994, ''), (16995, ''), (16996, ''), (16997, ''), (16998, ''), (16999, ''), (17000, ''), (17001, ''), (17002, ''), (17003, ''), (17004, ''), (17005, ''), (17006, ''), (17007, ''), (17008, ''), (17009, ''), (17010, ''), (17011, ''), (17012, ''), (17013, ''), (17014, ''), (17015, ''), (17016, ''), (17017, ''), (17018, ''), (17019, ''), (17020, ''), (17021, ''), (17022, ''), (17023, ''), (17024, ''), (17025, ''), (17026, ''), (17027, ''), (17028, ''), (17029, ''), (17030, ''), (17031, ' with '), (17032, ''), (17033, ''), (17034, ''), (17035, ''), (17036, ''), (17037, ''), (17038, ''), (17039, ''), (17040, ''), (17041, ''), (17042, ''), (17043, 'Enerpac Lo'), (17044, ''), (17045, '***ISO Req'), (17046, ''), (17047, ''), (17048, ''), (17049, ''), (17050, ''), (17051, ''), (17052, ''), (17053, ''), (17054, ''), (17055, ''), (17056, ''), (17057, ''), (17058, ''), (17059, ''), (17060, ''), (17061, ''), (17062, ''), (17063, ''), (17064, ''), (17065, ''), (17066, ' *grap'), (17067, ''), (17068, 'ELE/Soilte'), (17069, ''), (17070, ''), (17071, ''), (17072, ''), (17073, ''), (17074, ''), (17075, ''), (17076, 'Pine Instr'), (17077, ''), (17078, 'Humboldt M'), (17079, 'ELE Marsha'), (17080, ''), (17081, 'Soiltest C'), (17082, '1.16 degre'), (17083, 'Soiltest U'), (17084, ''), (17085, ''), (17086, ''), (17087, ''), (17088, 'ELE Soilte'), (17089, ''), (17090, ''), (17091, ''), (17092, ''), (17093, ''), (17094, 'Artech S t'), (17095, ''), (17096, 'ELE Single'), (17097, ' '), (17098, ''), (17099, ''), (17100, ''), (17101, 'Spare 2% G'), (17102, ''), (17103, ''), (17104, ''), (17105, ''), (17106, ''), (17107, ''), (17108, ''), (17109, ''), (17110, ''), (17111, ''), (17112, ''), (17113, ''), (17114, ''), (17115, ''), (17116, ''), (17117, ''), (17118, ''), (17119, ''), (17120, ''), (17121, ''), (17122, ''), (17123, ''), (17124, ''), (17125, ''), (17126, ''), (17127, ''), (17128, 'Rainhart B'), (17129, '*** High R'), (17130, ''), (17131, 'Karol Warn'), (17132, ''), (17133, ''), (17134, 'and you ar'), (17135, ''), (17136, ' LoTes Mod'), (17137, ''), (17138, 'Call Rob w'), (17139, ''), (17140, ''), (17141, ''), (17142, ''), (17143, ''), (17144, ' '), (17145, 'MUST RECEI'), (17146, ''), (17147, 'Detecto El'), (17148, ''), (17149, ''), (17150, ''), (17151, ' '), (17152, ''), (17153, ' '), (17154, ''), (17155, ''), (17156, ''), (17157, ''), (17158, 'Not done/b'), (17159, ''), (17160, ''), (17161, ''), (17162, ''), (17163, ''), (17164, ''), (17165, ''), (17166, ''), (17167, ''), (17168, ''), (17169, ''), (17170, 'MTS 1 Mac'), (17171, ''), (17172, ''), (17173, ''), (17174, ''), (17175, ''), (17176, ''), (17177, ''), (17178, ''), (17179, 'Geo-Test P'), (17180, ''), (17181, ''), (17182, ''), (17183, ''), (17184, ''), (17185, ''), (17186, ''), (17187, ''), (17188, 'Send Certs'), (17189, ''), (17190, ''), (17191, ''), (17192, ''), (17193, ''), (17194, ''), (17195, ''), (17196, ''), (17197, ''), (17198, ''), (17199, ''), (17200, ''), (17201, ''), (17202, ''), (17203, ''), (17204, ''), (17205, ''), (17206, ''), (17207, ''), (17208, ''), (17209, ''), (17210, ''), (17211, ''), (17212, ''), (17213, ''), (17214, ''), (17215, ''), (17216, ''), (17217, ''), (17218, ''), (17219, ''), (17220, ''), (17221, ''), (17222, ''), (17223, ''), (17224, ''), (17225, ''), (17226, ''), (17227, ''), (17228, ''), (17229, ''), (17230, ''), (17231, ''), (17232, ''), (17233, ''), (17234, ''), (17235, ''), (17236, ''), (17237, ''), (17238, ''), (17239, ''), (17240, ''), (17241, ''), (17242, ''), (17243, ''), (17244, ''), (17245, ''), (17246, 'Conbel Pre'), (17247, 'Send Cert'), (17248, ''), (17249, 'Ohaus Adve'), (17250, ''), (17251, ''), (17252, ''), (17253, 'Briefcase '), (17254, ''), (17255, ''), (17256, ''), (17257, 'Soiltest U'), (17258, ''), (17259, ''), (17260, ''), (17261, 'Mail Certs'), (17262, ''), (17263, ''), (17264, 'Humboldt H'), (17265, ''), (17266, ''), (17267, ''), (17268, ''), (17269, ''), (17270, 'Dail Indic'), (17271, ''), (17272, ''), (17273, '*MUST CALL'), (17274, ''), (17275, ''), (17276, ''), (17277, ''), (17278, ''), (17279, ''), (17280, ''), (17281, ''), (17282, ''), (17283, ''), (17284, ''), (17285, ''), (17286, ''), (17287, ''), (17288, ''), (17289, ''), (17290, ''), (17291, ''), (17292, ''), (17293, ''), (17294, ''), (17295, ''), (17296, ''), (17297, 'Range Card'), (17298, ''), (17299, ''), (17300, ''), (17301, ''), (17302, ''), (17303, ''), (17304, ''), (17305, ''), (17306, ''), (17307, ''), (17308, ''), (17309, ''), (17310, ''), (17311, 'Send Certs'), (17312, ''), (17313, ''), (17314, ''), (17315, ''), (17316, ''), (17317, ''), (17318, ''), (17319, ''), (17320, ''), (17321, ''), (17322, ''), (17323, ''), (17324, ''), (17325, ''), (17326, ''), (17327, ''), (17328, ''), (17329, ''), (17330, ''), (17331, 'Trautwein '), (17332, ''), (17333, ''), (17334, ''), (17335, ''), (17336, ''), (17337, ''), (17338, ''), (17339, ''), (17340, ''), (17341, ''), (17342, 'Soiltest C'), (17343, ''), (17344, ''), (17345, ''), (17346, ''), (17347, ''), (17348, 'Call Bobby'), (17349, ''), (17350, 'Hogentogle'), (17351, ''), (17352, ''), (17353, ''), (17354, ''), (17355, ''), (17356, ''), (17357, 'Soiltest M'), (17358, ''), (17359, ''), (17360, ''), (17361, ' with '), (17362, ''), (17363, ''), (17364, ''), (17365, ''), (17366, '***ISO REQ'), (17367, ''), (17368, ''), (17369, ''), (17370, ''), (17371, ''), (17372, ''), (17373, ''), (17374, ''), (17375, ''), (17376, ''), (17377, ''), (17378, ''), (17379, ''), (17380, ''), (17381, ''), (17382, ''), (17383, 'Concrete A'), (17384, 'Ashcroft G'), (17385, 'TMI Air Me'), (17386, ''), (17387, ''), (17388, ''), (17389, ''), (17390, ''), (17391, ''), (17392, ''), (17393, ''), (17394, ''), (17395, ''), (17396, ''), (17397, ''), (17398, ''), (17399, ''), (17400, ''), (17401, ''), (17402, ''), (17403, ''), (17404, ''), (17405, ''), (17406, ''), (17407, ''), (17408, ''), (17409, ''), (17410, ''), (17411, ''), (17412, ''), (17413, ''), (17414, 'Soiltest C'), (17415, ''), (17416, ''), (17417, ''), (17418, 'Soiltest C'), (17419, ''), (17420, ''), (17421, ''), (17422, ''), (17423, ''), (17424, ''), (17425, ''), (17426, '***Get che'), (17427, ''), (17428, ''), (17429, ''), (17430, ''), (17431, '**All invo'), (17432, 'person ord'), (17433, '***NO TECH'), (17434, 'Norco 9110'), (17435, ''), (17436, ''), (17437, ''), (17438, ''), (17439, ''), (17440, ''), (17441, ''), (17442, ''), (17443, ''), (17444, ''), (17445, ''), (17446, ''), (17447, ''), (17448, ''), (17449, ''), (17450, ''), (17451, ''), (17452, ''), (17453, ''), (17454, ''), (17455, ''), (17456, ''), (17457, ''), (17458, ''), (17459, ''), (17460, ''), (17461, ''), (17462, ''), (17463, ''), (17464, ''), (17465, ''), (17466, ''), (17467, ''), (17468, ''), (17469, ''), (17470, ''), (17471, ''), (17472, ''), (17473, ''), (17474, ''), (17475, ''), (17476, ''), (17477, ''), (17478, ''), (17479, 'MAY HAVE 1'), (17480, ''), (17481, ''), (17482, ''), (17483, ''), (17484, ''), (17485, ''), (17486, ''), (17487, ''), (17488, ''), (17489, ''), (17490, ''), (17491, ''), (17492, 'Tinius Ols'), (17493, ''), (17494, ''), (17495, ''), (17496, ''), (17497, ''), (17498, ''), (17499, ''), (17500, ''), (17501, 'Stress Con'), (17502, ''), (17503, ''), (17504, ''), (17505, 'Soiltest M'), (17506, ''), (17507, ''), (17508, ''), (17509, ''), (17510, ' '), (17511, 'of forms -'), (17512, ' '), (17513, ''), (17514, ''), (17515, ' '), (17516, ''), (17517, ' '), (17518, ' '), (17519, ''), (17520, ' '), (17521, ''), (17522, 'Certs and '), (17523, ''), (17524, ''), (17525, ''), (17526, ''), (17527, ''), (17528, ''), (17529, ''), (17530, ''), (17531, ''), (17532, ''), (17533, ''), (17534, ''), (17535, ''), (17536, ''), (17537, ''), (17538, ''), (17539, ''), (17540, ''), (17541, ''), (17542, ''), (17543, ''), (17544, ''), (17545, ''), (17546, ''), (17547, ''), (17548, ''), (17549, ''), (17550, ''), (17551, ''), (17552, ''), (17553, ''), (17554, ''), (17555, ''), (17556, ''), (17557, ''), (17558, ''), (17559, ''), (17560, ''), (17561, ''), (17562, ''), (17563, 'Dillon Dyn'), (17564, ''), (17565, ''), (17566, ''), (17567, ''), (17568, ''), (17569, 'Displaceme'), (17570, ' '), (17571, ''), (17572, ''), (17573, 'Sensotec 4'), (17574, ''), (17575, 'Interface '), (17576, 'Karol Warn'), (17577, ''), (17578, ''), (17579, ''), (17580, ''), (17581, ''), (17582, 'Com Ten Mo'), (17583, 'Mail certs'), (17584, ''), (17585, ''), (17586, 'HCN Dial I'), (17587, ''), (17588, ''), (17589, ''), (17590, ''), (17591, ''), (17592, ''), (17593, ''), (17594, ''), (17595, ''), (17596, ''), (17597, ''), (17598, ''), (17599, ''), (17600, ''), (17601, ''), (17602, ''), (17603, ''), (17604, ''), (17605, ''), (17606, ''), (17607, ''), (17608, ''), (17609, ''), (17610, ''), (17611, ''), (17612, ''), (17613, ''), (17614, ''), (17615, ''), (17616, ''), (17617, ''), (17618, ''), (17619, 'Send Certs'), (17620, ''), (17621, ''), (17622, ''), (17623, ''), (17624, ''), (17625, ''), (17626, ''), (17627, ''), (17628, ''), (17629, ''), (17630, ' '), (17631, ''), (17632, 'Not there '), (17633, 'PSI Pressu'), (17634, ' with '), (17635, 'Putting in'), (17636, 'Putting in'), (17637, ''), (17638, ''), (17639, ''), (17640, ''), (17641, ''), (17642, ''), (17643, ''), (17644, ''), (17645, ''), (17646, 'ADMET Univ'), (17647, ''), (17648, ''), (17649, ''), (17650, ''), (17651, ''), (17652, ''), (17653, ''), (17654, ''), (17655, ''), (17656, ''), (17657, ''), (17658, ''), (17659, ''), (17660, ''), (17661, 'Call Bobby'), (17662, ''), (17663, ''), (17664, ''), (17665, 'Putting in'), (17666, ''), (17667, ''), (17668, ''), (17669, ''), (17670, ''), (17671, ''), (17672, ''), (17673, ''), (17674, ''), (17675, 'Chatillon '), (17676, ' T.O. Due '), (17677, ''), (17678, ''), (17679, 'Send Certs'), (17680, ''), (17681, ''), (17682, ''), (17683, 'Soiltest L'), (17684, 'E-mail Inv'), (17685, ''), (17686, ''), (17687, ''), (17688, ''), (17689, ''), (17690, ''), (17691, 'Putting in'), (17692, ''), (17693, ''), (17694, ''), (17695, ''), (17696, ''), (17697, ''), (17698, ''), (17699, ''), (17700, ''), (17701, ' '), (17702, ''), (17703, ''), (17704, 'Make sure '), (17705, ''), (17706, ''), (17707, ''), (17708, ' with '), (17709, ''), (17710, 'MTS 1 Mac'), (17711, 'Putting in'), (17712, ''), (17713, ''), (17714, ''), (17715, ''), (17716, ' '), (17717, ''), (17718, 'Soiltest D'), (17719, ''), (17720, 'Fax copy o'), (17721, ''), (17722, ' '), (17723, ''), (17724, ''), (17725, ''), (17726, ''), (17727, ''), (17728, ''), (17729, ''), (17730, ''), (17731, ''), (17732, ''), (17733, ''), (17734, ''), (17735, ''), (17736, ''), (17737, ' '), (17738, 'Geotac Pre'), (17739, 'Putting in'), (17740, ''), (17741, '***QA Manu'), (17742, 'Certs to b'), (17743, ' '), (17744, 'As per cus'), (17745, ''), (17746, ''), (17747, 'Soiltest C'), (17748, 'Hogentogle'), (17749, ''), (17750, 'Satec MK3-'), (17751, ''), (17752, ''), (17753, ''), (17754, 'Putting in'), (17755, ''), (17756, ''), (17757, ''), (17758, ''), (17759, ''), (17760, ''), (17761, ''), (17762, '****Send c'), (17763, ''), (17764, 'Wika Press'), (17765, ''), (17766, '***S/N 013'), (17767, ''), (17768, ''), (17769, ''), (17770, ''), (17771, ''), (17772, ''), (17773, ''), (17774, ''), (17775, ''), (17776, ''), (17777, ' '), (17778, ''), (17779, ''), (17780, ''), (17781, ''), (17782, ''), (17783, ''), (17784, ''), (17785, ''), (17786, ''), (17787, 'Putting in'), (17788, ''), (17789, ''), (17790, 'Putting in'), (17791, 'Email invo'), (17792, 'Must have '), (17793, ''), (17794, ''), (17795, 'Putting in'), (17796, 'have a PO#'), (17797, ''), (17798, ''), (17799, ''), (17800, ''), (17801, ''), (17802, ''), (17803, ''), (17804, '*** Paying'), (17805, '*** Paying'), (17806, ''), (17807, ''), (17808, ''), (17809, ''), (17810, ''), (17811, ''), (17812, ''), (17813, 'Putting in'), (17814, ''), (17815, ''), (17816, ''), (17817, ' Any inv'), (17818, ''), (17819, 'Durham Geo'), (17820, '***ISO Req'), (17821, ''), (17822, 'continued '), (17823, ''), (17824, ''), (17825, ''), (17826, ''), (17827, ' w/'), (17828, ''), (17829, 'Putting in'), (17830, 'Tetsmark C'), (17831, 'Putting in'), (17832, ''), (17833, ''), (17834, ''), (17835, ''), (17836, ''), (17837, ''), (17838, ''), (17839, 'ELE 35-147'), (17840, ''), (17841, ''), (17842, ''), (17843, ''), (17844, ''), (17845, ''), (17846, ''), (17847, ''), (17848, ''), (17849, ''), (17850, ''), (17851, ''), (17852, ''), (17853, ''), (17854, ''), (17855, 'ELE Trifle'), (17856, ''), (17857, ''), (17858, ''), (17859, ''), (17860, ''), (17861, ''), (17862, ''), (17863, ''), (17864, ''), (17865, ''), (17866, ''), (17867, ''), (17868, ''), (17869, ''), (17870, ''), (17871, ''), (17872, 'Soiltest S'), (17873, ''), (17874, ''), (17875, ''), (17876, ''), (17877, ''), (17878, ''), (17879, ''), (17880, ''), (17881, ''), (17882, ''), (17883, ''), (17884, ''), (17885, ''), (17886, 'jason.hard'), (17887, ' '), (17888, ' '), (17889, ''), (17890, ''), (17891, ' '), (17892, ''), (17893, ''), (17894, ''), (17895, 'Put month,'), (17896, ''), (17897, 'Certs to b'), (17898, ''), (17899, 'Fowler Mdl'), (17900, ''), (17901, ''), (17902, 'Send Certs'), (17903, ''), (17904, ''), (17905, ''), (17906, ''), (17907, ''), (17908, ''), (17909, 'Trautwein '), (17910, 'Starrett D'), (17911, ''), (17912, ''), (17913, 'Soiltest C'), (17914, ''), (17915, ''), (17916, ''), (17917, 'ELE Pressu'), (17918, ''), (17919, 'Wykeham Fa'), (17920, ' '), (17921, ''), (17922, ''), (17923, ''), (17924, ''), (17925, ''), (17926, ''), (17927, ''), (17928, ''), (17929, ''), (17930, ''), (17931, 'email invo'), (17932, 'CSI Model '), (17933, ''), (17934, 'Karol Warn'), (17935, 'Interface '), (17936, ''), (17937, 'Stressing '), (17938, ''), (17939, ''), (17940, ''), (17941, ''), (17942, ''), (17943, ''), (17944, ''), (17945, 'Com-Ten To'), (17946, ''), (17947, ''), (17948, ''), (17949, ''), (17950, ''), (17951, ''), (17952, ''), (17953, ''), (17954, ''), (17955, ''), (17956, ''), (17957, ''), (17958, ''), (17959, 'Billin to '), (17960, ''), (17961, 'Billing to'), (17962, 'Billing to'), (17963, 'Adam ADK-2'), (17964, ''), (17965, ''), (17966, ''), (17967, 'Copy of in'), (17968, ''), (17969, ''), (17970, ''), (17971, ''), (17972, ''), (17973, '***SPECIAL'), (17974, ''), (17975, ''), (17976, ''), (17977, ''), (17978, ''), (17979, ' '), (17980, ''), (17981, ''), (17982, ''), (17983, ''), (17984, ''), (17985, 'Forney PT-'), (17986, 'Controls D'), (17987, ''), (17988, ''), (17989, ' '), (17990, 'Proving Ri'), (17991, ''), (17992, ''), (17993, ''), (17994, ''), (17995, 'RST Instru'), (17996, ''), (17997, ''), (17998, ''), (17999, ''), (18000, ''), (18001, '$0.00 '), (18002, '$154.00 '), (18003, ''), (18004, ''), (18005, '$204.00 '), (18006, ''), (18007, '$175.00 '), (18008, ''), (18009, ''), (18010, ''), (18011, ''), (18012, '$144.00 '), (18013, ''), (18014, ''), (18015, ''), (18016, ''), (18017, ''), (18018, ''), (18019, ''), (18020, ''), (18021, ''), (18022, ''), (18023, ''), (18024, ''), (18025, ''), (18026, ''), (18027, ''), (18028, ''), (18029, ''), (18030, ''), (18031, ''), (18032, ''), (18033, ''), (18034, ''), (18035, ''), (18036, ''), (18037, ''), (18038, ''), (18039, ''), (18040, ''), (18041, ''), (18042, ''), (18043, ''), (18044, ''), (18045, ''), (18046, ''), (18047, ''), (18048, ''), (18049, ''), (18050, '$124.00 '), (18051, ''), (18052, ''), (18053, '$204.00 '), (18054, ''), (18055, ''), (18056, ''), (18057, '$144.00 '), (18058, '$104.00 '), (18059, '$144.00 '), (18060, ''), (18061, ''), (18062, ''), (18063, ''), (18064, ''), (18065, '$35.00 '), (18066, ''), (18067, ''), (18068, ''), (18069, ''), (18070, ''), (18071, ''), (18072, ''), (18073, ''), (18074, ''), (18075, ''), (18076, ''), (18077, ''), (18078, ''), (18079, '$85.00 '), (18080, ''), (18081, ''), (18082, ''), (18083, ''), (18084, ''), (18085, ''), (18086, ''), (18087, ''), (18088, '$124.00 '), (18089, '$124.00 '), (18090, ''), (18091, ''), (18092, ''), (18093, ''), (18094, ''), (18095, ''), (18096, ''), (18097, ''), (18098, ''), (18099, ''), (18100, ''), (18101, ''), (18102, ''), (18103, ''), (18104, ''), (18105, '$144.00 '), (18106, '$104.00 '), (18107, ''), (18108, ''), (18109, ''), (18110, ''), (18111, ''), (18112, ''), (18113, ''), (18114, ''), (18115, ''), (18116, ''), (18117, ''), (18118, '$154.00 '), (18119, ''), (18120, ''), (18121, ''), (18122, ''), (18123, ''), (18124, '$175.00 '), (18125, ''), (18126, ''), (18127, '$288.00 '), (18128, ''), (18129, ''), (18130, ''), (18131, ''), (18132, ''), (18133, ''), (18134, ''), (18135, ''), (18136, ''), (18137, ''), (18138, ''), (18139, ''), (18140, ''), (18141, ''), (18142, ''), (18143, ''), (18144, ''), (18145, ''), (18146, ''), (18147, ''), (18148, '$144.00 '), (18149, ''), (18150, ''), (18151, ''), (18152, ''), (18153, ''), (18154, ''), (18155, ''), (18156, ''), (18157, '$144.00 '), (18158, ''), (18159, ''), (18160, ''), (18161, ''), (18162, '$144.00 '), (18163, '$175.00 '), (18164, ''), (18165, ''), (18166, '$104.00 '), (18167, ''), (18168, '$125.00 '), (18169, ''), (18170, ''), (18171, ''), (18172, '$104.00 '), (18173, ''), (18174, ''), (18175, ''), (18176, ''), (18177, ''), (18178, ''), (18179, ''), (18180, ''), (18181, ''), (18182, ''), (18183, ''), (18184, ''), (18185, ''), (18186, ''), (18187, ''), (18188, '$144.00 '), (18189, ''), (18190, '$144.00 '), (18191, ''), (18192, ''), (18193, ''), (18194, ''), (18195, ''), (18196, ''), (18197, ''), (18198, ''), (18199, ''), (18200, ''), (18201, ''), (18202, ''), (18203, ''), (18204, ''), (18205, ''), (18206, ''), (18207, ''), (18208, ''), (18209, ''), (18210, ''), (18211, ''), (18212, '$149.00 '), (18213, ''), (18214, ''), (18215, ''), (18216, ''), (18217, '$1,500.00 '), (18218, ''), (18219, ''), (18220, ''), (18221, '$104.00 '), (18222, ''), (18223, ''), (18224, ''), (18225, ''), (18226, ''), (18227, ''), (18228, '$35.00 '), (18229, '$35.00 '), (18230, ''), (18231, ''), (18232, '$35.00 '), (18233, ''), (18234, ''), (18235, ''), (18236, ''), (18237, '$144.00 '), (18238, ''), (18239, '$149.00 '), (18240, '$109.00 '), (18241, ''), (18242, ''), (18243, ''), (18244, ''), (18245, ''), (18246, ''), (18247, ''), (18248, ''), (18249, ''), (18250, ''), (18251, ''), (18252, ''), (18253, ''), (18254, ''), (18255, ''), (18256, ''), (18257, ''), (18258, '$204.00 '), (18259, 'the above '), (18260, ''), (18261, '$144.00 '), (18262, ''), (18263, ''), (18264, ''), (18265, ''), (18266, ''), (18267, ''), (18268, ''), (18269, ''), (18270, ''), (18271, '$85.00 '), (18272, ''), (18273, ''), (18274, '$409.00 '), (18275, ''), (18276, ''), (18277, ''), (18278, ''), (18279, ''), (18280, ''), (18281, '$204.00 '), (18282, ''), (18283, ''), (18284, ''), (18285, ''), (18286, ''), (18287, ''), (18288, ''), (18289, ''), (18290, ''), (18291, ''), (18292, ''), (18293, '$144.00 '), (18294, ''), (18295, '$85.00 '), (18296, '$144.00 '), (18297, '$85.00 '), (18298, ''), (18299, ''), (18300, '$204.00 '), (18301, ''), (18302, ''), (18303, ''), (18304, '$409.00 '), (18305, '$144.00 '), (18306, ''), (18307, ''), (18308, ''), (18309, ''), (18310, ''), (18311, ''), (18312, ''), (18313, ''), (18314, ''), (18315, ''), (18316, ''), (18317, ''), (18318, ''), (18319, ''), (18320, ''), (18321, ''), (18322, ''), (18323, ''), (18324, ''), (18325, ''), (18326, '$204.00 '), (18327, ''), (18328, ''), (18329, ''), (18330, ''), (18331, '$204.00 '), (18332, ''), (18333, ''), (18334, ''), (18335, ''), (18336, ''), (18337, ''), (18338, '$114.00 '), (18339, ''), (18340, ''), (18341, ''), (18342, ''), (18343, ''), (18344, ''), (18345, ''), (18346, ''), (18347, ''), (18348, ''), (18349, ''), (18350, ''), (18351, ''), (18352, ''), (18353, ''), (18354, ''), (18355, ''), (18356, ''), (18357, ''), (18358, ''), (18359, ''), (18360, ''), (18361, ''), (18362, ''), (18363, ''), (18364, ''), (18365, ''), (18366, ''), (18367, ''), (18368, ''), (18369, ''), (18370, ''), (18371, ''), (18372, ''), (18373, ''), (18374, ''), (18375, ''), (18376, ''), (18377, ''), (18378, ''), (18379, ''), (18380, ''), (18381, ''), (18382, ''), (18383, ''), (18384, ''), (18385, ''), (18386, ''), (18387, ''), (18388, ''), (18389, ''), (18390, ''), (18391, ''), (18392, ''), (18393, ''), (18394, ''), (18395, ''), (18396, ''), (18397, ''), (18398, ''), (18399, ''), (18400, ''), (18401, ''), (18402, ''), (18403, ''), (18404, ''), (18405, ''), (18406, ''), (18407, ''), (18408, ''), (18409, ''), (18410, ''), (18411, '$409.00 '), (18412, ''), (18413, ''), (18414, ''), (18415, '$104.00 '), (18416, ''), (18417, ''), (18418, ''), (18419, '$187.00 '), (18420, '$144.00 '), (18421, '$104.00 '), (18422, '$104.00 '), (18423, ''), (18424, 'Price'), (18425, '$144.00 '), (18426, ''), (18427, ''), (18428, 'Incw/Above'), (18429, ''), (18430, ''), (18431, ''), (18432, ''), (18433, ''), (18434, '$79.00 '), (18435, ''), (18436, ''), (18437, ''), (18438, '$359.00 '), (18439, ''), (18440, ''), (18441, ''), (18442, '$104.00 '), (18443, '$509.00 '), (18444, ''), (18445, '$85.00 '), (18446, '$144.00 '), (18447, '$209.00 '), (18448, ''), (18449, ''), (18450, ''), (18451, ''), (18452, ''), (18453, ''), (18454, ''), (18455, ''), (18456, ''), (18457, ''), (18458, ''), (18459, ''), (18460, ''), (18461, ''), (18462, ''), (18463, ''), (18464, ''), (18465, ''), (18466, ''), (18467, ''), (18468, ''), (18469, ''), (18470, ''), (18471, ''), (18472, ''), (18473, '$85.00 '), (18474, ''), (18475, '$204.00 '), (18476, ''), (18477, ''), (18478, ''), (18479, ''), (18480, ''), (18481, 'In'), (18482, ''), (18483, ''), (18484, ''), (18485, '$144.00 '), (18486, ''), (18487, ''), (18488, ''), (18489, ''), (18490, '$204.00 '), (18491, '$144.00 '), (18492, '$144.00 '), (18493, '$144.00 '), (18494, ''), (18495, ''), (18496, ''), (18497, 'price'), (18498, ''), (18499, ''), (18500, ''), (18501, ''), (18502, ''), (18503, ''), (18504, ''), (18505, ''), (18506, ''), (18507, ''), (18508, ''), (18509, ''), (18510, ''), (18511, ''), (18512, ''), (18513, '$144.00 '), (18514, ''), (18515, ''), (18516, '$144.00 '), (18517, ''), (18518, ''), (18519, ''), (18520, ''), (18521, ''), (18522, ''), (18523, ''), (18524, ''), (18525, ''), (18526, ''), (18527, ''), (18528, ''), (18529, ''), (18530, ''), (18531, ''), (18532, ''), (18533, ''), (18534, ''), (18535, ''), (18536, ''), (18537, ''), (18538, '$85.00 '), (18539, ''), (18540, ''), (18541, ''), (18542, '$104.00 '), (18543, ''), (18544, ''), (18545, '$204.00 '), (18546, ''), (18547, ''), (18548, ''), (18549, '$204.00 '), (18550, '$85.00 '), (18551, ''), (18552, ''), (18553, ''), (18554, ''), (18555, ''), (18556, '$70.00 '), (18557, ''), (18558, ''), (18559, ''), (18560, ''), (18561, ''), (18562, ''), (18563, ''), (18564, ''), (18565, ''), (18566, ''), (18567, '$85.00 '), (18568, ''), (18569, ''), (18570, ''), (18571, ''), (18572, ''), (18573, ''), (18574, ''), (18575, ''), (18576, ''), (18577, ''), (18578, ''), (18579, ''), (18580, ''), (18581, ''), (18582, ''), (18583, '$204.00 '), (18584, ''), (18585, ''), (18586, ''), (18587, ''), (18588, ''), (18589, ''), (18590, '$144.00 '), (18591, ''), (18592, ''), (18593, ''), (18594, ''), (18595, ''), (18596, ' in'), (18597, ''), (18598, ''), (18599, ''), (18600, ''), (18601, ''), (18602, '$79.00 '), (18603, ''), (18604, '$79.00 '), (18605, ''), (18606, ''), (18607, ''), (18608, ''), (18609, ''), (18610, ''), (18611, ''), (18612, '$70.00 '), (18613, ''), (18614, ''), (18615, ''), (18616, ''), (18617, ''), (18618, ''), (18619, ''), (18620, ''), (18621, ''), (18622, ''), (18623, ''), (18624, ''), (18625, ''), (18626, ''), (18627, ''), (18628, ''), (18629, ''), (18630, ''), (18631, ''), (18632, ''), (18633, ''), (18634, ''), (18635, '$144.00 '), (18636, ''), (18637, ''), (18638, ''), (18639, ''), (18640, '$144.00 '), (18641, ''), (18642, ''), (18643, ''), (18644, ''), (18645, ''), (18646, ''), (18647, ''), (18648, ''), (18649, ''), (18650, ''), (18651, ''), (18652, ''), (18653, ''), (18654, ''), (18655, ''), (18656, ''), (18657, '$488.00 '), (18658, ''), (18659, ''), (18660, ''), (18661, ''), (18662, ''), (18663, ''), (18664, ''), (18665, ''), (18666, ''), (18667, ''), (18668, ''), (18669, '$144.00 '), (18670, ''), (18671, ''), (18672, '$144.00 '), (18673, ''), (18674, ''), (18675, ''), (18676, ''), (18677, ''), (18678, '$125.00 '), (18679, '$134.00 '), (18680, ''), (18681, ''), (18682, ''), (18683, ''), (18684, ''), (18685, ''), (18686, ''), (18687, '$125.00 '), (18688, ''), (18689, ''), (18690, '$85.00 '), (18691, '$144.00 '), (18692, '$85.00 '), (18693, ''), (18694, ''), (18695, ''), (18696, ''), (18697, '$409.00 '), (18698, ''), (18699, ''), (18700, ''), (18701, ''), (18702, ''), (18703, ''), (18704, ''), (18705, ''), (18706, ''), (18707, ''), (18708, ''), (18709, ''), (18710, ''), (18711, ''), (18712, ''), (18713, ''), (18714, ''), (18715, ''), (18716, ''), (18717, ''), (18718, ''), (18719, ''), (18720, ''), (18721, ''), (18722, ''), (18723, ''), (18724, ''), (18725, ''), (18726, ''), (18727, ''), (18728, ''), (18729, '$204.00 '), (18730, ''), (18731, 'Inc.'), (18732, ''), (18733, ''), (18734, ''), (18735, ''), (18736, ''), (18737, ''), (18738, ''), (18739, ''), (18740, '$409.00 '), (18741, ''), (18742, ''), (18743, ''), (18744, ''), (18745, ''), (18746, ''), (18747, ''), (18748, ''), (18749, ''), (18750, ''), (18751, ''), (18752, ''), (18753, ''), (18754, '$104.00 '), (18755, ''), (18756, ''), (18757, ''), (18758, ''), (18759, ''), (18760, ''), (18761, ''), (18762, ''), (18763, '$85.00 '), (18764, ''), (18765, '$158.00 '), (18766, '$79.00 '), (18767, ''), (18768, ''), (18769, ''), (18770, ''), (18771, ''), (18772, ''), (18773, ''), (18774, ''), (18775, '$79.00 '), (18776, '$567.00 '), (18777, ''), (18778, ''), (18779, '$204.00 '), (18780, ''), (18781, ''), (18782, ''), (18783, ''), (18784, ''), (18785, ''), (18786, ''), (18787, ''), (18788, ' pr'), (18789, ''), (18790, ''), (18791, ''), (18792, ''), (18793, ''), (18794, ''), (18795, ''), (18796, ''), (18797, ''), (18798, ''), (18799, ''), (18800, ''), (18801, ''), (18802, ''), (18803, ''), (18804, ''), (18805, ''), (18806, ''), (18807, ''), (18808, ''), (18809, ''), (18810, ''), (18811, '$237.00 '), (18812, '$204.00 '), (18813, ''), (18814, ''), (18815, ''), (18816, ''), (18817, ''), (18818, ''), (18819, ''), (18820, ''), (18821, ''), (18822, ''), (18823, '$175.00 '), (18824, ''), (18825, ''), (18826, '$175.00 '), (18827, ''), (18828, '$144.00 '), (18829, ''), (18830, ''), (18831, ''), (18832, ''), (18833, ''), (18834, ''), (18835, ''), (18836, ''), (18837, ''), (18838, ''), (18839, '$144.00 '), (18840, ''), (18841, ''), (18842, ''), (18843, ''), (18844, ''), (18845, ''), (18846, ''), (18847, ''), (18848, ''), (18849, ''), (18850, ''), (18851, ''), (18852, ''), (18853, ''), (18854, ''), (18855, ''), (18856, ''), (18857, ''), (18858, ''), (18859, ''), (18860, ''), (18861, ''), (18862, ''), (18863, ''), (18864, ''), (18865, ''), (18866, ''), (18867, ''), (18868, ''), (18869, ''), (18870, '$144.00 '), (18871, ''), (18872, ''), (18873, ''), (18874, ''), (18875, ''), (18876, ''), (18877, ''), (18878, ''), (18879, ''), (18880, ''), (18881, ''), (18882, ''), (18883, ''), (18884, ''), (18885, ''), (18886, ''), (18887, ''), (18888, ''), (18889, '$125.00 '), (18890, ''), (18891, ''), (18892, ''), (18893, '$409.00 '), (18894, ''), (18895, ''), (18896, ''), (18897, ''), (18898, ''), (18899, ''), (18900, ''), (18901, ''), (18902, '$144.00 '), (18903, ''), (18904, '$79.00 '), (18905, ''), (18906, '$250.00 '), (18907, ''), (18908, ''), (18909, ''), (18910, ''), (18911, ''), (18912, ''), (18913, ''), (18914, ''), (18915, ''), (18916, '$144.00 '), (18917, ''), (18918, '$144.00 '), (18919, '$104.00 '), (18920, '$144.00 '), (18921, ''), (18922, ''), (18923, ''), (18924, ''), (18925, ''), (18926, ''), (18927, '$144.00 '), (18928, '$104.00 '), (18929, ''), (18930, ''), (18931, ''), (18932, '$144.00 '), (18933, '$104.00 '), (18934, ''), (18935, ''), (18936, ''), (18937, ''), (18938, ''), (18939, ''), (18940, ''), (18941, ''), (18942, ''), (18943, ''), (18944, ''), (18945, ''), (18946, ''), (18947, ''), (18948, '$104.00 '), (18949, ''), (18950, '$144.00 '), (18951, ''), (18952, ''), (18953, ''), (18954, ''), (18955, ''), (18956, ''), (18957, ''), (18958, ''), (18959, ''), (18960, '$144.00 '), (18961, ''), (18962, ''), (18963, ''), (18964, '$134.00 '), (18965, ''), (18966, ''), (18967, ''), (18968, '$104.00 '), (18969, ''), (18970, ''), (18971, ''), (18972, ''), (18973, ''), (18974, ''), (18975, ''), (18976, ''), (18977, ''), (18978, ''), (18979, ''), (18980, ''), (18981, ''), (18982, ''), (18983, ''), (18984, ''), (18985, ''), (18986, ''), (18987, ''), (18988, ''), (18989, '$144.00 '), (18990, '$144.00 '), (18991, ''), (18992, ''), (18993, '$144.00 '), (18994, '$144.00 '), (18995, ''), (18996, ''), (18997, ''), (18998, ''), (18999, ''), (19000, ''), (19001, '$144.00 '), (19002, ''), (19003, ''), (19004, ''), (19005, ''), (19006, ''), (19007, ''), (19008, '$204.00 '), (19009, '$204.00 '), (19010, ''), (19011, 'included'), (19012, '$144.00 '), (19013, ''), (19014, ''), (19015, ''), (19016, ''), (19017, ''), (19018, ''), (19019, ''), (19020, '$409.00 '), (19021, ''), (19022, ''), (19023, '$204.00 '), (19024, ''), (19025, ''), (19026, ''), (19027, '$204.00 '), (19028, ''), (19029, ''), (19030, ''), (19031, ''), (19032, ''), (19033, '$144.00 '), (19034, '$144.00 '), (19035, '$144.00 '), (19036, '$204.00 '), (19037, ''), (19038, ''), (19039, '$144.00 '), (19040, 'Inc.'), (19041, 'Inc. '), (19042, ''), (19043, ''), (19044, ''), (19045, '$409.00 '), (19046, ''), (19047, ''), (19048, ''), (19049, ''), (19050, ''), (19051, '$144.00 '), (19052, ''), (19053, ''), (19054, ''), (19055, ''), (19056, ''), (19057, '$144.00 '), (19058, ''), (19059, ''), (19060, ''), (19061, ''), (19062, ''), (19063, ''), (19064, ''), (19065, ''), (19066, ''), (19067, ''), (19068, ''), (19069, ''), (19070, ''), (19071, ''), (19072, ''), (19073, '$300.00 '), (19074, '$300.00 '), (19075, ''), (19076, ''), (19077, ''), (19078, ''), (19079, ''), (19080, ''), (19081, ''), (19082, ''), (19083, ''), (19084, ''), (19085, ''), (19086, ''), (19087, ''), (19088, ''), (19089, ''), (19090, ''), (19091, ''), (19092, ''), (19093, ''), (19094, ''), (19095, ''), (19096, ''), (19097, ''), (19098, ''), (19099, ''), (19100, ''), (19101, ''), (19102, ''), (19103, ''), (19104, ''), (19105, ''), (19106, ''), (19107, ''), (19108, ''), (19109, ''), (19110, ''), (19111, ''), (19112, ''), (19113, ''), (19114, ''), (19115, ''), (19116, ''), (19117, ''), (19118, ''), (19119, ''), (19120, ''), (19121, ''), (19122, ''), (19123, ''), (19124, ''), (19125, ''), (19126, ''), (19127, ''), (19128, ''), (19129, ''), (19130, ''), (19131, ''), (19132, ''), (19133, ''), (19134, ''), (19135, ''), (19136, ''), (19137, ''), (19138, ''), (19139, '$144.00 '), (19140, ''), (19141, ''), (19142, ''), (19143, ''), (19144, 'above pric'), (19145, ''), (19146, ''), (19147, ''), (19148, ''), (19149, ''), (19150, ''), (19151, ''), (19152, ''), (19153, ''), (19154, ''), (19155, '$104.00 '), (19156, ''), (19157, ''), (19158, ''), (19159, ''), (19160, ''), (19161, ''), (19162, ''), (19163, ''), (19164, ''), (19165, ''), (19166, ''), (19167, ''), (19168, ''), (19169, ''), (19170, ''), (19171, ''), (19172, ''), (19173, ''), (19174, ''), (19175, ''), (19176, ''), (19177, ''), (19178, ''), (19179, ''), (19180, ''), (19181, ''), (19182, ''), (19183, ''), (19184, ''), (19185, ''), (19186, ''), (19187, ''), (19188, '$139.00 '), (19189, ''), (19190, ''), (19191, ''), (19192, ''), (19193, ''), (19194, ''), (19195, ''), (19196, ''), (19197, ''), (19198, ''), (19199, ''), (19200, ''), (19201, ''), (19202, ''), (19203, ''), (19204, ''), (19205, '$144.00 '), (19206, ''), (19207, ''), (19208, ''), (19209, ''), (19210, ''), (19211, '$144.00 '), (19212, ''), (19213, ''), (19214, ''), (19215, ''), (19216, ''), (19217, ''), (19218, ''), (19219, ''), (19220, ''), (19221, ''), (19222, ''), (19223, ''), (19224, ''), (19225, ''), (19226, ''), (19227, ''), (19228, ''), (19229, ''), (19230, ''), (19231, ''), (19232, ''), (19233, ''), (19234, ''), (19235, ''), (19236, ''), (19237, ''), (19238, ''), (19239, ''), (19240, ''), (19241, ''), (19242, ''); INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (19243, ''), (19244, ''), (19245, ''), (19246, ''), (19247, ''), (19248, ''), (19249, ''), (19250, ''), (19251, ''), (19252, ''), (19253, ''), (19254, ''), (19255, ''), (19256, ''), (19257, ''), (19258, ''), (19259, ''), (19260, ''), (19261, ''), (19262, ''), (19263, ''), (19264, ''), (19265, ''), (19266, ''), (19267, ''), (19268, ''), (19269, ''), (19270, ''), (19271, ''), (19272, ''), (19273, '$144.00 '), (19274, ''), (19275, '$144.00 '), (19276, '$204.00 '), (19277, ''), (19278, ''), (19279, ''), (19280, ''), (19281, ''), (19282, ''), (19283, ''), (19284, ''), (19285, '$454.00 '), (19286, '$144.00 '), (19287, ''), (19288, ''), (19289, ''), (19290, ''), (19291, '$144.00 '), (19292, ''), (19293, ''), (19294, ''), (19295, ''), (19296, ''), (19297, ''), (19298, ''), (19299, ''), (19300, ''), (19301, ''), (19302, ''), (19303, ''), (19304, ''), (19305, ''), (19306, ''), (19307, ''), (19308, ''), (19309, ''), (19310, ''), (19311, ''), (19312, '$99.00 '), (19313, ''), (19314, ''), (19315, ''), (19316, ''), (19317, ''), (19318, ''), (19319, ''), (19320, ''), (19321, ''), (19322, '$89.00 '), (19323, ''), (19324, ''), (19325, ''), (19326, ''), (19327, ''), (19328, ''), (19329, ''), (19330, ''), (19331, ''), (19332, ''), (19333, ''), (19334, ''), (19335, ''), (19336, ''), (19337, ''), (19338, ''), (19339, ''), (19340, ''), (19341, ''), (19342, ''), (19343, ''), (19344, ''), (19345, ''), (19346, ''), (19347, ''), (19348, ''), (19349, ''), (19350, ''), (19351, ''), (19352, ''), (19353, ''), (19354, ''), (19355, ''), (19356, ''), (19357, ''), (19358, ''), (19359, ''), (19360, ''), (19361, ''), (19362, ''), (19363, '$149.00 '), (19364, ''), (19365, ''), (19366, ''), (19367, ''), (19368, ''), (19369, ''), (19370, ''), (19371, ''), (19372, ''), (19373, ''), (19374, '$144.00 '), (19375, ''), (19376, ''), (19377, ''), (19378, ''), (19379, ''), (19380, ''), (19381, ''), (19382, ''), (19383, '$175.00 '), (19384, '$175.00 '), (19385, ''), (19386, ''), (19387, '$149.00 '), (19388, ''), (19389, '$144.00 '), (19390, '$144.00 '), (19391, ''), (19392, ''), (19393, ''), (19394, ''), (19395, ''), (19396, ''), (19397, ''), (19398, '$144.00 '), (19399, ''), (19400, '$109.00 '), (19401, '$85.00 '), (19402, '$85.00 '), (19403, ''), (19404, ''), (19405, '$175.00 '), (19406, ''), (19407, ''), (19408, ''), (19409, ''), (19410, ''), (19411, ''), (19412, ''), (19413, ''), (19414, ''), (19415, ''), (19416, ''), (19417, ''), (19418, ''), (19419, ''), (19420, ''), (19421, ''), (19422, ''), (19423, ''), (19424, ''), (19425, ''), (19426, ''), (19427, ''), (19428, ''), (19429, ''), (19430, '$139.00 '), (19431, '$105.00 '), (19432, ''), (19433, ''), (19434, ''), (19435, ''), (19436, ''), (19437, ''), (19438, ''), (19439, ''), (19440, ''), (19441, ''), (19442, ''), (19443, '$144.00 '), (19444, '$144.00 '), (19445, ''), (19446, ''), (19447, ''), (19448, ''), (19449, ''), (19450, ''), (19451, ''), (19452, '$144.00 '), (19453, ''), (19454, ''), (19455, ''), (19456, ''), (19457, ''), (19458, '$449.00 '), (19459, ''), (19460, ''), (19461, ''), (19462, ''), (19463, ''), (19464, ''), (19465, ''), (19466, ''), (19467, ''), (19468, ''), (19469, ''), (19470, '$70.00 '), (19471, ''), (19472, ''), (19473, ''), (19474, ''), (19475, ''), (19476, ''), (19477, ''), (19478, ''), (19479, ''), (19480, ''), (19481, ''), (19482, ''), (19483, '$139.00 '), (19484, ''), (19485, ''), (19486, ''), (19487, ''), (19488, ''), (19489, ''), (19490, ''), (19491, ''), (19492, ''), (19493, ''), (19494, ''), (19495, ''), (19496, ''), (19497, ''), (19498, ''), (19499, ''), (19500, ''), (19501, ''), (19502, ''), (19503, ''), (19504, ''), (19505, ''), (19506, ''), (19507, ''), (19508, ''), (19509, ''), (19510, ''), (19511, ''), (19512, ''), (19513, ''), (19514, ''), (19515, ''), (19516, ''), (19517, ''), (19518, ''), (19519, ''), (19520, ''), (19521, ''), (19522, ''), (19523, ''), (19524, ''), (19525, ''), (19526, ''), (19527, ''), (19528, ''), (19529, ''), (19530, ''), (19531, '$144.00 '), (19532, '$144.00 '), (19533, '$104.00 '), (19534, ''), (19535, ''), (19536, ''), (19537, '$85.00 '), (19538, '$85.00 '), (19539, ''), (19540, ''), (19541, ''), (19542, ''), (19543, ''), (19544, '$359.00 '), (19545, ''), (19546, ''), (19547, ''), (19548, ''), (19549, ''), (19550, ''), (19551, ''), (19552, ''), (19553, ''), (19554, ''), (19555, ''), (19556, ''), (19557, ''), (19558, '$204.00 '), (19559, '$209.00 '), (19560, ''), (19561, ''), (19562, ''), (19563, ''), (19564, ''), (19565, ''), (19566, ''), (19567, ''), (19568, ''), (19569, ''), (19570, ''), (19571, ''), (19572, ''), (19573, ''), (19574, ''), (19575, ''), (19576, ''), (19577, ''), (19578, ''), (19579, ''), (19580, ''), (19581, ''), (19582, ''), (19583, ''), (19584, ''), (19585, ''), (19586, ''), (19587, ''), (19588, ''), (19589, ''), (19590, ''), (19591, ''), (19592, ''), (19593, ''), (19594, ''), (19595, ''), (19596, ''), (19597, ''), (19598, ''), (19599, ''), (19600, ''), (19601, ''), (19602, ''), (19603, ''), (19604, ''), (19605, ''), (19606, ''), (19607, ''), (19608, ''), (19609, ''), (19610, ''), (19611, ''), (19612, ''), (19613, ''), (19614, ''), (19615, ''), (19616, ''), (19617, ''), (19618, ''), (19619, ''), (19620, ''), (19621, ''), (19622, ''), (19623, ''), (19624, ''), (19625, ''), (19626, ''), (19627, ''), (19628, ''), (19629, ''), (19630, ''), (19631, ''), (19632, ''), (19633, ''), (19634, ''), (19635, ''), (19636, ''), (19637, ''), (19638, ''), (19639, '$225.35 '), (19640, ''), (19641, ''), (19642, ''), (19643, ''), (19644, ''), (19645, ''), (19646, ''), (19647, '$915.00 '), (19648, ''), (19649, '$915.00 '), (19650, '$225.35 '), (19651, ''), (19652, '$302.75 '), (19653, ''), (19654, ''), (19655, ''), (19656, ''), (19657, ''), (19658, '$225.35 '), (19659, '$225.35 '), (19660, ''), (19661, ''), (19662, ''), (19663, ''), (19664, ''), (19665, '$232.39 '), (19666, ''), (19667, '$225.35 '), (19668, ''), (19669, ''), (19670, ''), (19671, ''), (19672, '$225.35 '), (19673, ''), (19674, ''), (19675, ''), (19676, ''), (19677, ''), (19678, ''), (19679, ''), (19680, ''), (19681, ''), (19682, ''), (19683, ''), (19684, ''), (19685, ''), (19686, ''), (19687, ''), (19688, ''), (19689, ''), (19690, ''), (19691, ''), (19692, ''), (19693, ''), (19694, ''), (19695, ''), (19696, ''), (19697, ''), (19698, ''), (19699, '$144.00 '), (19700, ''), (19701, ''), (19702, '$249.00 '), (19703, ''), (19704, ''), (19705, ''), (19706, ''), (19707, ''), (19708, ''), (19709, ''), (19710, ''), (19711, ''), (19712, ''), (19713, ''), (19714, ''), (19715, ''), (19716, '$609.00 '), (19717, ''), (19718, '$85.00 '), (19719, ''), (19720, ''), (19721, ''), (19722, ''), (19723, ''), (19724, '$159.00 '), (19725, ''), (19726, ''), (19727, ''), (19728, ''), (19729, ''), (19730, ''), (19731, ''), (19732, ''), (19733, ''), (19734, ''), (19735, ''), (19736, ''), (19737, ''), (19738, ''), (19739, ''), (19740, ''), (19741, ''), (19742, ''), (19743, ''), (19744, ''), (19745, ''), (19746, ''), (19747, ''), (19748, ''), (19749, ''), (19750, '$139.00 '), (19751, ''), (19752, ''), (19753, ''), (19754, ''), (19755, ''), (19756, ''), (19757, ''), (19758, ''), (19759, ''), (19760, ''), (19761, ''), (19762, ''), (19763, ''), (19764, ''), (19765, ''), (19766, ''), (19767, ''), (19768, ''), (19769, ''), (19770, ''), (19771, ''), (19772, ''), (19773, ''), (19774, ''), (19775, ''), (19776, ''), (19777, ''), (19778, ''), (19779, ''), (19780, ''), (19781, ''), (19782, ''), (19783, ''), (19784, ''), (19785, ''), (19786, ''), (19787, ''), (19788, ''), (19789, ''), (19790, ''), (19791, ''), (19792, ''), (19793, ''), (19794, ''), (19795, ''), (19796, ''), (19797, ''), (19798, ''), (19799, ''), (19800, ''), (19801, ''), (19802, ''), (19803, ''), (19804, ''), (19805, ''), (19806, ''), (19807, ''), (19808, ''), (19809, ''), (19810, ''), (19811, ''), (19812, ''), (19813, ''), (19814, ''), (19815, ''), (19816, ''), (19817, '$144.00 '), (19818, ''), (19819, ''), (19820, '$85.00 '), (19821, ''), (19822, ''), (19823, ''), (19824, ''), (19825, ''), (19826, ''), (19827, ''), (19828, '$144.00 '), (19829, ''), (19830, ''), (19831, ''), (19832, ''), (19833, ''), (19834, ''), (19835, '$144.00 '), (19836, '$149.00 '), (19837, 'above'), (19838, ''), (19839, ''), (19840, ''), (19841, '$144.00 '), (19842, ''), (19843, ''), (19844, ''), (19845, ''), (19846, ''), (19847, ''), (19848, ''), (19849, ''), (19850, ''), (19851, ''), (19852, ''), (19853, ''), (19854, ''), (19855, ''), (19856, ''), (19857, ''), (19858, ''), (19859, ''), (19860, ''), (19861, ''), (19862, ''), (19863, ''), (19864, ''), (19865, ''), (19866, ''), (19867, ''), (19868, ''), (19869, ''), (19870, ''), (19871, ''), (19872, ''), (19873, ''), (19874, ''), (19875, ''), (19876, ''), (19877, ''), (19878, ''), (19879, ''), (19880, ''), (19881, ''), (19882, ''), (19883, ''), (19884, ''), (19885, ''), (19886, ''), (19887, ''), (19888, ''), (19889, ''), (19890, ''), (19891, ''), (19892, ''), (19893, ''), (19894, ''), (19895, ''), (19896, ''), (19897, ''), (19898, ''), (19899, ''), (19900, ''), (19901, ''), (19902, '$560.00 '), (19903, ''), (19904, ''), (19905, ''), (19906, ''), (19907, ''), (19908, ''), (19909, ''), (19910, ''), (19911, ''), (19912, ''), (19913, ''), (19914, ''), (19915, ''), (19916, ''), (19917, ''), (19918, ''), (19919, ''), (19920, ''), (19921, ''), (19922, ''), (19923, ''), (19924, ''), (19925, ''), (19926, ''), (19927, ''), (19928, ''), (19929, ''), (19930, ''), (19931, ''), (19932, ''), (19933, ''), (19934, ''), (19935, ''), (19936, ''), (19937, ''), (19938, ''), (19939, ''), (19940, ''), (19941, ''), (19942, ''), (19943, ''), (19944, ''), (19945, ''), (19946, ''), (19947, ''), (19948, ''), (19949, ''), (19950, ''), (19951, ''), (19952, ''), (19953, ''), (19954, '$70.00 '), (19955, '$60.00 '), (19956, '$114.00 '), (19957, ''), (19958, ''), (19959, ''), (19960, ''), (19961, ''), (19962, ''), (19963, ''), (19964, ''), (19965, ''), (19966, ''), (19967, ''), (19968, ''), (19969, ''), (19970, ''), (19971, ''), (19972, ''), (19973, ''), (19974, ''), (19975, ''), (19976, ''), (19977, ''), (19978, ''), (19979, ''), (19980, ''), (19981, ''), (19982, ''), (19983, ''), (19984, ''), (19985, '$619.72 '), (19986, ''), (19987, ''), (19988, ''), (19989, ''), (19990, ''), (19991, ''), (19992, ''), (19993, ''), (19994, ''), (19995, ''), (19996, ''), (19997, ''), (19998, ''), (19999, ''), (20000, ''), (20001, ''), (20002, ''), (20003, ''), (20004, ''), (20005, '$144.00 '), (20006, ''), (20007, ''), (20008, ''), (20009, ''), (20010, ''), (20011, ''), (20012, ''), (20013, ''), (20014, ''), (20015, ''), (20016, ''), (20017, ''), (20018, ''), (20019, ''), (20020, ''), (20021, ''), (20022, ''), (20023, ''), (20024, ''), (20025, ''), (20026, ''), (20027, ''), (20028, ''), (20029, ''), (20030, ''), (20031, ''), (20032, ''), (20033, ''), (20034, ''), (20035, ''), (20036, ''), (20037, ''), (20038, ''), (20039, ''), (20040, ''), (20041, ''), (20042, ''), (20043, ''), (20044, ''), (20045, ''), (20046, ''), (20047, ''), (20048, ''), (20049, ''), (20050, ''), (20051, ''), (20052, ''), (20053, ''), (20054, ''), (20055, ''), (20056, ''), (20057, ''), (20058, ''), (20059, ''), (20060, ''), (20061, ''), (20062, ''), (20063, ''), (20064, ''), (20065, ''), (20066, ''), (20067, ''), (20068, ''), (20069, '$144.00 '), (20070, ''), (20071, ''), (20072, '$204.00 '), (20073, ''), (20074, ''), (20075, ''), (20076, '$144.00 '), (20077, '$409.00 '), (20078, ''), (20079, ''), (20080, '$359.00 '), (20081, ''), (20082, ''), (20083, '$149.00 '), (20084, ''), (20085, ''), (20086, '$204.00 '), (20087, ''), (20088, ''), (20089, '$158.00 '), (20090, ''), (20091, ''), (20092, ''), (20093, ''), (20094, ''), (20095, ''), (20096, ''), (20097, ''), (20098, ''), (20099, ''), (20100, ''), (20101, ''), (20102, ''), (20103, ''), (20104, ''), (20105, ''), (20106, ''), (20107, ''), (20108, ''), (20109, ''), (20110, ''), (20111, ''), (20112, ''), (20113, ''), (20114, ''), (20115, ''), (20116, ''), (20117, ''), (20118, ''), (20119, ''), (20120, ''), (20121, ''), (20122, ''), (20123, ''), (20124, ''), (20125, ''), (20126, ''), (20127, ''), (20128, ''), (20129, ''), (20130, ''), (20131, ''), (20132, ''), (20133, ''), (20134, '$139.00 '), (20135, ''), (20136, ''), (20137, ''), (20138, ''), (20139, ''), (20140, '$174.00 '), (20141, ''), (20142, ''), (20143, ''), (20144, '$275.00 '), (20145, ''), (20146, '$144.00 '), (20147, '$144.00 '), (20148, ''), (20149, ''), (20150, ''), (20151, ''), (20152, ''), (20153, '$124.00 '), (20154, ''), (20155, ''), (20156, ''), (20157, ''), (20158, ''), (20159, ''), (20160, ''), (20161, ''), (20162, ''), (20163, ''), (20164, ''), (20165, ''), (20166, ''), (20167, ''), (20168, ''), (20169, ''), (20170, ''), (20171, ''), (20172, ''), (20173, ''), (20174, ''), (20175, ''), (20176, ''), (20177, ''), (20178, ''), (20179, ''), (20180, ''), (20181, ''), (20182, ''), (20183, ''), (20184, ''), (20185, ''), (20186, ''), (20187, ''), (20188, ''), (20189, ''), (20190, ''), (20191, ''), (20192, ''), (20193, '$175.00 '), (20194, '$144.00 '), (20195, ''), (20196, ''), (20197, ''), (20198, ''), (20199, ''), (20200, ''), (20201, ''), (20202, ''), (20203, ''), (20204, '$144.00 '), (20205, '$449.00 '), (20206, ''), (20207, ''), (20208, ''), (20209, ''), (20210, ''), (20211, ''), (20212, ''), (20213, ''), (20214, ''), (20215, ''), (20216, ''), (20217, ''), (20218, ''), (20219, '$149.00 '), (20220, ''), (20221, ''), (20222, ''), (20223, ''), (20224, ''), (20225, ''), (20226, ''), (20227, ''), (20228, ''), (20229, ''), (20230, ''), (20231, ''), (20232, ''), (20233, ''), (20234, ''), (20235, ''), (20236, ''), (20237, ''), (20238, ''), (20239, ''), (20240, ''), (20241, ''), (20242, ''), (20243, ''), (20244, ''), (20245, ''), (20246, '$300.00 '), (20247, ''), (20248, ''), (20249, ''), (20250, ''), (20251, ''), (20252, ''), (20253, ''), (20254, '$229.00 '), (20255, ''), (20256, ''), (20257, ''), (20258, ''), (20259, ''), (20260, ''), (20261, ''), (20262, ''), (20263, ''), (20264, ''), (20265, ''), (20266, ''), (20267, ''), (20268, ''), (20269, ''), (20270, ''), (20271, ''), (20272, ''), (20273, ''), (20274, ''), (20275, ''), (20276, ''), (20277, ''), (20278, ''), (20279, '$89.00 '), (20280, ''), (20281, ''), (20282, ''), (20283, ''), (20284, ''), (20285, ''), (20286, ''), (20287, ''), (20288, ''), (20289, '$104.00 '), (20290, ''), (20291, ''), (20292, ''), (20293, ''), (20294, ''), (20295, ''), (20296, ''), (20297, ''), (20298, ''), (20299, ''), (20300, ''), (20301, ''), (20302, ''), (20303, ''), (20304, ''), (20305, ''), (20306, ''), (20307, ''), (20308, ''), (20309, '$144.00 '), (20310, ''), (20311, ''), (20312, ''), (20313, ''), (20314, '$109.00 '), (20315, ''), (20316, ''), (20317, ''), (20318, '$144.00 '), (20319, ''), (20320, ''), (20321, '$154.00 '), (20322, ''), (20323, ''), (20324, ''), (20325, ''), (20326, ''), (20327, ''), (20328, ''), (20329, ''), (20330, ''), (20331, ''), (20332, ''), (20333, ''), (20334, ''), (20335, '$144.00 '), (20336, ''), (20337, ''), (20338, ''), (20339, ''), (20340, ''), (20341, ''), (20342, ''), (20343, ''), (20344, ''), (20345, ''), (20346, ''), (20347, ''), (20348, ''), (20349, ''), (20350, ''), (20351, ''), (20352, ''), (20353, ''), (20354, ''), (20355, ''), (20356, ''), (20357, ''), (20358, ''), (20359, ''), (20360, ''), (20361, ''), (20362, ''), (20363, ''), (20364, ''), (20365, ''), (20366, ''), (20367, ''), (20368, ''), (20369, ''), (20370, ''), (20371, ''), (20372, ''), (20373, ''), (20374, ''), (20375, ''), (20376, ''), (20377, ''), (20378, ''), (20379, ''), (20380, ''), (20381, ''), (20382, ''), (20383, ''), (20384, ''), (20385, ''), (20386, ''), (20387, ''), (20388, ''), (20389, ''), (20390, '$229.00 '), (20391, '$149.00 '), (20392, ''), (20393, ''), (20394, ''), (20395, ''), (20396, ''), (20397, ''), (20398, '$154.00 '), (20399, ''), (20400, ''), (20401, ''), (20402, ''), (20403, ''), (20404, ''), (20405, ''), (20406, ''), (20407, ''), (20408, ''), (20409, ''), (20410, '$99.00 '), (20411, ''), (20412, ''), (20413, ''), (20414, ''), (20415, ''), (20416, ''), (20417, ''), (20418, ''), (20419, ''), (20420, ''), (20421, ''), (20422, ''), (20423, ''), (20424, ''), (20425, ''), (20426, '$144.00 '), (20427, ''), (20428, ''), (20429, ''), (20430, ''), (20431, '$409.00 '), (20432, ''), (20433, ''), (20434, ''), (20435, ''), (20436, ''), (20437, ''), (20438, ''), (20439, ''), (20440, ''), (20441, ''), (20442, ''), (20443, '$139.00 '), (20444, ''), (20445, ''), (20446, ''), (20447, ''), (20448, ''), (20449, ''), (20450, ''), (20451, ''), (20452, ''), (20453, ''), (20454, ''), (20455, ''), (20456, ''), (20457, ''), (20458, ''), (20459, ''), (20460, ''), (20461, ''), (20462, '$204.00 '), (20463, ''), (20464, ''), (20465, ''), (20466, ''), (20467, ''), (20468, ''), (20469, ''), (20470, '$104.00 '), (20471, ''), (20472, ''), (20473, ''), (20474, ''), (20475, ''), (20476, ''), (20477, ''), (20478, ''), (20479, ''), (20480, '$560.00 '), (20481, '$144.00 '), (20482, ''), (20483, ''), (20484, ''), (20485, ''), (20486, ''), (20487, ''), (20488, '$124.00 '), (20489, '$124.00 '), (20490, '$149.00 '), (20491, ''), (20492, ''), (20493, ''), (20494, ''), (20495, ''), (20496, ''), (20497, ''), (20498, ''), (20499, ''), (20500, ''), (20501, ''), (20502, ''), (20503, '$149.00 '), (20504, ''), (20505, '$144.00 '), (20506, '$144.00 '), (20507, ''), (20508, '$204.00 '), (20509, ''), (20510, ''), (20511, ''), (20512, ''), (20513, ''), (20514, ''), (20515, ''), (20516, ''), (20517, ''), (20518, ''), (20519, ''), (20520, ''), (20521, ''), (20522, ''), (20523, ''), (20524, ''), (20525, ''), (20526, ''), (20527, ''), (20528, ''), (20529, ''), (20530, ''), (20531, ''), (20532, ''), (20533, ''), (20534, '$89.00 '), (20535, '$89.00 '), (20536, '$89.00 '), (20537, ''), (20538, ''), (20539, ''), (20540, ''), (20541, ''), (20542, ''), (20543, ''), (20544, ''), (20545, ''), (20546, ''), (20547, ''), (20548, ''), (20549, ''), (20550, '$149.00 '), (20551, ''), (20552, ''), (20553, ''), (20554, ''), (20555, ''), (20556, ''), (20557, ''), (20558, ''), (20559, ''), (20560, ''), (20561, '$144.00 '), (20562, ''), (20563, ''), (20564, ''), (20565, ''), (20566, '$209.00 '), (20567, ''), (20568, ''), (20569, ''), (20570, ''), (20571, ''), (20572, '$144.00 '), (20573, ''), (20574, ''), (20575, ''), (20576, ''), (20577, ''), (20578, '$175.00 '), (20579, ''), (20580, ''), (20581, ''), (20582, ''), (20583, '$144.00 '), (20584, ''), (20585, ''), (20586, ''), (20587, ''), (20588, ''), (20589, ''), (20590, ''), (20591, ''), (20592, ''), (20593, ''), (20594, ''), (20595, ''), (20596, ''), (20597, ''), (20598, ''), (20599, ''), (20600, ''), (20601, ''), (20602, ''), (20603, ''), (20604, ''), (20605, ''), (20606, '$359.00 '), (20607, ''), (20608, ''), (20609, ''), (20610, ''), (20611, ''), (20612, ''), (20613, ''), (20614, ''), (20615, ''), (20616, ''), (20617, '$567.00 '), (20618, ''), (20619, ''), (20620, ''), (20621, ''), (20622, ''), (20623, ''), (20624, '$204.00 '), (20625, ''), (20626, ''), (20627, ''), (20628, '$144.00 '), (20629, '$104.00 '), (20630, '$409.00 '), (20631, ''), (20632, ''), (20633, ''), (20634, ''), (20635, ''), (20636, ''), (20637, ''), (20638, ''), (20639, ''), (20640, ''), (20641, ''), (20642, ''), (20643, ''), (20644, ''), (20645, ''), (20646, ''), (20647, ''), (20648, ''), (20649, ''), (20650, '$85.00 '), (20651, ''), (20652, ''), (20653, ''), (20654, ''), (20655, ''), (20656, ''), (20657, ''), (20658, ''), (20659, '$124.00 '), (20660, ''), (20661, ''), (20662, ''), (20663, ''), (20664, ''), (20665, ''), (20666, ''), (20667, ''), (20668, ''), (20669, ''), (20670, ''), (20671, ''), (20672, ''), (20673, ''), (20674, ''), (20675, ''), (20676, '$144.00 '), (20677, '$154.00 '), (20678, ''), (20679, ''), (20680, ''), (20681, ''), (20682, ''), (20683, ''), (20684, ''), (20685, ''), (20686, ''), (20687, ''), (20688, ''), (20689, '$154.00 '), (20690, ''), (20691, ''), (20692, ''), (20693, ''), (20694, ''), (20695, '$250.00 '), (20696, ''), (20697, ''), (20698, ''), (20699, ''), (20700, ''), (20701, '$154.00 '), (20702, ''), (20703, ''), (20704, ''), (20705, ''), (20706, ''), (20707, ''), (20708, ''), (20709, ''), (20710, ''), (20711, ''), (20712, ''), (20713, ''), (20714, ''), (20715, ''), (20716, ''), (20717, ''), (20718, ''), (20719, '$204.00 '), (20720, ''), (20721, ''), (20722, ''), (20723, ''), (20724, ''), (20725, '$140.00 '), (20726, ''), (20727, ''), (20728, '$144.00 '), (20729, ''), (20730, ''), (20731, ''), (20732, ''), (20733, '$144.00 '), (20734, '$175.00 '), (20735, ''), (20736, ''), (20737, ''), (20738, ''), (20739, '$125.00 '), (20740, ''), (20741, ''), (20742, ''), (20743, ''), (20744, ''), (20745, ''), (20746, ''), (20747, ''), (20748, ''), (20749, ''), (20750, ''), (20751, ''), (20752, ''), (20753, ''), (20754, ''), (20755, ''), (20756, ''), (20757, ''), (20758, ''), (20759, '$79.00 '), (20760, ''), (20761, ''), (20762, '$409.00 '), (20763, ''), (20764, ''), (20765, ''), (20766, ''), (20767, ''), (20768, '$69.00 '), (20769, ''), (20770, ''), (20771, ''), (20772, ''), (20773, ''), (20774, ''), (20775, ''), (20776, ''), (20777, ''), (20778, ''), (20779, ''), (20780, ''), (20781, ''), (20782, ''), (20783, '$459.00 '), (20784, ''), (20785, ''), (20786, ''), (20787, ''), (20788, ''), (20789, ''), (20790, ''), (20791, ''), (20792, ''), (20793, ''), (20794, ''), (20795, ''), (20796, '$144.00 '), (20797, ''), (20798, ''), (20799, '$35.00 '), (20800, '$35.00 '), (20801, ''), (20802, ''), (20803, '$35.00 '), (20804, ''), (20805, ''), (20806, ''), (20807, '$409.00 '), (20808, '$144.00 '), (20809, ''), (20810, ''), (20811, ''), (20812, ''), (20813, ''), (20814, ''), (20815, '$209.00 '), (20816, ''), (20817, ''), (20818, ''), (20819, ''), (20820, ''), (20821, ''), (20822, ''), (20823, ''), (20824, ''), (20825, '$464.00 '), (20826, ''), (20827, ''), (20828, ''), (20829, '$204.00 '), (20830, '$144.00 '), (20831, ''), (20832, ''), (20833, ''), (20834, ''), (20835, ''), (20836, ''), (20837, ''), (20838, ''), (20839, ''), (20840, ''), (20841, ''), (20842, '$204.00 '), (20843, ''), (20844, ''), (20845, '$275.00 '), (20846, ''), (20847, '$144.00 '), (20848, ''), (20849, ''), (20850, ''), (20851, ''), (20852, '$204.00 '), (20853, ''), (20854, ''), (20855, ''), (20856, ''), (20857, ''), (20858, ''), (20859, ''), (20860, ''), (20861, ''), (20862, ''), (20863, '$125.00 '), (20864, '$144.00 '), (20865, ''), (20866, '$85.00 '), (20867, ''), (20868, '$85.00 '), (20869, ''), (20870, ''), (20871, '$144.00 '), (20872, ''), (20873, ''), (20874, ''), (20875, ''), (20876, '$144.00 '), (20877, ''), (20878, ''), (20879, ''), (20880, ''), (20881, ''), (20882, ''), (20883, ''), (20884, ''), (20885, ''), (20886, ''), (20887, ''), (20888, ''), (20889, ''), (20890, '$409.00 '), (20891, ''), (20892, ''), (20893, ''), (20894, ''), (20895, ''), (20896, '$409.00 '), (20897, ''), (20898, ''), (20899, ''), (20900, ''), (20901, ''), (20902, '$204.00 '), (20903, ''), (20904, ''), (20905, ''), (20906, ''), (20907, ''), (20908, ''), (20909, ''), (20910, ''), (20911, ''), (20912, ''), (20913, ''), (20914, '$144.00 '), (20915, ''), (20916, ''), (20917, ''), (20918, ''), (20919, ''), (20920, ''), (20921, ''), (20922, ''), (20923, ''), (20924, ''), (20925, ''), (20926, ''), (20927, ''), (20928, ''), (20929, ''), (20930, ''), (20931, ''), (20932, '$359.00 '), (20933, ''), (20934, ''), (20935, ''), (20936, ''), (20937, ''), (20938, ''), (20939, ''), (20940, '$204.00 '), (20941, ''), (20942, ''), (20943, ''), (20944, ''), (20945, ''), (20946, ''), (20947, ''), (20948, ''), (20949, ''), (20950, ''), (20951, ''), (20952, ''), (20953, ''), (20954, ''), (20955, ''), (20956, ''), (20957, ''), (20958, '$144.00 '), (20959, ''), (20960, ''), (20961, ''), (20962, ''), (20963, ''), (20964, ''), (20965, ''), (20966, ''), (20967, ''), (20968, ''), (20969, ''), (20970, ''), (20971, ''), (20972, ''), (20973, '$250.00 '), (20974, ''), (20975, ''), (20976, '$175.00 '), (20977, ''), (20978, ''), (20979, ''), (20980, ''), (20981, ''), (20982, ''), (20983, ''), (20984, ''), (20985, ''), (20986, '$79.00 '), (20987, ''), (20988, ''), (20989, ''), (20990, ''), (20991, ''), (20992, '$104.00 '), (20993, ''), (20994, ''), (20995, ''), (20996, '$144.00 '), (20997, ''), (20998, ''), (20999, ''), (21000, ''), (21001, ''), (21002, ''), (21003, ''), (21004, ''), (21005, ''), (21006, ''), (21007, ''), (21008, ''), (21009, ''), (21010, ''), (21011, ''), (21012, ''), (21013, '$85.00 '), (21014, ''), (21015, ''), (21016, ''), (21017, '$85.00 '), (21018, '$85.00 '), (21019, ''), (21020, ''), (21021, ''), (21022, ''), (21023, ''), (21024, ''), (21025, ''), (21026, ''), (21027, ''), (21028, ''), (21029, ''), (21030, ''), (21031, ''), (21032, ''), (21033, ''), (21034, '$144.00 '), (21035, ''), (21036, ''), (21037, ''), (21038, ''), (21039, ''), (21040, ''), (21041, ''), (21042, ''), (21043, ''), (21044, '$85.00 '), (21045, ''), (21046, '$164.00 '), (21047, ''), (21048, ''), (21049, ''), (21050, ''), (21051, ''), (21052, 'Price '), (21053, ''), (21054, ''), (21055, ''), (21056, '$144.00 '), (21057, ''), (21058, ''), (21059, ''), (21060, '$359.00 '), (21061, '$144.00 '), (21062, '$204.00 '), (21063, '$144.00 '), (21064, ''), (21065, ''), (21066, ''), (21067, ''), (21068, 'in above'), (21069, ''), (21070, ''), (21071, ''), (21072, ''), (21073, ''), (21074, ''), (21075, ''), (21076, ''), (21077, ''), (21078, ''), (21079, ''), (21080, ''), (21081, ''), (21082, ''), (21083, ''), (21084, '$144.00 '), (21085, ''), (21086, ''), (21087, '$144.00 '), (21088, ''), (21089, ''), (21090, ''), (21091, ''), (21092, ''), (21093, ''), (21094, ''), (21095, ''), (21096, ''), (21097, ''), (21098, ''), (21099, ''), (21100, ''), (21101, ''), (21102, ''), (21103, ''), (21104, ''), (21105, ''), (21106, ''), (21107, ''), (21108, ''), (21109, '$85.00 '), (21110, ''), (21111, ''), (21112, ''), (21113, 'Incw/Above'), (21114, ''), (21115, ''), (21116, '$144.00 '), (21117, ''), (21118, ''), (21119, ''), (21120, '$204.00 '), (21121, '$85.00 '), (21122, ''), (21123, ''), (21124, ''), (21125, ''), (21126, ''), (21127, ''), (21128, ''), (21129, ''), (21130, ''), (21131, ''), (21132, ''), (21133, ''), (21134, ''), (21135, ''), (21136, ''), (21137, ''), (21138, '$85.00 '), (21139, ''), (21140, ''), (21141, ''), (21142, ''), (21143, ''), (21144, ''), (21145, ''), (21146, ''), (21147, ''), (21148, ''), (21149, ''), (21150, ''), (21151, ''), (21152, ''), (21153, ''), (21154, '$99.00 '), (21155, ''), (21156, ''), (21157, ''), (21158, ''), (21159, ''), (21160, ''), (21161, '$409.00 '), (21162, ''), (21163, ''), (21164, ''), (21165, ''), (21166, '$239.00 '), (21167, ''), (21168, ''), (21169, ''), (21170, ''), (21171, ''), (21172, ''), (21173, '$79.00 '), (21174, ''), (21175, ''), (21176, ''), (21177, ''), (21178, ''), (21179, ''), (21180, '$359.00 '), (21181, ''), (21182, ''), (21183, '$70.00 '), (21184, ''), (21185, '$204.00 '), (21186, ''), (21187, ''), (21188, ''), (21189, ''), (21190, ''), (21191, ''), (21192, ''), (21193, ''), (21194, ''), (21195, ''), (21196, '$409.00 '), (21197, ''), (21198, ''), (21199, ''), (21200, ''), (21201, ''), (21202, ''), (21203, '$55.00 '), (21204, ''), (21205, '$144.00 '), (21206, '$144.00 '), (21207, ''), (21208, ''), (21209, ''), (21210, ''), (21211, '$104.00 '), (21212, ''), (21213, ''), (21214, ''), (21215, ''), (21216, ''), (21217, ''), (21218, ''), (21219, ''), (21220, ''), (21221, ''), (21222, ''), (21223, ''), (21224, ''), (21225, ''), (21226, ''), (21227, ''), (21228, ''), (21229, ''), (21230, ''), (21231, '$85.00 '), (21232, '$79.00 '), (21233, ''), (21234, ''), (21235, ''), (21236, ''), (21237, ''), (21238, ''), (21239, ''), (21240, '$144.00 '), (21241, ''), (21242, ''), (21243, ''), (21244, ''), (21245, ''), (21246, ''), (21247, ''), (21248, ''), (21249, '$125.00 '), (21250, '$134.00 '), (21251, ''), (21252, ''), (21253, ''), (21254, ''), (21255, ''), (21256, ''), (21257, ''), (21258, '$125.00 '), (21259, ''), (21260, ''), (21261, ''), (21262, ''), (21263, '$85.00 '), (21264, ''), (21265, ''), (21266, ''), (21267, ''), (21268, ''), (21269, ''), (21270, ''), (21271, ''), (21272, ''), (21273, ''), (21274, ''), (21275, ''), (21276, ''), (21277, ''), (21278, ''), (21279, ''), (21280, '$204.00 '), (21281, ''), (21282, ''), (21283, ''), (21284, ''), (21285, ''), (21286, ''), (21287, ''), (21288, ''), (21289, ''), (21290, ''), (21291, ''), (21292, ''), (21293, ''), (21294, ''), (21295, ''), (21296, ''), (21297, ''), (21298, ''), (21299, ''), (21300, '$204.00 '), (21301, ''), (21302, '$149.00 '), (21303, '$409.00 '), (21304, '$359.00 '), (21305, ''), (21306, ''), (21307, ''), (21308, ''), (21309, ''), (21310, ''), (21311, '$144.00 '), (21312, ''), (21313, ''), (21314, ''), (21315, ''), (21316, ''), (21317, ''), (21318, ''), (21319, ''), (21320, ''), (21321, ''), (21322, ''), (21323, ''), (21324, ''), (21325, ''), (21326, ''), (21327, ''), (21328, '$204.00 '), (21329, ''), (21330, ''), (21331, ''), (21332, ''), (21333, '$409.00 '), (21334, '$85.00 '), (21335, ''), (21336, '$158.00 '), (21337, '$79.00 '), (21338, ''), (21339, ''), (21340, ''), (21341, ''), (21342, ''), (21343, ''), (21344, ''), (21345, ''), (21346, '$79.00 '), (21347, ''), (21348, ''), (21349, ''), (21350, ''), (21351, ''), (21352, ''), (21353, ''), (21354, ''), (21355, ''), (21356, ''), (21357, ''), (21358, ''), (21359, ''), (21360, ''), (21361, ''), (21362, ''), (21363, ''), (21364, ''), (21365, ''), (21366, ''), (21367, ''), (21368, ''), (21369, ''), (21370, ''), (21371, ''), (21372, ''), (21373, ''), (21374, ''), (21375, ''), (21376, ''), (21377, ''), (21378, ''), (21379, ''), (21380, ''), (21381, ''), (21382, '$149.00 '), (21383, '$204.00 '), (21384, ''), (21385, ''), (21386, ''), (21387, ''), (21388, ''), (21389, ''), (21390, ''), (21391, ''), (21392, ''), (21393, ''), (21394, '$175.00 '), (21395, ''), (21396, ''), (21397, '$175.00 '), (21398, ''), (21399, '$144.00 '), (21400, ''), (21401, ''), (21402, ''), (21403, ''), (21404, ''), (21405, ''), (21406, ''), (21407, ''), (21408, ''), (21409, '$409.00 '), (21410, '$144.00 '), (21411, '$409.00 '), (21412, ''), (21413, ''), (21414, ''), (21415, ''), (21416, ''), (21417, ''), (21418, ''), (21419, ''), (21420, ''), (21421, ''), (21422, ''), (21423, '$79.00 '), (21424, ''), (21425, ''), (21426, ''), (21427, ''), (21428, ''), (21429, ''), (21430, ''), (21431, ''), (21432, ''), (21433, ''), (21434, ''), (21435, ''), (21436, ''), (21437, ''), (21438, ''), (21439, ''), (21440, ''), (21441, '$144.00 '), (21442, ''), (21443, ''), (21444, ''), (21445, ''), (21446, ''), (21447, ''), (21448, ''), (21449, ''), (21450, ''), (21451, ''), (21452, ''), (21453, ''), (21454, ''), (21455, ''), (21456, ''), (21457, ''), (21458, ''), (21459, ''), (21460, '$125.00 '), (21461, ''), (21462, '$204.00 '), (21463, ''), (21464, ''), (21465, ''), (21466, ''), (21467, ''), (21468, '$409.00 '), (21469, ''), (21470, ''), (21471, ''), (21472, '$209.00 '), (21473, ''), (21474, ''), (21475, '$189.00 '), (21476, ''), (21477, ''), (21478, ''), (21479, ''), (21480, ''), (21481, '$409.00 '), (21482, ''), (21483, ''), (21484, ''), (21485, ''), (21486, ''), (21487, '$144.00 '), (21488, ''), (21489, ''), (21490, ''), (21491, '$359.00 '), (21492, ''), (21493, ''), (21494, ''), (21495, ''), (21496, ''), (21497, ''), (21498, ''), (21499, ''), (21500, ''), (21501, '$144.00 '), (21502, ''), (21503, '$104.00 '), (21504, ''), (21505, ''), (21506, ''), (21507, ''), (21508, ''), (21509, ''), (21510, ''), (21511, ''), (21512, ''), (21513, ''), (21514, ''), (21515, ''), (21516, ''), (21517, ''), (21518, ''), (21519, '$144.00 '), (21520, ''), (21521, '$249.00 '), (21522, ''), (21523, ''), (21524, ''), (21525, ''), (21526, ''), (21527, ''), (21528, ''), (21529, ''), (21530, ''), (21531, '$104.00 '), (21532, ''), (21533, ''), (21534, ''), (21535, '$134.00 '), (21536, ''), (21537, ''), (21538, ''), (21539, ''), (21540, ''), (21541, ''), (21542, ''), (21543, ''), (21544, ''), (21545, ''), (21546, ''), (21547, ''), (21548, ''), (21549, ''), (21550, ''), (21551, ''), (21552, ''), (21553, ''), (21554, ''), (21555, ''), (21556, ''), (21557, ''), (21558, ''), (21559, ''), (21560, ''), (21561, '$144.00 '), (21562, ''), (21563, ''), (21564, ''), (21565, ''), (21566, ''), (21567, ''), (21568, ''), (21569, ''), (21570, ''), (21571, ''), (21572, '$144.00 '), (21573, ''), (21574, ''), (21575, ''), (21576, '$174.00 '), (21577, ''), (21578, ''), (21579, '$204.00 '), (21580, ''), (21581, ''), (21582, '$79.00 '), (21583, ''), (21584, ''), (21585, ''), (21586, ''), (21587, ''), (21588, ''), (21589, ''), (21590, ''), (21591, '$149.00 '), (21592, ''), (21593, ''), (21594, '$204.00 '), (21595, ''), (21596, ''), (21597, ''), (21598, ''), (21599, ''), (21600, ''), (21601, ''), (21602, ''), (21603, ''), (21604, '$79.00 '), (21605, '$144.00 '), (21606, ''), (21607, '$204.00 '), (21608, ''), (21609, ''), (21610, '$79.00 '), (21611, ''), (21612, ''), (21613, ''), (21614, '$409.00 '), (21615, '$204.00 '), (21616, '$359.00 '), (21617, ''), (21618, ''), (21619, ''), (21620, ''), (21621, ''), (21622, ''), (21623, ''), (21624, ''), (21625, ''), (21626, ''), (21627, ''), (21628, ''), (21629, ''), (21630, ''), (21631, ''), (21632, ''), (21633, ''), (21634, ''), (21635, ''), (21636, ''), (21637, ''), (21638, ''), (21639, ''), (21640, ''), (21641, ''), (21642, ''), (21643, ''), (21644, '$300.00 '), (21645, '$300.00 '), (21646, ''), (21647, ''), (21648, ''), (21649, ''), (21650, ''), (21651, ''), (21652, ''), (21653, ''), (21654, ''), (21655, ''), (21656, ''), (21657, ''), (21658, ''), (21659, ''), (21660, ''), (21661, ''), (21662, ''), (21663, ''), (21664, ''), (21665, ''), (21666, ''), (21667, ''), (21668, ''), (21669, ''), (21670, ''), (21671, ''), (21672, ''), (21673, ''), (21674, ''), (21675, ''), (21676, ''), (21677, ''), (21678, ''), (21679, ''), (21680, ''), (21681, ''), (21682, ''), (21683, ''), (21684, ''), (21685, '$159.00 '), (21686, ''), (21687, ''), (21688, ''), (21689, '$144.00 '), (21690, ''), (21691, ''), (21692, ''), (21693, ''), (21694, ''), (21695, ''), (21696, ''), (21697, ''), (21698, ''), (21699, ''), (21700, ''), (21701, ''), (21702, ''), (21703, ''), (21704, ''), (21705, ''), (21706, ''), (21707, ''), (21708, ''), (21709, ''), (21710, '$409.00 '), (21711, ''), (21712, ''), (21713, ''), (21714, ''), (21715, '$144.00 '), (21716, ''), (21717, ''), (21718, ''), (21719, ''), (21720, ''), (21721, ''), (21722, ''), (21723, '$359.00 '), (21724, ''), (21725, ''), (21726, '$409.00 '), (21727, ''), (21728, ''), (21729, '$144.00 '), (21730, ''), (21731, ''), (21732, ''), (21733, ''), (21734, ''), (21735, ''), (21736, ''), (21737, ''), (21738, ''), (21739, ''), (21740, ''), (21741, ''), (21742, ''), (21743, ''), (21744, ''), (21745, ''), (21746, ''), (21747, ''), (21748, ''), (21749, ''), (21750, ''), (21751, ''), (21752, ''), (21753, ''), (21754, ''), (21755, ''), (21756, ''), (21757, ''), (21758, ''), (21759, '$199.00 '), (21760, ''), (21761, ''), (21762, ''), (21763, ''), (21764, ''), (21765, ''), (21766, ''), (21767, ''), (21768, ''), (21769, ''), (21770, ''), (21771, ''), (21772, ''), (21773, ''), (21774, ''), (21775, ''), (21776, '$144.00 '), (21777, ''), (21778, ''), (21779, ''), (21780, ''), (21781, ''), (21782, '$144.00 '), (21783, ''), (21784, ''), (21785, ''), (21786, ''), (21787, ''), (21788, ''), (21789, ''), (21790, ''), (21791, ''), (21792, ''), (21793, ''), (21794, ''), (21795, ''), (21796, ''), (21797, ''), (21798, ''), (21799, ''), (21800, ''), (21801, ''), (21802, ''), (21803, ''), (21804, ''), (21805, ''), (21806, ''), (21807, ''), (21808, ''), (21809, ''), (21810, ''), (21811, ''), (21812, ''), (21813, '$619.72 '), (21814, ''), (21815, ''), (21816, ''), (21817, ''), (21818, ''), (21819, '$225.35 '), (21820, ''), (21821, ''), (21822, ''), (21823, ''), (21824, ''), (21825, '$619.72 '), (21826, ''), (21827, ''), (21828, ''), (21829, ''), (21830, ''), (21831, ''), (21832, ''), (21833, ''), (21834, ''), (21835, ''), (21836, ''), (21837, ''), (21838, ''), (21839, ''), (21840, ''), (21841, ''), (21842, ''), (21843, ''), (21844, ''), (21845, ''), (21846, ''), (21847, ''), (21848, ''), (21849, ''), (21850, ''), (21851, ''), (21852, '$409.00 '), (21853, ''), (21854, ''), (21855, ''), (21856, 'In Price'), (21857, '$144.00 '), (21858, ''), (21859, ''), (21860, ''), (21861, ''), (21862, '$144.00 '), (21863, ''), (21864, ''), (21865, ''), (21866, ''), (21867, ''), (21868, ''), (21869, ''), (21870, ''), (21871, ''), (21872, ''), (21873, ''), (21874, ''), (21875, ''), (21876, ''), (21877, ''), (21878, ''), (21879, ''), (21880, ''), (21881, ''), (21882, ''), (21883, ''), (21884, ''), (21885, ''), (21886, ''), (21887, ''), (21888, ''), (21889, ''), (21890, ''), (21891, ''), (21892, ''), (21893, '$329.00 '), (21894, ''), (21895, ''), (21896, ''), (21897, ''), (21898, ''), (21899, ''), (21900, ''), (21901, ''), (21902, ''), (21903, ''), (21904, ''), (21905, ''), (21906, ''), (21907, ''), (21908, ''), (21909, ''), (21910, ''), (21911, ''), (21912, ''), (21913, ''), (21914, ''), (21915, ''), (21916, ''), (21917, ''), (21918, ''), (21919, ''), (21920, ''), (21921, ''), (21922, ''), (21923, ''), (21924, ''), (21925, ''), (21926, ''), (21927, ''), (21928, ''), (21929, ''), (21930, ''), (21931, ''), (21932, ''), (21933, ''), (21934, '$409.00 '), (21935, ''), (21936, ''), (21937, ''), (21938, ''), (21939, ''), (21940, ''), (21941, ''), (21942, ''), (21943, ''), (21944, ''), (21945, ''), (21946, ''), (21947, ''), (21948, ''), (21949, ''), (21950, ''), (21951, ''), (21952, ''), (21953, ''), (21954, '$175.00 '), (21955, '$175.00 '), (21956, ''), (21957, ''), (21958, '$149.00 '), (21959, ''), (21960, '$144.00 '), (21961, '$359.00 '), (21962, ''), (21963, ''), (21964, ''), (21965, ''), (21966, ''), (21967, ''), (21968, ''), (21969, '$144.00 '), (21970, ''), (21971, ''), (21972, '$85.00 '), (21973, '$85.00 '), (21974, ''), (21975, ''), (21976, '$175.00 '), (21977, ''), (21978, ''), (21979, ''), (21980, ''), (21981, ''), (21982, ''), (21983, ''), (21984, ''), (21985, ''), (21986, ''), (21987, ''), (21988, ''), (21989, ''), (21990, ''), (21991, ''), (21992, ''), (21993, ''), (21994, ''), (21995, ''), (21996, ''), (21997, ''), (21998, ''), (21999, ''), (22000, ''), (22001, '$89.00 '), (22002, '$105.00 '), (22003, ''), (22004, ''), (22005, ''), (22006, ''), (22007, ''), (22008, ''), (22009, ''), (22010, ''), (22011, ''), (22012, ''), (22013, ''), (22014, '$144.00 '), (22015, ''), (22016, ''), (22017, ''), (22018, ''), (22019, ''), (22020, ''), (22021, ''), (22022, ''), (22023, '$204.00 '), (22024, ''), (22025, ''), (22026, ''), (22027, ''), (22028, ''), (22029, ''), (22030, ''), (22031, ''), (22032, ''), (22033, ''), (22034, ''), (22035, ''), (22036, ''), (22037, ''), (22038, ''), (22039, ''), (22040, ''), (22041, ''), (22042, ''), (22043, ''), (22044, ''), (22045, ''), (22046, ''), (22047, ''), (22048, ''), (22049, ''), (22050, ''), (22051, ''), (22052, ''), (22053, ''), (22054, '$399.00 '), (22055, ''), (22056, ''), (22057, ''), (22058, ''), (22059, ''), (22060, ''), (22061, ''), (22062, ''), (22063, ''), (22064, ''), (22065, ''), (22066, ''), (22067, ''), (22068, ''), (22069, '$204.00 '), (22070, ''), (22071, ''), (22072, ''), (22073, ''), (22074, ''), (22075, ''), (22076, ''), (22077, ''), (22078, ''), (22079, ''), (22080, ''), (22081, ''), (22082, ''), (22083, ''), (22084, ''), (22085, ''), (22086, ''), (22087, ''), (22088, ''), (22089, ''), (22090, ''), (22091, ''), (22092, ''), (22093, ''), (22094, ''), (22095, ''), (22096, ''), (22097, ''), (22098, ''), (22099, ''), (22100, '$409.00 '), (22101, ''), (22102, '$104.00 '), (22103, '$104.00 '), (22104, '$104.00 '), (22105, ''), (22106, ''), (22107, ''), (22108, '$85.00 '), (22109, '$85.00 '), (22110, ''), (22111, ''), (22112, '$409.00 '), (22113, ''), (22114, ''), (22115, '$85.00 '), (22116, ''), (22117, ''), (22118, ''), (22119, ''), (22120, ''), (22121, ''), (22122, ''), (22123, ''), (22124, '$409.00 '), (22125, ''), (22126, ''), (22127, ''), (22128, '$409.00 '), (22129, ''), (22130, 'inc. '), (22131, ''), (22132, ''), (22133, ''), (22134, ''), (22135, ''), (22136, ''), (22137, ''), (22138, ''), (22139, ''), (22140, ''), (22141, ''), (22142, ''), (22143, ''), (22144, ''), (22145, ''), (22146, ''), (22147, ''), (22148, ''), (22149, ''), (22150, ''), (22151, ''), (22152, ''), (22153, ''), (22154, ''), (22155, ''), (22156, ''), (22157, ''), (22158, ''), (22159, ''), (22160, ''), (22161, ''), (22162, ''), (22163, ''), (22164, ''), (22165, ''), (22166, ''), (22167, ''), (22168, ''), (22169, ''), (22170, ''), (22171, ''), (22172, ''), (22173, '$390.00 '), (22174, ''), (22175, ''), (22176, ''), (22177, ''), (22178, ''), (22179, ''), (22180, ''), (22181, ''), (22182, ''), (22183, ''), (22184, ''), (22185, '$359.00 '), (22186, ''), (22187, '$409.00 '), (22188, ''), (22189, ''), (22190, ''), (22191, ''), (22192, ''), (22193, ''), (22194, ''), (22195, ''), (22196, ''), (22197, ''), (22198, ''), (22199, ''), (22200, ''), (22201, ''), (22202, ''), (22203, ''), (22204, ''), (22205, ''), (22206, ''), (22207, ''), (22208, '$2,950.00 '), (22209, ''), (22210, '$563.38 '), (22211, ''), (22212, ''), (22213, ''), (22214, ''), (22215, ''), (22216, ''), (22217, ''), (22218, '$225.35 '), (22219, ''), (22220, '$225.35 '), (22221, '$915.00 '), (22222, ''), (22223, ''), (22224, ''), (22225, '$225.35 '), (22226, ''), (22227, ''), (22228, ''), (22229, '$225.35 '), (22230, '$225.35 '), (22231, ''), (22232, ''), (22233, ''), (22234, '$619.72 '), (22235, ''), (22236, '$225.35 '), (22237, ''), (22238, '$570.42 '), (22239, '$570.42 '), (22240, ''), (22241, ''), (22242, ''), (22243, '$225.35 '), (22244, ''), (22245, ''), (22246, ''), (22247, ''), (22248, ''), (22249, ''), (22250, ''), (22251, ''), (22252, ''), (22253, ''), (22254, ''), (22255, ''), (22256, ''), (22257, ''), (22258, ''), (22259, ''), (22260, ''), (22261, ''), (22262, ''), (22263, ''), (22264, ''), (22265, ''), (22266, ''), (22267, ''), (22268, ''), (22269, ''), (22270, ''), (22271, '$85.00 '), (22272, '$144.00 '), (22273, '$144.00 '), (22274, ''), (22275, ''), (22276, ''), (22277, ''), (22278, ''), (22279, ''), (22280, ''), (22281, '$409.00 '), (22282, ''), (22283, ''), (22284, ''), (22285, '$359.00 '), (22286, ''), (22287, ''), (22288, ''), (22289, '$85.00 '), (22290, ''), (22291, ''), (22292, '$204.00 '), (22293, '$144.00 '), (22294, ''), (22295, ''), (22296, ''), (22297, ''), (22298, ''), (22299, ''), (22300, ''), (22301, ''), (22302, ''), (22303, ''), (22304, ''), (22305, ''), (22306, ''), (22307, ''), (22308, ''), (22309, ''), (22310, ''), (22311, ''), (22312, ''), (22313, ''), (22314, ''), (22315, ''), (22316, ''), (22317, ''), (22318, ''), (22319, ''), (22320, ''), (22321, '$139.00 '), (22322, ''), (22323, ''), (22324, ''), (22325, ''), (22326, ''), (22327, ''), (22328, ''), (22329, ''), (22330, ''), (22331, ''), (22332, ''), (22333, ''), (22334, ''), (22335, ''), (22336, ''), (22337, ''), (22338, ''), (22339, ''), (22340, ''), (22341, ''), (22342, ''), (22343, ''), (22344, ''), (22345, ''), (22346, ''), (22347, ''), (22348, ''), (22349, ''), (22350, ''), (22351, ''), (22352, ''), (22353, ''), (22354, ''), (22355, ''), (22356, ''), (22357, ''), (22358, ''), (22359, ''), (22360, ''), (22361, ''), (22362, ''), (22363, ''), (22364, ''), (22365, ''), (22366, ''), (22367, ''), (22368, ''), (22369, ''), (22370, ''), (22371, ''), (22372, ''), (22373, ''), (22374, ''), (22375, ''), (22376, ''), (22377, ''), (22378, ''), (22379, ''), (22380, ''), (22381, ''), (22382, ''), (22383, ''), (22384, '$204.00 '), (22385, ''), (22386, ''), (22387, ''), (22388, ''), (22389, ''), (22390, ''), (22391, '$85.00 '), (22392, ''), (22393, ''), (22394, ''), (22395, '$85.00 '), (22396, ''), (22397, ''), (22398, ''), (22399, '$144.00 '), (22400, ''), (22401, ''), (22402, ''), (22403, ''), (22404, ''), (22405, ''), (22406, ''), (22407, ''), (22408, ''), (22409, ''), (22410, '$104.00 '), (22411, ''), (22412, ''), (22413, ''), (22414, ''), (22415, ''), (22416, ''), (22417, ''), (22418, ''), (22419, '$409.00 '), (22420, ''), (22421, ''), (22422, ''), (22423, ''), (22424, ''), (22425, '$409.00 '), (22426, ''), (22427, ''), (22428, ''), (22429, ''), (22430, ''), (22431, ''), (22432, ''), (22433, ''), (22434, ''), (22435, ''), (22436, ''), (22437, ''), (22438, ''), (22439, ''), (22440, ''), (22441, ''), (22442, ''), (22443, ''), (22444, ''), (22445, ''), (22446, ''), (22447, ''), (22448, ''), (22449, ''), (22450, ''), (22451, ''), (22452, ''), (22453, ''), (22454, ''), (22455, ''), (22456, ''), (22457, ''), (22458, ''), (22459, ''), (22460, ''), (22461, ''), (22462, ''), (22463, ''), (22464, ''), (22465, ''), (22466, ''), (22467, ''), (22468, ''), (22469, ''), (22470, ''), (22471, ''), (22472, ''), (22473, '$144.00 '), (22474, ''), (22475, ''), (22476, ''), (22477, ''), (22478, ''), (22479, ''), (22480, ''), (22481, ''), (22482, ''), (22483, ''), (22484, ''), (22485, ''), (22486, ''), (22487, ''), (22488, ''), (22489, '$409.00 '), (22490, ''), (22491, ''), (22492, '$104.00 '), (22493, '$359.00 '), (22494, ''), (22495, ''), (22496, ''), (22497, ''), (22498, ''), (22499, ''), (22500, ''), (22501, ''), (22502, ''), (22503, ''), (22504, ''), (22505, ''), (22506, ''), (22507, ''), (22508, ''), (22509, ''), (22510, ''), (22511, ''), (22512, ''), (22513, ''), (22514, ''), (22515, ''), (22516, ''), (22517, ''), (22518, ''), (22519, ''), (22520, ''), (22521, ''), (22522, ''), (22523, ''), (22524, ''), (22525, ''), (22526, '$60.00 '), (22527, '$114.00 '), (22528, ''), (22529, ''), (22530, ''), (22531, ''), (22532, ''), (22533, ''), (22534, ''), (22535, ''), (22536, ''), (22537, ''), (22538, ''), (22539, ''), (22540, ''), (22541, ''), (22542, ''), (22543, ''), (22544, ''), (22545, ''), (22546, ''), (22547, ''), (22548, ''), (22549, ''), (22550, ''), (22551, ''), (22552, ''), (22553, ''), (22554, ''), (22555, ''), (22556, '$563.38 '), (22557, ''), (22558, ''), (22559, ''), (22560, ''), (22561, ''), (22562, ''), (22563, ''), (22564, ''), (22565, ''), (22566, ''), (22567, ''), (22568, ''), (22569, ''), (22570, ''), (22571, ''), (22572, ''), (22573, ''), (22574, ''), (22575, ''), (22576, '$204.00 '), (22577, ''), (22578, ''), (22579, ''), (22580, ''), (22581, ''), (22582, ''), (22583, ''), (22584, ''), (22585, ''), (22586, ''), (22587, ''), (22588, ''), (22589, ''), (22590, ''), (22591, ''), (22592, ''), (22593, ''), (22594, ''), (22595, ''), (22596, ''), (22597, ''), (22598, ''), (22599, ''), (22600, ''), (22601, ''), (22602, ''), (22603, ''), (22604, ''), (22605, ''), (22606, ''), (22607, ''), (22608, ''), (22609, ''), (22610, ''), (22611, ''), (22612, ''), (22613, ''), (22614, ''), (22615, ''), (22616, ''), (22617, ''), (22618, ''), (22619, ''), (22620, ''), (22621, ''), (22622, ''), (22623, ''), (22624, ''), (22625, ''), (22626, ''), (22627, ''), (22628, ''), (22629, ''), (22630, ''), (22631, ''), (22632, ''), (22633, ''), (22634, ''), (22635, ''), (22636, ''), (22637, ''), (22638, ''), (22639, ''), (22640, ''), (22641, ''), (22642, ''), (22643, '$204.00 '), (22644, ''), (22645, ''), (22646, ''), (22647, '$144.00 '), (22648, '$144.00 '), (22649, ''), (22650, ''), (22651, '$359.00 '), (22652, '$359.00 '), (22653, ''), (22654, ''), (22655, ''), (22656, ''), (22657, ''), (22658, ''), (22659, ''), (22660, '$204.00 '), (22661, ''), (22662, '$204.00 '), (22663, ''), (22664, ''), (22665, ''), (22666, ''), (22667, '$144.00 '), (22668, ''), (22669, ''), (22670, ''), (22671, ''), (22672, ''), (22673, ''), (22674, ''), (22675, ''), (22676, ''), (22677, ''), (22678, ''), (22679, ''), (22680, ''), (22681, ''), (22682, ''), (22683, ''), (22684, ''), (22685, ''), (22686, ''), (22687, ''), (22688, ''), (22689, ''), (22690, ''), (22691, ''), (22692, ''), (22693, ''), (22694, ''), (22695, ''), (22696, ''), (22697, ''), (22698, ''), (22699, ''), (22700, ''), (22701, ''), (22702, ''), (22703, ''), (22704, ''), (22705, ''), (22706, ''), (22707, ''), (22708, ''), (22709, ''), (22710, ''), (22711, ''), (22712, ''), (22713, ''), (22714, ''), (22715, '$349.00 '), (22716, ''), (22717, ''), (22718, '$144.00 '), (22719, ''), (22720, ''), (22721, ''), (22722, ''), (22723, ''), (22724, '$124.00 '), (22725, ''), (22726, ''), (22727, ''), (22728, ''), (22729, ''), (22730, ''), (22731, ''), (22732, ''), (22733, ''), (22734, ''), (22735, ''), (22736, ''), (22737, ''), (22738, ''), (22739, ''), (22740, ''), (22741, ''), (22742, ''), (22743, ''), (22744, ''), (22745, ''), (22746, ''), (22747, ''), (22748, ''), (22749, ''), (22750, ''), (22751, ''), (22752, ''), (22753, ''), (22754, ''), (22755, ''), (22756, ''), (22757, ''), (22758, ''), (22759, ''), (22760, ''), (22761, ''), (22762, ''), (22763, ''), (22764, ''), (22765, ''), (22766, ''), (22767, ''), (22768, ''), (22769, ''), (22770, ''), (22771, ''), (22772, ''), (22773, ''), (22774, ''), (22775, '$144.00 '), (22776, ''), (22777, ''), (22778, ''), (22779, ''), (22780, ''), (22781, ''), (22782, ''), (22783, ''), (22784, ''), (22785, ''), (22786, ''), (22787, ''), (22788, '$359.00 '), (22789, ''), (22790, ''), (22791, ''), (22792, ''), (22793, ''), (22794, ''), (22795, ''), (22796, ''), (22797, ''), (22798, ''), (22799, ''), (22800, ''), (22801, ''), (22802, ''), (22803, ''), (22804, ''), (22805, ''), (22806, ''), (22807, ''), (22808, ''), (22809, ''), (22810, ''), (22811, ''), (22812, ''), (22813, ''), (22814, ''), (22815, ''), (22816, ''), (22817, '$300.00 '), (22818, ''), (22819, ''), (22820, ''), (22821, ''), (22822, ''), (22823, ''), (22824, '$567.00 '), (22825, '$149.00 '), (22826, ''), (22827, ''), (22828, ''), (22829, ''), (22830, ''), (22831, ''), (22832, ''), (22833, ''), (22834, ''), (22835, ''), (22836, ''), (22837, ''), (22838, ''), (22839, ''), (22840, ''), (22841, ''), (22842, ''), (22843, ''), (22844, ''), (22845, ''), (22846, ''), (22847, ''), (22848, ''), (22849, ''), (22850, '$329.00 '), (22851, ''), (22852, ''), (22853, '$204.00 '), (22854, ''), (22855, ''), (22856, ''), (22857, ''), (22858, ''), (22859, ''), (22860, ''), (22861, ''), (22862, ''), (22863, ''), (22864, ''), (22865, ''), (22866, ''), (22867, ''), (22868, ''), (22869, ''), (22870, ''), (22871, ''), (22872, ''), (22873, ''), (22874, ''), (22875, ''), (22876, ''), (22877, ''), (22878, ''), (22879, ''), (22880, '$144.00 '), (22881, ''), (22882, ''), (22883, ''), (22884, ''), (22885, ''), (22886, ''), (22887, ''), (22888, ''), (22889, '$144.00 '), (22890, '$104.00 '), (22891, ''), (22892, ''), (22893, ''), (22894, ''), (22895, ''), (22896, ''), (22897, ''), (22898, ''), (22899, ''), (22900, ''), (22901, ''), (22902, ''), (22903, ''), (22904, ''), (22905, ''), (22906, '$144.00 '), (22907, ''), (22908, ''), (22909, ''), (22910, ''), (22911, ''), (22912, '$140.00 '), (22913, ''), (22914, ''), (22915, ''), (22916, ''), (22917, ''), (22918, ''), (22919, ''), (22920, ''), (22921, ''), (22922, ''), (22923, ''), (22924, ''), (22925, ''), (22926, ''), (22927, ''), (22928, ''), (22929, ''), (22930, ''), (22931, ''), (22932, ''), (22933, ''), (22934, ''), (22935, ''), (22936, ''), (22937, ''), (22938, ''), (22939, ''), (22940, ''), (22941, ''), (22942, ''), (22943, ''), (22944, ''), (22945, ''), (22946, ''), (22947, ''), (22948, ''), (22949, ''), (22950, ''), (22951, ''), (22952, ''), (22953, ''), (22954, ''), (22955, ''), (22956, ''), (22957, ''), (22958, ''), (22959, ''), (22960, ''), (22961, ''), (22962, ''), (22963, ''), (22964, ''), (22965, ''), (22966, ''), (22967, ''), (22968, ''), (22969, '$149.00 '), (22970, ''), (22971, ''), (22972, '$214.00 '), (22973, ''), (22974, ''), (22975, ''), (22976, ''), (22977, ''), (22978, ''), (22979, ''), (22980, ''), (22981, ''), (22982, ''), (22983, ''), (22984, ''), (22985, ''), (22986, ''), (22987, ''), (22988, ''), (22989, ''), (22990, ''), (22991, ''), (22992, ''), (22993, ''), (22994, ''), (22995, ''), (22996, ''), (22997, ''), (22998, ''), (22999, ''), (23000, ''), (23001, ''), (23002, ''), (23003, ''), (23004, ''), (23005, ''), (23006, ''), (23007, ''), (23008, ''), (23009, ''), (23010, ''), (23011, ''), (23012, ''), (23013, ''), (23014, '$399.00 '), (23015, ''), (23016, ''), (23017, ''), (23018, ''), (23019, ''), (23020, ''), (23021, ''), (23022, ''), (23023, ''), (23024, ''), (23025, ''), (23026, ''), (23027, ''), (23028, ''), (23029, ''), (23030, ''), (23031, ''), (23032, ''), (23033, '$204.00 '), (23034, ''), (23035, ''), (23036, ''), (23037, ''), (23038, ''), (23039, ''), (23040, ''), (23041, ''), (23042, ''), (23043, ''), (23044, ''), (23045, '$149.00 '), (23046, ''), (23047, ''), (23048, ''), (23049, ''), (23050, ''), (23051, '$144.00 '), (23052, '$144.00 '), (23053, ''), (23054, ''), (23055, ''), (23056, ''), (23057, ''), (23058, ''), (23059, '$124.00 '), (23060, ''), (23061, '$149.00 '), (23062, ''), (23063, ''), (23064, ''), (23065, ''), (23066, ''), (23067, ''), (23068, ''), (23069, ''), (23070, ''), (23071, ''), (23072, ''), (23073, ''), (23074, '$149.00 '), (23075, ''), (23076, '$144.00 '), (23077, ''), (23078, ''), (23079, ''), (23080, '$144.00 '), (23081, ''), (23082, ''), (23083, ''), (23084, ''), (23085, ''), (23086, ''), (23087, ''), (23088, ''), (23089, '$204.00 '), (23090, ''), (23091, ''), (23092, ''), (23093, ''), (23094, ''), (23095, ''), (23096, ''), (23097, ''), (23098, ''), (23099, ''), (23100, ''), (23101, ''), (23102, ''), (23103, ''), (23104, ''), (23105, '$89.00 '), (23106, '$89.00 '), (23107, ''), (23108, ''), (23109, ''), (23110, ''), (23111, ''), (23112, ''), (23113, ''), (23114, ''), (23115, ''), (23116, ''), (23117, ''), (23118, ''), (23119, ''), (23120, ''), (23121, '$409.00 '), (23122, ''), (23123, ''), (23124, ''), (23125, ''), (23126, ''), (23127, ''), (23128, ''), (23129, ''), (23130, '$409.00 '), (23131, '$144.00 '), (23132, '$409.00 '), (23133, ''), (23134, ''), (23135, ''), (23136, ''), (23137, ''), (23138, ''), (23139, ''), (23140, ''), (23141, ''), (23142, ''), (23143, '$85.00 '), (23144, ''), (23145, ''), (23146, ''), (23147, ''), (23148, ''), (23149, ''), (23150, ''), (23151, ''), (23152, ''), (23153, ''), (23154, ''), (23155, ''), (23156, ''), (23157, ''), (23158, ''), (23159, ''), (23160, ''), (23161, ''), (23162, ''), (23163, ''), (23164, ''), (23165, ''), (23166, ''), (23167, ''), (23168, ''), (23169, ''), (23170, ''), (23171, ''), (23172, ''), (23173, ''), (23174, ''), (23175, ''), (23176, ''), (23177, '$204.00 '), (23178, ''), (23179, ''), (23180, ''), (23181, ''), (23182, ''), (23183, ''), (23184, ''), (23185, ''), (23186, ''), (23187, ''), (23188, '$144.00 '), (23189, ''), (23190, ''), (23191, ''), (23192, ''), (23193, ''), (23194, ''), (23195, '$144.00 '), (23196, ''), (23197, ''), (23198, ''), (23199, '$144.00 '), (23200, '$104.00 '), (23201, '$144.00 '), (23202, ''), (23203, ''), (23204, ''), (23205, ''), (23206, ''), (23207, '$35.00 '), (23208, ''), (23209, ''), (23210, ''), (23211, ''), (23212, ''), (23213, ''), (23214, ''), (23215, ''), (23216, ''), (23217, ''), (23218, ''), (23219, ''), (23220, ''), (23221, ''), (23222, ''), (23223, ''), (23224, ''), (23225, ''), (23226, ''), (23227, ''), (23228, ''), (23229, ''), (23230, ''), (23231, ''), (23232, ''), (23233, ''), (23234, ''), (23235, ''), (23236, ''), (23237, ''), (23238, ''), (23239, '$409.00 '), (23240, ''), (23241, ''), (23242, ''), (23243, '$359.00 '), (23244, '$409.00 '), (23245, ''), (23246, ''), (23247, ''), (23248, ''), (23249, ''), (23250, '$359.00 '), (23251, '$359.00 '), (23252, ''), (23253, ''), (23254, ''), (23255, ''), (23256, ''), (23257, ''), (23258, ''), (23259, '$204.00 '), (23260, ''), (23261, ''), (23262, ''), (23263, ''), (23264, ''), (23265, ''), (23266, '$175.00 '), (23267, ''), (23268, ''), (23269, ''), (23270, ''), (23271, ''), (23272, ''), (23273, ''), (23274, ''), (23275, ''), (23276, ''), (23277, ''), (23278, ''), (23279, ''), (23280, ''), (23281, ''), (23282, ''), (23283, ''), (23284, ''), (23285, ''), (23286, ''), (23287, ''), (23288, ''), (23289, ''), (23290, '$204.00 '), (23291, ''), (23292, ''), (23293, ''), (23294, ''), (23295, ''), (23296, '$209.00 '), (23297, ''), (23298, ''), (23299, '$144.00 '), (23300, ''), (23301, '$149.00 '), (23302, ''), (23303, ''), (23304, '$144.00 '), (23305, ''), (23306, ''), (23307, ''), (23308, ''), (23309, ''), (23310, ''), (23311, ''), (23312, ''), (23313, '$409.00 '), (23314, '$104.00 '), (23315, ''), (23316, ''), (23317, ''), (23318, ''), (23319, ''), (23320, ''), (23321, ''), (23322, ''), (23323, ''), (23324, ''), (23325, ''), (23326, ''), (23327, ''), (23328, ''), (23329, ''), (23330, ''), (23331, ''), (23332, ''), (23333, ''), (23334, ''), (23335, ''), (23336, ''), (23337, ''), (23338, ''), (23339, ''), (23340, ''), (23341, ''), (23342, ''), (23343, ''), (23344, ''), (23345, ''), (23346, ''), (23347, ''), (23348, ''), (23349, ''), (23350, ''), (23351, ''), (23352, ''), (23353, ''), (23354, '$149.00 '), (23355, ''), (23356, ''), (23357, ''), (23358, ''), (23359, ''), (23360, ''), (23361, ''), (23362, ''), (23363, '$175.00 '), (23364, ''), (23365, ''), (23366, ''), (23367, '$144.00 '), (23368, ''), (23369, ''), (23370, '$35.00 '), (23371, '$35.00 '), (23372, ''), (23373, ''), (23374, '$35.00 '), (23375, ''), (23376, ''), (23377, '$204.00 '), (23378, ''), (23379, ''), (23380, ''), (23381, '$149.00 '), (23382, '$470.00 '), (23383, ''), (23384, ''), (23385, ''), (23386, ''), (23387, ''), (23388, ''), (23389, ''), (23390, ''), (23391, ''), (23392, ''), (23393, ''), (23394, ''), (23395, ''), (23396, ''), (23397, ''), (23398, ''), (23399, ''), (23400, '$288.00 '), (23401, '$144.00 '), (23402, ''), (23403, '$144.00 '), (23404, ''), (23405, ''), (23406, ''), (23407, ''), (23408, ''), (23409, ''), (23410, ''), (23411, ''), (23412, ''), (23413, ''), (23414, ''), (23415, ''), (23416, ''), (23417, ''), (23418, '$144.00 '), (23419, ''), (23420, ''), (23421, ''), (23422, ''), (23423, ''), (23424, ''), (23425, ''), (23426, ''), (23427, ''), (23428, ''), (23429, ''), (23430, ''), (23431, ''), (23432, ''), (23433, ''), (23434, ''), (23435, ''), (23436, ''), (23437, '$85.00 '), (23438, ''), (23439, '$85.00 '), (23440, ''), (23441, ''), (23442, '$409.00 '), (23443, ''), (23444, ''), (23445, ''), (23446, ''), (23447, ''), (23448, ''), (23449, ''), (23450, ''), (23451, ''), (23452, ''), (23453, ''), (23454, ''), (23455, ''), (23456, ''), (23457, ''), (23458, ''), (23459, ''), (23460, ''), (23461, '$409.00 '), (23462, ''), (23463, ''), (23464, ''), (23465, ''), (23466, ''), (23467, ''), (23468, '$204.00 '), (23469, ''), (23470, ''), (23471, ''), (23472, ''); INSERT INTO `repair_price` (`PriceID`, `Cost`) VALUES (23473, '$204.00 '), (23474, ''), (23475, ''), (23476, ''), (23477, ''), (23478, ''), (23479, ''), (23480, ''), (23481, ''), (23482, ''), (23483, ''), (23484, ''), (23485, '$144.00 '), (23486, ''), (23487, ''), (23488, ''), (23489, ''), (23490, ''), (23491, ''), (23492, ''), (23493, ''), (23494, ''), (23495, ''), (23496, ''), (23497, ''), (23498, ''), (23499, ''), (23500, '$409.00 '), (23501, ''), (23502, ''), (23503, ''), (23504, ''), (23505, ''), (23506, ''), (23507, '$85.00 '), (23508, ''), (23509, ''), (23510, ''), (23511, ''), (23512, ''), (23513, ''), (23514, ''), (23515, ''), (23516, ''), (23517, ''), (23518, ''), (23519, ''), (23520, ''), (23521, ''), (23522, ''), (23523, ''), (23524, ''), (23525, ''), (23526, ''), (23527, ''), (23528, ''), (23529, ''), (23530, ''), (23531, ''), (23532, ''), (23533, ''), (23534, ''), (23535, ''), (23536, ''), (23537, ''), (23538, ''), (23539, ''), (23540, ''), (23541, ''), (23542, ''), (23543, ''), (23544, ''), (23545, ''), (23546, ''), (23547, ''), (23548, ''), (23549, ''), (23550, ''), (23551, ''), (23552, ''), (23553, ''), (23554, ''), (23555, ''), (23556, ''), (23557, '$64.00 '), (23558, ''), (23559, ''), (23560, ''), (23561, ''), (23562, ''), (23563, ''), (23564, ''), (23565, ''), (23566, '$144.00 '), (23567, ''), (23568, ''), (23569, ''), (23570, ''), (23571, ''), (23572, ''), (23573, ''), (23574, ''), (23575, ''), (23576, ''), (23577, ''), (23578, ''), (23579, ''), (23580, ''), (23581, ''), (23582, ''), (23583, ''), (23584, '$85.00 '), (23585, ''), (23586, ''), (23587, ''), (23588, '$104.00 '), (23589, '$85.00 '), (23590, ''), (23591, ''), (23592, ''), (23593, ''), (23594, ''), (23595, ''), (23596, ''), (23597, ''), (23598, ''), (23599, ''), (23600, ''), (23601, ''), (23602, ''), (23603, ''), (23604, ''), (23605, ''), (23606, ''), (23607, ''), (23608, ''), (23609, ''), (23610, ''), (23611, ''), (23612, ''), (23613, ''), (23614, ''), (23615, ''), (23616, ''), (23617, ''), (23618, ''), (23619, ''), (23620, ''), (23621, ''), (23622, ''), (23623, '$244.00 '), (23624, ''), (23625, ''), (23626, ''), (23627, ''), (23628, ''), (23629, ''), (23630, ''), (23631, ''), (23632, ''), (23633, '$144.00 '), (23634, '$144.00 '), (23635, '$204.00 '), (23636, ''), (23637, ''), (23638, ''), (23639, 'price'), (23640, ''), (23641, ''), (23642, ''), (23643, ''), (23644, ''), (23645, ''), (23646, ''), (23647, ''), (23648, ''), (23649, ''), (23650, ''), (23651, ''), (23652, ''), (23653, ''), (23654, ''), (23655, ''), (23656, ''), (23657, ''), (23658, '$85.00 '), (23659, ''), (23660, ''), (23661, ''), (23662, ''), (23663, ''), (23664, ''), (23665, ''), (23666, ''), (23667, ''), (23668, ''), (23669, ''), (23670, ''), (23671, ''), (23672, ''), (23673, ''), (23674, ''), (23675, ''), (23676, ''), (23677, ''), (23678, ''), (23679, ''), (23680, ''), (23681, '$409.00 '), (23682, ''), (23683, ''), (23684, '$144.00 '), (23685, ''), (23686, ''), (23687, ''), (23688, ''), (23689, ''), (23690, ''), (23691, '$204.00 '), (23692, '$85.00 '), (23693, ''), (23694, ''), (23695, ''), (23696, ''), (23697, ''), (23698, ''), (23699, ''), (23700, ''), (23701, ''), (23702, ''), (23703, ''), (23704, ''), (23705, ''), (23706, ''), (23707, ''), (23708, ''), (23709, '$85.00 '), (23710, ''), (23711, ''), (23712, ''), (23713, ''), (23714, '$209.00 '), (23715, ''), (23716, ''), (23717, ''), (23718, ''), (23719, ''), (23720, ''), (23721, ''), (23722, ''), (23723, ''), (23724, ''), (23725, '$204.00 '), (23726, ''), (23727, ''), (23728, ''), (23729, ''), (23730, ''), (23731, ''), (23732, '$409.00 '), (23733, ''), (23734, ''), (23735, ''), (23736, ''), (23737, ''), (23738, ''), (23739, ''), (23740, ''), (23741, ''), (23742, ''), (23743, ''), (23744, ''), (23745, ''), (23746, ''), (23747, ''), (23748, '$99.00 '), (23749, '$359.00 '), (23750, '$85.00 '), (23751, ''), (23752, ''), (23753, ''), (23754, '$70.00 '), (23755, ''), (23756, ''), (23757, ''), (23758, ''), (23759, ''), (23760, ''), (23761, ''), (23762, ''), (23763, ''), (23764, ''), (23765, ''), (23766, ''), (23767, ''), (23768, ''), (23769, ''), (23770, ''), (23771, ''), (23772, ''), (23773, ''), (23774, '$55.00 '), (23775, ''), (23776, '$144.00 '), (23777, '$144.00 '), (23778, ''), (23779, ''), (23780, ''), (23781, ''), (23782, '$104.00 '), (23783, ''), (23784, ''), (23785, ''), (23786, ''), (23787, ''), (23788, ''), (23789, ''), (23790, ''), (23791, ''), (23792, ''), (23793, ''), (23794, ''), (23795, ''), (23796, ''), (23797, ''), (23798, ''), (23799, ''), (23800, ''), (23801, ''), (23802, ''), (23803, ''), (23804, ''), (23805, ''), (23806, ''), (23807, ''), (23808, ''), (23809, ''), (23810, ''), (23811, '$144.00 '), (23812, ''), (23813, ''), (23814, ''), (23815, ''), (23816, ''), (23817, ''), (23818, ''), (23819, ''), (23820, '$125.00 '), (23821, '$134.00 '), (23822, ''), (23823, ''), (23824, ''), (23825, ''), (23826, ''), (23827, ''), (23828, ''), (23829, '$125.00 '), (23830, ''), (23831, ''), (23832, ''), (23833, ''), (23834, '$85.00 '), (23835, ''), (23836, ''), (23837, ''), (23838, ''), (23839, ''), (23840, ''), (23841, ''), (23842, '$359.00 '), (23843, ''), (23844, ''), (23845, ''), (23846, '$409.00 '), (23847, '$409.00 '), (23848, ''), (23849, ''), (23850, ''), (23851, '$204.00 '), (23852, ''), (23853, ''), (23854, ''), (23855, ''), (23856, ''), (23857, ''), (23858, ''), (23859, ''), (23860, ''), (23861, ''), (23862, ''), (23863, ''), (23864, ''), (23865, ''), (23866, ''), (23867, ''), (23868, ''), (23869, ''), (23870, ''), (23871, '$204.00 '), (23872, ''), (23873, ''), (23874, ''), (23875, '$204.00 '), (23876, '$359.00 '), (23877, ''), (23878, ''), (23879, ''), (23880, ''), (23881, ''), (23882, '$409.00 '), (23883, ''), (23884, ''), (23885, ''), (23886, ''), (23887, ''), (23888, ''), (23889, ''), (23890, ''), (23891, ''), (23892, ''), (23893, ''), (23894, ''), (23895, ''), (23896, ''), (23897, ''), (23898, ''), (23899, ''), (23900, ''), (23901, ''), (23902, ''), (23903, ''), (23904, ''), (23905, '$409.00 '), (23906, '$259.00 '), (23907, '$158.00 '), (23908, ''), (23909, ''), (23910, ''), (23911, ''), (23912, ''), (23913, ''), (23914, ''), (23915, ''), (23916, ''), (23917, '$79.00 '), (23918, ''), (23919, ''), (23920, ''), (23921, ''), (23922, ''), (23923, ''), (23924, ''), (23925, ''), (23926, ''), (23927, ''), (23928, ''), (23929, ''), (23930, ''), (23931, '$144.00 '), (23932, ''), (23933, ''), (23934, ''), (23935, '$85.00 '), (23936, ''), (23937, ''), (23938, ''), (23939, ''), (23940, ''), (23941, ''), (23942, ''), (23943, '$359.00 '), (23944, ''), (23945, ''), (23946, ''), (23947, ''), (23948, ''), (23949, ''), (23950, ''), (23951, ''), (23952, ''), (23953, ''), (23954, ''), (23955, ''), (23956, ''), (23957, ''), (23958, ''), (23959, ''), (23960, ''), (23961, ''), (23962, ''), (23963, ''), (23964, ''), (23965, '$175.00 '), (23966, ''), (23967, '$175.00 '), (23968, '$175.00 '), (23969, ''), (23970, ''), (23971, ''), (23972, '$409.00 '), (23973, ''), (23974, ''), (23975, ''), (23976, ''), (23977, ''), (23978, ''), (23979, ''), (23980, '$409.00 '), (23981, '$144.00 '), (23982, ''), (23983, ''), (23984, ''), (23985, ''), (23986, ''), (23987, ''), (23988, ''), (23989, ''), (23990, ''), (23991, ''), (23992, ''), (23993, '$79.00 '), (23994, '$79.00 '), (23995, ''), (23996, ''), (23997, ''), (23998, ''), (23999, ''), (24000, ''), (24001, ''), (24002, ''), (24003, '$99.00 '), (24004, ''), (24005, ''), (24006, ''), (24007, ''), (24008, ''), (24009, ''), (24010, ''), (24011, ''), (24012, ''), (24013, ''), (24014, ''), (24015, '$409.00 '), (24016, ''), (24017, ''), (24018, ''), (24019, ''), (24020, ''), (24021, ''), (24022, ''), (24023, ''), (24024, ''), (24025, ''), (24026, ''), (24027, ''), (24028, ''), (24029, ''), (24030, ''), (24031, '$125.00 '), (24032, ''), (24033, '$204.00 '), (24034, ''), (24035, ''), (24036, ''), (24037, '$99.00 '), (24038, ''), (24039, ''), (24040, ''), (24041, ''), (24042, ''), (24043, ''), (24044, ''), (24045, ''), (24046, 'Inc.'), (24047, ''), (24048, ''), (24049, '$409.00 '), (24050, ''), (24051, ''), (24052, ''), (24053, ''), (24054, ''), (24055, ''), (24056, ''), (24057, ''), (24058, ''), (24059, ''), (24060, ''), (24061, ''), (24062, ''), (24063, ''), (24064, ''), (24065, ''), (24066, ''), (24067, ''), (24068, ''), (24069, '$144.00 '), (24070, '$144.00 '), (24071, ''), (24072, '$144.00 '), (24073, ''), (24074, '$144.00 '), (24075, ''), (24076, ''), (24077, ''), (24078, ''), (24079, ''), (24080, ''), (24081, ''), (24082, ''), (24083, ''), (24084, ''), (24085, ''), (24086, ''), (24087, ''), (24088, ''), (24089, ''), (24090, '$104.00 '), (24091, ''), (24092, '$104.00 '), (24093, ''), (24094, '$204.00 '), (24095, ''), (24096, ''), (24097, ''), (24098, ''), (24099, ''), (24100, ''), (24101, ''), (24102, '$104.00 '), (24103, ''), (24104, ''), (24105, ''), (24106, ''), (24107, ''), (24108, ''), (24109, ''), (24110, ''), (24111, ''), (24112, ''), (24113, ''), (24114, ''), (24115, ''), (24116, ''), (24117, ''), (24118, ''), (24119, ''), (24120, ''), (24121, ''), (24122, ''), (24123, ''), (24124, ''), (24125, ''), (24126, ''), (24127, ''), (24128, ''), (24129, ''), (24130, ''), (24131, ''), (24132, '$144.00 '), (24133, ''), (24134, ''), (24135, ''), (24136, '$144.00 '), (24137, ''), (24138, ''), (24139, ''), (24140, ''), (24141, ''), (24142, ''), (24143, ''), (24144, ''), (24145, '$359.00 '), (24146, ''), (24147, '$79.00 '), (24148, ''), (24149, ''), (24150, ''), (24151, '$359.00 '), (24152, '$144.00 '), (24153, '$79.00 '), (24154, ''), (24155, ''), (24156, ''), (24157, '$204.00 '), (24158, ''), (24159, ''), (24160, ''), (24161, '$204.00 '), (24162, '$149.00 '), (24163, ''), (24164, '$409.00 '), (24165, '$204.00 '), (24166, ''), (24167, ''), (24168, ''), (24169, '$144.00 '), (24170, ''), (24171, ''), (24172, ''), (24173, ''), (24174, ''), (24175, '$125.00 '), (24176, ''), (24177, ''), (24178, '$144.00 '), (24179, ''), (24180, ''), (24181, ''), (24182, ''), (24183, ''), (24184, ''), (24185, ''), (24186, ''), (24187, '$359.00 '), (24188, ''), (24189, ''), (24190, ''), (24191, '$409.00 '), (24192, ''), (24193, ''), (24194, ''), (24195, ''), (24196, ''), (24197, ''), (24198, ''), (24199, ''), (24200, '$359.00 '), (24201, ''), (24202, ''), (24203, ''), (24204, ''), (24205, ''), (24206, ''), (24207, ''), (24208, ''), (24209, ''), (24210, ''), (24211, ''), (24212, ''), (24213, ''), (24214, ''), (24215, '$300.00 '), (24216, '$300.00 '), (24217, ''), (24218, ''), (24219, ''), (24220, ''), (24221, ''), (24222, ''), (24223, ''), (24224, ''), (24225, ''), (24226, ''), (24227, ''), (24228, ''), (24229, ''), (24230, ''), (24231, ''), (24232, ''), (24233, ''), (24234, ''), (24235, ''), (24236, ''), (24237, ''), (24238, ''), (24239, ''), (24240, ''), (24241, ''), (24242, ''), (24243, ''), (24244, ''), (24245, ''), (24246, ''), (24247, ''), (24248, ''), (24249, ''), (24250, ''), (24251, ''), (24252, ''), (24253, ''), (24254, ''), (24255, ''), (24256, ''), (24257, ''), (24258, ''), (24259, ''), (24260, ''), (24261, ''), (24262, ''), (24263, ''), (24264, ''), (24265, ''), (24266, ''), (24267, ''), (24268, ''), (24269, ''), (24270, ''), (24271, ''), (24272, ''), (24273, ''), (24274, ''), (24275, ''), (24276, ''), (24277, ''), (24278, ''), (24279, ''), (24280, ''), (24281, '$144.00 '), (24282, ''), (24283, ''), (24284, ''), (24285, ''), (24286, '$144.00 '), (24287, ''), (24288, ''), (24289, ''), (24290, ''), (24291, ''), (24292, ''), (24293, ''), (24294, ''), (24295, ''), (24296, '$144.00 '), (24297, '$149.00 '), (24298, ''), (24299, ''), (24300, '$409.00 '), (24301, ''), (24302, ''), (24303, ''), (24304, ''), (24305, ''), (24306, ''), (24307, ''), (24308, ''), (24309, ''), (24310, ''), (24311, ''), (24312, ''), (24313, ''), (24314, ''), (24315, ''), (24316, ''), (24317, ''), (24318, ''), (24319, ''), (24320, ''), (24321, ''), (24322, ''), (24323, ''), (24324, ''), (24325, ''), (24326, ''), (24327, ''), (24328, ''), (24329, ''), (24330, '$139.00 '), (24331, ''), (24332, ''), (24333, ''), (24334, ''), (24335, ''), (24336, ''), (24337, ''), (24338, ''), (24339, ''), (24340, ''), (24341, ''), (24342, ''), (24343, ''), (24344, ''), (24345, ''), (24346, ''), (24347, ''), (24348, ''), (24349, ''), (24350, ''), (24351, ''), (24352, ''), (24353, '$144.00 '), (24354, ''), (24355, ''), (24356, ''), (24357, ''), (24358, ''), (24359, ''), (24360, ''), (24361, ''), (24362, ''), (24363, ''), (24364, ''), (24365, ''), (24366, ''), (24367, ''), (24368, ''), (24369, ''), (24370, ''), (24371, ''), (24372, ''), (24373, ''), (24374, ''), (24375, ''), (24376, ''), (24377, ''), (24378, ''), (24379, ''), (24380, ''), (24381, ''), (24382, ''), (24383, ''), (24384, ''), (24385, ''), (24386, ''), (24387, ''), (24388, ''), (24389, ''), (24390, ''), (24391, ''), (24392, ''), (24393, ''), (24394, ''), (24395, ''), (24396, ''), (24397, ''), (24398, ''), (24399, ''), (24400, ''), (24401, ''), (24402, ''), (24403, ''), (24404, ''), (24405, ''), (24406, ''), (24407, '$619.72 '), (24408, ''), (24409, ''), (24410, ''), (24411, ''), (24412, ''), (24413, ''), (24414, ''), (24415, ''), (24416, ''), (24417, ''), (24418, ''), (24419, ''), (24420, ''), (24421, ''), (24422, ''), (24423, ''), (24424, ''), (24425, ''), (24426, ''), (24427, '$409.00 '), (24428, '$144.00 '), (24429, ''), (24430, ''), (24431, ''), (24432, ''), (24433, ''), (24434, ''), (24435, ''), (24436, ''), (24437, ''), (24438, ''), (24439, ''), (24440, '$144.00 '), (24441, ''), (24442, ''), (24443, ''), (24444, ''), (24445, ''), (24446, ''), (24447, ''), (24448, ''), (24449, ''), (24450, ''), (24451, ''), (24452, ''), (24453, ''), (24454, ''), (24455, ''), (24456, ''), (24457, ''), (24458, ''), (24459, ''), (24460, ''), (24461, ''), (24462, ''), (24463, ''), (24464, '$89.00 '), (24465, ''), (24466, ''), (24467, ''), (24468, ''), (24469, ''), (24470, ''), (24471, ''), (24472, ''), (24473, ''), (24474, ''), (24475, ''), (24476, ''), (24477, ''), (24478, ''), (24479, ''), (24480, ''), (24481, ''), (24482, ''), (24483, ''), (24484, ''), (24485, ''), (24486, ''), (24487, ''), (24488, ''), (24489, ''), (24490, ''), (24491, ''), (24492, ''), (24493, ''), (24494, ''), (24495, ''), (24496, ''), (24497, ''), (24498, ''), (24499, ''), (24500, ''), (24501, ''), (24502, ''), (24503, ''), (24504, ''), (24505, '$149.00 '), (24506, ''), (24507, ''), (24508, ''), (24509, ''), (24510, ''), (24511, ''), (24512, ''), (24513, ''), (24514, ''), (24515, ''), (24516, ''), (24517, ''), (24518, ''), (24519, ''), (24520, ''), (24521, ''), (24522, ''), (24523, ''), (24524, ''), (24525, '$175.00 '), (24526, '$175.00 '), (24527, ''), (24528, ''), (24529, ''), (24530, ''), (24531, ''), (24532, ''), (24533, ''), (24534, ''), (24535, ''), (24536, ''), (24537, ''), (24538, ''), (24539, ''), (24540, ''), (24541, ''), (24542, ''), (24543, '$409.00 '), (24544, '$85.00 '), (24545, ''), (24546, ''), (24547, '$175.00 '), (24548, ''), (24549, ''), (24550, ''), (24551, ''), (24552, ''), (24553, ''), (24554, ''), (24555, ''), (24556, ''), (24557, ''), (24558, ''), (24559, ''), (24560, ''), (24561, ''), (24562, ''), (24563, ''), (24564, ''), (24565, ''), (24566, ''), (24567, ''), (24568, ''), (24569, ''), (24570, ''), (24571, ''), (24572, '$89.00 '), (24573, '$159.00 '), (24574, ''), (24575, ''), (24576, ''), (24577, ''), (24578, ''), (24579, ''), (24580, ''), (24581, '$359.00 '), (24582, ''), (24583, ''), (24584, ''), (24585, ''), (24586, ''), (24587, ''), (24588, ''), (24589, ''), (24590, ''), (24591, ''), (24592, ''), (24593, ''), (24594, '$144.00 '), (24595, ''), (24596, ''), (24597, ''), (24598, ''), (24599, ''), (24600, ''), (24601, ''), (24602, ''), (24603, ''), (24604, ''), (24605, ''), (24606, ''), (24607, ''), (24608, ''), (24609, ''), (24610, ''), (24611, ''), (24612, ''), (24613, ''), (24614, ''), (24615, ''), (24616, ''), (24617, ''), (24618, ''), (24619, ''), (24620, ''), (24621, ''), (24622, ''), (24623, ''), (24624, ''), (24625, '$139.00 '), (24626, ''), (24627, ''), (24628, ''), (24629, ''), (24630, ''), (24631, ''), (24632, ''), (24633, ''), (24634, ''), (24635, ''), (24636, ''), (24637, ''), (24638, ''), (24639, ''), (24640, ''), (24641, ''), (24642, ''), (24643, ''), (24644, ''), (24645, ''), (24646, ''), (24647, ''), (24648, ''), (24649, ''), (24650, ''), (24651, ''), (24652, ''), (24653, ''), (24654, ''), (24655, ''), (24656, ''), (24657, ''), (24658, ''), (24659, ''), (24660, ''), (24661, ''), (24662, ''), (24663, ''), (24664, ''), (24665, ''), (24666, ''), (24667, ''), (24668, ''), (24669, ''), (24670, ''), (24671, ''), (24672, ''), (24673, '$144.00 '), (24674, '$104.00 '), (24675, '$104.00 '), (24676, ''), (24677, ''), (24678, '$79.00 '), (24679, ''), (24680, '$85.00 '), (24681, ''), (24682, ''), (24683, ''), (24684, ''), (24685, ''), (24686, '$85.00 '), (24687, ''), (24688, ''), (24689, ''), (24690, ''), (24691, ''), (24692, ''), (24693, ''), (24694, ''), (24695, ''), (24696, ''), (24697, ''), (24698, ''), (24699, ''), (24700, '$144.00 '), (24701, '$144.00 '), (24702, ''), (24703, ''), (24704, ''), (24705, ''), (24706, ''), (24707, ''), (24708, ''), (24709, ''), (24710, ''), (24711, ''), (24712, ''), (24713, ''), (24714, ''), (24715, ''), (24716, ''), (24717, ''), (24718, ''), (24719, ''), (24720, ''), (24721, ''), (24722, ''), (24723, ''), (24724, ''), (24725, ''), (24726, ''), (24727, ''), (24728, ''), (24729, ''), (24730, ''), (24731, ''), (24732, ''), (24733, ''), (24734, ''), (24735, ''), (24736, ''), (24737, ''), (24738, ''), (24739, ''), (24740, ''), (24741, ''), (24742, ''), (24743, ''), (24744, ''), (24745, ''), (24746, ''), (24747, ''), (24748, ''), (24749, ''), (24750, ''), (24751, ''), (24752, ''), (24753, ''), (24754, ''), (24755, ''), (24756, ''), (24757, ''), (24758, ''), (24759, ''), (24760, ''), (24761, ''), (24762, ''), (24763, ''), (24764, ''), (24765, ''), (24766, ''), (24767, ''), (24768, ''), (24769, ''), (24770, ''), (24771, ''), (24772, ''), (24773, ''), (24774, ''), (24775, ''), (24776, ''), (24777, ''), (24778, ''), (24779, ''), (24780, ''), (24781, '$1,260.56 '), (24782, ''), (24783, ''), (24784, ''), (24785, ''), (24786, ''), (24787, ''), (24788, ''), (24789, '$1,260.56 '), (24790, ''), (24791, '$225.35 '), (24792, '$225.35 '), (24793, ''), (24794, ''), (24795, ''), (24796, ''), (24797, ''), (24798, '$516.00 '), (24799, ''), (24800, '$225.35 '), (24801, ''), (24802, ''), (24803, ''), (24804, ''), (24805, '$359.15 '), (24806, '$225.35 '), (24807, '$225.35 '), (24808, ''), (24809, '$619.72 '), (24810, ''), (24811, ''), (24812, ''), (24813, ''), (24814, '$225.35 '), (24815, ''), (24816, ''), (24817, ''), (24818, ''), (24819, ''), (24820, ''), (24821, ''), (24822, ''), (24823, ''), (24824, ''), (24825, ''), (24826, ''), (24827, ''), (24828, ''), (24829, ''), (24830, ''), (24831, ''), (24832, ''), (24833, ''), (24834, ''), (24835, ''), (24836, ''), (24837, ''), (24838, ''), (24839, ''), (24840, ''), (24841, '$144.00 '), (24842, '$85.00 '), (24843, '$144.00 '), (24844, '$144.00 '), (24845, ''), (24846, ''), (24847, ''), (24848, ''), (24849, ''), (24850, ''), (24851, ''), (24852, ''), (24853, ''), (24854, ''), (24855, ''), (24856, ''), (24857, ''), (24858, '$204.00 '), (24859, ''), (24860, ''), (24861, ''), (24862, ''), (24863, ''), (24864, '$204.00 '), (24865, ''), (24866, ''), (24867, ''), (24868, ''), (24869, ''), (24870, ''), (24871, ''), (24872, ''), (24873, ''), (24874, ''), (24875, ''), (24876, ''), (24877, ''), (24878, ''), (24879, ''), (24880, ''), (24881, ''), (24882, ''), (24883, ''), (24884, ''), (24885, ''), (24886, ''), (24887, ''), (24888, ''), (24889, ''), (24890, ''), (24891, ''), (24892, '$139.00 '), (24893, ''), (24894, ''), (24895, ''), (24896, ''), (24897, ''), (24898, ''), (24899, ''), (24900, ''), (24901, ''), (24902, ''), (24903, ''), (24904, ''), (24905, ''), (24906, ''), (24907, ''), (24908, ''), (24909, ''), (24910, ''), (24911, ''), (24912, ''), (24913, ''), (24914, ''), (24915, ''), (24916, ''), (24917, ''), (24918, ''), (24919, ''), (24920, ''), (24921, ''), (24922, ''), (24923, ''), (24924, ''), (24925, ''), (24926, ''), (24927, ''), (24928, ''), (24929, ''), (24930, ''), (24931, ''), (24932, ''), (24933, ''), (24934, ''), (24935, ''), (24936, ''), (24937, ''), (24938, ''), (24939, ''), (24940, ''), (24941, ''), (24942, ''), (24943, ''), (24944, ''), (24945, ''), (24946, ''), (24947, ''), (24948, ''), (24949, ''), (24950, ''), (24951, ''), (24952, ''), (24953, ''), (24954, ''), (24955, ''), (24956, ''), (24957, ''), (24958, ''), (24959, '$144.00 '), (24960, ''), (24961, ''), (24962, '$85.00 '), (24963, ''), (24964, ''), (24965, ''), (24966, '$85.00 '), (24967, ''), (24968, ''), (24969, ''), (24970, ''), (24971, '$204.00 '), (24972, ''), (24973, ''), (24974, ''), (24975, ''), (24976, ''), (24977, ''), (24978, '$409.00 '), (24979, ''), (24980, ''), (24981, ''), (24982, ''), (24983, ''), (24984, ''), (24985, ''), (24986, ''), (24987, ''), (24988, ''), (24989, ''), (24990, ''), (24991, ''), (24992, ''), (24993, ''), (24994, ''), (24995, ''), (24996, ''), (24997, ''), (24998, ''), (24999, ''), (25000, ''), (25001, ''), (25002, ''), (25003, ''), (25004, ''), (25005, ''), (25006, ''), (25007, ''), (25008, ''), (25009, ''), (25010, ''), (25011, ''), (25012, ''), (25013, ''), (25014, ''), (25015, ''), (25016, ''), (25017, ''), (25018, ''), (25019, ''), (25020, ''), (25021, ''), (25022, ''), (25023, ''), (25024, ''), (25025, ''), (25026, ''), (25027, ''), (25028, ''), (25029, ''), (25030, ''), (25031, ''), (25032, ''), (25033, ''), (25034, ''), (25035, ''), (25036, ''), (25037, ''), (25038, ''), (25039, ''), (25040, ''), (25041, ''), (25042, ''), (25043, ''), (25044, ''), (25045, ''), (25046, ''), (25047, ''), (25048, ''), (25049, ''), (25050, ''), (25051, ''), (25052, ''), (25053, ''), (25054, ''), (25055, ''), (25056, ''), (25057, ''), (25058, ''), (25059, ''), (25060, ''), (25061, ''), (25062, ''), (25063, '$144.00 '), (25064, '$144.00 '), (25065, ''), (25066, ''), (25067, ''), (25068, ''), (25069, ''), (25070, ''), (25071, ''), (25072, ''), (25073, ''), (25074, ''), (25075, ''), (25076, ''), (25077, ''), (25078, ''), (25079, ''), (25080, ''), (25081, ''), (25082, ''), (25083, ''), (25084, ''), (25085, ''), (25086, ''), (25087, ''), (25088, ''), (25089, ''), (25090, ''), (25091, ''), (25092, ''), (25093, ''), (25094, ''), (25095, ''), (25096, ''), (25097, ''), (25098, ''), (25099, ''), (25100, ''), (25101, ''), (25102, ''), (25103, ''), (25104, ''), (25105, ''), (25106, ''), (25107, ''), (25108, ''), (25109, ''), (25110, ''), (25111, ''), (25112, ''), (25113, ''), (25114, ''), (25115, ''), (25116, ''), (25117, ''), (25118, ''), (25119, ''), (25120, ''), (25121, ''), (25122, ''), (25123, ''), (25124, ''), (25125, ''), (25126, ''), (25127, '$563.38 '), (25128, ''), (25129, ''), (25130, ''), (25131, ''), (25132, ''), (25133, ''), (25134, ''), (25135, ''), (25136, ''), (25137, ''), (25138, ''), (25139, '$409.00 '), (25140, ''), (25141, ''), (25142, ''), (25143, ''), (25144, ''), (25145, ''), (25146, '$144.00 '), (25147, '$144.00 '), (25148, ''), (25149, ''), (25150, ''), (25151, ''), (25152, ''), (25153, ''), (25154, ''), (25155, ''), (25156, ''), (25157, ''), (25158, ''), (25159, ''), (25160, ''), (25161, ''), (25162, ''), (25163, ''), (25164, ''), (25165, ''), (25166, ''), (25167, ''), (25168, ''), (25169, ''), (25170, ''), (25171, ''), (25172, ''), (25173, ''), (25174, ''), (25175, ''), (25176, ''), (25177, ''), (25178, ''), (25179, ''), (25180, ''), (25181, ''), (25182, ''), (25183, ''), (25184, ''), (25185, ''), (25186, ''), (25187, ''), (25188, ''), (25189, ''), (25190, ''), (25191, ''), (25192, ''), (25193, ''), (25194, ''), (25195, ''), (25196, ''), (25197, ''), (25198, ''), (25199, ''), (25200, ''), (25201, ''), (25202, ''), (25203, ''), (25204, ''), (25205, ''), (25206, ''), (25207, ''), (25208, ''), (25209, ''), (25210, ''), (25211, ''), (25212, ''), (25213, ''), (25214, ''), (25215, ''), (25216, ''), (25217, ''), (25218, '$144.00 '), (25219, ''), (25220, ''), (25221, ''), (25222, ''), (25223, '$144.00 '), (25224, ''), (25225, ''), (25226, ''), (25227, ''), (25228, '$204.00 '), (25229, '$244.00 '), (25230, ''), (25231, '$204.00 '), (25232, ''), (25233, ''), (25234, ''), (25235, '$409.00 '), (25236, ''), (25237, ''), (25238, '$209.00 '), (25239, ''), (25240, ''), (25241, ''), (25242, ''), (25243, ''), (25244, ''), (25245, ''), (25246, ''), (25247, ''), (25248, ''), (25249, ''), (25250, ''), (25251, ''), (25252, ''), (25253, ''), (25254, ''), (25255, ''), (25256, ''), (25257, ''), (25258, ''), (25259, ''), (25260, ''), (25261, ''), (25262, ''), (25263, ''), (25264, ''), (25265, ''), (25266, ''), (25267, ''), (25268, ''), (25269, ''), (25270, ''), (25271, ''), (25272, ''), (25273, ''), (25274, ''), (25275, ''), (25276, ''), (25277, ''), (25278, ''), (25279, ''), (25280, ''), (25281, ''), (25282, ''), (25283, ''), (25284, ''), (25285, ''), (25286, ''), (25287, ''), (25288, ''), (25289, '$144.00 '), (25290, ''), (25291, ''), (25292, ''), (25293, ''), (25294, ''), (25295, '$359.00 '), (25296, '$209.00 '), (25297, ''), (25298, ''), (25299, ''), (25300, ''), (25301, ''), (25302, ''), (25303, ''), (25304, ''), (25305, ''), (25306, ''), (25307, ''), (25308, ''), (25309, ''), (25310, ''), (25311, ''), (25312, ''), (25313, ''), (25314, ''), (25315, ''), (25316, ''), (25317, ''), (25318, ''), (25319, ''), (25320, ''), (25321, ''), (25322, ''), (25323, ''), (25324, ''), (25325, ''), (25326, ''), (25327, ''), (25328, ''), (25329, ''), (25330, ''), (25331, ''), (25332, ''), (25333, ''), (25334, ''), (25335, ''), (25336, ''), (25337, ''), (25338, ''), (25339, ''), (25340, ''), (25341, ''), (25342, ''), (25343, '$204.00 '), (25344, ''), (25345, '$409.00 '), (25346, ''), (25347, ''), (25348, ''), (25349, ''), (25350, ''), (25351, ''), (25352, ''), (25353, ''), (25354, ''), (25355, ''), (25356, ''), (25357, ''), (25358, ''), (25359, '$204.00 '), (25360, ''), (25361, ''), (25362, ''), (25363, ''), (25364, ''), (25365, ''), (25366, ''), (25367, ''), (25368, ''), (25369, ''), (25370, ''), (25371, ''), (25372, ''), (25373, ''), (25374, ''), (25375, ''), (25376, ''), (25377, ''), (25378, ''), (25379, ''), (25380, ''), (25381, ''), (25382, ''), (25383, ''), (25384, ''), (25385, ''), (25386, ''), (25387, ''), (25388, '$300.00 '), (25389, ''), (25390, ''), (25391, ''), (25392, ''), (25393, ''), (25394, ''), (25395, '$144.00 '), (25396, '$229.00 '), (25397, ''), (25398, ''), (25399, ''), (25400, ''), (25401, ''), (25402, ''), (25403, ''), (25404, '$369.00 '), (25405, ''), (25406, ''), (25407, ''), (25408, ''), (25409, ''), (25410, ''), (25411, ''), (25412, ''), (25413, ''), (25414, ''), (25415, ''), (25416, ''), (25417, ''), (25418, ''), (25419, ''), (25420, ''), (25421, '$89.00 '), (25422, ''), (25423, ''), (25424, ''), (25425, ''), (25426, ''), (25427, ''), (25428, ''), (25429, ''), (25430, ''), (25431, ''), (25432, ''), (25433, ''), (25434, ''), (25435, '$419.00 '), (25436, ''), (25437, ''), (25438, ''), (25439, ''), (25440, ''), (25441, ''), (25442, ''), (25443, ''), (25444, ''), (25445, ''), (25446, ''), (25447, ''), (25448, ''), (25449, ''), (25450, ''), (25451, '$144.00 '), (25452, ''), (25453, ''), (25454, ''), (25455, ''), (25456, ''), (25457, ''), (25458, ''), (25459, ''), (25460, ''), (25461, '$144.00 '), (25462, ''), (25463, '$510.00 '), (25464, ''), (25465, ''), (25466, ''), (25467, ''), (25468, ''), (25469, ''), (25470, ''), (25471, ''), (25472, ''), (25473, ''), (25474, ''), (25475, ''), (25476, ''), (25477, ''), (25478, ''), (25479, ''), (25480, ''), (25481, ''), (25482, ''), (25483, '$209.00 '), (25484, ''), (25485, ''), (25486, ''), (25487, ''), (25488, ''), (25489, ''), (25490, ''), (25491, ''), (25492, ''), (25493, ''), (25494, ''), (25495, ''), (25496, ''), (25497, ''), (25498, ''), (25499, ''), (25500, ''), (25501, ''), (25502, ''), (25503, ''), (25504, ''), (25505, ''), (25506, ''), (25507, ''), (25508, ''), (25509, ''), (25510, ''), (25511, ''), (25512, ''), (25513, ''), (25514, ''), (25515, ''), (25516, ''), (25517, ''), (25518, ''), (25519, ''), (25520, ''), (25521, ''), (25522, ''), (25523, ''), (25524, ''), (25525, ''), (25526, ''), (25527, ''), (25528, ''), (25529, ''), (25530, ''), (25531, ''), (25532, '$149.00 '), (25533, ''), (25534, ''), (25535, ''), (25536, ''), (25537, ''), (25538, ''), (25539, ''), (25540, '$154.00 '), (25541, ''), (25542, ''), (25543, '$419.00 '), (25544, ''), (25545, ''), (25546, ''), (25547, ''), (25548, ''), (25549, ''), (25550, '$409.00 '), (25551, ''), (25552, ''), (25553, ''), (25554, ''), (25555, ''), (25556, ''), (25557, ''), (25558, ''), (25559, ''), (25560, ''), (25561, ''), (25562, ''), (25563, ''), (25564, ''), (25565, ''), (25566, ''), (25567, ''), (25568, ''), (25569, ''), (25570, ''), (25571, ''), (25572, ''), (25573, ''), (25574, ''), (25575, ''), (25576, ''), (25577, ''), (25578, ''), (25579, ''), (25580, ''), (25581, ''), (25582, ''), (25583, ''), (25584, ''), (25585, '$139.00 '), (25586, ''), (25587, ''), (25588, ''), (25589, ''), (25590, ''), (25591, ''), (25592, ''), (25593, ''), (25594, ''), (25595, ''), (25596, ''), (25597, ''), (25598, ''), (25599, ''), (25600, ''), (25601, ''), (25602, ''), (25603, ''), (25604, '$204.00 '), (25605, ''), (25606, ''), (25607, ''), (25608, ''), (25609, ''), (25610, ''), (25611, ''), (25612, ''), (25613, ''), (25614, ''), (25615, ''), (25616, '$419.00 '), (25617, ''), (25618, ''), (25619, ''), (25620, ''), (25621, ''), (25622, ''), (25623, ''), (25624, ''), (25625, ''), (25626, ''), (25627, ''), (25628, ''), (25629, ''), (25630, ''), (25631, ''), (25632, ''), (25633, ''), (25634, ''), (25635, ''), (25636, ''), (25637, ''), (25638, ''), (25639, ''), (25640, ''), (25641, ''), (25642, ''), (25643, ''), (25644, ''), (25645, '$144.00 '), (25646, ''), (25647, '$144.00 '), (25648, ''), (25649, ''), (25650, '$144.00 '), (25651, ''), (25652, ''), (25653, ''), (25654, ''), (25655, ''), (25656, ''), (25657, ''), (25658, ''), (25659, ''), (25660, ''), (25661, ''), (25662, ''), (25663, ''), (25664, ''), (25665, ''), (25666, ''), (25667, ''), (25668, ''), (25669, ''), (25670, ''), (25671, ''), (25672, ''), (25673, ''), (25674, '$409.00 '), (25675, ''), (25676, '$89.00 '), (25677, '$89.00 '), (25678, ''), (25679, ''), (25680, ''), (25681, ''), (25682, ''), (25683, ''), (25684, ''), (25685, ''), (25686, ''), (25687, ''), (25688, ''), (25689, ''), (25690, ''), (25691, ''), (25692, '$149.00 '), (25693, ''), (25694, ''), (25695, ''), (25696, ''), (25697, ''), (25698, '$425.00 '), (25699, ''), (25700, ''), (25701, ''), (25702, '$204.00 '), (25703, '$409.00 '), (25704, ''), (25705, ''), (25706, ''), (25707, ''), (25708, '$149.00 '), (25709, ''), (25710, ''), (25711, '$409.99'), (25712, '$409'), (25713, '$400'), (25714, '409'), (25715, '409'), (25716, NULL), (25717, '409'), (25718, '209'), (25719, NULL), (25720, '209'), (25721, '342'), (25722, '342'), (25723, '2343'), (25724, '3490'), (25725, '304'), (25726, '409'); -- -- Indexes for dumped tables -- -- -- Indexes for table `contact` -- ALTER TABLE `contact` ADD PRIMARY KEY (`ContactID`), ADD KEY `customerID` (`customerID`); -- -- Indexes for table `customer` -- ALTER TABLE `customer` ADD PRIMARY KEY (`customerNumber`); -- -- Indexes for table `job_site` -- ALTER TABLE `job_site` ADD PRIMARY KEY (`JobSiteID`), ADD KEY `customerID` (`customerID`), ADD KEY `siteContact` (`siteContact`); -- -- Indexes for table `machinery` -- ALTER TABLE `machinery` ADD PRIMARY KEY (`MachineryID`), ADD KEY `priceOfRepairs` (`priceOfRepairs`), ADD KEY `customerID` (`customerID`); -- -- Indexes for table `repair_price` -- ALTER TABLE `repair_price` ADD PRIMARY KEY (`PriceID`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `contact` -- ALTER TABLE `contact` MODIFY `ContactID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6683; -- -- AUTO_INCREMENT for table `customer` -- ALTER TABLE `customer` MODIFY `customerNumber` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4105; -- -- AUTO_INCREMENT for table `job_site` -- ALTER TABLE `job_site` MODIFY `JobSiteID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4113; -- -- AUTO_INCREMENT for table `machinery` -- ALTER TABLE `machinery` MODIFY `MachineryID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27251; -- -- AUTO_INCREMENT for table `repair_price` -- ALTER TABLE `repair_price` MODIFY `PriceID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25727; -- -- Constraints for dumped tables -- -- -- Constraints for table `contact` -- ALTER TABLE `contact` ADD CONSTRAINT `contact_ibfk_1` FOREIGN KEY (`customerID`) REFERENCES `customer` (`customerNumber`) ON DELETE CASCADE; -- -- Constraints for table `job_site` -- ALTER TABLE `job_site` ADD CONSTRAINT `job_site_ibfk_1` FOREIGN KEY (`customerID`) REFERENCES `customer` (`customerNumber`) ON DELETE CASCADE, ADD CONSTRAINT `job_site_ibfk_2` FOREIGN KEY (`siteContact`) REFERENCES `contact` (`ContactID`) ON DELETE SET NULL; -- -- Constraints for table `machinery` -- ALTER TABLE `machinery` ADD CONSTRAINT `machinery_ibfk_1` FOREIGN KEY (`priceOfRepairs`) REFERENCES `repair_price` (`PriceID`) ON DELETE CASCADE, ADD CONSTRAINT `machinery_ibfk_2` FOREIGN KEY (`customerID`) REFERENCES `customer` (`customerNumber`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
ALTER TABLE `#__md_member` ADD `notes` text DEFAULT NULL AFTER `country`; ALTER TABLE `#__md_member_history` ADD `notes` text DEFAULT NULL AFTER `country`;
REM ------------------------------------------------------------------------ REM REQUIREMENTS: REM SELECT on dba_* REM ------------------------------------------------------------------------ REM PURPOSE: REM Show sequences' info REM ------------------------------------------------------------------------ set linesize 80 set pagesize 9999 set feedback off set verify off col sequence_owner for a&3 head Owner col sequence_name for a25 head Name col min_value for 9999 head Min col max_value head Max col increment_by for 999999 head Incr col last_number for 9999999999 head Last break on sequence_owner on sequence_name SELECT sequence_owner, sequence_name, min_value, max_value, increment_by, last_number FROM dba_sequences WHERE sequence_name like upper('&1') AND sequence_owner &2 ; prompt exit
-- How many Invoices were there in 2009 and 2011? SELECT count(InvoiceId) as 'countInvoices', FROM Invoice WHERE '2009' = strftime('%Y', InvoiceDate) or strftime('%Y', InvoiceDate) = '2011'; -- What are the respective total sales for each of those years? SELECT count(InvoiceId) as 'countInvoices', strftime('%Y', InvoiceDate) as 'InvoiceYear', printf('%.2f', sum(Total)) as 'AnnualSalesTotal' FROM Invoice WHERE '2009' = strftime('%Y', InvoiceDate) or strftime('%Y', InvoiceDate) = '2011' GROUP BY strftime('%Y', InvoiceDate)
CREATE TABLE `profiles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL, `last_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL, `city_id` int(4) DEFAULT '1', `phone` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `info` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `photoID` int(11) DEFAULT NULL, `status` tinyint(4) DEFAULT NULL, PRIMARY KEY (`id`), FULLTEXT KEY `first_name` (`first_name`,`last_name`), FULLTEXT KEY `first_name_2` (`first_name`,`last_name`), FULLTEXT KEY `first_name_3` (`first_name`,`last_name`), FULLTEXT KEY `first_name_4` (`first_name`,`last_name`), FULLTEXT KEY `first_name_5` (`first_name`,`last_name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8_general_ci COLLATE=utf8mb4_general_ci;
Create Table HouseSale ( fullLoc varchar(255), type varchar(255), area float, landArea float, date int, amount bigint, builtYear int(255), avenue varchar(255), year int, month int, city varchar(255), county varchar(255), region varchar(255), region1 varchar(255), region2 varchar(255) ); ALTER TABLE HouseSale ADD INDEX (year, month, city, county, region); --- 시군구 계약면적(㎡) 전월세구분 계약일 보증금(만원) 월세(만원) 건축년도 도로명 Create Table HouseRent ( fullLoc varchar(255), area float, type varchar(255), date int, deposit bigint, monthly bigint, builtYear int, avenue varchar(255), year int, month int, city varchar(255), county varchar(255), region varchar(255), region1 varchar(255), region2 varchar(255) ); --- APT: 시군구 본번 부번 단지명 전용면적(㎡) 계약일 거래금액(만원) 층 건축년도 도로명 Create Table APTSale ( fullLoc varchar(255), mainNum int, secondNum int, buildName varchar(255), area float(255), date varchar(255), amount bigint, floor int, builtYear int(255), avenue varchar(255), year int, month int, city varchar(255), county varchar(255), region varchar(255), region1 varchar(255), region2 varchar(255) ); --- 연립: 시군구 본번 부번 단지명 전용면적(㎡) 대지권면적(㎡) 계약일 거래금액(만원) 층 건축년도 도로명 Create Table FlatSale ( fullLoc varchar(255), mainNum int, secondNum int, buildName varchar(255), area float, landArea float, date varchar(255), amount bigint, floor int, builtYear int(255), avenue varchar(255), year int, month int, city varchar(255), county varchar(255), region varchar(255), region1 varchar(255), region2 varchar(255) ); --- APT: 시군구 본번 부번 단지명 전월세구분 전용면적(㎡) 계약일 보증금(만원) 월세(만원) 층 건축년도 도로명 Create Table APTRent ( fullLoc varchar(255), mainNum int, secondNum int, buildName varchar(255), type varchar(255), area float, date int, deposit bigint, monthly bigint, floor int, builtYear int, avenue varchar(255), year int, month int, city varchar(255), county varchar(255), region varchar(255), region1 varchar(255), region2 varchar(255) ); --- 연립: 시군구 본번 부번 단지명 전월세구분 전용면적(㎡) 계약일 보증금(만원) 월세(만원) 층 건축년도 도로명 Create Table FlatRent ( fullLoc varchar(255), mainNum int, secondNum int, buildName varchar(255), type varchar(255), area float, date int, deposit bigint, monthly bigint, floor int, builtYear int, avenue varchar(255), year int, month int, city varchar(255), county varchar(255), region varchar(255), region1 varchar(255), region2 varchar(255) );
Technique 1: ============ SELECT DISTINCT 'Laptop' AS type, model, speed FROM Laptop WHERE speed < (SELECT MIN(speed) FROM PC) Technique 2: ============ SELECT DISTINCT 'Laptop' AS type, model, speed FROM Laptop WHERE speed < ALL (SELECT speed FROM PC)
create table "ContasHorta" ( id serial constraint contashorta_pk primary key, usuario_id uuid not null constraint contashorta_users_id_fk references "Users" (id), horta_id uuid not null constraint contashorta_horta_id_fk references "Horta" (id) );
CREATE SCHEMA magento2 character set utf8; GRANT ALL PRIVILEGES ON magento2.* TO mage@localhost IDENTIFIED BY 'mage';
SET SQLBLANKLINES ON SET DEFINE OFF -- Nov 19, 2010 7:20:13 PM CST -- Recurrence Manufaturing & Maintenance Order UPDATE AD_Ref_List SET IsActive='Y',Updated=TO_DATE('2010-11-19 19:20:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=747 ; -- Nov 19, 2010 11:33:26 PM CST -- Recurrence Manufaturing & Maintenance Order UPDATE AD_Column SET ReadOnlyLogic='@ProductType@=E | @ProductType@=O',Updated=TO_DATE('2010-11-19 23:33:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=4708 ; -- Nov 19, 2010 11:40:28 PM CST -- Recurrence Manufaturing & Maintenance Order UPDATE AD_Field SET DisplayLogic='@IsSummary@=''N'' & @ProductType@=I | @ProductType@=S | @ProductType@=R',Updated=TO_DATE('2010-11-19 23:40:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3743 ; -- Nov 20, 2010 12:17:33 AM CST -- Recurrence Manufaturing & Maintenance Order UPDATE AD_Ref_Table SET WhereClause='((M_Product.IsBOM=''Y'' AND M_Product.IsStocked=''Y'' AND M_Product.IsSummary=''N'') OR (M_Product.IsBOM=''Y'' AND M_Product.ProductType=''R'' AND M_Product.IsStocked=''N'' AND M_Product.IsSummary=''N''))',Updated=TO_DATE('2010-11-20 00:17:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=211 ;
INSERT INTO account(`id`, `account_type_id`, `name`, `balance`) VALUES (1, 2, '中国银行', 100);
---------------------------------------------------------------------------------------------------------------- 1.表EDM_FINACIAL_REPORT结构修改: 删除了字段: BILL_LASTMONTH BILL_LASTMONTH_TYPE IS_NEW_CUSTOMER_CN CONNECTED_TRANSACTION_CN PRODUCT_TYPE_CN INVOICE_TYPE_CN CONTRACT_TYPE_CN 增加了字段: INCOME_MONTH INVOICE_STATUS INVOICE_FAIL_REASON SEND_COUNT INVOICE_TIME -- Create table -- Create table create table EDM_FINACIAL_REPORT ( ID NUMBER not null, YEAR INTEGER not null, MONTH INTEGER not null, CONTRACT_NO VARCHAR2(300), PRICEWITHTAX NUMBER, PRICEWITHOUTTAX NUMBER, UPDATE_BY VARCHAR2(300), CREATE_TIME DATE, UPDATE_TIME DATE, DIRECT_SALER VARCHAR2(250), CHANNEL_SALER_OA VARCHAR2(128), DIRECT_SALER_OA VARCHAR2(128), CHANNEL_SALER VARCHAR2(250), BEAR_DEPARTMENT VARCHAR2(300), DOST_RATIO NUMBER, CUSTOMER_NAME VARCHAR2(250), IS_NEW_CUSTOMER INTEGER, CONNECTED_TRANSACTION INTEGER, PRODUCT_TYPE INTEGER, PRODUCT_NAME VARCHAR2(1000) default '个人邮-EDM及邮箱广告', INVOICE_TYPE INTEGER, INCOME_MONTH INTEGER, STATUS INTEGER, TYPE INTEGER, CONTRACT_TYPE INTEGER, CPA_NUM INTEGER, INCOME_TAX NUMBER, INCOME_NO_TAX NUMBER, REMARK VARCHAR2(250), CPA_PRICE NUMBER, CREATE_BY VARCHAR2(300), PROCESS_INSTANCE_ID VARCHAR2(300), CONTRACT_OA VARCHAR2(100) not null, APPLY_BY VARCHAR2(300), APPLY_TIME DATE, INVOICE_STATUS INTEGER default 0, INVOICE_FAIL_REASON VARCHAR2(100), INVOICE_TIME DATE, SEND_COUNT INTEGER default 0 ) tablespace EDMTB01 pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited ); -- Add comments to the columns comment on column EDM_FINACIAL_REPORT.CONTRACT_NO is '合同项目名称'; comment on column EDM_FINACIAL_REPORT.PRICEWITHTAX is '预估含税金额'; comment on column EDM_FINACIAL_REPORT.PRICEWITHOUTTAX is '预估不含税金额'; comment on column EDM_FINACIAL_REPORT.DIRECT_SALER is '直客销售员'; comment on column EDM_FINACIAL_REPORT.CHANNEL_SALER_OA is '渠道销售员oa账号'; comment on column EDM_FINACIAL_REPORT.DIRECT_SALER_OA is '直客销售员oa账号'; comment on column EDM_FINACIAL_REPORT.CHANNEL_SALER is '渠道销售员'; comment on column EDM_FINACIAL_REPORT.BEAR_DEPARTMENT is '承担部门(如:个人邮事业部)'; comment on column EDM_FINACIAL_REPORT.DOST_RATIO is '业绩比例'; comment on column EDM_FINACIAL_REPORT.CUSTOMER_NAME is '客户名称'; comment on column EDM_FINACIAL_REPORT.IS_NEW_CUSTOMER is '是否新客户(1:是 0:否)'; comment on column EDM_FINACIAL_REPORT.CONNECTED_TRANSACTION is '关联交易(0:非关联交易 1:广东电信 2:集团电信 3:其它关联方)'; comment on column EDM_FINACIAL_REPORT.PRODUCT_TYPE is '产品类型(0:项目型 1:运营型)'; comment on column EDM_FINACIAL_REPORT.PRODUCT_NAME is '产品名称(mailsender EDM)'; comment on column EDM_FINACIAL_REPORT.INVOICE_TYPE is '发票类型(1. 增值税专用发票; 2. 增值税普通发票; 3. 营业税发票)'; comment on column EDM_FINACIAL_REPORT.INCOME_MONTH is '列账月份'; comment on column EDM_FINACIAL_REPORT.STATUS is '1表示应收账款已结清 2表示应收账款未结清 3表示已列账 11审批节点:待复核 12审批节点:待批示 14审核节点:不通过 13审批节点:通过 -1表示预估跨月未列账数据'; comment on column EDM_FINACIAL_REPORT.TYPE is '1:收入,2:收款,3:回款,4:应收,5预估'; comment on column EDM_FINACIAL_REPORT.CONTRACT_TYPE is '合同类型(1:CPA付费 2:按封付费 3:运营费用 4:试投 5:CPC 6:CPS) '; comment on column EDM_FINACIAL_REPORT.CPA_NUM is 'cpa数'; comment on column EDM_FINACIAL_REPORT.INCOME_TAX is '列账含税金额'; comment on column EDM_FINACIAL_REPORT.INCOME_NO_TAX is '列账不含税金额'; comment on column EDM_FINACIAL_REPORT.REMARK is '备注'; comment on column EDM_FINACIAL_REPORT.CPA_PRICE is 'cpa单价(系统设置)'; comment on column EDM_FINACIAL_REPORT.CREATE_BY is '创建者'; comment on column EDM_FINACIAL_REPORT.PROCESS_INSTANCE_ID is '流程审批processInstanceId'; comment on column EDM_FINACIAL_REPORT.CONTRACT_OA is '合同号(合同OA)'; comment on column EDM_FINACIAL_REPORT.APPLY_BY is '申请审批人'; comment on column EDM_FINACIAL_REPORT.APPLY_TIME is '申请审批时间'; comment on column EDM_FINACIAL_REPORT.INVOICE_STATUS is '开票状态(0:未开票 1:已开票 2:开票中 3:开票失败)'; comment on column EDM_FINACIAL_REPORT.INVOICE_FAIL_REASON is '开票失败原因'; comment on column EDM_FINACIAL_REPORT.INVOICE_TIME is '开票时间'; comment on column EDM_FINACIAL_REPORT.SEND_COUNT is '发送成功数'; -- Create/Recreate primary, unique and foreign key constraints alter table EDM_FINACIAL_REPORT add constraint EDM_FINACIAL_REPORT_PK primary key (ID) using index tablespace EDMTB01 pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited ); -------------------------------------- 2.新增开票信息表 -- Create table create table EDM_CONTRACT_INVOICE ( CONTRACT_ID NUMBER(6) not null, CONTRACT_OA VARCHAR2(250), INVOICE_MAJOR INTEGER, INVOICE_CONTENT INTEGER, TAXPAYER_ID VARCHAR2(250), TAXPAYER_ADDR_TEL VARCHAR2(250), TAXPAYER_BANK_ACCOUNT VARCHAR2(250), INVOICE_REMARK VARCHAR2(250) ) tablespace EDMTB01 pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited ); -- Add comments to the columns comment on column EDM_CONTRACT_INVOICE.INVOICE_MAJOR is '开票主体(1:世纪龙信息网络有限责任公司 2. 中国电信股份有限公司广东分公司 )'; comment on column EDM_CONTRACT_INVOICE.INVOICE_CONTENT is '开票内容(1. 技术服务费 2. 软件开发费 3. 系统集成费 4. 信息技术服务费 5. 广告发布费 6. 宣传推广费 7. 设计服务费 8. 邮件广告 9. 影视服务费 10. 信息服务费 11. 增值电信服务 12. 咨询服务费 13. 销售货物 14. 流量费 15. 增值电信业务(后向流量经营) 16. 增值电信业务(流量费) 17. 频道服务费 )'; comment on column EDM_CONTRACT_INVOICE.TAXPAYER_ID is '纳税人识别号(统一社会信用代码)'; comment on column EDM_CONTRACT_INVOICE.TAXPAYER_ADDR_TEL is '地址、电话'; comment on column EDM_CONTRACT_INVOICE.TAXPAYER_BANK_ACCOUNT is '开户银行及账号'; comment on column EDM_CONTRACT_INVOICE.INVOICE_REMARK is '开票备注';
insert into user(id, username, password, nama, tipe, active) values('admin', 'admin', MD5('admin'), 'Admin', 'PENGURUS', 1); insert into hist_biaya_smngr(id, start_date, end_date, nominal) values('0', '1990-01-01', '3000-12-31', 10000); insert into papan_smngr(id, nama, width, height) values('A', 'A', 8, 6); insert into papan_smngr(id, nama, width, height) values('B', 'B', 8, 6); insert into papan_smngr(id, nama, width, height) values('C', 'C', 8, 6); insert into papan_smngr(id, nama, width, height) values('D', 'D', 8, 6); insert into papan_smngr(id, nama, width, height) values('E', 'E', 8, 6); insert into papan_smngr(id, nama, width, height) values('F', 'F', 8, 6); insert into papan_smngr(id, nama, width, height) values('G', 'G', 8, 6); insert into papan_smngr(id, nama, width, height) values('H', 'H', 8, 6); insert into papan_smngr(id, nama, width, height) values('I', 'I', 8, 6); insert into papan_smngr(id, nama, width, height) values('J', 'J', 8, 6); insert into papan_smngr(id, nama, width, height) values('K', 'K', 8, 6); insert into papan_smngr(id, nama, width, height) values('L', 'L', 8, 6); call insert_cells('A', 8, 6); call insert_cells('B', 8, 6); call insert_cells('C', 8, 6); call insert_cells('D', 8, 6); call insert_cells('E', 8, 6); call insert_cells('F', 8, 6); call insert_cells('G', 8, 6); call insert_cells('H', 8, 6); call insert_cells('I', 8, 6); call insert_cells('J', 8, 6); call insert_cells('K', 8, 6); call insert_cells('L', 8, 6);
-- ETAPA 3 10) -- Se requiere crear un procedimiento que al recibir como parámetro la patente del -- automóvil, se finaliza la labor de la estación en la que se encuentra y se le ingresa en -- la estación siguiente. DELIMITER $$ create procedure continuarMontaje(in _chasis int ,out mensaje varchar(100), out resultado int)BEGIN DECLARE cantidadRepetida int default 0; DECLARE i int default 0; DECLARE limite int default 0; DECLARE finished int default 0 ; DECLARE idEstacionTrabajoActual int; DECLARE idEstacionTrabajoSiguente int; DECLARE curEstacion CURSOR FOR SELECT id_linea from linea_de_montaje inner join estacion e on e.linea_de_montaje_id_linea = id_linea where id_linea in (select id_linea_asignada from automovil where nro_chasis = _chasis); DECLARE CONTINUE HANDLER FOR NOT FOUND SET finished = 1; OPEN curEstacion; select count(*) into limite from estacion_has_automovil where automovil_nro_chasis = _chasis; WHILE i <= limite and finished != 1 DO FETCH curEstacion INTO idEstacionTrabajoSiguente; set i = i + 1; end WHILE; CLOSE curEstacion; SELECT max(estacion_id_estacion) into idEstacionTrabajoActual FROM estacion_has_automovil where automovil_nro_chasis = _chasis ; IF(idEstacionTrabajoActual = (SELECT max(id_estacion) FROM estacion where linea_de_montaje_id_linea = (select id_linea_asignada from automovil where nro_chasis = _chasis)) )then UPDATE estacion_has_automovil SET fecha_egreso = now() WHERE estacion_id_estacion = idEstacionTrabajoActual; UPDATE automovil SET fecha_finalizado = now() WHERE nro_chasis = _chasis; ELSE SELECT count(*) into cantidadRepetida from estacion_has_automovil where estacion_id_estacion = idEstacionTrabajoSiguente and fecha_egreso is null; if(cantidadRepetida > 0) then select -1 into resultado; select 'No Se Puede Agregar a la estacion debido a que esta siendo ocupada por otro automovil' into mensaje; else UPDATE estacion_has_automovil SET fecha_egreso = now() WHERE estacion_id_estacion = idEstacionTrabajoActual; INSERT INTO estacion_has_automovil values(idEstacionTrabajoSiguente,_chasis,now() ,NULL); select 'El Automovil pasó a la siguiente Estacion' into mensaje; end if; END IF; END$$ DELIMITER ;
DELETE FROM DrivingDirections DELETE FROM TrailCharacteristicTrails DELETE FROM TrailFeatureTrails DELETE FROM TripReportTrails DELETE FROM Addresses DELETE FROM Trails DELETE FROM GuideBooks DELETE FROM TripReports DELETE FROM Users INSERT INTO Addresses (Location, Coordinate) VALUES ('Seattle', geography::STPointFromText('POINT(-122.3320708 47.6062095)', 4326))
/* Navicat Premium Data Transfer Source Server : mysql Source Server Type : MySQL Source Server Version : 80025 Source Host : localhost:3306 Source Schema : vue Target Server Type : MySQL Target Server Version : 80025 File Encoding : 65001 Date: 14/08/2021 11:49:12 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for book -- ---------------------------- DROP TABLE IF EXISTS `book`; CREATE TABLE `book` ( `id` int(0) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `price` decimal(10, 2) NULL DEFAULT NULL, `author` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `create_time` datetime(0) NULL DEFAULT NULL, `cover` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of book -- ---------------------------- INSERT INTO `book` VALUES (1, 'Java入门到入土', 99.00, 'java之父', '2021-08-12 16:00:00', 'http://localhost:9090/files/be110f51354c4a8a8fc42a47696acaa8'); INSERT INTO `book` VALUES (2, '123', 123.00, '123', '2021-08-01 16:00:00', 'http://localhost:9090/files/fb04aca305d441e9b7f2f85f3600e17c'); INSERT INTO `book` VALUES (3, 'php', 1.00, 'xxx', '2021-07-31 16:00:00', 'http://localhost:9090/files/71c6e6a8e1014a329eb7ccb8fd7534cc'); -- ---------------------------- -- Table structure for news -- ---------------------------- DROP TABLE IF EXISTS `news`; CREATE TABLE `news` ( `id` int(0) NOT NULL AUTO_INCREMENT, `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL, `author` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `time` datetime(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of news -- ---------------------------- INSERT INTO `news` VALUES (1, '1', NULL, '1', '2021-07-31 16:00:00'); INSERT INTO `news` VALUES (2, '2', NULL, '2', '2021-08-01 16:00:00'); INSERT INTO `news` VALUES (3, '3', NULL, '3', '2021-08-02 16:00:00'); INSERT INTO `news` VALUES (4, '哈哈哈', '<p>1234</p><p><br/></p><p>撒发送</p>', '234', '2021-08-03 16:00:00'); INSERT INTO `news` VALUES (5, 'test', '<p>ces<img src=\"https://img2.baidu.com/it/u=3663359702,1992818410&amp;fm=26&amp;fmt=auto&amp;gp=0.jpg\" contenteditable=\"false\" style=\"color: var(--el-text-color-regular); font-size: var(--el-dialog-content-font-size); max-width: 100%;\"/></p>', '小文', '2021-08-13 06:03:46'); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(0) NOT NULL AUTO_INCREMENT, `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `nick_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `age` int(0) NULL DEFAULT NULL, `sex` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `role` int(0) NULL DEFAULT NULL COMMENT '1.管理员,2.普通用户', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES (2, '2', NULL, '哈哈', 1, '女', '1', 2); INSERT INTO `user` VALUES (4, '4', '214', '4', 4, '男', '啊实打实', 2); INSERT INTO `user` VALUES (5, '5', '5', '5', 5, '男', '5', 2); INSERT INTO `user` VALUES (6, '6', '123456', '小六子', 6, '男', '6', 2); INSERT INTO `user` VALUES (7, '7', '123456', '7', 7, '女', '7', 2); INSERT INTO `user` VALUES (8, '8', '123456', '8', 8, '男', '8', 2); INSERT INTO `user` VALUES (9, '9', '123456', '9', 9, '女', '9', 2); INSERT INTO `user` VALUES (10, '10', '123456', '10', 12, '女', '121', 2); INSERT INTO `user` VALUES (11, '11', '123456', '11', 11, '男', '11', 2); INSERT INTO `user` VALUES (12, 'root', 'root', '小文', 18, '男', '大重庆', 1); INSERT INTO `user` VALUES (13, 'HAHA', '123456', 'OO', 12, '男', '1212', 2); INSERT INTO `user` VALUES (14, 'EEE', '123456', 'EE', 90, '男', 'GH', 2); INSERT INTO `user` VALUES (15, 'aa', '123456', 'asd', 1, '未知', 'asd', 2); SET FOREIGN_KEY_CHECKS = 1;
/* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50612 Source Host : localhost:3306 Source Database : jsjsite Target Server Type : MYSQL Target Server Version : 50612 File Encoding : 65001 Date: 2014-06-01 22:54:39 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for jsj_article -- ---------------------------- DROP TABLE IF EXISTS `jsj_article`; CREATE TABLE `jsj_article` ( `article_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章id号', `article_plate_id` int(11) NOT NULL COMMENT '该文章所属板块(栏目)', `article_column_id` int(11) NOT NULL, `article_title` varchar(255) NOT NULL COMMENT '文章标题', `article_postuser` varchar(255) NOT NULL COMMENT '文章作者(发布管理员)', `article_postdate` datetime NOT NULL COMMENT '发布时间', `article_modifieduser` varchar(255) DEFAULT NULL, `article_modifieddate` datetime DEFAULT NULL COMMENT '最后一次修改时间', `article_content` varchar(255) DEFAULT NULL COMMENT '文章内容', `isshow` tinyint(1) DEFAULT NULL, PRIMARY KEY (`article_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of jsj_article -- ---------------------------- INSERT INTO `jsj_article` VALUES ('1', '1', '1', '标题1', 'admin', '2014-05-28 00:00:00', null, '2014-05-28 09:58:42', '内容1', null); INSERT INTO `jsj_article` VALUES ('2', '1', '2', '标题2', 'admin', '2014-05-30 09:34:31', null, '2014-05-30 09:34:35', '内容2', null); INSERT INTO `jsj_article` VALUES ('3', '1', '3', '标题3', 'admin', '2014-05-30 09:34:55', null, '2014-05-30 09:34:59', '内容3', null); INSERT INTO `jsj_article` VALUES ('4', '2', '1', '标题1', 'admin', '2014-05-30 09:35:21', null, '2014-05-30 09:35:26', '内容4', null); INSERT INTO `jsj_article` VALUES ('5', '1', '1', '标题xx', 'admin', '2014-06-01 10:08:30', null, '2014-06-01 10:08:36', '内容5', null); INSERT INTO `jsj_article` VALUES ('6', '1', '1', '标题xc', 'admin', '2014-06-01 10:08:54', null, '2014-06-01 10:08:59', '内容6', null); -- ---------------------------- -- Table structure for jsj_attachment -- ---------------------------- DROP TABLE IF EXISTS `jsj_attachment`; CREATE TABLE `jsj_attachment` ( `attachment_id` int(11) NOT NULL, `attachment_name` varchar(255) NOT NULL, `attachment_type` varchar(255) NOT NULL, `attachment_path` varchar(255) NOT NULL, `attachment_hash` varchar(255) NOT NULL, PRIMARY KEY (`attachment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of jsj_attachment -- ---------------------------- -- ---------------------------- -- Table structure for jsj_column -- ---------------------------- DROP TABLE IF EXISTS `jsj_column`; CREATE TABLE `jsj_column` ( `column_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '栏目id', `column_name` varchar(255) NOT NULL COMMENT '栏目名称', `column_of_plate_id` int(11) NOT NULL COMMENT '栏目所属板块id', `isshow` varchar(255) NOT NULL, PRIMARY KEY (`column_id`,`column_of_plate_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of jsj_column -- ---------------------------- INSERT INTO `jsj_column` VALUES ('1', '学院新闻', '1', ''); INSERT INTO `jsj_column` VALUES ('1', '学生活动', '2', ''); INSERT INTO `jsj_column` VALUES ('1', '教师主页', '3', ''); INSERT INTO `jsj_column` VALUES ('1', '招聘信息', '4', ''); INSERT INTO `jsj_column` VALUES ('2', '工作概况', '1', ''); INSERT INTO `jsj_column` VALUES ('2', 'IT动态', '2', ''); INSERT INTO `jsj_column` VALUES ('2', '教师著作', '3', ''); INSERT INTO `jsj_column` VALUES ('2', '招生简章', '4', ''); INSERT INTO `jsj_column` VALUES ('3', '通知公告', '1', ''); -- ---------------------------- -- Table structure for jsj_plate -- ---------------------------- DROP TABLE IF EXISTS `jsj_plate`; CREATE TABLE `jsj_plate` ( `plate_id` int(11) NOT NULL AUTO_INCREMENT, `plate_name` varchar(255) NOT NULL, `isshow` varchar(255) DEFAULT NULL, PRIMARY KEY (`plate_id`), KEY `id` (`plate_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of jsj_plate -- ---------------------------- INSERT INTO `jsj_plate` VALUES ('1', '学院动态', null); INSERT INTO `jsj_plate` VALUES ('2', '学生之家', null); INSERT INTO `jsj_plate` VALUES ('3', '教师风采', null); INSERT INTO `jsj_plate` VALUES ('4', '招生就业', null); -- ---------------------------- -- Table structure for jsj_user -- ---------------------------- DROP TABLE IF EXISTS `jsj_user`; CREATE TABLE `jsj_user` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '账户编号', `user_name` varchar(255) NOT NULL COMMENT '用户名', `user_password` varchar(255) NOT NULL COMMENT '密码', `authority` varchar(255) NOT NULL COMMENT '权限配置', PRIMARY KEY (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of jsj_user -- ---------------------------- INSERT INTO `jsj_user` VALUES ('1', 'admin', 'admin', 'a:2:{s:8:\"is_admin\";s:1:\"1\";s:6:\"rights\";a:2:{i:0;i:1;i:1;i:2;}}');
declare v_pa VARCHAR2(1000); cursor c is select NOME from prova; begin for r in c loop v_pa='A ' || update prova set COGNOME = v_pa where NOME = r.nome; end loop; commit; end;
SELECT SUM(vowels) vowels, SUM(other) other FROM (SELECT name, CASE WHEN LEFT(UPPER(name), 1) IN ('A','E','I','O','U') THEN 1 ELSE 0 END AS vowels, CASE WHEN LEFT(UPPER(name), 1) IN ('A','E','I','O','U') THEN 0 ELSE 1 END AS other FROM accounts) t1;
/* Navicat MySQL Data Transfer Source Server : bo Source Server Version : 50141 Source Host : localhost:3306 Source Database : b-o Target Server Type : MYSQL Target Server Version : 50141 File Encoding : 65001 Date: 2011-10-19 01:45:58 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `comptes` -- ---------------------------- DROP TABLE IF EXISTS `comptes`; CREATE TABLE `comptes` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(16) DEFAULT '-', `password` varchar(32) DEFAULT '-', `accesslevel` smallint(5) unsigned DEFAULT '70', `creation` bigint(20) DEFAULT '0', `lastlogin` bigint(20) DEFAULT '0', `bantime` bigint(20) DEFAULT '0', `points` int(10) unsigned DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT COMMENT='by davedevils'; -- ---------------------------- -- Records of accounts -- ---------------------------- -- ---------------------------- -- Table structure for `characters` -- ---------------------------- DROP TABLE IF EXISTS `characters`; CREATE TABLE `characters` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(16) DEFAULT '-', `account` int(10) DEFAULT '0', `place` tinyint(3) unsigned DEFAULT '0', `sex` tinyint(3) unsigned DEFAULT '0', `job` tinyint(3) unsigned DEFAULT '0', `hairtype` tinyint(3) unsigned DEFAULT '0', `haircolor` int(10) DEFAULT '0', `facetype` tinyint(3) unsigned DEFAULT '0', `exp` bigint(20) unsigned DEFAULT '0', `size` smallint(5) unsigned DEFAULT '100', `posx` float DEFAULT '6973', `posy` float DEFAULT '100', `posz` float DEFAULT '3328', `world` int(10) unsigned DEFAULT '1', `angle` smallint(5) unsigned DEFAULT '0', `level` smallint(5) unsigned DEFAULT '1', `hp` int(10) unsigned DEFAULT '230', `mp` int(10) unsigned DEFAULT '0', `fp` int(10) unsigned DEFAULT '0', `stat_str` int(10) unsigned DEFAULT '15', `stat_sta` int(10) unsigned DEFAULT '15', `stat_dex` int(10) unsigned DEFAULT '15', `stat_int` int(10) unsigned DEFAULT '15', `statpoints` int(10) unsigned DEFAULT '0', `penya` int(10) unsigned DEFAULT '0', `skills` varchar(1024) DEFAULT '1:0,2:0,3:0', `skillpoints` smallint(10) unsigned DEFAULT '0', `creation` bigint(20) DEFAULT '0', `online` tinyint(3) unsigned DEFAULT '0', `pvp` int(11) DEFAULT '0', `pk` int(11) DEFAULT '0', `disposition` int(11) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of characters -- ---------------------------- -- ---------------------------- -- Table structure for `items` -- ---------------------------- DROP TABLE IF EXISTS `items`; CREATE TABLE `items` ( `id` int(10) NOT NULL AUTO_INCREMENT, `owner` int(10) DEFAULT '0', `type` tinyint(3) unsigned DEFAULT '0', `place` smallint(5) unsigned DEFAULT '0', `itemid` int(10) unsigned DEFAULT '0', `count` smallint(5) unsigned DEFAULT '0', `upgrade` smallint(5) unsigned DEFAULT '0', `element` tinyint(3) unsigned DEFAULT '0', `eleupgrade` tinyint(3) unsigned DEFAULT '0', `stats` tinyint(3) unsigned DEFAULT '0', `leveldown` tinyint(3) unsigned DEFAULT '0', `type0` tinyint(3) unsigned DEFAULT '0', `amount0` smallint(6) DEFAULT '0', `type1` tinyint(3) unsigned DEFAULT '0', `amount1` smallint(6) DEFAULT '0', `type2` tinyint(3) unsigned DEFAULT '0', `amount2` smallint(6) DEFAULT '0', `slot1` int(10) unsigned DEFAULT '0', `slot2` int(10) unsigned DEFAULT '0', `slot3` int(10) unsigned DEFAULT '0', `slot4` int(10) unsigned DEFAULT '0', `slot5` int(10) unsigned DEFAULT '0', `slot6` int(11) unsigned DEFAULT '0', `slot7` int(11) unsigned DEFAULT '0', `slot8` int(11) unsigned DEFAULT '0', `slot9` int(11) unsigned DEFAULT '0', `slot10` int(11) unsigned DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of items -- ---------------------------- -- ---------------------------- -- Table structure for `mails` -- ---------------------------- DROP TABLE IF EXISTS `mails`; CREATE TABLE `mails` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sender` int(11) DEFAULT '0', `receiver` int(11) DEFAULT '0', `opened` tinyint(3) unsigned DEFAULT '0', `time` bigint(20) DEFAULT '0', `money` int(11) unsigned DEFAULT '0', `item` int(11) DEFAULT '0', `title` varchar(255) DEFAULT '', `content` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of mails -- ----------------------------
/* DELETE 'videoclub' database*/ DROP SCHEMA IF EXISTS videoclub; /* DELETE USER 'spq' AT LOCAL SERVER*/ DROP USER IF EXISTS 'spq'@'%'; /* CREATE 'videoclub' DATABASE */ CREATE SCHEMA videoclub; /* CREATE THE USER 'spq' AT LOCAL SERVER WITH PASSWORD 'spq' */ CREATE USER IF NOT EXISTS 'spq'@'%' IDENTIFIED BY 'spq'; GRANT ALL ON videoclub.* TO 'spq'@'%';
CREATE PROCEDURE [sp_put_OtherChange] ( @NotificationType [nvarchar](25), @DocumentDate [datetime], @CompanyID [nvarchar](15), @Information [nvarchar](255) ) AS INSERT INTO [CatalogNotification] ( [NotificationType], [DocumentDate], [CompanyID], [Information] ) VALUES ( @NotificationType, @DocumentDate, @CompanyID, @information )
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Hôte : 127.0.0.1:3306 -- Généré le : ven. 22 nov. 2019 à 17:07 -- Version du serveur : 5.7.26 -- Version de PHP : 7.2.18 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de données : `livreor` -- -- -------------------------------------------------------- -- -- Structure de la table `commentaires` -- DROP TABLE IF EXISTS `commentaires`; CREATE TABLE IF NOT EXISTS `commentaires` ( `id` int(11) NOT NULL AUTO_INCREMENT, `commentaire` text NOT NULL, `id_utilisateur` int(11) NOT NULL, `date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=59 DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `commentaires` -- INSERT INTO `commentaires` (`id`, `commentaire`, `id_utilisateur`, `date`) VALUES (55, 'dsgraeh', 7, '2019-11-22 14:31:34'), (56, 'eric', 9, '2019-11-22 17:00:17'), (57, 'allez l om', 11, '2019-11-22 17:49:53'), (58, 'fini a cette heure ??', 10, '2019-11-22 18:05:23'); -- -------------------------------------------------------- -- -- Structure de la table `utilisateurs` -- DROP TABLE IF EXISTS `utilisateurs`; CREATE TABLE IF NOT EXISTS `utilisateurs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `login` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; -- -- Déchargement des données de la table `utilisateurs` -- INSERT INTO `utilisateurs` (`id`, `login`, `password`) VALUES (10, 'admin', '$2y$12$65mCnayYXM6XNPHabt/kGejqlpOp1oGsmOpM7HFsQINR6WPaOZMeO'), (8, 'toto', '$2y$12$NASVS/tE0/GZBO8dk18uSu1/l/VsluOERTcVO6cFZrHJNA3tF8AFi'), (9, 'toto13', '$2y$12$hVDXnVH0VtjLMOO99z1yoeVphzoPQqEU0njxovKtt/dHqJR5Vgmai'), (11, 'test', '$2y$12$fOtsjDCcLEWL6frIWfmt.OSZSi23AdH7jAb03Ihot4TlfTBQlbi0C'), (12, '', '$2y$12$KHgUjkCbPFfV/jvh7F/0q.vs9plwIxSB70SY9glqbl6xeKILTmpuK'); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.9.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Tempo de geração: 28-Ago-2019 às 01:49 -- Versão do servidor: 10.3.16-MariaDB -- versão do PHP: 7.1.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Banco de dados: `bd_tcc` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidato` -- CREATE TABLE `tbcandidato` ( `cpf` varchar(15) NOT NULL, `nome` varchar(50), `sobrenome` varchar(50), `sexo` varchar(1), `dataNasc` date, `email` varchar(50), `senha` varchar(200), `estadoCivil` varchar(15), `cep` varchar(10), `estado` varchar(20), `cidade` varchar(30), `endereco` varchar(30), `bairro` varchar(20), `tel1` varchar(16), `tel2` varchar(16), `linkedin` varchar(50), `facebook` varchar(50), `sitePessoal` varchar(50) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidatocompetencia` -- CREATE TABLE `tbcandidatocompetencia` ( `cpf` varchar(15) NOT NULL, `idCompetencia` int(11) NOT NULL, `competencia` varchar(30) NOT NULL, `nivel` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidatocurso` -- CREATE TABLE `tbcandidatocurso` ( `cpf` varchar(15) NOT NULL, `idCurso` int(11) NOT NULL, `nomeCurso` varchar(50) DEFAULT NULL, `nomeInstituicao` varchar(50) DEFAULT NULL, `anoConclusao` date DEFAULT NULL, `cargaHoraria` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidatoempresa` -- CREATE TABLE `tbcandidatoempresa` ( `cpf` varchar(15) NOT NULL, `idEmpresa` int(11) NOT NULL, `nomeEmpresa` varchar(50) DEFAULT NULL, `cargo` varchar(30) DEFAULT NULL, `dataInicio` date DEFAULT NULL, `dataSaida` date DEFAULT NULL, `atividades` varchar(300) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidatoformacao` -- CREATE TABLE `tbcandidatoformacao` ( `cpf` varchar(15) NOT NULL, `idFormacao` int(11) NOT NULL, `nomeCurso` varchar(50) NOT NULL, `nomeInstituicao` varchar(50) NOT NULL, `dataInicio` date NOT NULL, `dataTermino` date NOT NULL, `tipo` varchar(20) NOT NULL, `estado` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidatoobjetivo` -- CREATE TABLE `tbcandidatoobjetivo` ( `cpf` varchar(15) NOT NULL, `idObjetivo` int(11) NOT NULL, `idCargo` int(11) NOT NULL, `nivel` varchar(30) NOT NULL, `pretSal` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcandidatoprocesso` -- CREATE TABLE `tbcandidatoprocesso` ( `cpf` varchar(15) NOT NULL, `idProcesso` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcargo` -- CREATE TABLE `tbcargo` ( `idCargo` int(11) NOT NULL, `nomeCargo` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbcompetencia` -- CREATE TABLE `tbcompetencia` ( `idCompetencia` int(11) NOT NULL, `nomeComp` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbrecrutador` -- CREATE TABLE `tbrecrutador` ( `cnpj` varchar(20) NOT NULL, `nomeEmpresa` varchar(50) NOT NULL, `email` varchar(30) NOT NULL, `senha` varchar(200) NOT NULL, `cep` varchar(10) NOT NULL, `estado` varchar(20) NOT NULL, `cidade` varchar(30) NOT NULL, `endereco` varchar(30) NOT NULL, `bairro` varchar(20) NOT NULL, `tel1` varchar(16) NOT NULL, `tel2` varchar(16) NOT NULL, `linkedin` varchar(50) NOT NULL, `facebook` varchar(50) NOT NULL, `siteEmpresa` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbpergunta` -- CREATE TABLE `tbpergunta` ( `idPergunta` int(11) NOT NULL, `cnpj` varchar(20) NOT NULL, `pergunta` varchar(500) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbprocessocandpergunta` -- CREATE TABLE `tbprocessocandpergunta` ( `idProcesso` int(11) NOT NULL, `cpf` varchar(15) NOT NULL, `idPergunta` int(11) NOT NULL, `resposta` varchar(500) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbprocessocandteste` -- CREATE TABLE `tbprocessocandteste` ( `idProcesso` int(11) NOT NULL, `cpf` varchar(15) NOT NULL, `idTesteOnline` int(11) NOT NULL, `resultado` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Estrutura da tabela `tbprocessocandtestequestao` -- CREATE TABLE `tbprocessocandtestequestao` ( `idProcesso` int(11) NOT NULL, `cpf` varchar(15) NOT NULL, `idTesteOnline` int(11) NOT NULL, `idQuestao` int(11) NOT NULL, `resposta` varchar(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbprocessocompetencia` -- CREATE TABLE `tbprocessocompetencia` ( `idProcesso` int(11) NOT NULL, `idCompetencia` int(11) NOT NULL, `nivel` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbprocessopergunta` -- CREATE TABLE `tbprocessopergunta` ( `idProcesso` int(11) NOT NULL, `idPergunta` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbprocessoseletivo` -- CREATE TABLE `tbprocessoseletivo` ( `idProcesso` int(11) NOT NULL, `cnpj` varchar(20) NOT NULL, `idCargo` int(11) NOT NULL, `dataInicio` date NOT NULL, `dataLimiteCandidatar` date NOT NULL, `resumoVaga` text NOT NULL, `tipoContratacao` varchar(30) NOT NULL, `salario` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbprocessoteste` -- CREATE TABLE `tbprocessoteste` ( `idProcesso` int(11) NOT NULL, `idTesteOnline` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbquestao` -- CREATE TABLE `tbquestao` ( `idTesteOnline` int(11) NOT NULL, `cnpj` varchar(20) NOT NULL, `idQuestao` int(11) NOT NULL, `questao` varchar(1000) NOT NULL, `altA` varchar(500) NOT NULL, `altB` varchar(500) NOT NULL, `altC` varchar(500) NOT NULL, `altD` varchar(500) NOT NULL, `resposta` varchar(1) NOT NULL, `tempo` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `tbtesteonline` -- CREATE TABLE `tbtesteonline` ( `idTesteOnline` int(11) NOT NULL, `cnpj` varchar(20) NOT NULL, `nomeTesteOnline` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Índices para tabelas despejadas -- -- -- Índices para tabela `tbcandidato` -- ALTER TABLE `tbcandidato` ADD PRIMARY KEY (`cpf`); -- -- Índices para tabela `tbcandidatocompetencia` -- ALTER TABLE `tbcandidatocompetencia` ADD PRIMARY KEY (`cpf`,`idCompetencia`), ADD KEY `FK_COMPETENCIACAND` (`idCompetencia`); -- -- Índices para tabela `tbcandidatocurso` -- ALTER TABLE `tbcandidatocurso` ADD PRIMARY KEY (`cpf`,`idCurso`); -- -- Índices para tabela `tbcandidatoempresa` -- ALTER TABLE `tbcandidatoempresa` ADD PRIMARY KEY (`cpf`,`idEmpresa`); -- -- Índices para tabela `tbcandidatoformacao` -- ALTER TABLE `tbcandidatoformacao` ADD PRIMARY KEY (`cpf`,`idFormacao`); -- -- Índices para tabela `tbcandidatoobjetivo` -- ALTER TABLE `tbcandidatoobjetivo` ADD PRIMARY KEY (`cpf`,`idObjetivo`), ADD KEY `FK_CARGOCAND` (`idCargo`); -- -- Índices para tabela `tbcandidatoprocesso` -- ALTER TABLE `tbcandidatoprocesso` ADD PRIMARY KEY (`cpf`,`idProcesso`), ADD KEY `FK_PROCESSOCAND` (`idProcesso`); -- -- Índices para tabela `tbcargo` -- ALTER TABLE `tbcargo` ADD PRIMARY KEY (`idCargo`); -- -- Índices para tabela `tbcompetencia` -- ALTER TABLE `tbcompetencia` ADD PRIMARY KEY (`idCompetencia`); -- -- Índices para tabela `tbrecrutador` -- ALTER TABLE `tbrecrutador` ADD PRIMARY KEY (`cnpj`); -- -- Índices para tabela `tbpergunta` -- ALTER TABLE `tbpergunta` ADD PRIMARY KEY (`idPergunta`, `cnpj`); -- -- Índices para tabela `tbprocessocandpergunta` -- ALTER TABLE `tbprocessocandpergunta` ADD PRIMARY KEY (`idProcesso`,`cpf`,`idPergunta`), ADD KEY `FK_CPF_PERG` (`cpf`), ADD KEY `FK_PERGUNTA_CAND_PROC` (`idPergunta`); -- -- Índices para tabela `tbprocessocandteste` -- ALTER TABLE `tbprocessocandteste` ADD PRIMARY KEY (`idProcesso`,`cpf`,`idTesteOnline`), ADD KEY `FK_CPF_TESTE` (`cpf`), ADD KEY `FK_TESTE_PROC_CPF` (`idTesteOnline`); -- -- Índices para tabela `tbprocessocandtestequestao` -- ALTER TABLE `tbprocessocandtestequestao` ADD PRIMARY KEY (`idProcesso`,`cpf`,`idTesteOnline`,`idQuestao`), ADD KEY `FK_CPF_TESTE` (`cpf`), ADD KEY `FK_TESTE_PROC_CPF` (`idTesteOnline`), ADD KEY `FK_TESTE_PROC_QUESTAO` (`idQuestao`); -- -- Índices para tabela `tbprocessocompetencia` -- ALTER TABLE `tbprocessocompetencia` ADD PRIMARY KEY (`idProcesso`,`idCompetencia`), ADD KEY `FK_COMPETENCIA` (`idCompetencia`); -- -- Índices para tabela `tbprocessopergunta` -- ALTER TABLE `tbprocessopergunta` ADD PRIMARY KEY (`idProcesso`,`idPergunta`), ADD KEY `FK_IDPERGUNTA` (`idPergunta`); -- -- Índices para tabela `tbprocessoseletivo` -- ALTER TABLE `tbprocessoseletivo` ADD PRIMARY KEY (`idProcesso`), ADD KEY `FK_CNPJ` (`cnpj`), ADD KEY `FK_IDCARGO` (`idCargo`); -- -- Índices para tabela `tbprocessoteste` -- ALTER TABLE `tbprocessoteste` ADD PRIMARY KEY (`idProcesso`,`idTesteOnline`), ADD KEY `FK_IDTESTE_PROCESSO` (`idTesteOnline`); -- -- Índices para tabela `tbquestao` -- ALTER TABLE `tbquestao` ADD PRIMARY KEY (`idTesteOnline`,`idQuestao`, `cnpj`); -- -- Índices para tabela `tbtesteonline` -- ALTER TABLE `tbtesteonline` ADD PRIMARY KEY (`idTesteOnline`, `cnpj`); -- -- AUTO_INCREMENT de tabelas despejadas -- -- -- AUTO_INCREMENT de tabela `tbcargo` -- ALTER TABLE `tbcargo` MODIFY `idCargo` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `tbcompetencia` -- ALTER TABLE `tbcompetencia` MODIFY `idCompetencia` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de tabela `tbprocessoseletivo` -- ALTER TABLE `tbprocessoseletivo` MODIFY `idProcesso` int(11) NOT NULL AUTO_INCREMENT; -- -- Restrições para despejos de tabelas -- -- -- Limitadores para a tabela `tbcandidatocompetencia` -- ALTER TABLE `tbcandidatocompetencia` ADD CONSTRAINT `FK_COMPETENCIACAND` FOREIGN KEY (`idCompetencia`) REFERENCES `tbcompetencia` (`idCompetencia`), ADD CONSTRAINT `FK_CPFCAND` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`); -- -- Limitadores para a tabela `tbcandidatocurso` -- ALTER TABLE `tbcandidatocurso` ADD CONSTRAINT `FK_CPF_CURSO` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`); -- -- Limitadores para a tabela `tbcandidatoempresa` -- ALTER TABLE `tbcandidatoempresa` ADD CONSTRAINT `FK_CPF_EMPRESA` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`); -- -- Limitadores para a tabela `tbcandidatoformacao` -- ALTER TABLE `tbcandidatoformacao` ADD CONSTRAINT `FK_CPF_FORMACAO` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`); -- -- Limitadores para a tabela `tbcandidatoobjetivo` -- ALTER TABLE `tbcandidatoobjetivo` ADD CONSTRAINT `FK_CPFOBJ` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`), ADD CONSTRAINT `FK_CARGOCAND` FOREIGN KEY (`idCargo`) REFERENCES `tbCargo` (`idCargo`); -- -- Limitadores para a tabela `tbcandidatoprocesso` -- ALTER TABLE `tbcandidatoprocesso` ADD CONSTRAINT `FK_CPF` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`), ADD CONSTRAINT `FK_PROCESSOCAND` FOREIGN KEY (`idProcesso`) REFERENCES `tbprocessoseletivo` (`idProcesso`); -- -- Limitadores para a tabela `tbprocessocandpergunta` -- ALTER TABLE `tbprocessocandpergunta` ADD CONSTRAINT `FK_CPF_PERG` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`), ADD CONSTRAINT `FK_IDPROCESSO_PERG` FOREIGN KEY (`idProcesso`) REFERENCES `tbprocessoseletivo` (`idProcesso`), ADD CONSTRAINT `FK_PERGUNTA_CAND_PROC` FOREIGN KEY (`idPergunta`) REFERENCES `tbpergunta` (`idPergunta`); -- -- Limitadores para a tabela `tbprocessocandteste` -- ALTER TABLE `tbprocessocandteste` ADD CONSTRAINT `FK_CPF_TESTE` FOREIGN KEY (`cpf`) REFERENCES `tbcandidato` (`cpf`), ADD CONSTRAINT `FK_PROCESSO_TESTE` FOREIGN KEY (`idProcesso`) REFERENCES `tbprocessoseletivo` (`idProcesso`), ADD CONSTRAINT `FK_TESTE_PROC_CPF` FOREIGN KEY (`idTesteOnline`) REFERENCES `tbtesteonline` (`idTesteOnline`); -- -- Limitadores para a tabela `tbprocessocompetencia` -- ALTER TABLE `tbprocessocompetencia` ADD CONSTRAINT `FK_COMPETENCIA` FOREIGN KEY (`idCompetencia`) REFERENCES `tbcompetencia` (`idCompetencia`), ADD CONSTRAINT `FK_PROCESSO` FOREIGN KEY (`idProcesso`) REFERENCES `tbprocessoseletivo` (`idProcesso`); -- -- Limitadores para a tabela `tbprocessopergunta` -- ALTER TABLE `tbprocessopergunta` ADD CONSTRAINT `FK_IDPERGUNTA` FOREIGN KEY (`idPergunta`) REFERENCES `tbpergunta` (`idPergunta`), ADD CONSTRAINT `FK_IDPROCESSO` FOREIGN KEY (`idProcesso`) REFERENCES `tbprocessoseletivo` (`idProcesso`); -- -- Limitadores para a tabela `tbprocessoseletivo` -- ALTER TABLE `tbprocessoseletivo` ADD CONSTRAINT `FK_CNPJ` FOREIGN KEY (`cnpj`) REFERENCES `tbrecrutador` (`cnpj`), ADD CONSTRAINT `FK_IDCARGO` FOREIGN KEY (`idCargo`) REFERENCES `tbcargo` (`idCargo`); -- -- Limitadores para a tabela `tbprocessoteste` -- ALTER TABLE `tbprocessoteste` ADD CONSTRAINT `FK_IDPROCESSO_TESTE` FOREIGN KEY (`idProcesso`) REFERENCES `tbprocessoseletivo` (`idProcesso`), ADD CONSTRAINT `FK_IDTESTE_PROCESSO` FOREIGN KEY (`idTesteOnline`) REFERENCES `tbtesteonline` (`idTesteOnline`); COMMIT; /* INSERINDO TESTES ONLINE */ INSERT INTO `tbtesteonline` (`idTesteOnline`, `cnpj`, `nomeTesteOnline`) VALUES (1, '555', 'Português '), (2, '555', 'Raciocínio Lógico '), (3, '555', 'Inglês '); INSERT INTO `tbquestao` (`idTesteOnline`, `cnpj`, `idQuestao`, `questao`, `altA`, `altB`, `altC`, `altD`, `resposta`, `tempo`) VALUES (1, '555', 1, 'Ela sempre resolve os problemas com bastante ..........', 'Discrição', 'Descrição', 'Discrissão', 'Todas as anteriores', 'A', 30), (1, '555', 2, 'Camila falou que queria ......... exemplos, ......... não falou quantos.', 'Más / mais', 'Mais / mais', 'Mais / más', 'Mais / mas', 'D', 30), (1, '555', 3, 'Vou ao mercado comprar algo pra ......... beber.', 'Mim', 'Eu', 'Nós', 'Nenhuma das anteriores', 'B', 30), (1, '555', 4, 'Preciso levar o meu carro para ..........', 'Concertar', 'Consertar', 'Conscertar', 'Todas as anteriores', 'B', 30), (1, '555', 5, 'Qual é o significado de \"supérfluo\"?', 'Grande', 'Lucro', 'Desnecessário', 'Poderoso', 'C', 30), (1, '555', 6, 'Ele está trabalhando ......... pois está sempre de ......... humor.', 'Mal / mau', 'Mau / mal', 'Mal / mal', 'Mau / mau', 'A', 30), (1, '555', 7, 'Qual é o significado de \"nostalgia\"?', 'Magia negra', 'Saudade', 'Tipo de remédio', 'Valor', 'B', 30), (1, '555', 8, '......... muito tempo que não visitávamos um museu.', 'A', 'À', 'Á', 'Há', 'D', 30), (1, '555', 9, 'Qual é o significado de \"xenofobia\"?', 'Aversão a cachoeiras e riachos', 'Aversão a insetos', 'Aversão a pessoas e coisas estrangeiras', 'Aversão ao escuro', 'C', 30), (1, '555', 10, '......... você não me conta a verdade e me explica o ......... disso tudo?', 'Porque / por que', 'Porque / por quê', 'Por que / porquê', 'Por que / porque', 'C', 30), (2, '555', 1, 'Considere a série de números: 26, 24, 20, 18, 14,... Qual é o próximo número?', '10', '12', '13', '16', 'B', 120), (2, '555', 2, 'Considere a série de números: 51, 9, 51, 12, 51, 15, 51,… Qual é o próximo número?', '14', '18', '21', '24', 'B', 120), (2, '555', 3, 'Considere a série de números: 23, 24, 27, 28, 31, 32,… Qual é o próximo número?', '27', '30', '34', '35', 'D', 120), (2, '555', 4, 'Todas as árvores do parque são floridas. Algumas árvores do parque são ipês amarelos. Todos os ipês amarelos são árvores floridas. Se as duas primeiras sentenças são verdadeiras, a terceira é:', 'Verdadeira', 'Falsa', 'Incerta', 'Nenhuma das anteriores', 'A', 120), (2, '555', 5, 'Maria corre mais rápido do que Ana. Sílvia corre mais rápido do que Maria. Ana corre mais rápido do que Sílvia. Se as duas primeiras sentenças são verdadeiras, a terceira é:', 'Verdadeira', 'Falsa', 'Incerta', 'Nenhuma das anteriores', 'B', 120), (2, '555', 6, 'A turma A tem um maior número de alunos do que a turma B. A turma C tem um número menor de alunos do que a turma B. A turma A tem um maior número de alunos do que a turma C. Se as duas primeiras sentenças são verdadeiras, a terceira é:', 'Verdadeira', 'Falsa', 'Incerta', 'Nenhuma das anteriores', 'A', 120), (2, '555', 7, 'Todas as escolas do bairro ficaram fechadas durante a semana. Muitos pais cancelaram as matrículas de seus filhos das escolas do bairro.', 'A sentença 1 é a causa e a sentença 2 é o seu efeito', 'A sentença 2 é a causa e sentença 1 é o seu efeito', 'As sentenças 1 e 2 são causas independentes', 'As sentenças 1 e 2 são efeitos de causas independentes', 'D', 120), (2, '555', 8, 'O preço do ouro no mercado interno permaneceu inalterado durante a última semana. O preço do ouro no mercado internacional subiu durante a última semana.', 'A sentença 1 é a causa e a sentença 2 é o seu efeito', 'A sentença 2 é a causa e sentença 1 é o seu efeito', 'As sentenças 1 e 2 são causas independentes', 'As sentenças 1 e 2 são efeitos de causas independentes', 'D', 120), (2, '555', 9, 'Cada pessoa que é sócia do clube Alfa também é sócia do clube Beta. Alguns sócios do clube Gama, também são sócios do clube Beta. João é sócio de dois desses clubes.', 'Se João é sócio do clube Alfa, ele não faz parte do clube Gama.', 'Se João é sócio do clube Beta, ele não é sócio do clube Gama.', 'Se João é sócio do clube Beta, ele pertence ao clube Alfa.', 'Todos os sócios do clube Beta, fazem parte de, no mínimo, dois clubes.', 'A', 120), (2, '555', 10, 'No final de uma corrida, quatro motos cruzaram a linha de chegada, uma após a outra. As quatro motos eram das cores: amarela, vermelha, marrom e laranja.\n\nConsidere as seguintes afirmativas:\n 1) João chegou logo atrás de Pedro.\n 2) A moto vermelha chegou antes da moto laranja.\n 3) Fábio não estava na moto marrom.\n 4) Pedro estava na moto vermelha.\n 5) Tiago, que estava na moto amarela, chegou após João.\n\nBaseado na informação anterior, qual das afirmativas é verdadeira?', 'Fábio chegou na terceira posição', 'A moto marrom terminou a corrida antes da moto laranja', 'João estava na moto laranja', 'A moto laranja chegou na terceira posição', 'B', 180), (3, '555', 1, 'Quando perguntam ¨Can I take a picture with you?¨, significa:', 'Eu posso falar com você?', 'Eu posso tirar uma foto com você?', 'Eu posso tirar uma foto sua?', ' Eu posso dançar com você?', 'B', 60), (3, '555', 2, 'A palavra TREE é o mesmo que:', 'Três', 'Torre', 'Terça-feira', 'Árvore', 'D', 60), (3, '555', 3, 'Quando alguém diz ¨I am in love with you\", significa:', 'Eu estou apaixonado(a) por você', 'Eu te amo muito', 'Eu te quero', 'Eu amo estar com você', 'A', 60), (3, '555', 4, 'Complete: Did you ___ well last night?', 'slep', 'slept', 'sleep', 'slopt', 'C', 60), (3, '555', 5, 'Na frase, ¨I\'m angry because the bus is late.¨, a palavra ANGRY significa:', 'Feliz', 'Atrasado', 'Nervoso', 'Ansioso', 'C', 60), (3, '555', 6, 'Na frase, ¨What is wrong with being confident?¨, a tradução da palavra CONFIDENT seria:', 'Confidente', 'Confuso', 'Carinhoso', 'Confiante', 'D', 60), (3, '555', 7, 'Complete: ¨___ I help you?¨', 'Do', 'May', 'Have', 'Does', 'B', 60), (3, '555', 8, 'Qual é o antônimo de HAPPY?', 'Love', 'Joyful', 'Sad', 'Unfortunate', 'C', 60), (3, '555', 9, 'A palavra PIECE significa o quê?', 'Pedaço', 'Coisa', 'Pedra', 'Paz', 'A', 60), (3, '555', 10, 'Na frase, ¨I\'m feeling weird¨, a palavra WEIRD significa o quê?', 'doente', 'estranho', 'assustado', 'cansado', 'B', 60); -- -------------------------------------------------------- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
# --- !Ups ALTER TABLE person ADD COLUMN pin VARCHAR(10) NOT NULL DEFAULT(''); # --- !Downs ALTER TABLE person DROP COLUMN pin;
ALTER TABLE student ADD COLUMN dob DATE, ADD COLUMN photo VARCHAR, ADD COLUMN gender VARCHAR, ADD COLUMN class VARCHAR, ADD COLUMN fatherName VARCHAR, ADD COLUMN motherName VARCHAR, ADD COLUMN fatherProfession VARCHAR, ADD COLUMN motherProfession VARCHAR, ADD COLUMN address VARCHAR, ADD COLUMN city VARCHAR, ADD COLUMN state VARCHAR, ADD COLUMN pinCode VARCHAR; ALTER TABLE school ADD COLUMN logo VARCHAR;
# 고양이와 개는 몇 마리 있을까 SELECT ANIMAL_TYPE, COUNT(ANIMAL_TYPE) AS 'count' FROM ANIMAL_INS GROUP BY ANIMAL_TYPE ORDER BY ANIMAL_TYPE # 동명 동물 수 찾기 SELECT NAME, COUNT(NAME) AS 'COUNT' FROM ANIMAL_INS GROUP BY NAME HAVING COUNT(NAME) > 1 ORDER BY NAME # 입양 시각 구하기(1) SELECT EXTRACT(HOUR FROM DATETIME) AS HOUR, COUNT(EXTRACT(HOUR FROM DATETIME)) AS COUNT FROM ANIMAL_OUTS GROUP BY HOUR HAVING HOUR >= 9 AND HOUR <20 ORDER BY HOUR ASC # 입양 시각 구하기(2) # 방법1 SELECT T1.hour, ifnull(T2.count, 0) from ( select 0 as hour union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9 union select 10 union select 11 union select 12 union select 13 union select 14 union select 15 union select 15 union select 16 union select 17 union select 18 union select 19 union select 20 union select 21 union select 22 union select 23) T1 left join ( select extract(hour from datetime) as hour, count(*) as count from animal_outs group by hour) T2 on T2.hour = T1.hour # 방법2 SET @hour := -1; SELECT (@hour := @hour + 1) as HOUR, (SELECT COUNT(*) FROM ANIMAL_OUTS WHERE HOUR(DATETIME) = @hour) as COUNT FROM ANIMAL_OUTS WHERE @hour < 23;
CREATE DATABASE procedural; -- DDL - Data Defination Language -- It is used to define structure of database and table CREATE TABLE user ( id int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, fname varchar(25) NOT NULL, lname varchar(25) NOT NULL, email varchar(255) NOT NULL, uname varchar(30) NOT NULL, pass varchar(255) NOT NULL ); ALTER TABLE user CHANGE password pass VARCHAR(255); TRUNCATE TABLE user; DROP TABLE user; -- DML - Data Manipulation Language -- It is used to manipulate data inside table. -- Insert Single Line Code SQL INSERT INTO user (fname, lname, email, uname, pass) VALUES('Flurry', 'Code', 'mail@mailbox.com', 'flurry', 'password'); -- Insert Multiple Line Code SQL INSERT INTO user (fname, lname, email, uname, pass) VALUES('Hue', 'Lui', 'hue@mailbox.com', 'hue', 'password'), ('Tom', 'Jerry', 'tommy@mailbox.com', 'thomas', 'password'), ('Admin', 'System', 'admin@mailbox.com', 'admin', 'password'), ('Qwerty', 'Asdf', 'qwas@mailbox.com', 'qwerty', 'password'); -- Update all Column UPDATE user SET pass = 'pass'; -- Update Single Column UPDATE user SET pass = 'pass' WHERE uname='thomas'; -- Delete all from Table DELETE FROM user; -- Delete Single Column DELETE FROM user WHERE uname='thomas'; -- DQL - Data Query Language --Select All SELECT * FROM user; -- Select Single Column SELECT uname FROM user;
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Sep 16, 2020 at 11:32 AM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `permohonankp` -- -- -------------------------------------------------------- -- -- Table structure for table `kelompok_mahasiswa` -- CREATE TABLE `kelompok_mahasiswa` ( `id_kelompok` int(11) NOT NULL, `ketua_kelompok` varchar(64) NOT NULL, `deskripsi_kegiatan` text NOT NULL, `bidang_kegiatan` varchar(128) NOT NULL, `status_kelompok` varchar(64) NOT NULL, `id_perusahaan` int(11) NOT NULL, `id_surat` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `mahasiswa` -- CREATE TABLE `mahasiswa` ( `nim_mahasiswa` varchar(64) NOT NULL, `nama_mahasiswa` varchar(128) NOT NULL, `posisi` varchar(128) NOT NULL, `id_kelompok` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `perusahaan` -- CREATE TABLE `perusahaan` ( `id_perusahaan` int(11) NOT NULL, `nama_perusahaan` varchar(128) NOT NULL, `alamat_perusahaan` varchar(128) NOT NULL, `tanggal_pengajuan` date NOT NULL, `tanggal_disetujui` date NOT NULL, `status_perusahaan` varchar(64) NOT NULL, `jumlah_mahasiswa` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `perusahaan` -- INSERT INTO `perusahaan` (`id_perusahaan`, `nama_perusahaan`, `alamat_perusahaan`, `tanggal_pengajuan`, `tanggal_disetujui`, `status_perusahaan`, `jumlah_mahasiswa`) VALUES (1, 'PT Djarum Super', 'Jl. Mahkota Utama', '2020-09-10', '2020-09-16', 'Sudah Di Approve', 0), (2, 'PT Telkom Indonesia', 'Jl Lembong', '2020-09-10', '2020-09-16', 'Sudah Di Approve', 0), (3, 'PT. UNIKOM ', 'DU ', '2020-09-11', '2020-09-16', 'Sudah Di Approve', 0), (4, 'PT. MENCARI CINTA SEJATI', 'Rumah Bill Gates', '2020-09-11', '2020-09-16', 'Sudah Di Approve', 0), (5, 'PT Code Politan', 'Setia Budi', '2020-09-15', '0000-00-00', 'Belum Di Approve', 0); -- -------------------------------------------------------- -- -- Table structure for table `surat` -- CREATE TABLE `surat` ( `id_surat` int(11) NOT NULL, `nomor_surat` int(11) NOT NULL, `status_surat` varchar(64) NOT NULL, `tanggal_pengajuan` date NOT NULL, `tanggal_disetujui` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `user_admin` -- CREATE TABLE `user_admin` ( `id_user` int(11) NOT NULL, `username` varchar(64) NOT NULL, `password` varchar(512) NOT NULL, `level` varchar(64) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `user_admin` -- INSERT INTO `user_admin` (`id_user`, `username`, `password`, `level`) VALUES (1, 'admin', 'admin', 'Admin'); -- -- Indexes for dumped tables -- -- -- Indexes for table `kelompok_mahasiswa` -- ALTER TABLE `kelompok_mahasiswa` ADD PRIMARY KEY (`id_kelompok`), ADD KEY `id_perusahaan` (`id_perusahaan`), ADD KEY `id_surat` (`id_surat`); -- -- Indexes for table `mahasiswa` -- ALTER TABLE `mahasiswa` ADD PRIMARY KEY (`nim_mahasiswa`), ADD KEY `id_kelompok` (`id_kelompok`); -- -- Indexes for table `perusahaan` -- ALTER TABLE `perusahaan` ADD PRIMARY KEY (`id_perusahaan`); -- -- Indexes for table `surat` -- ALTER TABLE `surat` ADD PRIMARY KEY (`id_surat`), ADD KEY `Nomor_Surat` (`nomor_surat`); -- -- Indexes for table `user_admin` -- ALTER TABLE `user_admin` ADD PRIMARY KEY (`id_user`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `kelompok_mahasiswa` -- ALTER TABLE `kelompok_mahasiswa` MODIFY `id_kelompok` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; -- -- AUTO_INCREMENT for table `perusahaan` -- ALTER TABLE `perusahaan` MODIFY `id_perusahaan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `surat` -- ALTER TABLE `surat` MODIFY `nomor_surat` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `user_admin` -- ALTER TABLE `user_admin` MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- Constraints for dumped tables -- -- -- Constraints for table `kelompok_mahasiswa` -- ALTER TABLE `kelompok_mahasiswa` ADD CONSTRAINT `kelompok_mahasiswa_ibfk_1` FOREIGN KEY (`id_perusahaan`) REFERENCES `perusahaan` (`id_perusahaan`), ADD CONSTRAINT `kelompok_mahasiswa_ibfk_2` FOREIGN KEY (`id_surat`) REFERENCES `surat` (`id_surat`); -- -- Constraints for table `mahasiswa` -- ALTER TABLE `mahasiswa` ADD CONSTRAINT `mahasiswa_ibfk_1` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok_mahasiswa` (`id_kelompok`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- 전체 재료 화면 select a.id as category_id, a.name as category,b.id as sub_category_id, b.name as sub_category, c.id as ingredient_id, c.name as ingredient, c.file_name from ingredient_category a left outer join ingredient_sub_category b on a.id = b.ingredient_category_id left outer join ingredient_sub_sub_category c on b.id = c.ingredient_sub_category_id where a.id= 2 -- 1,2,3,4,5 order by a.id, b.id, c.id asc; -- 내 냉장고에 있는 재료 select a.ingredient_sub_sub_category_id, b.name, b.file_name from my_refrigerator a left outer join ingredient_sub_sub_category b on a.ingredient_sub_sub_category_id = b.id; -- 냉장고 속 재료 삭제할 때는 ingredient_sub_sub_category_id의 값만 주면 됨. -- 추천메뉴 select id, name, small_image_location, big_image_location from ( select id, name, small_image_location, big_image_location from food where food_type_id = 1 and id in (select food_id from food_ingredients where name like '%상추%') union select id, name, small_image_location, big_image_location from food where food_type_id = 1 and id in (select food_id from food_ingredients where name like '%콩나물%') union select id, name, small_image_location, big_image_location from food where food_type_id = 1 and id in (select food_id from food_ingredients where name like '%곤드레나물%') ) food limit 4; -- 레시피 화면 select id, name, small_image_location, calorie, carbohydrate, protein, fat, natrium from food where id = 387; select * from food_recipe where food_id = 387; select * from food_ingredients where food_id = 387; -- 메모장에 체크박스는 존재 select * from my_notepad; -- 즐겨찾기 메뉴 목록 select a.food_id, b.name, b.small_image_location from my_favorates a left outer join food b on a.food_id = b.id; select ingredient_sub_sub_category_id from my_refrigerator;
USE [MyDB] IF Object_ID('oha.spGetCustomerAddress') IS NOT NULL BEGIN PRINT 'Alter stored procedure oha.spGetCustomerAddress'; END ELSE BEGIN RAISERROR ('Stored procedure oha.spGetCustomerAddress missing',18,1); END
-- 评分标准表: DROP TABLE IF EXISTS SYS_GRADE_STD; CREATE TABLE SYS_GRADE_STD ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '模板编号', `C_CATEGORY` VARCHAR(300) COMMENT '一级要素', `C_PROJECT` VARCHAR(300) COMMENT '二级要素', `C_REQUEST` VARCHAR(2000) COMMENT '基本规范要求', `C_CONTENT` VARCHAR(2000) COMMENT '企业达标标准', `N_SCORE` INT COMMENT '标准分值', `C_METHOD` VARCHAR(2000) COMMENT '考评方法', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 自评/评审报告模板表: DROP TABLE IF EXISTS SYS_REPORT_TEMPLATE; CREATE TABLE SYS_REPORT_TEMPLATE ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '模板编号', `Z_TYPE` CHAR(1) COMMENT '类型', `C_CONTENT` LONGTEXT COMMENT '内容', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 自评/评审报告表: DROP TABLE IF EXISTS SYS_REPORT; CREATE TABLE SYS_REPORT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '方案编号', `Z_TYPE` CHAR(1) COMMENT '类型', `C_CONTENT` LONGTEXT COMMENT '内容', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 企业自评方案表: DROP TABLE IF EXISTS SSM_GRADE_PLAN; CREATE TABLE SSM_GRADE_PLAN ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `T_START` DATETIME COMMENT '自评开始时间', `T_END` DATETIME COMMENT '自评结束时间', `C_LEADER` VARCHAR(50) COMMENT '自评组组长', `C_MEMBERS` VARCHAR(3000) COMMENT '自评组主要成员', `N_GET` INT DEFAULT 0 COMMENT '得分项', `N_DEDUCT` INT DEFAULT 0 COMMENT '扣分项', `N_LACK` INT DEFAULT 0 COMMENT '缺项', `P_PROFESSION` VARCHAR(32) COMMENT '专业编号', `S_PROFESSION` VARCHAR(100) COMMENT '专业', `P_STATE` VARCHAR(32) COMMENT '自评状态', `S_STATE` VARCHAR(100) COMMENT '自评状态', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 企业自评内容表: DROP TABLE IF EXISTS SSM_GRADE_CONTENT; CREATE TABLE SSM_GRADE_CONTENT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '自评方案表SID', `R_STD` INT(11) NOT NULL COMMENT '标准编号', `C_CATEGORY` VARCHAR(300) COMMENT '一级要素', `C_PROJECT` VARCHAR(300) COMMENT '二级要素', `C_REQUEST` VARCHAR(2000) COMMENT '基本规范要求', `C_CONTENT` VARCHAR(2000) COMMENT '企业达标标准', `N_SCORE` INT COMMENT '标准分值', `C_METHOD` VARCHAR(2000) COMMENT '考评方法', `C_DESC` VARCHAR(2000) COMMENT '自评描述', `B_BLANK` CHAR(1) COMMENT '是否缺项', `N_SCORE_REAL` INT COMMENT '实际得分', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审方案表: DROP TABLE IF EXISTS SSM_REVIEW_PLAN; CREATE TABLE SSM_REVIEW_PLAN ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_ENTERPRISE` INT(11) COMMENT '申请企业编号', `S_ENTERPRISE` VARCHAR(300) COMMENT '申请企业', `C_ENTERPRISE_ADDR` VARCHAR(500) COMMENT '申请企业地址', `T_START` DATETIME COMMENT '评审开始时间', `T_END` DATETIME COMMENT '评审结束时间', `R_LEADER` INT(11) COMMENT '评审组组长', `S_LEADER` VARCHAR(300) COMMENT '评审组组长', `P_STATE` VARCHAR(32) DEFAULT 0 COMMENT '评审状态', `S_STATE` VARCHAR(100) COMMENT '评审状态', `R_SID` INT(11) COMMENT '自评主表编号', `C_CONTACT` VARCHAR(50) COMMENT '联系人', `C_PHONE` VARCHAR(50) COMMENT '电话', `C_FAX` VARCHAR(50) COMMENT '传真', `C_TEL` VARCHAR(50) COMMENT '手机', `C_EMAIL` VARCHAR(100) COMMENT '电子邮箱', `C_REVIEW_ADDR` VARCHAR(500) COMMENT '评审企业地址', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审成员表: DROP TABLE IF EXISTS SSM_REVIEW_MEMBERS; CREATE TABLE SSM_REVIEW_MEMBERS ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '评审方案编号', `R_MEMBER` INT(11) COMMENT '成员编号', `S_MEMBER` VARCHAR(300) COMMENT '成员名称', `C_JOB` VARCHAR(100) COMMENT '职称', `C_TEL` VARCHAR(50) COMMENT '电话', `C_REMARKS` VARCHAR(2000) COMMENT '备注', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审内容表: DROP TABLE IF EXISTS SSM_REVIEW_CONTENT; CREATE TABLE SSM_REVIEW_CONTENT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '评审方案编号', `C_CATEGORY` VARCHAR(300) COMMENT '一级要素', `C_PROJECT` VARCHAR(300) COMMENT '二级要素', `C_REQUEST` VARCHAR(2000) COMMENT '基本规范要求', `C_CONTENT` VARCHAR(2000) COMMENT '企业达标标准', `N_SCORE` INT COMMENT '标准分值', `C_METHOD` VARCHAR(2000) COMMENT '考评方法', `C_DESC` VARCHAR(2000) COMMENT '自评描述', `B_BLANK` CHAR(1) COMMENT '是否缺项', `N_SCORE_REAL` VARCHAR(2000) COMMENT '企业自评得分', `C_DESC_REVIEW` VARCHAR(2000) COMMENT '评审描述', `N_SCORE_REVIEW` INT COMMENT '评审得分', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审证书表: DROP TABLE IF EXISTS SSM_REVIEW_CERT; CREATE TABLE SSM_REVIEW_CERT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '评审方案编号', `C_ENTERPRISE` VARCHAR(300) NOT NULL COMMENT '单位名称', `N_LEVEL` INT COMMENT '等级', `P_INSDUTRY` VARCHAR(32) COMMENT '行业编号', `S_INSDUTRY` VARCHAR(100) COMMENT '行业', `P_PROFESSION` VARCHAR(32) COMMENT '专业编号', `S_PROFESSION` VARCHAR(100) COMMENT '专业', `C_CERT_NUMBER` VARCHAR(100) COMMENT '证书编号', `C_ISSUING_AUTHORITY` VARCHAR(300) COMMENT '发证机关', `C_PRINTED_NUMBER` VARCHAR(100) COMMENT '印制编号', `T_ISSUING_DATE` DATE COMMENT '发证日期', `T_VALIDITY` DATE COMMENT '有效期截至', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审方案结果表: DROP TABLE IF EXISTS SSM_RESULT_PLAN; CREATE TABLE SSM_RESULT_PLAN ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_ENTERPRISE` INT(11) COMMENT '申请企业编号', `S_ENTERPRISE` VARCHAR(300) COMMENT '申请企业', `C_ENTERPRISE_ADDR` VARCHAR(500) COMMENT '申请企业地址', `T_START` DATETIME COMMENT '评审开始时间', `T_END` DATETIME COMMENT '评审结束时间', `R_LEADER` INT(11) COMMENT '评审组组长', `S_LEADER` VARCHAR(300) COMMENT '评审组组长', `P_STATE` VARCHAR(32) DEFAULT 0 COMMENT '状态', `S_STATE` VARCHAR(100) COMMENT '状态', `R_SID` INT(11) COMMENT '自评主表编号', `C_CONTACT` VARCHAR(50) COMMENT '联系人', `C_PHONE` VARCHAR(50) COMMENT '电话', `C_FAX` VARCHAR(50) COMMENT '传真', `C_TEL` VARCHAR(50) COMMENT '手机', `C_EMAIL` VARCHAR(100) COMMENT '电子邮箱', `C_REVIEW_ADDR` VARCHAR(500) COMMENT '评审企业地址', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审成员结果表: DROP TABLE IF EXISTS SSM_RESULT_MEMBERS; CREATE TABLE SSM_RESULT_MEMBERS ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '评审方案编号', `R_MEMBER` INT(11) COMMENT '成员编号', `S_MEMBER` VARCHAR(300) COMMENT '成员名称', `C_JOB` VARCHAR(100) COMMENT '职称', `C_TEL` VARCHAR(50) COMMENT '电话', `C_REMARKS` VARCHAR(2000) COMMENT '备注', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审内容结果表: DROP TABLE IF EXISTS SSM_RESULT_CONTENT; CREATE TABLE SSM_RESULT_CONTENT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '评审方案编号', `C_CATEGORY` VARCHAR(300) COMMENT '一级要素', `C_PROJECT` VARCHAR(300) COMMENT '二级要素', `C_REQUEST` VARCHAR(2000) COMMENT '基本规范要求', `C_CONTENT` VARCHAR(2000) COMMENT '企业达标标准', `N_SCORE` INT COMMENT '标准分值', `C_METHOD` VARCHAR(2000) COMMENT '考评方法', `C_DESC` VARCHAR(2000) COMMENT '自评描述', `B_BLANK` CHAR(1) COMMENT '是否缺项', `N_SCORE_REAL` VARCHAR(2000) COMMENT '企业自评得分', `C_DESC_REVIEW` VARCHAR(2000) COMMENT '评审描述', `N_SCORE_REVIEW` INT COMMENT '评审得分', `N_PERCENT` DECIMAL(3,1) COMMENT '百分制得分', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审报告结果表: DROP TABLE IF EXISTS SSM_RESULT_REPORT; CREATE TABLE SSM_RESULT_REPORT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) COMMENT '评审方案编号', `C_CONTENT` LONGTEXT COMMENT '内容', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) ); -- 评审证书结果表: DROP TABLE IF EXISTS SSM_RESULT_CERT; CREATE TABLE SSM_RESULT_CERT ( `SID` INT(11) NOT NULL auto_increment COMMENT '自增主键', `R_SID` INT(11) NOT NULL COMMENT '评审方案编号', `C_ENTERPRISE` VARCHAR(300) NOT NULL COMMENT '单位名称', `N_LEVEL` INT COMMENT '等级', `P_INSDUTRY` VARCHAR(32) COMMENT '行业编号', `S_INSDUTRY` VARCHAR(100) COMMENT '行业', `P_PROFESSION` VARCHAR(32) COMMENT '专业编号', `S_PROFESSION` VARCHAR(100) COMMENT '专业', `C_CERT_NUMBER` VARCHAR(100) COMMENT '证书编号', `C_ISSUING_AUTHORITY` VARCHAR(300) COMMENT '发证机关', `C_PRINTED_NUMBER` VARCHAR(100) COMMENT '印制编号', `T_ISSUING_DATE` DATE COMMENT '发证日期', `T_VALIDITY` DATE COMMENT '有效期截至', `R_CREATE` INT(11) COMMENT '创建人编号', `S_CREATE` VARCHAR(50) COMMENT '创建人', `T_CREATE` DATETIME COMMENT '创建时间', `R_UPDATE` INT(11) COMMENT '更新人编号', `S_UPDATE` VARCHAR(50) COMMENT '更新人', `T_UPDATE` TIMESTAMP COMMENT '更新时间', `R_TENANT` INT(11) COMMENT '租户编号', `S_TENANT` VARCHAR(300) COMMENT '租户名称', `P_TENANT` CHAR(1) COMMENT '租户类型', `N_STATE` INT COMMENT '状态', `B_DELETE` CHAR(1) COMMENT '删除标志', `N_INDEX` INT COMMENT '排序', `N_VERSION` INT COMMENT '版本', PRIMARY KEY (`SID`) );
CREATE DATABASE `spider`; CREATE TABLE `doubanread`( id INT NOT NULL AUTO_INCREMENT, maintitle VARCHAR(64) NOT NUll, subtitle VARCHAR(64) DEFAULT "", author VARCHAR(64) DEFAULT "", type VARCHAR(128) DEFAULT "", score CHAR(4) DEFAULT "", detail_url VARCHAR(128) DEFAULT "", `describe` VARCHAR(256) DEFAULT "", PRIMARY KEY (id) )ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/* Formatted on 9/23/2016 4:24:54 PM (QP5 v5.149.1003.31008) */ SELECT RA.RS_SDES "Line Of Service Status Code", BS.BUSINESS_STATUS "LOS Status Name", BS.BUSINESS_STATUS "LOS Status Description" FROM NK_BUSINESS_STATUS BS, REASONSTATUS_ALL RA WHERE BS.RS_ID = RA.RS_ID
DROP TABLE IF EXISTS `item`; DROP TABLE IF EXISTS `image`; DROP TABLE IF EXISTS `itemset`; DROP TABLE IF EXISTS `settings_a`; DROP TABLE IF EXISTS `settings_b`; DROP TABLE IF EXISTS `settings_c`; DROP TABLE IF EXISTS `site`; DROP TABLE IF EXISTS `_state`; DROP TABLE IF EXISTS `_audit`; DROP TABLE IF EXISTS `_account`; DROP TABLE IF EXISTS `_entity`; DROP TABLE IF EXISTS `_relationship`; CREATE TABLE IF NOT EXISTS `_entity` ( `name` varchar(80) NOT NULL, `namespaceUri` varchar(1024) DEFAULT NULL, PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `_relationship` ( `fromEntity` varchar(80) NOT NULL, `toEntity` varchar(80) NOT NULL, `fkEntity` varchar(80) NOT NULL, `fkColumn` varchar(80) NOT NULL, `multiplicity` varchar(4) NOT NULL, KEY `FK_relationships_from_entities` (`fromEntity`), KEY `FK_relationships_to_entities` (`toEntity`), KEY `FK_relationships_fk_entities` (`fkEntity`), CONSTRAINT `FK_relationships_fk_entities` FOREIGN KEY (`fkEntity`) REFERENCES `_entity` (`name`), CONSTRAINT `FK_relationships_from_entities` FOREIGN KEY (`fromEntity`) REFERENCES `_entity` (`name`), CONSTRAINT `FK_relationships_to_entities` FOREIGN KEY (`toEntity`) REFERENCES `_entity` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `_account` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(80) NOT NULL, `password` varchar(80) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `_audit` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_account` int(10) unsigned NOT NULL, `at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `FK_audit_account` (`id_account`), CONSTRAINT `FK_audit_account` FOREIGN KEY (`id_account`) REFERENCES `_account` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `_state` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_created` int(10) unsigned NOT NULL, `id_terminated` int(10) unsigned DEFAULT NULL, `id_published` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK_state_created` (`id_created`), KEY `FK_state_terminated` (`id_terminated`), KEY `FK_state_published` (`id_published`), CONSTRAINT `FK_state_created` FOREIGN KEY (`id_created`) REFERENCES `_audit` (`id`), CONSTRAINT `FK_state_published` FOREIGN KEY (`id_published`) REFERENCES `_audit` (`id`), CONSTRAINT `FK_state_terminated` FOREIGN KEY (`id_terminated`) REFERENCES `_audit` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `site` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL, `name` varchar(20) NOT NULL, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_site_state` (`id_state`), CONSTRAINT `FK_site_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `settings_a` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL, `totalWidth` smallint(10) unsigned DEFAULT NULL, `totalHeight` smallint(10) unsigned DEFAULT NULL, `bgRadius` tinyint(1) unsigned DEFAULT NULL, `bgColor` varchar(10) DEFAULT NULL, `htmlFieldWidth` smallint(10) unsigned DEFAULT NULL, `imageStrokePx` tinyint(1) unsigned DEFAULT NULL, `stroke1Px` tinyint(1) unsigned DEFAULT NULL, `stroke1Radius` tinyint(1) unsigned DEFAULT NULL, `stroke1Color` varchar(10) DEFAULT NULL, `stroke2Px` tinyint(1) unsigned DEFAULT NULL, `stroke2Radius` tinyint(1) unsigned DEFAULT NULL, `stroke2Color` varchar(10) DEFAULT NULL, `bgWidth` smallint(10) unsigned DEFAULT NULL, `bgHeight` smallint(10) unsigned DEFAULT NULL, `butDistance` tinyint(1) unsigned DEFAULT NULL, `butHeight` smallint(10) unsigned DEFAULT NULL, `maskHeight` smallint(10) unsigned DEFAULT NULL, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_settings_a_state` (`id_state`), CONSTRAINT `FK_settings_a_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `settings_b` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL, `width` smallint(10) unsigned DEFAULT NULL, `height` smallint(10) unsigned DEFAULT NULL, `visibleItems` tinyint(10) unsigned DEFAULT NULL, `itemWidth` smallint(10) unsigned DEFAULT NULL, `itemHeight` smallint(10) unsigned DEFAULT NULL, `itemsHSpacing` smallint(10) unsigned DEFAULT NULL, `itemsVSpacing` smallint(10) unsigned DEFAULT NULL, `arrowVSpacing` smallint(10) unsigned DEFAULT NULL, `showArrows` tinyint(1) unsigned DEFAULT NULL, `showScrollbar` tinyint(1) unsigned DEFAULT NULL, `scrollbarHeight` smallint(10) unsigned DEFAULT NULL, `maxBlur` smallint(10) unsigned DEFAULT NULL, `slideTime` float DEFAULT NULL, `autoPlay` tinyint(1) unsigned DEFAULT NULL, `autoPlayDelay` smallint(10) unsigned DEFAULT NULL, `pauseOnItemMouseOver` tinyint(1) unsigned DEFAULT NULL, `itemReflection` tinyint(1) unsigned DEFAULT NULL, `reflectionAlpha` smallint(10) unsigned DEFAULT NULL, `reflectionHeight` smallint(10) unsigned DEFAULT NULL, `reflectionDistance` smallint(10) unsigned DEFAULT NULL, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_settings_b_state` (`id_state`), CONSTRAINT `FK_settings_b_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `settings_c` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL, `listWidth` smallint(10) unsigned DEFAULT NULL, `listHeight` smallint(10) unsigned DEFAULT NULL, `buttonHeight` smallint(10) unsigned DEFAULT NULL, `blurXAmount` smallint(10) unsigned DEFAULT NULL, `blurYAmount` smallint(10) unsigned DEFAULT NULL, `animationTime` float DEFAULT NULL, `animationType` varchar(20) DEFAULT NULL, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_settings_c_state` (`id_state`), CONSTRAINT `FK_settings_c_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `itemset` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL, `id_site` int(10) unsigned DEFAULT NULL, `name` varchar(20) DEFAULT NULL, `type` char(1) DEFAULT NULL, `id_settings_a` int(10) unsigned DEFAULT NULL, `id_settings_b` int(10) unsigned DEFAULT NULL, `id_settings_c` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_itemset_state` (`id_state`), KEY `FK_itemset_site` (`id_site`), KEY `FK_itemset_settings_a` (`id_settings_a`), KEY `FK_itemset_settings_b` (`id_settings_b`), KEY `FK_itemset_settings_c` (`id_settings_c`), CONSTRAINT `FK_itemset_settings_a` FOREIGN KEY (`id_settings_a`) REFERENCES `settings_a` (`id_object`), CONSTRAINT `FK_itemset_settings_b` FOREIGN KEY (`id_settings_b`) REFERENCES `settings_b` (`id_object`), CONSTRAINT `FK_itemset_settings_c` FOREIGN KEY (`id_settings_c`) REFERENCES `settings_c` (`id_object`), CONSTRAINT `FK_itemset_site` FOREIGN KEY (`id_site`) REFERENCES `site` (`id_object`), CONSTRAINT `FK_itemset_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `image` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL DEFAULT '0', `width` smallint(10) unsigned NOT NULL DEFAULT '0', `height` smallint(10) unsigned NOT NULL DEFAULT '0', `caption` varchar(80) DEFAULT NULL, `mediatype` varchar(10) NOT NULL, `url` varchar(512) DEFAULT NULL, `data` longblob, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_image_state` (`id_state`), CONSTRAINT `FK_image_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `item` ( `id_object` int(10) unsigned NOT NULL, `id_state` int(10) unsigned NOT NULL, `id_itemset` int(10) unsigned NOT NULL, `sortIndex_itemset` smallint(10) unsigned NOT NULL DEFAULT '0', `timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `title` varchar(1024) NOT NULL, `subTitle` varchar(1024) NOT NULL, `content` text NOT NULL, `id_image` int(10) unsigned DEFAULT NULL, `linkText` varchar(80) DEFAULT NULL, `linkUrl` varchar(1024) DEFAULT NULL, `linkTarget` tinyint(1) unsigned DEFAULT NULL, PRIMARY KEY (`id_object`,`id_state`), KEY `FK_item_itemset` (`id_itemset`), KEY `FK_item_image` (`id_image`), KEY `FK_item_state` (`id_state`), CONSTRAINT `FK_item_image` FOREIGN KEY (`id_image`) REFERENCES `image` (`id_object`), CONSTRAINT `FK_item_itemset` FOREIGN KEY (`id_itemset`) REFERENCES `itemset` (`id_object`), CONSTRAINT `FK_item_state` FOREIGN KEY (`id_state`) REFERENCES `_state` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; REPLACE INTO `_entity` (`name`, `namespaceUri`) VALUES ('image', 'http://ns.bransom.nl/vanace/webitems/v20110101'), ('item', 'http://ns.bransom.nl/vanace/webitems/v20110101'), ('itemset', 'http://ns.bransom.nl/vanace/webitems/v20110101'), ('settings_a', 'http://ns.bransom.nl/vanace/webitems/v20110101'), ('settings_b', 'http://ns.bransom.nl/vanace/webitems/v20110101'), ('settings_c', 'http://ns.bransom.nl/vanace/webitems/v20110101'), ('site', 'http://ns.bransom.nl/vanace/webitems/v20110101'); REPLACE INTO `_relationship` (`fromEntity`, `toEntity`, `fkEntity`, `fkColumn`, `multiplicity`) VALUES ('site', 'itemset', 'itemset', 'id_site', '1'), ('itemset', 'settings_b', 'itemset', 'id_settings_b', '0..1'), ('itemset', 'item', 'item', 'id_itemset', '0..n'), ('item', 'image', 'item', 'id_image', '0..1'), ('itemset', 'settings_c', 'itemset', 'id_settings_c', '0..1'), ('itemset', 'settings_a', 'itemset', 'id_settings_a', '0..1');
SELECT CA.CUSTOMER_ID || CA.CCSEQ ADDR_MSTR_SID, CA.CCSTREET AS ADDRESS_LINE_1, CA.CCADDR1 AS ADDRESS_LINE_2, CA.CCADDR3 AS ADDRESS_LINE_3, CA.CCSTREETNO AS STREET, CASE WHEN EXTADD.STRING26 = 'Ste' THEN EXTADD.STRING28 ELSE NULL END AS SUITE, CA.CCCOUNTY AS COUNTY_NAME, CA.CCCITY AS CITY_NAME, CA.CCSTATE AS STATE_CODE, C.ISO AS COUNTRY_CODE, C.NAME AS COUNTRY_NAME, SUBSTR(CA.CCZIP, 1, 5) AS POSTAL_ZIP_CODE, CA.CCZIP AS POSTAL_ZIP_CODE_PLUS_4, EXTADD.STRING29 AS HOUSE_NUMBER, EXTADD.STRING23 AS STREET_NAME, CASE WHEN EXTADD.STRING25 IS NULL THEN EXTADD.STRING22 ELSE EXTADD.STRING25 END AS DIRECTION_TYPE_CODE, EXTADD.STRING24 AS STREET_SUFFIX_CODE, CASE WHEN EXTADD.STRING26 = 'Unit' THEN EXTADD.STRING28 ELSE NULL END AS UNIT_NUMBER, CA.CCADDR2 AS URBINIZATION_CODE, EXTADD.STRING26 AS DWELLING_TYPE_CODE, CASE WHEN EXTADD.STRING26 = 'Fl' THEN EXTADD.STRING28 ELSE NULL END AS FLOOR_VALUE, EXTADD.STRING03 AS CARRIER_ROUTE_NAME, EXTADD.STRING06 AS ROUTE_NUMBER, EXTADD.STRING14 AS LOCATION_LONGITUDE_NUMBER, EXTADD.STRING05 AS LOCATION_LATITUDE_NUMBER, TO_CHAR(EXTADD.STRING15) || TO_CHAR(EXTADD.STRING01) AS UNCERTAINTY_CODE, EXTADD.STRING08 AS TAX_AREA_ID, J.JURISDICTION_CODE AS GEOCODE, -------------------DELTA COLUMNS------------------- CA.CCMODDATE, --CCONTACT_ALL EXTADD.MOD_DATE --ADDRESS_CHARACTERISTICS FROM CCONTACT_ALL CA, (SELECT * FROM ADDRESS_CHARACTERISTICS AC, CHARACTERISTICS_DEF CD WHERE AC.CHAR_ID = CD.CHAR_ID AND CD.CHAR_DES = 'AddressExtension') EXTADD, COUNTRY C, JURISDICTION J WHERE CA.CUSTOMER_ID = EXTADD.CUSTOMER_ID(+) AND CA.CCSEQ = EXTADD.CCSEQ(+) AND CA.COUNTRY = C.COUNTRY_ID(+) AND CA.JURISDICTION_ID = J.JURISDICTION_ID(+) AND CA.CCSEQ > 0
INSERT INTO name (name) VALUES ('Jeff'); INSERT INTO name (name) VALUES ('Geoff'); INSERT INTO name (name) VALUES ('Nancy'); INSERT INTO name (name) VALUES ('Fancy'); INSERT INTO name (name) VALUES ('Perry'); INSERT INTO name (name) VALUES ('Larry'); INSERT INTO name (name) VALUES ('Dancy'); INSERT INTO name (name) VALUES ('Tiny Dancer'); INSERT INTO name (name) VALUES ('Morty'); INSERT INTO name (name) VALUES ('Elmond'); INSERT INTO name (name) VALUES ('Carin'); INSERT INTO name (name) VALUES ('Elizabeth'); INSERT INTO name (name) VALUES ('Stinson'); INSERT INTO name (name) VALUES ('Barney'); INSERT INTO name (name) VALUES ('Stevie'); INSERT INTO name (name) VALUES ('Timmy'); INSERT INTO name (name) VALUES ('Lil'' Kevin'); INSERT INTO name (name) VALUES ('Sparky'); INSERT INTO name (name) VALUES ('Sparkles'); INSERT INTO name (name) VALUES ('Swanson'); INSERT INTO name (name) VALUES ('Samsonite'); INSERT INTO name (name) VALUES ('Ronald'); INSERT INTO name (name) VALUES ('Ronalda'); INSERT INTO name (name) VALUES ('Donald'); INSERT INTO name (name) VALUES ('Donna'); INSERT INTO name (name) VALUES ('Quonald'); INSERT INTO name (name) VALUES ('Quana'); INSERT INTO name (name) VALUES ('Sven'); INSERT INTO name (name) VALUES ('Svenna'); INSERT INTO name (name) VALUES ('Mitchel'); INSERT INTO name (name) VALUES ('Mitcha'); INSERT INTO name (name) VALUES ('Elrond'); INSERT INTO name (name) VALUES ('Elronda'); INSERT INTO name (name) VALUES ('Frodo'); INSERT INTO name (name) VALUES ('Froda'); INSERT INTO name (name) VALUES ('Samwise'); INSERT INTO name (name) VALUES ('Jeff'); INSERT INTO name (name) VALUES ('Lindsey'); INSERT INTO name (name) VALUES ('Itchen'); INSERT INTO name (name) VALUES ('Sonda'); INSERT INTO name (name) VALUES ('Kate'); INSERT INTO name (name) VALUES ('Dan'); INSERT INTO name (name) VALUES ('Jimothy'); INSERT INTO name (name) VALUES ('Hugh'); INSERT INTO name (name) VALUES ('Stu'); INSERT INTO name (name) VALUES ('Drew'); INSERT INTO name (name) VALUES ('Ilmond'); INSERT INTO name (name) VALUES ('Tina'); INSERT INTO name (name) VALUES ('Tony'); INSERT INTO name (name) VALUES ('Joany'); INSERT INTO activity (activity) VALUES (' is sitting at a table laughing at a clever thought'); INSERT INTO activity (activity) VALUES (' is finding a piece of gum that just fell out of their mouth'); INSERT INTO activity (activity) VALUES (' is waving enthusiastically at you'); INSERT INTO activity (activity) VALUES (' greets you with a kind hello'); INSERT INTO activity (activity) VALUES (' is eating pie with much vigor'); INSERT INTO activity (activity) VALUES (' looks very determined about whatever it is they are setting off to do'); INSERT INTO activity (activity) VALUES (' is staring off into space'); INSERT INTO activity (activity) VALUES (' is walking into the library'); INSERT INTO activity (activity) VALUES (' just came out of an open manhole'); INSERT INTO activity (activity) VALUES (' felt a little bit sad about something a short time ago'); INSERT INTO activity (activity) VALUES (' is clearly stupendous'); INSERT INTO activity (activity) VALUES (' just finished some soup'); INSERT INTO activity (activity) VALUES (' is loudly ordering a pizza'); INSERT INTO activity (activity) VALUES (' is jumping up and down with enthusiasm in a group of friends'); INSERT INTO activity (activity) VALUES (' is feeling whistful'); INSERT INTO activity (activity) VALUES (' went to the park'); INSERT INTO activity (activity) VALUES (' came back from the park just a bit ago'); INSERT INTO activity (activity) VALUES (' is singing'); INSERT INTO activity (activity) VALUES (' is dancing'); INSERT INTO activity (activity) VALUES (' looks suspicously like they''re enjoying the wind'); INSERT INTO activity (activity) VALUES (' is a friendly sort of chap'); INSERT INTO activity (activity) VALUES (' is a fan of Great Britain'); INSERT INTO activity (activity) VALUES (' just got back from Canada'); INSERT INTO activity (activity) VALUES (' is haggling over a device being sold by a street vendor'); INSERT INTO activity (activity) VALUES (' is a street vendor'); INSERT INTO activity (activity) VALUES (' is drinking soda'); INSERT INTO activity (activity) VALUES (' just climbed a building'); INSERT INTO activity (activity) VALUES (' is making their way back toward the middle of town'); INSERT INTO activity (activity) VALUES (' is selling elephant ears which makes you hungry'); INSERT INTO activity (activity) VALUES (' felt old earlier but then went to the gym'); INSERT INTO activity (activity) VALUES (' found their heart racing when they smelled that pizza'); INSERT INTO activity (activity) VALUES (' is having lunch with a friend'); INSERT INTO activity (activity) VALUES (' is looking rather non-chalant whilst walking around'); INSERT INTO activity (activity) VALUES (' just melted a toy soldier'); INSERT INTO activity (activity) VALUES (' smiles at you'); INSERT INTO activity (activity) VALUES (' averts their eyes'); INSERT INTO activity (activity) VALUES (' is bouncing about'); INSERT INTO activity (activity) VALUES (' just barely managed not to bump into you'); INSERT INTO activity (activity) VALUES (' just found a kitty'); INSERT INTO activity (activity) VALUES (' is petting a puppy'); INSERT INTO activity (activity) VALUES (' is drinking milk'); INSERT INTO activity (activity) VALUES (' is jogging'); INSERT INTO activity (activity) VALUES (' is logging'); INSERT INTO activity (activity) VALUES (' is smogging'); INSERT INTO activity (activity) VALUES (' is frogging'); INSERT INTO activity (activity) VALUES (' made lunch earlier'); INSERT INTO activity (activity) VALUES (' is stinky'); INSERT INTO activity (activity) VALUES (' thinks somebody else is stinky'); INSERT INTO activity (activity) VALUES (' is wearing a head-mounted pizza'); INSERT INTO activity (activity) VALUES (' shot the sheriff but did not shoot the deputy'); ;
SELECT actor.first_name, actor.last_name FROM film_actor, film, actor WHERE film_actor.film_id = film.film_id AND film_actor.actor_id = actor.actor_id AND film.title = 'ALI FOREVER';
ALTER TABLE posts add presentationMessage TEXT;
DELIMITER $$ -- ----------------------------------------------------- -- Schema training_center -- ----------------------------------------------------- DROP SCHEMA IF EXISTS `training_center`$$ CREATE SCHEMA IF NOT EXISTS `training_center` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci$$ USE `training_center`$$ -- ----------------------------------------------------- -- Table `training_center`.`person` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`person` ( `person_id` INT NOT NULL AUTO_INCREMENT, `first_name` VARCHAR(45) NOT NULL, `last_name` VARCHAR(45) NOT NULL, `address` VARCHAR(45) NOT NULL, `zip_code` VARCHAR(5) NOT NULL, `town` VARCHAR(45) NOT NULL, `email` VARCHAR(45) NOT NULL, `mobile_phone` VARCHAR(10) NOT NULL, `phone` VARCHAR(10) NULL, `is_trainer` TINYINT(1) NOT NULL DEFAULT false, `is_admin` TINYINT(1) NOT NULL DEFAULT false, `password` VARCHAR(45) NOT NULL, `picture_location` VARCHAR(45) NULL, `created_at` DATETIME NOT NULL, `confirmed_at` DATETIME NULL, `confirmation_token` VARCHAR(45) NULL, `renew_password_token` VARCHAR(45) NULL, PRIMARY KEY (`person_id`), UNIQUE INDEX `un_person_email` (`email` ASC), UNIQUE INDEX `un_person_contact` (`first_name` ASC, `last_name` ASC, `address` ASC, `zip_code` ASC, `town` ASC, `mobile_phone` ASC)) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Table `training_center`.`class` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`class` ( `class_id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) NOT NULL, PRIMARY KEY (`class_id`), UNIQUE INDEX `un_class_name` (`name` ASC)) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Table `training_center`.`project` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`project` ( `project_id` INT NOT NULL AUTO_INCREMENT, `owner_id` INT NOT NULL, `class_id` INT NOT NULL, `title` VARCHAR(255) NOT NULL, `created_at` DATETIME NOT NULL DEFAULT NOW(), `deadline` DATETIME NOT NULL, `subject` VARCHAR(1024) NOT NULL, PRIMARY KEY (`project_id`), INDEX `fk_project_member` (`owner_id` ASC), INDEX `fk_project_class` (`class_id` ASC), CONSTRAINT `fk_project_member` FOREIGN KEY (`owner_id`) REFERENCES `training_center`.`person` (`person_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_project_class` FOREIGN KEY (`class_id`) REFERENCES `training_center`.`class` (`class_id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Table `training_center`.`team` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`team` ( `team_id` INT NOT NULL AUTO_INCREMENT, `project_id` INT NOT NULL, `owner_id` INT NOT NULL, `created_at` DATETIME NOT NULL, `summary` VARCHAR(45) NULL, PRIMARY KEY (`team_id`), INDEX `fk_team_project` (`project_id` ASC), INDEX `fk_team_member` (`owner_id` ASC), CONSTRAINT `fk_team_project` FOREIGN KEY (`project_id`) REFERENCES `training_center`.`project` (`project_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_team_member` FOREIGN KEY (`owner_id`) REFERENCES `training_center`.`person` (`person_id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Table `training_center`.`document` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`document` ( `document_id` INT NOT NULL AUTO_INCREMENT, `author_id` INT NOT NULL, `team_id` INT NOT NULL, `location` VARCHAR(45) NOT NULL, `created_at` DATETIME NOT NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`document_id`), INDEX `fk_document_member` (`author_id` ASC), INDEX `fk_document_team` (`team_id` ASC), CONSTRAINT `fk_document_member` FOREIGN KEY (`author_id`) REFERENCES `training_center`.`person` (`person_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_document_team` FOREIGN KEY (`team_id`) REFERENCES `training_center`.`team` (`team_id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Table `training_center`.`team_member` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`team_member` ( `team_id` INT NOT NULL, `student_id` INT NOT NULL, INDEX `fk_team_member_team` (`team_id` ASC), INDEX `fk_team_member_person` (`student_id` ASC), PRIMARY KEY (`team_id`, `student_id`), CONSTRAINT `fk_team_member_team` FOREIGN KEY (`team_id`) REFERENCES `training_center`.`team` (`team_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_team_member_person` FOREIGN KEY (`student_id`) REFERENCES `training_center`.`person` (`person_id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Table `training_center`.`class_member` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `training_center`.`class_member` ( `person_id` INT NOT NULL, `class_id` INT NOT NULL, INDEX `fk_class_member_member` (`person_id` ASC), INDEX `fk_class_member_class` (`class_id` ASC), PRIMARY KEY (`person_id`, `class_id`), CONSTRAINT `fk_class_member_member` FOREIGN KEY (`person_id`) REFERENCES `training_center`.`person` (`person_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_class_member_class` FOREIGN KEY (`class_id`) REFERENCES `training_center`.`class` (`class_id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB$$ -- ----------------------------------------------------- -- Function inicap(): -- This function is to capitalize the first letter of -- each word in the input text -- ----------------------------------------------------- DROP FUNCTION IF EXISTS initcap$$ CREATE FUNCTION initcap(p_string text) RETURNS text CHARSET utf8 DETERMINISTIC BEGIN DECLARE v_left, v_right TEXT; SET v_left=''; SET v_right=''; WHILE p_string LIKE '% %' DO -- if it contains a space SELECT SUBSTRING_INDEX(p_string,' ', 1) INTO v_left; SELECT SUBSTRING(p_string, LOCATE(' ', p_string) + 1) INTO p_string; SELECT CONCAT(v_right, ' ', CONCAT(UPPER(SUBSTRING(v_left, 1, 1)), LOWER(SUBSTRING(v_left, 2)))) INTO v_right; END WHILE; RETURN LTRIM(CONCAT(v_right, ' ', CONCAT(UPPER(SUBSTRING(p_string,1,1)), LOWER(SUBSTRING(p_string,2))))); END$$ -- ----------------------------------------------------- -- Trigger project_before_insert_trigger: -- Raise user exception when deadline is sooner than -- creation date, or when title is empty -- ----------------------------------------------------- DROP TRIGGER IF EXISTS project_before_insert_trigger$$ CREATE TRIGGER project_before_insert_trigger BEFORE INSERT ON project FOR EACH ROW BEGIN SET NEW.created_at = CURRENT_TIMESTAMP; IF NEW.deadline < NEW.created_at THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT='Deadline is sonner than creation date', MYSQL_ERRNO=3000; END IF; SET NEW.title = trim(initcap(NEW.title)); IF NEW.title REGEXP '^ *$' THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Title is empty', MYSQL_ERRNO=3000; END IF; END$$ -- ----------------------------------------------------- -- Trigger project_before_update_trigger: -- Raise user exception when deadline is sooner than -- creation date, or when title is empty -- ----------------------------------------------------- DROP TRIGGER IF EXISTS project_before_update_trigger$$ CREATE TRIGGER project_before_update_trigger BEFORE UPDATE ON project FOR EACH ROW BEGIN IF NEW.deadline < NEW.created_at THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT='Deadline is sonner than creation date', MYSQL_ERRNO=3000; END IF; SET NEW.title = trim(initcap(NEW.title)); IF NEW.title REGEXP '^ *$' THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Title is empty', MYSQL_ERRNO=3000; END IF; END$$ -- ----------------------------------------------------- -- Trigger team_before_insert_trigger: -- set the creation date at current datatime -- ----------------------------------------------------- DROP TRIGGER IF EXISTS team_before_insert_trigger$$ CREATE TRIGGER team_before_insert_trigger BEFORE INSERT ON team FOR EACH ROW BEGIN SET NEW.created_at = CURRENT_TIMESTAMP; END$$ -- ----------------------------------------------------- -- Trigger person_before_insert_trigger: -- Raise user exception when first name or last name is -- empty -- ----------------------------------------------------- DROP TRIGGER IF EXISTS person_before_insert_trigger$$ CREATE TRIGGER person_before_insert_trigger BEFORE INSERT ON person FOR EACH ROW BEGIN SET NEW.first_name = trim(initcap(NEW.first_name)); SET NEW.last_name = trim(initcap(NEW.last_name)); SET NEW.address = trim(initcap(NEW.address)); SET NEW.town = trim(initcap(NEW.town)); IF NEW.first_name REGEXP '^ *$' OR New.last_name REGEXP '^ *$' THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'First Name or Last Name is empty', MYSQL_ERRNO=3000; END IF; SET NEW.created_at = CURRENT_TIMESTAMP; END$$ -- ----------------------------------------------------- -- Trigger person_before_update_trigger: -- Raise user exception when first name or last name is -- empty -- ----------------------------------------------------- DROP TRIGGER IF EXISTS person_before_update_trigger$$ CREATE TRIGGER person_before_update_trigger BEFORE UPDATE ON person FOR EACH ROW BEGIN SET NEW.first_name = trim(initcap(NEW.first_name)); SET NEW.last_name = trim(initcap(NEW.last_name)); SET NEW.address = trim(initcap(NEW.address)); SET NEW.town = trim(initcap(NEW.town)); IF NEW.first_name REGEXP '^ *$' OR New.last_name REGEXP '^ *$' THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'First Name or Last Name is empty', MYSQL_ERRNO=3000; END IF; SET NEW.created_at = CURRENT_TIMESTAMP; END$$ -- ----------------------------------------------------- -- Trigger class_before_insert_trigger: -- Raise user exception when class name is empty -- ----------------------------------------------------- DROP TRIGGER IF EXISTS class_before_insert_trigger$$ CREATE TRIGGER class_before_insert_trigger BEFORE INSERT ON class FOR EACH ROW BEGIN SET NEW.name = trim(initcap(NEW.name)); IF NEW.name REGEXP '^ *$' THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Class name is empty', MYSQL_ERRNO=3000; END IF; END$$ -- ----------------------------------------------------- -- Trigger class_before_update_trigger: -- Raise user exception when class name is empty -- ----------------------------------------------------- DROP TRIGGER IF EXISTS class_before_update_trigger$$ CREATE TRIGGER class_before_insert_trigger BEFORE UPDATE ON class FOR EACH ROW BEGIN SET NEW.name = trim(initcap(NEW.name)); IF NEW.name REGEXP '^ *$' THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Class name is empty', MYSQL_ERRNO=3000; END IF; END$$ -- ----------------------------------------------------- -- Trigger document_before_update_trigger: -- Set update time at current datetime -- ----------------------------------------------------- DROP TRIGGER IF EXISTS document_before_update_trigger$$ CREATE TRIGGER document_before_update_trigger BEFORE UPDATE ON document FOR EACH ROW BEGIN SET NEW.updated_at = CURRENT_TIMESTAMP; END$$ -- ----------------------------------------------------- -- Procedure training_center_reset: -- This procedure is to reset some demo data inside -- the training_center schema -- ----------------------------------------------------- DROP PROCEDURE IF EXISTS training_center_reset$$ CREATE PROCEDURE training_center_reset() BEGIN SET FOREIGN_KEY_CHECKS = 0; TRUNCATE TABLE person; TRUNCATE TABLE class; TRUNCATE TABLE project; TRUNCATE TABLE team; TRUNCATE TABLE class_member; TRUNCATE TABLE document; TRUNCATE Table team_member; SET FOREIGN_KEY_CHECKS = 1; BEGIN DECLARE EXIT HANDLER FOR SQLEXCEPTION BEGIN ROLLBACK; SELECT 'Insertion cancelled. The database is empty currently'; END; START TRANSACTION; INSERT INTO person(`person_id`,`first_name`,`last_name`,`address`,`zip_code`,`town`,`email`,`mobile_phone`,`phone`,`is_trainer`,`is_admin`,`password`,`picture_location`,`created_at`,`confirmed_at`,`confirmation_token`,`renew_password_token`) VALUES (1,'peter','li','123 NY Street','75015','paris','hello@hotmail.com','0773138313', NULL, 1, 0, '1234', NULL, NULL, NULL, NULL, NULL), (2,'sebastian','g','address', '75000','paris','seb@gmail.com','0723421234', NULL, 0, 1, '1234', NULL, NULL, NULL, NULL, NULL), (3,'nicole','andrea','address','75000','paris','nicole@gmail.com','0723422413', NULL, 0, 0, '1234', NUll, NULL, NULL, NULL, NULL), (4,'adrien','ali','address','75000','paris','adrien@gmail.com','0132341364', NULL, 0, 0, '1234',NULL, NULL, NULL, NULL, NULL); INSERT INTO class(`class_id`,`name`) VALUES (1, 'advanced database'), (2, 'web development'), (3, 'java'), (4, 'advanced algorithm'), (5, 'advanced c'); INSERT INTO class_member(`person_id`,`class_id`) VALUES (1, 1),(1, 2),(1, 4),(1, 5), (3, 1),(3, 3),(3, 4),(3, 5), (4, 1),(4, 2),(4, 3),(4, 4),(4, 5); INSERT INTO project(`project_id`,`owner_id`,`class_id`,`title`,`created_at`,`deadline`,`subject`) VALUES (1, 1, 2, 'training_center', NULL, '2017-03-01','this is a placeholder for subject'), (2, 1, 3, 'java web', NULL, '2017-03-01', 'this is a placeholder for subject'); INSERT INTO team(`team_id`,`project_id`,`owner_id`,`created_at`,`summary`) VALUES (1, 1, 1, NULL, 'This is placeholder for summary'), (2, 1, 4, NULL, 'This is placeholder for summary'), (3, 2, 2, NULL, 'placeholder for summary'), (4, 2, 4, NULL, 'placeholder for summary'); INSERT INTO team_member(`team_id`,`student_id`) VALUES (1, 1),(1, 2),(2, 4),(3, 2),(4, 3),(4, 4); INSERT INTO document(`document_id`,`author_id`,`team_id`,`location`,`created_at`,`updated_at`) VALUES (1,1,1,'location', CURRENT_TIMESTAMP, NULL), (2,2,3,'location', CURRENT_TIMESTAMP, NULL), (3,2,1,'location', CURRENT_TIMESTAMP, NULL), (4,4,2,'location', CURRENT_TIMESTAMP, NULL), (5,4,4,'location', CURRENT_TIMESTAMP, NULL); COMMIT; END; END$$ CALL training_center_reset()$$ /* Create a user to be used in PHP for the connection, * and give him all grants on the DB. */ -- Delete the user ... DELETE FROM mysql.user WHERE user='demo_user' $$ -- and his grants DELETE FROM mysql.db WHERE user='demo_user' $$ DELETE FROM mysql.tables_priv WHERE user='demo_user' $$ FLUSH PRIVILEGES $$ -- Create him CREATE USER demo_user@localhost IDENTIFIED by 'demo_password' $$ -- Grant him rights on the DB ... GRANT ALL ON demo.* TO demo_user@localhost $$ -- and on the stored procedure GRANT SELECT ON mysql.proc TO demo_user@localhost $$
-- View: view_cjpl_partner_all_companies -- DROP VIEW view_cjpl_partner_all_companies; CREATE OR REPLACE VIEW view_cjpl_partner_all_companies AS SELECT a.id, a.company_partner_name, a.company_name, a.x_core_code, a.company_state, a.parent_id, a.is_company FROM view_cjpl_xxx_partner_is_a_company a UNION SELECT b.id, b.company_partner_name, b.company_name, b.x_core_code, b.company_state, b.parent_id, b.is_company FROM view_cjpl_xxx_partner_is_not_company_but_has_parent b UNION SELECT c.id, c.company_partner_name, c.company_name, c.x_core_code, c.company_state, c.parent_id, c.is_company FROM view_cjpl_xxx_partner_is_not_company_with_no_parent c; ALTER TABLE view_cjpl_partner_all_companies OWNER TO postgres; GRANT ALL ON TABLE view_cjpl_partner_all_companies TO postgres; GRANT SELECT ON TABLE view_cjpl_partner_all_companies TO joomla; with x as (SELECT a.id, a.name AS company_partner_name, a.name AS company_name, b.name AS company_state, a.parent_id, a.is_company FROM res_partner a LEFT JOIN res_country_state b ON a.state_id = b.id WHERE a.is_company), y as ( SELECT a.id, a.name AS company_partner_name, x.company_name, x.company_state, a.parent_id, a.is_company FROM res_partner a LEFT JOIN x ON a.parent_id = x.id WHERE NOT a.is_company AND a.parent_id IS NOT NULL), z as ( SELECT a.id, a.name AS company_partner_name, c.name AS company_name, a.x_core_code, a.parent_id, a.is_company FROM res_partner a LEFT JOIN res_partner c ON a.parent_id = c.id WHERE NOT a.is_company AND a.parent_id IS NOT NULL AND NOT (a.parent_id IN ( SELECT id FROM x )) SELECT x.id, x.company_partner_name, x.company_name, x.company_state, FROM x SELECT y.id, y.company_partner_name, y.company_name, b.company_state, FROM y UNION SELECT z.id, z.company_partner_name, z.company_name, c.company_state, FROM z ; with x as (SELECT a.id, a.name AS company_partner_name, a.name AS company_name, b.name AS company_state, a.parent_id, a.is_company FROM res_partner a LEFT JOIN res_country_state b ON a.state_id = b.id WHERE a.is_company), y as ( SELECT a.id, a.name AS company_partner_name, x.company_name, x.company_state, a.parent_id, a.is_company FROM res_partner a LEFT JOIN x ON a.parent_id = x.id WHERE NOT a.is_company AND a.parent_id IS NOT NULL), z as ( SELECT a.id, a.name AS company_partner_name, a.name AS company_name, b.name AS company_state, a.parent_id, a.is_company FROM res_partner a LEFT JOIN res_country_state b ON a.state_id = b.id WHERE NOT a.is_company AND a.parent_id IS NULL) SELECT x.id, x.company_partner_name, x.company_name, x.company_state FROM x UNION SELECT y.id, y.company_partner_name, y.company_name, y.company_state FROM y UNION SELECT z.id, z.company_partner_name, z.company_name, z.company_state FROM z ;
set pagesize 100 line 200 trimspool on --spool rbs.lis column TABLESPACE format a15; column SEG_NAME format a25 head 'NAME'; column INIT format 999999999; column NEXT format 999999999; column MIN format 999; column MAX format 99999; column STATUS format a8; col waits format 999,999 col gets format 99,999,999 col shrinks format 99999 head 'SHRINKS' col wraps format 9,999,999 head 'WRAPS' col optsize format 999999999 head 'OPTIMAL' col extents format 999 head 'EXT' col extends format 99999 head 'EXTNDS' col xacts format 9999 head 'CURR#|TRANS' col hit_ratio head 'HIT%' format 999.99 col hwmsize format 99,999,999,999 head 'HIGH|WATER|MARK' select substr(d.tablespace_name,1,15) TABLESPACE, d.segment_name SEG_NAME, d.initial_extent INIT, d.next_extent NEXT, d.min_extents MIN, d.max_extents MAX, v.extents, v.optsize, v.hwmsize, v.xacts, v.waits, v.gets, ((gets-waits)*100)/gets hit_ratio, v.wraps, v.extends, v.shrinks, d.status STATUS from dba_rollback_segs d, v$rollstat v where v.usn(+) = d.segment_id and v.status != 'OFFLINE' order by tablespace_name, seg_name / --spool off
CREATE DATABASE signup; CREATE TABLE signup.users ( id INT NOT NULL AUTO_INCREMENT, fname VARCHAR(30) NOT NULL, lname VARCHAR(30) NOT NULL, email VARCHAR(100) NOT NULL, username VARCHAR(50) NOT NULL, password VARCHAR(100) NOT NULL, PRIMARY KEY (id) );
DROP TABLE TIMERS IF EXISTS; DROP TABLE HILOSEQUENCES IF EXISTS; DROP TABLE JMS_USERS IF EXISTS; DROP TABLE JMS_ROLES IF EXISTS; DROP TABLE JMS_SUBSCRIPTIONS IF EXISTS; DROP TABLE JMS_MESSAGES IF EXISTS; DROP INDEX JMS_MESSAGES_TXOP_TXID IF EXISTS; DROP INDEX JMS_MESSAGES_DESTINATION IF EXISTS; DROP TABLE JMS_TRANSACTIONS IF EXISTS; DROP TABLE MEETING IF EXISTS; DROP TABLE NOTICE IF EXISTS; DROP TABLE CMS_CONFERENCE IF EXISTS; DROP TABLE CMS_PAPER IF EXISTS; DROP TABLE CMS_REVIEW IF EXISTS; DROP TABLE CMS_USER IF EXISTS; DROP TABLE EDITOR_CONFERENCE IF EXISTS; DROP TABLE REVIEWER_CONFERENCE IF EXISTS; DROP TABLE REVIEWER_PAPER IF EXISTS; DROP TABLE ID_KEYS IF EXISTS; CREATE TABLE TIMERS(TIMERID VARCHAR(80) NOT NULL,TARGETID VARCHAR(250) NOT NULL,INITIALDATE TIMESTAMP NOT NULL,TIMERINTERVAL BIGINT,INSTANCEPK VARBINARY,INFO VARBINARY,CONSTRAINT TIMERS_PK PRIMARY KEY(TIMERID,TARGETID)); CREATE TABLE HILOSEQUENCES(SEQUENCENAME VARCHAR(50) NOT NULL,HIGHVALUES INTEGER NOT NULL,CONSTRAINT HILO_PK PRIMARY KEY(SEQUENCENAME)); CREATE TABLE JMS_USERS(USERID VARCHAR(32) NOT NULL PRIMARY KEY,PASSWD VARCHAR(32) NOT NULL,CLIENTID VARCHAR(128)); CREATE TABLE JMS_ROLES(ROLEID VARCHAR(32) NOT NULL,USERID VARCHAR(32) NOT NULL,PRIMARY KEY(USERID,ROLEID)); CREATE TABLE JMS_SUBSCRIPTIONS(CLIENTID VARCHAR(128) NOT NULL,SUBNAME VARCHAR(128) NOT NULL,TOPIC VARCHAR(255) NOT NULL,SELECTOR VARCHAR(255),PRIMARY KEY(CLIENTID,SUBNAME)); CREATE TABLE JMS_MESSAGES(MESSAGEID INTEGER NOT NULL,DESTINATION VARCHAR(255) NOT NULL,TXID INTEGER,TXOP CHAR(1),MESSAGEBLOB OBJECT,PRIMARY KEY(MESSAGEID,DESTINATION)); CREATE INDEX JMS_MESSAGES_TXOP_TXID ON JMS_MESSAGES(TXOP,TXID); CREATE INDEX JMS_MESSAGES_DESTINATION ON JMS_MESSAGES(DESTINATION); CREATE TABLE JMS_TRANSACTIONS(TXID INTEGER NOT NULL PRIMARY KEY); CREATE TABLE MEETING(ID BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY,SENDER VARCHAR(50) NOT NULL,STARTTIME VARCHAR(20),ENDTIME VARCHAR(20),ADDRESS VARCHAR(100),TITLE VARCHAR(100),CONTENT VARCHAR(5000),CONSTRAINT SYS_CT_58 UNIQUE(ID)); CREATE TABLE NOTICE(ID BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY,SENDER VARCHAR(50) NOT NULL,TITLE VARCHAR(100),CONTENT VARCHAR(5000),SENDTIME VARCHAR(20),CONSTRAINT SYS_CT_62 UNIQUE(ID)); CREATE TABLE CMS_CONFERENCE(CONFERENCE_ID BIGINT NOT NULL PRIMARY KEY,NAME VARCHAR(255) NOT NULL,LOCATION VARCHAR(255) NOT NULL,START_DATE TIMESTAMP NOT NULL,DESCRIPTION VARCHAR(5000) NOT NULL,URL VARCHAR(500),TOPIC VARCHAR(255) NOT NULL,END_DATE TIMESTAMP NOT NULL); CREATE TABLE CMS_PAPER(PAPER_ID BIGINT NOT NULL PRIMARY KEY,FILE_NAME VARCHAR(255),CONTENT_TYPE VARCHAR(255),STATUS VARCHAR(255) NOT NULL,ABSTRACT VARCHAR(5000) NOT NULL,KEYWORDS VARCHAR(255) NOT NULL,SUBMITTED_DATE TIMESTAMP NOT NULL,ORIGINAL_PAPER LONGVARBINARY,TITLE VARCHAR(500) NOT NULL,USER_ID BIGINT,CONFERENCE_ID BIGINT,CONSTRAINT FKFD381B16A95E571E FOREIGN KEY(CONFERENCE_ID) REFERENCES CMS_CONFERENCE(CONFERENCE_ID)); CREATE TABLE CMS_REVIEW(REVIEW_ID BIGINT NOT NULL PRIMARY KEY,FEEDBACK VARCHAR(5000) NOT NULL,RECOMMENDATION INTEGER NOT NULL,SUBMITTED_DATE TIMESTAMP NOT NULL,RELEASED BOOLEAN NOT NULL,PAPER_ID BIGINT,USER_ID BIGINT,CONSTRAINT FKAD701F0E1D96ECD6 FOREIGN KEY(PAPER_ID) REFERENCES CMS_PAPER(PAPER_ID)); CREATE TABLE CMS_USER(USER_ID BIGINT NOT NULL PRIMARY KEY,PASSWORD VARCHAR(30) NOT NULL,NAME VARCHAR(30) NOT NULL,USER_TYPE VARCHAR(255) NOT NULL,EMAIL VARCHAR(255) NOT NULL,AFFILIATION VARCHAR(500) NOT NULL,CREATE_DATE TIMESTAMP NOT NULL,FIRST_NAME VARCHAR(255) NOT NULL,LAST_NAME VARCHAR(255) NOT NULL,PHONE VARCHAR(255) NOT NULL,MIDDLE_NAME VARCHAR(255),CONTACT_INFO VARCHAR(5000),CONSTRAINT SYS_CT_72 UNIQUE(NAME),CONSTRAINT SYS_CT_73 UNIQUE(EMAIL)); CREATE TABLE EDITOR_CONFERENCE(CONFERENCE_ID BIGINT NOT NULL,USER_ID BIGINT NOT NULL,CONSTRAINT FK67A6432EA95E571E FOREIGN KEY(CONFERENCE_ID) REFERENCES CMS_CONFERENCE(CONFERENCE_ID),CONSTRAINT FK67A6432EC47F1FBE FOREIGN KEY(USER_ID) REFERENCES CMS_USER(USER_ID)); CREATE TABLE REVIEWER_CONFERENCE(CONFERENCE_ID BIGINT NOT NULL,USER_ID BIGINT NOT NULL,CONSTRAINT FK3B428796A95E571E FOREIGN KEY(CONFERENCE_ID) REFERENCES CMS_CONFERENCE(CONFERENCE_ID),CONSTRAINT FK3B428796C47F1FBE FOREIGN KEY(USER_ID) REFERENCES CMS_USER(USER_ID)); CREATE TABLE REVIEWER_PAPER(PAPER_ID BIGINT NOT NULL,USER_ID BIGINT NOT NULL,CONSTRAINT FKCBBFAAD2C47F1FBE FOREIGN KEY(USER_ID) REFERENCES CMS_USER(USER_ID),CONSTRAINT FKCBBFAAD21D96ECD6 FOREIGN KEY(PAPER_ID) REFERENCES CMS_PAPER(PAPER_ID)); CREATE TABLE ID_KEYS(KEY_NAME VARCHAR(255),KEY_VALUE INTEGER); ALTER TABLE CMS_PAPER ADD CONSTRAINT FKFD381B16C47F1FBE FOREIGN KEY(USER_ID) REFERENCES CMS_USER(USER_ID); ALTER TABLE CMS_REVIEW ADD CONSTRAINT FKAD701F0EC47F1FBE FOREIGN KEY(USER_ID) REFERENCES CMS_USER(USER_ID); INSERT INTO HILOSEQUENCES VALUES('general',0); INSERT INTO JMS_USERS VALUES('dynsub','dynsub',NULL); INSERT INTO JMS_USERS VALUES('guest','guest',NULL); INSERT INTO JMS_USERS VALUES('j2ee','j2ee',NULL); INSERT INTO JMS_USERS VALUES('john','needle','DurableSubscriberExample'); INSERT INTO JMS_USERS VALUES('nobody','nobody',NULL); INSERT INTO JMS_ROLES VALUES('durpublisher','dynsub'); INSERT INTO JMS_ROLES VALUES('publisher','dynsub'); INSERT INTO JMS_ROLES VALUES('guest','guest'); INSERT INTO JMS_ROLES VALUES('j2ee','guest'); INSERT INTO JMS_ROLES VALUES('john','guest'); INSERT INTO JMS_ROLES VALUES('durpublisher','john'); INSERT INTO JMS_ROLES VALUES('publisher','john'); INSERT INTO JMS_ROLES VALUES('subscriber','john'); INSERT INTO JMS_ROLES VALUES('noacc','nobody'); INSERT INTO CMS_USER VALUES(1,'\u00d03\u00e2*\u00e3H\u00ae\u00b5f\u000f\u00c2\u0014\u000a\u00ec5\u2026\u000cM\u00a9\u2014','admin','ADMIN','admin@cms.drexel.edu','Drexel University','2007-07-14 13:07:33.120000000','Jay','Liang','123-1231-3123','z','Drexel University - CS department'); INSERT INTO ID_KEYS VALUES('user_id',2);
-- available online in file 'sample1' CREATE OR REPLACE PROCEDURE addPerson(example INTEGER, example1 INTEGER, example2 INTEGER, example3 INTEGER, example4 INTEGER, birthYear pls_integer, birthMonth pls_integer, birthDate pls_integer, height pls_integer, weight pls_integer, ssn pls_integer) { END ADDPERSON;
-- stored delimiter // create procedure mproc() begin select * from membertbl where membername = '상길이'; end; delimier;
-- check consistency of mapping membership and group SELECT lower_parent_name FROM cwd_membership WHERE parent_id not in (SELECT ID from cwd_group);
insert into events_list(date, event, description) values(${date}, ${event}, ${description}) returning *
# patch_39_40_b # # title: xref unique constraint # # description: # Add info_type and info_text columns to the id_index UNIQUE KEY in the xref table. ALTER TABLE xref DROP INDEX id_index; ALTER TABLE xref ADD UNIQUE id_index (dbprimary_acc, external_db_id, info_type, info_text); # patch identifier INSERT INTO meta (meta_key, meta_value) VALUES ('patch', 'patch_39_40_b.sql|xref_unique_constraint');
/* Navicat MySQL Data Transfer Source Server : docker-phalcon Source Server Version : 50719 Source Host : localhost:3306 Source Database : ekranj Target Server Type : MYSQL Target Server Version : 50719 File Encoding : 65001 Date: 2017-11-28 11:38:08 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `roles` -- ---------------------------- DROP TABLE IF EXISTS `roles`; CREATE TABLE `roles` ( `id` varchar(36) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `child_id` varchar(36) DEFAULT '', `created_on` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `updated_by` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of roles -- ---------------------------- INSERT INTO `roles` VALUES ('421ba1f2-cd04-444c-92de-64a829bfab6c', 'user', null, '', '2017-11-27 21:46:37', null, '2017-11-27 21:46:37', null); INSERT INTO `roles` VALUES ('c570932f-d639-4f48-bfde-065eab1c30db', 'super_admin', null, '', '2017-11-27 21:46:37', null, '2017-11-27 21:46:37', null); INSERT INTO `roles` VALUES ('cf46920e-ca20-45f9-9ffd-9bb37d310c08', 'admin', null, '421ba1f2-cd04-444c-92de-64a829bfab6c', '2017-11-27 21:46:37', null, '2017-11-27 21:46:37', null); -- ---------------------------- -- Table structure for `user_roles` -- ---------------------------- DROP TABLE IF EXISTS `user_roles`; CREATE TABLE `user_roles` ( `id` varchar(36) NOT NULL DEFAULT '', `user_id` varchar(36) NOT NULL DEFAULT '', `role_id` varchar(36) NOT NULL DEFAULT '', `created_on` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `updated_by` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user_roles -- ---------------------------- INSERT INTO `user_roles` VALUES ('7b042793-34bd-4474-8dfe-04079e1ea8bd', 'b71b64f4-e862-45a8-8126-1aa5164fad4e', '421ba1f2-cd04-444c-92de-64a829bfab6c', '2017-11-27 22:12:42', null, '2017-11-27 22:12:42', null); INSERT INTO `user_roles` VALUES ('96bd01c9-8616-4260-8941-7bb4c46279ff', 'f968b32e-020f-421c-9571-cf0a328d2e42', 'c570932f-d639-4f48-bfde-065eab1c30db', '2017-11-27 22:12:42', null, '2017-11-27 22:12:42', null); INSERT INTO `user_roles` VALUES ('ac151e0b-89f6-4bc8-8793-9e1896061a9f', '5ea80d61-8ef3-4ada-8d99-0b19d3166695', 'cf46920e-ca20-45f9-9ffd-9bb37d310c08', '2017-11-27 22:12:42', null, '2017-11-27 22:12:42', null); -- ---------------------------- -- Table structure for `users` -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` varchar(36) NOT NULL DEFAULT '', `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `active` tinyint(4) NOT NULL DEFAULT '0', `recovery_token` varchar(255) DEFAULT NULL, `last_login` datetime DEFAULT NULL, `created_on` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `updated_by` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of users -- ---------------------------- INSERT INTO `users` VALUES ('5cc3f638-16d8-4139-83d9-178f2ebc13c8', 'test', '$2y$10$c/r8BkNU5G4E2EcX1eJZf.T4wABG4jfYi5YlfbtokeZkyznNOYjOi', '0', null, null, '2017-11-28 10:23:16', null, '2017-11-28 10:23:16', null); INSERT INTO `users` VALUES ('5ea80d61-8ef3-4ada-8d99-0b19d3166695', 'admin', '$2y$10$Q1XpQVbjJ9dx2YxTOle6UuXiCHMxUhzptqXKR2ICNZvd5t.iqAe4W', '1', null, null, '2017-10-13 22:02:55', null, '2017-10-13 22:02:55', null); INSERT INTO `users` VALUES ('b71b64f4-e862-45a8-8126-1aa5164fad4e', 'user', '$2y$10$qG0HVCUUN.m27fnyn6Z7SuZdFp4Wz3SUWcRJMdxK./HtPoCHIe0r.', '0', null, null, '2017-11-27 22:10:36', null, '2017-11-27 22:10:36', null); INSERT INTO `users` VALUES ('f968b32e-020f-421c-9571-cf0a328d2e42', 'super_admin', '$2y$10$qzYQZnUUCk.wRYlFUKyG4e2SesRo3ZvrAsZF9zoadjTEbgSxGmpxe', '0', null, null, '2017-11-27 21:53:03', null, '2017-11-27 21:53:03', null);
alter table t_cargo_detail add last_known_location varchar2(5); --//@UNDO alter table t_cargo_detail drop column last_known_location;
CREATE OR REPLACE PROCEDURE CONFIRMPALLETIN(VTASKNO IN VARCHAR2,VRESULTCODE IN VARCHAR2,VRESULT OUT INTEGER) IS VCELLCODE CHAR(9); VBILLNO VARCHAR2(20); VUNCOMPLETE INTEGER; VREALQUANTITY FLOAT; BEGIN VRESULT := 1; SELECT CELLCODE,BILLNO,QUANTITY INTO VCELLCODE,VBILLNO,VREALQUANTITY FROM TASK WHERE TASKNO=VTASKNO AND TASKTYPE='1' AND STATE='3'; IF VRESULTCODE = 1 THEN UPDATE TASK SET STATE='5',RESULTCODE=VRESULTCODE,TASKDATE=SYSDATE WHERE TASKNO=VTASKNO AND TASKTYPE='1' AND STATE='3'; UPDATE CELL SET ISLOCK='0',PRODUCTCODE='00000',QUANTITY=VREALQUANTITY,INDATE=SYSDATE WHERE CELLCODE=VCELLCODE AND ISLOCK='1'; ELSE UPDATE TASK SET STATE='6',RESULTCODE=VRESULTCODE,TASKDATE=SYSDATE WHERE TASKNO=VTASKNO AND TASKTYPE='1' AND STATE='3'; UPDATE CELL SET ISLOCK='0',PRODUCTCODE=NULL,QUANTITY=0,BILLNO=NULL,ITEMNO=NULL,INDATE=NULL WHERE CELLCODE=VCELLCODE AND ISLOCK='1'; END IF; VRESULT := 2; SELECT COUNT(*) INTO VUNCOMPLETE FROM TASK WHERE BILLNO=VBILLNO AND STATE NOT IN ('5','6'); IF VUNCOMPLETE = 0 THEN --COPY TASK TO TASKHISTORY INSERT INTO TASKHISTORY SELECT * FROM TASK WHERE BILLNO=VBILLNO; --DELETE TASK DELETE FROM TASK WHERE BILLNO=VBILLNO; --UPDATE BILLMASTER STATE FIELD TO COMPLETE TASK UPDATE PALLETMASTER SET STATE='4' WHERE BILLNO=VBILLNO; END IF; COMMIT; VRESULT := 0; EXCEPTION WHEN OTHERS THEN ROLLBACK; INSERT INTO PROERROR(PRONAME, INVOKEUSER, INVOKEDATE, PRESULT, P1, P2) VALUES('CONFIRMTASKIN', USER, SYSDATE, VRESULT, VTASKNO, VRESULTCODE); END CONFIRMPALLETIN; /
/*SeasonStartDate must be less than SeasonEndDate*/ /*Season1*/ SELECT FMID, Season1StartDate, Season1EndDate FROM Farmers_Market WHERE Season1StartDate > Season1EndDate /*Season2*/ SELECT FMID, Season2StartDate, Season2EndDate FROM Farmers_Market WHERE Season2StartDate > Season2EndDate /*Season3*/ SELECT FMID, Season3StartDate, Season3EndDate FROM Farmers_Market WHERE Season3StartDate > Season3EndDate /*Season4*/ SELECT FMID, Season4StartDate, Season4EndDate FROM Farmers_Market WHERE Season4StartDate > Season4EndDate
with `frequent_ss_items` as (select `substr`(`i_item_desc`, 1, 30) as `itemdesc`, `i_item_sk` as `item_sk`, `d_date` as `solddate`, count(*) as `cnt` from `store_sales` where `ss_sold_date_sk` = `d_date_sk` and `ss_item_sk` = `i_item_sk` and `d_year` in (2000, 2000 + 1, 2000 + 2, 2000 + 3) group by `substr`(`i_item_desc`, 1, 30), `i_item_sk`, `d_date` having count(*) > 4), `max_store_sales` as (select max(`csales`) as `tpcds_cmax` from (select `c_customer_sk`, sum(`ss_quantity` * `ss_sales_price`) as `csales` from `store_sales` where `ss_customer_sk` = `c_customer_sk` and `ss_sold_date_sk` = `d_date_sk` and `d_year` in (2000, 2000 + 1, 2000 + 2, 2000 + 3) group by `c_customer_sk`)), `best_ss_customer` as (select `c_customer_sk`, sum(`ss_quantity` * `ss_sales_price`) as `ssales` from `store_sales` where `ss_customer_sk` = `c_customer_sk` group by `c_customer_sk` having sum(`ss_quantity` * `ss_sales_price`) > 50 / 100.0 * (select * from `max_store_sales`)) (select sum(`sales`) from (select `cs_quantity` * `cs_list_price` as `sales` from `catalog_sales` where `d_year` = 2000 and `d_moy` = 2 and `cs_sold_date_sk` = `d_date_sk` and `cs_item_sk` in (select `item_sk` from `frequent_ss_items`) and `cs_bill_customer_sk` in (select `c_customer_sk` from `best_ss_customer`) union all select `ws_quantity` * `ws_list_price` as `sales` from `web_sales` where `d_year` = 2000 and `d_moy` = 2 and `ws_sold_date_sk` = `d_date_sk` and `ws_item_sk` in (select `item_sk` from `frequent_ss_items`) and `ws_bill_customer_sk` in (select `c_customer_sk` from `best_ss_customer`)) order by fetch next 100 rows only)
CREATE USER chatbot WITH PASSWORD 'chatbot'; CREATE DATABASE chatbot WITH OWNER = chatbot
CREATE TABLE IF NOT EXISTS `notebook` ( `id` INT(2) NOT NULL AUTO_INCREMENT, `name` VARCHAR(11) NOT NULL, `num` VARCHAR(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=INNODB DEFAULT CHARSET=UTF8; INSERT INTO notebook (`name`, num) VALUES ("Жанибек", "87055667439"); INSERT INTO notebook (`name`, num) VALUES ("Адиль", "87774507735"); INSERT INTO notebook (`name`, num) VALUES ("Меирбек", "87477573365"); SET GLOBAL time_zone = '+6:00';
SELECT ContinentCode, CurrencyCode, CurrencyUsage FROM ( SELECT ContinentCode, CurrencyCode, COUNT(CurrencyCode) AS CurrencyUsage, DENSE_RANK() OVER (PARTITION BY ContinentCode ORDER BY COUNT(CurrencyCode) DESC) AS Ranked FROM Countries GROUP BY ContinentCode,CurrencyCode ) AS k WHERE CurrencyUsage>1 AND k.Ranked=1 ORDER BY k.ContinentCode
DELIMITER $$ DROP PROCEDURE IF EXISTS sp_process_drug_orders$$ CREATE PROCEDURE sp_process_drug_orders(IN providerName VARCHAR(100)) BEGIN DECLARE no_more_rows BOOLEAN; DECLARE record_uuid VARCHAR(100); DECLARE v_row_count INT(11); DECLARE userID INT(11); DECLARE encounterTypeID INT(11); DECLARE formID INT(11); DECLARE existing_drug_orders CURSOR FOR SELECT uuid FROM orders; DECLARE CONTINUE HANDLER FOR NOT FOUND SET no_more_rows = TRUE; OPEN existing_drug_orders; SET v_row_count = FOUND_ROWS(); SELECT user_id INTO userID from users where username=providerName; SELECT encounter_type_id INTO encounterTypeID from encounter_type where uuid="7df67b83-1b84-4fe2-b1b7-794b4e9bfcc3"; SELECT form_id INTO formID from form where uuid="888dbabd-1c18-4653-82c2-e753415ab79a"; IF v_row_count > 0 THEN get_enrollment_record: LOOP FETCH existing_drug_orders INTO record_uuid; IF no_more_rows THEN CLOSE existing_drug_orders; LEAVE get_enrollment_record; END IF; CALL sp_create_order_encounter(record_uuid, userID, encounterTypeID, formID); END LOOP get_enrollment_record; ELSE update orders set discontinued_by=userID where discontinued=1 and discontinued_by is null; update orders set discontinued_date=curdate() where discontinued=1 and discontinued_date is null; SELECT "NO ROWS WERE FOUND"; END IF; END $$ DELIMITER ; DELIMITER $$ DROP PROCEDURE IF EXISTS sp_create_order_encounter$$ CREATE PROCEDURE sp_create_order_encounter(IN recordUUID VARCHAR(100), IN providerID INT(11), IN encounterTypeID INT(11) , IN formID INT(11)) BEGIN DECLARE exec_status INT(11) DEFAULT 1; DECLARE creatorID INT(11); DECLARE patientID INT(11); DECLARE encounterDate DATETIME; DECLARE encounterID INT(11); DECLARE discontinued INT(11); DECLARE CONTINUE HANDLER FOR SQLEXCEPTION BEGIN SET exec_status = -1; ROLLBACK; END; -- perform all procedure calls within a transaction START TRANSACTION; SELECT creator, patient_id, date_created, discontinued INTO creatorID, patientID, encounterDate, discontinued from orders where uuid=recordUUID; insert into encounter (encounter_type, patient_id, form_id, encounter_datetime, creator, date_created) values (encounterTypeID, patientID, formID, encounterDate, creatorID, encounterDate) ; SET encounterID = LAST_INSERT_ID(); UPDATE orders set orderer=providerID, encounter_id=encounterID where uuid=recordUUID; IF discontinued = 1 THEN UPDATE orders set discontinued_date=CURDATE(), discontinued_by=providerID where uuid=recordUUID; END IF; COMMIT; END; $$ DELIMITER ; DELIMITER $$ DROP PROCEDURE IF EXISTS sp_effect_db_changes_on_orders$$ CREATE PROCEDURE sp_effect_db_changes_on_orders() BEGIN ALTER TABLE `order_type` ADD COLUMN `java_class_name` VARCHAR(255) DEFAULT NULL, ADD COLUMN `parent` INT(11) DEFAULT NULL; UPDATE `order_type` SET `java_class_name` = 'org.openmrs.TestOrder' WHERE name ='LAB TEST ORDERS'; UPDATE order_type SET java_class_name = 'org.openmrs.DrugOrder' WHERE name='Drug Order'; -- UPDATE drug_order set route=160240; -- previous orders never filled this one. should be run after upgrade is complete since route was introduced in later versions -- this is required for the upgrade insert into global_property(property, property_value, description, uuid) values("order.drugDosingUnitsConceptUuid", "162384AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "Drug dosing units concept", 'a8ff078c-9b1b-11e8-98d0-529269fb1459'); -- set all null dosing unit and frequencies appropriately. This will avert upgrade from stalling UPDATE drug_order SET frequency='OD' where frequency is null OR UPPER(frequency)='NULL'; UPDATE drug_order SET units='tab' where units is null OR UPPER(units)='NULL'; END $$ DELIMITER ; -- Procedure for upgrading -- Create a user with provider role using the name : upgradeManager call sp_effect_db_changes_on_orders(); call sp_process_drug_orders("upgradeManager");
select customer_id, count(*) from {{ ref('stg_customers') }} {{ dbt_utils.group_by(1) }}
DROP TABLE IF EXISTS client; CREATE TABLE client ( id INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY, username VARCHAR(200) NOT NULL, age SMALLINT NOT NULL ); INSERT INTO client(username, age) VALUES('Test', 20); INSERT INTO client(username, age) VALUES('Test1', 22); INSERT INTO client(username, age) VALUES('Test2', 23); INSERT INTO client(username, age) VALUES('Test3', 24);
-- phpMyAdmin SQL Dump -- version 4.4.15.5 -- http://www.phpmyadmin.net -- -- Хост: 127.0.0.1:3306 -- Время создания: Июл 30 2016 г., 15:22 -- Версия сервера: 5.7.11 -- Версия PHP: 5.6.19 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- База данных: `news` -- -- -------------------------------------------------------- -- -- Структура таблицы `captcha` -- CREATE TABLE IF NOT EXISTS `captcha` ( `captcha_id` bigint(13) unsigned NOT NULL, `captcha_time` int(10) unsigned NOT NULL, `ip_address` varchar(45) NOT NULL, `word` varchar(20) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `captcha` -- INSERT INTO `captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES (1, 1469812634, '127.0.0.1', 'vmBnJdFP'), (2, 1469812702, '127.0.0.1', 'MT6lkgHe'), (3, 1469812707, '127.0.0.1', 'IyWHGJOF'), (4, 1469812710, '127.0.0.1', '3d2zJjiX'), (5, 1469812855, '127.0.0.1', 'EZwDHNXr'), (6, 1469812856, '127.0.0.1', 'sONx4Fm6'), (7, 1469812861, '127.0.0.1', 'g6Vp3FMY'), (8, 1469812896, '127.0.0.1', 'ztEhpivb'), (9, 1469812897, '127.0.0.1', 's8yvtA2I'), (10, 1469812916, '127.0.0.1', 'Z1BLmIYk'), (11, 1469812916, '127.0.0.1', '0ejXy4Sz'), (12, 1469812999, '127.0.0.1', 'qEoZLcx5'), (13, 1469813013, '127.0.0.1', 'rosdAl4m'), (14, 1469813014, '127.0.0.1', 'bzsUqaKG'), (15, 1469813022, '127.0.0.1', 'jFfXk8al'), (16, 1469813036, '127.0.0.1', 'g4Bw5vMP'), (17, 1469813040, '127.0.0.1', 'B43Wxvwo'), (18, 1469813061, '127.0.0.1', 'Dbc9JH0y'), (19, 1469881248, '127.0.0.1', 'nkygWBrm'); -- -------------------------------------------------------- -- -- Структура таблицы `category` -- CREATE TABLE IF NOT EXISTS `category` ( `id` bigint(20) unsigned NOT NULL, `category` varchar(300) NOT NULL, `category_name` varchar(500) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `category` -- INSERT INTO `category` (`id`, `category`, `category_name`) VALUES (1, 'Статьи', 'Article'), (2, 'Сниппеты', 'Snippets'); -- -------------------------------------------------------- -- -- Структура таблицы `news` -- CREATE TABLE IF NOT EXISTS `news` ( `id` bigint(20) unsigned NOT NULL, `title` varchar(250) NOT NULL, `text` text NOT NULL, `img` varchar(500) NOT NULL, `category_id` int(11) DEFAULT NULL ) ENGINE=InnoDB AUTO_INCREMENT=95 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `news` -- INSERT INTO `news` (`id`, `title`, `text`, `img`, `category_id`) VALUES (65, 'Проверка', 'Использовалось ООП и MVC', '1.jpg', 1), (66, 'Проверка 2', '2', '2.jpg', 2), (68, 'Проверка вывода', 'sad', 'MoGo_FREE_Template_by_Laaqiq.jpg', 1), (70, 'Проверка загрузки', 'Использовалось ООП и MVC', 'N3fDxVD4FgY.jpg', 1), (85, 'qwe', 'qwe', '11.jpg', 2), (86, 'asd', 'dsa', 'css.jpg', 1), (87, 'Lol', 'ogk', 'sql1.jpg', 1), (88, 'fff', 'fff', 'flex.jpg', 2), (89, 'wewq', 'ewqq', 'start.jpg', 2), (90, 'eqwe', 'qweqwe', 'patt.jpg', 2), (92, '321', '312', 'end1.jpg', 2), (94, '312', '123', 'patt1.jpg', 1); -- -------------------------------------------------------- -- -- Структура таблицы `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` bigint(20) unsigned NOT NULL, `name` varchar(300) NOT NULL, `age` int(200) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `users` -- INSERT INTO `users` (`id`, `name`, `age`) VALUES (1, 'QW', 4); -- -- Индексы сохранённых таблиц -- -- -- Индексы таблицы `captcha` -- ALTER TABLE `captcha` ADD PRIMARY KEY (`captcha_id`), ADD KEY `word` (`word`); -- -- Индексы таблицы `category` -- ALTER TABLE `category` ADD UNIQUE KEY `id` (`id`); -- -- Индексы таблицы `news` -- ALTER TABLE `news` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `id` (`id`); -- -- Индексы таблицы `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `id` (`id`); -- -- AUTO_INCREMENT для сохранённых таблиц -- -- -- AUTO_INCREMENT для таблицы `captcha` -- ALTER TABLE `captcha` MODIFY `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=20; -- -- AUTO_INCREMENT для таблицы `category` -- ALTER TABLE `category` MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT для таблицы `news` -- ALTER TABLE `news` MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=95; -- -- AUTO_INCREMENT для таблицы `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- ---------------------------------------------------------------------------------------------------- -- TABLE: tenantsConfig -- ---------------------------------------------------------------------------------------------------- DROP TABLE IF EXISTS tenantsConfig; CREATE TABLE public.tenantsConfig ( tenantId serial NOT NULL, paramGUID uuid NOT NULL DEFAULT gen_random_uuid(), paramName varchar(64) NOT NULL, configuration jsonb, readRoleRequired AUTH_ROLE DEFAULT 'User'::AUTH_ROLE, writeRoleRequired AUTH_ROLE DEFAULT 'Administrator'::AUTH_ROLE, lastChanged timestamp without time zone DEFAULT now(), lastChangedBy uuid, CONSTRAINT tenantsConfig1 PRIMARY KEY (tenantId, paramName), CONSTRAINT tenantsConfig2 UNIQUE (paramGUID) ); ALTER TABLE public.tenantsConfig OWNER TO postgres; GRANT ALL ON TABLE public.tenantsConfig TO postgres; GRANT SELECT, UPDATE, INSERT, TRUNCATE, DELETE ON TABLE public.tenantsConfig TO caf;
drop table if exists documents cascade; drop table if exists users cascade; create table users ( id serial not null, first_name varchar(255), last_name varchar(255), primary key (id) ); create table documents ( id serial not null, expiry_date date, number varchar(255), title varchar(255), user_id serial, primary key (id) );
Create Procedure mERP_sp_Get_CSProductScopeSKU(@SchemeID Int) As Begin Select SKUCode from tbl_mERP_SchSKUCodeScope Where SchemeID = @SchemeID End
/* call InsertUser('Ivanov', 'Ivan', 'Ivanovic', '1985-02-25', 'm', '069-359-862'); call InsertUser('Petrov', 'Petr', 'Petrovic', '1975-03-15', 'm', '079-359-862'); call InsertAccount(1, 'IVAN12542', 'Ivan125'); call InsertAccount(2, 'pEtr12542', 'PetR52125'); call InsertEmail(1, 'ivanov.ivan@gmail.com'); call InsertEmail(2, 'petrov.petr@mail.ru'); call InsertCountry('Moldova'); call InsertCountry('Russia'); call InsertCountry('Ucraine'); call InsertCity(1, 'Kishinev'); call InsertCity(1, 'Belicy'); call InsertCity(2, 'Moscow'); call InsertCity(2, 'Sankt-Petersburg'); call InsertCity(3, 'Kiev'); call InsertAddress(1, 1, 'Puskin', '22/5', 17); call InsertAddress(2, 2, 'Mayakovskiy', '275', 359); call InsertCategory('Programming language'); call InsertCategory('Database'); call InsertCategory('Computer networks'); call InsertSubCategory(1, 'Java'); call InsertSubCategory(1, 'C#'); call InsertSubCategory(2, 'Microsoft SQL Server 2008 R2'); call InsertSubCategory(2, 'MySQL'); call InsertSubCategory(3, 'Cisco'); call InsertArticle('Mysql create database', '<p>This is article, where telling how to create database in MySQL</p>', '<p>This is article, where telling <a title="Read more">...</a></p>', 5, curdate(), curdate(), 1); call InsertArticle('Java hello world programm', '<p>This is article, where telling how to create our first java programm</p>', '<p>This is article, where telling <a title="Read more">...</a></p>', 1, curdate(), curdate(), 2); call InsertArticleV2('C# hello world programm', '<p>This is article, where telling how to create our first java programm</p>', '<p>This is article, where telling <a title="Read more">...</a></p>', 2, 1); call InsertTag('Swing'); call InsertTag('Java console app'); call InsertTag('Hibernate'); call InsertTag('Spring Core'); call InsertTag('MySQL'); call InsertArticleTag(1, 5); call InsertArticleTag(2, 2); call InsertRelatedArticles(2, 3); call InsertComment(null, null, 'Very good article for java', 1, 2); */
/* Navicat MySQL Data Transfer Source Server : 216数据库 Source Server Version : 50628 Source Host : 192.168.1.216:3306 Source Database : paas2 Target Server Type : MYSQL Target Server Version : 50628 File Encoding : 65001 Date: 2017-07-17 16:01:48 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for access_log -- ---------------------------- DROP TABLE IF EXISTS `access_log`; CREATE TABLE `access_log` ( `id` varchar(64) NOT NULL, `object` varchar(128) DEFAULT NULL COMMENT '操作对象', `action` varchar(128) DEFAULT NULL COMMENT '行为', `result` varchar(255) DEFAULT NULL COMMENT '结果', `user_id` bigint(20) DEFAULT NULL COMMENT '操作者id', `response_ip` varchar(16) DEFAULT NULL COMMENT '操作者名称', `request_ip` varchar(32) DEFAULT NULL COMMENT 'ip', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', `detail` text, `module` varchar(32) DEFAULT NULL, `tenant_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of access_log -- ---------------------------- INSERT INTO `access_log` VALUES ('131c56a0600a4ec2a4d931ba52366e7f', 'environment', '/environment/list', '请求处理正常!', '1', '127.0.0.1', '192.168.0.139', '2017-07-14 10:07:41', '{\"endpoint\":\"127.0.0.1\",\"apiKey\":\"1214546782\",\"sign\":\"38cd33e447f6ffe0b5aeeef5cfb40e9570cc4d30\",\"simple\":\"false\",\"page\":\"1\",\"rows\":\"10\",\"timestamp\":\"1499998061106\"}', 'BSM.API', '0'); INSERT INTO `access_log` VALUES ('186c9fc4cf44407ea480c84325359dc3', 'host', '/host/list', '请求处理正常!', '1', '127.0.0.1', '192.168.0.139', '2017-07-14 10:24:24', '{\"endpoint\":\"127.0.0.1\",\"apiKey\":\"1214546782\",\"sign\":\"-54c1924616204a5a05fd6654272bc2e4634cc73e\",\"simple\":\"false\",\"page\":\"1\",\"rows\":\"10\",\"params\":\"[]\",\"timestamp\":\"1499999064390\"}', 'BSM.API', '0'); INSERT INTO `access_log` VALUES ('7ab2a999a76d4e6dbdc6acefb040ef08', 'host', '/host/list', '请求处理正常!', '1', '127.0.0.1', '192.168.0.139', '2017-07-14 10:07:42', '{\"endpoint\":\"127.0.0.1\",\"apiKey\":\"1214546782\",\"sign\":\"f85b5dd9b37d30e85d614d1f578aa26b0595d46\",\"simple\":\"false\",\"page\":\"1\",\"rows\":\"10\",\"params\":\"[]\",\"timestamp\":\"1499998062280\"}', 'BSM.API', '0'); -- ---------------------------- -- Table structure for application -- ---------------------------- DROP TABLE IF EXISTS `application`; CREATE TABLE `application` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL COMMENT '应用名称', `status` varchar(16) NOT NULL COMMENT '状态(0 未部署,1 部署中,2 运行,3 异常)', `namespace` varchar(64) DEFAULT NULL COMMENT '应用命名空间', `env_id` bigint(20) DEFAULT NULL COMMENT '环境id', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除 (0 未删除, 1 删除)', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', `address` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL COMMENT '应用访问路径', `tenant_id` int(11) DEFAULT NULL COMMENT '租户ID', `dept_id` bigint(20) DEFAULT NULL COMMENT '所属部门', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of application -- ---------------------------- -- ---------------------------- -- Table structure for application_image_info -- ---------------------------- DROP TABLE IF EXISTS `application_image_info`; CREATE TABLE `application_image_info` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `application_id` bigint(11) NOT NULL COMMENT '应用id', `image_id` bigint(11) NOT NULL COMMENT '软件id', `use_count` int(11) NOT NULL COMMENT '依赖总数', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of application_image_info -- ---------------------------- -- ---------------------------- -- Table structure for application_layout_info -- ---------------------------- DROP TABLE IF EXISTS `application_layout_info`; CREATE TABLE `application_layout_info` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `application_id` bigint(20) DEFAULT NULL, `layout_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of application_layout_info -- ---------------------------- -- ---------------------------- -- Table structure for application_service_loadbalance_info -- ---------------------------- DROP TABLE IF EXISTS `application_service_loadbalance_info`; CREATE TABLE `application_service_loadbalance_info` ( `id` bigint(20) NOT NULL, `application_id` bigint(20) NOT NULL, `service_id` bigint(20) NOT NULL, `loadbalance_id` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of application_service_loadbalance_info -- ---------------------------- -- ---------------------------- -- Table structure for application_store -- ---------------------------- DROP TABLE IF EXISTS `application_store`; CREATE TABLE `application_store` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id唯一标识', `name` varchar(255) NOT NULL COMMENT '组件的名称', `version` varchar(255) NOT NULL COMMENT '应用组件的版本', `icon` varchar(255) DEFAULT NULL COMMENT '组件图标', `template` varchar(255) NOT NULL COMMENT '组件模板名称', `type` varchar(255) DEFAULT NULL COMMENT '组件类型', `deploy_number` bigint(20) DEFAULT NULL COMMENT '部署次数', `remark` varchar(255) DEFAULT NULL COMMENT '组件的描述信息', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of application_store -- ---------------------------- INSERT INTO `application_store` VALUES ('1', 'gitlab', '8.8', 'gitlab.png', 'gitlab.yaml', '开发工具', null, 'GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务'); INSERT INTO `application_store` VALUES ('2', 'snoarqube', '5.6', 'sonar.png', 'sonar.yaml', '开发工具', null, 'Sonar(代码质量管理平台)是一个开源平台,用于管理Java源代码的质量'); INSERT INTO `application_store` VALUES ('3', 'jenkins', 'latest', 'jenkins.png', 'jenkins.yaml', '开发工具', null, 'Jenkins是一个开源软件项目,旨在提供一个开放易用的软件平台,使软件的持续集成变成可能。'); INSERT INTO `application_store` VALUES ('4', 'tomcat', '8.5', 'tomcat.png', 'tomcat.yaml', '应用服务器', null, 'Tomcat 服务器是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器。'); INSERT INTO `application_store` VALUES ('5', 'jboss', 'latest', 'jboss.png', 'jboss.yaml', '应用服务器', null, '是一个基于J2EE的开放源代码的应用服务器。'); INSERT INTO `application_store` VALUES ('7', 'zookeeper', 'latest', 'zookeeper.png', 'zookeeper.yaml', '应用中间件', null, 'ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务。'); INSERT INTO `application_store` VALUES ('8', 'rabbitmq', 'latest', 'rabbitmq.png', 'rabbitmq.yaml', '应用中间件', null, 'RabbitMQ是一个在AMQP基础上完成的,可复用的企业消息系统。他遵循Mozilla Public License开源协议。'); INSERT INTO `application_store` VALUES ('9', 'redis', 'latest', 'redis.png', 'redis.yaml', '应用中间件', null, 'Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库。'); INSERT INTO `application_store` VALUES ('10', 'nginx', 'latest', 'nginx.png', 'nginx.yaml', '负载均衡器', null, 'Nginx是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。'); INSERT INTO `application_store` VALUES ('11', 'haproxy', 'latest', 'haproxy.png', 'haproxy.yaml', '负载均衡器', null, 'HAProxy是一个使用C语言编写的自由及开放源代码软件[1],其提供高可用性、负载均衡,以及基于TCP和HTTP的应用程序代理。'); INSERT INTO `application_store` VALUES ('12', 'mysql', '5.6', 'mysql.png', 'mysql.yaml', '数据库', null, 'MySQL是一个关系型数据库管理系统'); INSERT INTO `application_store` VALUES ('13', 'postgres', 'latest', 'postgres.png', 'postgres.yaml', '数据库', null, 'PostgreSQL 是一个自由的对象-关系数据库服务器(数据库管理系统)'); INSERT INTO `application_store` VALUES ('14', 'influxdb', 'latest', 'influxdb.png', 'influxdb.yaml', '数据库', null, 'InfluxDB 是一个开源分布式时序、事件和指标数据库。'); -- ---------------------------- -- Table structure for authority -- ---------------------------- DROP TABLE IF EXISTS `authority`; CREATE TABLE `authority` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', `name` varchar(64) NOT NULL COMMENT '权限名称', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `parent_id` bigint(20) DEFAULT NULL COMMENT '上级节点', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `status` varchar(16) DEFAULT NULL COMMENT '状态', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除', `owner_id` bigint(20) DEFAULT NULL, `props` varchar(1024) DEFAULT NULL COMMENT '编码', `action_url` varchar(64) DEFAULT NULL COMMENT '权限路径', `icon` varchar(64) DEFAULT NULL, `category` varchar(20) DEFAULT NULL, `priority` int(4) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of authority -- ---------------------------- INSERT INTO `authority` VALUES ('8', '数据纵览', '数据纵览', '0', '2016-09-07 15:05:57', '2017-07-08 10:08:37', '1', '6', 'NORMAL', '0', null, '无', 'paas.dashboard.dashboard', 'fa fa-tachometer icon', 'menu', '1'); INSERT INTO `authority` VALUES ('9', '环境资源', '环境资源', '0', '2016-09-07 20:54:08', '2017-06-13 14:07:21', '1', '1', 'NORMAL', '0', null, '无', 'paas.environment', 'fa fa-sitemap icon', 'menu', '2'); INSERT INTO `authority` VALUES ('13', '主机管理', '主机资源', '9', '2016-09-07 20:56:39', '2017-06-13 14:19:21', '1', '1', 'NORMAL', '0', null, 'app.assets.resource', 'paas.environment.host', null, 'menu', '2'); INSERT INTO `authority` VALUES ('40', '用户中心', '用户中心', '0', '2016-09-08 09:59:35', '2017-06-16 10:46:45', '1', '1', 'NORMAL', '0', null, '无', 'paas.userCenter', 'fa fa-user icon', 'menu', '8'); INSERT INTO `authority` VALUES ('42', '用户管理', '用户管理', '40', '2016-09-08 10:00:14', '2016-10-14 17:54:45', '1', '20', 'NORMAL', '0', null, '无', 'paas.userCenter.user', null, 'menu', '2'); INSERT INTO `authority` VALUES ('43', '角色管理', '角色管理', '40', '2016-09-08 10:00:45', '2016-10-14 17:55:00', '1', '20', 'NORMAL', '0', null, '无', 'paas.userCenter.role', null, 'menu', '3'); INSERT INTO `authority` VALUES ('44', '权限管理', '权限管理', '40', '2016-09-08 10:01:03', '2016-10-14 17:55:14', '1', '20', 'NORMAL', '0', null, '无', 'paas.userCenter.permission', null, 'menu', '4'); INSERT INTO `authority` VALUES ('69', '组织机构', '组织机构', '40', '2016-10-14 17:54:28', '2016-10-14 17:54:28', '20', null, 'NORMAL', '0', null, '组织机构', 'paas.userCenter.department', null, 'menu', '1'); INSERT INTO `authority` VALUES ('94', '个人中心', '个人中心', '0', '2016-10-27 17:09:28', '2017-06-16 10:42:00', '22', '1', 'NORMAL', '1', null, '个人中心', 'paas.personal', 'glyphicon glyphicon-dashboard icon', 'menu', '8'); INSERT INTO `authority` VALUES ('104', '个人信息', '个人信息', '94', '2016-11-15 12:01:58', '2017-06-16 10:41:56', '28', '1', 'NORMAL', '1', null, '个人信息', 'paas.personal.info', null, 'menu', '1'); INSERT INTO `authority` VALUES ('115', '系统日志', '系统日志', '40', '2016-11-29 10:38:44', '2016-12-13 10:09:06', '28', '30', 'NORMAL', '0', null, '系统日志', 'paas.userCenter.audit', null, 'menu', '5'); INSERT INTO `authority` VALUES ('122', '镜像仓库', '镜像仓库', '0', '2017-03-01 15:21:07', '2017-07-04 20:05:34', '45', '1', 'NORMAL', '0', null, '', 'paas.repository', 'fa fa-clone icon', 'menu', '4'); INSERT INTO `authority` VALUES ('123', '镜像管理', '镜像', '122', '2017-03-01 16:00:39', '2017-07-04 20:05:45', '45', '1', 'NORMAL', '0', null, '', 'paas.repository.image', null, 'menu', '2'); INSERT INTO `authority` VALUES ('124', '仓库管理', '仓库', '122', '2017-03-01 16:01:27', '2017-03-18 14:00:48', '45', '46', 'NORMAL', '0', null, null, 'paas.repository.repository', null, 'menu', '1'); INSERT INTO `authority` VALUES ('125', '应用服务', '应用服务', '0', '2017-03-08 10:06:57', '2017-03-08 10:06:57', '1', null, 'NORMAL', '0', null, null, 'paas.application', 'fa fa-server icon', 'menu', '5'); INSERT INTO `authority` VALUES ('126', '编排模板', '应用编排', '125', '2017-03-08 10:07:43', '2017-03-16 18:32:19', '1', '49', 'NORMAL', '0', null, null, 'paas.application.template', null, 'menu', '1'); INSERT INTO `authority` VALUES ('127', '应用实例', '应用实例管理', '125', '2017-03-08 10:08:19', '2017-03-08 10:08:19', '1', null, 'NORMAL', '0', null, null, 'paas.application.instance', null, 'menu', '2'); INSERT INTO `authority` VALUES ('137', '环境管理', '环境管理', '9', '2017-06-13 14:16:05', '2017-06-13 14:31:19', '1', '1', 'NORMAL', '0', null, 'app.assets.environment', 'paas.environment.environment', null, 'menu', '1'); INSERT INTO `authority` VALUES ('138', '容器管理', '容器管理', '9', '2017-06-13 14:23:51', '2017-07-05 09:34:12', '1', '6', 'NORMAL', '0', null, 'app.assets.kubernetes', 'paas.environment.container', null, 'menu', '4'); INSERT INTO `authority` VALUES ('139', '存储卷', '存储卷', '9', '2017-06-13 14:27:57', '2017-07-05 09:33:40', '1', '6', 'NORMAL', '0', null, 'app.assets.datastore', 'paas.environment.storage', null, 'menu', '5'); INSERT INTO `authority` VALUES ('140', '应用商店', '应用商店', '125', '2017-06-13 18:54:11', '2017-06-13 18:54:11', '1', null, 'NORMAL', '0', null, 'app.adhibition.module', 'paas.application.store', null, 'menu', '3'); INSERT INTO `authority` VALUES ('142', '系统运维', '系统运维', '0', '2017-06-16 10:35:42', '2017-06-16 11:01:18', '1', '1', 'NORMAL', '0', null, '', 'paas.system.operation', 'fa fa-desktop icon', 'menu', '7'); INSERT INTO `authority` VALUES ('143', '系统参数', '系统参数', '142', '2017-06-16 10:36:43', '2017-06-16 10:36:43', '1', null, 'NORMAL', '0', null, null, 'paas.system.param', null, 'menu', '1'); INSERT INTO `authority` VALUES ('144', '日志中心', '日志中心', '142', '2017-06-16 10:37:41', '2017-06-16 10:37:41', '1', null, 'NORMAL', '0', null, null, 'paas.system.log', null, 'menu', '2'); INSERT INTO `authority` VALUES ('145', '监测平台', '监测平台', '142', '2017-06-16 10:38:20', '2017-06-16 10:38:20', '1', null, 'NORMAL', '0', null, null, 'paas.system.monitor', null, 'menu', '3'); INSERT INTO `authority` VALUES ('146', '告警平台', '告警平台', '142', '2017-06-16 10:38:59', '2017-06-16 10:38:59', '1', null, 'NORMAL', '0', null, null, 'paas.system.warn', null, 'menu', '4'); INSERT INTO `authority` VALUES ('147', '资产目录', '资产目录', '0', '2017-06-16 10:48:35', '2017-06-16 11:01:28', '1', '1', 'NORMAL', '0', null, '', 'paas.assets.statement', 'glyphicon glyphicon-dashboard icon', 'menu', '9'); INSERT INTO `authority` VALUES ('148', '资产管理', '资产管理', '147', '2017-06-16 10:51:43', '2017-06-16 10:51:43', '1', null, 'NORMAL', '0', null, null, 'paas.assets.manager', null, 'menu', '1'); INSERT INTO `authority` VALUES ('149', '服务目录', '服务目录', '147', '2017-06-16 10:52:17', '2017-06-16 10:52:17', '1', null, 'NORMAL', '0', null, null, 'paas.service.statement', null, 'menu', '2'); INSERT INTO `authority` VALUES ('150', '流程管控', '流程管控', '0', '2017-06-16 11:03:04', '2017-06-16 11:03:04', '1', '1', 'NORMAL', '0', null, null, 'paas.process', 'fa fa-sort-amount-asc', 'menu', '6'); INSERT INTO `authority` VALUES ('151', '插件管理', '插件管理', '150', '2017-06-16 11:04:15', '2017-06-16 11:04:15', '1', null, 'NORMAL', '0', null, null, 'paas.process.plug-in', null, 'menu', '1'); INSERT INTO `authority` VALUES ('152', '流程编排', '流程编排', '150', '2017-06-16 11:05:12', '2017-06-16 11:05:12', '1', null, 'NORMAL', '0', null, null, 'paas.process.layout', null, 'menu', '2'); INSERT INTO `authority` VALUES ('153', '定时任务', '定时任务', '150', '2017-06-16 11:05:56', '2017-06-16 11:05:56', '1', null, 'NORMAL', '0', null, null, 'paas.process.task', null, 'menu', '3'); INSERT INTO `authority` VALUES ('154', '负载管理', '负载管理', '9', '2017-07-05 10:30:09', '2017-07-05 10:40:29', '1', '1', 'NORMAL', '0', null, '', 'paas.environment.loadbalance', null, 'menu', '3'); -- ---------------------------- -- Table structure for department -- ---------------------------- DROP TABLE IF EXISTS `department`; CREATE TABLE `department` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL, `status` varchar(16) DEFAULT NULL, `is_deleted` tinyint(1) DEFAULT NULL, `remark` varchar(256) DEFAULT NULL, `props` varchar(1024) DEFAULT NULL, `gmt_create` datetime DEFAULT NULL, `gmt_modify` datetime DEFAULT NULL, `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', `creater_id` bigint(20) DEFAULT NULL, `mender_id` bigint(20) DEFAULT NULL, `owner_id` bigint(20) DEFAULT NULL, `parent_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of department -- ---------------------------- INSERT INTO `department` VALUES ('1', 'default', 'NORMAL', '0', '默认', '默认', '2017-04-07 16:17:42', '2017-04-07 16:17:42', null, '1', null, null, '0'); INSERT INTO `department` VALUES ('2', '开发部门', 'NORMAL', '0', '开发', '开发', '2017-06-15 13:57:25', '2017-06-15 13:57:25', null, '1', null, null, '0'); INSERT INTO `department` VALUES ('3', '开发中心', 'NORMAL', '1', '开发中心', 'label=develop1', '2017-06-19 16:39:20', '2017-06-19 16:52:00', null, '2', '2', null, '0'); -- ---------------------------- -- Table structure for deploy_history -- ---------------------------- DROP TABLE IF EXISTS `deploy_history`; CREATE TABLE `deploy_history` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `app_id` bigint(20) NOT NULL COMMENT '应用ID', `resource_type` varchar(128) NOT NULL COMMENT '资源类型', `resource_name` varchar(128) NOT NULL COMMENT '资源名称', `current_version` varchar(128) NOT NULL COMMENT '当前版本(镜像名称)', `previous_version` varchar(128) DEFAULT NULL COMMENT '上一个版本(镜像名称)', `status` varchar(16) NOT NULL COMMENT '状态(0 部署失败,1 部署成功)', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除 (0 未删除, 1 删除)', `remark` varchar(256) DEFAULT NULL COMMENT '信息描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户ID', `name` varchar(128) NOT NULL COMMENT '部署历史名称', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of deploy_history -- ---------------------------- -- ---------------------------- -- Table structure for dictionary -- ---------------------------- DROP TABLE IF EXISTS `dictionary`; CREATE TABLE `dictionary` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `key` varchar(64) NOT NULL, `value` varchar(64) NOT NULL COMMENT '最新版本', `pvalue` varchar(32) DEFAULT NULL, `name` varchar(64) NOT NULL, `gmt_create` datetime DEFAULT NULL, `gmt_modify` datetime DEFAULT NULL, `creater_id` bigint(11) DEFAULT NULL, `owner_id` bigint(11) DEFAULT NULL, `mender_id` bigint(11) DEFAULT NULL, `status` varchar(1) DEFAULT NULL, `is_deleted` tinyint(1) NOT NULL, `props` varchar(1024) DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of dictionary -- ---------------------------- -- ---------------------------- -- Table structure for environment -- ---------------------------- DROP TABLE IF EXISTS `environment`; CREATE TABLE `environment` ( `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT '环境的id,主键', `name` varchar(255) NOT NULL COMMENT '环境名称', `status` varchar(1) NOT NULL DEFAULT '1' COMMENT '环境状态信息(1.不可用;2.激活状态;3.冻结状态;4异常状态)', `platform` int(1) NOT NULL COMMENT '环境平台(1.kubernetes;2.swarm)', `proxy` varchar(100) DEFAULT '' COMMENT '环境代理地址', `port` int(6) DEFAULT NULL COMMENT '环境代替访问端口', `remark` varchar(255) DEFAULT '' COMMENT '描述信息', `tenant_id` int(11) DEFAULT NULL COMMENT '租户id', `owner_id` bigint(11) NOT NULL COMMENT '所属者id', `mender_id` bigint(11) NOT NULL COMMENT '修改者id', `gmt_modify` datetime NOT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `creater_id` bigint(11) NOT NULL COMMENT '创建者id', `gmt_create` datetime NOT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间', `is_deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否被删除的标记(0代表未删除,1代表删除)', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of environment -- ---------------------------- -- ---------------------------- -- Table structure for host -- ---------------------------- DROP TABLE IF EXISTS `host`; CREATE TABLE `host` ( `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT '环境的id,主键', `ip` varchar(17) NOT NULL COMMENT '主机ip', `name` varchar(255) DEFAULT NULL COMMENT '主机名称', `status` varchar(1) DEFAULT '1' COMMENT '主机状态信息(1--正常;2--不正常;3--可调度;4--不可调度)', `remark` varchar(255) DEFAULT '' COMMENT '描述信息', `owner_id` bigint(11) DEFAULT NULL COMMENT '所属者id', `mender_id` bigint(11) DEFAULT NULL COMMENT '修改者id', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(11) NOT NULL COMMENT '创建者id', `gmt_create` datetime NOT NULL COMMENT '创建时间', `is_deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否被删除的标记(0代表未删除,1代表删除)', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `env_id` bigint(11) DEFAULT NULL COMMENT '环境id', `username` varchar(64) DEFAULT NULL COMMENT '主机用户名', `password` varchar(64) DEFAULT NULL COMMENT '主机密码', `labels` varchar(500) DEFAULT NULL COMMENT '节点标签', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of host -- ---------------------------- -- ---------------------------- -- Table structure for image -- ---------------------------- DROP TABLE IF EXISTS `image`; CREATE TABLE `image` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '镜像id', `uuid` varchar(128) NOT NULL COMMENT '镜像的uuid', `name` varchar(128) NOT NULL COMMENT '镜像名称', `tag` varchar(128) NOT NULL COMMENT '镜像版本号', `property` int(1) NOT NULL COMMENT '镜像属性(0 公有,1 私有)', `type` int(1) DEFAULT NULL, `status` varchar(16) DEFAULT NULL COMMENT '镜像状态信息(0 正常,1异常, 2 锁定)', `is_deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否被删除的标记(0代表未删除,1代表删除)', `usage_count` int(11) NOT NULL COMMENT '使用次数', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `env_id` bigint(20) DEFAULT NULL, `dept_id` bigint(20) DEFAULT NULL, `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) DEFAULT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of image -- ---------------------------- -- ---------------------------- -- Table structure for layout -- ---------------------------- DROP TABLE IF EXISTS `layout`; CREATE TABLE `layout` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `file_name` varchar(64) NOT NULL, `file_path` varchar(128) NOT NULL, `remark` varchar(200) DEFAULT NULL, `status` varchar(16) NOT NULL, `is_deleted` tinyint(1) DEFAULT NULL, `gmt_create` datetime DEFAULT NULL, `gmt_modify` datetime DEFAULT NULL, `creater_id` bigint(20) DEFAULT NULL, `mender_id` bigint(20) DEFAULT NULL, `owner_id` bigint(20) DEFAULT NULL, `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `type` varchar(16) NOT NULL DEFAULT 'KUBERNETES', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of layout -- ---------------------------- -- ---------------------------- -- Table structure for loadbalance -- ---------------------------- DROP TABLE IF EXISTS `loadbalance`; CREATE TABLE `loadbalance` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '负载ID', `name` varchar(64) NOT NULL COMMENT '负载名称', `type` int(11) NOT NULL DEFAULT '0' COMMENT '负载类型(0:NGINX,1:F5负载)', `manager_ip` varchar(20) NOT NULL COMMENT 'F5 VSIP', `port` int(11) DEFAULT NULL COMMENT '负载端口(多为F5端口,NGINX默认为80)', `env_id` bigint(20) NOT NULL COMMENT '负载所属环境的ID', `tenant_id` int(11) DEFAULT NULL, `status` varchar(16) DEFAULT NULL COMMENT '状态(0 正常,1 异常, 2 锁定)', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除(0 未删除, 1 删除)', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of loadbalance -- ---------------------------- -- ---------------------------- -- Table structure for openshift_cluster_security -- ---------------------------- DROP TABLE IF EXISTS `openshift_cluster_security`; CREATE TABLE `openshift_cluster_security` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键id', `openshift_cluster_id` bigint(20) DEFAULT NULL COMMENT '用户id', `salt` varchar(64) DEFAULT NULL COMMENT '随机数值', `api_key` varchar(64) DEFAULT NULL, `sec_key` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of openshift_cluster_security -- ---------------------------- -- ---------------------------- -- Table structure for repository -- ---------------------------- DROP TABLE IF EXISTS `repository`; CREATE TABLE `repository` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL COMMENT '仓库名称', `status` varchar(16) NOT NULL COMMENT '状态(0 正常,1 异常, 2 锁定)', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除(0 未删除, 1 删除)', `type` int(5) NOT NULL COMMENT '仓库类型(0.dockerregistry;1.harbor;2 dockerhub)', `address` varchar(128) NOT NULL COMMENT '仓库地址', `port` int(11) DEFAULT NULL COMMENT '仓库端口号', `username` varchar(32) DEFAULT NULL COMMENT '用户名', `password` varchar(32) DEFAULT NULL COMMENT '密码', `property` int(5) DEFAULT NULL COMMENT '属性: 0 共有 1 私有', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', `dept_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of repository -- ---------------------------- -- ---------------------------- -- Table structure for repository_image_info -- ---------------------------- DROP TABLE IF EXISTS `repository_image_info`; CREATE TABLE `repository_image_info` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `repository_id` bigint(11) NOT NULL COMMENT '仓库id', `namespace` varchar(100) DEFAULT NULL COMMENT '仓库命名空间', `image_id` bigint(11) NOT NULL COMMENT '软件id', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of repository_image_info -- ---------------------------- -- ---------------------------- -- Table structure for role -- ---------------------------- DROP TABLE IF EXISTS `role`; CREATE TABLE `role` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `name` varchar(64) NOT NULL COMMENT '角色名称', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', `creater_id` bigint(20) DEFAULT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `status` varchar(16) DEFAULT NULL COMMENT '状态', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除', `owner_id` bigint(20) DEFAULT NULL, `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of role -- ---------------------------- INSERT INTO `role` VALUES ('1', '超级管理员', '超级管理员', '2016-05-31 16:46:20', '2017-06-16 11:07:02', null, '1', '1', 'NORMAL', '0', null, '无'); -- ---------------------------- -- Table structure for role_authority -- ---------------------------- DROP TABLE IF EXISTS `role_authority`; CREATE TABLE `role_authority` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `role_id` bigint(20) DEFAULT NULL COMMENT '角色ID', `auth_id` bigint(20) DEFAULT NULL COMMENT '权限ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of role_authority -- ---------------------------- INSERT INTO `role_authority` VALUES ('1', '1', '8'); INSERT INTO `role_authority` VALUES ('2', '1', '9'); INSERT INTO `role_authority` VALUES ('3', '1', '122'); INSERT INTO `role_authority` VALUES ('4', '1', '125'); INSERT INTO `role_authority` VALUES ('5', '1', '150'); INSERT INTO `role_authority` VALUES ('6', '1', '151'); INSERT INTO `role_authority` VALUES ('7', '1', '152'); INSERT INTO `role_authority` VALUES ('8', '1', '153'); INSERT INTO `role_authority` VALUES ('9', '1', '142'); INSERT INTO `role_authority` VALUES ('10', '1', '40'); INSERT INTO `role_authority` VALUES ('11', '1', '147'); INSERT INTO `role_authority` VALUES ('12', '1', '13'); INSERT INTO `role_authority` VALUES ('13', '1', '137'); INSERT INTO `role_authority` VALUES ('14', '1', '138'); INSERT INTO `role_authority` VALUES ('15', '1', '139'); INSERT INTO `role_authority` VALUES ('16', '1', '123'); INSERT INTO `role_authority` VALUES ('17', '1', '124'); INSERT INTO `role_authority` VALUES ('18', '1', '126'); INSERT INTO `role_authority` VALUES ('19', '1', '127'); INSERT INTO `role_authority` VALUES ('20', '1', '140'); INSERT INTO `role_authority` VALUES ('21', '1', '143'); INSERT INTO `role_authority` VALUES ('22', '1', '144'); INSERT INTO `role_authority` VALUES ('23', '1', '145'); INSERT INTO `role_authority` VALUES ('24', '1', '146'); INSERT INTO `role_authority` VALUES ('25', '1', '42'); INSERT INTO `role_authority` VALUES ('26', '1', '43'); INSERT INTO `role_authority` VALUES ('27', '1', '44'); INSERT INTO `role_authority` VALUES ('28', '1', '69'); INSERT INTO `role_authority` VALUES ('29', '1', '115'); INSERT INTO `role_authority` VALUES ('30', '1', '148'); INSERT INTO `role_authority` VALUES ('31', '1', '149'); INSERT INTO `role_authority` VALUES ('32', '1', '154'); -- ---------------------------- -- Table structure for task -- ---------------------------- DROP TABLE IF EXISTS `task`; CREATE TABLE `task` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '流程编排id', `name` varchar(128) DEFAULT NULL COMMENT '流程编排名称', `status` varchar(16) DEFAULT NULL COMMENT '状态(0 正常,1 异常, 2 锁定)', `is_deleted` tinyint(1) DEFAULT NULL COMMENT '是否删除(0 未删除, 1 删除)', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) DEFAULT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of task -- ---------------------------- INSERT INTO `task` VALUES ('1', 'git_clone', null, '0', null, null, '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); INSERT INTO `task` VALUES ('2', 'code_scan', '', '0', '', '', '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); INSERT INTO `task` VALUES ('3', 'jenkins', '', '0', '', '', '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); INSERT INTO `task` VALUES ('4', 'build_image', '', '0', '', '', '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); INSERT INTO `task` VALUES ('5', 'image_scan', '', '0', '', '', '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); INSERT INTO `task` VALUES ('6', 'push_image', '', '0', '', '', '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); INSERT INTO `task` VALUES ('7', 'deploy', '', '0', '', '', '2017-06-22 15:32:40', '2017-06-22 15:32:40', null, null, null); -- ---------------------------- -- Table structure for tenant -- ---------------------------- DROP TABLE IF EXISTS `tenant`; CREATE TABLE `tenant` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `name` varchar(64) DEFAULT NULL COMMENT '真实姓名', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `status` varchar(16) DEFAULT NULL COMMENT '状态', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除', `owner_id` bigint(20) DEFAULT NULL, `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `company` varchar(64) DEFAULT NULL COMMENT '公司名称', `address` varchar(128) DEFAULT NULL COMMENT '公司地址', `contacter` varchar(16) DEFAULT NULL COMMENT '联系人', `contact_phone` varchar(16) DEFAULT NULL COMMENT '联系邮箱', `contact_email` varchar(64) DEFAULT NULL, `tenant_phone` varchar(16) DEFAULT NULL COMMENT '租户电话', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of tenant -- ---------------------------- -- ---------------------------- -- Table structure for tenant_authority -- ---------------------------- DROP TABLE IF EXISTS `tenant_authority`; CREATE TABLE `tenant_authority` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户ID', `auth_id` bigint(20) DEFAULT NULL COMMENT '权限ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of tenant_authority -- ---------------------------- -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `name` varchar(64) DEFAULT NULL COMMENT '真实姓名', `password` varchar(64) DEFAULT NULL COMMENT '密码', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `email` varchar(64) DEFAULT NULL COMMENT 'Email', `phone` varchar(16) DEFAULT NULL COMMENT '电话', `mobile` varchar(16) DEFAULT NULL COMMENT '移动电话', `gmt_create` datetime NOT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) NOT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `status` varchar(16) DEFAULT NULL COMMENT '状态', `is_deleted` tinyint(1) NOT NULL COMMENT '是否删除', `owner_id` bigint(20) DEFAULT NULL, `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `username` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `company` varchar(256) DEFAULT NULL, `session_id` varchar(36) DEFAULT NULL, `login_status` tinyint(1) DEFAULT NULL, `depart_id` bigint(20) DEFAULT NULL, `user_id` varchar(16) DEFAULT NULL COMMENT '工号', `sex` tinyint(1) DEFAULT NULL, `tenant_id` bigint(20) DEFAULT NULL, `is_tenant` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES ('1', '超级管理员', '-2cc3fe75eb672eeb60a6a80aa0565466506d9d1e', '超级管理员', 'xxx@beyondcent.com', '010-1313131', '18330033981', '2016-03-23 17:48:53', '2017-07-14 10:07:33', '1', '1', 'NORMAL', '0', null, null, 'admin', '', '510D2CE28E1186950E945665A9571843', '1', '1', '001', '1', '0', '0'); INSERT INTO `user` VALUES ('2', '宋松', '-13f40218479171e1bee04629fa9333ec20c5f45c', null, '12345678901@163.com', '010-1234563', '18712345678', '2017-06-15 13:58:30', '2017-07-10 10:25:49', '1', '1', 'NORMAL', '0', null, null, 'ss', 'boyun', '7A73719250852C484424358FC4C0A170', '1', '2', '100', '1', '0', '0'); INSERT INTO `user` VALUES ('3', '张琼', '-136e7519a800f6d0ce157f82f3e7ac85ec9f1d91', null, '12345678901@163.com', '010-1234567', '18712345678', '2017-06-15 13:59:48', '2017-07-10 10:27:44', '1', '1', 'NORMAL', '0', null, null, 'zaney', 'boyun', '5EB2D0EAAA0085EAFDB7C4E1D4081966', '1', '2', '101', '0', '0', '0'); INSERT INTO `user` VALUES ('4', 'ruffy', '-56261fa791cf0127d4a7871b702ad37f5392180f', 'test', '191827469@qq.com', '010-88888888', '15600561414', '2017-06-19 17:34:45', '2017-07-07 18:34:19', '2', '1', 'NORMAL', '0', null, null, 'ruffy', '中科院', '2A94CFCF95749A2A4BF46198CF6ABA45', '1', '1', '11111111', '0', '0', '0'); INSERT INTO `user` VALUES ('5', 'test', '1fc655aa667ad15cdb8485c1c7743dbcac30764c', null, '191827469@qq.com', '010-11111111', '15600561414', '2017-06-19 18:15:07', '2017-06-19 18:54:23', '6', '6', 'ABNORMAL', '1', null, null, 'test', '中科院', null, '0', '1', '333333', '1', null, '0'); INSERT INTO `user` VALUES ('6', 'luogan', '-35c2318f450996283c7be9e26277f7013f123223', null, '123@qq.com', '010-9999999', '13080874355', '2017-07-03 14:14:28', '2017-07-03 18:23:44', '1', '1', 'NORMAL', '0', null, null, 'luogan', 'vx', '052DC1C6F8A7451D999464A6EA74E3C8', '1', '2', '048', '1', null, '0'); -- ---------------------------- -- Table structure for user_role -- ---------------------------- DROP TABLE IF EXISTS `user_role`; CREATE TABLE `user_role` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID', `role_id` bigint(20) DEFAULT NULL COMMENT '角色ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user_role -- ---------------------------- INSERT INTO `user_role` VALUES ('1', '1', '1'); INSERT INTO `user_role` VALUES ('2', '2', '1'); INSERT INTO `user_role` VALUES ('3', '3', '1'); INSERT INTO `user_role` VALUES ('4', '4', '1'); INSERT INTO `user_role` VALUES ('5', '5', '1'); INSERT INTO `user_role` VALUES ('6', '6', '1'); -- ---------------------------- -- Table structure for user_security -- ---------------------------- DROP TABLE IF EXISTS `user_security`; CREATE TABLE `user_security` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键id', `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', `salt` varchar(64) DEFAULT NULL COMMENT '随机数值', `api_key` varchar(64) DEFAULT NULL, `sec_key` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user_security -- ---------------------------- INSERT INTO `user_security` VALUES ('1', '1', null, '5560a540-3e29-48c4-b36e-8d85aa8578cb', '1214546782', '1243538932'); INSERT INTO `user_security` VALUES ('2', '2', null, 'b001dd58-2aaf-4c50-828c-287ccb83650b', '-47fd8a0b4ba90b6c3248cc0dac9fa3350560a333', '-d0e02f513b574b6c0fd25f6c619a33232d957d'); INSERT INTO `user_security` VALUES ('3', '3', null, '26989784-e7f1-4972-aaeb-faa4c03da64f', '-57472c8c51ec191a45fb381eaa61421b6c5c3757', '67a3d5efad1ff3b20ca5c3360ba3928567a48cf6'); INSERT INTO `user_security` VALUES ('4', '4', null, '42875a11-9dad-4ae8-9c3b-a01ad211b070', '-5642a819309d8ca935117f0f639bd24e47909ba', '-62b689509342376f96d28eb46fbf956abe552f63'); INSERT INTO `user_security` VALUES ('5', '5', null, '0e3fc80f-d93f-412c-9e8c-3fd3470929b7', '77479a9ce6b4e8b3b5662d3f6b4b046a44a019cd', '5712f60370248fa4db89b92332a237c37dae8cd5'); INSERT INTO `user_security` VALUES ('6', '6', null, '4c354796-f1e7-4fc5-ad31-222b5693669f', '1f9b94ed65317e9eccf471ff990531bdb059c485', '-618cf830c8620449c11a7595d5ed83d7243135bb'); -- ---------------------------- -- Table structure for volume -- ---------------------------- DROP TABLE IF EXISTS `volume`; CREATE TABLE `volume` ( `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'pv主键', `name` varchar(255) NOT NULL COMMENT 'pv名称', `status` varchar(20) DEFAULT NULL COMMENT 'pv四种状态:Available、Bound、Released、Failed', `remark` varchar(255) DEFAULT '' COMMENT '描述信息', `owner_id` bigint(11) DEFAULT NULL COMMENT '所属者id', `mender_id` bigint(11) DEFAULT NULL COMMENT '修改者id', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(11) NOT NULL COMMENT '创建者id', `gmt_create` datetime NOT NULL COMMENT '创建时间', `is_deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否被删除的标记(0代表未删除,1代表删除)', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `env_id` bigint(11) DEFAULT NULL COMMENT '环境id', `labels` varchar(500) DEFAULT NULL COMMENT '节点标签', `policy` varchar(10) NOT NULL COMMENT 'pv回收策略:Retain、Recycle、Delete', `access` varchar(20) NOT NULL COMMENT 'accessModes:ReadWriteOnce、ReadOnlyMany、ReadWriteMany', `capacity` varchar(20) NOT NULL COMMENT 'pv容量', `type` varchar(30) NOT NULL COMMENT 'pv类型', `annotations` varchar(1024) DEFAULT NULL COMMENT '存储卷注解', `ip` varchar(20) DEFAULT NULL COMMENT 'nfs存储服务所在机器ip', `path` varchar(100) DEFAULT NULL COMMENT '存储卷存储路径', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of volume -- ---------------------------- -- ---------------------------- -- Table structure for workflow -- ---------------------------- DROP TABLE IF EXISTS `workflow`; CREATE TABLE `workflow` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '流程编排id', `name` varchar(128) DEFAULT NULL COMMENT '流程编排名称', `status` varchar(16) DEFAULT NULL COMMENT '状态(0 正常,1 异常, 2 锁定)', `is_deleted` tinyint(1) DEFAULT NULL COMMENT '是否删除(0 未删除, 1 删除)', `remark` varchar(256) DEFAULT NULL COMMENT '描述', `props` varchar(1024) DEFAULT NULL COMMENT '其他属性', `gmt_create` datetime DEFAULT NULL COMMENT '创建时间', `gmt_modify` datetime DEFAULT NULL COMMENT '修改时间', `creater_id` bigint(20) DEFAULT NULL COMMENT '创建者ID', `mender_id` bigint(20) DEFAULT NULL COMMENT '修改者ID', `owner_id` bigint(20) DEFAULT NULL COMMENT '所有者ID', `version` int(10) NOT NULL, `workflow_json` varchar(8192) NOT NULL, `workflow_ids` varchar(2048) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of workflow -- ---------------------------- -- ---------------------------- -- View structure for view_repository_software -- ---------------------------- DROP VIEW IF EXISTS `view_repository_software`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`%` SQL SECURITY DEFINER VIEW `view_repository_software` AS select `image`.`dept_id` AS `tenant_id` from `image` ; SET FOREIGN_KEY_CHECKS=1;
-- Start mysql mysql -u root -- Select database USE employees --Insert at least 15 new employees INSERT INTO employees VALUES (1, "1989-12-23", "Raul", "Catedra", "M", "2005-08-15"), (2, "1994-01-25", "Veronica", "Velazquez", "F", "2008-10-15"), (3, "1990-10-29", "Irati", "Arrieta", "F", "2007-08-23"), (4, "1993-12-29", "Jose", "Serralvo", "M", "2006-05-18"), (5, "1995-05-25", "Mike", "Garcia", "M", "2009-03-30"), (6, "1990-07-12", "Veronica", "Garcia", "F", "2008-01-22"), (7, "1980-07-22", "Raul", "Martinez", "M", "2004-05-16"), (8, "1986-04-15", "Raul", "Garcia", "M", "2006-07-12"), (9, "1991-03-04", "Vanesa", "Martos", "F", "2008-09-19"), (10, "1992-10-17", "Manolo", "Manola", "M", "2019-04-07"), (11, "1993-06-24", "Juana", "Joya", "F", "2015-09-22"), (12, "1973-12-06", "Patrocinio", "Patruyero", "M", "2020-12-16"), (13, "1996-08-17", "Manuela", "Catuta", "F", "2012-05-16"), (14, "1996-02-29", "Juanito", "Pitoche", "M", "2010-11-22"), (15, "1731-01-01", "Julia", "Pistacho", "F", "2016-05-31"); --With salaries that are between a range of 5,000 and 50,000 of different gender 5 employees must have at least two salaries in different ranges of dates and different amounts, At least 3 employees have the same name INSERT INTO salaries VALUES (1, "15000", "2005-08-15", "2010-08-15"), (1, "45000", "20010-08-15", now()), (2, "15000", "2008-10-15", "2013-10-15"), (2, "45000", "20013-10-15", now()), (3, "15000", "2007-08-23", "2012-08-23"), (3, "45000", "2012-08-23", now()), (4, "15000", "2006-05-18", "2011-05-18"), (4, "45000", "2011-05-18", now()), (5, "15000", "2009-03-30", "2014-03-30"), (5, "45000", "2014-03-30", now()), (6, "16000", "2008-01-22", now()), (7, "17000", "2004-05-16", now()), (8, "18000", "2006-07-12", now()), (9, "19000", "2008-09-19", now()), (10, "20000", "2019-04-07", now()), (11, "21000", "2015-09-22", now()), (12, "22000", "2020-12-16", now()), (13, "23000", "2012-05-16", now()), (14, "24000", "2010-11-22", now()), (15, "25000", "2016-05-31", now()); INSERT INTO departments VALUES ("BY", "Adquisisions"), ("SLS", "Sales"), ("MNG", "Management"), ("CNS", "Constrution"), ("DST", "Destruccion"); --10 employees belong to more than one department INSERT INTO dept_emp VALUES (1, "BY", "2005-08-15", "2010-08-15"), (1, "DST", "2010-08-15", now()), (2, "SLS", "2008-10-15", "2013-10-15"), (2, "DST", "2013-10-15", now()), (3, "MNG", "2007-08-23", "2012-08-23"), (3, "DST", "2012-08-23", now()), (4, "CNS", "2006-05-18", "2011-05-18"), (4, "DST", "2011-05-18", now()), (5, "BY", "2009-03-30", "2014-03-30"), (5, "DST", "2014-03-30", now()), (6, "DST", "2008-01-22", "2015-01-22"), (6, "SLS", "2015-01-22", now()), (7, "DST", "2004-05-16", "2009-05-16"), (7, "BY", "2009-05-16", now()), (8, "DST", "2006-07-12", "2011-07-12"), (8, "MNG", "2006-07-12", now()), (9, "DST", "2008-09-19", "2015-09-19"), (9, "CNS", "2015-09-19", now()), (10, "DST", "2019-04-07", now()), (11, "DST", "2015-09-22", "2020-09-22"), (11, "BY", "2020-09-22", now()), (12, "SLS", "2020-12-16", now()), (13, "CNS", "2012-05-16", now()), (14, "MNG", "2010-11-22", now()), (15, "DST", "2016-05-31", now()); --5 employees are managers INSERT INTO dept_manager VALUES (1, "DST", "2010-08-15", now()), (2, "BY", "2008-10-15", now()), (3, "SLS", "2007-08-23", now()), (4, "MNG", "2006-05-18", now()), (5, "CNS", "2009-03-30", now()); --All employees have a degree and at least 5 titles are from 2020 INSERT INTO titles VALUES (1, "It degree", "2020-01-01", "2021-01-01"), (2, "It degree", "2020-01-01", "2021-01-01"), (3, "It degree", "2020-01-01", "2021-01-01"), (4, "It degree", "2020-01-01", "2021-01-01"), (5, "It degree", "2020-01-01", "2021-01-01"), (6, "It degree", "2018-01-01", "2019-01-01"), (7, "It degree", "2017-01-01", "2018-01-01"), (8, "It degree", "2016-01-01", "2017-01-01"), (9, "It degree", "2015-01-01", "2016-01-01"), (10, "It degree", "2014-01-01", "2015-01-01"), (11, "It degree", "2013-01-01", "2014-01-01"), (12, "It degree", "2012-01-01", "2013-01-01"), (13, "It degree", "2011-01-01", "2012-01-01"), (14, "It degree", "2010-01-01", "2011-01-01"), (15, "It degree", "2009-01-01", "2010-01-01"); --Change the name of an employee. To do this, generate a query that affects only a certain employee based on their name, surname and date of birth. UPDATE employees SET first_name = "Picunero" WHERE first_name = "Juanito" AND last_name = "Pitoche" AND birth_date = "1996-02-29"; --Change the name of all departments. UPDATE departments SET dept_name = "Mierdamento1" WHERE dept_no = "BY"; UPDATE departments SET dept_name = "Mierdamento2" WHERE dept_no = "CNS"; UPDATE departments SET dept_name = "Mierdamento3" WHERE dept_no = "DST"; UPDATE departments SET dept_name = "Mierdamento4" WHERE dept_no = "MNG"; UPDATE departments SET dept_name = "Mierdamento5" WHERE dept_no = "SLS"; --Select all employees with a salary greater than 20,000 SELECT employees.first_name, salaries.salary FROM salaries INNER JOIN employees ON employees.emp_no = salaries.emp_no WHERE salaries.salary > 20000; --Select all employees with a salary below 10,000 SELECT employees.first_name, salaries.salary FROM salaries INNER JOIN employees ON employees.emp_no = salaries.emp_no WHERE salaries.salary < 10000; --Select all employees who have a salary between 14.00 and 50,000 SELECT CONCAT(employees.first_name, ' ', employees.last_name) AS 'Name', salaries.* FROM salaries INNER JOIN employees ON employees.emp_no=salaries.emp_no WHERE salaries.salary BETWEEN 14000 AND 50000; --Select the total number of employees SELECT COUNT(first_name) FROM employees; --Select the total number of employees who have worked in more than one department SELECT COUNT(*) FROM (SELECT COUNT(emp_no) FROM dept_emp GROUP BY emp_no HAVING COUNT(*)>1) dept_emp; --Select the titles of the year 2019 SELECT title FROM titles WHERE YEAR(to_date) = 2019; --Select only the name of the employees in capital letters SELECT UPPER(first_name) FROM employees; --Select the name, surname and name of the current department of each employee SELECT employees.first_name, employees.last_name, current_dept_emp.dept_no, departments.dept_name FROM employees LEFT JOIN current_dept_emp ON employees.emp_no = current_dept_emp.emp_no LEFT JOIN departments ON current_dept_emp.dept_no = departments.dept_no; --Select the name, surname and number of times the employee has worked as a manager SELECT employees.first_name, employees.last_name, COUNT(dept_manager.emp_no) FROM employees LEFT JOIN dept_manager ON employees.emp_no = dept_manager.emp_no GROUP BY employees.emp_no ORDER BY dept_manager.emp_no DESC; --Select the name of employees without any being repeated SELECT employees.first_name FROM employees GROUP BY employees.first_name HAVING COUNT(employees.first_name)<2; --Eliminate all employees with a salary greater than 20,000 DELETE employees.* FROM employees INNER JOIN salaries ON employees.emp_no = salaries.emp_no WHERE salaries.salary > 20000; --Remove the department that has more employees DELETE departments.* FROM departments INNER JOIN (SELECT MAX(counter), dept_no FROM (SELECT COUNT(*) counter, dept_no FROM current_dept_emp GROUP BY dept_no) current_dep_emp) max_dept ON departments.dept_no = max_dept.dept_no;
-- Mar 8, 2010 8:44:44 PM COT -- FR2962094_Finish implementation of weighted average costing INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,Description,EntityType,Help,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,54132,0,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:44:43','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Average Cost Variance','Average Cost Variance',TO_DATE('2010-03-08 20:44:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- Mar 8, 2010 8:44:44 PM COT INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=54132 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) ; -- Mar 8, 2010 8:46:06 PM COT INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59071,54132,0,25,315,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:46:05','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_DATE('2010-03-08 20:46:05','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- Mar 8, 2010 8:46:06 PM COT INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59071 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- Mar 8, 2010 8:46:19 PM COT ALTER TABLE C_AcctSchema_Default ADD P_AverageCostVariance_Acct NUMBER(10) DEFAULT NULL ; -- Mar 8, 2010 8:46:45 PM COT INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59072,54132,0,25,401,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:46:45','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_DATE('2010-03-08 20:46:45','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- Mar 8, 2010 8:46:45 PM COT INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59072 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- Mar 8, 2010 8:46:50 PM COT ALTER TABLE M_Product_Category_Acct ADD P_AverageCostVariance_Acct NUMBER(10) DEFAULT NULL ; -- Mar 8, 2010 8:47:12 PM COT INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,Description,EntityType,FieldLength,Help,IsActive,IsAllowLogging,IsAlwaysUpdateable,IsAutocomplete,IsEncrypted,IsIdentifier,IsKey,IsMandatory,IsParent,IsSelectionColumn,IsSyncDatabase,IsTranslated,IsUpdateable,Name,Updated,UpdatedBy,Version) VALUES (0,59073,54132,0,25,273,'P_AverageCostVariance_Acct',TO_DATE('2010-03-08 20:47:11','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance','D',10,'The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','N','N','N','N','N','N','N','N','N','N','Y','Average Cost Variance',TO_DATE('2010-03-08 20:47:11','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- Mar 8, 2010 8:47:12 PM COT INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Column_ID=59073 AND NOT EXISTS (SELECT * FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- Mar 8, 2010 8:47:17 PM COT ALTER TABLE M_Product_Acct ADD P_AverageCostVariance_Acct NUMBER(10) DEFAULT NULL ; -- Mar 8, 2010 8:49:30 PM COT INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_FieldGroup_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59071,106,58783,0,252,TO_DATE('2010-03-08 20:49:29','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',770,0,TO_DATE('2010-03-08 20:49:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Mar 8, 2010 8:49:30 PM COT INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58783 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=58783 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=4861 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=4862 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=2663 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=320,IsDisplayed='Y' WHERE AD_Field_ID=4863 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=330,IsDisplayed='Y' WHERE AD_Field_ID=2662 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=340,IsDisplayed='Y' WHERE AD_Field_ID=3824 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=350,IsDisplayed='Y' WHERE AD_Field_ID=2654 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=360,IsDisplayed='Y' WHERE AD_Field_ID=3835 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=370,IsDisplayed='Y' WHERE AD_Field_ID=56529 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=380,IsDisplayed='Y' WHERE AD_Field_ID=56522 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=390,IsDisplayed='Y' WHERE AD_Field_ID=56524 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=400,IsDisplayed='Y' WHERE AD_Field_ID=56528 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=410,IsDisplayed='Y' WHERE AD_Field_ID=56527 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=420,IsDisplayed='Y' WHERE AD_Field_ID=56525 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=430,IsDisplayed='Y' WHERE AD_Field_ID=56523 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=440,IsDisplayed='Y' WHERE AD_Field_ID=56520 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=450,IsDisplayed='Y' WHERE AD_Field_ID=56521 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=460,IsDisplayed='Y' WHERE AD_Field_ID=56526 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=470,IsDisplayed='Y' WHERE AD_Field_ID=56550 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=480,IsDisplayed='Y' WHERE AD_Field_ID=56551 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=490,IsDisplayed='Y' WHERE AD_Field_ID=3842 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=500,IsDisplayed='Y' WHERE AD_Field_ID=3841 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=510,IsDisplayed='Y' WHERE AD_Field_ID=3846 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=520,IsDisplayed='Y' WHERE AD_Field_ID=5133 ; -- Mar 8, 2010 8:50:01 PM COT UPDATE AD_Field SET SeqNo=530,IsDisplayed='Y' WHERE AD_Field_ID=5132 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=540,IsDisplayed='Y' WHERE AD_Field_ID=3843 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=550,IsDisplayed='Y' WHERE AD_Field_ID=3845 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=560,IsDisplayed='Y' WHERE AD_Field_ID=3844 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=570,IsDisplayed='Y' WHERE AD_Field_ID=3849 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=580,IsDisplayed='Y' WHERE AD_Field_ID=3850 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=590,IsDisplayed='Y' WHERE AD_Field_ID=5138 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=600,IsDisplayed='Y' WHERE AD_Field_ID=3847 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=610,IsDisplayed='Y' WHERE AD_Field_ID=3839 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=620,IsDisplayed='Y' WHERE AD_Field_ID=3837 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=630,IsDisplayed='Y' WHERE AD_Field_ID=3840 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=640,IsDisplayed='Y' WHERE AD_Field_ID=3838 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=650,IsDisplayed='Y' WHERE AD_Field_ID=3836 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=660,IsDisplayed='Y' WHERE AD_Field_ID=3851 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=670,IsDisplayed='Y' WHERE AD_Field_ID=3852 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=680,IsDisplayed='Y' WHERE AD_Field_ID=3830 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=690,IsDisplayed='Y' WHERE AD_Field_ID=3831 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=700,IsDisplayed='Y' WHERE AD_Field_ID=3832 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=710,IsDisplayed='Y' WHERE AD_Field_ID=3833 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=720,IsDisplayed='Y' WHERE AD_Field_ID=4092 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=730,IsDisplayed='Y' WHERE AD_Field_ID=4093 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=740,IsDisplayed='Y' WHERE AD_Field_ID=5134 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=750,IsDisplayed='Y' WHERE AD_Field_ID=4094 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=760,IsDisplayed='Y' WHERE AD_Field_ID=4095 ; -- Mar 8, 2010 8:50:02 PM COT UPDATE AD_Field SET SeqNo=770,IsDisplayed='Y' WHERE AD_Field_ID=3823 ; -- Mar 8, 2010 8:50:56 PM COT INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59072,58784,0,324,TO_DATE('2010-03-08 20:50:55','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',310,0,TO_DATE('2010-03-08 20:50:55','YYYY-MM-DD HH24:MI:SS'),100) ; -- Mar 8, 2010 8:50:56 PM COT INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58784 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=58784 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=4872 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=4873 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=3944 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=56539 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=56532 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=56534 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=56538 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=56537 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=56535 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=56533 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=56530 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=56531 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=56536 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=290,IsDisplayed='Y' WHERE AD_Field_ID=56552 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=300,IsDisplayed='Y' WHERE AD_Field_ID=56553 ; -- Mar 8, 2010 8:51:06 PM COT UPDATE AD_Field SET SeqNo=310,IsDisplayed='Y' WHERE AD_Field_ID=3945 ; -- Mar 8, 2010 8:51:50 PM COT INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,59073,58785,0,210,TO_DATE('2010-03-08 20:51:49','YYYY-MM-DD HH24:MI:SS'),100,'Average Cost Variance',26,'D','The Average Cost Variance is used in weighted average costing to reflect differences when posting costs for negative inventory.','Y','Y','Y','N','N','N','N','N','Average Cost Variance',280,0,TO_DATE('2010-03-08 20:51:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Mar 8, 2010 8:51:50 PM COT INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58785 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=130,IsDisplayed='Y' WHERE AD_Field_ID=58785 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=140,IsDisplayed='Y' WHERE AD_Field_ID=4868 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=150,IsDisplayed='Y' WHERE AD_Field_ID=4869 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=160,IsDisplayed='Y' WHERE AD_Field_ID=2608 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=170,IsDisplayed='Y' WHERE AD_Field_ID=56549 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=180,IsDisplayed='Y' WHERE AD_Field_ID=56542 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=190,IsDisplayed='Y' WHERE AD_Field_ID=56544 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=200,IsDisplayed='Y' WHERE AD_Field_ID=56548 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=210,IsDisplayed='Y' WHERE AD_Field_ID=56547 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=220,IsDisplayed='Y' WHERE AD_Field_ID=56545 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=230,IsDisplayed='Y' WHERE AD_Field_ID=56543 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=240,IsDisplayed='Y' WHERE AD_Field_ID=56540 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=250,IsDisplayed='Y' WHERE AD_Field_ID=56541 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=260,IsDisplayed='Y' WHERE AD_Field_ID=56546 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=270,IsDisplayed='Y' WHERE AD_Field_ID=56554 ; -- Mar 8, 2010 8:51:59 PM COT UPDATE AD_Field SET SeqNo=280,IsDisplayed='Y' WHERE AD_Field_ID=56555 ; -- Mar 8, 2010 9:03:21 PM COT UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-03-08 21:03:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58783 ; -- Mar 8, 2010 9:03:44 PM COT UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-03-08 21:03:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58784 ; -- Mar 8, 2010 9:04:06 PM COT UPDATE AD_Field SET IsMandatory='Y',Updated=TO_DATE('2010-03-08 21:04:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=58785 ;
CREATE TABLE IF NOT EXISTS users( USER_ID INTEGER PRIMARY KEY, LOGIN VARCHAR(32) NOT NULL, PASSWORD VARCHAR(32) NOT NULL, KEY VARCHAR(32) NOT NULL, TIME INTEGER NOT NULL ); CREATE TABLE IF NOT EXISTS chats( CHAT_ID INTEGER PRIMARY KEY, USER1 INTEGER NOT NULL, USER2 INTEGER NOT NULL ); CREATE TABLE IF NOT EXISTS messages( MESSAGE_ID INTEGER PRIMARY KEY, USER_ID INTEGER NOT NULL, MESSAGE TEXT NOT NULL, TIME INTEGER NOT NULL, CHAT_ID INTEGER NOT NULL );
---------------知识库------------------ create table knowledgedb( knowledgeid varchar(100) not null primary key, resolvent varchar(3000) not null, auther varchar(100) not null, createtime timestamp not null, allotgroup varchar(100), eventname varchar(100) ); ----------------事件重定义-------------- create table eventRedefine( redefineid varchar(32) primary key not null, state varchar(20) not null, applyPerson varchar(20) not null, redeflevel varchar(20), componentType varchar(100), component varchar(100) , subComponent varchar(100), eventName varchar(100) not null, eventNamecn varchar(512), eventType varchar(100), examinePerson varchar(20), applyPersonRemark varchar(512), examinePerRemark varchar(512), startTime timestamp, examineTime timestamp, downTime timestamp, deleteTime timestamp, examineState varchar(10), examineRemark varchar(100), todoperson varchar(20), todopersonremark varchar(512) ); update sec_group set name='CMB/招商银行' where level=-1; insert into sec_resource values('78K1JRSDB3OGUFEUSSS3XAT1S4BYUMNI','EVENT_CATEGORY','DP5O3648HGMM53Y5LEXWDUT59GPDILD7','事件类别',95,0,'000000KJHIGC'); 会计流程ID: pageid=BIZ_KJLC_PAGEID PageID=com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.LGbyU3ogtLpxrNElVOQ0q551340880699950 serviceTreeId=BIZ_KJLC_SERVERTREEID PageID=com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.LGbyU3ogtLpxrNElVOQ0q551340881219612 信用卡ID: pageid=BIZ_CC_PAGEID PageID=com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.LGbyU3ogtLpxrNElVOQ0q551340879015314 serviceTreeId=BIZ_CC_SERVERTREEID PageID=com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.LGbyU3ogtLpxrNElVOQ0q551340880398500 if(bizName.equals("CreditCard")){ topoPageID = "com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.0EZEOM2pMwWpyNdG9NkM7vv1336549531244"; servicePageID = "com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.0EZEOM2pMwWpyNdG9NkM7vv1336549609052"; }else if(bizName.equals("Accounting")){//会计流程 topoPageID = "com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.0EZEOM2pMwWpyNdG9NkM7vv1336549707036"; servicePageID = "com.ibm.isclite.admin.PortletPicker.navigationElement.pagelayoutA.modified.0EZEOM2pMwWpyNdG9NkM7vv1336549801984"; } //2012-07-04 alter table cmb_maintain_period add column approvestatus varchar(50); 添加公共资源: insert into sec_resource(id, rs_type,catalog,name,priority,level,hier_code) values('00000000000000000000000000000000','COMMON','DP5O3648HGMM53Y5LEXWDUT59GPDILD7','公共资源',10,0,000000YUDHJY) 添加操作: 操作名:维护期_审批操作 识别符:MAINTAIN_APPROVE 添加角色: 角色名:维护期管理员角色 分配权限: 分配单元名: 本组维护期审批 操作: 维护期_审批操作 资源: 公共资源 /*0713========================================================== /*==============================================================*/ create table SEC_PERMISSION_ASM_RLS ( ROLE_ID varchar(32) not null, ASM_ID varchar(32) not null, RLS_TYPE varchar(32) not null, RLS_LEVEL varchar(32) not null ); insert into sec_permission_asm_rls(role_id, asm_id, rls_type, rls_level) select distinct role_id, asm_id ,'owner' RLS_TYPE,'au' RLS_LEVEL from sec_permission_asm
CREATE Procedure sp_CheckForMapping_ITC(@SalesmanID as int, @BeatID as int, @CustID as nvarchar(30)) As Select Count(*) From Beat_Salesman Where SalesmanID = @SalesmanID And BeatID = @BeatID And CustomerID = @CustID
create table commentaire ( id int auto_increment primary key, client_id int not null, produit_id int not null, contenu longtext not null, note smallint not null, constraint FK_67F068BC19EB6921 foreign key (client_id) references user (id), constraint FK_67F068BCF347EFB foreign key (produit_id) references produit (id) ) engine = InnoDB collate = utf8mb4_unicode_ci; create index IDX_67F068BC19EB6921 on commentaire (client_id); create index IDX_67F068BCF347EFB on commentaire (produit_id);
-- -- Table structure for table `data_fishdata` -- DROP TABLE IF EXISTS `data_fishdata`; CREATE TABLE IF NOT EXISTS `data_fishdata` ( `Id` text, `cci` text, `description` text, `project_no` text, `iso_country` varchar(4) default NULL, `country_name` text, `nuts` text, `geo1` text, `geo2` text, `municipality_x_cord` text, `municipality_y_cord` text, `scheme1_id` text, `scheme2_id` smallint(11) default NULL, `scheme_name` varchar(255) default NULL, `scheme_traffic_light` text, `status` text, `status_code_status` text, `approval_date` text, `year` smallint(6) default NULL, `total_cost` float default NULL, `member_state` text, `fifg` text, `total_subsidy` float default NULL, `vessel_name` varchar(255) default NULL, `cfr` varchar(25) default NULL, `cfr_link` text, `external_marking` text, `overall_length` text, `main_power` text, `tonnage` text, `port_name` varchar(255) default NULL, `port_country` text, `source` text, `period` text, `port_lng` text, `port_lat` text, `recipient_id` text, `tuna_fleet` text, `construction_year` text, `construction_place` text, `recipient_name` text, `greenpeace_link` text, `lenght_code` text, KEY `total_cost` (`total_cost`), KEY `total_subsidy` (`total_subsidy`), KEY `vessel_name` (`vessel_name`), KEY `iso_country` (`iso_country`), KEY `cfr` (`cfr`), KEY `scheme2_id` (`scheme2_id`), KEY `port_name` (`port_name`), KEY `scheme_name` (`scheme_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
create procedure sp_acc_checkuserexists(@username nvarchar(50)) as select UserName from Users where UserName = @username
create table employee ( id numeric (3,0), workername varchar, jobtitle varchar ); insert into employee (id, workername, jobtitle) VALUES (123, 'jamie', 'boss'); insert into employee VALUES (432, 'Mordo', 'evil henchman'); insert into employee VALUES (666, 'benedict', 'super-visor'); insert into employee VALUES (1, 'zippy', 'founder'); insert into employee VALUES (2, 'guppy', 'local fish'); select * from employee; create table mage ( id numeric (3,0), type varchar, powerLevel numeric (5,0), schoolOfMind varchar ); insert into mage (id, type, powerLevel, schoolOfMind) VALUES (123, 'fire', 99999, 'neutral-good'); insert into mage VALUES (432, 'dark', 67676, 'chaotic-evil'); insert into mage VALUES (666, 'sub-dark', 9001, 'neutral-evil'); insert into mage (id) VALUES (1); insert into mage (id) VALUES (2); select * from mage; create table muggle ( id numeric (3,0), mindSet varchar, discernibility numeric (4,2) ); insert into muggle (id) VALUES (123); insert into muggle VALUES (432); insert into muggle VALUES (666); insert into muggle (id, mindSet) VALUES (1, 'neurotic'); insert into muggle (id, discernibility) VALUES (2, .01); select * from muggle; # Update the table mage with a new row called belief with type varchar alter table mage add belief varchar; # Update belief on tuple with id 666 on table mage with the value 'dogmatic' update mage set belief = 'dogmatic' where id = 666; # Delete the row with id 2 on the table muggle delete from muggle where id = 2; # Delete the row with id 3 on the table muggle delete from muggle where id = 3; # Delete the table muggle drop table muggle;
-- phpMyAdmin SQL Dump -- version 4.1.14 -- http://www.phpmyadmin.net -- -- Client : 127.0.0.1 -- Généré le : Mer 04 Novembre 2015 à 17:43 -- Version du serveur : 5.6.17 -- Version de PHP : 5.5.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Base de données : `myoncav` -- -- -------------------------------------------------------- -- -- Structure de la table `joueur` -- CREATE TABLE IF NOT EXISTS `joueur` ( `id` int(11) NOT NULL AUTO_INCREMENT, `numero` int(11) NOT NULL, `equipe` varchar(45) NOT NULL, `orcav` varchar(20) NOT NULL, `odcav` varchar(20) NOT NULL, `zone` int(11) NOT NULL, `localite` varchar(20) NOT NULL, `prenom` varchar(30) NOT NULL, `nom` varchar(20) NOT NULL, `pere` varchar(30) NOT NULL, `mere` varchar(30) NOT NULL, `dnaissance` date NOT NULL, `lnaissance` varchar(50) NOT NULL, `profession` varchar(30) NOT NULL, `ecole` varchar(30) NOT NULL, `cni` bigint(20) NOT NULL, `delivree` date NOT NULL, `adresse` varchar(50) NOT NULL, `etagere` int(11) NOT NULL, `date` date NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `cni` (`cni`), UNIQUE KEY `cni_2` (`cni`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=303 ; -- -- Contenu de la table `joueur` -- INSERT INTO `joueur` (`id`, `numero`, `equipe`, `orcav`, `odcav`, `zone`, `localite`, `prenom`, `nom`, `pere`, `mere`, `dnaissance`, `lnaissance`, `profession`, `ecole`, `cni`, `delivree`, `adresse`, `etagere`, `date`) VALUES (216, 9, 'Jambar', 'Diourbel', 'Diourbel', 4, 'Mbacké', 'a', 'a', 'a', 'a', '0000-00-00', 'a', 'azerty', 'azerty', 123654, '0000-00-00', 'azerty', 12, '2028-10-15'), (231, 7858542, 'Jambar', 'Diourbel', 'Diourbel', 4, 'Mbacké', 'qsdghjk', 'zzhj', 'dfghj', 'sdfgh', '2012-12-05', 'mbacké', 'étudiant', 'ut', 784512845, '2015-02-05', 'dfgfchjk', 45, '2015-10-30'), (233, 123, 'Jambar', 'Diourbel', 'Diourbel', 2, 'Mbacké', 'modou', 'diop', 'lahat', 'dior', '1992-12-12', 'darou', 'etudiant', 'ut', 123456, '0000-00-00', 'darou', 2, '2015-10-31'), (234, 1234, 'Jambar', 'Diourbel', 'Diourbel', 2, 'Mbacké', 'Khaly Moustapha', 'DIOP', 'dddd', 'eeeee', '1990-02-11', 'ggggrrg', 'éléve', 'gaideee', 12333, '2015-11-11', '34 boulevard de la libération', 5, '2015-11-01'), (235, 785418451, 'juboo', 'Diourbel', 'Diourbel', 4, 'Mbacké', 'omar', 'diop', 'ibou', 'marème', '2012-02-05', 'mbacké', 'eleve', 'ut', 87684165415, '2012-02-05', 'mbacké', 14, '2015-11-02'), (237, 1323656, 'ffghcvhj', 'Diourbel', 'Diourbel', 4, 'Mbacké', ';,nbv', 'poijhgf', ';,nbv', 'bvc', '0000-00-00', 'bckjhg', 'hgf', ';jhgf', 986545, '0000-00-00', 'fghj;j', 84524, '2015-11-03'), (238, 9864105, 'dgfghjghjkl', 'Diourbel', 'Diourbel', 4, 'Mbacké', 'vgchjgujllj', 'ffuihilkjl', 'hxfghljolk', 'chffjgfhgiuuh', '0000-00-00', 'fuyjhjkl', 'cgfchkhnkl', 'fcgvjnnk', 9654, '0000-00-00', 'hgvjhj,;j', 45121, '2015-11-03'), (300, 123654, 'hfhfgdujyhgb', 'Diourbel', 'Diourbel', 1, 'Mbacké', 'wdgchgjhjk', 'tetgdrtfgyjhkj', 'edrhtgfhgjh,', 'xxfhghj,hj', '0000-00-00', 'grtyh,jhj,', 'rgdtfhgjhjk', 'hnghgjh,j;k', 1254, '0000-00-00', 'tfghjtghijolk', 3, '2015-11-03'), (301, 98674, 'gbfnghghj,', 'Diourbel', 'Diourbel', 10, 'Mbacké', 'gfgnhvjbh,j', 'gfghnghj,', 'grhtncfh,njh,j', 'regrhtghtyh', '0000-00-00', 'dffgbfnghfnghni', 'hngfhgbijk;,j', 'gfhhhiujhhjjk', 9863746, '0000-00-00', 'ffdgbfgnfhghn', 15, '2015-11-03'); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE TABLE IF NOT EXISTS users ( id CHAR(27) NOT NULL UNIQUE, email VARCHAR(255) NOT NULL, username VARCHAR(255) NOT NULL, created_at TIMESTAMP, PRIMARY KEY (id) ); ALTER TABLE users DROP COLUMN username; CREATE TABLE IF NOT EXISTS user_sign_on_token ( token CHAR(27) NOT NULL UNIQUE, email VARCHAR(255) NOT NULL ); CREATE INDEX user_sign_on_token_token_idx on user_sign_on_token (token); CREATE TABLE IF NOT EXISTS edit_token ( token      CHAR(27) NOT NULL, job_id INTEGER NOT NULL REFERENCES job (id),   created_at TIMESTAMP NOT NULL ); CREATE UNIQUE INDEX token_idx on edit_token (token);
/* IN PREVIOUS VERSION: pluto_merge.sql */ DROP TABLE IF EXISTS PLUTO_devdb CASCADE; SELECT a.*, b.version as pluto_version, b.bbl as mpluto_bbl, b.unitsres as pluto_unitres, b.bldgarea as pluto_bldgsf, b.comarea as pluto_comsf, b.officearea as pluto_offcsf, b.retailarea as pluto_retlsf, b.resarea as pluto_ressf, b.yearbuilt as pluto_yrbuilt, b.yearalter1 as pluto_yralt1, b.yearalter2 as pluto_yralt2, b.bldgclass as pluto_bldgcls, b.landuse as pluto_landuse, b.ownertype as pluto_owntype, b.ownername as pluto_owner, b.condono as pluto_condo, b.numbldgs as pluto_bldgs, b.numfloors as pluto_floors, b.firm07_fla as pluto_firm07, b.pfirm15_fl as pluto_pfirm15, b.histdist as pluto_histdst, b.landmark as pluto_landmk INTO PLUTO_devdb FROM INIT_devdb a LEFT JOIN dcp_mappluto b ON a.geo_bbl = b.bbl::bigint::text; CREATE INDEX PLUTO_devdb_job_number_idx ON PLUTO_devdb(job_number);
DELETE FROM `bdCinema`.`filmes` WHERE <{where_expression}>;
DROP TABLE AP_CREDIT_LINE; DROP SEQUENCE SEQ_AP_CREDIT_LINE; CREATE TABLE AP_CREDIT_LINE ( credit_line_id NUMBER PRIMARY KEY, customer_id NUMBER(8) NOT NULL, credit_limit NUMBER(10,2) NOT NULL, creation_date DATE NOT NULL, valid_from DATE NOT NULL, valid_to DATE NOT NULL, last_change_date DATE NOT NULL, CONSTRAINT fk_customer_id FOREIGN KEY(customer_id) REFERENCES CUSTOMERS(customer_id), CONSTRAINT ck_credit_lim CHECK(credit_limit > = 0) ); COMMENT ON COLUMN AP_CREDIT_LINE.credit_line_id IS 'primary key for table'; COMMENT ON COLUMN AP_CREDIT_LINE.customer_id IS 'Customer if for Credit line'; COMMENT ON COLUMN AP_CREDIT_LINE.credit_limit IS 'The amount of credit available to the customer'; COMMENT ON COLUMN AP_CREDIT_LINE.creation_date IS 'Creation date of the credit line'; COMMENT ON COLUMN AP_CREDIT_LINE.valid_from IS 'Credit line valid from date'; COMMENT ON COLUMN AP_CREDIT_LINE.valid_to IS 'Credit line valid to date'; COMMENT ON COLUMN AP_CREDIT_LINE.last_change_date IS 'Date of the last change of credit line amount'; CREATE SEQUENCE SEQ_AP_CREDIT_LINE START WITH 1 INCREMENT BY 1 MAXVALUE 1000; /
create table friend_info ( id serial4 primary key, name varchar(100) not null, age varchar(50), gender varchar(7), image varchar(300), twitter varchar(100), facebook varchar(100) )
-- organizations drop trigger if exists organizations_insert_sf_sync_trigger; drop trigger if exists organizations_update_sf_sync_trigger; drop trigger if exists organizations_delete_sf_sync_trigger; drop trigger if exists domains_organizations_insert_sf_sync_trigger; drop trigger if exists domains_organizations_update_sf_sync_trigger; drop trigger if exists domains_organizations_delete_sf_sync_trigger; -- users/profiles drop trigger if exists uidentities_insert_sf_sync_trigger; drop trigger if exists uidentities_delete_sf_sync_trigger; drop trigger if exists profiles_insert_sf_sync_trigger; drop trigger if exists profiles_update_sf_sync_trigger; drop trigger if exists profiles_delete_sf_sync_trigger; drop trigger if exists identities_insert_sf_sync_trigger; drop trigger if exists identities_update_sf_sync_trigger; drop trigger if exists identities_delete_sf_sync_trigger; drop trigger if exists enrollments_insert_sf_sync_trigger; drop trigger if exists enrollments_update_sf_sync_trigger; drop trigger if exists enrollments_delete_sf_sync_trigger; delimiter $ -- organizations -- organizations table create trigger organizations_insert_sf_sync_trigger after insert on organizations for each row begin insert into orgs_for_sf_sync(name) values(new.name) on duplicate key update last_modified = now(); end$ create trigger organizations_update_sf_sync_trigger after update on organizations for each row begin if old.name != new.name then insert into orgs_for_sf_sync(name) values(old.name) on duplicate key update last_modified = now(); insert into orgs_for_sf_sync(name) values(new.name) on duplicate key update last_modified = now(); end if; end$ create trigger organizations_delete_sf_sync_trigger after delete on organizations for each row begin insert into orgs_for_sf_sync(name) values(old.name) on duplicate key update last_modified = now(); end$ -- domains_organizations table create trigger domains_organizations_insert_sf_sync_trigger after insert on domains_organizations for each row begin insert into orgs_for_sf_sync(name) (select name from organizations where id = new.organization_id) on duplicate key update last_modified = now(); end$ create trigger domains_organizations_update_sf_sync_trigger after update on domains_organizations for each row begin if old.domain != new.domain or not(old.is_top_domain <=> new.is_top_domain) or old.organization_id != new.organization_id then insert into orgs_for_sf_sync(name) (select name from organizations where id = old.organization_id) on duplicate key update last_modified = now(); insert into orgs_for_sf_sync(name) (select name from organizations where id = new.organization_id) on duplicate key update last_modified = now(); end if; end$ create trigger domains_organizations_delete_sf_sync_trigger after delete on domains_organizations for each row begin insert into orgs_for_sf_sync(name) (select name from organizations where id = old.organization_id) on duplicate key update last_modified = now(); end$ -- users/profiles -- uidentities table create trigger uidentities_insert_sf_sync_trigger after insert on uidentities for each row begin insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end$ create trigger uidentities_delete_sf_sync_trigger after delete on uidentities for each row begin insert into uuids_for_sf_sync(uuid) values(old.uuid) on duplicate key update last_modified = now(); end$ -- profiles table create trigger profiles_insert_sf_sync_trigger after insert on profiles for each row begin insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end$ create trigger profiles_update_sf_sync_trigger after update on profiles for each row begin if not(old.name <=> new.name) or not(old.email <=> new.email) or not(old.gender <=> new.gender) or not(old.gender_acc <=> new.gender_acc) or not(old.is_bot <=> new.is_bot) or not(old.country_code <=> new.country_code) then insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end if; end$ create trigger profiles_delete_sf_sync_trigger after delete on profiles for each row begin insert into uuids_for_sf_sync(uuid) values(old.uuid) on duplicate key update last_modified = now(); end$ -- identities table create trigger identities_insert_sf_sync_trigger after insert on identities for each row begin insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end$ create trigger identities_update_sf_sync_trigger after update on identities for each row begin if old.source != new.source or not(old.name <=> new.name) or not(old.email <=> new.email) or not(old.username <=> new.username) or not(old.uuid <=> new.uuid) then insert into uuids_for_sf_sync(uuid) values(old.uuid) on duplicate key update last_modified = now(); insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end if; end$ create trigger identities_delete_sf_sync_trigger after delete on identities for each row begin insert into uuids_for_sf_sync(uuid) values(old.uuid) on duplicate key update last_modified = now(); end$ -- enrollments table create trigger enrollments_insert_sf_sync_trigger after insert on enrollments for each row begin insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end$ create trigger enrollments_update_sf_sync_trigger after update on enrollments for each row begin if old.uuid != new.uuid or old.organization_id != new.organization_id or old.start != new.start or old.end != new.end then insert into uuids_for_sf_sync(uuid) values(old.uuid) on duplicate key update last_modified = now(); insert into uuids_for_sf_sync(uuid) values(new.uuid) on duplicate key update last_modified = now(); end if; end$ create trigger enrollments_delete_sf_sync_trigger after delete on enrollments for each row begin insert into uuids_for_sf_sync(uuid) values(old.uuid) on duplicate key update last_modified = now(); end$ delimiter ;
CREATE DATABASE fylsaERP; use fylsaERP; /* * TABLE User */ CREATE TABLE User( id_user int not null, id_admin int not null, email varchar(45) not null, firstName varchar(45) not null, lastName varchar(45) not null, password varchar(45) not null, PRIMARY KEY (id_user) ); /* * TABLE Employees */ CREATE TABLE Employees( id_employees int not null AUTO_INCREMENT, firstName varchar(45) not null, lastName varchar(45) not null, position varchar(20) not null, salary int not null, socialNumber varchar(30) not null, id_Manager int not null, PRIMARY KEY (id_employees), FOREIGN KEY (id_Manager) REFERENCES User(id_user) ); /* * TABLE Company */ CREATE TABLE Company( id_company int not null, name varchar(45) not null, address varchar(90) not null, rfc varchar(30) not null, PRIMARY KEY (id_company) ); /* * TABLE Associates */ CREATE TABLE Associates( id_associates int not null, name varchar(45) not null, id_company int not null, PRIMARY KEY (id_associates), FOREIGN KEY (id_company) REFERENCES Company(id_company) ); /* * TABLE Products */ CREATE TABLE Products( id_product varchar(40) not null, description varchar(70) not null, price int not null, measureUnit varchar(15) not null ); /* * TABLE Cotizacion */ CREATE TABLE Cotizacion( id_cotizacion varchar(20) not null, creation_date date not null, company varchar(45) not null, addressed varchar(45) not null, reason varchar(60) not null, totalCost int not null, deliveryTime varchar(45) not null, PaymentConditions varchar(40) not null, PRIMARY KEY (id_cotizacion) ); /* * TABLE CotizacionService */ CREATE TABLE CotizacionService( item int not null, description varchar(50) not null, provide varchar(30) not null, cantity int not null, measureUnit varchar (15) not null, salePrice int not null, id_cotizacion varchar(20) not null, FOREIGN KEY (id_cotizacion) REFERENCES Cotizacion(id_cotizacion) ); /* Insert Values **/ INSERT INTO User VALUES(1,1,"f.julianb@gmail.com","Francisco","Julian Bolaños","Fylsa"); INSERT INTO Employees(firstname,lastname,position,salary,socialNumber,id_Manager) VALUES("Fabiola","Campos","Auxiliar Contable",2000,"qwerty1234",1); INSERT INTO Company VALUES(1,"Barcel","Carretera Mexico Toluca Km 54 Sn, Corredor Industrial Toluca Lerma (52004) Lerma, Estado de México ","JUBF650904AY1"); INSERT INTO Associates VALUES(1,"John Doe",1); INSERT INTO Products VALUES("ABC","Codo Condulet 3 pulgadas",20,"PZA"); INSERT INTO Products VALUES("CBA","Cable Vinanel",50,"MT"); INSERT INTO Cotizacion VALUES("13042018-1","2018-04-13","Barcel","John Doe","Suministro de Material Electrico",2000,"28 dias","3 Semanas a Partir de entregada la cotizacion"); INSERT INTO CotizacionService VALUES(1,"Codo Condulet 3 pulgadas","Suministro",5,"PZA",20,"13042018-1"); INSERT INTO CotizacionService VALUES(1,"Cable Vinanel","Suministro e instalacion",10,"MT",50,"13042018-1");
/* Создание процедуры расчета первого раунда */ CREATE OR ALTER PROCEDURE CALCULATE_FIRST_ROUND ( TIRAGE_ID VARCHAR(32) ) AS BEGIN DELETE FROM WINNINGS WHERE LOTTERY_ID IN (SELECT LOTTERY_ID FROM LOTTERY WHERE TIRAGE_ID=:TIRAGE_ID AND ROUND_NUM=1 AND SUBROUND_ID IS NULL); INSERT INTO WINNINGS (LOTTERY_ID,TICKET_ID) SELECT LOTTERY_ID, TICKET_ID FROM GET_TICKET_LINES(:TIRAGE_ID,1,NULL); END -- /* Фиксация изменений */ COMMIT
-- Query all of the entries in the Genre table SELECT "GenreId", "label" FROM Genre; SELECT "title", "SongLength", "releaseDate" FROM Song; -- Using the INSERT statement, add one of your favorite artists to the Artist table. INSERT INTO Artist (ArtistId, ArtistName, YearEstablished) VALUES (null, "Joe Lizzo", 2019); -- Using the INSERT statement, add one, or more, albums by your artist to the Album table. INSERT INTO Album (AlbumId, Title, ReleaseDate, AlbumLength, Label, ArtistId, GenreId) VALUES (null, "taking care of business", "9/9/99", 1099, "mau5trap", 28, 5); -- Using the INSERT statement, add some songs that are on that album to the Song table. INSERT INTO Song (SongId, Title, SongLength, ReleaseDate, GenreId, ArtistId, AlbumId) VALUES (null, "bitch who", 69, "11/1/1111", 14, 28, 23); UPDATE Song SET Title = "Just another day" WHERE GenreId = 2; -- Write a SELECT query that provides the song titles, album title, and artist name for all of the data you just entered in. Use the LEFT JOIN keyword sequence to connect the tables, and the WHERE keyword to filter the results to the album and artist you added. -- Reminder: Direction of join matters. Try the following statements and see the difference in results. SELECT a.Title, s.Title FROM Album a LEFT JOIN Song s ON s.AlbumId = a.AlbumId; SELECT a.Title, s.Title FROM Song s LEFT JOIN Album a ON s.AlbumId = a.AlbumId; -- Write a SELECT statement to display how many songs exist for each album. You'll need to use the COUNT() function and the GROUP BY keyword sequence. SELECT COUNT(SongId), Title FROM Song GROUP BY Title; -- Write a SELECT statement to display how many songs exist for each artist. You'll need to use the COUNT() function and the GROUP BY keyword sequence. SELECT COUNT(Song.ArtistId), Artist.ArtistName FROM song JOIN Artist ON Artist.ArtistId = Song.ArtistId GROUP BY Song.ArtistId; -- Write a SELECT statement to display how many songs exist for each genre. You'll need to use the COUNT() function and the GROUP BY keyword sequence. SELECT COUNT(Song.GenreId), Genre.Label FROM Song JOIN Genre ON Genre.GenreId = Song.GenreId GROUP BY Song.GenreId; -- Using MAX() function, write a select statement to find the album with the longest duration. The result should display the album title and the duration. SELECT MAX(AlbumLength), Title FROM Album; -- Using MAX() function, write a select statement to find the song with the longest duration. The result should display the song title and the duration. SELECT MAX(SongLength), Title, SongLength FROM Song; -- Modify the previous query to also display the title of the album. SELECT MAX(Song.SongLength), Song.Title, Album.Title FROM Song JOIN Album ON Song.AlbumId = Album.AlbumId;
alter table options modify coordinates varchar(255); alter table options modify description varchar(255);
SELECT * FROM streams ORDER BY stream_id DESC -- WHERE isapproved = 'false'
--Use CREATE TABLE ... AS ... and NATURAL JOIN to create a table named InvoiceVendors containing all of the attributes from both invoices and vendors (other than eliminating the duplicate vendor id). create table InvoiceVendors as (SELECT * FROM vendors NATURAL JOIN invoices)