0:01:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 0:01:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 0:01:22 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 0:01:22 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 1:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 1:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 1:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 1:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 2:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 2:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 2:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 2:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 3:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 3:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 3:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 3:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 4:01:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 4:01:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 4:01:12 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 4:01:12 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 5:00:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 5:00:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 5:00:48 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 5:00:48 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 6:00:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 6:00:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 6:00:45 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 6:00:45 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 7:00:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 7:00:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 7:00:47 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 7:00:47 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 8:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 8:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 9:00:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:00:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:00:50 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 9:00:50 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 9:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:09:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:09:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:39:25 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 9:39:25 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502618016). The statement has been terminated. 9:39:25 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 9:39:25 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (096301250261110120). The statement has been terminated. 9:39:25 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 9:39:25 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502612501103). The statement has been terminated. 9:39:25 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 9:39:25 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502612601114). The statement has been terminated. 9:39:26 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 9:39:26 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502612901128). The statement has been terminated. 9:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:57 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 10:00:57 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 10:01:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:01:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:01:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:04:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:04:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:05:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:07:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:07:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:08:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:08:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:11:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:11:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:15:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:15:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:25:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:25:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:27:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:27:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:31:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:31:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:33:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:33:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:35:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:35:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:36:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:36:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:38:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:38:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:45:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:45:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:46:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:46:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:48:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:48:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:49:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:49:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:50:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:50:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:53:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:53:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:55:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:55:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:58:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:58:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:00:56 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 11:00:56 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 11:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:05:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:05:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:07:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:07:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:09:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:09:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:11:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:11:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:13:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:13:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:15:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:15:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:17:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:17:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:26:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:26:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:28:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:28:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:30:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:30:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:35:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:35:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:44:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:44:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:46:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:46:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:47:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:47:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:49:46 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 11:49:46 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502618016). The statement has been terminated. 11:49:46 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 11:49:46 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (096301250261110120). The statement has been terminated. 11:49:46 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 11:49:46 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502612501103). The statement has been terminated. 11:49:46 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 11:49:46 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502612601114). The statement has been terminated. 11:49:47 21 กุมภาพันธ์ 2561 : INSERT INTO FIN_RC_BANK_RECONCILE ([BR_NO],[BANK_CODE],[BRANCH_CODE],[REF_TRANSFER_SEQ],[TRANSFER_DATE],[TRANSFER_YEAR],[TRANSFER_MONTH],[SUM_AMT],[BAL_AMT],[TRAN_NO],[TRAN_DATE],[IS_DELETE],[CANCLE_BY],[CANCLE_DATE],[REMARK],[ACCOUNT_NUM_FTI],[CODE],[STAFF_ID],[COMP_PERSON_NAME_TH],[REMARK_REPORT],[CR_BY],[CR_DATE],[UPD_BY],[UPD_DATE],[IS_BILL_PAYMENT],[CHEQUE_AMT]) VALUES( @brNo,@bankCode,@branchCode,@seq,@transferDate,@transferYear,@transferMonth,@sumTotal,@balAmt,NULL,NULL,@isDelete,@cancleBy,GETDATE(),@remark,@accountNumFti,@code,@staffId,NULL,@remarkReport,@crBy,GETDATE(),@updBy,GETDATE(),@isBillPayment,@Cheque ); 11:49:47 21 กุมภาพันธ์ 2561 :Violation of PRIMARY KEY constraint 'PK_FIN_RC_BANK_RECONCILE'. Cannot insert duplicate key in object 'dbo.FIN_RC_BANK_RECONCILE'. The duplicate key value is (0963012502612901128). The statement has been terminated. 11:49:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:49:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:53:33 21 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 11:55:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:55:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:58:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:58:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:00:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 12:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 12:02:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:02:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:08:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:08:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:15:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:15:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:19:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:19:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:22:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:22:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:24:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:24:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:26:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:26:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:28:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:28:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:31:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:31:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:45:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:45:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:53:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:53:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:55:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:55:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:56:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:56:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:57:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:57:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:57:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:57:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:58:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:58:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:59:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:59:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:01:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:01:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:01:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:01:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:01:07 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 13:01:07 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 13:02:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:02:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:02:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:03:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:03:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:06:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:06:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:11:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:11:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:13:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:13:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:16:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:16:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:19:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:19:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:20:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:20:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:22:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:22:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:24:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:24:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:28:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:28:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:30:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:30:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:32:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:32:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:34:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:34:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:38:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:38:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:40:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:40:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:47:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:47:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:58:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:58:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:59:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:59:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:47 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 14:00:47 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 14:00:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:01:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:49 21 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 14:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:10:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:10:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:12:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:12:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:13:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:13:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:16:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:16:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:17:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:17:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:18:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:18:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:22:00 21 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 14:23:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:23:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:25:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:25:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:27:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:27:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:27:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:27:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:29:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:29:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:37:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:37:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:37:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:37:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:40:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:40:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:43:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:43:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:46:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:46:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:49:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:49:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:50:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:50:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:51:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:51:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:54:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:54:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:56:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:56:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:58:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:58:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:00:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:00:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 15:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 15:02:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:02:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:05:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:05:17 21 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 15:06:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:10 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:10 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:13:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:52 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:52 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:19:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:19:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:22:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:22:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:23:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:23:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:25:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:25:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:42:17 21 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 15:52:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:52:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:00:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:00:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:00:45 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 16:00:45 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 16:01:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:01:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:02:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:02:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:06:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:06:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:08:45 21 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 16:09:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:09:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:11:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:11:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:13:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:13:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:24 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:24 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:18:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:18:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:13 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:13 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:17 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:17 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:18 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:18 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:19 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:19 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:26:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:26:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:30:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:30:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:32:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:32:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:34:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:34:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:37:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:37:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:39:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:39:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:40:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:40:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:42:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:42:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:44 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:44 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:44:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:44:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:49 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:49 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:50 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:50 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:30 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:30 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:05 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:05 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:06 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:06 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:54 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:54 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:53:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:53:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:54:03 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:54:03 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:35 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:35 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:36 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:36 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:37 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:37 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:38 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:38 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:39 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:39 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:40 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:40 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 17:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 18:00:46 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:00:46 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:00:46 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 18:00:46 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 18:44:58 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:44:58 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:47:28 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:47:28 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:00:51 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:00:51 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:00:51 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 19:00:51 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 19:13:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:13:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:14:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:14:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:16:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:16:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:17:14 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:17:14 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:19:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:19:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:20:53 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:20:53 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:22:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:22:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:22:59 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:22:59 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:24:15 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:24:15 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:26:16 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:26:16 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:28:09 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:28:09 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:29:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:29:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:31:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:31:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:33:07 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:33:07 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:34:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:34:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:35:57 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:35:57 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:37:01 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:37:01 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:42:02 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:42:02 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:44:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:44:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:47:08 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:47:08 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:48:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:48:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:50:34 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:50:34 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:51:56 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:51:56 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:53:20 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:53:20 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:54:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:54:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:56:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:56:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:57:23 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:57:23 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:01:04 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:01:04 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:01:05 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 20:01:05 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 20:07:47 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:07:47 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:14:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:14:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:17:27 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:17:27 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:28:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:28:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:33:33 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:33:33 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:37:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:37:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:41:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:41:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:45:42 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:45:42 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:50:26 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:50:26 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:53:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:53:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:58:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:58:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:00:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:00:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:00:45 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 21:00:45 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 21:02:25 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:02:25 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:06:55 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:06:55 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:13:29 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:13:29 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:16:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:16:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:34:12 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:34:12 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:38:32 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:38:32 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:42:21 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:42:21 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:45:11 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:45:11 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:45:43 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:45:43 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:46:41 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:46:41 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:48:00 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:48:00 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:49:22 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:49:22 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:58:31 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:58:31 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:00:48 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 22:00:48 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 22:00:48 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 22:00:48 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 23:00:45 21 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:00:45 21 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:00:45 21 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 23:00:45 21 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database.